Skip to content

Commit 48db0e1

Browse files
Release v1.5.1
1 parent aad2bf3 commit 48db0e1

File tree

7 files changed

+19
-11
lines changed

7 files changed

+19
-11
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.5.0 (c) 2018 Aleksandr Rogov */
1+
/*! dwa v1.5.1 (c) 2019 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: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api-callbacks v1.5.0 (c) 2018 Aleksandr Rogov */
1+
/*! dynamics-web-api-callbacks v1.5.1 (c) 2019 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -2847,7 +2847,11 @@ module.exports = function parseResponse(response, responseHeaders, parseParams)
28472847
? responseHeaders['OData-EntityId']
28482848
: responseHeaders['odata-entityid'];
28492849

2850-
parseResult = /([0-9A-F]{8}[-]?([0-9A-F]{4}[-]?){3}[0-9A-F]{12})\)$/i.exec(entityUrl)[1];
2850+
var guidResult = /([0-9A-F]{8}[-]?([0-9A-F]{4}[-]?){3}[0-9A-F]{12})\)$/i.exec(entityUrl);
2851+
2852+
if (guidResult) {
2853+
parseResult = guidResult[1];
2854+
}
28512855
}
28522856
}
28532857

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: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api v1.5.0 (c) 2018 Aleksandr Rogov */
1+
/*! dynamics-web-api v1.5.1 (c) 2019 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -2386,7 +2386,11 @@ module.exports = function parseResponse(response, responseHeaders, parseParams)
23862386
? responseHeaders['OData-EntityId']
23872387
: responseHeaders['odata-entityid'];
23882388

2389-
parseResult = /([0-9A-F]{8}[-]?([0-9A-F]{4}[-]?){3}[0-9A-F]{12})\)$/i.exec(entityUrl)[1];
2389+
var guidResult = /([0-9A-F]{8}[-]?([0-9A-F]{4}[-]?){3}[0-9A-F]{12})\)$/i.exec(entityUrl);
2390+
2391+
if (guidResult) {
2392+
parseResult = guidResult[1];
2393+
}
23902394
}
23912395
}
23922396

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-lock.json

Lines changed: 1 addition & 1 deletion
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.5.0",
3+
"version": "1.5.1",
44
"description": "DynamicsWebApi is a Microsoft Dynamics CRM Web API helper library",
55
"keywords": [
66
"crm",

0 commit comments

Comments
 (0)