@wix/auto_sdk_bookings_services 1.0.244 → 1.0.246

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.
Files changed (37) hide show
  1. 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
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +11 -3
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/cjs/schemas.js +38 -38
  9. package/build/cjs/schemas.js.map +1 -1
  10. 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
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +2 -2
  14. package/build/es/index.typings.mjs.map +1 -1
  15. package/build/es/meta.d.mts +11 -3
  16. package/build/es/meta.mjs.map +1 -1
  17. package/build/es/schemas.mjs +38 -38
  18. package/build/es/schemas.mjs.map +1 -1
  19. package/build/internal/cjs/{bookings-services-v2-service-services.universal-C2tQPxPU.d.ts → bookings-services-v2-service-services.universal-D5elCd1K.d.ts} +24 -2
  20. package/build/internal/cjs/index.d.ts +2 -2
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +2 -2
  23. package/build/internal/cjs/index.typings.js.map +1 -1
  24. package/build/internal/cjs/meta.d.ts +11 -3
  25. package/build/internal/cjs/meta.js.map +1 -1
  26. package/build/internal/cjs/schemas.js +38 -38
  27. package/build/internal/cjs/schemas.js.map +1 -1
  28. package/build/internal/es/{bookings-services-v2-service-services.universal-C2tQPxPU.d.mts → bookings-services-v2-service-services.universal-D5elCd1K.d.mts} +24 -2
  29. package/build/internal/es/index.d.mts +2 -2
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +2 -2
  32. package/build/internal/es/index.typings.mjs.map +1 -1
  33. package/build/internal/es/meta.d.mts +11 -3
  34. package/build/internal/es/meta.mjs.map +1 -1
  35. package/build/internal/es/schemas.mjs +38 -38
  36. package/build/internal/es/schemas.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -93,11 +93,11 @@ var CreateServiceRequest = z.object({
93
93
  rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).optional(),
94
94
  options: z.object({
95
95
  online: z.boolean().describe(
96
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
96
+ "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)."
97
97
  ).optional().nullable(),
98
98
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
99
99
  deposit: z.boolean().describe(
100
- "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."
100
+ "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`."
101
101
  ).optional().nullable(),
102
102
  pricingPlan: z.boolean().describe(
103
103
  "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)."
@@ -822,11 +822,11 @@ var CreateServiceResponse = z.object({
822
822
  rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).describe("The rate the customer is expected to pay for the service.").optional(),
823
823
  options: z.object({
824
824
  online: z.boolean().describe(
825
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
825
+ "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)."
826
826
  ).optional().nullable(),
827
827
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
828
828
  deposit: z.boolean().describe(
829
- "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."
829
+ "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`."
830
830
  ).optional().nullable(),
831
831
  pricingPlan: z.boolean().describe(
832
832
  "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)."
@@ -1546,11 +1546,11 @@ var BulkCreateServicesRequest = z.object({
1546
1546
  rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).optional(),
1547
1547
  options: z.object({
1548
1548
  online: z.boolean().describe(
1549
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
1549
+ "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)."
1550
1550
  ).optional().nullable(),
1551
1551
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
1552
1552
  deposit: z.boolean().describe(
1553
- "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."
1553
+ "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`."
1554
1554
  ).optional().nullable(),
1555
1555
  pricingPlan: z.boolean().describe(
1556
1556
  "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)."
@@ -2315,13 +2315,13 @@ var BulkCreateServicesResponse = z.object({
2315
2315
  ).optional(),
2316
2316
  options: z.object({
2317
2317
  online: z.boolean().describe(
2318
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
2318
+ "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)."
2319
2319
  ).optional().nullable(),
2320
2320
  inPerson: z.boolean().describe(
2321
2321
  "Customers can pay for the service in person."
2322
2322
  ).optional().nullable(),
2323
2323
  deposit: z.boolean().describe(
2324
- "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."
2324
+ "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`."
2325
2325
  ).optional().nullable(),
2326
2326
  pricingPlan: z.boolean().describe(
2327
2327
  "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)."
@@ -3078,11 +3078,11 @@ var GetServiceResponse = z.object({
3078
3078
  rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).describe("The rate the customer is expected to pay for the service.").optional(),
3079
3079
  options: z.object({
3080
3080
  online: z.boolean().describe(
3081
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
3081
+ "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)."
3082
3082
  ).optional().nullable(),
3083
3083
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
3084
3084
  deposit: z.boolean().describe(
3085
- "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."
3085
+ "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`."
3086
3086
  ).optional().nullable(),
3087
3087
  pricingPlan: z.boolean().describe(
3088
3088
  "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)."
@@ -3805,11 +3805,11 @@ var UpdateServiceRequest = z.object({
3805
3805
  rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).optional(),
3806
3806
  options: z.object({
3807
3807
  online: z.boolean().describe(
3808
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
3808
+ "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)."
3809
3809
  ).optional().nullable(),
3810
3810
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
3811
3811
  deposit: z.boolean().describe(
3812
- "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."
3812
+ "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`."
3813
3813
  ).optional().nullable(),
3814
3814
  pricingPlan: z.boolean().describe(
3815
3815
  "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)."
@@ -4534,11 +4534,11 @@ var UpdateServiceResponse = z.object({
4534
4534
  rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).describe("The rate the customer is expected to pay for the service.").optional(),
4535
4535
  options: z.object({
4536
4536
  online: z.boolean().describe(
4537
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
4537
+ "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)."
4538
4538
  ).optional().nullable(),
4539
4539
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
4540
4540
  deposit: z.boolean().describe(
4541
- "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."
4541
+ "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`."
4542
4542
  ).optional().nullable(),
4543
4543
  pricingPlan: z.boolean().describe(
4544
4544
  "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)."
@@ -5270,13 +5270,13 @@ var BulkUpdateServicesRequest = z.object({
5270
5270
  ]).optional(),
5271
5271
  options: z.object({
5272
5272
  online: z.boolean().describe(
5273
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
5273
+ "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)."
5274
5274
  ).optional().nullable(),
5275
5275
  inPerson: z.boolean().describe(
5276
5276
  "Customers can pay for the service in person."
5277
5277
  ).optional().nullable(),
5278
5278
  deposit: z.boolean().describe(
5279
- "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."
5279
+ "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`."
5280
5280
  ).optional().nullable(),
5281
5281
  pricingPlan: z.boolean().describe(
5282
5282
  "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)."
@@ -6050,13 +6050,13 @@ var BulkUpdateServicesResponse = z.object({
6050
6050
  ).optional(),
6051
6051
  options: z.object({
6052
6052
  online: z.boolean().describe(
6053
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
6053
+ "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)."
6054
6054
  ).optional().nullable(),
6055
6055
  inPerson: z.boolean().describe(
6056
6056
  "Customers can pay for the service in person."
6057
6057
  ).optional().nullable(),
6058
6058
  deposit: z.boolean().describe(
6059
- "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."
6059
+ "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`."
6060
6060
  ).optional().nullable(),
6061
6061
  pricingPlan: z.boolean().describe(
6062
6062
  "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)."
@@ -6799,11 +6799,11 @@ var BulkUpdateServicesByFilterRequest = z.object({
6799
6799
  rateType: z.enum(["FIXED", "CUSTOM", "VARIED", "NO_FEE", "SUBSCRIPTION"]).optional(),
6800
6800
  options: z.object({
6801
6801
  online: z.boolean().describe(
6802
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
6802
+ "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)."
6803
6803
  ).optional().nullable(),
6804
6804
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
6805
6805
  deposit: z.boolean().describe(
6806
- "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."
6806
+ "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`."
6807
6807
  ).optional().nullable(),
6808
6808
  pricingPlan: z.boolean().describe(
6809
6809
  "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)."
@@ -7615,13 +7615,13 @@ var BulkDeleteServicesResponse = z.object({
7615
7615
  ).optional(),
7616
7616
  options: z.object({
7617
7617
  online: z.boolean().describe(
7618
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
7618
+ "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)."
7619
7619
  ).optional().nullable(),
7620
7620
  inPerson: z.boolean().describe(
7621
7621
  "Customers can pay for the service in person."
7622
7622
  ).optional().nullable(),
7623
7623
  deposit: z.boolean().describe(
7624
- "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."
7624
+ "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`."
7625
7625
  ).optional().nullable(),
7626
7626
  pricingPlan: z.boolean().describe(
7627
7627
  "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)."
@@ -8733,11 +8733,11 @@ var QueryServicesResponse = z.object({
8733
8733
  ).optional(),
8734
8734
  options: z.object({
8735
8735
  online: z.boolean().describe(
8736
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
8736
+ "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)."
8737
8737
  ).optional().nullable(),
8738
8738
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
8739
8739
  deposit: z.boolean().describe(
8740
- "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."
8740
+ "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`."
8741
8741
  ).optional().nullable(),
8742
8742
  pricingPlan: z.boolean().describe(
8743
8743
  "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)."
@@ -9886,11 +9886,11 @@ var SearchServicesResponse = z.object({
9886
9886
  ).optional(),
9887
9887
  options: z.object({
9888
9888
  online: z.boolean().describe(
9889
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
9889
+ "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)."
9890
9890
  ).optional().nullable(),
9891
9891
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
9892
9892
  deposit: z.boolean().describe(
9893
- "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."
9893
+ "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`."
9894
9894
  ).optional().nullable(),
9895
9895
  pricingPlan: z.boolean().describe(
9896
9896
  "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)."
@@ -11118,13 +11118,13 @@ var QueryPoliciesResponse = z.object({
11118
11118
  ).optional(),
11119
11119
  options: z.object({
11120
11120
  online: z.boolean().describe(
11121
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
11121
+ "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)."
11122
11122
  ).optional().nullable(),
11123
11123
  inPerson: z.boolean().describe(
11124
11124
  "Customers can pay for the service in person."
11125
11125
  ).optional().nullable(),
11126
11126
  deposit: z.boolean().describe(
11127
- "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."
11127
+ "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`."
11128
11128
  ).optional().nullable(),
11129
11129
  pricingPlan: z.boolean().describe(
11130
11130
  "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)."
@@ -12276,11 +12276,11 @@ var SetServiceLocationsResponse = z.object({
12276
12276
  ).optional(),
12277
12277
  options: z.object({
12278
12278
  online: z.boolean().describe(
12279
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
12279
+ "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)."
12280
12280
  ).optional().nullable(),
12281
12281
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
12282
12282
  deposit: z.boolean().describe(
12283
- "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."
12283
+ "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`."
12284
12284
  ).optional().nullable(),
12285
12285
  pricingPlan: z.boolean().describe(
12286
12286
  "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)."
@@ -13017,11 +13017,11 @@ var EnablePricingPlansForServiceResponse = z.object({
13017
13017
  ).optional(),
13018
13018
  options: z.object({
13019
13019
  online: z.boolean().describe(
13020
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
13020
+ "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)."
13021
13021
  ).optional().nullable(),
13022
13022
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
13023
13023
  deposit: z.boolean().describe(
13024
- "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."
13024
+ "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`."
13025
13025
  ).optional().nullable(),
13026
13026
  pricingPlan: z.boolean().describe(
13027
13027
  "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)."
@@ -13758,11 +13758,11 @@ var DisablePricingPlansForServiceResponse = z.object({
13758
13758
  ).optional(),
13759
13759
  options: z.object({
13760
13760
  online: z.boolean().describe(
13761
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
13761
+ "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)."
13762
13762
  ).optional().nullable(),
13763
13763
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
13764
13764
  deposit: z.boolean().describe(
13765
- "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."
13765
+ "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`."
13766
13766
  ).optional().nullable(),
13767
13767
  pricingPlan: z.boolean().describe(
13768
13768
  "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)."
@@ -14510,11 +14510,11 @@ var SetCustomSlugResponse = z.object({
14510
14510
  ).optional(),
14511
14511
  options: z.object({
14512
14512
  online: z.boolean().describe(
14513
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
14513
+ "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)."
14514
14514
  ).optional().nullable(),
14515
14515
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
14516
14516
  deposit: z.boolean().describe(
14517
- "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."
14517
+ "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`."
14518
14518
  ).optional().nullable(),
14519
14519
  pricingPlan: z.boolean().describe(
14520
14520
  "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)."
@@ -15264,11 +15264,11 @@ var CloneServiceResponse = z.object({
15264
15264
  ).optional(),
15265
15265
  options: z.object({
15266
15266
  online: z.boolean().describe(
15267
- "Customers can pay for the service online.\nWhen `true`:\n+ `rateType` must be `FIXED` or `VARIED`.\n+ `fixed.price` or `varied.defaultPrice` must be specified respectively.\nRead more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)."
15267
+ "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)."
15268
15268
  ).optional().nullable(),
15269
15269
  inPerson: z.boolean().describe("Customers can pay for the service in person.").optional().nullable(),
15270
15270
  deposit: z.boolean().describe(
15271
- "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."
15271
+ "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`."
15272
15272
  ).optional().nullable(),
15273
15273
  pricingPlan: z.boolean().describe(
15274
15274
  "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)."