Skip to content

Commit a5c1535

Browse files
Release v1.3.3
1 parent f9bd623 commit a5c1535

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

dist/dwa.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dwa v1.3.2 (c) 2017 Aleksandr Rogov */
1+
/*! dwa v1.3.3 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();

dist/dynamics-web-api-callbacks.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api-callbacks v1.3.2 (c) 2017 Aleksandr Rogov */
1+
/*! dynamics-web-api-callbacks v1.3.3 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -578,7 +578,7 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
578578
if (request.expand && request.expand.length) {
579579
ErrorHelper.stringOrArrayParameterCheck(request.expand, "DynamicsWebApi." + functionName, "request.expand");
580580
if (typeof request.expand === "string") {
581-
requestArray.push("$expand=" + encodeURI(request.expand));
581+
requestArray.push("$expand=" + request.expand);
582582
}
583583
else {
584584
var expandRequestArray = [];
@@ -593,7 +593,7 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
593593
}
594594
}
595595
if (expandRequestArray.length) {
596-
requestArray.push("$expand=" + (expandRequestArray.join(",")));
596+
requestArray.push("$expand=" + expandRequestArray.join(","));
597597
}
598598
}
599599
}

dist/dynamics-web-api-callbacks.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dynamics-web-api.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api v1.3.2 (c) 2017 Aleksandr Rogov */
1+
/*! dynamics-web-api v1.3.3 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -578,7 +578,7 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
578578
if (request.expand && request.expand.length) {
579579
ErrorHelper.stringOrArrayParameterCheck(request.expand, "DynamicsWebApi." + functionName, "request.expand");
580580
if (typeof request.expand === "string") {
581-
requestArray.push("$expand=" + encodeURI(request.expand));
581+
requestArray.push("$expand=" + request.expand);
582582
}
583583
else {
584584
var expandRequestArray = [];
@@ -593,7 +593,7 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
593593
}
594594
}
595595
if (expandRequestArray.length) {
596-
requestArray.push("$expand=" + (expandRequestArray.join(",")));
596+
requestArray.push("$expand=" + expandRequestArray.join(","));
597597
}
598598
}
599599
}

dist/dynamics-web-api.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamics-web-api",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "DynamicsWebApi is a Microsoft Dynamics CRM Web API helper library",
55
"keywords": [
66
"crm",

0 commit comments

Comments
 (0)