@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
  /**
@@ -3054,7 +3054,13 @@ var RegionScopeScope = /* @__PURE__ */ ((RegionScopeScope2) => {
3054
3054
  return RegionScopeScope2;
3055
3055
  })(RegionScopeScope || {});
3056
3056
  var ValidationTargetMethod = /* @__PURE__ */ ((ValidationTargetMethod2) => {
3057
+ ValidationTargetMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
3057
3058
  ValidationTargetMethod2["RESCHEDULE"] = "RESCHEDULE";
3059
+ ValidationTargetMethod2["CREATE"] = "CREATE";
3060
+ ValidationTargetMethod2["CANCEL"] = "CANCEL";
3061
+ ValidationTargetMethod2["CREATE_MULTI_SERVICE"] = "CREATE_MULTI_SERVICE";
3062
+ ValidationTargetMethod2["CANCEL_MULTI_SERVICE"] = "CANCEL_MULTI_SERVICE";
3063
+ ValidationTargetMethod2["RESCHEDULE_MULTI_SERVICE"] = "RESCHEDULE_MULTI_SERVICE";
3058
3064
  return ValidationTargetMethod2;
3059
3065
  })(ValidationTargetMethod || {});
3060
3066
  var VibeActionType = /* @__PURE__ */ ((VibeActionType2) => {