@wix/app-extensions 1.0.91 → 1.0.93
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 +7 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +39 -1
- package/build/trusted/cjs/index.js +7 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +39 -1
- package/build/trusted/es/index.mjs +6 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -244,6 +244,7 @@ __export(index_exports, {
|
|
|
244
244
|
RequiredIndicatorPlacement: () => RequiredIndicatorPlacement,
|
|
245
245
|
ResizeDirection: () => ResizeDirection,
|
|
246
246
|
Resizing: () => Resizing,
|
|
247
|
+
ResponseBodyDecoding: () => ResponseBodyDecoding,
|
|
247
248
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
248
249
|
RestrictedOperation: () => RestrictedOperation,
|
|
249
250
|
RestrictionLevel: () => RestrictionLevel,
|
|
@@ -3581,6 +3582,11 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
|
3581
3582
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
3582
3583
|
return DispatchHttpMethod2;
|
|
3583
3584
|
})(DispatchHttpMethod || {});
|
|
3585
|
+
var ResponseBodyDecoding = /* @__PURE__ */ ((ResponseBodyDecoding2) => {
|
|
3586
|
+
ResponseBodyDecoding2["UNKNOWN_RESPONSE_BODY_DECODING"] = "UNKNOWN_RESPONSE_BODY_DECODING";
|
|
3587
|
+
ResponseBodyDecoding2["BASE64_TEXT"] = "BASE64_TEXT";
|
|
3588
|
+
return ResponseBodyDecoding2;
|
|
3589
|
+
})(ResponseBodyDecoding || {});
|
|
3584
3590
|
var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
|
|
3585
3591
|
VerificationMethod2["UNKNOWN_VERIFICATION_METHOD"] = "UNKNOWN_VERIFICATION_METHOD";
|
|
3586
3592
|
VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
|
|
@@ -6698,6 +6704,7 @@ function toolsProviderConfig({
|
|
|
6698
6704
|
RequiredIndicatorPlacement,
|
|
6699
6705
|
ResizeDirection,
|
|
6700
6706
|
Resizing,
|
|
6707
|
+
ResponseBodyDecoding,
|
|
6701
6708
|
ResponsivenessBehaviour,
|
|
6702
6709
|
RestrictedOperation,
|
|
6703
6710
|
RestrictionLevel,
|