@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
package/build/cjs/meta.js
CHANGED
|
@@ -245,6 +245,8 @@ __export(meta_exports, {
|
|
|
245
245
|
ResponsivenessBehaviourOriginal: () => ResponsivenessBehaviour,
|
|
246
246
|
RestrictedOperationOriginal: () => RestrictedOperation,
|
|
247
247
|
RestrictionLevelOriginal: () => RestrictionLevel,
|
|
248
|
+
RevocationBodyStyleOriginal: () => RevocationBodyStyle,
|
|
249
|
+
RevocationHttpMethodOriginal: () => RevocationHttpMethod,
|
|
248
250
|
RichTextAbilitiesOriginal: () => RichTextAbilities,
|
|
249
251
|
ScalingOriginal: () => Scaling,
|
|
250
252
|
SchedulingComponentTypeOriginal: () => SchedulingComponentType,
|
|
@@ -776,6 +778,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
776
778
|
ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
|
|
777
779
|
ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
|
|
778
780
|
ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
|
|
781
|
+
ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
|
|
779
782
|
return ComponentType2;
|
|
780
783
|
})(ComponentType || {});
|
|
781
784
|
var WidgetVertical = /* @__PURE__ */ ((WidgetVertical2) => {
|
|
@@ -3407,18 +3410,30 @@ var IdentityHttpMethod = /* @__PURE__ */ ((IdentityHttpMethod2) => {
|
|
|
3407
3410
|
IdentityHttpMethod2["POST"] = "POST";
|
|
3408
3411
|
return IdentityHttpMethod2;
|
|
3409
3412
|
})(IdentityHttpMethod || {});
|
|
3410
|
-
var
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
return
|
|
3415
|
-
})(
|
|
3413
|
+
var RevocationHttpMethod = /* @__PURE__ */ ((RevocationHttpMethod2) => {
|
|
3414
|
+
RevocationHttpMethod2["UNKNOWN_REVOCATION_HTTP_METHOD"] = "UNKNOWN_REVOCATION_HTTP_METHOD";
|
|
3415
|
+
RevocationHttpMethod2["POST"] = "POST";
|
|
3416
|
+
RevocationHttpMethod2["DELETE"] = "DELETE";
|
|
3417
|
+
return RevocationHttpMethod2;
|
|
3418
|
+
})(RevocationHttpMethod || {});
|
|
3419
|
+
var RevocationBodyStyle = /* @__PURE__ */ ((RevocationBodyStyle2) => {
|
|
3420
|
+
RevocationBodyStyle2["UNKNOWN_REVOCATION_BODY_STYLE"] = "UNKNOWN_REVOCATION_BODY_STYLE";
|
|
3421
|
+
RevocationBodyStyle2["FORM"] = "FORM";
|
|
3422
|
+
RevocationBodyStyle2["JSON"] = "JSON";
|
|
3423
|
+
return RevocationBodyStyle2;
|
|
3424
|
+
})(RevocationBodyStyle || {});
|
|
3416
3425
|
var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
|
|
3417
3426
|
TokenEndpointAuthMethod2["UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD"] = "UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD";
|
|
3418
3427
|
TokenEndpointAuthMethod2["CLIENT_SECRET_POST"] = "CLIENT_SECRET_POST";
|
|
3419
3428
|
TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
|
|
3420
3429
|
return TokenEndpointAuthMethod2;
|
|
3421
3430
|
})(TokenEndpointAuthMethod || {});
|
|
3431
|
+
var ScopeSeparator = /* @__PURE__ */ ((ScopeSeparator2) => {
|
|
3432
|
+
ScopeSeparator2["UNKNOWN_SCOPE_SEPARATOR"] = "UNKNOWN_SCOPE_SEPARATOR";
|
|
3433
|
+
ScopeSeparator2["SPACE"] = "SPACE";
|
|
3434
|
+
ScopeSeparator2["COMMA"] = "COMMA";
|
|
3435
|
+
return ScopeSeparator2;
|
|
3436
|
+
})(ScopeSeparator || {});
|
|
3422
3437
|
var DurableCredentialMode = /* @__PURE__ */ ((DurableCredentialMode2) => {
|
|
3423
3438
|
DurableCredentialMode2["REFRESH_TOKEN"] = "REFRESH_TOKEN";
|
|
3424
3439
|
DurableCredentialMode2["LONG_LIVED_ACCESS_TOKEN"] = "LONG_LIVED_ACCESS_TOKEN";
|
|
@@ -3817,6 +3832,8 @@ function deleteUserDefinedFields2() {
|
|
|
3817
3832
|
ResponsivenessBehaviourOriginal,
|
|
3818
3833
|
RestrictedOperationOriginal,
|
|
3819
3834
|
RestrictionLevelOriginal,
|
|
3835
|
+
RevocationBodyStyleOriginal,
|
|
3836
|
+
RevocationHttpMethodOriginal,
|
|
3820
3837
|
RichTextAbilitiesOriginal,
|
|
3821
3838
|
ScalingOriginal,
|
|
3822
3839
|
SchedulingComponentTypeOriginal,
|