@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
|
@@ -1057,6 +1057,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
|
1057
1057
|
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
1058
1058
|
return TextAlignment2;
|
|
1059
1059
|
})(TextAlignment || {});
|
|
1060
|
+
var LineCap = /* @__PURE__ */ ((LineCap2) => {
|
|
1061
|
+
LineCap2["SQUARE"] = "SQUARE";
|
|
1062
|
+
LineCap2["ROUND"] = "ROUND";
|
|
1063
|
+
return LineCap2;
|
|
1064
|
+
})(LineCap || {});
|
|
1060
1065
|
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
1061
1066
|
LineStyle2["SINGLE"] = "SINGLE";
|
|
1062
1067
|
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
@@ -3098,6 +3103,36 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
|
3098
3103
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
3099
3104
|
return DispatchHttpMethod2;
|
|
3100
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 || {});
|
|
3101
3136
|
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
3102
3137
|
AuthType2["OAUTH2"] = "OAUTH2";
|
|
3103
3138
|
AuthType2["API_KEY"] = "API_KEY";
|
|
@@ -3376,6 +3411,7 @@ export {
|
|
|
3376
3411
|
Layout as LayoutOriginal,
|
|
3377
3412
|
LayoutType as LayoutTypeOriginal,
|
|
3378
3413
|
Level as LevelOriginal,
|
|
3414
|
+
LineCap as LineCapOriginal,
|
|
3379
3415
|
LineStyle as LineStyleOriginal,
|
|
3380
3416
|
LinkTarget as LinkTargetOriginal,
|
|
3381
3417
|
LinkType as LinkTypeOriginal,
|
|
@@ -3440,6 +3476,7 @@ export {
|
|
|
3440
3476
|
RegionScopeScope as RegionScopeScopeOriginal,
|
|
3441
3477
|
RegionType as RegionTypeOriginal,
|
|
3442
3478
|
ReplacementType as ReplacementTypeOriginal,
|
|
3479
|
+
ReplayProtection as ReplayProtectionOriginal,
|
|
3443
3480
|
RequestedField as RequestedFieldOriginal,
|
|
3444
3481
|
RequiredIndicator as RequiredIndicatorOriginal,
|
|
3445
3482
|
RequiredIndicatorPlacement as RequiredIndicatorPlacementOriginal,
|
|
@@ -3460,6 +3497,8 @@ export {
|
|
|
3460
3497
|
ScriptType as ScriptTypeOriginal,
|
|
3461
3498
|
SidebarDataType as SidebarDataTypeOriginal,
|
|
3462
3499
|
SidebarEntityType as SidebarEntityTypeOriginal,
|
|
3500
|
+
SignatureEncoding as SignatureEncodingOriginal,
|
|
3501
|
+
SignedPayload as SignedPayloadOriginal,
|
|
3463
3502
|
SimpleType as SimpleTypeOriginal,
|
|
3464
3503
|
SiteMembersSsrCaching as SiteMembersSsrCachingOriginal,
|
|
3465
3504
|
SizingType as SizingTypeOriginal,
|
|
@@ -3501,6 +3540,8 @@ export {
|
|
|
3501
3540
|
ValueConstraintType as ValueConstraintTypeOriginal,
|
|
3502
3541
|
Variant as VariantOriginal,
|
|
3503
3542
|
VectorArtCategoryTypes as VectorArtCategoryTypesOriginal,
|
|
3543
|
+
VerificationMethod as VerificationMethodOriginal,
|
|
3544
|
+
VerificationSource as VerificationSourceOriginal,
|
|
3504
3545
|
VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal,
|
|
3505
3546
|
VerticalAlignment as VerticalAlignmentOriginal,
|
|
3506
3547
|
VerticalDocking as VerticalDockingOriginal,
|