@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.
@@ -18368,11 +18368,23 @@ interface V1ValidationTarget {
18368
18368
  }
18369
18369
  /** The booking operation method. */
18370
18370
  declare enum ValidationTargetMethod {
18371
+ /** Default value. Do not use. */
18372
+ UNKNOWN_METHOD = "UNKNOWN_METHOD",
18371
18373
  /** Validate a booking before reschedule. */
18372
- RESCHEDULE = "RESCHEDULE"
18374
+ RESCHEDULE = "RESCHEDULE",
18375
+ /** Validate a booking before create. */
18376
+ CREATE = "CREATE",
18377
+ /** Validate a booking before cancel. */
18378
+ CANCEL = "CANCEL",
18379
+ /** Validate a multi-service booking before create. */
18380
+ CREATE_MULTI_SERVICE = "CREATE_MULTI_SERVICE",
18381
+ /** Validate a multi-service booking before cancel. */
18382
+ CANCEL_MULTI_SERVICE = "CANCEL_MULTI_SERVICE",
18383
+ /** Validate a multi-service booking before reschedule. */
18384
+ RESCHEDULE_MULTI_SERVICE = "RESCHEDULE_MULTI_SERVICE"
18373
18385
  }
18374
18386
  /** @enumType */
18375
- type ValidationTargetMethodWithLiterals = ValidationTargetMethod | 'RESCHEDULE';
18387
+ type ValidationTargetMethodWithLiterals = ValidationTargetMethod | 'UNKNOWN_METHOD' | 'RESCHEDULE' | 'CREATE' | 'CANCEL' | 'CREATE_MULTI_SERVICE' | 'CANCEL_MULTI_SERVICE' | 'RESCHEDULE_MULTI_SERVICE';
18376
18388
  /** A component that represents a Wix Vibe UI component editing configuration */
18377
18389
  interface WixVibeComponent {
18378
18390
  /**
@@ -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) => {