@wix/auto_sdk_bookings_services 1.0.221 → 1.0.222

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/{internal/cjs/bookings-services-v2-service-services.universal-CCfmktJC.d.ts → cjs/bookings-services-v2-service-services.universal-l7BbSl1o.d.ts} +23 -21
  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 +23 -7
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/cjs/schemas.js +19 -19
  9. package/build/cjs/schemas.js.map +1 -1
  10. package/build/{internal/es/bookings-services-v2-service-services.universal-CCfmktJC.d.mts → es/bookings-services-v2-service-services.universal-l7BbSl1o.d.mts} +23 -21
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +2 -2
  14. package/build/es/index.typings.mjs.map +1 -1
  15. package/build/es/meta.d.mts +23 -7
  16. package/build/es/meta.mjs.map +1 -1
  17. package/build/es/schemas.mjs +19 -19
  18. package/build/es/schemas.mjs.map +1 -1
  19. package/build/{cjs/bookings-services-v2-service-services.universal-_bWigLGM.d.ts → internal/cjs/bookings-services-v2-service-services.universal-BMZMMohJ.d.ts} +37 -7
  20. package/build/internal/cjs/index.d.ts +2 -2
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +2 -2
  23. package/build/internal/cjs/index.typings.js.map +1 -1
  24. package/build/internal/cjs/meta.d.ts +23 -7
  25. package/build/internal/cjs/meta.js.map +1 -1
  26. package/build/internal/cjs/schemas.js +19 -19
  27. package/build/internal/cjs/schemas.js.map +1 -1
  28. package/build/{es/bookings-services-v2-service-services.universal-_bWigLGM.d.mts → internal/es/bookings-services-v2-service-services.universal-BMZMMohJ.d.mts} +37 -7
  29. package/build/internal/es/index.d.mts +2 -2
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +2 -2
  32. package/build/internal/es/index.typings.mjs.map +1 -1
  33. package/build/internal/es/meta.d.mts +23 -7
  34. package/build/internal/es/meta.mjs.map +1 -1
  35. package/build/internal/es/schemas.mjs +19 -19
  36. package/build/internal/es/schemas.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -16,7 +16,7 @@ interface Service {
16
16
  * For services from Wix apps, the following values apply:
17
17
  * - Wix Bookings: `"13d21c63-b5ec-5912-8397-c3a5ddb27a97"`
18
18
  * - Wix Services: `"cc552162-24a4-45e0-9695-230c4931ef40"`
19
- * - Wix Meetings: `"6646a75c-2027-4f49-976c-58f3d713ed0f"`
19
+ * - Wix Meetings: `"6646a75c-2027-4f49-976c-58f3d713ed0f"`.<!-- [Scheduling Form Fields](https://dev.wix.com/docs/api-reference/business-solutions/bookings/about-scheduling-form-fields) services also use this app ID. Use `createdByAppId` to distinguish between Wix Meetings and Scheduling Form Fields services.-->
20
20
  * [Full list of apps created by Wix](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/platform/about-apps-created-by-wix).
21
21
  * <!-- TODO: Uncomment when Platform docs are published - Learn more about [app identity in the Bookings Platform](https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings-platform/app-identity-in-the-bookings-platform). -->
22
22
  * @format GUID
@@ -254,13 +254,6 @@ interface Payment extends PaymentRateOneOf {
254
254
  * Required when: `rateType` is `VARIED`
255
255
  */
256
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;
264
257
  /** The rate the customer is expected to pay for the service. */
265
258
  rateType?: RateTypeWithLiterals;
266
259
  /** The payment options a customer can use to pay for the service. */
@@ -312,13 +305,6 @@ interface PaymentRateOneOf {
312
305
  * Required when: `rateType` is `VARIED`
313
306
  */
314
307
  varied?: VariedPayment;
315
- /**
316
- * The details for the subscription pricing of the service.
317
- *
318
- * Required when: `rateType` is `SUBSCRIPTION`
319
- * @internal
320
- */
321
- subscription?: SubscriptionPayment;
322
308
  }
323
309
  declare enum RateType {
324
310
  /** The service has a fixed price. */
@@ -2195,32 +2181,48 @@ declare enum SelectedPaymentOption {
2195
2181
  /** @enumType */
2196
2182
  type SelectedPaymentOptionWithLiterals = SelectedPaymentOption | 'UNDEFINED' | 'OFFLINE' | 'ONLINE' | 'MEMBERSHIP' | 'MEMBERSHIP_OFFLINE';
2197
2183
  interface BookingSource {
2198
- /** Platform from which a booking was created. */
2184
+ /** Platform from which the booking was created. */
2199
2185
  platform?: PlatformWithLiterals;
2200
- /** Actor that created this booking. */
2186
+ /** Actor that created the booking. */
2201
2187
  actor?: ActorWithLiterals;
2202
2188
  /**
2203
- * Wix site ID of the application that created the booking.
2189
+ * ID of the app that created the booking.
2190
+ *
2191
+ * Supported values for Wix apps:
2192
+ * - Wix Bookings: `13d21c63-b5ec-5912-8397-c3a5ddb27a97`
2193
+ * - Wix Meetings: `6646a75c-2027-4f49-976c-58f3d713ed0f`
2194
+ * - Scheduling Form Fields: `3e4e322b-6d9b-4da0-9f53-e22c4a44a49e`
2195
+ *
2196
+ * When not set, the booking was created by legacy Wix Bookings before this field was introduced.
2197
+ *
2198
+ * We recommend setting this field when creating bookings so you can filter your bookings by source app later.
2204
2199
  * @format GUID
2205
- * @readonly
2206
2200
  */
2207
2201
  appDefId?: string | null;
2208
2202
  /**
2209
- * Name of the application that created the booking, as saved in Wix Developers Center at the time of booking.
2203
+ * Name of the app that created the booking, as saved in Wix Developers Center at the time of booking.
2210
2204
  * @readonly
2211
2205
  */
2212
2206
  appName?: string | null;
2213
2207
  }
2208
+ /** Platform from which the booking was created. */
2214
2209
  declare enum Platform {
2210
+ /** Platform not specified or unknown. */
2215
2211
  UNDEFINED_PLATFORM = "UNDEFINED_PLATFORM",
2212
+ /** Booking was created through a web browser. */
2216
2213
  WEB = "WEB",
2214
+ /** Booking was created through a mobile app. */
2217
2215
  MOBILE_APP = "MOBILE_APP"
2218
2216
  }
2219
2217
  /** @enumType */
2220
2218
  type PlatformWithLiterals = Platform | 'UNDEFINED_PLATFORM' | 'WEB' | 'MOBILE_APP';
2219
+ /** Actor that created the booking. */
2221
2220
  declare enum Actor {
2221
+ /** Actor not specified or unknown. */
2222
2222
  UNDEFINED_ACTOR = "UNDEFINED_ACTOR",
2223
+ /** Booking was created by a business owner or staff member on behalf of a customer. */
2223
2224
  BUSINESS = "BUSINESS",
2225
+ /** Booking was created by the customer directly. */
2224
2226
  CUSTOMER = "CUSTOMER"
2225
2227
  }
2226
2228
  /** @enumType */
@@ -5145,7 +5147,7 @@ interface UpdateService {
5145
5147
  * For services from Wix apps, the following values apply:
5146
5148
  * - Wix Bookings: `"13d21c63-b5ec-5912-8397-c3a5ddb27a97"`
5147
5149
  * - Wix Services: `"cc552162-24a4-45e0-9695-230c4931ef40"`
5148
- * - Wix Meetings: `"6646a75c-2027-4f49-976c-58f3d713ed0f"`
5150
+ * - Wix Meetings: `"6646a75c-2027-4f49-976c-58f3d713ed0f"`.<!-- [Scheduling Form Fields](https://dev.wix.com/docs/api-reference/business-solutions/bookings/about-scheduling-form-fields) services also use this app ID. Use `createdByAppId` to distinguish between Wix Meetings and Scheduling Form Fields services.-->
5149
5151
  * [Full list of apps created by Wix](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/platform/about-apps-created-by-wix).
5150
5152
  * <!-- TODO: Uncomment when Platform docs are published - Learn more about [app identity in the Bookings Platform](https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings-platform/app-identity-in-the-bookings-platform). -->
5151
5153
  * @format GUID
@@ -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-_bWigLGM.js';
3
- export { cE as AccountInfo, e$ as AccountInfoMetadata, aH as Action, cA as ActionEvent, fD as ActionWithLiterals, at as Actor, fp as ActorWithLiterals, eV as AddOn, eW as AddOnAddOnInfoOneOf, bW as AddOnDetails, eX as AddOnGroupDetail, ac as AddOnPaymentOptions, f8 as AddOnPaymentOptionsWithLiterals, cc as Address, eC as AddressHint, cf as AddressLocation, cd as AddressStreetOneOf, df as Aggregation, dw as AggregationData, dg as AggregationKindOneOf, dR as AggregationResults, dS as AggregationResultsResultOneOf, dQ as AggregationResultsScalarDateResult, dD as AggregationResultsScalarResult, aE as AggregationType, fA as AggregationTypeWithLiterals, cN as ApplicationError, bA as AvailabilityConstraints, eZ as BaseEventMetadata, er as Behavior, es as BehaviorBehaviorOneOf, en as Benefit, em as BenefitNotification, aM as BenefitType, fI as BenefitTypeWithLiterals, bk as BookAfterStartPolicy, ct as BookedAddOn, c3 as BookedEntity, c4 as BookedEntityItemOneOf, c6 as BookedResource, ca as BookedSchedule, c5 as BookedSlot, c1 as Booking, dX as BookingForm, c2 as BookingParticipantsInfoOneOf, bg as BookingPolicy, dV as BookingPolicyWithServices, ci as BookingSource, ap as BookingStatus, fl as BookingStatusWithLiterals, cO as BulkActionMetadata, cK as BulkCreateServicesRequest, d2 as BulkDeleteServicesByFilterRequest, d1 as BulkDeleteServicesRequest, cL as BulkServiceResult, cZ as BulkUpdateServicesByFilterRequest, cX as BulkUpdateServicesRequest, be as BusinessLocationOptions, e1 as BusinessLocations, eE as BusinessSchedule, bq as CancellationFeePolicy, bl as CancellationPolicy, br as CancellationWindow, bs as CancellationWindowFeeOneOf, ez as Categories, ek as Category, ej as CategoryNotification, aL as CategoryNotificationEvent, fH as CategoryNotificationEventWithLiterals, eL as ChangeContext, eM as ChangeContextPayloadOneOf, aJ as CloneErrors, fF as CloneErrorsWithLiterals, ei as CloneServiceRequest, ba as CommonAddress, bd as CommonAddressLocation, bb as CommonAddressStreetOneOf, ck as CommonIdentificationData, cl as CommonIdentificationDataIdOneOf, fO as CommonQueryWithEntityContext, fP as CommonSearchWithEntityContext, bc as CommonStreetAddress, ah as CompletionRequirement, fd as CompletionRequirementWithLiterals, b7 as Conferencing, dZ as ConnectedService, eJ as ConsentPolicy, cb as ContactDetails, d_ as CountServicesRequest, eQ as CreateAddOnGroupRequest, cF as CreateServiceRequest, cG as CreateServiceResponse, aO as CrudType, fK as CrudTypeWithLiterals, d8 as CursorPaging, dv as CursorPagingMetadata, dU as CursorQueryPagingMethodOneOf, dd as CursorSearch, de as CursorSearchPagingMethodOneOf, db as Cursors, ch as CustomFormField, bf as CustomLocationOptions, e2 as CustomLocations, bx as CustomOptions, b0 as CustomPayment, e3 as CustomerLocations, bF as DailyConfig, dn as DateHistogramAggregation, dM as DateHistogramResult, dO as DateHistogramResults, aQ as DayOfWeek, fM as DayOfWeekWithLiterals, eR as DeleteAddOnGroupRequest, eS as DeleteAddOnGroupResponse, c_ as DeleteServiceRequest, d0 as DeleteServiceResponse, ef as DisablePricingPlansForServiceRequest, ep as Discount, eq as DiscountDiscountOneOf, b5 as DiscountInfo, cu as DomainEvent, cv as DomainEventBodyOneOf, b$ as DummyRequest, c0 as DummyResponse, cr as Duration, bC as DurationRange, bD as DurationRangeConfigOneOf, el as Empty, ec as EnablePricingPlansForServiceRequest, cw as EntityCreatedEvent, cz as EntityDeletedEvent, cy as EntityUpdatedEvent, eo as EntryPass, aN as Event, e_ as EventMetadata, fJ as EventWithLiterals, bR as ExtendedFields, cJ as FieldViolation, ab as FirstChargeDateType, f7 as FirstChargeDateTypeWithLiterals, a_ as FixedPayment, cm as FlowControlSettings, aW as Form, dY as FormDetails, aX as FormSettings, aa as FrequencyType, f6 as FrequencyTypeWithLiterals, b3 as FullUpfrontPayment, eD as GeoCoordinates, cR as GetServiceAvailabilityConstraintsRequest, cS as GetServiceAvailabilityConstraintsResponse, cP as GetServiceRequest, cQ as GetServiceResponse, ds as GroupByAggregation, dt as GroupByAggregationKindOneOf, dN as GroupByValueResults, bE as HourlyConfig, eu as HtmlSitePublished, cC as IdentificationData, cD as IdentificationDataIdOneOf, au as IdentityType, fq as IdentityTypeWithLiterals, di as IncludeMissingValuesOptions, by as IntakeFormPolicy, aD as Interval, fz as IntervalWithLiterals, ee as InvalidPricingPlan, aI as InvalidSlugError, fE as InvalidSlugErrorWithLiterals, cM as ItemMetadata, bT as Keyword, bi as LimitEarlyBookingPolicy, bj as LimitLateBookingPolicy, eU as ListAddOnGroupsByServiceIdRequest, eA as Locale, c7 as Location, am as LocationType, ad as LocationTypeEnumLocationType, f9 as LocationTypeEnumLocationTypeWithLiterals, fi as LocationTypeWithLiterals, cY as MaskedService, aS as Media, aT as MediaItem, aU as MediaItemItemOneOf, cB as MessageEnvelope, aA as MissingValues, fw as MissingValuesWithLiterals, aF as Mode, fB as ModeWithLiterals, a$ as Money, eb as MoveToNewLocationsOptions, cs as MultiServiceBookingInfo, ak as MultiServiceBookingType, fg as MultiServiceBookingTypeWithLiterals, eH as Multilingual, dr as NestedAggregation, dp as NestedAggregationItem, dq as NestedAggregationItemKindOneOf, dz as NestedAggregationResults, dA as NestedAggregationResultsResultOneOf, aC as NestedAggregationType, fy as NestedAggregationTypeWithLiterals, dJ as NestedResultValue, dK as NestedResultValueResultOneOf, dP as NestedResults, dE as NestedValueAggregationResult, b6 as OnlineBooking, ev as Page, d7 as Paging, da as PagingMetadataV2, cn as ParticipantChoices, cj as ParticipantNotification, bo as ParticipantsPolicy, aY as Payment, b4 as PaymentOptions, aZ as PaymentRateOneOf, aq as PaymentStatus, fm as PaymentStatusWithLiterals, c8 as PhoneCall, aP as PlacementType, fL as PlacementTypeWithLiterals, as as Platform, fo as PlatformWithLiterals, bh as PolicyDescription, ed as PricingPlanSelection, ey as Properties, eN as PropertiesChange, dW as QueryBookingFormsRequest, e5 as QueryCategoriesFilter, e4 as QueryCategoriesRequest, e0 as QueryLocationsFilter, d$ as QueryLocationsRequest, dT as QueryPoliciesRequest, e6 as QueryServicesMultiLanguageRequest, e7 as QueryServicesMultiLanguageResponse, d3 as QueryServicesRequest, d9 as QueryServicesResponse, d4 as QueryV2, d5 as QueryV2PagingMethodOneOf, dl as RangeAggregation, dy as RangeAggregationResult, dh as RangeBucket, dG as RangeResult, dC as RangeResults, bw as RankingOptions, ae as RankingOrder, fa as RankingOrderWithLiterals, a9 as RateType, f5 as RateTypeWithLiterals, e9 as RemovedLocationSessionsAction, ea as RemovedLocationSessionsActionActionOptionsOneOf, aG as RequestedFields, fC as RequestedFieldsWithLiterals, bm as ReschedulePolicy, aR as ResolutionMethod, fN as ResolutionMethodWithLiterals, bK as ResourceGroup, bL as ResourceIds, c9 as ResourceSelection, al as ResourceTransparency, fh as ResourceTransparencyWithLiterals, bO as ResourceType, bp as ResourcesPolicy, cx as RestoreInfo, dL as Results, bt as SaveCreditCardPolicy, dm as ScalarAggregation, dI as ScalarDateResult, dH as ScalarResult, aB as ScalarType, fx as ScalarTypeWithLiterals, bz as Schedule, du as SearchDetails, dc as SearchServicesRequest, ar as SelectedPaymentOption, fn as SelectedPaymentOptionWithLiterals, an as SelectionMethod, fj as SelectionMethodWithLiterals, bS as SeoSchema, cT as ServiceAvailabilityConstraints, cp as ServiceChoice, cq as ServiceChoiceChoiceOneOf, co as ServiceChoices, f1 as ServiceQuerySpec, bM as ServiceResource, bN as ServiceResourceSelectionOneOf, f2 as ServiceSearchSpec, a8 as ServiceType, f4 as ServiceTypeWithLiterals, f0 as ServicesQueryResult, b_ as ServicesUrlsChanged, eY as SetAddOnsForGroupRequest, bZ as SetCustomSlugEvent, eg as SetCustomSlugRequest, e8 as SetServiceLocationsRequest, bV as Settings, eP as SiteCloned, eO as SiteCreated, ex as SitePropertiesEvent, ew as SitePropertiesNotification, bP as Slug, az as SortDirection, fv as SortDirectionWithLiterals, ax as SortOrder, ft as SortOrderWithLiterals, ay as SortType, fu as SortTypeWithLiterals, d6 as Sorting, af as SortingMethodType, fb as SortingMethodTypeWithLiterals, eG as SpecialHourPeriod, cU as SplitInterval, bH as StaffMediaItem, bI as StaffMediaItemItemOneOf, bG as StaffMember, bJ as StaffMemberDetails, bu as StaffSortingPolicy, bv as StaffSortingPolicyOptionsOneOf, aK as Status, fG as StatusWithLiterals, ce as StreetAddress, cg as Subdivision, b2 as SubscriptionPayment, eI as SupportedLanguage, bU as Tag, bX as TaxableAddress, aj as TaxableAddressType, ff as TaxableAddressTypeWithLiterals, eF as TimePeriod, ag as Timing, fc as TimingWithLiterals, eK as Translation, bQ as URLs, ai as UnitType, fe as UnitTypeWithLiterals, eT as UpdateAddOnGroupRequest, cV as UpdateServiceRequest, cW as UpdateServiceResponse, et as UserDomainInfoChangedEvent, aV as V2Category, bB as V2Duration, b8 as V2Location, b9 as V2LocationOptionsOneOf, c$ as V2ParticipantNotification, bY as V2PhoneCall, aw as V2RequestedFields, fs as V2RequestedFieldsWithLiterals, eB as V4Address, cH as ValidateServiceRequest, cI as ValidateServiceResponse, eh as ValidateSlugRequest, dj as ValueAggregation, dk as ValueAggregationOptionsOneOf, dx as ValueAggregationResult, dF as ValueResult, dB as ValueResults, ao as ValueType, fk as ValueTypeWithLiterals, b1 as VariedPayment, bn as WaitlistPolicy, av as WebhookIdentityType, fr as WebhookIdentityTypeWithLiterals, f3 as utils } from './bookings-services-v2-service-services.universal-_bWigLGM.js';
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-l7BbSl1o.js';
3
+ export { cE as AccountInfo, e$ as AccountInfoMetadata, aH as Action, cA as ActionEvent, fD as ActionWithLiterals, at as Actor, fp as ActorWithLiterals, eV as AddOn, eW as AddOnAddOnInfoOneOf, bW as AddOnDetails, eX as AddOnGroupDetail, ac as AddOnPaymentOptions, f8 as AddOnPaymentOptionsWithLiterals, cc as Address, eC as AddressHint, cf as AddressLocation, cd as AddressStreetOneOf, df as Aggregation, dw as AggregationData, dg as AggregationKindOneOf, dR as AggregationResults, dS as AggregationResultsResultOneOf, dQ as AggregationResultsScalarDateResult, dD as AggregationResultsScalarResult, aE as AggregationType, fA as AggregationTypeWithLiterals, cN as ApplicationError, bA as AvailabilityConstraints, eZ as BaseEventMetadata, er as Behavior, es as BehaviorBehaviorOneOf, en as Benefit, em as BenefitNotification, aM as BenefitType, fI as BenefitTypeWithLiterals, bk as BookAfterStartPolicy, ct as BookedAddOn, c3 as BookedEntity, c4 as BookedEntityItemOneOf, c6 as BookedResource, ca as BookedSchedule, c5 as BookedSlot, c1 as Booking, dX as BookingForm, c2 as BookingParticipantsInfoOneOf, bg as BookingPolicy, dV as BookingPolicyWithServices, ci as BookingSource, ap as BookingStatus, fl as BookingStatusWithLiterals, cO as BulkActionMetadata, cK as BulkCreateServicesRequest, d2 as BulkDeleteServicesByFilterRequest, d1 as BulkDeleteServicesRequest, cL as BulkServiceResult, cZ as BulkUpdateServicesByFilterRequest, cX as BulkUpdateServicesRequest, be as BusinessLocationOptions, e1 as BusinessLocations, eE as BusinessSchedule, bq as CancellationFeePolicy, bl as CancellationPolicy, br as CancellationWindow, bs as CancellationWindowFeeOneOf, ez as Categories, ek as Category, ej as CategoryNotification, aL as CategoryNotificationEvent, fH as CategoryNotificationEventWithLiterals, eL as ChangeContext, eM as ChangeContextPayloadOneOf, aJ as CloneErrors, fF as CloneErrorsWithLiterals, ei as CloneServiceRequest, ba as CommonAddress, bd as CommonAddressLocation, bb as CommonAddressStreetOneOf, ck as CommonIdentificationData, cl as CommonIdentificationDataIdOneOf, fO as CommonQueryWithEntityContext, fP as CommonSearchWithEntityContext, bc as CommonStreetAddress, ah as CompletionRequirement, fd as CompletionRequirementWithLiterals, b7 as Conferencing, dZ as ConnectedService, eJ as ConsentPolicy, cb as ContactDetails, d_ as CountServicesRequest, eQ as CreateAddOnGroupRequest, cF as CreateServiceRequest, cG as CreateServiceResponse, aO as CrudType, fK as CrudTypeWithLiterals, d8 as CursorPaging, dv as CursorPagingMetadata, dU as CursorQueryPagingMethodOneOf, dd as CursorSearch, de as CursorSearchPagingMethodOneOf, db as Cursors, ch as CustomFormField, bf as CustomLocationOptions, e2 as CustomLocations, bx as CustomOptions, b0 as CustomPayment, e3 as CustomerLocations, bF as DailyConfig, dn as DateHistogramAggregation, dM as DateHistogramResult, dO as DateHistogramResults, aQ as DayOfWeek, fM as DayOfWeekWithLiterals, eR as DeleteAddOnGroupRequest, eS as DeleteAddOnGroupResponse, c_ as DeleteServiceRequest, d0 as DeleteServiceResponse, ef as DisablePricingPlansForServiceRequest, ep as Discount, eq as DiscountDiscountOneOf, b5 as DiscountInfo, cu as DomainEvent, cv as DomainEventBodyOneOf, b$ as DummyRequest, c0 as DummyResponse, cr as Duration, bC as DurationRange, bD as DurationRangeConfigOneOf, el as Empty, ec as EnablePricingPlansForServiceRequest, cw as EntityCreatedEvent, cz as EntityDeletedEvent, cy as EntityUpdatedEvent, eo as EntryPass, aN as Event, e_ as EventMetadata, fJ as EventWithLiterals, bR as ExtendedFields, cJ as FieldViolation, ab as FirstChargeDateType, f7 as FirstChargeDateTypeWithLiterals, a_ as FixedPayment, cm as FlowControlSettings, aW as Form, dY as FormDetails, aX as FormSettings, aa as FrequencyType, f6 as FrequencyTypeWithLiterals, b3 as FullUpfrontPayment, eD as GeoCoordinates, cR as GetServiceAvailabilityConstraintsRequest, cS as GetServiceAvailabilityConstraintsResponse, cP as GetServiceRequest, cQ as GetServiceResponse, ds as GroupByAggregation, dt as GroupByAggregationKindOneOf, dN as GroupByValueResults, bE as HourlyConfig, eu as HtmlSitePublished, cC as IdentificationData, cD as IdentificationDataIdOneOf, au as IdentityType, fq as IdentityTypeWithLiterals, di as IncludeMissingValuesOptions, by as IntakeFormPolicy, aD as Interval, fz as IntervalWithLiterals, ee as InvalidPricingPlan, aI as InvalidSlugError, fE as InvalidSlugErrorWithLiterals, cM as ItemMetadata, bT as Keyword, bi as LimitEarlyBookingPolicy, bj as LimitLateBookingPolicy, eU as ListAddOnGroupsByServiceIdRequest, eA as Locale, c7 as Location, am as LocationType, ad as LocationTypeEnumLocationType, f9 as LocationTypeEnumLocationTypeWithLiterals, fi as LocationTypeWithLiterals, cY as MaskedService, aS as Media, aT as MediaItem, aU as MediaItemItemOneOf, cB as MessageEnvelope, aA as MissingValues, fw as MissingValuesWithLiterals, aF as Mode, fB as ModeWithLiterals, a$ as Money, eb as MoveToNewLocationsOptions, cs as MultiServiceBookingInfo, ak as MultiServiceBookingType, fg as MultiServiceBookingTypeWithLiterals, eH as Multilingual, dr as NestedAggregation, dp as NestedAggregationItem, dq as NestedAggregationItemKindOneOf, dz as NestedAggregationResults, dA as NestedAggregationResultsResultOneOf, aC as NestedAggregationType, fy as NestedAggregationTypeWithLiterals, dJ as NestedResultValue, dK as NestedResultValueResultOneOf, dP as NestedResults, dE as NestedValueAggregationResult, b6 as OnlineBooking, ev as Page, d7 as Paging, da as PagingMetadataV2, cn as ParticipantChoices, cj as ParticipantNotification, bo as ParticipantsPolicy, aY as Payment, b4 as PaymentOptions, aZ as PaymentRateOneOf, aq as PaymentStatus, fm as PaymentStatusWithLiterals, c8 as PhoneCall, aP as PlacementType, fL as PlacementTypeWithLiterals, as as Platform, fo as PlatformWithLiterals, bh as PolicyDescription, ed as PricingPlanSelection, ey as Properties, eN as PropertiesChange, dW as QueryBookingFormsRequest, e5 as QueryCategoriesFilter, e4 as QueryCategoriesRequest, e0 as QueryLocationsFilter, d$ as QueryLocationsRequest, dT as QueryPoliciesRequest, e6 as QueryServicesMultiLanguageRequest, e7 as QueryServicesMultiLanguageResponse, d3 as QueryServicesRequest, d9 as QueryServicesResponse, d4 as QueryV2, d5 as QueryV2PagingMethodOneOf, dl as RangeAggregation, dy as RangeAggregationResult, dh as RangeBucket, dG as RangeResult, dC as RangeResults, bw as RankingOptions, ae as RankingOrder, fa as RankingOrderWithLiterals, a9 as RateType, f5 as RateTypeWithLiterals, e9 as RemovedLocationSessionsAction, ea as RemovedLocationSessionsActionActionOptionsOneOf, aG as RequestedFields, fC as RequestedFieldsWithLiterals, bm as ReschedulePolicy, aR as ResolutionMethod, fN as ResolutionMethodWithLiterals, bK as ResourceGroup, bL as ResourceIds, c9 as ResourceSelection, al as ResourceTransparency, fh as ResourceTransparencyWithLiterals, bO as ResourceType, bp as ResourcesPolicy, cx as RestoreInfo, dL as Results, bt as SaveCreditCardPolicy, dm as ScalarAggregation, dI as ScalarDateResult, dH as ScalarResult, aB as ScalarType, fx as ScalarTypeWithLiterals, bz as Schedule, du as SearchDetails, dc as SearchServicesRequest, ar as SelectedPaymentOption, fn as SelectedPaymentOptionWithLiterals, an as SelectionMethod, fj as SelectionMethodWithLiterals, bS as SeoSchema, cT as ServiceAvailabilityConstraints, cp as ServiceChoice, cq as ServiceChoiceChoiceOneOf, co as ServiceChoices, f1 as ServiceQuerySpec, bM as ServiceResource, bN as ServiceResourceSelectionOneOf, f2 as ServiceSearchSpec, a8 as ServiceType, f4 as ServiceTypeWithLiterals, f0 as ServicesQueryResult, b_ as ServicesUrlsChanged, eY as SetAddOnsForGroupRequest, bZ as SetCustomSlugEvent, eg as SetCustomSlugRequest, e8 as SetServiceLocationsRequest, bV as Settings, eP as SiteCloned, eO as SiteCreated, ex as SitePropertiesEvent, ew as SitePropertiesNotification, bP as Slug, az as SortDirection, fv as SortDirectionWithLiterals, ax as SortOrder, ft as SortOrderWithLiterals, ay as SortType, fu as SortTypeWithLiterals, d6 as Sorting, af as SortingMethodType, fb as SortingMethodTypeWithLiterals, eG as SpecialHourPeriod, cU as SplitInterval, bH as StaffMediaItem, bI as StaffMediaItemItemOneOf, bG as StaffMember, bJ as StaffMemberDetails, bu as StaffSortingPolicy, bv as StaffSortingPolicyOptionsOneOf, aK as Status, fG as StatusWithLiterals, ce as StreetAddress, cg as Subdivision, b2 as SubscriptionPayment, eI as SupportedLanguage, bU as Tag, bX as TaxableAddress, aj as TaxableAddressType, ff as TaxableAddressTypeWithLiterals, eF as TimePeriod, ag as Timing, fc as TimingWithLiterals, eK as Translation, bQ as URLs, ai as UnitType, fe as UnitTypeWithLiterals, eT as UpdateAddOnGroupRequest, cV as UpdateServiceRequest, cW as UpdateServiceResponse, et as UserDomainInfoChangedEvent, aV as V2Category, bB as V2Duration, b8 as V2Location, b9 as V2LocationOptionsOneOf, c$ as V2ParticipantNotification, bY as V2PhoneCall, aw as V2RequestedFields, fs as V2RequestedFieldsWithLiterals, eB as V4Address, cH as ValidateServiceRequest, cI as ValidateServiceResponse, eh as ValidateSlugRequest, dj as ValueAggregation, dk as ValueAggregationOptionsOneOf, dx as ValueAggregationResult, dF as ValueResult, dB as ValueResults, ao as ValueType, fk as ValueTypeWithLiterals, b1 as VariedPayment, bn as WaitlistPolicy, av as WebhookIdentityType, fr as WebhookIdentityTypeWithLiterals, f3 as utils } from './bookings-services-v2-service-services.universal-l7BbSl1o.js';
4
4
 
5
5
  declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
6
6
  interface CreateServiceSignature {