@wix/auto_sdk_bookings_services 1.0.233 → 1.0.235

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 (53) hide show
  1. package/build/cjs/{bookings-services-v2-service-services.universal-tLAV9Npb.d.ts → bookings-services-v2-service-services.universal-BYcPQXaQ.d.ts} +41 -9
  2. package/build/cjs/index.d.ts +11 -11
  3. package/build/cjs/index.js +18 -6
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +16 -5
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +20 -2
  9. package/build/cjs/meta.js +7 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/cjs/schemas.d.ts +223 -0
  12. package/build/cjs/schemas.js +514 -2
  13. package/build/cjs/schemas.js.map +1 -1
  14. package/build/es/{bookings-services-v2-service-services.universal-tLAV9Npb.d.mts → bookings-services-v2-service-services.universal-BYcPQXaQ.d.mts} +41 -9
  15. package/build/es/index.d.mts +11 -11
  16. package/build/es/index.mjs +17 -6
  17. package/build/es/index.mjs.map +1 -1
  18. package/build/es/index.typings.d.mts +2 -2
  19. package/build/es/index.typings.mjs +15 -5
  20. package/build/es/index.typings.mjs.map +1 -1
  21. package/build/es/meta.d.mts +20 -2
  22. package/build/es/meta.mjs +6 -0
  23. package/build/es/meta.mjs.map +1 -1
  24. package/build/es/schemas.d.mts +223 -0
  25. package/build/es/schemas.mjs +514 -2
  26. package/build/es/schemas.mjs.map +1 -1
  27. package/build/internal/cjs/{bookings-services-v2-service-services.universal-PNFcMyNW.d.ts → bookings-services-v2-service-services.universal-OMm0Xdxb.d.ts} +57 -9
  28. package/build/internal/cjs/index.d.ts +11 -11
  29. package/build/internal/cjs/index.js +18 -6
  30. package/build/internal/cjs/index.js.map +1 -1
  31. package/build/internal/cjs/index.typings.d.ts +2 -2
  32. package/build/internal/cjs/index.typings.js +16 -5
  33. package/build/internal/cjs/index.typings.js.map +1 -1
  34. package/build/internal/cjs/meta.d.ts +20 -2
  35. package/build/internal/cjs/meta.js +7 -0
  36. package/build/internal/cjs/meta.js.map +1 -1
  37. package/build/internal/cjs/schemas.d.ts +223 -0
  38. package/build/internal/cjs/schemas.js +514 -2
  39. package/build/internal/cjs/schemas.js.map +1 -1
  40. package/build/internal/es/{bookings-services-v2-service-services.universal-PNFcMyNW.d.mts → bookings-services-v2-service-services.universal-OMm0Xdxb.d.mts} +57 -9
  41. package/build/internal/es/index.d.mts +11 -11
  42. package/build/internal/es/index.mjs +17 -6
  43. package/build/internal/es/index.mjs.map +1 -1
  44. package/build/internal/es/index.typings.d.mts +2 -2
  45. package/build/internal/es/index.typings.mjs +15 -5
  46. package/build/internal/es/index.typings.mjs.map +1 -1
  47. package/build/internal/es/meta.d.mts +20 -2
  48. package/build/internal/es/meta.mjs +6 -0
  49. package/build/internal/es/meta.mjs.map +1 -1
  50. package/build/internal/es/schemas.d.mts +223 -0
  51. package/build/internal/es/schemas.mjs +514 -2
  52. package/build/internal/es/schemas.mjs.map +1 -1
  53. package/package.json +2 -2
@@ -114,6 +114,8 @@ interface Service {
114
114
  * @format GUID
115
115
  */
116
116
  staffMemberIds?: string[];
117
+ /** Staff members details. Returned only if `STAFF_MEMBER_DETAILS` conditional field was specified. */
118
+ staffMemberDetails?: StaffMemberDetails;
117
119
  /**
118
120
  * Information about which resources must be available so customers can book the service.
119
121
  * For example, a meeting room or equipment.
@@ -1966,6 +1968,12 @@ declare enum SelectionMethod {
1966
1968
  }
1967
1969
  /** @enumType */
1968
1970
  type SelectionMethodWithLiterals = SelectionMethod | 'SPECIFIC_RESOURCE' | 'ANY_RESOURCE' | 'NO_SELECTION';
1971
+ declare enum DurationUnitType {
1972
+ HOUR = "HOUR",
1973
+ DAY = "DAY"
1974
+ }
1975
+ /** @enumType */
1976
+ type DurationUnitTypeWithLiterals = DurationUnitType | 'HOUR' | 'DAY';
1969
1977
  interface BookedSchedule {
1970
1978
  /** [Schedule ID](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction). */
1971
1979
  scheduleId?: string;
@@ -2701,6 +2709,11 @@ interface GetServiceRequest {
2701
2709
  * @format GUID
2702
2710
  */
2703
2711
  serviceId: string;
2712
+ /**
2713
+ * Conditional fields to return.
2714
+ * @maxSize 5
2715
+ */
2716
+ conditionalFields?: V2RequestedFieldsWithLiterals[];
2704
2717
  }
2705
2718
  declare enum V2RequestedFields {
2706
2719
  /** When passed, `service.staffMemberDetails` is returned. */
@@ -2913,6 +2926,11 @@ interface BulkDeleteServicesByFilterResponse {
2913
2926
  interface QueryServicesRequest {
2914
2927
  /** WQL expression. */
2915
2928
  query: QueryV2;
2929
+ /**
2930
+ * Conditional fields to return.
2931
+ * @maxSize 5
2932
+ */
2933
+ conditionalFields?: V2RequestedFieldsWithLiterals[];
2916
2934
  }
2917
2935
  interface QueryV2 extends QueryV2PagingMethodOneOf {
2918
2936
  /** Paging options to limit and skip the number of items. */
@@ -5081,7 +5099,7 @@ declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => vo
5081
5099
  * @returns Created service.
5082
5100
  * @fqn wix.bookings.services.v2.ServicesService.CreateService
5083
5101
  */
5084
- declare function createService(service: Service): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
5102
+ declare function createService(service: Service): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
5085
5103
  __validationErrorsType?: CreateServiceValidationErrors;
5086
5104
  }>;
5087
5105
  /**
@@ -5111,7 +5129,14 @@ interface BulkCreateServicesOptions {
5111
5129
  * @returns Retrieved service.
5112
5130
  * @fqn wix.bookings.services.v2.ServicesService.GetService
5113
5131
  */
5114
- declare function getService(serviceId: string): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6>>;
5132
+ declare function getService(serviceId: string, options?: GetServiceOptions): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6>>;
5133
+ interface GetServiceOptions {
5134
+ /**
5135
+ * Conditional fields to return.
5136
+ * @maxSize 5
5137
+ */
5138
+ conditionalFields?: V2RequestedFieldsWithLiterals[];
5139
+ }
5115
5140
  /**
5116
5141
  * Updates a service.
5117
5142
  *
@@ -5147,7 +5172,7 @@ declare function getService(serviceId: string): Promise<NonNullablePaths<Service
5147
5172
  * @returns Updated service.
5148
5173
  * @fqn wix.bookings.services.v2.ServicesService.UpdateService
5149
5174
  */
5150
- declare function updateService(_id: string, service: NonNullablePaths<UpdateService, `revision`, 2>): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
5175
+ declare function updateService(_id: string, service: NonNullablePaths<UpdateService, `revision`, 2>): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
5151
5176
  __validationErrorsType?: UpdateServiceValidationErrors;
5152
5177
  }>;
5153
5178
  interface UpdateService {
@@ -5262,6 +5287,8 @@ interface UpdateService {
5262
5287
  * @format GUID
5263
5288
  */
5264
5289
  staffMemberIds?: string[];
5290
+ /** Staff members details. Returned only if `STAFF_MEMBER_DETAILS` conditional field was specified. */
5291
+ staffMemberDetails?: StaffMemberDetails;
5265
5292
  /**
5266
5293
  * Information about which resources must be available so customers can book the service.
5267
5294
  * For example, a meeting room or equipment.
@@ -5487,6 +5514,11 @@ interface BulkDeleteServicesByFilterOptions {
5487
5514
  */
5488
5515
  declare function queryServices(options?: QueryServicesOptions): ServicesQueryBuilder;
5489
5516
  interface QueryServicesOptions {
5517
+ /**
5518
+ * Conditional fields to return.
5519
+ * @maxSize 5
5520
+ */
5521
+ conditionalFields?: V2RequestedFieldsWithLiterals[] | undefined;
5490
5522
  }
5491
5523
  interface QueryOffsetResult {
5492
5524
  currentPage: number | undefined;
@@ -6078,7 +6110,7 @@ interface QueryCategoriesOptions {
6078
6110
  * @applicableIdentity APP
6079
6111
  * @fqn wix.bookings.services.v2.ServicesService.SetServiceLocations
6080
6112
  */
6081
- declare function setServiceLocations(serviceId: string, options?: SetServiceLocationsOptions): Promise<NonNullablePaths<SetServiceLocationsResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7>>;
6113
+ declare function setServiceLocations(serviceId: string, options?: SetServiceLocationsOptions): Promise<NonNullablePaths<SetServiceLocationsResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7>>;
6082
6114
  interface SetServiceLocationsOptions {
6083
6115
  /**
6084
6116
  * List of locations replacing existing service locations. Omitting an existing location removes it from the service. Specify `removedLocationSessionsAction` to determine the handling of future sessions scheduled at that location.
@@ -6115,7 +6147,7 @@ interface SetServiceLocationsOptions {
6115
6147
  * @applicableIdentity APP
6116
6148
  * @fqn wix.bookings.services.v2.ServicesService.EnablePricingPlansForService
6117
6149
  */
6118
- declare function enablePricingPlansForService(serviceId: string, pricingPlanIds: string[]): Promise<NonNullablePaths<EnablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6150
+ declare function enablePricingPlansForService(serviceId: string, pricingPlanIds: string[]): Promise<NonNullablePaths<EnablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6119
6151
  __applicationErrorsType?: EnablePricingPlansForServiceApplicationErrors;
6120
6152
  }>;
6121
6153
  /**
@@ -6132,7 +6164,7 @@ declare function enablePricingPlansForService(serviceId: string, pricingPlanIds:
6132
6164
  * @applicableIdentity APP
6133
6165
  * @fqn wix.bookings.services.v2.ServicesService.DisablePricingPlansForService
6134
6166
  */
6135
- declare function disablePricingPlansForService(serviceId: string, options?: DisablePricingPlansForServiceOptions): Promise<NonNullablePaths<DisablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6167
+ declare function disablePricingPlansForService(serviceId: string, options?: DisablePricingPlansForServiceOptions): Promise<NonNullablePaths<DisablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6136
6168
  __applicationErrorsType?: DisablePricingPlansForServiceApplicationErrors;
6137
6169
  }>;
6138
6170
  interface DisablePricingPlansForServiceOptions {
@@ -6160,7 +6192,7 @@ interface DisablePricingPlansForServiceOptions {
6160
6192
  * @applicableIdentity APP
6161
6193
  * @fqn wix.bookings.services.v2.ServicesService.SetCustomSlug
6162
6194
  */
6163
- declare function setCustomSlug(serviceId: string, options?: SetCustomSlugOptions): Promise<NonNullablePaths<SetCustomSlugResponse, `slug.name` | `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6195
+ declare function setCustomSlug(serviceId: string, options?: SetCustomSlugOptions): Promise<NonNullablePaths<SetCustomSlugResponse, `slug.name` | `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6164
6196
  __applicationErrorsType?: SetCustomSlugApplicationErrors;
6165
6197
  __validationErrorsType?: SetCustomSlugValidationErrors;
6166
6198
  }>;
@@ -6254,7 +6286,7 @@ interface ValidateSlugOptions {
6254
6286
  * @applicableIdentity APP
6255
6287
  * @fqn wix.bookings.services.v2.ServicesService.CloneService
6256
6288
  */
6257
- declare function cloneService(sourceServiceId: string): Promise<NonNullablePaths<CloneServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType` | `errors`, 7>>;
6289
+ declare function cloneService(sourceServiceId: string): Promise<NonNullablePaths<CloneServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType` | `errors`, 7>>;
6258
6290
  /**
6259
6291
  * Creates a new add-on group for a service and updates the service's `addOnGroups` array.
6260
6292
  * @param addOnGroup - Add-on group to create.
@@ -6396,4 +6428,4 @@ interface SetAddOnsForGroupOptions {
6396
6428
  addOnIds: string[] | null;
6397
6429
  }
6398
6430
 
6399
- export { type SetAddOnsForGroupOptions as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type CreateAddOnGroupApplicationErrors as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupOptions as R, type Service as S, type DeleteAddOnGroupApplicationErrors as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupOptions as W, type UpdateAddOnGroupResponse as X, type UpdateAddOnGroupApplicationErrors as Y, type ListAddOnGroupsByServiceIdOptions as Z, type ListAddOnGroupsByServiceIdResponse as _, type BulkCreateServicesResponse as a, type FixedPayment as a$, type SetAddOnsForGroupResponse as a0, type SetAddOnsForGroupApplicationErrors as a1, type ServiceCreatedEnvelope as a2, type ServiceDeletedEnvelope as a3, type ServiceUpdatedEnvelope as a4, type ServiceQuery as a5, type QueryServicesOptions as a6, typedQueryServices as a7, type ServicesQueryBuilder as a8, ServiceType as a9, SortDirection as aA, MissingValues as aB, ScalarType as aC, NestedAggregationType as aD, Interval as aE, AggregationType as aF, Mode as aG, RequestedFields as aH, Action as aI, InvalidSlugError as aJ, CloneErrors as aK, Status as aL, CategoryNotificationEvent as aM, BenefitType as aN, Event as aO, CrudType as aP, PlacementType as aQ, DayOfWeek as aR, ResolutionMethod as aS, type Media as aT, type MediaItem as aU, type MediaItemItemOneOf as aV, type V2Category as aW, type Form as aX, type FormSettings as aY, type Payment as aZ, type PaymentRateOneOf as a_, RateType as aa, FrequencyType as ab, FirstChargeDateType as ac, AddOnPaymentOptions as ad, LocationTypeEnumLocationType as ae, RankingOrder as af, SortingMethodType as ag, Timing as ah, CompletionRequirement as ai, UnitType as aj, TaxableAddressType as ak, MultiServiceBookingType as al, ResourceTransparency as am, LocationType as an, SelectionMethod as ao, ValueType as ap, BookingStatus as aq, PaymentStatus as ar, SelectedPaymentOption as as, Platform as at, Actor as au, IdentityType as av, WebhookIdentityType as aw, V2RequestedFields as ax, SortOrder as ay, SortType as az, type UpdateServiceValidationErrors as b, type ServicesUrlsChanged as b$, type Money as b0, type CustomPayment as b1, type VariedPayment as b2, type SubscriptionPayment as b3, type FullUpfrontPayment as b4, type PaymentOptions as b5, type DiscountInfo as b6, type OnlineBooking as b7, type Conferencing as b8, type V2Location as b9, type Schedule as bA, type AvailabilityConstraints as bB, type V2Duration as bC, type DurationRange as bD, type DurationRangeConfigOneOf as bE, type HourlyConfig as bF, type DailyConfig as bG, type StaffMember as bH, type StaffMediaItem as bI, type StaffMediaItemItemOneOf as bJ, type StaffMemberDetails as bK, type ResourceGroup as bL, type ResourceIds as bM, type ServiceResource as bN, type ServiceResourceSelectionOneOf as bO, type ResourceType as bP, type Slug as bQ, type URLs as bR, type ExtendedFields as bS, type SeoSchema as bT, type Keyword as bU, type Tag as bV, type Settings as bW, type AddOnDetails as bX, type TaxableAddress as bY, type V2PhoneCall as bZ, type SetCustomSlugEvent as b_, type V2LocationOptionsOneOf as ba, type CommonAddress as bb, type CommonAddressStreetOneOf as bc, type CommonStreetAddress as bd, type CommonAddressLocation as be, type BusinessLocationOptions as bf, type CustomLocationOptions as bg, type BookingPolicy as bh, type PolicyDescription as bi, type LimitEarlyBookingPolicy as bj, type LimitLateBookingPolicy as bk, type BookAfterStartPolicy as bl, type CancellationPolicy as bm, type ReschedulePolicy as bn, type WaitlistPolicy as bo, type ParticipantsPolicy as bp, type ResourcesPolicy as bq, type CancellationFeePolicy as br, type CancellationWindow as bs, type CancellationWindowFeeOneOf as bt, type SaveCreditCardPolicy as bu, type StaffSortingPolicy as bv, type StaffSortingPolicyOptionsOneOf as bw, type RankingOptions as bx, type CustomOptions as by, type IntakeFormPolicy as bz, type BulkUpdateServicesOptions as c, type DeleteServiceRequest as c$, type DummyRequest as c0, type DummyResponse as c1, type Booking as c2, type BookingParticipantsInfoOneOf as c3, type BookedEntity as c4, type BookedEntityItemOneOf as c5, type BookedSlot as c6, type BookedResource as c7, type Location as c8, type PhoneCall as c9, type EntityDeletedEvent as cA, type ActionEvent as cB, type MessageEnvelope as cC, type IdentificationData as cD, type IdentificationDataIdOneOf as cE, type AccountInfo as cF, type CreateServiceRequest as cG, type CreateServiceResponse as cH, type ValidateServiceRequest as cI, type ValidateServiceResponse as cJ, type FieldViolation as cK, type BulkCreateServicesRequest as cL, type BulkServiceResult as cM, type ItemMetadata as cN, type ApplicationError as cO, type BulkActionMetadata as cP, type GetServiceRequest as cQ, type GetServiceResponse as cR, type GetServiceAvailabilityConstraintsRequest as cS, type GetServiceAvailabilityConstraintsResponse as cT, type ServiceAvailabilityConstraints as cU, type SplitInterval as cV, type UpdateServiceRequest as cW, type UpdateServiceResponse as cX, type BulkUpdateServicesRequest as cY, type MaskedService as cZ, type BulkUpdateServicesByFilterRequest as c_, type ResourceSelection as ca, type BookedSchedule as cb, type ContactDetails as cc, type Address as cd, type AddressStreetOneOf as ce, type StreetAddress as cf, type AddressLocation as cg, type Subdivision as ch, type CustomFormField as ci, type BookingSource as cj, type ParticipantNotification as ck, type CommonIdentificationData as cl, type CommonIdentificationDataIdOneOf as cm, type FlowControlSettings as cn, type ParticipantChoices as co, type ServiceChoices as cp, type ServiceChoice as cq, type ServiceChoiceChoiceOneOf as cr, type Duration as cs, type MultiServiceBookingInfo as ct, type BookedAddOn as cu, type DomainEvent as cv, type DomainEventBodyOneOf as cw, type EntityCreatedEvent as cx, type RestoreInfo as cy, type EntityUpdatedEvent as cz, type BulkUpdateServicesResponse as d, type CountServicesRequest as d$, type V2ParticipantNotification as d0, type DeleteServiceResponse as d1, type BulkDeleteServicesRequest as d2, type BulkDeleteServicesByFilterRequest as d3, type QueryServicesRequest as d4, type QueryV2 as d5, type QueryV2PagingMethodOneOf as d6, type Sorting as d7, type Paging as d8, type CursorPaging as d9, type NestedAggregationResults as dA, type NestedAggregationResultsResultOneOf as dB, type ValueResults as dC, type RangeResults as dD, type AggregationResultsScalarResult as dE, type NestedValueAggregationResult as dF, type ValueResult as dG, type RangeResult as dH, type ScalarResult as dI, type ScalarDateResult as dJ, type NestedResultValue as dK, type NestedResultValueResultOneOf as dL, type Results as dM, type DateHistogramResult as dN, type GroupByValueResults as dO, type DateHistogramResults as dP, type NestedResults as dQ, type AggregationResultsScalarDateResult as dR, type AggregationResults as dS, type AggregationResultsResultOneOf as dT, type QueryPoliciesRequest as dU, type CursorQueryPagingMethodOneOf as dV, type BookingPolicyWithServices as dW, type QueryBookingFormsRequest as dX, type BookingForm as dY, type FormDetails as dZ, type ConnectedService as d_, type QueryServicesResponse as da, type PagingMetadataV2 as db, type Cursors as dc, type SearchServicesRequest as dd, type CursorSearch as de, type CursorSearchPagingMethodOneOf as df, type Aggregation as dg, type AggregationKindOneOf as dh, type RangeBucket as di, type IncludeMissingValuesOptions as dj, type ValueAggregation as dk, type ValueAggregationOptionsOneOf as dl, type RangeAggregation as dm, type ScalarAggregation as dn, type DateHistogramAggregation as dp, type NestedAggregationItem as dq, type NestedAggregationItemKindOneOf as dr, type NestedAggregation as ds, type GroupByAggregation as dt, type GroupByAggregationKindOneOf as du, type SearchDetails as dv, type CursorPagingMetadata as dw, type AggregationData as dx, type ValueAggregationResult as dy, type RangeAggregationResult as dz, type BulkUpdateServicesByFilterOptions as e, type EventMetadata as e$, type QueryLocationsRequest as e0, type QueryLocationsFilter as e1, type BusinessLocations as e2, type CustomLocations as e3, type CustomerLocations as e4, type QueryCategoriesRequest as e5, type QueryCategoriesFilter as e6, type QueryServicesMultiLanguageRequest as e7, type QueryServicesMultiLanguageResponse as e8, type SetServiceLocationsRequest as e9, type Categories as eA, type Locale as eB, type V4Address as eC, type AddressHint as eD, type GeoCoordinates as eE, type BusinessSchedule as eF, type TimePeriod as eG, type SpecialHourPeriod as eH, type Multilingual as eI, type SupportedLanguage as eJ, type ConsentPolicy as eK, type Translation as eL, type ChangeContext as eM, type ChangeContextPayloadOneOf as eN, type PropertiesChange as eO, type SiteCreated as eP, type SiteCloned as eQ, type CreateAddOnGroupRequest as eR, type DeleteAddOnGroupRequest as eS, type DeleteAddOnGroupResponse as eT, type UpdateAddOnGroupRequest as eU, type ListAddOnGroupsByServiceIdRequest as eV, type AddOn as eW, type AddOnAddOnInfoOneOf as eX, type AddOnGroupDetail as eY, type SetAddOnsForGroupRequest as eZ, type BaseEventMetadata as e_, type RemovedLocationSessionsAction as ea, type RemovedLocationSessionsActionActionOptionsOneOf as eb, type MoveToNewLocationsOptions as ec, type EnablePricingPlansForServiceRequest as ed, type PricingPlanSelection as ee, type InvalidPricingPlan as ef, type DisablePricingPlansForServiceRequest as eg, type SetCustomSlugRequest as eh, type ValidateSlugRequest as ei, type CloneServiceRequest as ej, type CategoryNotification as ek, type Category as el, type Empty as em, type BenefitNotification as en, type Benefit as eo, type EntryPass as ep, type Discount as eq, type DiscountDiscountOneOf as er, type Behavior as es, type BehaviorBehaviorOneOf as et, type UserDomainInfoChangedEvent as eu, type HtmlSitePublished as ev, type Page as ew, type SitePropertiesNotification as ex, type SitePropertiesEvent as ey, type Properties as ez, type BulkUpdateServicesByFilterResponse as f, bulkDeleteServices as f$, type AccountInfoMetadata as f0, type ServicesQueryResult as f1, type ServiceQuerySpec as f2, type ServiceSearchSpec as f3, utils as f4, type ServiceTypeWithLiterals as f5, type RateTypeWithLiterals as f6, type FrequencyTypeWithLiterals as f7, type FirstChargeDateTypeWithLiterals as f8, type AddOnPaymentOptionsWithLiterals as f9, type IntervalWithLiterals as fA, type AggregationTypeWithLiterals as fB, type ModeWithLiterals as fC, type RequestedFieldsWithLiterals as fD, type ActionWithLiterals as fE, type InvalidSlugErrorWithLiterals as fF, type CloneErrorsWithLiterals as fG, type StatusWithLiterals as fH, type CategoryNotificationEventWithLiterals as fI, type BenefitTypeWithLiterals as fJ, type EventWithLiterals as fK, type CrudTypeWithLiterals as fL, type PlacementTypeWithLiterals as fM, type DayOfWeekWithLiterals as fN, type ResolutionMethodWithLiterals as fO, type CommonQueryWithEntityContext as fP, type CommonSearchWithEntityContext as fQ, onServiceCreated as fR, onServiceDeleted as fS, onServiceUpdated as fT, createService as fU, bulkCreateServices as fV, getService as fW, updateService as fX, bulkUpdateServices as fY, bulkUpdateServicesByFilter as fZ, deleteService as f_, type LocationTypeEnumLocationTypeWithLiterals as fa, type RankingOrderWithLiterals as fb, type SortingMethodTypeWithLiterals as fc, type TimingWithLiterals as fd, type CompletionRequirementWithLiterals as fe, type UnitTypeWithLiterals as ff, type TaxableAddressTypeWithLiterals as fg, type MultiServiceBookingTypeWithLiterals as fh, type ResourceTransparencyWithLiterals as fi, type LocationTypeWithLiterals as fj, type SelectionMethodWithLiterals as fk, type ValueTypeWithLiterals as fl, type BookingStatusWithLiterals as fm, type PaymentStatusWithLiterals as fn, type SelectedPaymentOptionWithLiterals as fo, type PlatformWithLiterals as fp, type ActorWithLiterals as fq, type IdentityTypeWithLiterals as fr, type WebhookIdentityTypeWithLiterals as fs, type V2RequestedFieldsWithLiterals as ft, type SortOrderWithLiterals as fu, type SortTypeWithLiterals as fv, type SortDirectionWithLiterals as fw, type MissingValuesWithLiterals as fx, type ScalarTypeWithLiterals as fy, type NestedAggregationTypeWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkDeleteServicesByFilter as g0, queryServices as g1, queryPolicies as g2, queryBookingForms as g3, countServices as g4, queryLocations as g5, queryCategories as g6, setServiceLocations as g7, enablePricingPlansForService as g8, disablePricingPlansForService as g9, setCustomSlug as ga, validateSlug as gb, cloneService as gc, createAddOnGroup as gd, deleteAddOnGroup as ge, updateAddOnGroup as gf, listAddOnGroupsByServiceId as gg, setAddOnsForGroup as gh, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
6431
+ export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type Payment as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, SortOrder as aA, SortType as aB, SortDirection as aC, MissingValues as aD, ScalarType as aE, NestedAggregationType as aF, Interval as aG, AggregationType as aH, Mode as aI, RequestedFields as aJ, Action as aK, InvalidSlugError as aL, CloneErrors as aM, Status as aN, CategoryNotificationEvent as aO, BenefitType as aP, Event as aQ, CrudType as aR, PlacementType as aS, DayOfWeek as aT, ResolutionMethod as aU, type Media as aV, type MediaItem as aW, type MediaItemItemOneOf as aX, type V2Category as aY, type Form as aZ, type FormSettings as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, TaxableAddressType as al, MultiServiceBookingType as am, ResourceTransparency as an, LocationType as ao, SelectionMethod as ap, DurationUnitType as aq, ValueType as ar, BookingStatus as as, PaymentStatus as at, SelectedPaymentOption as au, Platform as av, Actor as aw, IdentityType as ax, WebhookIdentityType as ay, V2RequestedFields as az, type UpdateServiceValidationErrors as b, type V2PhoneCall as b$, type PaymentRateOneOf as b0, type FixedPayment as b1, type Money as b2, type CustomPayment as b3, type VariedPayment as b4, type SubscriptionPayment as b5, type FullUpfrontPayment as b6, type PaymentOptions as b7, type DiscountInfo as b8, type OnlineBooking as b9, type CustomOptions as bA, type IntakeFormPolicy as bB, type Schedule as bC, type AvailabilityConstraints as bD, type V2Duration as bE, type DurationRange as bF, type DurationRangeConfigOneOf as bG, type HourlyConfig as bH, type DailyConfig as bI, type StaffMember as bJ, type StaffMediaItem as bK, type StaffMediaItemItemOneOf as bL, type StaffMemberDetails as bM, type ResourceGroup as bN, type ResourceIds as bO, type ServiceResource as bP, type ServiceResourceSelectionOneOf as bQ, type ResourceType as bR, type Slug as bS, type URLs as bT, type ExtendedFields as bU, type SeoSchema as bV, type Keyword as bW, type Tag as bX, type Settings as bY, type AddOnDetails as bZ, type TaxableAddress as b_, type Conferencing as ba, type V2Location as bb, type V2LocationOptionsOneOf as bc, type CommonAddress as bd, type CommonAddressStreetOneOf as be, type CommonStreetAddress as bf, type CommonAddressLocation as bg, type BusinessLocationOptions as bh, type CustomLocationOptions as bi, type BookingPolicy as bj, type PolicyDescription as bk, type LimitEarlyBookingPolicy as bl, type LimitLateBookingPolicy as bm, type BookAfterStartPolicy as bn, type CancellationPolicy as bo, type ReschedulePolicy as bp, type WaitlistPolicy as bq, type ParticipantsPolicy as br, type ResourcesPolicy as bs, type CancellationFeePolicy as bt, type CancellationWindow as bu, type CancellationWindowFeeOneOf as bv, type SaveCreditCardPolicy as bw, type StaffSortingPolicy as bx, type StaffSortingPolicyOptionsOneOf as by, type RankingOptions as bz, type BulkUpdateServicesOptions as c, type MaskedService as c$, type SetCustomSlugEvent as c0, type ServicesUrlsChanged as c1, type DummyRequest as c2, type DummyResponse as c3, type Booking as c4, type BookingParticipantsInfoOneOf as c5, type BookedEntity as c6, type BookedEntityItemOneOf as c7, type BookedSlot as c8, type BookedResource as c9, type RestoreInfo as cA, type EntityUpdatedEvent as cB, type EntityDeletedEvent as cC, type ActionEvent as cD, type MessageEnvelope as cE, type IdentificationData as cF, type IdentificationDataIdOneOf as cG, type AccountInfo as cH, type CreateServiceRequest as cI, type CreateServiceResponse as cJ, type ValidateServiceRequest as cK, type ValidateServiceResponse as cL, type FieldViolation as cM, type BulkCreateServicesRequest as cN, type BulkServiceResult as cO, type ItemMetadata as cP, type ApplicationError as cQ, type BulkActionMetadata as cR, type GetServiceRequest as cS, type GetServiceResponse as cT, type GetServiceAvailabilityConstraintsRequest as cU, type GetServiceAvailabilityConstraintsResponse as cV, type ServiceAvailabilityConstraints as cW, type SplitInterval as cX, type UpdateServiceRequest as cY, type UpdateServiceResponse as cZ, type BulkUpdateServicesRequest as c_, type Location as ca, type PhoneCall as cb, type ResourceSelection as cc, type BookedSchedule as cd, type ContactDetails as ce, type Address as cf, type AddressStreetOneOf as cg, type StreetAddress as ch, type AddressLocation as ci, type Subdivision as cj, type CustomFormField as ck, type BookingSource as cl, type ParticipantNotification as cm, type CommonIdentificationData as cn, type CommonIdentificationDataIdOneOf as co, type FlowControlSettings as cp, type ParticipantChoices as cq, type ServiceChoices as cr, type ServiceChoice as cs, type ServiceChoiceChoiceOneOf as ct, type Duration as cu, type MultiServiceBookingInfo as cv, type BookedAddOn as cw, type DomainEvent as cx, type DomainEventBodyOneOf as cy, type EntityCreatedEvent as cz, type BulkUpdateServicesResponse as d, type FormDetails as d$, type BulkUpdateServicesByFilterRequest as d0, type DeleteServiceRequest as d1, type V2ParticipantNotification as d2, type DeleteServiceResponse as d3, type BulkDeleteServicesRequest as d4, type BulkDeleteServicesByFilterRequest as d5, type QueryServicesRequest as d6, type QueryV2 as d7, type QueryV2PagingMethodOneOf as d8, type Sorting as d9, type ValueAggregationResult as dA, type RangeAggregationResult as dB, type NestedAggregationResults as dC, type NestedAggregationResultsResultOneOf as dD, type ValueResults as dE, type RangeResults as dF, type AggregationResultsScalarResult as dG, type NestedValueAggregationResult as dH, type ValueResult as dI, type RangeResult as dJ, type ScalarResult as dK, type ScalarDateResult as dL, type NestedResultValue as dM, type NestedResultValueResultOneOf as dN, type Results as dO, type DateHistogramResult as dP, type GroupByValueResults as dQ, type DateHistogramResults as dR, type NestedResults as dS, type AggregationResultsScalarDateResult as dT, type AggregationResults as dU, type AggregationResultsResultOneOf as dV, type QueryPoliciesRequest as dW, type CursorQueryPagingMethodOneOf as dX, type BookingPolicyWithServices as dY, type QueryBookingFormsRequest as dZ, type BookingForm as d_, type Paging as da, type CursorPaging as db, type QueryServicesResponse as dc, type PagingMetadataV2 as dd, type Cursors as de, type SearchServicesRequest as df, type CursorSearch as dg, type CursorSearchPagingMethodOneOf as dh, type Aggregation as di, type AggregationKindOneOf as dj, type RangeBucket as dk, type IncludeMissingValuesOptions as dl, type ValueAggregation as dm, type ValueAggregationOptionsOneOf as dn, type RangeAggregation as dp, type ScalarAggregation as dq, type DateHistogramAggregation as dr, type NestedAggregationItem as ds, type NestedAggregationItemKindOneOf as dt, type NestedAggregation as du, type GroupByAggregation as dv, type GroupByAggregationKindOneOf as dw, type SearchDetails as dx, type CursorPagingMetadata as dy, type AggregationData as dz, type BulkUpdateServicesByFilterOptions as e, type SetAddOnsForGroupRequest as e$, type ConnectedService as e0, type CountServicesRequest as e1, type QueryLocationsRequest as e2, type QueryLocationsFilter as e3, type BusinessLocations as e4, type CustomLocations as e5, type CustomerLocations as e6, type QueryCategoriesRequest as e7, type QueryCategoriesFilter as e8, type QueryServicesMultiLanguageRequest as e9, type SitePropertiesEvent as eA, type Properties as eB, type Categories as eC, type Locale as eD, type V4Address as eE, type AddressHint as eF, type GeoCoordinates as eG, type BusinessSchedule as eH, type TimePeriod as eI, type SpecialHourPeriod as eJ, type Multilingual as eK, type SupportedLanguage as eL, type ConsentPolicy as eM, type Translation as eN, type ChangeContext as eO, type ChangeContextPayloadOneOf as eP, type PropertiesChange as eQ, type SiteCreated as eR, type SiteCloned as eS, type CreateAddOnGroupRequest as eT, type DeleteAddOnGroupRequest as eU, type DeleteAddOnGroupResponse as eV, type UpdateAddOnGroupRequest as eW, type ListAddOnGroupsByServiceIdRequest as eX, type AddOn as eY, type AddOnAddOnInfoOneOf as eZ, type AddOnGroupDetail as e_, type QueryServicesMultiLanguageResponse as ea, type SetServiceLocationsRequest as eb, type RemovedLocationSessionsAction as ec, type RemovedLocationSessionsActionActionOptionsOneOf as ed, type MoveToNewLocationsOptions as ee, type EnablePricingPlansForServiceRequest as ef, type PricingPlanSelection as eg, type InvalidPricingPlan as eh, type DisablePricingPlansForServiceRequest as ei, type SetCustomSlugRequest as ej, type ValidateSlugRequest as ek, type CloneServiceRequest as el, type CategoryNotification as em, type Category as en, type Empty as eo, type BenefitNotification as ep, type Benefit as eq, type EntryPass as er, type Discount as es, type DiscountDiscountOneOf as et, type Behavior as eu, type BehaviorBehaviorOneOf as ev, type UserDomainInfoChangedEvent as ew, type HtmlSitePublished as ex, type Page as ey, type SitePropertiesNotification as ez, type BulkUpdateServicesByFilterResponse as f, bulkUpdateServices as f$, type BaseEventMetadata as f0, type EventMetadata as f1, type AccountInfoMetadata as f2, type ServicesQueryResult as f3, type ServiceQuerySpec as f4, type ServiceSearchSpec as f5, utils as f6, type ServiceTypeWithLiterals as f7, type RateTypeWithLiterals as f8, type FrequencyTypeWithLiterals as f9, type MissingValuesWithLiterals as fA, type ScalarTypeWithLiterals as fB, type NestedAggregationTypeWithLiterals as fC, type IntervalWithLiterals as fD, type AggregationTypeWithLiterals as fE, type ModeWithLiterals as fF, type RequestedFieldsWithLiterals as fG, type ActionWithLiterals as fH, type InvalidSlugErrorWithLiterals as fI, type CloneErrorsWithLiterals as fJ, type StatusWithLiterals as fK, type CategoryNotificationEventWithLiterals as fL, type BenefitTypeWithLiterals as fM, type EventWithLiterals as fN, type CrudTypeWithLiterals as fO, type PlacementTypeWithLiterals as fP, type DayOfWeekWithLiterals as fQ, type ResolutionMethodWithLiterals as fR, type CommonQueryWithEntityContext as fS, type CommonSearchWithEntityContext as fT, onServiceCreated as fU, onServiceDeleted as fV, onServiceUpdated as fW, createService as fX, bulkCreateServices as fY, getService as fZ, updateService as f_, type FirstChargeDateTypeWithLiterals as fa, type AddOnPaymentOptionsWithLiterals as fb, type LocationTypeEnumLocationTypeWithLiterals as fc, type RankingOrderWithLiterals as fd, type SortingMethodTypeWithLiterals as fe, type TimingWithLiterals as ff, type CompletionRequirementWithLiterals as fg, type UnitTypeWithLiterals as fh, type TaxableAddressTypeWithLiterals as fi, type MultiServiceBookingTypeWithLiterals as fj, type ResourceTransparencyWithLiterals as fk, type LocationTypeWithLiterals as fl, type SelectionMethodWithLiterals as fm, type DurationUnitTypeWithLiterals as fn, type ValueTypeWithLiterals as fo, type BookingStatusWithLiterals as fp, type PaymentStatusWithLiterals as fq, type SelectedPaymentOptionWithLiterals as fr, type PlatformWithLiterals as fs, type ActorWithLiterals as ft, type IdentityTypeWithLiterals as fu, type WebhookIdentityTypeWithLiterals as fv, type V2RequestedFieldsWithLiterals as fw, type SortOrderWithLiterals as fx, type SortTypeWithLiterals as fy, type SortDirectionWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkUpdateServicesByFilter as g0, deleteService as g1, bulkDeleteServices as g2, bulkDeleteServicesByFilter as g3, queryServices as g4, queryPolicies as g5, queryBookingForms as g6, countServices as g7, queryLocations as g8, queryCategories as g9, setServiceLocations as ga, enablePricingPlansForService as gb, disablePricingPlansForService as gc, setCustomSlug as gd, validateSlug as ge, cloneService as gf, createAddOnGroup as gg, deleteAddOnGroup as gh, updateAddOnGroup as gi, listAddOnGroupsByServiceId as gj, setAddOnsForGroup as gk, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as CreateAddOnGroupApplicationErrors, R as DeleteAddOnGroupOptions, T as DeleteAddOnGroupApplicationErrors, W as UpdateAddOnGroupOptions, X as UpdateAddOnGroupResponse, Y as UpdateAddOnGroupApplicationErrors, Z as ListAddOnGroupsByServiceIdOptions, _ as ListAddOnGroupsByServiceIdResponse, $ as SetAddOnsForGroupOptions, a0 as SetAddOnsForGroupResponse, a1 as SetAddOnsForGroupApplicationErrors, a2 as ServiceCreatedEnvelope, a3 as ServiceDeletedEnvelope, a4 as ServiceUpdatedEnvelope, a5 as ServiceQuery, a6 as QueryServicesOptions, a7 as typedQueryServices, a8 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-tLAV9Npb.js';
3
- export { cF as AccountInfo, f0 as AccountInfoMetadata, aI as Action, cB as ActionEvent, fE as ActionWithLiterals, au as Actor, fq as ActorWithLiterals, eW as AddOn, eX as AddOnAddOnInfoOneOf, bX as AddOnDetails, eY as AddOnGroupDetail, ad as AddOnPaymentOptions, f9 as AddOnPaymentOptionsWithLiterals, cd as Address, eD as AddressHint, cg as AddressLocation, ce as AddressStreetOneOf, dg as Aggregation, dx as AggregationData, dh as AggregationKindOneOf, dS as AggregationResults, dT as AggregationResultsResultOneOf, dR as AggregationResultsScalarDateResult, dE as AggregationResultsScalarResult, aF as AggregationType, fB as AggregationTypeWithLiterals, cO as ApplicationError, bB as AvailabilityConstraints, e_ as BaseEventMetadata, es as Behavior, et as BehaviorBehaviorOneOf, eo as Benefit, en as BenefitNotification, aN as BenefitType, fJ as BenefitTypeWithLiterals, bl as BookAfterStartPolicy, cu as BookedAddOn, c4 as BookedEntity, c5 as BookedEntityItemOneOf, c7 as BookedResource, cb as BookedSchedule, c6 as BookedSlot, c2 as Booking, dY as BookingForm, c3 as BookingParticipantsInfoOneOf, bh as BookingPolicy, dW as BookingPolicyWithServices, cj as BookingSource, aq as BookingStatus, fm as BookingStatusWithLiterals, cP as BulkActionMetadata, cL as BulkCreateServicesRequest, d3 as BulkDeleteServicesByFilterRequest, d2 as BulkDeleteServicesRequest, cM as BulkServiceResult, c_ as BulkUpdateServicesByFilterRequest, cY as BulkUpdateServicesRequest, bf as BusinessLocationOptions, e2 as BusinessLocations, eF as BusinessSchedule, br as CancellationFeePolicy, bm as CancellationPolicy, bs as CancellationWindow, bt as CancellationWindowFeeOneOf, eA as Categories, el as Category, ek as CategoryNotification, aM as CategoryNotificationEvent, fI as CategoryNotificationEventWithLiterals, eM as ChangeContext, eN as ChangeContextPayloadOneOf, aK as CloneErrors, fG as CloneErrorsWithLiterals, ej as CloneServiceRequest, bb as CommonAddress, be as CommonAddressLocation, bc as CommonAddressStreetOneOf, cl as CommonIdentificationData, cm as CommonIdentificationDataIdOneOf, fP as CommonQueryWithEntityContext, fQ as CommonSearchWithEntityContext, bd as CommonStreetAddress, ai as CompletionRequirement, fe as CompletionRequirementWithLiterals, b8 as Conferencing, d_ as ConnectedService, eK as ConsentPolicy, cc as ContactDetails, d$ as CountServicesRequest, eR as CreateAddOnGroupRequest, cG as CreateServiceRequest, cH as CreateServiceResponse, aP as CrudType, fL as CrudTypeWithLiterals, d9 as CursorPaging, dw as CursorPagingMetadata, dV as CursorQueryPagingMethodOneOf, de as CursorSearch, df as CursorSearchPagingMethodOneOf, dc as Cursors, ci as CustomFormField, bg as CustomLocationOptions, e3 as CustomLocations, by as CustomOptions, b1 as CustomPayment, e4 as CustomerLocations, bG as DailyConfig, dp as DateHistogramAggregation, dN as DateHistogramResult, dP as DateHistogramResults, aR as DayOfWeek, fN as DayOfWeekWithLiterals, eS as DeleteAddOnGroupRequest, eT as DeleteAddOnGroupResponse, c$ as DeleteServiceRequest, d1 as DeleteServiceResponse, eg as DisablePricingPlansForServiceRequest, eq as Discount, er as DiscountDiscountOneOf, b6 as DiscountInfo, cv as DomainEvent, cw as DomainEventBodyOneOf, c0 as DummyRequest, c1 as DummyResponse, cs as Duration, bD as DurationRange, bE as DurationRangeConfigOneOf, em as Empty, ed as EnablePricingPlansForServiceRequest, cx as EntityCreatedEvent, cA as EntityDeletedEvent, cz as EntityUpdatedEvent, ep as EntryPass, aO as Event, e$ as EventMetadata, fK as EventWithLiterals, bS as ExtendedFields, cK as FieldViolation, ac as FirstChargeDateType, f8 as FirstChargeDateTypeWithLiterals, a$ as FixedPayment, cn as FlowControlSettings, aX as Form, dZ as FormDetails, aY as FormSettings, ab as FrequencyType, f7 as FrequencyTypeWithLiterals, b4 as FullUpfrontPayment, eE as GeoCoordinates, cS as GetServiceAvailabilityConstraintsRequest, cT as GetServiceAvailabilityConstraintsResponse, cQ as GetServiceRequest, cR as GetServiceResponse, dt as GroupByAggregation, du as GroupByAggregationKindOneOf, dO as GroupByValueResults, bF as HourlyConfig, ev as HtmlSitePublished, cD as IdentificationData, cE as IdentificationDataIdOneOf, av as IdentityType, fr as IdentityTypeWithLiterals, dj as IncludeMissingValuesOptions, bz as IntakeFormPolicy, aE as Interval, fA as IntervalWithLiterals, ef as InvalidPricingPlan, aJ as InvalidSlugError, fF as InvalidSlugErrorWithLiterals, cN as ItemMetadata, bU as Keyword, bj as LimitEarlyBookingPolicy, bk as LimitLateBookingPolicy, eV as ListAddOnGroupsByServiceIdRequest, eB as Locale, c8 as Location, an as LocationType, ae as LocationTypeEnumLocationType, fa as LocationTypeEnumLocationTypeWithLiterals, fj as LocationTypeWithLiterals, cZ as MaskedService, aT as Media, aU as MediaItem, aV as MediaItemItemOneOf, cC as MessageEnvelope, aB as MissingValues, fx as MissingValuesWithLiterals, aG as Mode, fC as ModeWithLiterals, b0 as Money, ec as MoveToNewLocationsOptions, ct as MultiServiceBookingInfo, al as MultiServiceBookingType, fh as MultiServiceBookingTypeWithLiterals, eI as Multilingual, ds as NestedAggregation, dq as NestedAggregationItem, dr as NestedAggregationItemKindOneOf, dA as NestedAggregationResults, dB as NestedAggregationResultsResultOneOf, aD as NestedAggregationType, fz as NestedAggregationTypeWithLiterals, dK as NestedResultValue, dL as NestedResultValueResultOneOf, dQ as NestedResults, dF as NestedValueAggregationResult, b7 as OnlineBooking, ew as Page, d8 as Paging, db as PagingMetadataV2, co as ParticipantChoices, ck as ParticipantNotification, bp as ParticipantsPolicy, aZ as Payment, b5 as PaymentOptions, a_ as PaymentRateOneOf, ar as PaymentStatus, fn as PaymentStatusWithLiterals, c9 as PhoneCall, aQ as PlacementType, fM as PlacementTypeWithLiterals, at as Platform, fp as PlatformWithLiterals, bi as PolicyDescription, ee as PricingPlanSelection, ez as Properties, eO as PropertiesChange, dX as QueryBookingFormsRequest, e6 as QueryCategoriesFilter, e5 as QueryCategoriesRequest, e1 as QueryLocationsFilter, e0 as QueryLocationsRequest, dU as QueryPoliciesRequest, e7 as QueryServicesMultiLanguageRequest, e8 as QueryServicesMultiLanguageResponse, d4 as QueryServicesRequest, da as QueryServicesResponse, d5 as QueryV2, d6 as QueryV2PagingMethodOneOf, dm as RangeAggregation, dz as RangeAggregationResult, di as RangeBucket, dH as RangeResult, dD as RangeResults, bx as RankingOptions, af as RankingOrder, fb as RankingOrderWithLiterals, aa as RateType, f6 as RateTypeWithLiterals, ea as RemovedLocationSessionsAction, eb as RemovedLocationSessionsActionActionOptionsOneOf, aH as RequestedFields, fD as RequestedFieldsWithLiterals, bn as ReschedulePolicy, aS as ResolutionMethod, fO as ResolutionMethodWithLiterals, bL as ResourceGroup, bM as ResourceIds, ca as ResourceSelection, am as ResourceTransparency, fi as ResourceTransparencyWithLiterals, bP as ResourceType, bq as ResourcesPolicy, cy as RestoreInfo, dM as Results, bu as SaveCreditCardPolicy, dn as ScalarAggregation, dJ as ScalarDateResult, dI as ScalarResult, aC as ScalarType, fy as ScalarTypeWithLiterals, bA as Schedule, dv as SearchDetails, dd as SearchServicesRequest, as as SelectedPaymentOption, fo as SelectedPaymentOptionWithLiterals, ao as SelectionMethod, fk as SelectionMethodWithLiterals, bT as SeoSchema, cU as ServiceAvailabilityConstraints, cq as ServiceChoice, cr as ServiceChoiceChoiceOneOf, cp as ServiceChoices, f2 as ServiceQuerySpec, bN as ServiceResource, bO as ServiceResourceSelectionOneOf, f3 as ServiceSearchSpec, a9 as ServiceType, f5 as ServiceTypeWithLiterals, f1 as ServicesQueryResult, b$ as ServicesUrlsChanged, eZ as SetAddOnsForGroupRequest, b_ as SetCustomSlugEvent, eh as SetCustomSlugRequest, e9 as SetServiceLocationsRequest, bW as Settings, eQ as SiteCloned, eP as SiteCreated, ey as SitePropertiesEvent, ex as SitePropertiesNotification, bQ as Slug, aA as SortDirection, fw as SortDirectionWithLiterals, ay as SortOrder, fu as SortOrderWithLiterals, az as SortType, fv as SortTypeWithLiterals, d7 as Sorting, ag as SortingMethodType, fc as SortingMethodTypeWithLiterals, eH as SpecialHourPeriod, cV as SplitInterval, bI as StaffMediaItem, bJ as StaffMediaItemItemOneOf, bH as StaffMember, bK as StaffMemberDetails, bv as StaffSortingPolicy, bw as StaffSortingPolicyOptionsOneOf, aL as Status, fH as StatusWithLiterals, cf as StreetAddress, ch as Subdivision, b3 as SubscriptionPayment, eJ as SupportedLanguage, bV as Tag, bY as TaxableAddress, ak as TaxableAddressType, fg as TaxableAddressTypeWithLiterals, eG as TimePeriod, ah as Timing, fd as TimingWithLiterals, eL as Translation, bR as URLs, aj as UnitType, ff as UnitTypeWithLiterals, eU as UpdateAddOnGroupRequest, cW as UpdateServiceRequest, cX as UpdateServiceResponse, eu as UserDomainInfoChangedEvent, aW as V2Category, bC as V2Duration, b9 as V2Location, ba as V2LocationOptionsOneOf, d0 as V2ParticipantNotification, bZ as V2PhoneCall, ax as V2RequestedFields, ft as V2RequestedFieldsWithLiterals, eC as V4Address, cI as ValidateServiceRequest, cJ as ValidateServiceResponse, ei as ValidateSlugRequest, dk as ValueAggregation, dl as ValueAggregationOptionsOneOf, dy as ValueAggregationResult, dG as ValueResult, dC as ValueResults, ap as ValueType, fl as ValueTypeWithLiterals, b2 as VariedPayment, bo as WaitlistPolicy, aw as WebhookIdentityType, fs as WebhookIdentityTypeWithLiterals, f4 as utils } from './bookings-services-v2-service-services.universal-tLAV9Npb.js';
2
+ import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, G as GetServiceOptions, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, H as SetCustomSlugOptions, I as SetCustomSlugResponse, J as SetCustomSlugApplicationErrors, K as SetCustomSlugValidationErrors, V as ValidateSlugOptions, L as ValidateSlugResponse, M as CloneServiceResponse, N as AddOnGroup, O as CreateAddOnGroupOptions, P as CreateAddOnGroupResponse, R as CreateAddOnGroupApplicationErrors, T as DeleteAddOnGroupOptions, W as DeleteAddOnGroupApplicationErrors, X as UpdateAddOnGroupOptions, Y as UpdateAddOnGroupResponse, Z as UpdateAddOnGroupApplicationErrors, _ as ListAddOnGroupsByServiceIdOptions, $ as ListAddOnGroupsByServiceIdResponse, a0 as SetAddOnsForGroupOptions, a1 as SetAddOnsForGroupResponse, a2 as SetAddOnsForGroupApplicationErrors, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope, a6 as ServiceQuery, a7 as QueryServicesOptions, a8 as typedQueryServices, a9 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-BYcPQXaQ.js';
3
+ export { cH as AccountInfo, f2 as AccountInfoMetadata, aK as Action, cD as ActionEvent, fH as ActionWithLiterals, aw as Actor, ft as ActorWithLiterals, eY as AddOn, eZ as AddOnAddOnInfoOneOf, bZ as AddOnDetails, e_ as AddOnGroupDetail, ae as AddOnPaymentOptions, fb as AddOnPaymentOptionsWithLiterals, cf as Address, eF as AddressHint, ci as AddressLocation, cg as AddressStreetOneOf, di as Aggregation, dz as AggregationData, dj as AggregationKindOneOf, dU as AggregationResults, dV as AggregationResultsResultOneOf, dT as AggregationResultsScalarDateResult, dG as AggregationResultsScalarResult, aH as AggregationType, fE as AggregationTypeWithLiterals, cQ as ApplicationError, bD as AvailabilityConstraints, f0 as BaseEventMetadata, eu as Behavior, ev as BehaviorBehaviorOneOf, eq as Benefit, ep as BenefitNotification, aP as BenefitType, fM as BenefitTypeWithLiterals, bn as BookAfterStartPolicy, cw as BookedAddOn, c6 as BookedEntity, c7 as BookedEntityItemOneOf, c9 as BookedResource, cd as BookedSchedule, c8 as BookedSlot, c4 as Booking, d_ as BookingForm, c5 as BookingParticipantsInfoOneOf, bj as BookingPolicy, dY as BookingPolicyWithServices, cl as BookingSource, as as BookingStatus, fp as BookingStatusWithLiterals, cR as BulkActionMetadata, cN as BulkCreateServicesRequest, d5 as BulkDeleteServicesByFilterRequest, d4 as BulkDeleteServicesRequest, cO as BulkServiceResult, d0 as BulkUpdateServicesByFilterRequest, c_ as BulkUpdateServicesRequest, bh as BusinessLocationOptions, e4 as BusinessLocations, eH as BusinessSchedule, bt as CancellationFeePolicy, bo as CancellationPolicy, bu as CancellationWindow, bv as CancellationWindowFeeOneOf, eC as Categories, en as Category, em as CategoryNotification, aO as CategoryNotificationEvent, fL as CategoryNotificationEventWithLiterals, eO as ChangeContext, eP as ChangeContextPayloadOneOf, aM as CloneErrors, fJ as CloneErrorsWithLiterals, el as CloneServiceRequest, bd as CommonAddress, bg as CommonAddressLocation, be as CommonAddressStreetOneOf, cn as CommonIdentificationData, co as CommonIdentificationDataIdOneOf, fS as CommonQueryWithEntityContext, fT as CommonSearchWithEntityContext, bf as CommonStreetAddress, aj as CompletionRequirement, fg as CompletionRequirementWithLiterals, ba as Conferencing, e0 as ConnectedService, eM as ConsentPolicy, ce as ContactDetails, e1 as CountServicesRequest, eT as CreateAddOnGroupRequest, cI as CreateServiceRequest, cJ as CreateServiceResponse, aR as CrudType, fO as CrudTypeWithLiterals, db as CursorPaging, dy as CursorPagingMetadata, dX as CursorQueryPagingMethodOneOf, dg as CursorSearch, dh as CursorSearchPagingMethodOneOf, de as Cursors, ck as CustomFormField, bi as CustomLocationOptions, e5 as CustomLocations, bA as CustomOptions, b3 as CustomPayment, e6 as CustomerLocations, bI as DailyConfig, dr as DateHistogramAggregation, dP as DateHistogramResult, dR as DateHistogramResults, aT as DayOfWeek, fQ as DayOfWeekWithLiterals, eU as DeleteAddOnGroupRequest, eV as DeleteAddOnGroupResponse, d1 as DeleteServiceRequest, d3 as DeleteServiceResponse, ei as DisablePricingPlansForServiceRequest, es as Discount, et as DiscountDiscountOneOf, b8 as DiscountInfo, cx as DomainEvent, cy as DomainEventBodyOneOf, c2 as DummyRequest, c3 as DummyResponse, cu as Duration, bF as DurationRange, bG as DurationRangeConfigOneOf, aq as DurationUnitType, fn as DurationUnitTypeWithLiterals, eo as Empty, ef as EnablePricingPlansForServiceRequest, cz as EntityCreatedEvent, cC as EntityDeletedEvent, cB as EntityUpdatedEvent, er as EntryPass, aQ as Event, f1 as EventMetadata, fN as EventWithLiterals, bU as ExtendedFields, cM as FieldViolation, ad as FirstChargeDateType, fa as FirstChargeDateTypeWithLiterals, b1 as FixedPayment, cp as FlowControlSettings, aZ as Form, d$ as FormDetails, a_ as FormSettings, ac as FrequencyType, f9 as FrequencyTypeWithLiterals, b6 as FullUpfrontPayment, eG as GeoCoordinates, cU as GetServiceAvailabilityConstraintsRequest, cV as GetServiceAvailabilityConstraintsResponse, cS as GetServiceRequest, cT as GetServiceResponse, dv as GroupByAggregation, dw as GroupByAggregationKindOneOf, dQ as GroupByValueResults, bH as HourlyConfig, ex as HtmlSitePublished, cF as IdentificationData, cG as IdentificationDataIdOneOf, ax as IdentityType, fu as IdentityTypeWithLiterals, dl as IncludeMissingValuesOptions, bB as IntakeFormPolicy, aG as Interval, fD as IntervalWithLiterals, eh as InvalidPricingPlan, aL as InvalidSlugError, fI as InvalidSlugErrorWithLiterals, cP as ItemMetadata, bW as Keyword, bl as LimitEarlyBookingPolicy, bm as LimitLateBookingPolicy, eX as ListAddOnGroupsByServiceIdRequest, eD as Locale, ca as Location, ao as LocationType, af as LocationTypeEnumLocationType, fc as LocationTypeEnumLocationTypeWithLiterals, fl as LocationTypeWithLiterals, c$ as MaskedService, aV as Media, aW as MediaItem, aX as MediaItemItemOneOf, cE as MessageEnvelope, aD as MissingValues, fA as MissingValuesWithLiterals, aI as Mode, fF as ModeWithLiterals, b2 as Money, ee as MoveToNewLocationsOptions, cv as MultiServiceBookingInfo, am as MultiServiceBookingType, fj as MultiServiceBookingTypeWithLiterals, eK as Multilingual, du as NestedAggregation, ds as NestedAggregationItem, dt as NestedAggregationItemKindOneOf, dC as NestedAggregationResults, dD as NestedAggregationResultsResultOneOf, aF as NestedAggregationType, fC as NestedAggregationTypeWithLiterals, dM as NestedResultValue, dN as NestedResultValueResultOneOf, dS as NestedResults, dH as NestedValueAggregationResult, b9 as OnlineBooking, ey as Page, da as Paging, dd as PagingMetadataV2, cq as ParticipantChoices, cm as ParticipantNotification, br as ParticipantsPolicy, a$ as Payment, b7 as PaymentOptions, b0 as PaymentRateOneOf, at as PaymentStatus, fq as PaymentStatusWithLiterals, cb as PhoneCall, aS as PlacementType, fP as PlacementTypeWithLiterals, av as Platform, fs as PlatformWithLiterals, bk as PolicyDescription, eg as PricingPlanSelection, eB as Properties, eQ as PropertiesChange, dZ as QueryBookingFormsRequest, e8 as QueryCategoriesFilter, e7 as QueryCategoriesRequest, e3 as QueryLocationsFilter, e2 as QueryLocationsRequest, dW as QueryPoliciesRequest, e9 as QueryServicesMultiLanguageRequest, ea as QueryServicesMultiLanguageResponse, d6 as QueryServicesRequest, dc as QueryServicesResponse, d7 as QueryV2, d8 as QueryV2PagingMethodOneOf, dp as RangeAggregation, dB as RangeAggregationResult, dk as RangeBucket, dJ as RangeResult, dF as RangeResults, bz as RankingOptions, ag as RankingOrder, fd as RankingOrderWithLiterals, ab as RateType, f8 as RateTypeWithLiterals, ec as RemovedLocationSessionsAction, ed as RemovedLocationSessionsActionActionOptionsOneOf, aJ as RequestedFields, fG as RequestedFieldsWithLiterals, bp as ReschedulePolicy, aU as ResolutionMethod, fR as ResolutionMethodWithLiterals, bN as ResourceGroup, bO as ResourceIds, cc as ResourceSelection, an as ResourceTransparency, fk as ResourceTransparencyWithLiterals, bR as ResourceType, bs as ResourcesPolicy, cA as RestoreInfo, dO as Results, bw as SaveCreditCardPolicy, dq as ScalarAggregation, dL as ScalarDateResult, dK as ScalarResult, aE as ScalarType, fB as ScalarTypeWithLiterals, bC as Schedule, dx as SearchDetails, df as SearchServicesRequest, au as SelectedPaymentOption, fr as SelectedPaymentOptionWithLiterals, ap as SelectionMethod, fm as SelectionMethodWithLiterals, bV as SeoSchema, cW as ServiceAvailabilityConstraints, cs as ServiceChoice, ct as ServiceChoiceChoiceOneOf, cr as ServiceChoices, f4 as ServiceQuerySpec, bP as ServiceResource, bQ as ServiceResourceSelectionOneOf, f5 as ServiceSearchSpec, aa as ServiceType, f7 as ServiceTypeWithLiterals, f3 as ServicesQueryResult, c1 as ServicesUrlsChanged, e$ as SetAddOnsForGroupRequest, c0 as SetCustomSlugEvent, ej as SetCustomSlugRequest, eb as SetServiceLocationsRequest, bY as Settings, eS as SiteCloned, eR as SiteCreated, eA as SitePropertiesEvent, ez as SitePropertiesNotification, bS as Slug, aC as SortDirection, fz as SortDirectionWithLiterals, aA as SortOrder, fx as SortOrderWithLiterals, aB as SortType, fy as SortTypeWithLiterals, d9 as Sorting, ah as SortingMethodType, fe as SortingMethodTypeWithLiterals, eJ as SpecialHourPeriod, cX as SplitInterval, bK as StaffMediaItem, bL as StaffMediaItemItemOneOf, bJ as StaffMember, bM as StaffMemberDetails, bx as StaffSortingPolicy, by as StaffSortingPolicyOptionsOneOf, aN as Status, fK as StatusWithLiterals, ch as StreetAddress, cj as Subdivision, b5 as SubscriptionPayment, eL as SupportedLanguage, bX as Tag, b_ as TaxableAddress, al as TaxableAddressType, fi as TaxableAddressTypeWithLiterals, eI as TimePeriod, ai as Timing, ff as TimingWithLiterals, eN as Translation, bT as URLs, ak as UnitType, fh as UnitTypeWithLiterals, eW as UpdateAddOnGroupRequest, cY as UpdateServiceRequest, cZ as UpdateServiceResponse, ew as UserDomainInfoChangedEvent, aY as V2Category, bE as V2Duration, bb as V2Location, bc as V2LocationOptionsOneOf, d2 as V2ParticipantNotification, b$ as V2PhoneCall, az as V2RequestedFields, fw as V2RequestedFieldsWithLiterals, eE as V4Address, cK as ValidateServiceRequest, cL as ValidateServiceResponse, ek as ValidateSlugRequest, dm as ValueAggregation, dn as ValueAggregationOptionsOneOf, dA as ValueAggregationResult, dI as ValueResult, dE as ValueResults, ar as ValueType, fo as ValueTypeWithLiterals, b4 as VariedPayment, bq as WaitlistPolicy, ay as WebhookIdentityType, fv as WebhookIdentityTypeWithLiterals, f6 as utils } from './bookings-services-v2-service-services.universal-BYcPQXaQ.js';
4
4
 
5
5
  declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
6
6
  interface CreateServiceSignature {
@@ -113,7 +113,7 @@ interface CreateServiceSignature {
113
113
  * @param - Service to create.
114
114
  * @returns Created service.
115
115
  */
116
- (service: Service): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
116
+ (service: Service): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
117
117
  __validationErrorsType?: CreateServiceValidationErrors;
118
118
  }>;
119
119
  }
@@ -135,7 +135,7 @@ interface GetServiceSignature {
135
135
  * @param - ID of the service to retrieve.
136
136
  * @returns Retrieved service.
137
137
  */
138
- (serviceId: string): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6>>;
138
+ (serviceId: string, options?: GetServiceOptions): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6>>;
139
139
  }
140
140
  declare function updateService$1(httpClient: HttpClient): UpdateServiceSignature;
141
141
  interface UpdateServiceSignature {
@@ -167,7 +167,7 @@ interface UpdateServiceSignature {
167
167
  * @param - Service ID.
168
168
  * @returns Updated service.
169
169
  */
170
- (_id: string, service: NonNullablePaths<UpdateService, `revision`, 2>): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
170
+ (_id: string, service: NonNullablePaths<UpdateService, `revision`, 2>): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
171
171
  __validationErrorsType?: UpdateServiceValidationErrors;
172
172
  }>;
173
173
  }
@@ -474,7 +474,7 @@ interface SetServiceLocationsSignature {
474
474
  * message.
475
475
  * @param - ID of the service.
476
476
  */
477
- (serviceId: string, options?: SetServiceLocationsOptions): Promise<NonNullablePaths<SetServiceLocationsResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7>>;
477
+ (serviceId: string, options?: SetServiceLocationsOptions): Promise<NonNullablePaths<SetServiceLocationsResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7>>;
478
478
  }
479
479
  declare function enablePricingPlansForService$1(httpClient: HttpClient): EnablePricingPlansForServiceSignature;
480
480
  interface EnablePricingPlansForServiceSignature {
@@ -490,7 +490,7 @@ interface EnablePricingPlansForServiceSignature {
490
490
  * to add to the service's `payment.pricingPlanIds` array.
491
491
  * Maintained for backward compatibility. Use `pricing_plan_selections` for explicit benefit selection.
492
492
  */
493
- (serviceId: string, pricingPlanIds: string[]): Promise<NonNullablePaths<EnablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
493
+ (serviceId: string, pricingPlanIds: string[]): Promise<NonNullablePaths<EnablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
494
494
  __applicationErrorsType?: EnablePricingPlansForServiceApplicationErrors;
495
495
  }>;
496
496
  }
@@ -505,7 +505,7 @@ interface DisablePricingPlansForServiceSignature {
505
505
  * able to book the service, as they will have no payment options available.
506
506
  * @param - ID of the service to update.
507
507
  */
508
- (serviceId: string, options?: DisablePricingPlansForServiceOptions): Promise<NonNullablePaths<DisablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
508
+ (serviceId: string, options?: DisablePricingPlansForServiceOptions): Promise<NonNullablePaths<DisablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
509
509
  __applicationErrorsType?: DisablePricingPlansForServiceApplicationErrors;
510
510
  }>;
511
511
  }
@@ -521,7 +521,7 @@ interface SetCustomSlugSignature {
521
521
  * - Another service has used the slug in the past.
522
522
  * @param - ID of the service for which to update the active slug.
523
523
  */
524
- (serviceId: string, options?: SetCustomSlugOptions): Promise<NonNullablePaths<SetCustomSlugResponse, `slug.name` | `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
524
+ (serviceId: string, options?: SetCustomSlugOptions): Promise<NonNullablePaths<SetCustomSlugResponse, `slug.name` | `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
525
525
  __applicationErrorsType?: SetCustomSlugApplicationErrors;
526
526
  __validationErrorsType?: SetCustomSlugValidationErrors;
527
527
  }>;
@@ -597,7 +597,7 @@ interface CloneServiceSignature {
597
597
  * after cloning the service, customers will be unable to book the service.
598
598
  * @param - ID of the service to clone.
599
599
  */
600
- (sourceServiceId: string): Promise<NonNullablePaths<CloneServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType` | `errors`, 7>>;
600
+ (sourceServiceId: string): Promise<NonNullablePaths<CloneServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType` | `errors`, 7>>;
601
601
  }
602
602
  declare function createAddOnGroup$1(httpClient: HttpClient): CreateAddOnGroupSignature;
603
603
  interface CreateAddOnGroupSignature {
@@ -723,4 +723,4 @@ declare const onServiceDeleted: BuildEventDefinition<typeof onServiceDeleted$1>
723
723
  */
724
724
  declare const onServiceUpdated: BuildEventDefinition<typeof onServiceUpdated$1> & typeof onServiceUpdated$1;
725
725
 
726
- export { AddOnGroup, BulkCreateServicesOptions, BulkCreateServicesResponse, BulkDeleteServicesByFilterOptions, BulkDeleteServicesByFilterResponse, BulkDeleteServicesOptions, BulkDeleteServicesResponse, BulkUpdateServicesByFilterOptions, BulkUpdateServicesByFilterResponse, BulkUpdateServicesOptions, BulkUpdateServicesResponse, CloneServiceResponse, CountServicesOptions, CountServicesResponse, CreateAddOnGroupApplicationErrors, CreateAddOnGroupOptions, CreateAddOnGroupResponse, CreateServiceValidationErrors, CursorQuery, DeleteAddOnGroupApplicationErrors, DeleteAddOnGroupOptions, DeleteServiceOptions, DisablePricingPlansForServiceApplicationErrors, DisablePricingPlansForServiceOptions, DisablePricingPlansForServiceResponse, EnablePricingPlansForServiceApplicationErrors, EnablePricingPlansForServiceResponse, ListAddOnGroupsByServiceIdOptions, ListAddOnGroupsByServiceIdResponse, QueryBookingFormsApplicationErrors, QueryBookingFormsOptions, QueryBookingFormsResponse, QueryCategoriesOptions, QueryCategoriesResponse, QueryLocationsOptions, QueryLocationsResponse, QueryPoliciesResponse, QueryServicesOptions, SearchServicesResponse, Service, ServiceCreatedEnvelope, ServiceDeletedEnvelope, ServiceQuery, ServiceSearch, ServiceUpdatedEnvelope, ServicesQueryBuilder, SetAddOnsForGroupApplicationErrors, SetAddOnsForGroupOptions, SetAddOnsForGroupResponse, SetCustomSlugApplicationErrors, SetCustomSlugOptions, SetCustomSlugResponse, SetCustomSlugValidationErrors, SetServiceLocationsOptions, SetServiceLocationsResponse, UpdateAddOnGroupApplicationErrors, UpdateAddOnGroupOptions, UpdateAddOnGroupResponse, UpdateService, UpdateServiceValidationErrors, ValidateSlugOptions, ValidateSlugResponse, bulkCreateServices, bulkDeleteServices, bulkDeleteServicesByFilter, bulkUpdateServices, bulkUpdateServicesByFilter, cloneService, countServices, createAddOnGroup, createService, deleteAddOnGroup, deleteService, disablePricingPlansForService, enablePricingPlansForService, getService, listAddOnGroupsByServiceId, onServiceCreated, onServiceDeleted, onServiceUpdated, queryBookingForms, queryCategories, queryLocations, queryPolicies, queryServices, searchServices, setAddOnsForGroup, setCustomSlug, setServiceLocations, updateAddOnGroup, updateService, validateSlug };
726
+ export { AddOnGroup, BulkCreateServicesOptions, BulkCreateServicesResponse, BulkDeleteServicesByFilterOptions, BulkDeleteServicesByFilterResponse, BulkDeleteServicesOptions, BulkDeleteServicesResponse, BulkUpdateServicesByFilterOptions, BulkUpdateServicesByFilterResponse, BulkUpdateServicesOptions, BulkUpdateServicesResponse, CloneServiceResponse, CountServicesOptions, CountServicesResponse, CreateAddOnGroupApplicationErrors, CreateAddOnGroupOptions, CreateAddOnGroupResponse, CreateServiceValidationErrors, CursorQuery, DeleteAddOnGroupApplicationErrors, DeleteAddOnGroupOptions, DeleteServiceOptions, DisablePricingPlansForServiceApplicationErrors, DisablePricingPlansForServiceOptions, DisablePricingPlansForServiceResponse, EnablePricingPlansForServiceApplicationErrors, EnablePricingPlansForServiceResponse, GetServiceOptions, ListAddOnGroupsByServiceIdOptions, ListAddOnGroupsByServiceIdResponse, QueryBookingFormsApplicationErrors, QueryBookingFormsOptions, QueryBookingFormsResponse, QueryCategoriesOptions, QueryCategoriesResponse, QueryLocationsOptions, QueryLocationsResponse, QueryPoliciesResponse, QueryServicesOptions, SearchServicesResponse, Service, ServiceCreatedEnvelope, ServiceDeletedEnvelope, ServiceQuery, ServiceSearch, ServiceUpdatedEnvelope, ServicesQueryBuilder, SetAddOnsForGroupApplicationErrors, SetAddOnsForGroupOptions, SetAddOnsForGroupResponse, SetCustomSlugApplicationErrors, SetCustomSlugOptions, SetCustomSlugResponse, SetCustomSlugValidationErrors, SetServiceLocationsOptions, SetServiceLocationsResponse, UpdateAddOnGroupApplicationErrors, UpdateAddOnGroupOptions, UpdateAddOnGroupResponse, UpdateService, UpdateServiceValidationErrors, ValidateSlugOptions, ValidateSlugResponse, bulkCreateServices, bulkDeleteServices, bulkDeleteServicesByFilter, bulkUpdateServices, bulkUpdateServicesByFilter, cloneService, countServices, createAddOnGroup, createService, deleteAddOnGroup, deleteService, disablePricingPlansForService, enablePricingPlansForService, getService, listAddOnGroupsByServiceId, onServiceCreated, onServiceDeleted, onServiceUpdated, queryBookingForms, queryCategories, queryLocations, queryPolicies, queryServices, searchServices, setAddOnsForGroup, setCustomSlug, setServiceLocations, updateAddOnGroup, updateService, validateSlug };