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