@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.
@@ -18377,11 +18377,23 @@ interface V1ValidationTarget {
18377
18377
  }
18378
18378
  /** The booking operation method. */
18379
18379
  declare enum ValidationTargetMethod {
18380
+ /** Default value. Do not use. */
18381
+ UNKNOWN_METHOD = "UNKNOWN_METHOD",
18380
18382
  /** Validate a booking before reschedule. */
18381
- RESCHEDULE = "RESCHEDULE"
18383
+ RESCHEDULE = "RESCHEDULE",
18384
+ /** Validate a booking before create. */
18385
+ CREATE = "CREATE",
18386
+ /** Validate a booking before cancel. */
18387
+ CANCEL = "CANCEL",
18388
+ /** Validate a multi-service booking before create. */
18389
+ CREATE_MULTI_SERVICE = "CREATE_MULTI_SERVICE",
18390
+ /** Validate a multi-service booking before cancel. */
18391
+ CANCEL_MULTI_SERVICE = "CANCEL_MULTI_SERVICE",
18392
+ /** Validate a multi-service booking before reschedule. */
18393
+ RESCHEDULE_MULTI_SERVICE = "RESCHEDULE_MULTI_SERVICE"
18382
18394
  }
18383
18395
  /** @enumType */
18384
- type ValidationTargetMethodWithLiterals = ValidationTargetMethod | 'RESCHEDULE';
18396
+ type ValidationTargetMethodWithLiterals = ValidationTargetMethod | 'UNKNOWN_METHOD' | 'RESCHEDULE' | 'CREATE' | 'CANCEL' | 'CREATE_MULTI_SERVICE' | 'CANCEL_MULTI_SERVICE' | 'RESCHEDULE_MULTI_SERVICE';
18385
18397
  /** A component that represents a Wix Vibe UI component editing configuration */
18386
18398
  interface WixVibeComponent {
18387
18399
  /**
@@ -3050,7 +3050,13 @@ var RegionScopeScope = /* @__PURE__ */ ((RegionScopeScope2) => {
3050
3050
  return RegionScopeScope2;
3051
3051
  })(RegionScopeScope || {});
3052
3052
  var ValidationTargetMethod = /* @__PURE__ */ ((ValidationTargetMethod2) => {
3053
+ ValidationTargetMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
3053
3054
  ValidationTargetMethod2["RESCHEDULE"] = "RESCHEDULE";
3055
+ ValidationTargetMethod2["CREATE"] = "CREATE";
3056
+ ValidationTargetMethod2["CANCEL"] = "CANCEL";
3057
+ ValidationTargetMethod2["CREATE_MULTI_SERVICE"] = "CREATE_MULTI_SERVICE";
3058
+ ValidationTargetMethod2["CANCEL_MULTI_SERVICE"] = "CANCEL_MULTI_SERVICE";
3059
+ ValidationTargetMethod2["RESCHEDULE_MULTI_SERVICE"] = "RESCHEDULE_MULTI_SERVICE";
3054
3060
  return ValidationTargetMethod2;
3055
3061
  })(ValidationTargetMethod || {});
3056
3062
  var VibeActionType = /* @__PURE__ */ ((VibeActionType2) => {