@wix/app-extensions 1.0.147 → 1.0.149
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 +7 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +89 -16
- package/build/trusted/cjs/index.js +8 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +89 -16
- package/build/trusted/es/index.mjs +7 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -285,6 +285,7 @@ __export(index_exports, {
|
|
|
285
285
|
Status: () => Status,
|
|
286
286
|
StorageDomain: () => StorageDomain,
|
|
287
287
|
StorageType: () => StorageType,
|
|
288
|
+
StoredToken: () => StoredToken,
|
|
288
289
|
StringComponentType: () => StringComponentType,
|
|
289
290
|
StyleType: () => StyleType,
|
|
290
291
|
StylesPosition: () => StylesPosition,
|
|
@@ -3712,6 +3713,12 @@ var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
|
|
|
3712
3713
|
TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
|
|
3713
3714
|
return TokenEndpointAuthMethod2;
|
|
3714
3715
|
})(TokenEndpointAuthMethod || {});
|
|
3716
|
+
var StoredToken = /* @__PURE__ */ ((StoredToken2) => {
|
|
3717
|
+
StoredToken2["UNKNOWN_STORED_TOKEN"] = "UNKNOWN_STORED_TOKEN";
|
|
3718
|
+
StoredToken2["ONLY_TOKEN"] = "ONLY_TOKEN";
|
|
3719
|
+
StoredToken2["PRIMARY_OF_MULTIPLE"] = "PRIMARY_OF_MULTIPLE";
|
|
3720
|
+
return StoredToken2;
|
|
3721
|
+
})(StoredToken || {});
|
|
3715
3722
|
var ScopeSeparator = /* @__PURE__ */ ((ScopeSeparator2) => {
|
|
3716
3723
|
ScopeSeparator2["UNKNOWN_SCOPE_SEPARATOR"] = "UNKNOWN_SCOPE_SEPARATOR";
|
|
3717
3724
|
ScopeSeparator2["SPACE"] = "SPACE";
|
|
@@ -6953,6 +6960,7 @@ function webhookProviderModule({
|
|
|
6953
6960
|
Status,
|
|
6954
6961
|
StorageDomain,
|
|
6955
6962
|
StorageType,
|
|
6963
|
+
StoredToken,
|
|
6956
6964
|
StringComponentType,
|
|
6957
6965
|
StyleType,
|
|
6958
6966
|
StylesPosition,
|