@wix/app-extensions 1.0.132 → 1.0.134
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +8 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +8 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +33 -7
- package/build/trusted/cjs/index.js +8 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +33 -7
- package/build/trusted/es/index.mjs +8 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -20847,11 +20847,19 @@ declare enum DisplayValueEnumDisplayValue {
|
|
|
20847
20847
|
inlineTable = "inlineTable",
|
|
20848
20848
|
inlineFlex = "inlineFlex",
|
|
20849
20849
|
inlineGrid = "inlineGrid",
|
|
20850
|
-
listItem = "listItem"
|
|
20850
|
+
listItem = "listItem",
|
|
20851
|
+
tableRowGroup = "tableRowGroup",
|
|
20852
|
+
tableHeaderGroup = "tableHeaderGroup",
|
|
20853
|
+
tableFooterGroup = "tableFooterGroup",
|
|
20854
|
+
tableRow = "tableRow",
|
|
20855
|
+
tableCell = "tableCell",
|
|
20856
|
+
tableColumnGroup = "tableColumnGroup",
|
|
20857
|
+
tableColumn = "tableColumn",
|
|
20858
|
+
tableCaption = "tableCaption"
|
|
20851
20859
|
}
|
|
20852
20860
|
/** @enumType */
|
|
20853
20861
|
/** @internal */
|
|
20854
|
-
type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid' | 'inlineBlock' | 'inlineTable' | 'inlineFlex' | 'inlineGrid' | 'listItem';
|
|
20862
|
+
type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid' | 'inlineBlock' | 'inlineTable' | 'inlineFlex' | 'inlineGrid' | 'listItem' | 'tableRowGroup' | 'tableHeaderGroup' | 'tableFooterGroup' | 'tableRow' | 'tableCell' | 'tableColumnGroup' | 'tableColumn' | 'tableCaption';
|
|
20855
20863
|
/** @internal */
|
|
20856
20864
|
interface WritingMode {
|
|
20857
20865
|
/**
|
|
@@ -26459,13 +26467,31 @@ interface DispatchConfig {
|
|
|
26459
26467
|
*/
|
|
26460
26468
|
allowedPathPrefixes?: string[];
|
|
26461
26469
|
/**
|
|
26462
|
-
* How the dispatcher transforms
|
|
26463
|
-
*
|
|
26464
|
-
*
|
|
26465
|
-
*
|
|
26466
|
-
*
|
|
26470
|
+
* How the dispatcher transforms provider response content before returning it to the caller.
|
|
26471
|
+
* When absent, the dispatcher returns the raw provider response exactly as received.
|
|
26472
|
+
*
|
|
26473
|
+
* When response_body_field_json_pointers is empty, this transformation applies to the complete
|
|
26474
|
+
* response body, exactly as above. When response_body_field_json_pointers is non-empty, this
|
|
26475
|
+
* transformation instead applies to each field value those pointers resolve, leaving the rest of
|
|
26476
|
+
* the body unchanged - that is the separately declared JSON extraction contract this field used
|
|
26477
|
+
* to be missing, needed by providers such as GitHub's Contents API whose Base64 value sits inside
|
|
26478
|
+
* a JSON "content" property rather than filling the whole body.
|
|
26467
26479
|
*/
|
|
26468
26480
|
responseBodyDecoding?: ResponseBodyDecodingWithLiterals;
|
|
26481
|
+
/**
|
|
26482
|
+
* One JSON pointer (RFC 6901) per response field response_body_decoding applies to, resolved
|
|
26483
|
+
* against the parsed response body. If the body's root is a JSON array, each pointer is resolved
|
|
26484
|
+
* against every element instead of the root, and every match is transformed independently. Empty:
|
|
26485
|
+
* response_body_decoding applies to the complete response body instead of any field within it,
|
|
26486
|
+
* exactly as when this field is absent.
|
|
26487
|
+
*
|
|
26488
|
+
* The RFC 6901 root pointer ("") is rejected, not accepted as "select the whole element": the
|
|
26489
|
+
* dispatcher only replaces a named field's value in place, and has no operation for replacing a
|
|
26490
|
+
* matched element itself. Selecting the whole body is what an empty list already means.
|
|
26491
|
+
* @maxSize 100
|
|
26492
|
+
* @maxLength 500
|
|
26493
|
+
*/
|
|
26494
|
+
responseBodyFieldJsonPointers?: string[];
|
|
26469
26495
|
}
|
|
26470
26496
|
/**
|
|
26471
26497
|
* Declares how a provider webhook delivery is verified and classified. Every field describes
|
|
@@ -2486,6 +2486,14 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
|
|
|
2486
2486
|
DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
|
|
2487
2487
|
DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
|
|
2488
2488
|
DisplayValueEnumDisplayValue2["listItem"] = "listItem";
|
|
2489
|
+
DisplayValueEnumDisplayValue2["tableRowGroup"] = "tableRowGroup";
|
|
2490
|
+
DisplayValueEnumDisplayValue2["tableHeaderGroup"] = "tableHeaderGroup";
|
|
2491
|
+
DisplayValueEnumDisplayValue2["tableFooterGroup"] = "tableFooterGroup";
|
|
2492
|
+
DisplayValueEnumDisplayValue2["tableRow"] = "tableRow";
|
|
2493
|
+
DisplayValueEnumDisplayValue2["tableCell"] = "tableCell";
|
|
2494
|
+
DisplayValueEnumDisplayValue2["tableColumnGroup"] = "tableColumnGroup";
|
|
2495
|
+
DisplayValueEnumDisplayValue2["tableColumn"] = "tableColumn";
|
|
2496
|
+
DisplayValueEnumDisplayValue2["tableCaption"] = "tableCaption";
|
|
2489
2497
|
return DisplayValueEnumDisplayValue2;
|
|
2490
2498
|
})(DisplayValueEnumDisplayValue || {});
|
|
2491
2499
|
var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {
|