Skip to content

Commit 4fa8e3b

Browse files
additional regex optimizations
1 parent dc5cf45 commit 4fa8e3b

14 files changed

+101
-74
lines changed

dist/browser/esm/dynamics-web-api.js

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

dist/browser/esm/dynamics-web-api.js.map

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/cjs/dynamics-web-api.js

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

dist/cjs/dynamics-web-api.js.map

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.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api v2.1.6 (c) 2024 Aleksandr Rogov. License: MIT */
1+
/*! dynamics-web-api v2.1.7 (c) 2024 Aleksandr Rogov. License: MIT */
22
/**
33
* Microsoft Dataverse Web API helper library for Node.js and Browser.
44
* It is compatible with: Dataverse, Dynamics 365 (online), Dynamics 365 (on-premise), Dynamics CRM 2016, Dynamics CRM Online.
@@ -523,7 +523,7 @@ export interface DeleteRequest extends CRUDRequest {
523523
/**
524524
* Field name that needs to be cleared (for example File Field)
525525
* @deprecated Use "property".
526-
*/
526+
*/
527527
fieldName?: string;
528528
/**Single property that needs to be cleared (including the File property) */
529529
property?: string;
@@ -622,7 +622,7 @@ export interface UnboundFunctionRequest extends BaseRequest {
622622
/**
623623
* Name of the function.
624624
* @deprecated Use "name" parameter.
625-
*/
625+
*/
626626
functionName?: string;
627627
/**Function's input parameters. Example: { param1: "test", param2: 3 }. */
628628
parameters?: any;
@@ -786,7 +786,7 @@ export interface UploadRequest extends CRUDRequest {
786786
* File Field Name
787787
* @deprecated Use "property".
788788
*/
789-
fieldName: string;
789+
fieldName?: string;
790790
}
791791
export interface DownloadRequest extends CRUDRequest {
792792
/**The name of File Column (field) */
@@ -795,7 +795,7 @@ export interface DownloadRequest extends CRUDRequest {
795795
* File Field Name
796796
* @deprecated Use "property".
797797
*/
798-
fieldName: string;
798+
fieldName?: string;
799799
}
800800
export interface CsdlMetadataRequest extends BaseRequest {
801801
/**If set to "true" the document will include many different kinds of annotations that can be useful. Most annotations are not included by default because they increase the total size of the document. */

dist/dynamics-web-api.js

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

dist/dynamics-web-api.js.map

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

0 commit comments

Comments
 (0)