@wix/auto_sdk_data-extension-schema_schemas 1.0.209 → 1.0.211

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 +25 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +305 -34
  5. package/build/cjs/index.typings.js +25 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +299 -34
  8. package/build/cjs/meta.js +25 -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 +22 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +305 -34
  14. package/build/es/index.typings.mjs +22 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +299 -34
  17. package/build/es/meta.mjs +22 -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 +25 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +305 -44
  23. package/build/internal/cjs/index.typings.js +25 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +299 -34
  26. package/build/internal/cjs/meta.js +25 -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 +22 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +305 -44
  32. package/build/internal/es/index.typings.mjs +22 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +299 -34
  35. package/build/internal/es/meta.mjs +22 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -29,11 +29,13 @@ __export(index_typings_exports, {
29
29
  ActionName: () => ActionName,
30
30
  ActionSPIConfigInterfaceConfigurationType: () => ActionSPIConfigInterfaceConfigurationType,
31
31
  ActionType: () => ActionType,
32
+ ActionsConfigSource: () => ActionsConfigSource,
32
33
  AddressComponentType: () => AddressComponentType,
33
34
  AddressInfoTag: () => AddressInfoTag,
34
35
  AlgorithmType: () => AlgorithmType,
35
36
  Alignment: () => Alignment,
36
37
  AndroidStyle: () => AndroidStyle,
38
+ AppExecutionType: () => AppExecutionType,
37
39
  AppType: () => AppType,
38
40
  AppointmentFormat: () => AppointmentFormat,
39
41
  Archetype: () => Archetype,
@@ -80,6 +82,7 @@ __export(index_typings_exports, {
80
82
  DataExtensionSchemaState: () => DataExtensionSchemaState,
81
83
  DataType: () => DataType,
82
84
  DecorationType: () => DecorationType,
85
+ DeeplinkFeature: () => DeeplinkFeature,
83
86
  Default: () => Default,
84
87
  DefaultCountryConfigType: () => DefaultCountryConfigType,
85
88
  DefaultTextStyle: () => DefaultTextStyle,
@@ -747,6 +750,8 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
747
750
  ComponentType2["REALTIME_PERMISSIONS_PROVIDER"] = "REALTIME_PERMISSIONS_PROVIDER";
748
751
  ComponentType2["CALENDAR_SEARCH_PROVIDER"] = "CALENDAR_SEARCH_PROVIDER";
749
752
  ComponentType2["EDITOR_INSTALLATION"] = "EDITOR_INSTALLATION";
753
+ ComponentType2["APP_ACTIONS"] = "APP_ACTIONS";
754
+ ComponentType2["ROLLOUT_STEP_EXECUTOR"] = "ROLLOUT_STEP_EXECUTOR";
750
755
  return ComponentType2;
751
756
  })(ComponentType || {});
752
757
  var WidgetVertical = /* @__PURE__ */ ((WidgetVertical2) => {
@@ -2301,6 +2306,11 @@ var Method = /* @__PURE__ */ ((Method2) => {
2301
2306
  Method2["CANCEL"] = "CANCEL";
2302
2307
  return Method2;
2303
2308
  })(Method || {});
2309
+ var ActionsConfigSource = /* @__PURE__ */ ((ActionsConfigSource2) => {
2310
+ ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_POLICIES"] = "ACTIONS_CONFIG_SOURCE_POLICIES";
2311
+ ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_ACTIONS"] = "ACTIONS_CONFIG_SOURCE_ACTIONS";
2312
+ return ActionsConfigSource2;
2313
+ })(ActionsConfigSource || {});
2304
2314
  var ParticipantType = /* @__PURE__ */ ((ParticipantType2) => {
2305
2315
  ParticipantType2["WIX_USER"] = "WIX_USER";
2306
2316
  ParticipantType2["CONTACT"] = "CONTACT";
@@ -3284,6 +3294,18 @@ var EditorType = /* @__PURE__ */ ((EditorType2) => {
3284
3294
  EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
3285
3295
  return EditorType2;
3286
3296
  })(EditorType || {});
3297
+ var AppExecutionType = /* @__PURE__ */ ((AppExecutionType2) => {
3298
+ AppExecutionType2["MODAL"] = "MODAL";
3299
+ AppExecutionType2["DASHBOARD"] = "DASHBOARD";
3300
+ AppExecutionType2["EXTERNAL_LINK"] = "EXTERNAL_LINK";
3301
+ AppExecutionType2["DEEPLINK"] = "DEEPLINK";
3302
+ return AppExecutionType2;
3303
+ })(AppExecutionType || {});
3304
+ var DeeplinkFeature = /* @__PURE__ */ ((DeeplinkFeature2) => {
3305
+ DeeplinkFeature2["ADD_PAGE"] = "ADD_PAGE";
3306
+ DeeplinkFeature2["ADD_PANEL"] = "ADD_PANEL";
3307
+ return DeeplinkFeature2;
3308
+ })(DeeplinkFeature || {});
3287
3309
  var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
3288
3310
  WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
3289
3311
  WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
@@ -3450,11 +3472,13 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
3450
3472
  ActionName,
3451
3473
  ActionSPIConfigInterfaceConfigurationType,
3452
3474
  ActionType,
3475
+ ActionsConfigSource,
3453
3476
  AddressComponentType,
3454
3477
  AddressInfoTag,
3455
3478
  AlgorithmType,
3456
3479
  Alignment,
3457
3480
  AndroidStyle,
3481
+ AppExecutionType,
3458
3482
  AppType,
3459
3483
  AppointmentFormat,
3460
3484
  Archetype,
@@ -3501,6 +3525,7 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
3501
3525
  DataExtensionSchemaState,
3502
3526
  DataType,
3503
3527
  DecorationType,
3528
+ DeeplinkFeature,
3504
3529
  Default,
3505
3530
  DefaultCountryConfigType,
3506
3531
  DefaultTextStyle,