@wix/auto_sdk_bookings_services 1.0.211 → 1.0.213

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 (29) hide show
  1. package/build/{internal/cjs/bookings-services-v2-service-services.universal-BvAL2_h8.d.ts → cjs/bookings-services-v2-service-services.universal-JbsjUAQx.d.ts} +21 -33
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +13 -4
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/{internal/es/bookings-services-v2-service-services.universal-BvAL2_h8.d.mts → es/bookings-services-v2-service-services.universal-JbsjUAQx.d.mts} +21 -33
  9. package/build/es/index.d.mts +2 -2
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/index.typings.d.mts +2 -2
  12. package/build/es/index.typings.mjs.map +1 -1
  13. package/build/es/meta.d.mts +13 -4
  14. package/build/es/meta.mjs.map +1 -1
  15. package/build/{cjs/bookings-services-v2-service-services.universal-D44Nv7yN.d.ts → internal/cjs/bookings-services-v2-service-services.universal-CRQyPesm.d.ts} +48 -6
  16. package/build/internal/cjs/index.d.ts +2 -2
  17. package/build/internal/cjs/index.js.map +1 -1
  18. package/build/internal/cjs/index.typings.d.ts +2 -2
  19. package/build/internal/cjs/index.typings.js.map +1 -1
  20. package/build/internal/cjs/meta.d.ts +13 -4
  21. package/build/internal/cjs/meta.js.map +1 -1
  22. package/build/{es/bookings-services-v2-service-services.universal-D44Nv7yN.d.mts → internal/es/bookings-services-v2-service-services.universal-CRQyPesm.d.mts} +48 -6
  23. package/build/internal/es/index.d.mts +2 -2
  24. package/build/internal/es/index.mjs.map +1 -1
  25. package/build/internal/es/index.typings.d.mts +2 -2
  26. package/build/internal/es/index.typings.mjs.map +1 -1
  27. package/build/internal/es/meta.d.mts +13 -4
  28. package/build/internal/es/meta.mjs.map +1 -1
  29. package/package.json +2 -2
@@ -101,9 +101,15 @@ interface Service {
101
101
  */
102
102
  schedule?: Schedule;
103
103
  /**
104
- * IDs of the [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) that are associated with the [staff members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction) providing the service.
105
- * Note that these are the resources IDs, not the staff member IDs.
106
- * Available only for appointment-based services.
104
+ * IDs of the [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) associated with the [staff members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction) providing the service.
105
+ * Note that these are the resource IDs, not the staff member IDs.
106
+ *
107
+ * For appointment-based services, set this field when creating or updating the service.
108
+ * For classes and courses, this field is read-only and is automatically derived from staff assigned to the service's recurring scheduled sessions.
109
+ * Staff assigned only to single, non-recurring events are not included.
110
+ * Once all of a staff member's upcoming recurring sessions have ended, their ID is removed from this field.
111
+ * To retrieve the full list of staff for classes or courses, query the service's calendar events instead.
112
+ * Learn more about [retrieving staff for classes and courses](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/sample-flows#retrieve-staff-members-for-a-class-or-course).
107
113
  * @maxSize 220
108
114
  * @format GUID
109
115
  */
@@ -248,6 +254,13 @@ interface Payment extends PaymentRateOneOf {
248
254
  * Required when: `rateType` is `VARIED`
249
255
  */
250
256
  varied?: VariedPayment;
257
+ /**
258
+ * The details for the subscription pricing of the service.
259
+ *
260
+ * Required when: `rateType` is `SUBSCRIPTION`
261
+ * @internal
262
+ */
263
+ subscription?: SubscriptionPayment;
251
264
  /** The rate the customer is expected to pay for the service. */
252
265
  rateType?: RateTypeWithLiterals;
253
266
  /** The payment options a customer can use to pay for the service. */
@@ -265,6 +278,19 @@ interface Payment extends PaymentRateOneOf {
265
278
  * If customers pay for the booking using any method other than a pricing plan, the value of this field is ignored.
266
279
  */
267
280
  addOnOption?: AddOnPaymentOptionsWithLiterals;
281
+ /**
282
+ * Estimated discount information for the service based on active [eCommerce discounts](https://dev.wix.com/docs/rest/business-solutions/e-commerce/extensions/discounts/introduction).
283
+ * The final discount is determined during eCommerce checkout and may differ from the estimate,
284
+ * for example when discounts depend on cart totals.
285
+ *
286
+ * A discount is considered active when its start time has passed and its end time hasn't.
287
+ * If multiple active discounts apply, the most recently created one is returned.
288
+ *
289
+ * Returned only when `DISCOUNT_INFO_DETAILS` is requested.
290
+ * @internal
291
+ * @readonly
292
+ */
293
+ discountInfo?: DiscountInfo;
268
294
  }
269
295
  /** @oneof */
270
296
  interface PaymentRateOneOf {
@@ -287,6 +313,13 @@ interface PaymentRateOneOf {
287
313
  * Required when: `rateType` is `VARIED`
288
314
  */
289
315
  varied?: VariedPayment;
316
+ /**
317
+ * The details for the subscription pricing of the service.
318
+ *
319
+ * Required when: `rateType` is `SUBSCRIPTION`
320
+ * @internal
321
+ */
322
+ subscription?: SubscriptionPayment;
290
323
  }
291
324
  declare enum RateType {
292
325
  /** The service has a fixed price. */
@@ -1184,6 +1217,9 @@ interface V2Duration {
1184
1217
  interface StaffMember {
1185
1218
  /**
1186
1219
  * ID of the [resource](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) associated with the staff member providing the service.
1220
+ * Despite the field name, this is the resource ID, not the staff member ID.
1221
+ * This value matches the staff member's `resourceId` from the [Staff Members API](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction)
1222
+ * and corresponds to the IDs in the service's `staffMemberIds` field.
1187
1223
  * @format GUID
1188
1224
  * @readonly
1189
1225
  */
@@ -5127,9 +5163,15 @@ interface UpdateService {
5127
5163
  */
5128
5164
  schedule?: Schedule;
5129
5165
  /**
5130
- * IDs of the [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) that are associated with the [staff members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction) providing the service.
5131
- * Note that these are the resources IDs, not the staff member IDs.
5132
- * Available only for appointment-based services.
5166
+ * IDs of the [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) associated with the [staff members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction) providing the service.
5167
+ * Note that these are the resource IDs, not the staff member IDs.
5168
+ *
5169
+ * For appointment-based services, set this field when creating or updating the service.
5170
+ * For classes and courses, this field is read-only and is automatically derived from staff assigned to the service's recurring scheduled sessions.
5171
+ * Staff assigned only to single, non-recurring events are not included.
5172
+ * Once all of a staff member's upcoming recurring sessions have ended, their ID is removed from this field.
5173
+ * To retrieve the full list of staff for classes or courses, query the service's calendar events instead.
5174
+ * Learn more about [retrieving staff for classes and courses](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/sample-flows#retrieve-staff-members-for-a-class-or-course).
5133
5175
  * @maxSize 220
5134
5176
  * @format GUID
5135
5177
  */
@@ -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 DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-BvAL2_h8.mjs';
3
- export { cz as AccountInfo, eW as AccountInfoMetadata, aG as Action, cv as ActionEvent, fx as ActionWithLiterals, as as Actor, fj as ActorWithLiterals, eQ as AddOn, eR as AddOnAddOnInfoOneOf, bR as AddOnDetails, eS as AddOnGroupDetail, ac as AddOnPaymentOptions, f3 as AddOnPaymentOptionsWithLiterals, c7 as Address, ex as AddressHint, ca as AddressLocation, c8 as AddressStreetOneOf, da as Aggregation, dr as AggregationData, db as AggregationKindOneOf, dM as AggregationResults, dN as AggregationResultsResultOneOf, dL as AggregationResultsScalarDateResult, dy as AggregationResultsScalarResult, aD as AggregationType, fu as AggregationTypeWithLiterals, cI as ApplicationError, bz as AvailabilityConstraints, eU as BaseEventMetadata, em as Behavior, en as BehaviorBehaviorOneOf, ei as Benefit, eh as BenefitNotification, aL as BenefitType, fC as BenefitTypeWithLiterals, bj as BookAfterStartPolicy, co as BookedAddOn, b_ as BookedEntity, b$ as BookedEntityItemOneOf, c1 as BookedResource, c5 as BookedSchedule, c0 as BookedSlot, bY as Booking, dS as BookingForm, bZ as BookingParticipantsInfoOneOf, bf as BookingPolicy, dQ as BookingPolicyWithServices, cd as BookingSource, ao as BookingStatus, ff as BookingStatusWithLiterals, cJ as BulkActionMetadata, cF as BulkCreateServicesRequest, cZ as BulkDeleteServicesByFilterRequest, cY as BulkDeleteServicesRequest, cG as BulkServiceResult, cU as BulkUpdateServicesByFilterRequest, cS as BulkUpdateServicesRequest, bd as BusinessLocationOptions, dY as BusinessLocations, ez as BusinessSchedule, bp as CancellationFeePolicy, bk as CancellationPolicy, bq as CancellationWindow, br as CancellationWindowFeeOneOf, eu as Categories, ef as Category, ee as CategoryNotification, aK as CategoryNotificationEvent, fB as CategoryNotificationEventWithLiterals, eG as ChangeContext, eH as ChangeContextPayloadOneOf, aI as CloneErrors, fz as CloneErrorsWithLiterals, ed as CloneServiceRequest, b9 as CommonAddress, bc as CommonAddressLocation, ba as CommonAddressStreetOneOf, cf as CommonIdentificationData, cg as CommonIdentificationDataIdOneOf, fI as CommonQueryWithEntityContext, fJ as CommonSearchWithEntityContext, bb as CommonStreetAddress, ah as CompletionRequirement, f8 as CompletionRequirementWithLiterals, b6 as Conferencing, dU as ConnectedService, eE as ConsentPolicy, c6 as ContactDetails, dV as CountServicesRequest, eL as CreateAddOnGroupRequest, cA as CreateServiceRequest, cB as CreateServiceResponse, aN as CrudType, fE as CrudTypeWithLiterals, d3 as CursorPaging, dq as CursorPagingMetadata, dP as CursorQueryPagingMethodOneOf, d8 as CursorSearch, d9 as CursorSearchPagingMethodOneOf, d6 as Cursors, cc as CustomFormField, be as CustomLocationOptions, dZ as CustomLocations, bw as CustomOptions, a$ as CustomPayment, d_ as CustomerLocations, di as DateHistogramAggregation, dH as DateHistogramResult, dJ as DateHistogramResults, aP as DayOfWeek, fG as DayOfWeekWithLiterals, eM as DeleteAddOnGroupRequest, eN as DeleteAddOnGroupResponse, cV as DeleteServiceRequest, cX as DeleteServiceResponse, ea as DisablePricingPlansForServiceRequest, ek as Discount, el as DiscountDiscountOneOf, b4 as DiscountInfo, cp as DomainEvent, cq as DomainEventBodyOneOf, bW as DummyRequest, bX as DummyResponse, cm as Duration, eg as Empty, e7 as EnablePricingPlansForServiceRequest, cr as EntityCreatedEvent, cu as EntityDeletedEvent, ct as EntityUpdatedEvent, ej as EntryPass, aM as Event, eV as EventMetadata, fD as EventWithLiterals, bM as ExtendedFields, cE as FieldViolation, ab as FirstChargeDateType, f2 as FirstChargeDateTypeWithLiterals, aZ as FixedPayment, ch as FlowControlSettings, aV as Form, dT as FormDetails, aW as FormSettings, aa as FrequencyType, f1 as FrequencyTypeWithLiterals, b2 as FullUpfrontPayment, ey as GeoCoordinates, cM as GetServiceAvailabilityConstraintsRequest, cN as GetServiceAvailabilityConstraintsResponse, cK as GetServiceRequest, cL as GetServiceResponse, dm as GroupByAggregation, dn as GroupByAggregationKindOneOf, dI as GroupByValueResults, ep as HtmlSitePublished, cx as IdentificationData, cy as IdentificationDataIdOneOf, at as IdentityType, fk as IdentityTypeWithLiterals, dd as IncludeMissingValuesOptions, bx as IntakeFormPolicy, aC as Interval, ft as IntervalWithLiterals, e9 as InvalidPricingPlan, aH as InvalidSlugError, fy as InvalidSlugErrorWithLiterals, cH as ItemMetadata, bO as Keyword, bh as LimitEarlyBookingPolicy, bi as LimitLateBookingPolicy, eP as ListAddOnGroupsByServiceIdRequest, ev as Locale, c2 as Location, al as LocationType, ad as LocationTypeEnumLocationType, f4 as LocationTypeEnumLocationTypeWithLiterals, fc as LocationTypeWithLiterals, cT as MaskedService, aR as Media, aS as MediaItem, aT as MediaItemItemOneOf, cw as MessageEnvelope, az as MissingValues, fq as MissingValuesWithLiterals, aE as Mode, fv as ModeWithLiterals, a_ as Money, e6 as MoveToNewLocationsOptions, cn as MultiServiceBookingInfo, aj as MultiServiceBookingType, fa as MultiServiceBookingTypeWithLiterals, eC as Multilingual, dl as NestedAggregation, dj as NestedAggregationItem, dk as NestedAggregationItemKindOneOf, du as NestedAggregationResults, dv as NestedAggregationResultsResultOneOf, aB as NestedAggregationType, fs as NestedAggregationTypeWithLiterals, dE as NestedResultValue, dF as NestedResultValueResultOneOf, dK as NestedResults, dz as NestedValueAggregationResult, b5 as OnlineBooking, eq as Page, d2 as Paging, d5 as PagingMetadataV2, ci as ParticipantChoices, ce as ParticipantNotification, bn as ParticipantsPolicy, aX as Payment, b3 as PaymentOptions, aY as PaymentRateOneOf, ap as PaymentStatus, fg as PaymentStatusWithLiterals, c3 as PhoneCall, aO as PlacementType, fF as PlacementTypeWithLiterals, ar as Platform, fi as PlatformWithLiterals, bg as PolicyDescription, e8 as PricingPlanSelection, et as Properties, eI as PropertiesChange, dR as QueryBookingFormsRequest, e0 as QueryCategoriesFilter, d$ as QueryCategoriesRequest, dX as QueryLocationsFilter, dW as QueryLocationsRequest, dO as QueryPoliciesRequest, e1 as QueryServicesMultiLanguageRequest, e2 as QueryServicesMultiLanguageResponse, c_ as QueryServicesRequest, d4 as QueryServicesResponse, c$ as QueryV2, d0 as QueryV2PagingMethodOneOf, dg as RangeAggregation, dt as RangeAggregationResult, dc as RangeBucket, dB as RangeResult, dx as RangeResults, bv as RankingOptions, ae as RankingOrder, f5 as RankingOrderWithLiterals, a9 as RateType, f0 as RateTypeWithLiterals, e4 as RemovedLocationSessionsAction, e5 as RemovedLocationSessionsActionActionOptionsOneOf, aF as RequestedFields, fw as RequestedFieldsWithLiterals, bl as ReschedulePolicy, aQ as ResolutionMethod, fH as ResolutionMethodWithLiterals, bF as ResourceGroup, bG as ResourceIds, c4 as ResourceSelection, ak as ResourceTransparency, fb as ResourceTransparencyWithLiterals, bJ as ResourceType, bo as ResourcesPolicy, cs as RestoreInfo, dG as Results, bs as SaveCreditCardPolicy, dh as ScalarAggregation, dD as ScalarDateResult, dC as ScalarResult, aA as ScalarType, fr as ScalarTypeWithLiterals, by as Schedule, dp as SearchDetails, d7 as SearchServicesRequest, aq as SelectedPaymentOption, fh as SelectedPaymentOptionWithLiterals, am as SelectionMethod, fd as SelectionMethodWithLiterals, bN as SeoSchema, cO as ServiceAvailabilityConstraints, ck as ServiceChoice, cl as ServiceChoiceChoiceOneOf, cj as ServiceChoices, eY as ServiceQuerySpec, bH as ServiceResource, bI as ServiceResourceSelectionOneOf, eZ as ServiceSearchSpec, a8 as ServiceType, e$ as ServiceTypeWithLiterals, eX as ServicesQueryResult, bV as ServicesUrlsChanged, eT as SetAddOnsForGroupRequest, bU as SetCustomSlugEvent, eb as SetCustomSlugRequest, e3 as SetServiceLocationsRequest, bQ as Settings, eK as SiteCloned, eJ as SiteCreated, es as SitePropertiesEvent, er as SitePropertiesNotification, bK as Slug, ay as SortDirection, fp as SortDirectionWithLiterals, aw as SortOrder, fn as SortOrderWithLiterals, ax as SortType, fo as SortTypeWithLiterals, d1 as Sorting, af as SortingMethodType, f6 as SortingMethodTypeWithLiterals, eB as SpecialHourPeriod, cP as SplitInterval, bC as StaffMediaItem, bD as StaffMediaItemItemOneOf, bB as StaffMember, bE as StaffMemberDetails, bt as StaffSortingPolicy, bu as StaffSortingPolicyOptionsOneOf, aJ as Status, fA as StatusWithLiterals, c9 as StreetAddress, cb as Subdivision, b1 as SubscriptionPayment, eD as SupportedLanguage, bP as Tag, bS as TaxableAddress, ai as TaxableAddressType, f9 as TaxableAddressTypeWithLiterals, eA as TimePeriod, ag as Timing, f7 as TimingWithLiterals, eF as Translation, bL as URLs, eO as UpdateAddOnGroupRequest, cQ as UpdateServiceRequest, cR as UpdateServiceResponse, eo as UserDomainInfoChangedEvent, aU as V2Category, bA as V2Duration, b7 as V2Location, b8 as V2LocationOptionsOneOf, cW as V2ParticipantNotification, bT as V2PhoneCall, av as V2RequestedFields, fm as V2RequestedFieldsWithLiterals, ew as V4Address, cC as ValidateServiceRequest, cD as ValidateServiceResponse, ec as ValidateSlugRequest, de as ValueAggregation, df as ValueAggregationOptionsOneOf, ds as ValueAggregationResult, dA as ValueResult, dw as ValueResults, an as ValueType, fe as ValueTypeWithLiterals, b0 as VariedPayment, bm as WaitlistPolicy, au as WebhookIdentityType, fl as WebhookIdentityTypeWithLiterals, e_ as utils } from './bookings-services-v2-service-services.universal-BvAL2_h8.mjs';
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 DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-CRQyPesm.mjs';
3
+ export { cz as AccountInfo, eW as AccountInfoMetadata, aG as Action, cv as ActionEvent, fx as ActionWithLiterals, as as Actor, fj as ActorWithLiterals, eQ as AddOn, eR as AddOnAddOnInfoOneOf, bR as AddOnDetails, eS as AddOnGroupDetail, ac as AddOnPaymentOptions, f3 as AddOnPaymentOptionsWithLiterals, c7 as Address, ex as AddressHint, ca as AddressLocation, c8 as AddressStreetOneOf, da as Aggregation, dr as AggregationData, db as AggregationKindOneOf, dM as AggregationResults, dN as AggregationResultsResultOneOf, dL as AggregationResultsScalarDateResult, dy as AggregationResultsScalarResult, aD as AggregationType, fu as AggregationTypeWithLiterals, cI as ApplicationError, bz as AvailabilityConstraints, eU as BaseEventMetadata, em as Behavior, en as BehaviorBehaviorOneOf, ei as Benefit, eh as BenefitNotification, aL as BenefitType, fC as BenefitTypeWithLiterals, bj as BookAfterStartPolicy, co as BookedAddOn, b_ as BookedEntity, b$ as BookedEntityItemOneOf, c1 as BookedResource, c5 as BookedSchedule, c0 as BookedSlot, bY as Booking, dS as BookingForm, bZ as BookingParticipantsInfoOneOf, bf as BookingPolicy, dQ as BookingPolicyWithServices, cd as BookingSource, ao as BookingStatus, ff as BookingStatusWithLiterals, cJ as BulkActionMetadata, cF as BulkCreateServicesRequest, cZ as BulkDeleteServicesByFilterRequest, cY as BulkDeleteServicesRequest, cG as BulkServiceResult, cU as BulkUpdateServicesByFilterRequest, cS as BulkUpdateServicesRequest, bd as BusinessLocationOptions, dY as BusinessLocations, ez as BusinessSchedule, bp as CancellationFeePolicy, bk as CancellationPolicy, bq as CancellationWindow, br as CancellationWindowFeeOneOf, eu as Categories, ef as Category, ee as CategoryNotification, aK as CategoryNotificationEvent, fB as CategoryNotificationEventWithLiterals, eG as ChangeContext, eH as ChangeContextPayloadOneOf, aI as CloneErrors, fz as CloneErrorsWithLiterals, ed as CloneServiceRequest, b9 as CommonAddress, bc as CommonAddressLocation, ba as CommonAddressStreetOneOf, cf as CommonIdentificationData, cg as CommonIdentificationDataIdOneOf, fI as CommonQueryWithEntityContext, fJ as CommonSearchWithEntityContext, bb as CommonStreetAddress, ah as CompletionRequirement, f8 as CompletionRequirementWithLiterals, b6 as Conferencing, dU as ConnectedService, eE as ConsentPolicy, c6 as ContactDetails, dV as CountServicesRequest, eL as CreateAddOnGroupRequest, cA as CreateServiceRequest, cB as CreateServiceResponse, aN as CrudType, fE as CrudTypeWithLiterals, d3 as CursorPaging, dq as CursorPagingMetadata, dP as CursorQueryPagingMethodOneOf, d8 as CursorSearch, d9 as CursorSearchPagingMethodOneOf, d6 as Cursors, cc as CustomFormField, be as CustomLocationOptions, dZ as CustomLocations, bw as CustomOptions, a$ as CustomPayment, d_ as CustomerLocations, di as DateHistogramAggregation, dH as DateHistogramResult, dJ as DateHistogramResults, aP as DayOfWeek, fG as DayOfWeekWithLiterals, eM as DeleteAddOnGroupRequest, eN as DeleteAddOnGroupResponse, cV as DeleteServiceRequest, cX as DeleteServiceResponse, ea as DisablePricingPlansForServiceRequest, ek as Discount, el as DiscountDiscountOneOf, b4 as DiscountInfo, cp as DomainEvent, cq as DomainEventBodyOneOf, bW as DummyRequest, bX as DummyResponse, cm as Duration, eg as Empty, e7 as EnablePricingPlansForServiceRequest, cr as EntityCreatedEvent, cu as EntityDeletedEvent, ct as EntityUpdatedEvent, ej as EntryPass, aM as Event, eV as EventMetadata, fD as EventWithLiterals, bM as ExtendedFields, cE as FieldViolation, ab as FirstChargeDateType, f2 as FirstChargeDateTypeWithLiterals, aZ as FixedPayment, ch as FlowControlSettings, aV as Form, dT as FormDetails, aW as FormSettings, aa as FrequencyType, f1 as FrequencyTypeWithLiterals, b2 as FullUpfrontPayment, ey as GeoCoordinates, cM as GetServiceAvailabilityConstraintsRequest, cN as GetServiceAvailabilityConstraintsResponse, cK as GetServiceRequest, cL as GetServiceResponse, dm as GroupByAggregation, dn as GroupByAggregationKindOneOf, dI as GroupByValueResults, ep as HtmlSitePublished, cx as IdentificationData, cy as IdentificationDataIdOneOf, at as IdentityType, fk as IdentityTypeWithLiterals, dd as IncludeMissingValuesOptions, bx as IntakeFormPolicy, aC as Interval, ft as IntervalWithLiterals, e9 as InvalidPricingPlan, aH as InvalidSlugError, fy as InvalidSlugErrorWithLiterals, cH as ItemMetadata, bO as Keyword, bh as LimitEarlyBookingPolicy, bi as LimitLateBookingPolicy, eP as ListAddOnGroupsByServiceIdRequest, ev as Locale, c2 as Location, al as LocationType, ad as LocationTypeEnumLocationType, f4 as LocationTypeEnumLocationTypeWithLiterals, fc as LocationTypeWithLiterals, cT as MaskedService, aR as Media, aS as MediaItem, aT as MediaItemItemOneOf, cw as MessageEnvelope, az as MissingValues, fq as MissingValuesWithLiterals, aE as Mode, fv as ModeWithLiterals, a_ as Money, e6 as MoveToNewLocationsOptions, cn as MultiServiceBookingInfo, aj as MultiServiceBookingType, fa as MultiServiceBookingTypeWithLiterals, eC as Multilingual, dl as NestedAggregation, dj as NestedAggregationItem, dk as NestedAggregationItemKindOneOf, du as NestedAggregationResults, dv as NestedAggregationResultsResultOneOf, aB as NestedAggregationType, fs as NestedAggregationTypeWithLiterals, dE as NestedResultValue, dF as NestedResultValueResultOneOf, dK as NestedResults, dz as NestedValueAggregationResult, b5 as OnlineBooking, eq as Page, d2 as Paging, d5 as PagingMetadataV2, ci as ParticipantChoices, ce as ParticipantNotification, bn as ParticipantsPolicy, aX as Payment, b3 as PaymentOptions, aY as PaymentRateOneOf, ap as PaymentStatus, fg as PaymentStatusWithLiterals, c3 as PhoneCall, aO as PlacementType, fF as PlacementTypeWithLiterals, ar as Platform, fi as PlatformWithLiterals, bg as PolicyDescription, e8 as PricingPlanSelection, et as Properties, eI as PropertiesChange, dR as QueryBookingFormsRequest, e0 as QueryCategoriesFilter, d$ as QueryCategoriesRequest, dX as QueryLocationsFilter, dW as QueryLocationsRequest, dO as QueryPoliciesRequest, e1 as QueryServicesMultiLanguageRequest, e2 as QueryServicesMultiLanguageResponse, c_ as QueryServicesRequest, d4 as QueryServicesResponse, c$ as QueryV2, d0 as QueryV2PagingMethodOneOf, dg as RangeAggregation, dt as RangeAggregationResult, dc as RangeBucket, dB as RangeResult, dx as RangeResults, bv as RankingOptions, ae as RankingOrder, f5 as RankingOrderWithLiterals, a9 as RateType, f0 as RateTypeWithLiterals, e4 as RemovedLocationSessionsAction, e5 as RemovedLocationSessionsActionActionOptionsOneOf, aF as RequestedFields, fw as RequestedFieldsWithLiterals, bl as ReschedulePolicy, aQ as ResolutionMethod, fH as ResolutionMethodWithLiterals, bF as ResourceGroup, bG as ResourceIds, c4 as ResourceSelection, ak as ResourceTransparency, fb as ResourceTransparencyWithLiterals, bJ as ResourceType, bo as ResourcesPolicy, cs as RestoreInfo, dG as Results, bs as SaveCreditCardPolicy, dh as ScalarAggregation, dD as ScalarDateResult, dC as ScalarResult, aA as ScalarType, fr as ScalarTypeWithLiterals, by as Schedule, dp as SearchDetails, d7 as SearchServicesRequest, aq as SelectedPaymentOption, fh as SelectedPaymentOptionWithLiterals, am as SelectionMethod, fd as SelectionMethodWithLiterals, bN as SeoSchema, cO as ServiceAvailabilityConstraints, ck as ServiceChoice, cl as ServiceChoiceChoiceOneOf, cj as ServiceChoices, eY as ServiceQuerySpec, bH as ServiceResource, bI as ServiceResourceSelectionOneOf, eZ as ServiceSearchSpec, a8 as ServiceType, e$ as ServiceTypeWithLiterals, eX as ServicesQueryResult, bV as ServicesUrlsChanged, eT as SetAddOnsForGroupRequest, bU as SetCustomSlugEvent, eb as SetCustomSlugRequest, e3 as SetServiceLocationsRequest, bQ as Settings, eK as SiteCloned, eJ as SiteCreated, es as SitePropertiesEvent, er as SitePropertiesNotification, bK as Slug, ay as SortDirection, fp as SortDirectionWithLiterals, aw as SortOrder, fn as SortOrderWithLiterals, ax as SortType, fo as SortTypeWithLiterals, d1 as Sorting, af as SortingMethodType, f6 as SortingMethodTypeWithLiterals, eB as SpecialHourPeriod, cP as SplitInterval, bC as StaffMediaItem, bD as StaffMediaItemItemOneOf, bB as StaffMember, bE as StaffMemberDetails, bt as StaffSortingPolicy, bu as StaffSortingPolicyOptionsOneOf, aJ as Status, fA as StatusWithLiterals, c9 as StreetAddress, cb as Subdivision, b1 as SubscriptionPayment, eD as SupportedLanguage, bP as Tag, bS as TaxableAddress, ai as TaxableAddressType, f9 as TaxableAddressTypeWithLiterals, eA as TimePeriod, ag as Timing, f7 as TimingWithLiterals, eF as Translation, bL as URLs, eO as UpdateAddOnGroupRequest, cQ as UpdateServiceRequest, cR as UpdateServiceResponse, eo as UserDomainInfoChangedEvent, aU as V2Category, bA as V2Duration, b7 as V2Location, b8 as V2LocationOptionsOneOf, cW as V2ParticipantNotification, bT as V2PhoneCall, av as V2RequestedFields, fm as V2RequestedFieldsWithLiterals, ew as V4Address, cC as ValidateServiceRequest, cD as ValidateServiceResponse, ec as ValidateSlugRequest, de as ValueAggregation, df as ValueAggregationOptionsOneOf, ds as ValueAggregationResult, dA as ValueResult, dw as ValueResults, an as ValueType, fe as ValueTypeWithLiterals, b0 as VariedPayment, bm as WaitlistPolicy, au as WebhookIdentityType, fl as WebhookIdentityTypeWithLiterals, e_ as utils } from './bookings-services-v2-service-services.universal-CRQyPesm.mjs';
4
4
 
5
5
  declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
6
6
  interface CreateServiceSignature {