Skip to content

Commit

Permalink
additional regex optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrRogov committed Sep 16, 2024
1 parent dc5cf45 commit 4fa8e3b
Show file tree
Hide file tree
Showing 14 changed files with 101 additions and 74 deletions.
26 changes: 16 additions & 10 deletions dist/browser/esm/dynamics-web-api.js

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

4 changes: 2 additions & 2 deletions dist/browser/esm/dynamics-web-api.js.map

Large diffs are not rendered by default.

26 changes: 16 additions & 10 deletions dist/cjs/dynamics-web-api.js

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

4 changes: 2 additions & 2 deletions dist/cjs/dynamics-web-api.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 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.6 (c) 2024 Aleksandr Rogov. License: MIT */
/*! dynamics-web-api v2.1.7 (c) 2024 Aleksandr Rogov. License: MIT */
/**
* Microsoft Dataverse Web API helper library for Node.js and Browser.
* It is compatible with: Dataverse, Dynamics 365 (online), Dynamics 365 (on-premise), Dynamics CRM 2016, Dynamics CRM Online.
Expand Down Expand Up @@ -523,7 +523,7 @@ export interface DeleteRequest extends CRUDRequest {
/**
* Field name that needs to be cleared (for example File Field)
* @deprecated Use "property".
*/
*/
fieldName?: string;
/**Single property that needs to be cleared (including the File property) */
property?: string;
Expand Down Expand Up @@ -622,7 +622,7 @@ export interface UnboundFunctionRequest extends BaseRequest {
/**
* Name of the function.
* @deprecated Use "name" parameter.
*/
*/
functionName?: string;
/**Function's input parameters. Example: { param1: "test", param2: 3 }. */
parameters?: any;
Expand Down Expand Up @@ -786,7 +786,7 @@ export interface UploadRequest extends CRUDRequest {
* File Field Name
* @deprecated Use "property".
*/
fieldName: string;
fieldName?: string;
}
export interface DownloadRequest extends CRUDRequest {
/**The name of File Column (field) */
Expand All @@ -795,7 +795,7 @@ export interface DownloadRequest extends CRUDRequest {
* File Field Name
* @deprecated Use "property".
*/
fieldName: string;
fieldName?: string;
}
export interface CsdlMetadataRequest extends BaseRequest {
/**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. */
Expand Down
26 changes: 16 additions & 10 deletions dist/dynamics-web-api.js

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

4 changes: 2 additions & 2 deletions dist/dynamics-web-api.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 4fa8e3b

Please sign in to comment.