@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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +40 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +320 -1
  5. package/build/cjs/index.typings.js +40 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +320 -1
  8. package/build/cjs/meta.js +40 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +35 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +320 -1
  14. package/build/es/index.typings.mjs +35 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +320 -1
  17. package/build/es/meta.mjs +35 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +40 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +320 -1
  23. package/build/internal/cjs/index.typings.js +40 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +320 -1
  26. package/build/internal/cjs/meta.js +40 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +35 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +320 -1
  32. package/build/internal/es/index.typings.mjs +35 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +320 -1
  35. package/build/internal/es/meta.mjs +35 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -236,6 +236,7 @@ __export(index_typings_exports, {
236
236
  RegionScopeScope: () => RegionScopeScope,
237
237
  RegionType: () => RegionType,
238
238
  ReplacementType: () => ReplacementType,
239
+ ReplayProtection: () => ReplayProtection,
239
240
  RequestedField: () => RequestedField,
240
241
  RequiredIndicator: () => RequiredIndicator,
241
242
  RequiredIndicatorPlacement: () => RequiredIndicatorPlacement,
@@ -256,6 +257,8 @@ __export(index_typings_exports, {
256
257
  ScriptType: () => ScriptType,
257
258
  SidebarDataType: () => SidebarDataType,
258
259
  SidebarEntityType: () => SidebarEntityType,
260
+ SignatureEncoding: () => SignatureEncoding,
261
+ SignedPayload: () => SignedPayload,
259
262
  SimpleType: () => SimpleType,
260
263
  SiteMembersSsrCaching: () => SiteMembersSsrCaching,
261
264
  SizingType: () => SizingType,
@@ -297,6 +300,8 @@ __export(index_typings_exports, {
297
300
  ValueConstraintType: () => ValueConstraintType,
298
301
  Variant: () => Variant,
299
302
  VectorArtCategoryTypes: () => VectorArtCategoryTypes,
303
+ VerificationMethod: () => VerificationMethod,
304
+ VerificationSource: () => VerificationSource,
300
305
  Vertical: () => Vertical,
301
306
  VerticalAlignment: () => VerticalAlignment,
302
307
  VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
@@ -3433,6 +3438,36 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
3433
3438
  DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
3434
3439
  return DispatchHttpMethod2;
3435
3440
  })(DispatchHttpMethod || {});
3441
+ var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
3442
+ VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
3443
+ VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
3444
+ VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
3445
+ VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
3446
+ VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
3447
+ return VerificationMethod2;
3448
+ })(VerificationMethod || {});
3449
+ var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
3450
+ VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
3451
+ VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
3452
+ VerificationSource2["UNSIGNED"] = "UNSIGNED";
3453
+ return VerificationSource2;
3454
+ })(VerificationSource || {});
3455
+ var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
3456
+ SignatureEncoding2["HEX"] = "HEX";
3457
+ SignatureEncoding2["BASE64"] = "BASE64";
3458
+ return SignatureEncoding2;
3459
+ })(SignatureEncoding || {});
3460
+ var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
3461
+ SignedPayload2["RAW_BODY"] = "RAW_BODY";
3462
+ SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
3463
+ SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
3464
+ return SignedPayload2;
3465
+ })(SignedPayload || {});
3466
+ var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
3467
+ ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
3468
+ ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
3469
+ return ReplayProtection2;
3470
+ })(ReplayProtection || {});
3436
3471
  var AuthType = /* @__PURE__ */ ((AuthType2) => {
3437
3472
  AuthType2["OAUTH2"] = "OAUTH2";
3438
3473
  AuthType2["API_KEY"] = "API_KEY";
@@ -3822,6 +3857,7 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
3822
3857
  RegionScopeScope,
3823
3858
  RegionType,
3824
3859
  ReplacementType,
3860
+ ReplayProtection,
3825
3861
  RequestedField,
3826
3862
  RequiredIndicator,
3827
3863
  RequiredIndicatorPlacement,
@@ -3842,6 +3878,8 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
3842
3878
  ScriptType,
3843
3879
  SidebarDataType,
3844
3880
  SidebarEntityType,
3881
+ SignatureEncoding,
3882
+ SignedPayload,
3845
3883
  SimpleType,
3846
3884
  SiteMembersSsrCaching,
3847
3885
  SizingType,
@@ -3883,6 +3921,8 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
3883
3921
  ValueConstraintType,
3884
3922
  Variant,
3885
3923
  VectorArtCategoryTypes,
3924
+ VerificationMethod,
3925
+ VerificationSource,
3886
3926
  Vertical,
3887
3927
  VerticalAlignment,
3888
3928
  VerticalAlignmentAlignment,