@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
|
@@ -3103,6 +3103,36 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
|
3103
3103
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
3104
3104
|
return DispatchHttpMethod2;
|
|
3105
3105
|
})(DispatchHttpMethod || {});
|
|
3106
|
+
var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
|
|
3107
|
+
VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
|
|
3108
|
+
VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
|
|
3109
|
+
VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
|
|
3110
|
+
VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
|
|
3111
|
+
VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
|
|
3112
|
+
return VerificationMethod2;
|
|
3113
|
+
})(VerificationMethod || {});
|
|
3114
|
+
var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
|
|
3115
|
+
VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
|
|
3116
|
+
VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
|
|
3117
|
+
VerificationSource2["UNSIGNED"] = "UNSIGNED";
|
|
3118
|
+
return VerificationSource2;
|
|
3119
|
+
})(VerificationSource || {});
|
|
3120
|
+
var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
|
|
3121
|
+
SignatureEncoding2["HEX"] = "HEX";
|
|
3122
|
+
SignatureEncoding2["BASE64"] = "BASE64";
|
|
3123
|
+
return SignatureEncoding2;
|
|
3124
|
+
})(SignatureEncoding || {});
|
|
3125
|
+
var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
|
|
3126
|
+
SignedPayload2["RAW_BODY"] = "RAW_BODY";
|
|
3127
|
+
SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
|
|
3128
|
+
SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
|
|
3129
|
+
return SignedPayload2;
|
|
3130
|
+
})(SignedPayload || {});
|
|
3131
|
+
var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
|
|
3132
|
+
ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
|
|
3133
|
+
ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
|
|
3134
|
+
return ReplayProtection2;
|
|
3135
|
+
})(ReplayProtection || {});
|
|
3106
3136
|
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
3107
3137
|
AuthType2["OAUTH2"] = "OAUTH2";
|
|
3108
3138
|
AuthType2["API_KEY"] = "API_KEY";
|
|
@@ -3446,6 +3476,7 @@ export {
|
|
|
3446
3476
|
RegionScopeScope as RegionScopeScopeOriginal,
|
|
3447
3477
|
RegionType as RegionTypeOriginal,
|
|
3448
3478
|
ReplacementType as ReplacementTypeOriginal,
|
|
3479
|
+
ReplayProtection as ReplayProtectionOriginal,
|
|
3449
3480
|
RequestedField as RequestedFieldOriginal,
|
|
3450
3481
|
RequiredIndicator as RequiredIndicatorOriginal,
|
|
3451
3482
|
RequiredIndicatorPlacement as RequiredIndicatorPlacementOriginal,
|
|
@@ -3466,6 +3497,8 @@ export {
|
|
|
3466
3497
|
ScriptType as ScriptTypeOriginal,
|
|
3467
3498
|
SidebarDataType as SidebarDataTypeOriginal,
|
|
3468
3499
|
SidebarEntityType as SidebarEntityTypeOriginal,
|
|
3500
|
+
SignatureEncoding as SignatureEncodingOriginal,
|
|
3501
|
+
SignedPayload as SignedPayloadOriginal,
|
|
3469
3502
|
SimpleType as SimpleTypeOriginal,
|
|
3470
3503
|
SiteMembersSsrCaching as SiteMembersSsrCachingOriginal,
|
|
3471
3504
|
SizingType as SizingTypeOriginal,
|
|
@@ -3507,6 +3540,8 @@ export {
|
|
|
3507
3540
|
ValueConstraintType as ValueConstraintTypeOriginal,
|
|
3508
3541
|
Variant as VariantOriginal,
|
|
3509
3542
|
VectorArtCategoryTypes as VectorArtCategoryTypesOriginal,
|
|
3543
|
+
VerificationMethod as VerificationMethodOriginal,
|
|
3544
|
+
VerificationSource as VerificationSourceOriginal,
|
|
3510
3545
|
VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal,
|
|
3511
3546
|
VerticalAlignment as VerticalAlignmentOriginal,
|
|
3512
3547
|
VerticalDocking as VerticalDockingOriginal,
|