@wix/auto_sdk_data-extension-schema_schemas 1.0.165 → 1.0.166

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.
@@ -18351,11 +18351,23 @@ interface V1ValidationTarget {
18351
18351
  }
18352
18352
  /** The booking operation method. */
18353
18353
  declare enum ValidationTargetMethod {
18354
+ /** Default value. Do not use. */
18355
+ UNKNOWN_METHOD = "UNKNOWN_METHOD",
18354
18356
  /** Validate a booking before reschedule. */
18355
- RESCHEDULE = "RESCHEDULE"
18357
+ RESCHEDULE = "RESCHEDULE",
18358
+ /** Validate a booking before create. */
18359
+ CREATE = "CREATE",
18360
+ /** Validate a booking before cancel. */
18361
+ CANCEL = "CANCEL",
18362
+ /** Validate a multi-service booking before create. */
18363
+ CREATE_MULTI_SERVICE = "CREATE_MULTI_SERVICE",
18364
+ /** Validate a multi-service booking before cancel. */
18365
+ CANCEL_MULTI_SERVICE = "CANCEL_MULTI_SERVICE",
18366
+ /** Validate a multi-service booking before reschedule. */
18367
+ RESCHEDULE_MULTI_SERVICE = "RESCHEDULE_MULTI_SERVICE"
18356
18368
  }
18357
18369
  /** @enumType */
18358
- type ValidationTargetMethodWithLiterals = ValidationTargetMethod | 'RESCHEDULE';
18370
+ type ValidationTargetMethodWithLiterals = ValidationTargetMethod | 'UNKNOWN_METHOD' | 'RESCHEDULE' | 'CREATE' | 'CANCEL' | 'CREATE_MULTI_SERVICE' | 'CANCEL_MULTI_SERVICE' | 'RESCHEDULE_MULTI_SERVICE';
18359
18371
  /** A component that represents a Wix Vibe UI component editing configuration */
18360
18372
  interface WixVibeComponent {
18361
18373
  /**
@@ -2775,7 +2775,13 @@ var RegionScopeScope = /* @__PURE__ */ ((RegionScopeScope2) => {
2775
2775
  return RegionScopeScope2;
2776
2776
  })(RegionScopeScope || {});
2777
2777
  var ValidationTargetMethod = /* @__PURE__ */ ((ValidationTargetMethod2) => {
2778
+ ValidationTargetMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
2778
2779
  ValidationTargetMethod2["RESCHEDULE"] = "RESCHEDULE";
2780
+ ValidationTargetMethod2["CREATE"] = "CREATE";
2781
+ ValidationTargetMethod2["CANCEL"] = "CANCEL";
2782
+ ValidationTargetMethod2["CREATE_MULTI_SERVICE"] = "CREATE_MULTI_SERVICE";
2783
+ ValidationTargetMethod2["CANCEL_MULTI_SERVICE"] = "CANCEL_MULTI_SERVICE";
2784
+ ValidationTargetMethod2["RESCHEDULE_MULTI_SERVICE"] = "RESCHEDULE_MULTI_SERVICE";
2779
2785
  return ValidationTargetMethod2;
2780
2786
  })(ValidationTargetMethod || {});
2781
2787
  var VibeActionType = /* @__PURE__ */ ((VibeActionType2) => {