@wix/auto_sdk_data-extension-schema_schemas 1.0.251 → 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 +47 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +350 -1
- package/build/cjs/index.typings.js +47 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +350 -1
- package/build/cjs/meta.js +47 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +41 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +350 -1
- package/build/es/index.typings.mjs +41 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +350 -1
- package/build/es/meta.mjs +41 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +47 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +350 -1
- package/build/internal/cjs/index.typings.js +47 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +350 -1
- package/build/internal/cjs/meta.js +47 -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 +41 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +350 -1
- package/build/internal/es/index.typings.mjs +41 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +350 -1
- package/build/internal/es/meta.mjs +41 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1064,6 +1064,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
|
1064
1064
|
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
1065
1065
|
return TextAlignment2;
|
|
1066
1066
|
})(TextAlignment || {});
|
|
1067
|
+
var LineCap = /* @__PURE__ */ ((LineCap2) => {
|
|
1068
|
+
LineCap2["SQUARE"] = "SQUARE";
|
|
1069
|
+
LineCap2["ROUND"] = "ROUND";
|
|
1070
|
+
return LineCap2;
|
|
1071
|
+
})(LineCap || {});
|
|
1067
1072
|
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
1068
1073
|
LineStyle2["SINGLE"] = "SINGLE";
|
|
1069
1074
|
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
@@ -3105,6 +3110,36 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
|
3105
3110
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
3106
3111
|
return DispatchHttpMethod2;
|
|
3107
3112
|
})(DispatchHttpMethod || {});
|
|
3113
|
+
var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
|
|
3114
|
+
VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
|
|
3115
|
+
VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
|
|
3116
|
+
VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
|
|
3117
|
+
VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
|
|
3118
|
+
VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
|
|
3119
|
+
return VerificationMethod2;
|
|
3120
|
+
})(VerificationMethod || {});
|
|
3121
|
+
var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
|
|
3122
|
+
VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
|
|
3123
|
+
VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
|
|
3124
|
+
VerificationSource2["UNSIGNED"] = "UNSIGNED";
|
|
3125
|
+
return VerificationSource2;
|
|
3126
|
+
})(VerificationSource || {});
|
|
3127
|
+
var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
|
|
3128
|
+
SignatureEncoding2["HEX"] = "HEX";
|
|
3129
|
+
SignatureEncoding2["BASE64"] = "BASE64";
|
|
3130
|
+
return SignatureEncoding2;
|
|
3131
|
+
})(SignatureEncoding || {});
|
|
3132
|
+
var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
|
|
3133
|
+
SignedPayload2["RAW_BODY"] = "RAW_BODY";
|
|
3134
|
+
SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
|
|
3135
|
+
SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
|
|
3136
|
+
return SignedPayload2;
|
|
3137
|
+
})(SignedPayload || {});
|
|
3138
|
+
var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
|
|
3139
|
+
ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
|
|
3140
|
+
ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
|
|
3141
|
+
return ReplayProtection2;
|
|
3142
|
+
})(ReplayProtection || {});
|
|
3108
3143
|
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
3109
3144
|
AuthType2["OAUTH2"] = "OAUTH2";
|
|
3110
3145
|
AuthType2["API_KEY"] = "API_KEY";
|
|
@@ -3428,6 +3463,7 @@ export {
|
|
|
3428
3463
|
LayoutMode,
|
|
3429
3464
|
LayoutType,
|
|
3430
3465
|
Level,
|
|
3466
|
+
LineCap,
|
|
3431
3467
|
LineStyle,
|
|
3432
3468
|
LinkTarget,
|
|
3433
3469
|
LinkType,
|
|
@@ -3492,6 +3528,7 @@ export {
|
|
|
3492
3528
|
RegionScopeScope,
|
|
3493
3529
|
RegionType,
|
|
3494
3530
|
ReplacementType,
|
|
3531
|
+
ReplayProtection,
|
|
3495
3532
|
RequestedField,
|
|
3496
3533
|
RequiredIndicator,
|
|
3497
3534
|
RequiredIndicatorPlacement,
|
|
@@ -3512,6 +3549,8 @@ export {
|
|
|
3512
3549
|
ScriptType,
|
|
3513
3550
|
SidebarDataType,
|
|
3514
3551
|
SidebarEntityType,
|
|
3552
|
+
SignatureEncoding,
|
|
3553
|
+
SignedPayload,
|
|
3515
3554
|
SimpleType,
|
|
3516
3555
|
SiteMembersSsrCaching,
|
|
3517
3556
|
SizingType,
|
|
@@ -3553,6 +3592,8 @@ export {
|
|
|
3553
3592
|
ValueConstraintType,
|
|
3554
3593
|
Variant,
|
|
3555
3594
|
VectorArtCategoryTypes,
|
|
3595
|
+
VerificationMethod,
|
|
3596
|
+
VerificationSource,
|
|
3556
3597
|
Vertical,
|
|
3557
3598
|
VerticalAlignment,
|
|
3558
3599
|
VerticalAlignmentAlignment,
|