Skip to content

Commit

Permalink
name prop in callFunction must be optional until functionName is removed
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrRogov committed Apr 11, 2024
1 parent 68fcd4d commit 5267c5c
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion dist/browser/esm/dynamics-web-api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/browser/esm/dynamics-web-api.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/dynamics-web-api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cjs/dynamics-web-api.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dynamics-web-api.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! dynamics-web-api v2.1.3 (c) 2024 Aleksandr Rogov */
/*! dynamics-web-api v2.1.4 (c) 2024 Aleksandr Rogov */
/// <reference types="node" />
/**
* Microsoft Dynamics CRM Web API helper library written in JavaScript.
Expand Down Expand Up @@ -614,7 +614,7 @@ export interface UnboundFunctionRequest extends BaseRequest {
/**
* Name of the function.
*/
name: string;
name?: string;
/**
* Name of the function.
* @deprecated Use "name" parameter.
Expand Down
2 changes: 1 addition & 1 deletion dist/dynamics-web-api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/dynamics-web-api.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dynamics-web-api.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/dynamics-web-api.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/dynamics-web-api.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! dynamics-web-api v2.1.3 (c) 2024 Aleksandr Rogov */
/*! dynamics-web-api v2.1.4 (c) 2024 Aleksandr Rogov */
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/dynamics-web-api.mjs.map

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": "2.1.3",
"version": "2.1.4",
"description": "DynamicsWebApi is a Microsoft Dynamics CRM Web API helper library",
"keywords": [
"d365",
Expand Down
2 changes: 1 addition & 1 deletion src/dynamics-web-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ export interface UnboundFunctionRequest extends BaseRequest {
/**
* Name of the function.
*/
name: string;
name?: string;
/**
* Name of the function.
* @deprecated Use "name" parameter.
Expand Down

0 comments on commit 5267c5c

Please sign in to comment.