@wix/auto_sdk_bookings_services 1.0.249 → 1.0.250

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 (41) hide show
  1. package/build/cjs/{bookings-services-v2-service-services.universal-gehWJ2Jb.d.ts → bookings-services-v2-service-services.universal-Dtl9GnZT.d.ts} +6 -1
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +8 -0
  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 +8 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +7 -2
  9. package/build/cjs/meta.js +5 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-gehWJ2Jb.d.mts → bookings-services-v2-service-services.universal-Dtl9GnZT.d.mts} +6 -1
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +7 -0
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +7 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +7 -2
  19. package/build/es/meta.mjs +4 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-yhQzgyJF.d.ts → bookings-services-v2-service-services.universal-CJCST65x.d.ts} +41 -2
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +8 -0
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +8 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +7 -2
  29. package/build/internal/cjs/meta.js +5 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-yhQzgyJF.d.mts → bookings-services-v2-service-services.universal-CJCST65x.d.mts} +41 -2
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +7 -0
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +7 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +7 -2
  39. package/build/internal/es/meta.mjs +4 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -1255,10 +1255,22 @@ interface AvailabilityConstraints {
1255
1255
  /**
1256
1256
  * Duration range for the service. When set, the customer picks a duration
1257
1257
  * within the configured min/max range instead of a fixed session duration.
1258
- * Mutually exclusive with `session_durations` — a service has one or the other.
1258
+ * Mutually exclusive with `sessionDurations` — a service has one or the other.
1259
+ * Can't be combined with a non-default `workingHoursMode`.
1259
1260
  * @internal
1260
1261
  */
1261
1262
  durationRange?: DurationRange;
1263
+ /**
1264
+ * Determines which working hours bound the service's availability. Supported for appointment
1265
+ * services only, and can't be combined with `durationRange`. When unset, behaves as `STAFF`.
1266
+ *
1267
+ * The service's own working hours are defined as `WORKING_HOURS`
1268
+ * [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)
1269
+ * on this schedule. This field controls only how those events combine with the assigned staff
1270
+ * members' working hours; it doesn't contain the hours themselves.
1271
+ * @internal
1272
+ */
1273
+ workingHoursMode?: WorkingHoursModeWithLiterals;
1262
1274
  }
1263
1275
  interface V2Duration {
1264
1276
  /**
@@ -2837,6 +2849,33 @@ interface AccountInfo {
2837
2849
  */
2838
2850
  siteId?: string | null;
2839
2851
  }
2852
+ /** Determines which working hours bound the service's availability. */
2853
+ declare enum WorkingHoursMode {
2854
+ /**
2855
+ * Availability follows the working hours of each staff member, and any other required
2856
+ * resource, assigned to the service. The behavior when `workingHoursMode` is unset.
2857
+ * @documentationMaturity preview
2858
+ * @internal
2859
+ */
2860
+ STAFF = "STAFF",
2861
+ /**
2862
+ * Availability is the intersection of the service's own working hours and the working
2863
+ * hours of each assigned staff member and required resource.
2864
+ * @documentationMaturity preview
2865
+ * @internal
2866
+ */
2867
+ STAFF_INTERSECTED_WITH_SERVICE = "STAFF_INTERSECTED_WITH_SERVICE",
2868
+ /**
2869
+ * The service's own working hours replace the working-hours window of the assigned staff
2870
+ * members and required resources. Their existing bookings and blocked time still reduce
2871
+ * availability.
2872
+ * @documentationMaturity preview
2873
+ * @internal
2874
+ */
2875
+ SERVICE = "SERVICE"
2876
+ }
2877
+ /** @enumType */
2878
+ type WorkingHoursModeWithLiterals = WorkingHoursMode;
2840
2879
  interface CreateServiceRequest {
2841
2880
  /** Service to create. */
2842
2881
  service: Service;
@@ -6623,4 +6662,4 @@ interface SetAddOnsForGroupOptions {
6623
6662
  addOnIds: string[] | null;
6624
6663
  }
6625
6664
 
6626
- 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 FixedPayment 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, 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_, 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 TaxableAddress 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 WorkingHoursLocationCoverage as bK, type StaffMemberDetails as bL, type ResourceGroup as bM, type ResourceIds as bN, type ServiceResource as bO, type ServiceResourceSelectionOneOf as bP, type ResourceType as bQ, type ResourceDetails as bR, type ResourceInfo as bS, type Slug as bT, type URLs as bU, type ExtendedFields as bV, type SeoSchema as bW, type Keyword as bX, type Tag as bY, type Settings as bZ, type AddOnDetails 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 UpdateServiceRequest as c$, type V2PhoneCall as c0, type SetCustomSlugEvent as c1, type ServicesUrlsChanged as c2, type DummyRequest as c3, type DummyResponse as c4, type Booking as c5, type BookingParticipantsInfoOneOf as c6, type BookedEntity as c7, type BookedEntityItemOneOf as c8, type BookedSlot as c9, type DomainEvent as cA, type DomainEventBodyOneOf as cB, type EntityCreatedEvent as cC, type RestoreInfo as cD, type EntityUpdatedEvent as cE, type EntityDeletedEvent as cF, type ActionEvent as cG, type MessageEnvelope as cH, type IdentificationData as cI, type IdentificationDataIdOneOf as cJ, type AccountInfo as cK, type CreateServiceRequest as cL, type CreateServiceResponse as cM, type ValidateServiceRequest as cN, type ValidateServiceResponse as cO, type FieldViolation as cP, type BulkCreateServicesRequest as cQ, type BulkServiceResult as cR, type ItemMetadata as cS, type ApplicationError as cT, type BulkActionMetadata as cU, type GetServiceRequest as cV, type GetServiceResponse as cW, type GetServiceAvailabilityConstraintsRequest as cX, type GetServiceAvailabilityConstraintsResponse as cY, type ServiceAvailabilityConstraints as cZ, type SplitInterval as c_, type BookedResource as ca, type Location as cb, type PhoneCall as cc, type ResourceSelection as cd, type BookedSchedule as ce, type ContactDetails as cf, type Address as cg, type AddressStreetOneOf as ch, type StreetAddress as ci, type AddressLocation as cj, type Subdivision as ck, type CustomFormField as cl, type BookingSource as cm, type ParticipantNotification as cn, type CommonIdentificationData as co, type CommonIdentificationDataIdOneOf as cp, type FlowControlSettings as cq, type ParticipantChoices as cr, type ServiceChoices as cs, type ServiceChoice as ct, type ServiceChoiceChoiceOneOf as cu, type Duration as cv, type DateTimeRule as cw, type ParticipantsRange as cx, type MultiServiceBookingInfo as cy, type BookedAddOn as cz, type BulkUpdateServicesResponse as d, type BookingPolicyWithServices as d$, type UpdateServiceResponse as d0, type BulkUpdateServicesRequest as d1, type MaskedService as d2, type BulkUpdateServicesByFilterRequest as d3, type DeleteServiceRequest as d4, type V2ParticipantNotification as d5, type DeleteServiceResponse as d6, type BulkDeleteServicesRequest as d7, type BulkDeleteServicesByFilterRequest as d8, type QueryServicesRequest as d9, type SearchDetails as dA, type CursorPagingMetadata as dB, type AggregationData as dC, type ValueAggregationResult as dD, type RangeAggregationResult as dE, type NestedAggregationResults as dF, type NestedAggregationResultsResultOneOf as dG, type ValueResults as dH, type RangeResults as dI, type AggregationResultsScalarResult as dJ, type NestedValueAggregationResult as dK, type ValueResult as dL, type RangeResult as dM, type ScalarResult as dN, type ScalarDateResult as dO, type NestedResultValue as dP, type NestedResultValueResultOneOf as dQ, type Results as dR, type DateHistogramResult as dS, type GroupByValueResults as dT, type DateHistogramResults as dU, type NestedResults as dV, type AggregationResultsScalarDateResult as dW, type AggregationResults as dX, type AggregationResultsResultOneOf as dY, type QueryPoliciesRequest as dZ, type CursorQueryPagingMethodOneOf as d_, type QueryV2 as da, type QueryV2PagingMethodOneOf as db, type Sorting as dc, type Paging as dd, type CursorPaging as de, type QueryServicesResponse as df, type PagingMetadataV2 as dg, type Cursors as dh, type SearchServicesRequest as di, type CursorSearch as dj, type CursorSearchPagingMethodOneOf as dk, type Aggregation as dl, type AggregationKindOneOf as dm, type RangeBucket as dn, type IncludeMissingValuesOptions as dp, type ValueAggregation as dq, type ValueAggregationOptionsOneOf as dr, type RangeAggregation as ds, type ScalarAggregation as dt, type DateHistogramAggregation as du, type NestedAggregationItem as dv, type NestedAggregationItemKindOneOf as dw, type NestedAggregation as dx, type GroupByAggregation as dy, type GroupByAggregationKindOneOf as dz, type BulkUpdateServicesByFilterOptions as e, type ServicesQueryResult as e$, type QueryBookingFormsRequest as e0, type BookingForm as e1, type FormDetails as e2, type ConnectedService as e3, type CountServicesRequest as e4, type QueryLocationsRequest as e5, type QueryLocationsFilter as e6, type BusinessLocations as e7, type CustomLocations as e8, type CustomerLocations as e9, type V4Address as eA, type AddressHint as eB, type GeoCoordinates as eC, type BusinessSchedule as eD, type TimePeriod as eE, type SpecialHourPeriod as eF, type Multilingual as eG, type SupportedLanguage as eH, type ConsentPolicy as eI, type Translation as eJ, type ChangeContext as eK, type ChangeContextPayloadOneOf as eL, type PropertiesChange as eM, type SiteCreated as eN, type SiteCloned as eO, type CreateAddOnGroupRequest as eP, type DeleteAddOnGroupRequest as eQ, type DeleteAddOnGroupResponse as eR, type UpdateAddOnGroupRequest as eS, type ListAddOnGroupsByServiceIdRequest as eT, type AddOn as eU, type AddOnAddOnInfoOneOf as eV, type AddOnGroupDetail as eW, type SetAddOnsForGroupRequest as eX, type BaseEventMetadata as eY, type EventMetadata as eZ, type AccountInfoMetadata as e_, type QueryCategoriesRequest as ea, type QueryCategoriesFilter as eb, type QueryServicesMultiLanguageRequest as ec, type QueryServicesMultiLanguageResponse as ed, type SetServiceLocationsRequest as ee, type RemovedLocationSessionsAction as ef, type RemovedLocationSessionsActionActionOptionsOneOf as eg, type MoveToNewLocationsOptions as eh, type EnablePricingPlansForServiceRequest as ei, type PricingPlanSelection as ej, type InvalidPricingPlan as ek, type DisablePricingPlansForServiceRequest as el, type SetCustomSlugRequest as em, type ValidateSlugRequest as en, type CloneServiceRequest as eo, type CategoryNotification as ep, type Category as eq, type Empty as er, type UserDomainInfoChangedEvent as es, type HtmlSitePublished as et, type Page as eu, type SitePropertiesNotification as ev, type SitePropertiesEvent as ew, type Properties as ex, type Categories as ey, type Locale as ez, type BulkUpdateServicesByFilterResponse as f, queryPolicies as f$, type ServiceQuerySpec as f0, type ServiceSearchSpec as f1, utils as f2, type ServiceTypeWithLiterals as f3, type RateTypeWithLiterals as f4, type FrequencyTypeWithLiterals as f5, type FirstChargeDateTypeWithLiterals as f6, type AddOnPaymentOptionsWithLiterals as f7, type LocationTypeEnumLocationTypeWithLiterals as f8, type RankingOrderWithLiterals as f9, type AggregationTypeWithLiterals as fA, type ModeWithLiterals as fB, type RequestedFieldsWithLiterals as fC, type ActionWithLiterals as fD, type InvalidSlugErrorWithLiterals as fE, type CloneErrorsWithLiterals as fF, type StatusWithLiterals as fG, type EventWithLiterals as fH, type CrudTypeWithLiterals as fI, type PlacementTypeWithLiterals as fJ, type DayOfWeekWithLiterals as fK, type ResolutionMethodWithLiterals as fL, type CommonQueryWithEntityContext as fM, type CommonSearchWithEntityContext as fN, onServiceCreated as fO, onServiceDeleted as fP, onServiceUpdated as fQ, createService as fR, bulkCreateServices as fS, getService as fT, updateService as fU, bulkUpdateServices as fV, bulkUpdateServicesByFilter as fW, deleteService as fX, bulkDeleteServices as fY, bulkDeleteServicesByFilter as fZ, queryServices as f_, type SortingMethodTypeWithLiterals as fa, type TimingWithLiterals as fb, type CompletionRequirementWithLiterals as fc, type UnitTypeWithLiterals as fd, type TaxableAddressTypeWithLiterals as fe, type MultiServiceBookingTypeWithLiterals as ff, type ResourceTransparencyWithLiterals as fg, type LocationTypeWithLiterals as fh, type SelectionMethodWithLiterals as fi, type DurationUnitTypeWithLiterals as fj, type ValueTypeWithLiterals as fk, type BookingStatusWithLiterals as fl, type PaymentStatusWithLiterals as fm, type SelectedPaymentOptionWithLiterals as fn, type PlatformWithLiterals as fo, type ActorWithLiterals as fp, type IdentityTypeWithLiterals as fq, type WebhookIdentityTypeWithLiterals as fr, type V2RequestedFieldsWithLiterals as fs, type SortOrderWithLiterals as ft, type SortTypeWithLiterals as fu, type SortDirectionWithLiterals as fv, type MissingValuesWithLiterals as fw, type ScalarTypeWithLiterals as fx, type NestedAggregationTypeWithLiterals as fy, type IntervalWithLiterals as fz, type BulkDeleteServicesOptions as g, queryBookingForms as g0, countServices as g1, queryLocations as g2, queryCategories as g3, setServiceLocations as g4, enablePricingPlansForService as g5, disablePricingPlansForService as g6, setCustomSlug as g7, validateSlug as g8, cloneService as g9, createAddOnGroup as ga, deleteAddOnGroup as gb, updateAddOnGroup as gc, listAddOnGroupsByServiceId as gd, setAddOnsForGroup as ge, 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 };
6665
+ 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 PaymentRateOneOf 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, V2RequestedFields as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, Mode as aJ, RequestedFields as aK, Action as aL, InvalidSlugError as aM, CloneErrors as aN, Status as aO, Event as aP, CrudType as aQ, PlacementType as aR, DayOfWeek as aS, ResolutionMethod as aT, type Media as aU, type MediaItem as aV, type MediaItemItemOneOf as aW, type V2Category as aX, type Form as aY, type FormSettings as aZ, type Payment 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, WorkingHoursMode as az, type UpdateServiceValidationErrors as b, type AddOnDetails as b$, type FixedPayment as b0, type Money as b1, type CustomPayment as b2, type VariedPayment as b3, type SubscriptionPayment as b4, type FullUpfrontPayment as b5, type PaymentOptions as b6, type DiscountInfo as b7, type OnlineBooking as b8, type Conferencing as b9, type IntakeFormPolicy as bA, type Schedule as bB, type AvailabilityConstraints as bC, type V2Duration as bD, type DurationRange as bE, type DurationRangeConfigOneOf as bF, type HourlyConfig as bG, type DailyConfig as bH, type StaffMember as bI, type StaffMediaItem as bJ, type StaffMediaItemItemOneOf as bK, type WorkingHoursLocationCoverage 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 ResourceDetails as bS, type ResourceInfo as bT, type Slug as bU, type URLs as bV, type ExtendedFields as bW, type SeoSchema as bX, type Keyword as bY, type Tag as bZ, type Settings as b_, type V2Location as ba, type V2LocationOptionsOneOf as bb, type CommonAddress as bc, type CommonAddressStreetOneOf as bd, type CommonStreetAddress as be, type CommonAddressLocation as bf, type BusinessLocationOptions as bg, type CustomLocationOptions as bh, type BookingPolicy as bi, type PolicyDescription as bj, type LimitEarlyBookingPolicy as bk, type LimitLateBookingPolicy as bl, type BookAfterStartPolicy as bm, type CancellationPolicy as bn, type ReschedulePolicy as bo, type WaitlistPolicy as bp, type ParticipantsPolicy as bq, type ResourcesPolicy as br, type CancellationFeePolicy as bs, type CancellationWindow as bt, type CancellationWindowFeeOneOf as bu, type SaveCreditCardPolicy as bv, type StaffSortingPolicy as bw, type StaffSortingPolicyOptionsOneOf as bx, type RankingOptions as by, type CustomOptions as bz, type BulkUpdateServicesOptions as c, type SplitInterval as c$, type TaxableAddress as c0, type V2PhoneCall as c1, type SetCustomSlugEvent as c2, type ServicesUrlsChanged as c3, type DummyRequest as c4, type DummyResponse as c5, type Booking as c6, type BookingParticipantsInfoOneOf as c7, type BookedEntity as c8, type BookedEntityItemOneOf as c9, type BookedAddOn as cA, type DomainEvent as cB, type DomainEventBodyOneOf as cC, type EntityCreatedEvent as cD, type RestoreInfo as cE, type EntityUpdatedEvent as cF, type EntityDeletedEvent as cG, type ActionEvent as cH, type MessageEnvelope as cI, type IdentificationData as cJ, type IdentificationDataIdOneOf as cK, type AccountInfo as cL, type CreateServiceRequest as cM, type CreateServiceResponse as cN, type ValidateServiceRequest as cO, type ValidateServiceResponse as cP, type FieldViolation as cQ, type BulkCreateServicesRequest as cR, type BulkServiceResult as cS, type ItemMetadata as cT, type ApplicationError as cU, type BulkActionMetadata as cV, type GetServiceRequest as cW, type GetServiceResponse as cX, type GetServiceAvailabilityConstraintsRequest as cY, type GetServiceAvailabilityConstraintsResponse as cZ, type ServiceAvailabilityConstraints as c_, type BookedSlot as ca, type BookedResource as cb, type Location as cc, type PhoneCall as cd, type ResourceSelection as ce, type BookedSchedule as cf, type ContactDetails as cg, type Address as ch, type AddressStreetOneOf as ci, type StreetAddress as cj, type AddressLocation as ck, type Subdivision as cl, type CustomFormField as cm, type BookingSource as cn, type ParticipantNotification as co, type CommonIdentificationData as cp, type CommonIdentificationDataIdOneOf as cq, type FlowControlSettings as cr, type ParticipantChoices as cs, type ServiceChoices as ct, type ServiceChoice as cu, type ServiceChoiceChoiceOneOf as cv, type Duration as cw, type DateTimeRule as cx, type ParticipantsRange as cy, type MultiServiceBookingInfo as cz, type BulkUpdateServicesResponse as d, type CursorQueryPagingMethodOneOf as d$, type UpdateServiceRequest as d0, type UpdateServiceResponse as d1, type BulkUpdateServicesRequest as d2, type MaskedService as d3, type BulkUpdateServicesByFilterRequest as d4, type DeleteServiceRequest as d5, type V2ParticipantNotification as d6, type DeleteServiceResponse as d7, type BulkDeleteServicesRequest as d8, type BulkDeleteServicesByFilterRequest as d9, type GroupByAggregationKindOneOf as dA, type SearchDetails as dB, type CursorPagingMetadata as dC, type AggregationData as dD, type ValueAggregationResult as dE, type RangeAggregationResult as dF, type NestedAggregationResults as dG, type NestedAggregationResultsResultOneOf as dH, type ValueResults as dI, type RangeResults as dJ, type AggregationResultsScalarResult as dK, type NestedValueAggregationResult as dL, type ValueResult as dM, type RangeResult as dN, type ScalarResult as dO, type ScalarDateResult as dP, type NestedResultValue as dQ, type NestedResultValueResultOneOf as dR, type Results as dS, type DateHistogramResult as dT, type GroupByValueResults as dU, type DateHistogramResults as dV, type NestedResults as dW, type AggregationResultsScalarDateResult as dX, type AggregationResults as dY, type AggregationResultsResultOneOf as dZ, type QueryPoliciesRequest as d_, type QueryServicesRequest as da, type QueryV2 as db, type QueryV2PagingMethodOneOf as dc, type Sorting as dd, type Paging as de, type CursorPaging as df, type QueryServicesResponse as dg, type PagingMetadataV2 as dh, type Cursors as di, type SearchServicesRequest as dj, type CursorSearch as dk, type CursorSearchPagingMethodOneOf as dl, type Aggregation as dm, type AggregationKindOneOf as dn, type RangeBucket as dp, type IncludeMissingValuesOptions as dq, type ValueAggregation as dr, type ValueAggregationOptionsOneOf as ds, type RangeAggregation as dt, type ScalarAggregation as du, type DateHistogramAggregation as dv, type NestedAggregationItem as dw, type NestedAggregationItemKindOneOf as dx, type NestedAggregation as dy, type GroupByAggregation as dz, type BulkUpdateServicesByFilterOptions as e, type AccountInfoMetadata as e$, type BookingPolicyWithServices as e0, type QueryBookingFormsRequest as e1, type BookingForm as e2, type FormDetails as e3, type ConnectedService as e4, type CountServicesRequest as e5, type QueryLocationsRequest as e6, type QueryLocationsFilter as e7, type BusinessLocations as e8, type CustomLocations as e9, type Locale as eA, type V4Address as eB, type AddressHint as eC, type GeoCoordinates as eD, type BusinessSchedule as eE, type TimePeriod as eF, type SpecialHourPeriod as eG, type Multilingual as eH, type SupportedLanguage as eI, type ConsentPolicy as eJ, type Translation as eK, type ChangeContext as eL, type ChangeContextPayloadOneOf as eM, type PropertiesChange as eN, type SiteCreated as eO, type SiteCloned as eP, type CreateAddOnGroupRequest as eQ, type DeleteAddOnGroupRequest as eR, type DeleteAddOnGroupResponse as eS, type UpdateAddOnGroupRequest as eT, type ListAddOnGroupsByServiceIdRequest as eU, type AddOn as eV, type AddOnAddOnInfoOneOf as eW, type AddOnGroupDetail as eX, type SetAddOnsForGroupRequest as eY, type BaseEventMetadata as eZ, type EventMetadata as e_, type CustomerLocations as ea, type QueryCategoriesRequest as eb, type QueryCategoriesFilter as ec, type QueryServicesMultiLanguageRequest as ed, type QueryServicesMultiLanguageResponse as ee, type SetServiceLocationsRequest as ef, type RemovedLocationSessionsAction as eg, type RemovedLocationSessionsActionActionOptionsOneOf as eh, type MoveToNewLocationsOptions as ei, type EnablePricingPlansForServiceRequest as ej, type PricingPlanSelection as ek, type InvalidPricingPlan as el, type DisablePricingPlansForServiceRequest as em, type SetCustomSlugRequest as en, type ValidateSlugRequest as eo, type CloneServiceRequest as ep, type CategoryNotification as eq, type Category as er, type Empty as es, type UserDomainInfoChangedEvent as et, type HtmlSitePublished as eu, type Page as ev, type SitePropertiesNotification as ew, type SitePropertiesEvent as ex, type Properties as ey, type Categories as ez, type BulkUpdateServicesByFilterResponse as f, bulkDeleteServicesByFilter as f$, type ServicesQueryResult as f0, type ServiceQuerySpec as f1, type ServiceSearchSpec as f2, utils as f3, type ServiceTypeWithLiterals as f4, type RateTypeWithLiterals as f5, type FrequencyTypeWithLiterals as f6, type FirstChargeDateTypeWithLiterals as f7, type AddOnPaymentOptionsWithLiterals as f8, type LocationTypeEnumLocationTypeWithLiterals as f9, type NestedAggregationTypeWithLiterals as fA, type IntervalWithLiterals as fB, type AggregationTypeWithLiterals as fC, type ModeWithLiterals as fD, type RequestedFieldsWithLiterals as fE, type ActionWithLiterals as fF, type InvalidSlugErrorWithLiterals as fG, type CloneErrorsWithLiterals as fH, type StatusWithLiterals as fI, type EventWithLiterals as fJ, type CrudTypeWithLiterals as fK, type PlacementTypeWithLiterals as fL, type DayOfWeekWithLiterals as fM, type ResolutionMethodWithLiterals as fN, type CommonQueryWithEntityContext as fO, type CommonSearchWithEntityContext as fP, onServiceCreated as fQ, onServiceDeleted as fR, onServiceUpdated as fS, createService as fT, bulkCreateServices as fU, getService as fV, updateService as fW, bulkUpdateServices as fX, bulkUpdateServicesByFilter as fY, deleteService as fZ, bulkDeleteServices as f_, type RankingOrderWithLiterals as fa, type SortingMethodTypeWithLiterals as fb, type TimingWithLiterals as fc, type CompletionRequirementWithLiterals as fd, type UnitTypeWithLiterals as fe, type TaxableAddressTypeWithLiterals as ff, type MultiServiceBookingTypeWithLiterals as fg, type ResourceTransparencyWithLiterals as fh, type LocationTypeWithLiterals as fi, type SelectionMethodWithLiterals as fj, type DurationUnitTypeWithLiterals 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 WorkingHoursModeWithLiterals as ft, type V2RequestedFieldsWithLiterals as fu, type SortOrderWithLiterals as fv, type SortTypeWithLiterals as fw, type SortDirectionWithLiterals as fx, type MissingValuesWithLiterals as fy, type ScalarTypeWithLiterals as fz, type BulkDeleteServicesOptions as g, queryServices as g0, queryPolicies as g1, queryBookingForms as g2, countServices as g3, queryLocations as g4, queryCategories as g5, setServiceLocations as g6, enablePricingPlansForService as g7, disablePricingPlansForService as g8, setCustomSlug as g9, validateSlug as ga, cloneService as gb, createAddOnGroup as gc, deleteAddOnGroup as gd, updateAddOnGroup as ge, listAddOnGroupsByServiceId as gf, setAddOnsForGroup as gg, 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, 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-yhQzgyJF.mjs';
3
- export { cK as AccountInfo, e_ as AccountInfoMetadata, aK as Action, cG as ActionEvent, fD as ActionWithLiterals, aw as Actor, fp as ActorWithLiterals, eU as AddOn, eV as AddOnAddOnInfoOneOf, b_ as AddOnDetails, eW as AddOnGroupDetail, ae as AddOnPaymentOptions, f7 as AddOnPaymentOptionsWithLiterals, cg as Address, eB as AddressHint, cj as AddressLocation, ch as AddressStreetOneOf, dl as Aggregation, dC as AggregationData, dm as AggregationKindOneOf, dX as AggregationResults, dY as AggregationResultsResultOneOf, dW as AggregationResultsScalarDateResult, dJ as AggregationResultsScalarResult, aH as AggregationType, fA as AggregationTypeWithLiterals, cT as ApplicationError, bB as AvailabilityConstraints, eY as BaseEventMetadata, bl as BookAfterStartPolicy, cz as BookedAddOn, c7 as BookedEntity, c8 as BookedEntityItemOneOf, ca as BookedResource, ce as BookedSchedule, c9 as BookedSlot, c5 as Booking, e1 as BookingForm, c6 as BookingParticipantsInfoOneOf, bh as BookingPolicy, d$ as BookingPolicyWithServices, cm as BookingSource, as as BookingStatus, fl as BookingStatusWithLiterals, cU as BulkActionMetadata, cQ as BulkCreateServicesRequest, d8 as BulkDeleteServicesByFilterRequest, d7 as BulkDeleteServicesRequest, cR as BulkServiceResult, d3 as BulkUpdateServicesByFilterRequest, d1 as BulkUpdateServicesRequest, bf as BusinessLocationOptions, e7 as BusinessLocations, eD as BusinessSchedule, br as CancellationFeePolicy, bm as CancellationPolicy, bs as CancellationWindow, bt as CancellationWindowFeeOneOf, ey as Categories, eq as Category, ep as CategoryNotification, eK as ChangeContext, eL as ChangeContextPayloadOneOf, aM as CloneErrors, fF as CloneErrorsWithLiterals, eo as CloneServiceRequest, bb as CommonAddress, be as CommonAddressLocation, bc as CommonAddressStreetOneOf, co as CommonIdentificationData, cp as CommonIdentificationDataIdOneOf, fM as CommonQueryWithEntityContext, fN as CommonSearchWithEntityContext, bd as CommonStreetAddress, aj as CompletionRequirement, fc as CompletionRequirementWithLiterals, b8 as Conferencing, e3 as ConnectedService, eI as ConsentPolicy, cf as ContactDetails, e4 as CountServicesRequest, eP as CreateAddOnGroupRequest, cL as CreateServiceRequest, cM as CreateServiceResponse, aP as CrudType, fI as CrudTypeWithLiterals, de as CursorPaging, dB as CursorPagingMetadata, d_ as CursorQueryPagingMethodOneOf, dj as CursorSearch, dk as CursorSearchPagingMethodOneOf, dh as Cursors, cl as CustomFormField, bg as CustomLocationOptions, e8 as CustomLocations, by as CustomOptions, b1 as CustomPayment, e9 as CustomerLocations, bG as DailyConfig, du as DateHistogramAggregation, dS as DateHistogramResult, dU as DateHistogramResults, cw as DateTimeRule, aR as DayOfWeek, fK as DayOfWeekWithLiterals, eQ as DeleteAddOnGroupRequest, eR as DeleteAddOnGroupResponse, d4 as DeleteServiceRequest, d6 as DeleteServiceResponse, el as DisablePricingPlansForServiceRequest, b6 as DiscountInfo, cA as DomainEvent, cB as DomainEventBodyOneOf, c3 as DummyRequest, c4 as DummyResponse, cv as Duration, bD as DurationRange, bE as DurationRangeConfigOneOf, aq as DurationUnitType, fj as DurationUnitTypeWithLiterals, er as Empty, ei as EnablePricingPlansForServiceRequest, cC as EntityCreatedEvent, cF as EntityDeletedEvent, cE as EntityUpdatedEvent, aO as Event, eZ as EventMetadata, fH as EventWithLiterals, bV as ExtendedFields, cP as FieldViolation, ad as FirstChargeDateType, f6 as FirstChargeDateTypeWithLiterals, a$ as FixedPayment, cq as FlowControlSettings, aX as Form, e2 as FormDetails, aY as FormSettings, ac as FrequencyType, f5 as FrequencyTypeWithLiterals, b4 as FullUpfrontPayment, eC as GeoCoordinates, cX as GetServiceAvailabilityConstraintsRequest, cY as GetServiceAvailabilityConstraintsResponse, cV as GetServiceRequest, cW as GetServiceResponse, dy as GroupByAggregation, dz as GroupByAggregationKindOneOf, dT as GroupByValueResults, bF as HourlyConfig, et as HtmlSitePublished, cI as IdentificationData, cJ as IdentificationDataIdOneOf, ax as IdentityType, fq as IdentityTypeWithLiterals, dp as IncludeMissingValuesOptions, bz as IntakeFormPolicy, aG as Interval, fz as IntervalWithLiterals, ek as InvalidPricingPlan, aL as InvalidSlugError, fE as InvalidSlugErrorWithLiterals, cS as ItemMetadata, bX as Keyword, bj as LimitEarlyBookingPolicy, bk as LimitLateBookingPolicy, eT as ListAddOnGroupsByServiceIdRequest, ez as Locale, cb as Location, ao as LocationType, af as LocationTypeEnumLocationType, f8 as LocationTypeEnumLocationTypeWithLiterals, fh as LocationTypeWithLiterals, d2 as MaskedService, aT as Media, aU as MediaItem, aV as MediaItemItemOneOf, cH as MessageEnvelope, aD as MissingValues, fw as MissingValuesWithLiterals, aI as Mode, fB as ModeWithLiterals, b0 as Money, eh as MoveToNewLocationsOptions, cy as MultiServiceBookingInfo, am as MultiServiceBookingType, ff as MultiServiceBookingTypeWithLiterals, eG as Multilingual, dx as NestedAggregation, dv as NestedAggregationItem, dw as NestedAggregationItemKindOneOf, dF as NestedAggregationResults, dG as NestedAggregationResultsResultOneOf, aF as NestedAggregationType, fy as NestedAggregationTypeWithLiterals, dP as NestedResultValue, dQ as NestedResultValueResultOneOf, dV as NestedResults, dK as NestedValueAggregationResult, b7 as OnlineBooking, eu as Page, dd as Paging, dg as PagingMetadataV2, cr as ParticipantChoices, cn as ParticipantNotification, bp as ParticipantsPolicy, cx as ParticipantsRange, aZ as Payment, b5 as PaymentOptions, a_ as PaymentRateOneOf, at as PaymentStatus, fm as PaymentStatusWithLiterals, cc as PhoneCall, aQ as PlacementType, fJ as PlacementTypeWithLiterals, av as Platform, fo as PlatformWithLiterals, bi as PolicyDescription, ej as PricingPlanSelection, ex as Properties, eM as PropertiesChange, e0 as QueryBookingFormsRequest, eb as QueryCategoriesFilter, ea as QueryCategoriesRequest, e6 as QueryLocationsFilter, e5 as QueryLocationsRequest, dZ as QueryPoliciesRequest, ec as QueryServicesMultiLanguageRequest, ed as QueryServicesMultiLanguageResponse, d9 as QueryServicesRequest, df as QueryServicesResponse, da as QueryV2, db as QueryV2PagingMethodOneOf, ds as RangeAggregation, dE as RangeAggregationResult, dn as RangeBucket, dM as RangeResult, dI as RangeResults, bx as RankingOptions, ag as RankingOrder, f9 as RankingOrderWithLiterals, ab as RateType, f4 as RateTypeWithLiterals, ef as RemovedLocationSessionsAction, eg as RemovedLocationSessionsActionActionOptionsOneOf, aJ as RequestedFields, fC as RequestedFieldsWithLiterals, bn as ReschedulePolicy, aS as ResolutionMethod, fL as ResolutionMethodWithLiterals, bR as ResourceDetails, bM as ResourceGroup, bN as ResourceIds, bS as ResourceInfo, cd as ResourceSelection, an as ResourceTransparency, fg as ResourceTransparencyWithLiterals, bQ as ResourceType, bq as ResourcesPolicy, cD as RestoreInfo, dR as Results, bu as SaveCreditCardPolicy, dt as ScalarAggregation, dO as ScalarDateResult, dN as ScalarResult, aE as ScalarType, fx as ScalarTypeWithLiterals, bA as Schedule, dA as SearchDetails, di as SearchServicesRequest, au as SelectedPaymentOption, fn as SelectedPaymentOptionWithLiterals, ap as SelectionMethod, fi as SelectionMethodWithLiterals, bW as SeoSchema, cZ as ServiceAvailabilityConstraints, ct as ServiceChoice, cu as ServiceChoiceChoiceOneOf, cs as ServiceChoices, f0 as ServiceQuerySpec, bO as ServiceResource, bP as ServiceResourceSelectionOneOf, f1 as ServiceSearchSpec, aa as ServiceType, f3 as ServiceTypeWithLiterals, e$ as ServicesQueryResult, c2 as ServicesUrlsChanged, eX as SetAddOnsForGroupRequest, c1 as SetCustomSlugEvent, em as SetCustomSlugRequest, ee as SetServiceLocationsRequest, bZ as Settings, eO as SiteCloned, eN as SiteCreated, ew as SitePropertiesEvent, ev as SitePropertiesNotification, bT as Slug, aC as SortDirection, fv as SortDirectionWithLiterals, aA as SortOrder, ft as SortOrderWithLiterals, aB as SortType, fu as SortTypeWithLiterals, dc as Sorting, ah as SortingMethodType, fa as SortingMethodTypeWithLiterals, eF as SpecialHourPeriod, c_ as SplitInterval, bI as StaffMediaItem, bJ as StaffMediaItemItemOneOf, bH as StaffMember, bL as StaffMemberDetails, bv as StaffSortingPolicy, bw as StaffSortingPolicyOptionsOneOf, aN as Status, fG as StatusWithLiterals, ci as StreetAddress, ck as Subdivision, b3 as SubscriptionPayment, eH as SupportedLanguage, bY as Tag, b$ as TaxableAddress, al as TaxableAddressType, fe as TaxableAddressTypeWithLiterals, eE as TimePeriod, ai as Timing, fb as TimingWithLiterals, eJ as Translation, bU as URLs, ak as UnitType, fd as UnitTypeWithLiterals, eS as UpdateAddOnGroupRequest, c$ as UpdateServiceRequest, d0 as UpdateServiceResponse, es as UserDomainInfoChangedEvent, aW as V2Category, bC as V2Duration, b9 as V2Location, ba as V2LocationOptionsOneOf, d5 as V2ParticipantNotification, c0 as V2PhoneCall, az as V2RequestedFields, fs as V2RequestedFieldsWithLiterals, eA as V4Address, cN as ValidateServiceRequest, cO as ValidateServiceResponse, en as ValidateSlugRequest, dq as ValueAggregation, dr as ValueAggregationOptionsOneOf, dD as ValueAggregationResult, dL as ValueResult, dH as ValueResults, ar as ValueType, fk as ValueTypeWithLiterals, b2 as VariedPayment, bo as WaitlistPolicy, ay as WebhookIdentityType, fr as WebhookIdentityTypeWithLiterals, bK as WorkingHoursLocationCoverage, f2 as utils } from './bookings-services-v2-service-services.universal-yhQzgyJF.mjs';
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-CJCST65x.mjs';
3
+ export { cL as AccountInfo, e$ as AccountInfoMetadata, aL as Action, cH as ActionEvent, fF as ActionWithLiterals, aw as Actor, fq as ActorWithLiterals, eV as AddOn, eW as AddOnAddOnInfoOneOf, b$ as AddOnDetails, eX as AddOnGroupDetail, ae as AddOnPaymentOptions, f8 as AddOnPaymentOptionsWithLiterals, ch as Address, eC as AddressHint, ck as AddressLocation, ci as AddressStreetOneOf, dm as Aggregation, dD as AggregationData, dn as AggregationKindOneOf, dY as AggregationResults, dZ as AggregationResultsResultOneOf, dX as AggregationResultsScalarDateResult, dK as AggregationResultsScalarResult, aI as AggregationType, fC as AggregationTypeWithLiterals, cU as ApplicationError, bC as AvailabilityConstraints, eZ as BaseEventMetadata, bm as BookAfterStartPolicy, cA as BookedAddOn, c8 as BookedEntity, c9 as BookedEntityItemOneOf, cb as BookedResource, cf as BookedSchedule, ca as BookedSlot, c6 as Booking, e2 as BookingForm, c7 as BookingParticipantsInfoOneOf, bi as BookingPolicy, e0 as BookingPolicyWithServices, cn as BookingSource, as as BookingStatus, fm as BookingStatusWithLiterals, cV as BulkActionMetadata, cR as BulkCreateServicesRequest, d9 as BulkDeleteServicesByFilterRequest, d8 as BulkDeleteServicesRequest, cS as BulkServiceResult, d4 as BulkUpdateServicesByFilterRequest, d2 as BulkUpdateServicesRequest, bg as BusinessLocationOptions, e8 as BusinessLocations, eE as BusinessSchedule, bs as CancellationFeePolicy, bn as CancellationPolicy, bt as CancellationWindow, bu as CancellationWindowFeeOneOf, ez as Categories, er as Category, eq as CategoryNotification, eL as ChangeContext, eM as ChangeContextPayloadOneOf, aN as CloneErrors, fH as CloneErrorsWithLiterals, ep as CloneServiceRequest, bc as CommonAddress, bf as CommonAddressLocation, bd as CommonAddressStreetOneOf, cp as CommonIdentificationData, cq as CommonIdentificationDataIdOneOf, fO as CommonQueryWithEntityContext, fP as CommonSearchWithEntityContext, be as CommonStreetAddress, aj as CompletionRequirement, fd as CompletionRequirementWithLiterals, b9 as Conferencing, e4 as ConnectedService, eJ as ConsentPolicy, cg as ContactDetails, e5 as CountServicesRequest, eQ as CreateAddOnGroupRequest, cM as CreateServiceRequest, cN as CreateServiceResponse, aQ as CrudType, fK as CrudTypeWithLiterals, df as CursorPaging, dC as CursorPagingMetadata, d$ as CursorQueryPagingMethodOneOf, dk as CursorSearch, dl as CursorSearchPagingMethodOneOf, di as Cursors, cm as CustomFormField, bh as CustomLocationOptions, e9 as CustomLocations, bz as CustomOptions, b2 as CustomPayment, ea as CustomerLocations, bH as DailyConfig, dv as DateHistogramAggregation, dT as DateHistogramResult, dV as DateHistogramResults, cx as DateTimeRule, aS as DayOfWeek, fM as DayOfWeekWithLiterals, eR as DeleteAddOnGroupRequest, eS as DeleteAddOnGroupResponse, d5 as DeleteServiceRequest, d7 as DeleteServiceResponse, em as DisablePricingPlansForServiceRequest, b7 as DiscountInfo, cB as DomainEvent, cC as DomainEventBodyOneOf, c4 as DummyRequest, c5 as DummyResponse, cw as Duration, bE as DurationRange, bF as DurationRangeConfigOneOf, aq as DurationUnitType, fk as DurationUnitTypeWithLiterals, es as Empty, ej as EnablePricingPlansForServiceRequest, cD as EntityCreatedEvent, cG as EntityDeletedEvent, cF as EntityUpdatedEvent, aP as Event, e_ as EventMetadata, fJ as EventWithLiterals, bW as ExtendedFields, cQ as FieldViolation, ad as FirstChargeDateType, f7 as FirstChargeDateTypeWithLiterals, b0 as FixedPayment, cr as FlowControlSettings, aY as Form, e3 as FormDetails, aZ as FormSettings, ac as FrequencyType, f6 as FrequencyTypeWithLiterals, b5 as FullUpfrontPayment, eD as GeoCoordinates, cY as GetServiceAvailabilityConstraintsRequest, cZ as GetServiceAvailabilityConstraintsResponse, cW as GetServiceRequest, cX as GetServiceResponse, dz as GroupByAggregation, dA as GroupByAggregationKindOneOf, dU as GroupByValueResults, bG as HourlyConfig, eu as HtmlSitePublished, cJ as IdentificationData, cK as IdentificationDataIdOneOf, ax as IdentityType, fr as IdentityTypeWithLiterals, dq as IncludeMissingValuesOptions, bA as IntakeFormPolicy, aH as Interval, fB as IntervalWithLiterals, el as InvalidPricingPlan, aM as InvalidSlugError, fG as InvalidSlugErrorWithLiterals, cT as ItemMetadata, bY as Keyword, bk as LimitEarlyBookingPolicy, bl as LimitLateBookingPolicy, eU as ListAddOnGroupsByServiceIdRequest, eA as Locale, cc as Location, ao as LocationType, af as LocationTypeEnumLocationType, f9 as LocationTypeEnumLocationTypeWithLiterals, fi as LocationTypeWithLiterals, d3 as MaskedService, aU as Media, aV as MediaItem, aW as MediaItemItemOneOf, cI as MessageEnvelope, aE as MissingValues, fy as MissingValuesWithLiterals, aJ as Mode, fD as ModeWithLiterals, b1 as Money, ei as MoveToNewLocationsOptions, cz as MultiServiceBookingInfo, am as MultiServiceBookingType, fg as MultiServiceBookingTypeWithLiterals, eH as Multilingual, dy as NestedAggregation, dw as NestedAggregationItem, dx as NestedAggregationItemKindOneOf, dG as NestedAggregationResults, dH as NestedAggregationResultsResultOneOf, aG as NestedAggregationType, fA as NestedAggregationTypeWithLiterals, dQ as NestedResultValue, dR as NestedResultValueResultOneOf, dW as NestedResults, dL as NestedValueAggregationResult, b8 as OnlineBooking, ev as Page, de as Paging, dh as PagingMetadataV2, cs as ParticipantChoices, co as ParticipantNotification, bq as ParticipantsPolicy, cy as ParticipantsRange, a_ as Payment, b6 as PaymentOptions, a$ as PaymentRateOneOf, at as PaymentStatus, fn as PaymentStatusWithLiterals, cd as PhoneCall, aR as PlacementType, fL as PlacementTypeWithLiterals, av as Platform, fp as PlatformWithLiterals, bj as PolicyDescription, ek as PricingPlanSelection, ey as Properties, eN as PropertiesChange, e1 as QueryBookingFormsRequest, ec as QueryCategoriesFilter, eb as QueryCategoriesRequest, e7 as QueryLocationsFilter, e6 as QueryLocationsRequest, d_ as QueryPoliciesRequest, ed as QueryServicesMultiLanguageRequest, ee as QueryServicesMultiLanguageResponse, da as QueryServicesRequest, dg as QueryServicesResponse, db as QueryV2, dc as QueryV2PagingMethodOneOf, dt as RangeAggregation, dF as RangeAggregationResult, dp as RangeBucket, dN as RangeResult, dJ as RangeResults, by as RankingOptions, ag as RankingOrder, fa as RankingOrderWithLiterals, ab as RateType, f5 as RateTypeWithLiterals, eg as RemovedLocationSessionsAction, eh as RemovedLocationSessionsActionActionOptionsOneOf, aK as RequestedFields, fE as RequestedFieldsWithLiterals, bo as ReschedulePolicy, aT as ResolutionMethod, fN as ResolutionMethodWithLiterals, bS as ResourceDetails, bN as ResourceGroup, bO as ResourceIds, bT as ResourceInfo, ce as ResourceSelection, an as ResourceTransparency, fh as ResourceTransparencyWithLiterals, bR as ResourceType, br as ResourcesPolicy, cE as RestoreInfo, dS as Results, bv as SaveCreditCardPolicy, du as ScalarAggregation, dP as ScalarDateResult, dO as ScalarResult, aF as ScalarType, fz as ScalarTypeWithLiterals, bB as Schedule, dB as SearchDetails, dj as SearchServicesRequest, au as SelectedPaymentOption, fo as SelectedPaymentOptionWithLiterals, ap as SelectionMethod, fj as SelectionMethodWithLiterals, bX as SeoSchema, c_ as ServiceAvailabilityConstraints, cu as ServiceChoice, cv as ServiceChoiceChoiceOneOf, ct as ServiceChoices, f1 as ServiceQuerySpec, bP as ServiceResource, bQ as ServiceResourceSelectionOneOf, f2 as ServiceSearchSpec, aa as ServiceType, f4 as ServiceTypeWithLiterals, f0 as ServicesQueryResult, c3 as ServicesUrlsChanged, eY as SetAddOnsForGroupRequest, c2 as SetCustomSlugEvent, en as SetCustomSlugRequest, ef as SetServiceLocationsRequest, b_ as Settings, eP as SiteCloned, eO as SiteCreated, ex as SitePropertiesEvent, ew as SitePropertiesNotification, bU as Slug, aD as SortDirection, fx as SortDirectionWithLiterals, aB as SortOrder, fv as SortOrderWithLiterals, aC as SortType, fw as SortTypeWithLiterals, dd as Sorting, ah as SortingMethodType, fb as SortingMethodTypeWithLiterals, eG as SpecialHourPeriod, c$ as SplitInterval, bJ as StaffMediaItem, bK as StaffMediaItemItemOneOf, bI as StaffMember, bM as StaffMemberDetails, bw as StaffSortingPolicy, bx as StaffSortingPolicyOptionsOneOf, aO as Status, fI as StatusWithLiterals, cj as StreetAddress, cl as Subdivision, b4 as SubscriptionPayment, eI as SupportedLanguage, bZ as Tag, c0 as TaxableAddress, al as TaxableAddressType, ff as TaxableAddressTypeWithLiterals, eF as TimePeriod, ai as Timing, fc as TimingWithLiterals, eK as Translation, bV as URLs, ak as UnitType, fe as UnitTypeWithLiterals, eT as UpdateAddOnGroupRequest, d0 as UpdateServiceRequest, d1 as UpdateServiceResponse, et as UserDomainInfoChangedEvent, aX as V2Category, bD as V2Duration, ba as V2Location, bb as V2LocationOptionsOneOf, d6 as V2ParticipantNotification, c1 as V2PhoneCall, aA as V2RequestedFields, fu as V2RequestedFieldsWithLiterals, eB as V4Address, cO as ValidateServiceRequest, cP as ValidateServiceResponse, eo as ValidateSlugRequest, dr as ValueAggregation, ds as ValueAggregationOptionsOneOf, dE as ValueAggregationResult, dM as ValueResult, dI as ValueResults, ar as ValueType, fl as ValueTypeWithLiterals, b3 as VariedPayment, bp as WaitlistPolicy, ay as WebhookIdentityType, fs as WebhookIdentityTypeWithLiterals, bL as WorkingHoursLocationCoverage, az as WorkingHoursMode, ft as WorkingHoursModeWithLiterals, f3 as utils } from './bookings-services-v2-service-services.universal-CJCST65x.mjs';
4
4
 
5
5
  declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
6
6
  interface CreateServiceSignature {
@@ -1905,6 +1905,12 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
1905
1905
  WebhookIdentityType2["APP"] = "APP";
1906
1906
  return WebhookIdentityType2;
1907
1907
  })(WebhookIdentityType || {});
1908
+ var WorkingHoursMode = /* @__PURE__ */ ((WorkingHoursMode2) => {
1909
+ WorkingHoursMode2["STAFF"] = "STAFF";
1910
+ WorkingHoursMode2["STAFF_INTERSECTED_WITH_SERVICE"] = "STAFF_INTERSECTED_WITH_SERVICE";
1911
+ WorkingHoursMode2["SERVICE"] = "SERVICE";
1912
+ return WorkingHoursMode2;
1913
+ })(WorkingHoursMode || {});
1908
1914
  var V2RequestedFields = /* @__PURE__ */ ((V2RequestedFields2) => {
1909
1915
  V2RequestedFields2["STAFF_MEMBER_DETAILS"] = "STAFF_MEMBER_DETAILS";
1910
1916
  V2RequestedFields2["RESOURCE_TYPE_DETAILS"] = "RESOURCE_TYPE_DETAILS";
@@ -3963,6 +3969,7 @@ export {
3963
3969
  V2RequestedFields,
3964
3970
  ValueType,
3965
3971
  WebhookIdentityType,
3972
+ WorkingHoursMode,
3966
3973
  bulkCreateServices4 as bulkCreateServices,
3967
3974
  bulkDeleteServices4 as bulkDeleteServices,
3968
3975
  bulkDeleteServicesByFilter4 as bulkDeleteServicesByFilter,