@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.
- package/build/cjs/index.js +6 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +14 -2
- package/build/cjs/index.typings.js +6 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -2
- package/build/cjs/meta.js +6 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +14 -2
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -2
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +6 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +14 -2
- package/build/internal/cjs/index.typings.js +6 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -2
- package/build/internal/cjs/meta.js +6 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +14 -2
- package/build/internal/es/index.typings.mjs +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -2
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -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
|
/**
|
package/build/es/meta.mjs
CHANGED
|
@@ -2768,7 +2768,13 @@ var RegionScopeScope = /* @__PURE__ */ ((RegionScopeScope2) => {
|
|
|
2768
2768
|
return RegionScopeScope2;
|
|
2769
2769
|
})(RegionScopeScope || {});
|
|
2770
2770
|
var ValidationTargetMethod = /* @__PURE__ */ ((ValidationTargetMethod2) => {
|
|
2771
|
+
ValidationTargetMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
|
|
2771
2772
|
ValidationTargetMethod2["RESCHEDULE"] = "RESCHEDULE";
|
|
2773
|
+
ValidationTargetMethod2["CREATE"] = "CREATE";
|
|
2774
|
+
ValidationTargetMethod2["CANCEL"] = "CANCEL";
|
|
2775
|
+
ValidationTargetMethod2["CREATE_MULTI_SERVICE"] = "CREATE_MULTI_SERVICE";
|
|
2776
|
+
ValidationTargetMethod2["CANCEL_MULTI_SERVICE"] = "CANCEL_MULTI_SERVICE";
|
|
2777
|
+
ValidationTargetMethod2["RESCHEDULE_MULTI_SERVICE"] = "RESCHEDULE_MULTI_SERVICE";
|
|
2772
2778
|
return ValidationTargetMethod2;
|
|
2773
2779
|
})(ValidationTargetMethod || {});
|
|
2774
2780
|
var VibeActionType = /* @__PURE__ */ ((VibeActionType2) => {
|