@wix/auto_sdk_data-extension-schema_schemas 1.0.253 → 1.0.255
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.d.ts +1 -1
- package/build/cjs/index.js +23 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +102 -13
- package/build/cjs/index.typings.js +23 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +102 -13
- package/build/cjs/meta.js +23 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +21 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +102 -13
- package/build/es/index.typings.mjs +21 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +102 -13
- package/build/es/meta.mjs +21 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +23 -6
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +102 -13
- package/build/internal/cjs/index.typings.js +23 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +102 -13
- package/build/internal/cjs/meta.js +23 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +21 -6
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +102 -13
- package/build/internal/es/index.typings.mjs +21 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +102 -13
- package/build/internal/es/meta.mjs +21 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -445,6 +445,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
445
445
|
ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
|
|
446
446
|
ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
|
|
447
447
|
ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
|
|
448
|
+
ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
|
|
448
449
|
return ComponentType2;
|
|
449
450
|
})(ComponentType || {});
|
|
450
451
|
var WidgetVertical = /* @__PURE__ */ ((WidgetVertical2) => {
|
|
@@ -3076,18 +3077,30 @@ var IdentityHttpMethod = /* @__PURE__ */ ((IdentityHttpMethod2) => {
|
|
|
3076
3077
|
IdentityHttpMethod2["POST"] = "POST";
|
|
3077
3078
|
return IdentityHttpMethod2;
|
|
3078
3079
|
})(IdentityHttpMethod || {});
|
|
3079
|
-
var
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
return
|
|
3084
|
-
})(
|
|
3080
|
+
var RevocationHttpMethod = /* @__PURE__ */ ((RevocationHttpMethod2) => {
|
|
3081
|
+
RevocationHttpMethod2["UNKNOWN_REVOCATION_HTTP_METHOD"] = "UNKNOWN_REVOCATION_HTTP_METHOD";
|
|
3082
|
+
RevocationHttpMethod2["POST"] = "POST";
|
|
3083
|
+
RevocationHttpMethod2["DELETE"] = "DELETE";
|
|
3084
|
+
return RevocationHttpMethod2;
|
|
3085
|
+
})(RevocationHttpMethod || {});
|
|
3086
|
+
var RevocationBodyStyle = /* @__PURE__ */ ((RevocationBodyStyle2) => {
|
|
3087
|
+
RevocationBodyStyle2["UNKNOWN_REVOCATION_BODY_STYLE"] = "UNKNOWN_REVOCATION_BODY_STYLE";
|
|
3088
|
+
RevocationBodyStyle2["FORM"] = "FORM";
|
|
3089
|
+
RevocationBodyStyle2["JSON"] = "JSON";
|
|
3090
|
+
return RevocationBodyStyle2;
|
|
3091
|
+
})(RevocationBodyStyle || {});
|
|
3085
3092
|
var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
|
|
3086
3093
|
TokenEndpointAuthMethod2["UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD"] = "UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD";
|
|
3087
3094
|
TokenEndpointAuthMethod2["CLIENT_SECRET_POST"] = "CLIENT_SECRET_POST";
|
|
3088
3095
|
TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
|
|
3089
3096
|
return TokenEndpointAuthMethod2;
|
|
3090
3097
|
})(TokenEndpointAuthMethod || {});
|
|
3098
|
+
var ScopeSeparator = /* @__PURE__ */ ((ScopeSeparator2) => {
|
|
3099
|
+
ScopeSeparator2["UNKNOWN_SCOPE_SEPARATOR"] = "UNKNOWN_SCOPE_SEPARATOR";
|
|
3100
|
+
ScopeSeparator2["SPACE"] = "SPACE";
|
|
3101
|
+
ScopeSeparator2["COMMA"] = "COMMA";
|
|
3102
|
+
return ScopeSeparator2;
|
|
3103
|
+
})(ScopeSeparator || {});
|
|
3091
3104
|
var DurableCredentialMode = /* @__PURE__ */ ((DurableCredentialMode2) => {
|
|
3092
3105
|
DurableCredentialMode2["REFRESH_TOKEN"] = "REFRESH_TOKEN";
|
|
3093
3106
|
DurableCredentialMode2["LONG_LIVED_ACCESS_TOKEN"] = "LONG_LIVED_ACCESS_TOKEN";
|
|
@@ -3485,6 +3498,8 @@ export {
|
|
|
3485
3498
|
ResponsivenessBehaviour as ResponsivenessBehaviourOriginal,
|
|
3486
3499
|
RestrictedOperation as RestrictedOperationOriginal,
|
|
3487
3500
|
RestrictionLevel as RestrictionLevelOriginal,
|
|
3501
|
+
RevocationBodyStyle as RevocationBodyStyleOriginal,
|
|
3502
|
+
RevocationHttpMethod as RevocationHttpMethodOriginal,
|
|
3488
3503
|
RichTextAbilities as RichTextAbilitiesOriginal,
|
|
3489
3504
|
Scaling as ScalingOriginal,
|
|
3490
3505
|
SchedulingComponentType as SchedulingComponentTypeOriginal,
|