Skip to content

Commit 0c8f673

Browse files
Release v1.6.4
1 parent d47447c commit 0c8f673

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

dist/dynamics-web-api-callbacks.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api-callbacks v1.6.3 (c) 2020 Aleksandr Rogov */
1+
/*! dynamics-web-api-callbacks v1.6.4 (c) 2020 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -586,7 +586,12 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
586586

587587
if (request.userQuery) {
588588
requestArray.push("userQuery=" + ErrorHelper.guidParameterCheck(request.userQuery, 'DynamicsWebApi.' + functionName, "request.userQuery"));
589-
}
589+
}
590+
591+
if (request.apply) {
592+
ErrorHelper.stringParameterCheck(request.apply, 'DynamicsWebApi.' + functionName, "request.apply");
593+
requestArray.push("$apply=" + request.apply);
594+
}
590595

591596
if (request.count) {
592597
ErrorHelper.boolParameterCheck(request.count, 'DynamicsWebApi.' + functionName, "request.count");

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: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api v1.6.3 (c) 2020 Aleksandr Rogov */
1+
/*! dynamics-web-api v1.6.4 (c) 2020 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -2828,7 +2828,12 @@ function convertRequestOptions(request, functionName, url, joinSymbol, config) {
28282828

28292829
if (request.userQuery) {
28302830
requestArray.push("userQuery=" + ErrorHelper.guidParameterCheck(request.userQuery, 'DynamicsWebApi.' + functionName, "request.userQuery"));
2831-
}
2831+
}
2832+
2833+
if (request.apply) {
2834+
ErrorHelper.stringParameterCheck(request.apply, 'DynamicsWebApi.' + functionName, "request.apply");
2835+
requestArray.push("$apply=" + request.apply);
2836+
}
28322837

28332838
if (request.count) {
28342839
ErrorHelper.boolParameterCheck(request.count, 'DynamicsWebApi.' + functionName, "request.count");

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

0 commit comments

Comments
 (0)