Skip to content

Commit

Permalink
Release v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrRogov committed Nov 14, 2017
1 parent f9bd623 commit a5c1535
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/dwa.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! dwa v1.3.2 (c) 2017 Aleksandr Rogov */
/*! dwa v1.3.3 (c) 2017 Aleksandr Rogov */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down
6 changes: 3 additions & 3 deletions dist/dynamics-web-api-callbacks.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! dynamics-web-api-callbacks v1.3.2 (c) 2017 Aleksandr Rogov */
/*! dynamics-web-api-callbacks v1.3.3 (c) 2017 Aleksandr Rogov */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down Expand Up @@ -578,7 +578,7 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
if (request.expand && request.expand.length) {
ErrorHelper.stringOrArrayParameterCheck(request.expand, "DynamicsWebApi." + functionName, "request.expand");
if (typeof request.expand === "string") {
requestArray.push("$expand=" + encodeURI(request.expand));
requestArray.push("$expand=" + request.expand);
}
else {
var expandRequestArray = [];
Expand All @@ -593,7 +593,7 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
}
}
if (expandRequestArray.length) {
requestArray.push("$expand=" + (expandRequestArray.join(",")));
requestArray.push("$expand=" + expandRequestArray.join(","));
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions dist/dynamics-web-api-callbacks.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/dynamics-web-api.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! dynamics-web-api v1.3.2 (c) 2017 Aleksandr Rogov */
/*! dynamics-web-api v1.3.3 (c) 2017 Aleksandr Rogov */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down Expand Up @@ -578,7 +578,7 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
if (request.expand && request.expand.length) {
ErrorHelper.stringOrArrayParameterCheck(request.expand, "DynamicsWebApi." + functionName, "request.expand");
if (typeof request.expand === "string") {
requestArray.push("$expand=" + encodeURI(request.expand));
requestArray.push("$expand=" + request.expand);
}
else {
var expandRequestArray = [];
Expand All @@ -593,7 +593,7 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
}
}
if (expandRequestArray.length) {
requestArray.push("$expand=" + (expandRequestArray.join(",")));
requestArray.push("$expand=" + expandRequestArray.join(","));
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions dist/dynamics-web-api.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dynamics-web-api",
"version": "1.3.2",
"version": "1.3.3",
"description": "DynamicsWebApi is a Microsoft Dynamics CRM Web API helper library",
"keywords": [
"crm",
Expand Down

0 comments on commit a5c1535

Please sign in to comment.