Skip to content

Commit a29a4c5

Browse files
Release v1.2.6
1 parent 8f3adc1 commit a29a4c5

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

dist/dwa.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*! dwa v1.2.5 (c) 2017 Aleksandr Rogov */
1+
/*! dwa v1.2.6 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
55
else if(typeof define === 'function' && define.amd)
6-
define([], factory);
6+
define("DWA", [], factory);
77
else if(typeof exports === 'object')
88
exports["DWA"] = factory();
99
else

dist/dynamics-web-api-callbacks.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*! dynamics-web-api-callbacks v1.2.5 (c) 2017 Aleksandr Rogov */
1+
/*! dynamics-web-api-callbacks v1.2.6 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
55
else if(typeof define === 'function' && define.amd)
6-
define([], factory);
6+
define("DynamicsWebApi", [], factory);
77
else if(typeof exports === 'object')
88
exports["DynamicsWebApi"] = factory();
99
else
@@ -1922,8 +1922,8 @@ function DynamicsWebApi(config) {
19221922

19231923
var header = {};
19241924

1925-
if (impersonateUserId != null) {
1926-
header["MSCRMCallerID"] = ErrorHelper.guidParameterCheck(impersonateUserId, "DynamicsWebApi.associate", "impersonateUserId");
1925+
if (impersonateUserId) {
1926+
header["MSCRMCallerID"] = ErrorHelper.guidParameterCheck(impersonateUserId, "DynamicsWebApi.executionFunction", "impersonateUserId");
19271927
}
19281928

19291929
var onSuccess = function (response) {

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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*! dynamics-web-api v1.2.5 (c) 2017 Aleksandr Rogov */
1+
/*! dynamics-web-api v1.2.6 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
55
else if(typeof define === 'function' && define.amd)
6-
define([], factory);
6+
define("DynamicsWebApi", [], factory);
77
else if(typeof exports === 'object')
88
exports["DynamicsWebApi"] = factory();
99
else
@@ -1814,8 +1814,8 @@ function DynamicsWebApi(config) {
18141814

18151815
var header = {};
18161816

1817-
if (impersonateUserId != null) {
1818-
header["MSCRMCallerID"] = ErrorHelper.guidParameterCheck(impersonateUserId, "DynamicsWebApi.associate", "impersonateUserId");
1817+
if (impersonateUserId) {
1818+
header["MSCRMCallerID"] = ErrorHelper.guidParameterCheck(impersonateUserId, "DynamicsWebApi.executeFunction", "impersonateUserId");
18191819
}
18201820

18211821
return _sendRequest("GET", url, null, header).then(function (response) {

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.2.5",
3+
"version": "1.2.6",
44
"description": "DynamicsWebApi is a Microsoft Dynamics CRM Web API helper library",
55
"keywords": [
66
"crm",

0 commit comments

Comments
 (0)