@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
  /**
@@ -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) => {