@wix/app-extensions 1.0.88 → 1.0.89
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 +22 -6
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +20 -6
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +89 -11
- package/build/trusted/cjs/index.js +22 -6
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +89 -11
- package/build/trusted/es/index.mjs +20 -6
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -245,6 +245,8 @@ __export(index_exports, {
|
|
|
245
245
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
246
246
|
RestrictedOperation: () => RestrictedOperation,
|
|
247
247
|
RestrictionLevel: () => RestrictionLevel,
|
|
248
|
+
RevocationBodyStyle: () => RevocationBodyStyle,
|
|
249
|
+
RevocationHttpMethod: () => RevocationHttpMethod,
|
|
248
250
|
RichTextAbilities: () => RichTextAbilities,
|
|
249
251
|
Scaling: () => Scaling,
|
|
250
252
|
SchedulingComponentType: () => SchedulingComponentType,
|
|
@@ -3511,18 +3513,30 @@ var IdentityHttpMethod = /* @__PURE__ */ ((IdentityHttpMethod2) => {
|
|
|
3511
3513
|
IdentityHttpMethod2["POST"] = "POST";
|
|
3512
3514
|
return IdentityHttpMethod2;
|
|
3513
3515
|
})(IdentityHttpMethod || {});
|
|
3514
|
-
var
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
return
|
|
3519
|
-
})(
|
|
3516
|
+
var RevocationHttpMethod = /* @__PURE__ */ ((RevocationHttpMethod2) => {
|
|
3517
|
+
RevocationHttpMethod2["UNKNOWN_REVOCATION_HTTP_METHOD"] = "UNKNOWN_REVOCATION_HTTP_METHOD";
|
|
3518
|
+
RevocationHttpMethod2["POST"] = "POST";
|
|
3519
|
+
RevocationHttpMethod2["DELETE"] = "DELETE";
|
|
3520
|
+
return RevocationHttpMethod2;
|
|
3521
|
+
})(RevocationHttpMethod || {});
|
|
3522
|
+
var RevocationBodyStyle = /* @__PURE__ */ ((RevocationBodyStyle2) => {
|
|
3523
|
+
RevocationBodyStyle2["UNKNOWN_REVOCATION_BODY_STYLE"] = "UNKNOWN_REVOCATION_BODY_STYLE";
|
|
3524
|
+
RevocationBodyStyle2["FORM"] = "FORM";
|
|
3525
|
+
RevocationBodyStyle2["JSON"] = "JSON";
|
|
3526
|
+
return RevocationBodyStyle2;
|
|
3527
|
+
})(RevocationBodyStyle || {});
|
|
3520
3528
|
var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
|
|
3521
3529
|
TokenEndpointAuthMethod2["UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD"] = "UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD";
|
|
3522
3530
|
TokenEndpointAuthMethod2["CLIENT_SECRET_POST"] = "CLIENT_SECRET_POST";
|
|
3523
3531
|
TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
|
|
3524
3532
|
return TokenEndpointAuthMethod2;
|
|
3525
3533
|
})(TokenEndpointAuthMethod || {});
|
|
3534
|
+
var ScopeSeparator = /* @__PURE__ */ ((ScopeSeparator2) => {
|
|
3535
|
+
ScopeSeparator2["UNKNOWN_SCOPE_SEPARATOR"] = "UNKNOWN_SCOPE_SEPARATOR";
|
|
3536
|
+
ScopeSeparator2["SPACE"] = "SPACE";
|
|
3537
|
+
ScopeSeparator2["COMMA"] = "COMMA";
|
|
3538
|
+
return ScopeSeparator2;
|
|
3539
|
+
})(ScopeSeparator || {});
|
|
3526
3540
|
var DurableCredentialMode = /* @__PURE__ */ ((DurableCredentialMode2) => {
|
|
3527
3541
|
DurableCredentialMode2["UNKNOWN_DURABLE_CREDENTIAL_MODE"] = "UNKNOWN_DURABLE_CREDENTIAL_MODE";
|
|
3528
3542
|
DurableCredentialMode2["REFRESH_TOKEN"] = "REFRESH_TOKEN";
|
|
@@ -6658,6 +6672,8 @@ function toolsProviderConfig({
|
|
|
6658
6672
|
ResponsivenessBehaviour,
|
|
6659
6673
|
RestrictedOperation,
|
|
6660
6674
|
RestrictionLevel,
|
|
6675
|
+
RevocationBodyStyle,
|
|
6676
|
+
RevocationHttpMethod,
|
|
6661
6677
|
RichTextAbilities,
|
|
6662
6678
|
Scaling,
|
|
6663
6679
|
SchedulingComponentType,
|