@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.
@@ -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 the complete provider response body before returning it to the
26463
- * caller. When absent, the dispatcher returns the raw provider response exactly as received.
26464
- * This does not select a value from a JSON envelope: providers such as GitHub's Contents API,
26465
- * whose Base64 value is in a JSON "content" property, require a separately declared JSON
26466
- * extraction contract.
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
@@ -3059,6 +3059,14 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
3059
3059
  DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
3060
3060
  DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
3061
3061
  DisplayValueEnumDisplayValue2["listItem"] = "listItem";
3062
+ DisplayValueEnumDisplayValue2["tableRowGroup"] = "tableRowGroup";
3063
+ DisplayValueEnumDisplayValue2["tableHeaderGroup"] = "tableHeaderGroup";
3064
+ DisplayValueEnumDisplayValue2["tableFooterGroup"] = "tableFooterGroup";
3065
+ DisplayValueEnumDisplayValue2["tableRow"] = "tableRow";
3066
+ DisplayValueEnumDisplayValue2["tableCell"] = "tableCell";
3067
+ DisplayValueEnumDisplayValue2["tableColumnGroup"] = "tableColumnGroup";
3068
+ DisplayValueEnumDisplayValue2["tableColumn"] = "tableColumn";
3069
+ DisplayValueEnumDisplayValue2["tableCaption"] = "tableCaption";
3062
3070
  return DisplayValueEnumDisplayValue2;
3063
3071
  })(DisplayValueEnumDisplayValue || {});
3064
3072
  var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {