@wix/auto_sdk_data-extension-schema_schemas 1.0.252 → 1.0.254
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 +41 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +355 -3
- package/build/cjs/index.typings.js +41 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +355 -3
- package/build/cjs/meta.js +41 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +36 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +355 -3
- package/build/es/index.typings.mjs +36 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +355 -3
- package/build/es/meta.mjs +36 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +41 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +355 -3
- package/build/internal/cjs/index.typings.js +41 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +355 -3
- package/build/internal/cjs/meta.js +41 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +36 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +355 -3
- package/build/internal/es/index.typings.mjs +36 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +355 -3
- package/build/internal/es/meta.mjs +36 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -236,6 +236,7 @@ __export(index_typings_exports, {
|
|
|
236
236
|
RegionScopeScope: () => RegionScopeScope,
|
|
237
237
|
RegionType: () => RegionType,
|
|
238
238
|
ReplacementType: () => ReplacementType,
|
|
239
|
+
ReplayProtection: () => ReplayProtection,
|
|
239
240
|
RequestedField: () => RequestedField,
|
|
240
241
|
RequiredIndicator: () => RequiredIndicator,
|
|
241
242
|
RequiredIndicatorPlacement: () => RequiredIndicatorPlacement,
|
|
@@ -256,6 +257,8 @@ __export(index_typings_exports, {
|
|
|
256
257
|
ScriptType: () => ScriptType,
|
|
257
258
|
SidebarDataType: () => SidebarDataType,
|
|
258
259
|
SidebarEntityType: () => SidebarEntityType,
|
|
260
|
+
SignatureEncoding: () => SignatureEncoding,
|
|
261
|
+
SignedPayload: () => SignedPayload,
|
|
259
262
|
SimpleType: () => SimpleType,
|
|
260
263
|
SiteMembersSsrCaching: () => SiteMembersSsrCaching,
|
|
261
264
|
SizingType: () => SizingType,
|
|
@@ -297,6 +300,8 @@ __export(index_typings_exports, {
|
|
|
297
300
|
ValueConstraintType: () => ValueConstraintType,
|
|
298
301
|
Variant: () => Variant,
|
|
299
302
|
VectorArtCategoryTypes: () => VectorArtCategoryTypes,
|
|
303
|
+
VerificationMethod: () => VerificationMethod,
|
|
304
|
+
VerificationSource: () => VerificationSource,
|
|
300
305
|
Vertical: () => Vertical,
|
|
301
306
|
VerticalAlignment: () => VerticalAlignment,
|
|
302
307
|
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
@@ -775,6 +780,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
775
780
|
ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
|
|
776
781
|
ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
|
|
777
782
|
ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
|
|
783
|
+
ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
|
|
778
784
|
return ComponentType2;
|
|
779
785
|
})(ComponentType || {});
|
|
780
786
|
var WidgetVertical = /* @__PURE__ */ ((WidgetVertical2) => {
|
|
@@ -3433,6 +3439,36 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
|
3433
3439
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
3434
3440
|
return DispatchHttpMethod2;
|
|
3435
3441
|
})(DispatchHttpMethod || {});
|
|
3442
|
+
var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
|
|
3443
|
+
VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
|
|
3444
|
+
VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
|
|
3445
|
+
VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
|
|
3446
|
+
VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
|
|
3447
|
+
VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
|
|
3448
|
+
return VerificationMethod2;
|
|
3449
|
+
})(VerificationMethod || {});
|
|
3450
|
+
var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
|
|
3451
|
+
VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
|
|
3452
|
+
VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
|
|
3453
|
+
VerificationSource2["UNSIGNED"] = "UNSIGNED";
|
|
3454
|
+
return VerificationSource2;
|
|
3455
|
+
})(VerificationSource || {});
|
|
3456
|
+
var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
|
|
3457
|
+
SignatureEncoding2["HEX"] = "HEX";
|
|
3458
|
+
SignatureEncoding2["BASE64"] = "BASE64";
|
|
3459
|
+
return SignatureEncoding2;
|
|
3460
|
+
})(SignatureEncoding || {});
|
|
3461
|
+
var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
|
|
3462
|
+
SignedPayload2["RAW_BODY"] = "RAW_BODY";
|
|
3463
|
+
SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
|
|
3464
|
+
SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
|
|
3465
|
+
return SignedPayload2;
|
|
3466
|
+
})(SignedPayload || {});
|
|
3467
|
+
var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
|
|
3468
|
+
ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
|
|
3469
|
+
ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
|
|
3470
|
+
return ReplayProtection2;
|
|
3471
|
+
})(ReplayProtection || {});
|
|
3436
3472
|
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
3437
3473
|
AuthType2["OAUTH2"] = "OAUTH2";
|
|
3438
3474
|
AuthType2["API_KEY"] = "API_KEY";
|
|
@@ -3822,6 +3858,7 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
|
|
|
3822
3858
|
RegionScopeScope,
|
|
3823
3859
|
RegionType,
|
|
3824
3860
|
ReplacementType,
|
|
3861
|
+
ReplayProtection,
|
|
3825
3862
|
RequestedField,
|
|
3826
3863
|
RequiredIndicator,
|
|
3827
3864
|
RequiredIndicatorPlacement,
|
|
@@ -3842,6 +3879,8 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
|
|
|
3842
3879
|
ScriptType,
|
|
3843
3880
|
SidebarDataType,
|
|
3844
3881
|
SidebarEntityType,
|
|
3882
|
+
SignatureEncoding,
|
|
3883
|
+
SignedPayload,
|
|
3845
3884
|
SimpleType,
|
|
3846
3885
|
SiteMembersSsrCaching,
|
|
3847
3886
|
SizingType,
|
|
@@ -3883,6 +3922,8 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
|
|
|
3883
3922
|
ValueConstraintType,
|
|
3884
3923
|
Variant,
|
|
3885
3924
|
VectorArtCategoryTypes,
|
|
3925
|
+
VerificationMethod,
|
|
3926
|
+
VerificationSource,
|
|
3886
3927
|
Vertical,
|
|
3887
3928
|
VerticalAlignment,
|
|
3888
3929
|
VerticalAlignmentAlignment,
|