@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
|
@@ -452,6 +452,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
452
452
|
ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
|
|
453
453
|
ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
|
|
454
454
|
ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
|
|
455
|
+
ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
|
|
455
456
|
return ComponentType2;
|
|
456
457
|
})(ComponentType || {});
|
|
457
458
|
var WidgetVertical = /* @__PURE__ */ ((WidgetVertical2) => {
|
|
@@ -3110,6 +3111,36 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
|
3110
3111
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
3111
3112
|
return DispatchHttpMethod2;
|
|
3112
3113
|
})(DispatchHttpMethod || {});
|
|
3114
|
+
var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
|
|
3115
|
+
VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
|
|
3116
|
+
VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
|
|
3117
|
+
VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
|
|
3118
|
+
VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
|
|
3119
|
+
VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
|
|
3120
|
+
return VerificationMethod2;
|
|
3121
|
+
})(VerificationMethod || {});
|
|
3122
|
+
var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
|
|
3123
|
+
VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
|
|
3124
|
+
VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
|
|
3125
|
+
VerificationSource2["UNSIGNED"] = "UNSIGNED";
|
|
3126
|
+
return VerificationSource2;
|
|
3127
|
+
})(VerificationSource || {});
|
|
3128
|
+
var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
|
|
3129
|
+
SignatureEncoding2["HEX"] = "HEX";
|
|
3130
|
+
SignatureEncoding2["BASE64"] = "BASE64";
|
|
3131
|
+
return SignatureEncoding2;
|
|
3132
|
+
})(SignatureEncoding || {});
|
|
3133
|
+
var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
|
|
3134
|
+
SignedPayload2["RAW_BODY"] = "RAW_BODY";
|
|
3135
|
+
SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
|
|
3136
|
+
SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
|
|
3137
|
+
return SignedPayload2;
|
|
3138
|
+
})(SignedPayload || {});
|
|
3139
|
+
var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
|
|
3140
|
+
ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
|
|
3141
|
+
ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
|
|
3142
|
+
return ReplayProtection2;
|
|
3143
|
+
})(ReplayProtection || {});
|
|
3113
3144
|
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
3114
3145
|
AuthType2["OAUTH2"] = "OAUTH2";
|
|
3115
3146
|
AuthType2["API_KEY"] = "API_KEY";
|
|
@@ -3498,6 +3529,7 @@ export {
|
|
|
3498
3529
|
RegionScopeScope,
|
|
3499
3530
|
RegionType,
|
|
3500
3531
|
ReplacementType,
|
|
3532
|
+
ReplayProtection,
|
|
3501
3533
|
RequestedField,
|
|
3502
3534
|
RequiredIndicator,
|
|
3503
3535
|
RequiredIndicatorPlacement,
|
|
@@ -3518,6 +3550,8 @@ export {
|
|
|
3518
3550
|
ScriptType,
|
|
3519
3551
|
SidebarDataType,
|
|
3520
3552
|
SidebarEntityType,
|
|
3553
|
+
SignatureEncoding,
|
|
3554
|
+
SignedPayload,
|
|
3521
3555
|
SimpleType,
|
|
3522
3556
|
SiteMembersSsrCaching,
|
|
3523
3557
|
SizingType,
|
|
@@ -3559,6 +3593,8 @@ export {
|
|
|
3559
3593
|
ValueConstraintType,
|
|
3560
3594
|
Variant,
|
|
3561
3595
|
VectorArtCategoryTypes,
|
|
3596
|
+
VerificationMethod,
|
|
3597
|
+
VerificationSource,
|
|
3562
3598
|
Vertical,
|
|
3563
3599
|
VerticalAlignment,
|
|
3564
3600
|
VerticalAlignmentAlignment,
|