@wix/auto_sdk_bookings_services 1.0.244 → 1.0.245
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/{bookings-services-v2-service-services.universal-BDo4HjUj.d.ts → bookings-services-v2-service-services.universal-e-XkT__j.d.ts} +10 -2
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +11 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +38 -38
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-BDo4HjUj.d.mts → bookings-services-v2-service-services.universal-e-XkT__j.d.mts} +10 -2
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +11 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +38 -38
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-C2tQPxPU.d.ts → bookings-services-v2-service-services.universal-CEagbslG.d.ts} +10 -2
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +11 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +38 -38
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-C2tQPxPU.d.mts → bookings-services-v2-service-services.universal-CEagbslG.d.mts} +10 -2
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +11 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +38 -38
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/schemas.js
CHANGED
|
@@ -182,11 +182,11 @@ var CreateServiceRequest = z.object({
|
|
|
182
182
|
rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).optional(),
|
|
183
183
|
options: z.object({
|
|
184
184
|
online: z.boolean().describe(
|
|
185
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
185
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
186
186
|
).optional().nullable(),
|
|
187
187
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
188
188
|
deposit: z.boolean().describe(
|
|
189
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
189
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
190
190
|
).optional().nullable(),
|
|
191
191
|
pricingPlan: z.boolean().describe(
|
|
192
192
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -911,11 +911,11 @@ var CreateServiceResponse = z.object({
|
|
|
911
911
|
rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).describe("The rate the customer is expected to pay for the service.").optional(),
|
|
912
912
|
options: z.object({
|
|
913
913
|
online: z.boolean().describe(
|
|
914
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
914
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
915
915
|
).optional().nullable(),
|
|
916
916
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
917
917
|
deposit: z.boolean().describe(
|
|
918
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
918
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
919
919
|
).optional().nullable(),
|
|
920
920
|
pricingPlan: z.boolean().describe(
|
|
921
921
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -1635,11 +1635,11 @@ var BulkCreateServicesRequest = z.object({
|
|
|
1635
1635
|
rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).optional(),
|
|
1636
1636
|
options: z.object({
|
|
1637
1637
|
online: z.boolean().describe(
|
|
1638
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
1638
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
1639
1639
|
).optional().nullable(),
|
|
1640
1640
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
1641
1641
|
deposit: z.boolean().describe(
|
|
1642
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
1642
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
1643
1643
|
).optional().nullable(),
|
|
1644
1644
|
pricingPlan: z.boolean().describe(
|
|
1645
1645
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -2404,13 +2404,13 @@ var BulkCreateServicesResponse = z.object({
|
|
|
2404
2404
|
).optional(),
|
|
2405
2405
|
options: z.object({
|
|
2406
2406
|
online: z.boolean().describe(
|
|
2407
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
2407
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
2408
2408
|
).optional().nullable(),
|
|
2409
2409
|
inPerson: z.boolean().describe(
|
|
2410
2410
|
"Customers can pay for the service in person."
|
|
2411
2411
|
).optional().nullable(),
|
|
2412
2412
|
deposit: z.boolean().describe(
|
|
2413
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
2413
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
2414
2414
|
).optional().nullable(),
|
|
2415
2415
|
pricingPlan: z.boolean().describe(
|
|
2416
2416
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -3167,11 +3167,11 @@ var GetServiceResponse = z.object({
|
|
|
3167
3167
|
rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).describe("The rate the customer is expected to pay for the service.").optional(),
|
|
3168
3168
|
options: z.object({
|
|
3169
3169
|
online: z.boolean().describe(
|
|
3170
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
3170
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
3171
3171
|
).optional().nullable(),
|
|
3172
3172
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
3173
3173
|
deposit: z.boolean().describe(
|
|
3174
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
3174
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
3175
3175
|
).optional().nullable(),
|
|
3176
3176
|
pricingPlan: z.boolean().describe(
|
|
3177
3177
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -3894,11 +3894,11 @@ var UpdateServiceRequest = z.object({
|
|
|
3894
3894
|
rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).optional(),
|
|
3895
3895
|
options: z.object({
|
|
3896
3896
|
online: z.boolean().describe(
|
|
3897
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
3897
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
3898
3898
|
).optional().nullable(),
|
|
3899
3899
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
3900
3900
|
deposit: z.boolean().describe(
|
|
3901
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
3901
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
3902
3902
|
).optional().nullable(),
|
|
3903
3903
|
pricingPlan: z.boolean().describe(
|
|
3904
3904
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -4623,11 +4623,11 @@ var UpdateServiceResponse = z.object({
|
|
|
4623
4623
|
rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).describe("The rate the customer is expected to pay for the service.").optional(),
|
|
4624
4624
|
options: z.object({
|
|
4625
4625
|
online: z.boolean().describe(
|
|
4626
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
4626
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
4627
4627
|
).optional().nullable(),
|
|
4628
4628
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
4629
4629
|
deposit: z.boolean().describe(
|
|
4630
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
4630
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
4631
4631
|
).optional().nullable(),
|
|
4632
4632
|
pricingPlan: z.boolean().describe(
|
|
4633
4633
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -5359,13 +5359,13 @@ var BulkUpdateServicesRequest = z.object({
|
|
|
5359
5359
|
]).optional(),
|
|
5360
5360
|
options: z.object({
|
|
5361
5361
|
online: z.boolean().describe(
|
|
5362
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
5362
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
5363
5363
|
).optional().nullable(),
|
|
5364
5364
|
inPerson: z.boolean().describe(
|
|
5365
5365
|
"Customers can pay for the service in person."
|
|
5366
5366
|
).optional().nullable(),
|
|
5367
5367
|
deposit: z.boolean().describe(
|
|
5368
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
5368
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
5369
5369
|
).optional().nullable(),
|
|
5370
5370
|
pricingPlan: z.boolean().describe(
|
|
5371
5371
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -6139,13 +6139,13 @@ var BulkUpdateServicesResponse = z.object({
|
|
|
6139
6139
|
).optional(),
|
|
6140
6140
|
options: z.object({
|
|
6141
6141
|
online: z.boolean().describe(
|
|
6142
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
6142
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
6143
6143
|
).optional().nullable(),
|
|
6144
6144
|
inPerson: z.boolean().describe(
|
|
6145
6145
|
"Customers can pay for the service in person."
|
|
6146
6146
|
).optional().nullable(),
|
|
6147
6147
|
deposit: z.boolean().describe(
|
|
6148
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
6148
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
6149
6149
|
).optional().nullable(),
|
|
6150
6150
|
pricingPlan: z.boolean().describe(
|
|
6151
6151
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -6888,11 +6888,11 @@ var BulkUpdateServicesByFilterRequest = z.object({
|
|
|
6888
6888
|
rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).optional(),
|
|
6889
6889
|
options: z.object({
|
|
6890
6890
|
online: z.boolean().describe(
|
|
6891
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
6891
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
6892
6892
|
).optional().nullable(),
|
|
6893
6893
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
6894
6894
|
deposit: z.boolean().describe(
|
|
6895
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
6895
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
6896
6896
|
).optional().nullable(),
|
|
6897
6897
|
pricingPlan: z.boolean().describe(
|
|
6898
6898
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -7704,13 +7704,13 @@ var BulkDeleteServicesResponse = z.object({
|
|
|
7704
7704
|
).optional(),
|
|
7705
7705
|
options: z.object({
|
|
7706
7706
|
online: z.boolean().describe(
|
|
7707
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
7707
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
7708
7708
|
).optional().nullable(),
|
|
7709
7709
|
inPerson: z.boolean().describe(
|
|
7710
7710
|
"Customers can pay for the service in person."
|
|
7711
7711
|
).optional().nullable(),
|
|
7712
7712
|
deposit: z.boolean().describe(
|
|
7713
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
7713
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
7714
7714
|
).optional().nullable(),
|
|
7715
7715
|
pricingPlan: z.boolean().describe(
|
|
7716
7716
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -8822,11 +8822,11 @@ var QueryServicesResponse = z.object({
|
|
|
8822
8822
|
).optional(),
|
|
8823
8823
|
options: z.object({
|
|
8824
8824
|
online: z.boolean().describe(
|
|
8825
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
8825
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
8826
8826
|
).optional().nullable(),
|
|
8827
8827
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
8828
8828
|
deposit: z.boolean().describe(
|
|
8829
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
8829
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
8830
8830
|
).optional().nullable(),
|
|
8831
8831
|
pricingPlan: z.boolean().describe(
|
|
8832
8832
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -9975,11 +9975,11 @@ var SearchServicesResponse = z.object({
|
|
|
9975
9975
|
).optional(),
|
|
9976
9976
|
options: z.object({
|
|
9977
9977
|
online: z.boolean().describe(
|
|
9978
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
9978
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
9979
9979
|
).optional().nullable(),
|
|
9980
9980
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
9981
9981
|
deposit: z.boolean().describe(
|
|
9982
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
9982
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
9983
9983
|
).optional().nullable(),
|
|
9984
9984
|
pricingPlan: z.boolean().describe(
|
|
9985
9985
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -11207,13 +11207,13 @@ var QueryPoliciesResponse = z.object({
|
|
|
11207
11207
|
).optional(),
|
|
11208
11208
|
options: z.object({
|
|
11209
11209
|
online: z.boolean().describe(
|
|
11210
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
11210
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
11211
11211
|
).optional().nullable(),
|
|
11212
11212
|
inPerson: z.boolean().describe(
|
|
11213
11213
|
"Customers can pay for the service in person."
|
|
11214
11214
|
).optional().nullable(),
|
|
11215
11215
|
deposit: z.boolean().describe(
|
|
11216
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
11216
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
11217
11217
|
).optional().nullable(),
|
|
11218
11218
|
pricingPlan: z.boolean().describe(
|
|
11219
11219
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -12365,11 +12365,11 @@ var SetServiceLocationsResponse = z.object({
|
|
|
12365
12365
|
).optional(),
|
|
12366
12366
|
options: z.object({
|
|
12367
12367
|
online: z.boolean().describe(
|
|
12368
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
12368
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
12369
12369
|
).optional().nullable(),
|
|
12370
12370
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
12371
12371
|
deposit: z.boolean().describe(
|
|
12372
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
12372
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
12373
12373
|
).optional().nullable(),
|
|
12374
12374
|
pricingPlan: z.boolean().describe(
|
|
12375
12375
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -13106,11 +13106,11 @@ var EnablePricingPlansForServiceResponse = z.object({
|
|
|
13106
13106
|
).optional(),
|
|
13107
13107
|
options: z.object({
|
|
13108
13108
|
online: z.boolean().describe(
|
|
13109
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
13109
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
13110
13110
|
).optional().nullable(),
|
|
13111
13111
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
13112
13112
|
deposit: z.boolean().describe(
|
|
13113
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
13113
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
13114
13114
|
).optional().nullable(),
|
|
13115
13115
|
pricingPlan: z.boolean().describe(
|
|
13116
13116
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -13847,11 +13847,11 @@ var DisablePricingPlansForServiceResponse = z.object({
|
|
|
13847
13847
|
).optional(),
|
|
13848
13848
|
options: z.object({
|
|
13849
13849
|
online: z.boolean().describe(
|
|
13850
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
13850
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
13851
13851
|
).optional().nullable(),
|
|
13852
13852
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
13853
13853
|
deposit: z.boolean().describe(
|
|
13854
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
13854
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
13855
13855
|
).optional().nullable(),
|
|
13856
13856
|
pricingPlan: z.boolean().describe(
|
|
13857
13857
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -14599,11 +14599,11 @@ var SetCustomSlugResponse = z.object({
|
|
|
14599
14599
|
).optional(),
|
|
14600
14600
|
options: z.object({
|
|
14601
14601
|
online: z.boolean().describe(
|
|
14602
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
14602
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
14603
14603
|
).optional().nullable(),
|
|
14604
14604
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
14605
14605
|
deposit: z.boolean().describe(
|
|
14606
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
14606
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
14607
14607
|
).optional().nullable(),
|
|
14608
14608
|
pricingPlan: z.boolean().describe(
|
|
14609
14609
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|
|
@@ -15353,11 +15353,11 @@ var CloneServiceResponse = z.object({
|
|
|
15353
15353
|
).optional(),
|
|
15354
15354
|
options: z.object({
|
|
15355
15355
|
online: z.boolean().describe(
|
|
15356
|
-
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `
|
|
15356
|
+
"Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED`, `VARIED`, or `SUBSCRIPTION`.\n+ `fixed.price`, `varied.defaultPrice`, or `subscription.amountPerBillingCycle` must be specified respectively.\n\nRequired when: `rateType` is `SUBSCRIPTION`.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
|
|
15357
15357
|
).optional().nullable(),
|
|
15358
15358
|
inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
|
|
15359
15359
|
deposit: z.boolean().describe(
|
|
15360
|
-
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified
|
|
15360
|
+
"This service requires a deposit to be made online in order to book it.\nWhen `true`:\n+ `rateType` must be `VARIED` or `FIXED`.\n+ A `deposit` must be specified.\n+ `online` must be `true`.\n+ `inPerson` must be `false`."
|
|
15361
15361
|
).optional().nullable(),
|
|
15362
15362
|
pricingPlan: z.boolean().describe(
|
|
15363
15363
|
"Whether customers can pay for the service using a pricing plan.\nRead more about [service payment options](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments)."
|