Skip to content

Commit 9823e7b

Browse files
added new request parameter bypassCustomPluginExecution close #107
1 parent 6b538c8 commit 9823e7b

File tree

7 files changed

+1035
-740
lines changed

7 files changed

+1035
-740
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.md

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ Property Name | Type | Operation(s) Supported | Description
256256
------------ | ------------- | ------------- | -------------
257257
apply | String | `retrieveMultipleRequest`, `retrieveAllRequest` | `v1.6.4+` Sets the $apply system query option to aggregate and group your data dynamically. [More Info](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/query-data-web-api#aggregate-and-grouping-results)
258258
async | Boolean | All | **XHR requests only!** Indicates whether the requests should be made synchronously or asynchronously. Default value is `true` (asynchronously).
259+
bypassCustomPluginExecution | Boolean | `createRequest`, `updateRequest`, `upsertRequest`, `deleteRequest` | `v1.7.5+` If set to true, the request bypasses custom business logic, all synchronous plug-ins and real-time workflows are disabled. Check for special exceptions in Microsft Docs. [More Info](https://docs.microsoft.com/en-us/powerapps/developer/data-platform/bypass-custom-business-logic)
259260
collection | String | All | The name of the Entity Collection (or Entity Logical name in `v1.4.0+`).
260261
contentId | String | `createRequest`, `updateRequest`, `upsertRequest`, `deleteRequest` | `v1.5.6+` **BATCH REQUESTS ONLY!** Sets Content-ID header or references request in a Change Set. [More Info](https://www.odata.org/documentation/odata-version-3-0/batch-processing/)
261262
count | Boolean | `retrieveMultipleRequest`, `retrieveAllRequest` | Boolean that sets the $count system query option with a value of true to include a count of entities that match the filter criteria up to 5000 (per page). Do not use $top with $count!

lib/utilities/RequestConverter.js

Lines changed: 230 additions & 227 deletions
Large diffs are not rendered by default.

prettier.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* https://prettier.io/docs/en/configuration.html
3+
* @type {import('prettier').Options}
4+
*/
5+
module.exports = {
6+
printWidth: 160,
7+
tabWidth: 4,
8+
singleQuote: false,
9+
useTabs: true,
10+
};

0 commit comments

Comments
 (0)