@wix/auto_sdk_data-extension-schema_schemas 1.0.252 → 1.0.253
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 +40 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +320 -1
- package/build/cjs/index.typings.js +40 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +320 -1
- package/build/cjs/meta.js +40 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +35 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +320 -1
- package/build/es/index.typings.mjs +35 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +320 -1
- package/build/es/meta.mjs +35 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +40 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +320 -1
- package/build/internal/cjs/index.typings.js +40 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +320 -1
- package/build/internal/cjs/meta.js +40 -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 +35 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +320 -1
- package/build/internal/es/index.typings.mjs +35 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +320 -1
- package/build/internal/es/meta.mjs +35 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.js
CHANGED
|
@@ -236,6 +236,7 @@ __export(meta_exports, {
|
|
|
236
236
|
RegionScopeScopeOriginal: () => RegionScopeScope,
|
|
237
237
|
RegionTypeOriginal: () => RegionType,
|
|
238
238
|
ReplacementTypeOriginal: () => ReplacementType,
|
|
239
|
+
ReplayProtectionOriginal: () => ReplayProtection,
|
|
239
240
|
RequestedFieldOriginal: () => RequestedField,
|
|
240
241
|
RequiredIndicatorOriginal: () => RequiredIndicator,
|
|
241
242
|
RequiredIndicatorPlacementOriginal: () => RequiredIndicatorPlacement,
|
|
@@ -256,6 +257,8 @@ __export(meta_exports, {
|
|
|
256
257
|
ScriptTypeOriginal: () => ScriptType,
|
|
257
258
|
SidebarDataTypeOriginal: () => SidebarDataType,
|
|
258
259
|
SidebarEntityTypeOriginal: () => SidebarEntityType,
|
|
260
|
+
SignatureEncodingOriginal: () => SignatureEncoding,
|
|
261
|
+
SignedPayloadOriginal: () => SignedPayload,
|
|
259
262
|
SimpleTypeOriginal: () => SimpleType,
|
|
260
263
|
SiteMembersSsrCachingOriginal: () => SiteMembersSsrCaching,
|
|
261
264
|
SizingTypeOriginal: () => SizingType,
|
|
@@ -297,6 +300,8 @@ __export(meta_exports, {
|
|
|
297
300
|
ValueConstraintTypeOriginal: () => ValueConstraintType,
|
|
298
301
|
VariantOriginal: () => Variant,
|
|
299
302
|
VectorArtCategoryTypesOriginal: () => VectorArtCategoryTypes,
|
|
303
|
+
VerificationMethodOriginal: () => VerificationMethod,
|
|
304
|
+
VerificationSourceOriginal: () => VerificationSource,
|
|
300
305
|
VerticalAlignmentAlignmentOriginal: () => VerticalAlignmentAlignment,
|
|
301
306
|
VerticalAlignmentOriginal: () => VerticalAlignment,
|
|
302
307
|
VerticalDockingOriginal: () => VerticalDocking,
|
|
@@ -3429,6 +3434,36 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
|
3429
3434
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
3430
3435
|
return DispatchHttpMethod2;
|
|
3431
3436
|
})(DispatchHttpMethod || {});
|
|
3437
|
+
var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
|
|
3438
|
+
VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
|
|
3439
|
+
VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
|
|
3440
|
+
VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
|
|
3441
|
+
VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
|
|
3442
|
+
VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
|
|
3443
|
+
return VerificationMethod2;
|
|
3444
|
+
})(VerificationMethod || {});
|
|
3445
|
+
var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
|
|
3446
|
+
VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
|
|
3447
|
+
VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
|
|
3448
|
+
VerificationSource2["UNSIGNED"] = "UNSIGNED";
|
|
3449
|
+
return VerificationSource2;
|
|
3450
|
+
})(VerificationSource || {});
|
|
3451
|
+
var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
|
|
3452
|
+
SignatureEncoding2["HEX"] = "HEX";
|
|
3453
|
+
SignatureEncoding2["BASE64"] = "BASE64";
|
|
3454
|
+
return SignatureEncoding2;
|
|
3455
|
+
})(SignatureEncoding || {});
|
|
3456
|
+
var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
|
|
3457
|
+
SignedPayload2["RAW_BODY"] = "RAW_BODY";
|
|
3458
|
+
SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
|
|
3459
|
+
SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
|
|
3460
|
+
return SignedPayload2;
|
|
3461
|
+
})(SignedPayload || {});
|
|
3462
|
+
var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
|
|
3463
|
+
ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
|
|
3464
|
+
ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
|
|
3465
|
+
return ReplayProtection2;
|
|
3466
|
+
})(ReplayProtection || {});
|
|
3432
3467
|
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
3433
3468
|
AuthType2["OAUTH2"] = "OAUTH2";
|
|
3434
3469
|
AuthType2["API_KEY"] = "API_KEY";
|
|
@@ -3773,6 +3808,7 @@ function deleteUserDefinedFields2() {
|
|
|
3773
3808
|
RegionScopeScopeOriginal,
|
|
3774
3809
|
RegionTypeOriginal,
|
|
3775
3810
|
ReplacementTypeOriginal,
|
|
3811
|
+
ReplayProtectionOriginal,
|
|
3776
3812
|
RequestedFieldOriginal,
|
|
3777
3813
|
RequiredIndicatorOriginal,
|
|
3778
3814
|
RequiredIndicatorPlacementOriginal,
|
|
@@ -3793,6 +3829,8 @@ function deleteUserDefinedFields2() {
|
|
|
3793
3829
|
ScriptTypeOriginal,
|
|
3794
3830
|
SidebarDataTypeOriginal,
|
|
3795
3831
|
SidebarEntityTypeOriginal,
|
|
3832
|
+
SignatureEncodingOriginal,
|
|
3833
|
+
SignedPayloadOriginal,
|
|
3796
3834
|
SimpleTypeOriginal,
|
|
3797
3835
|
SiteMembersSsrCachingOriginal,
|
|
3798
3836
|
SizingTypeOriginal,
|
|
@@ -3834,6 +3872,8 @@ function deleteUserDefinedFields2() {
|
|
|
3834
3872
|
ValueConstraintTypeOriginal,
|
|
3835
3873
|
VariantOriginal,
|
|
3836
3874
|
VectorArtCategoryTypesOriginal,
|
|
3875
|
+
VerificationMethodOriginal,
|
|
3876
|
+
VerificationSourceOriginal,
|
|
3837
3877
|
VerticalAlignmentAlignmentOriginal,
|
|
3838
3878
|
VerticalAlignmentOriginal,
|
|
3839
3879
|
VerticalDockingOriginal,
|