@wix/auto_sdk_bookings_services 1.0.239 → 1.0.241

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-Dorio3C3.d.ts → bookings-services-v2-service-services.universal-DV13bOtS.d.ts} +26 -111
  2. package/build/cjs/index.d.ts +3 -2
  3. package/build/cjs/index.js +0 -16
  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 +0 -16
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +26 -112
  9. package/build/cjs/meta.js +0 -16
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-Dorio3C3.d.mts → bookings-services-v2-service-services.universal-DV13bOtS.d.mts} +26 -111
  12. package/build/es/index.d.mts +3 -2
  13. package/build/es/index.mjs +0 -14
  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 +0 -14
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +26 -112
  19. package/build/es/meta.mjs +0 -14
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-mc9Kk_qi.d.ts → bookings-services-v2-service-services.universal-BTtc84tg.d.ts} +26 -111
  22. package/build/internal/cjs/index.d.ts +3 -2
  23. package/build/internal/cjs/index.js +0 -16
  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 +0 -16
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +26 -112
  29. package/build/internal/cjs/meta.js +0 -16
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-mc9Kk_qi.d.mts → bookings-services-v2-service-services.universal-BTtc84tg.d.mts} +26 -111
  32. package/build/internal/es/index.d.mts +3 -2
  33. package/build/internal/es/index.mjs +0 -14
  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 +0 -14
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +26 -112
  39. package/build/internal/es/meta.mjs +0 -14
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -1307,6 +1307,27 @@ interface StaffMediaItemItemOneOf {
1307
1307
  /** Details of the image associated with the staff, such as URL and size. */
1308
1308
  image?: string;
1309
1309
  }
1310
+ /**
1311
+ * Working hours location coverage derived from Calendar v3 WORKING_HOURS events
1312
+ * (`NONE` and `MASTER` recurrence types). The server paginates through Calendar results
1313
+ * (100 events per page) until all matching events are collected.
1314
+ *
1315
+ * Coverage states when enrichment is requested:
1316
+ * + `available_at_all_locations = true`: Staff applies to every business location. Set when the staff
1317
+ * uses default business working hours, or has any WORKING_HOURS event without a location ID
1318
+ * (including when mixed with location-specific events).
1319
+ * + `available_at_all_locations = false` with non-empty `location_ids`: Staff has location-specific
1320
+ * WORKING_HOURS only. Show the staff member only when the selected location is in `location_ids`.
1321
+ * + `available_at_all_locations = false` with empty `location_ids`: Staff has working-hours schedules
1322
+ * but no applicable location coverage was found.
1323
+ *
1324
+ * Recommended client filter:
1325
+ * `availableAtAllLocations || locationIds.includes(selectedLocationId)`
1326
+ *
1327
+ * Omitted when `STAFF_WORKING_HOURS_LOCATIONS` is not requested.
1328
+ */
1329
+ interface WorkingHoursLocationCoverage {
1330
+ }
1310
1331
  interface StaffMemberDetails {
1311
1332
  /**
1312
1333
  * Staff members providing the service. For appointments only.
@@ -4081,7 +4102,7 @@ type CloneErrorsWithLiterals = CloneErrors | 'OPTIONS_AND_VARIANTS' | 'FORM';
4081
4102
  /** An event sent every time a category entity is changed. */
4082
4103
  interface CategoryNotification {
4083
4104
  category?: Category;
4084
- event?: CategoryNotificationEventWithLiterals;
4105
+ event?: EventWithLiterals;
4085
4106
  }
4086
4107
  /** Categories are used to group multiple services together. A service must be associated with a category in order to be exposed in the Wix Bookings UI. */
4087
4108
  interface Category {
@@ -4114,7 +4135,7 @@ declare enum Status {
4114
4135
  }
4115
4136
  /** @enumType */
4116
4137
  type StatusWithLiterals = Status | 'CREATED' | 'DELETED';
4117
- declare enum CategoryNotificationEvent {
4138
+ declare enum Event {
4118
4139
  /** Category was updated. */
4119
4140
  Updated = "Updated",
4120
4141
  /** Category was deleted. */
@@ -4123,116 +4144,9 @@ declare enum CategoryNotificationEvent {
4123
4144
  Created = "Created"
4124
4145
  }
4125
4146
  /** @enumType */
4126
- type CategoryNotificationEventWithLiterals = CategoryNotificationEvent | 'Updated' | 'Deleted' | 'Created';
4147
+ type EventWithLiterals = Event | 'Updated' | 'Deleted' | 'Created';
4127
4148
  interface Empty {
4128
4149
  }
4129
- interface BenefitNotification {
4130
- /**
4131
- * Plan unique ID
4132
- * @format GUID
4133
- */
4134
- planId?: string;
4135
- /**
4136
- * App def ID
4137
- * @format GUID
4138
- */
4139
- appDefId?: string;
4140
- /** Current benefit details */
4141
- benefit?: Benefit;
4142
- /** Previous benefit */
4143
- prevBenefit?: Benefit;
4144
- /** Notification event */
4145
- event?: EventWithLiterals;
4146
- }
4147
- interface Benefit {
4148
- /**
4149
- * Benefit unique ID
4150
- * @format GUID
4151
- * @readonly
4152
- */
4153
- _id?: string | null;
4154
- /** Benefit Type */
4155
- benefitType?: BenefitTypeWithLiterals;
4156
- /**
4157
- * Resource IDs that serves by this benefit
4158
- * @format GUID
4159
- */
4160
- resourceIds?: string[];
4161
- /** Amount of credits that provided by this benefit */
4162
- creditAmount?: number | null;
4163
- /**
4164
- * additional details related to benefit; limited to 20 entries, 20 symbols for key and 20 symbols for value
4165
- * @maxSize 20
4166
- */
4167
- customFields?: Record<string, string>;
4168
- /** return value only in case it required in the ListRequest, true means that benefit's type could be updated */
4169
- editable?: boolean | null;
4170
- /** Benefit behavior */
4171
- behavior?: Behavior;
4172
- /**
4173
- * Id of the app associated with this benefit
4174
- * @format GUID
4175
- * @readonly
4176
- */
4177
- appDefId?: string | null;
4178
- }
4179
- interface EntryPass {
4180
- }
4181
- interface Discount extends DiscountDiscountOneOf {
4182
- /**
4183
- * Fixed-rate percent off discount
4184
- * @decimalValue options { gt:0, lte:100, maxScale:2 }
4185
- */
4186
- percentOffRate?: string;
4187
- /**
4188
- * Absolute amount discount
4189
- * @decimalValue options { gt:0, maxScale:2 }
4190
- */
4191
- moneyOffAmount?: string;
4192
- }
4193
- /** @oneof */
4194
- interface DiscountDiscountOneOf {
4195
- /**
4196
- * Fixed-rate percent off discount
4197
- * @decimalValue options { gt:0, lte:100, maxScale:2 }
4198
- */
4199
- percentOffRate?: string;
4200
- /**
4201
- * Absolute amount discount
4202
- * @decimalValue options { gt:0, maxScale:2 }
4203
- */
4204
- moneyOffAmount?: string;
4205
- }
4206
- declare enum BenefitType {
4207
- /** Should never be used */
4208
- UNDEFINED = "UNDEFINED",
4209
- /** Limited benefit type */
4210
- LIMITED = "LIMITED",
4211
- /** Unlimited benefit type */
4212
- UNLIMITED = "UNLIMITED"
4213
- }
4214
- /** @enumType */
4215
- type BenefitTypeWithLiterals = BenefitType | 'UNDEFINED' | 'LIMITED' | 'UNLIMITED';
4216
- interface Behavior extends BehaviorBehaviorOneOf {
4217
- /** Entry pass for resources, e.g. a ticket for Bookings service or a ticket for Events. */
4218
- defaultBehavior?: EntryPass;
4219
- /** Discount applied to paid resources */
4220
- discount?: Discount;
4221
- }
4222
- /** @oneof */
4223
- interface BehaviorBehaviorOneOf {
4224
- /** Entry pass for resources, e.g. a ticket for Bookings service or a ticket for Events. */
4225
- defaultBehavior?: EntryPass;
4226
- /** Discount applied to paid resources */
4227
- discount?: Discount;
4228
- }
4229
- declare enum Event {
4230
- Updated = "Updated",
4231
- Deleted = "Deleted",
4232
- Created = "Created"
4233
- }
4234
- /** @enumType */
4235
- type EventWithLiterals = Event | 'Updated' | 'Deleted' | 'Created';
4236
4150
  interface UserDomainInfoChangedEvent {
4237
4151
  domainName?: string;
4238
4152
  crudType?: CrudTypeWithLiterals;
@@ -5166,6 +5080,7 @@ interface BulkCreateServicesOptions {
5166
5080
  *
5167
5081
  * Supported values:
5168
5082
  * + `STAFF_MEMBER_DETAILS`: Returns `service.staffMemberDetails`.
5083
+ * + `STAFF_WORKING_HOURS_LOCATIONS`: Requires `STAFF_MEMBER_DETAILS`. Returns `service.staffMemberDetails.staffMembers[].workingHoursLocationCoverage` for filtering staff by business location.
5169
5084
  * + `RESOURCE_TYPE_DETAILS`: Returns the name of each service resource's resource type. See `service.serviceResources.resourceType.name`.
5170
5085
  * + `DISCOUNT_INFO_DETAILS`: Returns `service.payment.discountInfo`.
5171
5086
  * + `RESOURCE_DETAILS`: Returns the name of each individual resource assigned to a service resource. See `service.serviceResources.resourceDetails`.
@@ -6478,4 +6393,4 @@ interface SetAddOnsForGroupOptions {
6478
6393
  addOnIds: string[] | null;
6479
6394
  }
6480
6395
 
6481
- export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type Payment as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, SortOrder as aA, SortType as aB, SortDirection as aC, MissingValues as aD, ScalarType as aE, NestedAggregationType as aF, Interval as aG, AggregationType as aH, Mode as aI, RequestedFields as aJ, Action as aK, InvalidSlugError as aL, CloneErrors as aM, Status as aN, CategoryNotificationEvent as aO, BenefitType as aP, Event as aQ, CrudType as aR, PlacementType as aS, DayOfWeek as aT, ResolutionMethod as aU, type Media as aV, type MediaItem as aW, type MediaItemItemOneOf as aX, type V2Category as aY, type Form as aZ, type FormSettings as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, TaxableAddressType as al, MultiServiceBookingType as am, ResourceTransparency as an, LocationType as ao, SelectionMethod as ap, DurationUnitType as aq, ValueType as ar, BookingStatus as as, PaymentStatus as at, SelectedPaymentOption as au, Platform as av, Actor as aw, IdentityType as ax, WebhookIdentityType as ay, V2RequestedFields as az, type UpdateServiceValidationErrors as b, type AddOnDetails as b$, type PaymentRateOneOf as b0, type FixedPayment as b1, type Money as b2, type CustomPayment as b3, type VariedPayment as b4, type SubscriptionPayment as b5, type FullUpfrontPayment as b6, type PaymentOptions as b7, type DiscountInfo as b8, type OnlineBooking as b9, type CustomOptions as bA, type IntakeFormPolicy as bB, type Schedule as bC, type AvailabilityConstraints as bD, type V2Duration as bE, type DurationRange as bF, type DurationRangeConfigOneOf as bG, type HourlyConfig as bH, type DailyConfig as bI, type StaffMember as bJ, type StaffMediaItem as bK, type StaffMediaItemItemOneOf as bL, type StaffMemberDetails as bM, type ResourceGroup as bN, type ResourceIds as bO, type ServiceResource as bP, type ServiceResourceSelectionOneOf as bQ, type ResourceType as bR, type 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 Conferencing as ba, type V2Location as bb, type V2LocationOptionsOneOf as bc, type CommonAddress as bd, type CommonAddressStreetOneOf as be, type CommonStreetAddress as bf, type CommonAddressLocation as bg, type BusinessLocationOptions as bh, type CustomLocationOptions as bi, type BookingPolicy as bj, type PolicyDescription as bk, type LimitEarlyBookingPolicy as bl, type LimitLateBookingPolicy as bm, type BookAfterStartPolicy as bn, type CancellationPolicy as bo, type ReschedulePolicy as bp, type WaitlistPolicy as bq, type ParticipantsPolicy as br, type ResourcesPolicy as bs, type CancellationFeePolicy as bt, type CancellationWindow as bu, type CancellationWindowFeeOneOf as bv, type SaveCreditCardPolicy as bw, type StaffSortingPolicy as bx, type StaffSortingPolicyOptionsOneOf as by, type RankingOptions as bz, type BulkUpdateServicesOptions as c, type UpdateServiceResponse 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 DomainEventBodyOneOf as cA, type EntityCreatedEvent as cB, type RestoreInfo as cC, type EntityUpdatedEvent as cD, type EntityDeletedEvent as cE, type ActionEvent as cF, type MessageEnvelope as cG, type IdentificationData as cH, type IdentificationDataIdOneOf as cI, type AccountInfo as cJ, type CreateServiceRequest as cK, type CreateServiceResponse as cL, type ValidateServiceRequest as cM, type ValidateServiceResponse as cN, type FieldViolation as cO, type BulkCreateServicesRequest as cP, type BulkServiceResult as cQ, type ItemMetadata as cR, type ApplicationError as cS, type BulkActionMetadata as cT, type GetServiceRequest as cU, type GetServiceResponse as cV, type GetServiceAvailabilityConstraintsRequest as cW, type GetServiceAvailabilityConstraintsResponse as cX, type ServiceAvailabilityConstraints as cY, type SplitInterval as cZ, type UpdateServiceRequest 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 MultiServiceBookingInfo as cx, type BookedAddOn as cy, type DomainEvent as cz, type BulkUpdateServicesResponse as d, type QueryBookingFormsRequest as d$, type BulkUpdateServicesRequest as d0, type MaskedService as d1, type BulkUpdateServicesByFilterRequest as d2, type DeleteServiceRequest as d3, type V2ParticipantNotification as d4, type DeleteServiceResponse as d5, type BulkDeleteServicesRequest as d6, type BulkDeleteServicesByFilterRequest as d7, type QueryServicesRequest as d8, type QueryV2 as d9, type CursorPagingMetadata as dA, type AggregationData as dB, type ValueAggregationResult as dC, type RangeAggregationResult as dD, type NestedAggregationResults as dE, type NestedAggregationResultsResultOneOf as dF, type ValueResults as dG, type RangeResults as dH, type AggregationResultsScalarResult as dI, type NestedValueAggregationResult as dJ, type ValueResult as dK, type RangeResult as dL, type ScalarResult as dM, type ScalarDateResult as dN, type NestedResultValue as dO, type NestedResultValueResultOneOf as dP, type Results as dQ, type DateHistogramResult as dR, type GroupByValueResults as dS, type DateHistogramResults as dT, type NestedResults as dU, type AggregationResultsScalarDateResult as dV, type AggregationResults as dW, type AggregationResultsResultOneOf as dX, type QueryPoliciesRequest as dY, type CursorQueryPagingMethodOneOf as dZ, type BookingPolicyWithServices as d_, type QueryV2PagingMethodOneOf as da, type Sorting as db, type Paging as dc, type CursorPaging as dd, type QueryServicesResponse as de, type PagingMetadataV2 as df, type Cursors as dg, type SearchServicesRequest as dh, type CursorSearch as di, type CursorSearchPagingMethodOneOf as dj, type Aggregation as dk, type AggregationKindOneOf as dl, type RangeBucket as dm, type IncludeMissingValuesOptions as dn, type ValueAggregation as dp, type ValueAggregationOptionsOneOf as dq, type RangeAggregation as dr, type ScalarAggregation as ds, type DateHistogramAggregation as dt, type NestedAggregationItem as du, type NestedAggregationItemKindOneOf as dv, type NestedAggregation as dw, type GroupByAggregation as dx, type GroupByAggregationKindOneOf as dy, type SearchDetails as dz, type BulkUpdateServicesByFilterOptions as e, type AddOnAddOnInfoOneOf as e$, type BookingForm as e0, type FormDetails as e1, type ConnectedService as e2, type CountServicesRequest as e3, type QueryLocationsRequest as e4, type QueryLocationsFilter as e5, type BusinessLocations as e6, type CustomLocations as e7, type CustomerLocations as e8, type QueryCategoriesRequest as e9, type Page as eA, type SitePropertiesNotification as eB, type SitePropertiesEvent as eC, type Properties as eD, type Categories as eE, type Locale as eF, type V4Address as eG, type AddressHint as eH, type GeoCoordinates as eI, type BusinessSchedule as eJ, type TimePeriod as eK, type SpecialHourPeriod as eL, type Multilingual as eM, type SupportedLanguage as eN, type ConsentPolicy as eO, type Translation as eP, type ChangeContext as eQ, type ChangeContextPayloadOneOf as eR, type PropertiesChange as eS, type SiteCreated as eT, type SiteCloned as eU, type CreateAddOnGroupRequest as eV, type DeleteAddOnGroupRequest as eW, type DeleteAddOnGroupResponse as eX, type UpdateAddOnGroupRequest as eY, type ListAddOnGroupsByServiceIdRequest as eZ, type AddOn as e_, type QueryCategoriesFilter as ea, type QueryServicesMultiLanguageRequest as eb, type QueryServicesMultiLanguageResponse as ec, type SetServiceLocationsRequest as ed, type RemovedLocationSessionsAction as ee, type RemovedLocationSessionsActionActionOptionsOneOf as ef, type MoveToNewLocationsOptions as eg, type EnablePricingPlansForServiceRequest as eh, type PricingPlanSelection as ei, type InvalidPricingPlan as ej, type DisablePricingPlansForServiceRequest as ek, type SetCustomSlugRequest as el, type ValidateSlugRequest as em, type CloneServiceRequest as en, type CategoryNotification as eo, type Category as ep, type Empty as eq, type BenefitNotification as er, type Benefit as es, type EntryPass as et, type Discount as eu, type DiscountDiscountOneOf as ev, type Behavior as ew, type BehaviorBehaviorOneOf as ex, type UserDomainInfoChangedEvent as ey, type HtmlSitePublished as ez, type BulkUpdateServicesByFilterResponse as f, getService as f$, type AddOnGroupDetail as f0, type SetAddOnsForGroupRequest as f1, type BaseEventMetadata as f2, type EventMetadata as f3, type AccountInfoMetadata as f4, type ServicesQueryResult as f5, type ServiceQuerySpec as f6, type ServiceSearchSpec as f7, utils as f8, type ServiceTypeWithLiterals as f9, type SortTypeWithLiterals as fA, type SortDirectionWithLiterals as fB, type MissingValuesWithLiterals as fC, type ScalarTypeWithLiterals as fD, type NestedAggregationTypeWithLiterals as fE, type IntervalWithLiterals as fF, type AggregationTypeWithLiterals as fG, type ModeWithLiterals as fH, type RequestedFieldsWithLiterals as fI, type ActionWithLiterals as fJ, type InvalidSlugErrorWithLiterals as fK, type CloneErrorsWithLiterals as fL, type StatusWithLiterals as fM, type CategoryNotificationEventWithLiterals as fN, type BenefitTypeWithLiterals as fO, type EventWithLiterals as fP, type CrudTypeWithLiterals as fQ, type PlacementTypeWithLiterals as fR, type DayOfWeekWithLiterals as fS, type ResolutionMethodWithLiterals as fT, type CommonQueryWithEntityContext as fU, type CommonSearchWithEntityContext as fV, onServiceCreated as fW, onServiceDeleted as fX, onServiceUpdated as fY, createService as fZ, bulkCreateServices as f_, type RateTypeWithLiterals as fa, type FrequencyTypeWithLiterals as fb, type FirstChargeDateTypeWithLiterals as fc, type AddOnPaymentOptionsWithLiterals as fd, type LocationTypeEnumLocationTypeWithLiterals as fe, type RankingOrderWithLiterals as ff, type SortingMethodTypeWithLiterals as fg, type TimingWithLiterals as fh, type CompletionRequirementWithLiterals as fi, type UnitTypeWithLiterals as fj, type TaxableAddressTypeWithLiterals as fk, type MultiServiceBookingTypeWithLiterals as fl, type ResourceTransparencyWithLiterals as fm, type LocationTypeWithLiterals as fn, type SelectionMethodWithLiterals as fo, type DurationUnitTypeWithLiterals as fp, type ValueTypeWithLiterals as fq, type BookingStatusWithLiterals as fr, type PaymentStatusWithLiterals as fs, type SelectedPaymentOptionWithLiterals as ft, type PlatformWithLiterals as fu, type ActorWithLiterals as fv, type IdentityTypeWithLiterals as fw, type WebhookIdentityTypeWithLiterals as fx, type V2RequestedFieldsWithLiterals as fy, type SortOrderWithLiterals as fz, type BulkDeleteServicesOptions as g, updateService as g0, bulkUpdateServices as g1, bulkUpdateServicesByFilter as g2, deleteService as g3, bulkDeleteServices as g4, bulkDeleteServicesByFilter as g5, queryServices as g6, queryPolicies as g7, queryBookingForms as g8, countServices as g9, queryLocations as ga, queryCategories as gb, setServiceLocations as gc, enablePricingPlansForService as gd, disablePricingPlansForService as ge, setCustomSlug as gf, validateSlug as gg, cloneService as gh, createAddOnGroup as gi, deleteAddOnGroup as gj, updateAddOnGroup as gk, listAddOnGroupsByServiceId as gl, setAddOnsForGroup as gm, 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 };
6396
+ 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 BulkUpdateServicesRequest 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 EntityCreatedEvent as cA, type RestoreInfo as cB, type EntityUpdatedEvent as cC, type EntityDeletedEvent as cD, type ActionEvent as cE, type MessageEnvelope as cF, type IdentificationData as cG, type IdentificationDataIdOneOf as cH, type AccountInfo as cI, type CreateServiceRequest as cJ, type CreateServiceResponse as cK, type ValidateServiceRequest as cL, type ValidateServiceResponse as cM, type FieldViolation as cN, type BulkCreateServicesRequest as cO, type BulkServiceResult as cP, type ItemMetadata as cQ, type ApplicationError as cR, type BulkActionMetadata as cS, type GetServiceRequest as cT, type GetServiceResponse as cU, type GetServiceAvailabilityConstraintsRequest as cV, type GetServiceAvailabilityConstraintsResponse as cW, type ServiceAvailabilityConstraints as cX, type SplitInterval as cY, type UpdateServiceRequest as cZ, type UpdateServiceResponse 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 MultiServiceBookingInfo as cw, type BookedAddOn as cx, type DomainEvent as cy, type DomainEventBodyOneOf as cz, type BulkUpdateServicesResponse as d, type BookingForm as d$, type MaskedService as d0, type BulkUpdateServicesByFilterRequest as d1, type DeleteServiceRequest as d2, type V2ParticipantNotification as d3, type DeleteServiceResponse as d4, type BulkDeleteServicesRequest as d5, type BulkDeleteServicesByFilterRequest as d6, type QueryServicesRequest as d7, type QueryV2 as d8, type QueryV2PagingMethodOneOf as d9, type AggregationData as dA, type ValueAggregationResult as dB, type RangeAggregationResult as dC, type NestedAggregationResults as dD, type NestedAggregationResultsResultOneOf as dE, type ValueResults as dF, type RangeResults as dG, type AggregationResultsScalarResult as dH, type NestedValueAggregationResult as dI, type ValueResult as dJ, type RangeResult as dK, type ScalarResult as dL, type ScalarDateResult as dM, type NestedResultValue as dN, type NestedResultValueResultOneOf as dO, type Results as dP, type DateHistogramResult as dQ, type GroupByValueResults as dR, type DateHistogramResults as dS, type NestedResults as dT, type AggregationResultsScalarDateResult as dU, type AggregationResults as dV, type AggregationResultsResultOneOf as dW, type QueryPoliciesRequest as dX, type CursorQueryPagingMethodOneOf as dY, type BookingPolicyWithServices as dZ, type QueryBookingFormsRequest as d_, type Sorting as da, type Paging as db, type CursorPaging as dc, type QueryServicesResponse as dd, type PagingMetadataV2 as de, type Cursors as df, type SearchServicesRequest as dg, type CursorSearch as dh, type CursorSearchPagingMethodOneOf as di, type Aggregation as dj, type AggregationKindOneOf as dk, type RangeBucket as dl, type IncludeMissingValuesOptions as dm, type ValueAggregation as dn, type ValueAggregationOptionsOneOf as dp, type RangeAggregation as dq, type ScalarAggregation as dr, type DateHistogramAggregation as ds, type NestedAggregationItem as dt, type NestedAggregationItemKindOneOf as du, type NestedAggregation as dv, type GroupByAggregation as dw, type GroupByAggregationKindOneOf as dx, type SearchDetails as dy, type CursorPagingMetadata as dz, type BulkUpdateServicesByFilterOptions as e, type ServiceSearchSpec as e$, type FormDetails as e0, type ConnectedService as e1, type CountServicesRequest as e2, type QueryLocationsRequest as e3, type QueryLocationsFilter as e4, type BusinessLocations as e5, type CustomLocations as e6, type CustomerLocations as e7, type QueryCategoriesRequest as e8, type QueryCategoriesFilter as e9, type GeoCoordinates as eA, type BusinessSchedule as eB, type TimePeriod as eC, type SpecialHourPeriod as eD, type Multilingual as eE, type SupportedLanguage as eF, type ConsentPolicy as eG, type Translation as eH, type ChangeContext as eI, type ChangeContextPayloadOneOf as eJ, type PropertiesChange as eK, type SiteCreated as eL, type SiteCloned as eM, type CreateAddOnGroupRequest as eN, type DeleteAddOnGroupRequest as eO, type DeleteAddOnGroupResponse as eP, type UpdateAddOnGroupRequest as eQ, type ListAddOnGroupsByServiceIdRequest as eR, type AddOn as eS, type AddOnAddOnInfoOneOf as eT, type AddOnGroupDetail as eU, type SetAddOnsForGroupRequest as eV, type BaseEventMetadata as eW, type EventMetadata as eX, type AccountInfoMetadata as eY, type ServicesQueryResult as eZ, type ServiceQuerySpec as e_, type QueryServicesMultiLanguageRequest as ea, type QueryServicesMultiLanguageResponse as eb, type SetServiceLocationsRequest as ec, type RemovedLocationSessionsAction as ed, type RemovedLocationSessionsActionActionOptionsOneOf as ee, type MoveToNewLocationsOptions as ef, type EnablePricingPlansForServiceRequest as eg, type PricingPlanSelection as eh, type InvalidPricingPlan as ei, type DisablePricingPlansForServiceRequest as ej, type SetCustomSlugRequest as ek, type ValidateSlugRequest as el, type CloneServiceRequest as em, type CategoryNotification as en, type Category as eo, type Empty as ep, type UserDomainInfoChangedEvent as eq, type HtmlSitePublished as er, type Page as es, type SitePropertiesNotification as et, type SitePropertiesEvent as eu, type Properties as ev, type Categories as ew, type Locale as ex, type V4Address as ey, type AddressHint as ez, type BulkUpdateServicesByFilterResponse as f, countServices as f$, utils as f0, type ServiceTypeWithLiterals as f1, type RateTypeWithLiterals as f2, type FrequencyTypeWithLiterals as f3, type FirstChargeDateTypeWithLiterals as f4, type AddOnPaymentOptionsWithLiterals as f5, type LocationTypeEnumLocationTypeWithLiterals as f6, type RankingOrderWithLiterals as f7, type SortingMethodTypeWithLiterals as f8, type TimingWithLiterals as f9, type RequestedFieldsWithLiterals as fA, type ActionWithLiterals as fB, type InvalidSlugErrorWithLiterals as fC, type CloneErrorsWithLiterals as fD, type StatusWithLiterals as fE, type EventWithLiterals as fF, type CrudTypeWithLiterals as fG, type PlacementTypeWithLiterals as fH, type DayOfWeekWithLiterals as fI, type ResolutionMethodWithLiterals as fJ, type CommonQueryWithEntityContext as fK, type CommonSearchWithEntityContext as fL, onServiceCreated as fM, onServiceDeleted as fN, onServiceUpdated as fO, createService as fP, bulkCreateServices as fQ, getService as fR, updateService as fS, bulkUpdateServices as fT, bulkUpdateServicesByFilter as fU, deleteService as fV, bulkDeleteServices as fW, bulkDeleteServicesByFilter as fX, queryServices as fY, queryPolicies as fZ, queryBookingForms as f_, type CompletionRequirementWithLiterals as fa, type UnitTypeWithLiterals as fb, type TaxableAddressTypeWithLiterals as fc, type MultiServiceBookingTypeWithLiterals as fd, type ResourceTransparencyWithLiterals as fe, type LocationTypeWithLiterals as ff, type SelectionMethodWithLiterals as fg, type DurationUnitTypeWithLiterals as fh, type ValueTypeWithLiterals as fi, type BookingStatusWithLiterals as fj, type PaymentStatusWithLiterals as fk, type SelectedPaymentOptionWithLiterals as fl, type PlatformWithLiterals as fm, type ActorWithLiterals as fn, type IdentityTypeWithLiterals as fo, type WebhookIdentityTypeWithLiterals as fp, type V2RequestedFieldsWithLiterals as fq, type SortOrderWithLiterals as fr, type SortTypeWithLiterals as fs, type SortDirectionWithLiterals as ft, type MissingValuesWithLiterals as fu, type ScalarTypeWithLiterals as fv, type NestedAggregationTypeWithLiterals as fw, type IntervalWithLiterals as fx, type AggregationTypeWithLiterals as fy, type ModeWithLiterals as fz, type BulkDeleteServicesOptions as g, queryLocations as g0, queryCategories as g1, setServiceLocations as g2, enablePricingPlansForService as g3, disablePricingPlansForService as g4, setCustomSlug as g5, validateSlug as g6, cloneService as g7, createAddOnGroup as g8, deleteAddOnGroup as g9, updateAddOnGroup as ga, listAddOnGroupsByServiceId as gb, setAddOnsForGroup as gc, 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-Dorio3C3.js';
3
- export { cJ as AccountInfo, f4 as AccountInfoMetadata, aK as Action, cF as ActionEvent, fJ as ActionWithLiterals, aw as Actor, fv as ActorWithLiterals, e_ as AddOn, e$ as AddOnAddOnInfoOneOf, b$ as AddOnDetails, f0 as AddOnGroupDetail, ae as AddOnPaymentOptions, fd as AddOnPaymentOptionsWithLiterals, ch as Address, eH as AddressHint, ck as AddressLocation, ci as AddressStreetOneOf, dk as Aggregation, dB as AggregationData, dl as AggregationKindOneOf, dW as AggregationResults, dX as AggregationResultsResultOneOf, dV as AggregationResultsScalarDateResult, dI as AggregationResultsScalarResult, aH as AggregationType, fG as AggregationTypeWithLiterals, cS as ApplicationError, bD as AvailabilityConstraints, f2 as BaseEventMetadata, ew as Behavior, ex as BehaviorBehaviorOneOf, es as Benefit, er as BenefitNotification, aP as BenefitType, fO as BenefitTypeWithLiterals, bn as BookAfterStartPolicy, cy as BookedAddOn, c8 as BookedEntity, c9 as BookedEntityItemOneOf, cb as BookedResource, cf as BookedSchedule, ca as BookedSlot, c6 as Booking, e0 as BookingForm, c7 as BookingParticipantsInfoOneOf, bj as BookingPolicy, d_ as BookingPolicyWithServices, cn as BookingSource, as as BookingStatus, fr as BookingStatusWithLiterals, cT as BulkActionMetadata, cP as BulkCreateServicesRequest, d7 as BulkDeleteServicesByFilterRequest, d6 as BulkDeleteServicesRequest, cQ as BulkServiceResult, d2 as BulkUpdateServicesByFilterRequest, d0 as BulkUpdateServicesRequest, bh as BusinessLocationOptions, e6 as BusinessLocations, eJ as BusinessSchedule, bt as CancellationFeePolicy, bo as CancellationPolicy, bu as CancellationWindow, bv as CancellationWindowFeeOneOf, eE as Categories, ep as Category, eo as CategoryNotification, aO as CategoryNotificationEvent, fN as CategoryNotificationEventWithLiterals, eQ as ChangeContext, eR as ChangeContextPayloadOneOf, aM as CloneErrors, fL as CloneErrorsWithLiterals, en as CloneServiceRequest, bd as CommonAddress, bg as CommonAddressLocation, be as CommonAddressStreetOneOf, cp as CommonIdentificationData, cq as CommonIdentificationDataIdOneOf, fU as CommonQueryWithEntityContext, fV as CommonSearchWithEntityContext, bf as CommonStreetAddress, aj as CompletionRequirement, fi as CompletionRequirementWithLiterals, ba as Conferencing, e2 as ConnectedService, eO as ConsentPolicy, cg as ContactDetails, e3 as CountServicesRequest, eV as CreateAddOnGroupRequest, cK as CreateServiceRequest, cL as CreateServiceResponse, aR as CrudType, fQ as CrudTypeWithLiterals, dd as CursorPaging, dA as CursorPagingMetadata, dZ as CursorQueryPagingMethodOneOf, di as CursorSearch, dj as CursorSearchPagingMethodOneOf, dg as Cursors, cm as CustomFormField, bi as CustomLocationOptions, e7 as CustomLocations, bA as CustomOptions, b3 as CustomPayment, e8 as CustomerLocations, bI as DailyConfig, dt as DateHistogramAggregation, dR as DateHistogramResult, dT as DateHistogramResults, aT as DayOfWeek, fS as DayOfWeekWithLiterals, eW as DeleteAddOnGroupRequest, eX as DeleteAddOnGroupResponse, d3 as DeleteServiceRequest, d5 as DeleteServiceResponse, ek as DisablePricingPlansForServiceRequest, eu as Discount, ev as DiscountDiscountOneOf, b8 as DiscountInfo, cz as DomainEvent, cA as DomainEventBodyOneOf, c4 as DummyRequest, c5 as DummyResponse, cw as Duration, bF as DurationRange, bG as DurationRangeConfigOneOf, aq as DurationUnitType, fp as DurationUnitTypeWithLiterals, eq as Empty, eh as EnablePricingPlansForServiceRequest, cB as EntityCreatedEvent, cE as EntityDeletedEvent, cD as EntityUpdatedEvent, et as EntryPass, aQ as Event, f3 as EventMetadata, fP as EventWithLiterals, bW as ExtendedFields, cO as FieldViolation, ad as FirstChargeDateType, fc as FirstChargeDateTypeWithLiterals, b1 as FixedPayment, cr as FlowControlSettings, aZ as Form, e1 as FormDetails, a_ as FormSettings, ac as FrequencyType, fb as FrequencyTypeWithLiterals, b6 as FullUpfrontPayment, eI as GeoCoordinates, cW as GetServiceAvailabilityConstraintsRequest, cX as GetServiceAvailabilityConstraintsResponse, cU as GetServiceRequest, cV as GetServiceResponse, dx as GroupByAggregation, dy as GroupByAggregationKindOneOf, dS as GroupByValueResults, bH as HourlyConfig, ez as HtmlSitePublished, cH as IdentificationData, cI as IdentificationDataIdOneOf, ax as IdentityType, fw as IdentityTypeWithLiterals, dn as IncludeMissingValuesOptions, bB as IntakeFormPolicy, aG as Interval, fF as IntervalWithLiterals, ej as InvalidPricingPlan, aL as InvalidSlugError, fK as InvalidSlugErrorWithLiterals, cR as ItemMetadata, bY as Keyword, bl as LimitEarlyBookingPolicy, bm as LimitLateBookingPolicy, eZ as ListAddOnGroupsByServiceIdRequest, eF as Locale, cc as Location, ao as LocationType, af as LocationTypeEnumLocationType, fe as LocationTypeEnumLocationTypeWithLiterals, fn as LocationTypeWithLiterals, d1 as MaskedService, aV as Media, aW as MediaItem, aX as MediaItemItemOneOf, cG as MessageEnvelope, aD as MissingValues, fC as MissingValuesWithLiterals, aI as Mode, fH as ModeWithLiterals, b2 as Money, eg as MoveToNewLocationsOptions, cx as MultiServiceBookingInfo, am as MultiServiceBookingType, fl as MultiServiceBookingTypeWithLiterals, eM as Multilingual, dw as NestedAggregation, du as NestedAggregationItem, dv as NestedAggregationItemKindOneOf, dE as NestedAggregationResults, dF as NestedAggregationResultsResultOneOf, aF as NestedAggregationType, fE as NestedAggregationTypeWithLiterals, dO as NestedResultValue, dP as NestedResultValueResultOneOf, dU as NestedResults, dJ as NestedValueAggregationResult, b9 as OnlineBooking, eA as Page, dc as Paging, df as PagingMetadataV2, cs as ParticipantChoices, co as ParticipantNotification, br as ParticipantsPolicy, a$ as Payment, b7 as PaymentOptions, b0 as PaymentRateOneOf, at as PaymentStatus, fs as PaymentStatusWithLiterals, cd as PhoneCall, aS as PlacementType, fR as PlacementTypeWithLiterals, av as Platform, fu as PlatformWithLiterals, bk as PolicyDescription, ei as PricingPlanSelection, eD as Properties, eS as PropertiesChange, d$ as QueryBookingFormsRequest, ea as QueryCategoriesFilter, e9 as QueryCategoriesRequest, e5 as QueryLocationsFilter, e4 as QueryLocationsRequest, dY as QueryPoliciesRequest, eb as QueryServicesMultiLanguageRequest, ec as QueryServicesMultiLanguageResponse, d8 as QueryServicesRequest, de as QueryServicesResponse, d9 as QueryV2, da as QueryV2PagingMethodOneOf, dr as RangeAggregation, dD as RangeAggregationResult, dm as RangeBucket, dL as RangeResult, dH as RangeResults, bz as RankingOptions, ag as RankingOrder, ff as RankingOrderWithLiterals, ab as RateType, fa as RateTypeWithLiterals, ee as RemovedLocationSessionsAction, ef as RemovedLocationSessionsActionActionOptionsOneOf, aJ as RequestedFields, fI as RequestedFieldsWithLiterals, bp as ReschedulePolicy, aU as ResolutionMethod, fT as ResolutionMethodWithLiterals, bS as ResourceDetails, bN as ResourceGroup, bO as ResourceIds, bT as ResourceInfo, ce as ResourceSelection, an as ResourceTransparency, fm as ResourceTransparencyWithLiterals, bR as ResourceType, bs as ResourcesPolicy, cC as RestoreInfo, dQ as Results, bw as SaveCreditCardPolicy, ds as ScalarAggregation, dN as ScalarDateResult, dM as ScalarResult, aE as ScalarType, fD as ScalarTypeWithLiterals, bC as Schedule, dz as SearchDetails, dh as SearchServicesRequest, au as SelectedPaymentOption, ft as SelectedPaymentOptionWithLiterals, ap as SelectionMethod, fo as SelectionMethodWithLiterals, bX as SeoSchema, cY as ServiceAvailabilityConstraints, cu as ServiceChoice, cv as ServiceChoiceChoiceOneOf, ct as ServiceChoices, f6 as ServiceQuerySpec, bP as ServiceResource, bQ as ServiceResourceSelectionOneOf, f7 as ServiceSearchSpec, aa as ServiceType, f9 as ServiceTypeWithLiterals, f5 as ServicesQueryResult, c3 as ServicesUrlsChanged, f1 as SetAddOnsForGroupRequest, c2 as SetCustomSlugEvent, el as SetCustomSlugRequest, ed as SetServiceLocationsRequest, b_ as Settings, eU as SiteCloned, eT as SiteCreated, eC as SitePropertiesEvent, eB as SitePropertiesNotification, bU as Slug, aC as SortDirection, fB as SortDirectionWithLiterals, aA as SortOrder, fz as SortOrderWithLiterals, aB as SortType, fA as SortTypeWithLiterals, db as Sorting, ah as SortingMethodType, fg as SortingMethodTypeWithLiterals, eL as SpecialHourPeriod, cZ as SplitInterval, bK as StaffMediaItem, bL as StaffMediaItemItemOneOf, bJ as StaffMember, bM as StaffMemberDetails, bx as StaffSortingPolicy, by as StaffSortingPolicyOptionsOneOf, aN as Status, fM as StatusWithLiterals, cj as StreetAddress, cl as Subdivision, b5 as SubscriptionPayment, eN as SupportedLanguage, bZ as Tag, c0 as TaxableAddress, al as TaxableAddressType, fk as TaxableAddressTypeWithLiterals, eK as TimePeriod, ai as Timing, fh as TimingWithLiterals, eP as Translation, bV as URLs, ak as UnitType, fj as UnitTypeWithLiterals, eY as UpdateAddOnGroupRequest, c_ as UpdateServiceRequest, c$ as UpdateServiceResponse, ey as UserDomainInfoChangedEvent, aY as V2Category, bE as V2Duration, bb as V2Location, bc as V2LocationOptionsOneOf, d4 as V2ParticipantNotification, c1 as V2PhoneCall, az as V2RequestedFields, fy as V2RequestedFieldsWithLiterals, eG as V4Address, cM as ValidateServiceRequest, cN as ValidateServiceResponse, em as ValidateSlugRequest, dp as ValueAggregation, dq as ValueAggregationOptionsOneOf, dC as ValueAggregationResult, dK as ValueResult, dG as ValueResults, ar as ValueType, fq as ValueTypeWithLiterals, b4 as VariedPayment, bq as WaitlistPolicy, ay as WebhookIdentityType, fx as WebhookIdentityTypeWithLiterals, f8 as utils } from './bookings-services-v2-service-services.universal-Dorio3C3.js';
2
+ import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, G as GetServiceOptions, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, H as SetCustomSlugOptions, I as SetCustomSlugResponse, J as SetCustomSlugApplicationErrors, K as SetCustomSlugValidationErrors, V as ValidateSlugOptions, L as ValidateSlugResponse, M as CloneServiceResponse, N as AddOnGroup, O as CreateAddOnGroupOptions, P as CreateAddOnGroupResponse, R as CreateAddOnGroupApplicationErrors, T as DeleteAddOnGroupOptions, W as DeleteAddOnGroupApplicationErrors, X as UpdateAddOnGroupOptions, Y as UpdateAddOnGroupResponse, Z as UpdateAddOnGroupApplicationErrors, _ as ListAddOnGroupsByServiceIdOptions, $ as ListAddOnGroupsByServiceIdResponse, a0 as SetAddOnsForGroupOptions, a1 as SetAddOnsForGroupResponse, a2 as SetAddOnsForGroupApplicationErrors, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope, a6 as ServiceQuery, a7 as QueryServicesOptions, a8 as typedQueryServices, a9 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-DV13bOtS.js';
3
+ export { cI as AccountInfo, eY as AccountInfoMetadata, aK as Action, cE as ActionEvent, fB as ActionWithLiterals, aw as Actor, fn as ActorWithLiterals, eS as AddOn, eT as AddOnAddOnInfoOneOf, b_ as AddOnDetails, eU as AddOnGroupDetail, ae as AddOnPaymentOptions, f5 as AddOnPaymentOptionsWithLiterals, cg as Address, ez as AddressHint, cj as AddressLocation, ch as AddressStreetOneOf, dj as Aggregation, dA as AggregationData, dk as AggregationKindOneOf, dV as AggregationResults, dW as AggregationResultsResultOneOf, dU as AggregationResultsScalarDateResult, dH as AggregationResultsScalarResult, aH as AggregationType, fy as AggregationTypeWithLiterals, cR as ApplicationError, bB as AvailabilityConstraints, eW as BaseEventMetadata, bl as BookAfterStartPolicy, cx as BookedAddOn, c7 as BookedEntity, c8 as BookedEntityItemOneOf, ca as BookedResource, ce as BookedSchedule, c9 as BookedSlot, c5 as Booking, d$ as BookingForm, c6 as BookingParticipantsInfoOneOf, bh as BookingPolicy, dZ as BookingPolicyWithServices, cm as BookingSource, as as BookingStatus, fj as BookingStatusWithLiterals, cS as BulkActionMetadata, cO as BulkCreateServicesRequest, d6 as BulkDeleteServicesByFilterRequest, d5 as BulkDeleteServicesRequest, cP as BulkServiceResult, d1 as BulkUpdateServicesByFilterRequest, c$ as BulkUpdateServicesRequest, bf as BusinessLocationOptions, e5 as BusinessLocations, eB as BusinessSchedule, br as CancellationFeePolicy, bm as CancellationPolicy, bs as CancellationWindow, bt as CancellationWindowFeeOneOf, ew as Categories, eo as Category, en as CategoryNotification, eI as ChangeContext, eJ as ChangeContextPayloadOneOf, aM as CloneErrors, fD as CloneErrorsWithLiterals, em as CloneServiceRequest, bb as CommonAddress, be as CommonAddressLocation, bc as CommonAddressStreetOneOf, co as CommonIdentificationData, cp as CommonIdentificationDataIdOneOf, fK as CommonQueryWithEntityContext, fL as CommonSearchWithEntityContext, bd as CommonStreetAddress, aj as CompletionRequirement, fa as CompletionRequirementWithLiterals, b8 as Conferencing, e1 as ConnectedService, eG as ConsentPolicy, cf as ContactDetails, e2 as CountServicesRequest, eN as CreateAddOnGroupRequest, cJ as CreateServiceRequest, cK as CreateServiceResponse, aP as CrudType, fG as CrudTypeWithLiterals, dc as CursorPaging, dz as CursorPagingMetadata, dY as CursorQueryPagingMethodOneOf, dh as CursorSearch, di as CursorSearchPagingMethodOneOf, df as Cursors, cl as CustomFormField, bg as CustomLocationOptions, e6 as CustomLocations, by as CustomOptions, b1 as CustomPayment, e7 as CustomerLocations, bG as DailyConfig, ds as DateHistogramAggregation, dQ as DateHistogramResult, dS as DateHistogramResults, aR as DayOfWeek, fI as DayOfWeekWithLiterals, eO as DeleteAddOnGroupRequest, eP as DeleteAddOnGroupResponse, d2 as DeleteServiceRequest, d4 as DeleteServiceResponse, ej as DisablePricingPlansForServiceRequest, b6 as DiscountInfo, cy as DomainEvent, cz as DomainEventBodyOneOf, c3 as DummyRequest, c4 as DummyResponse, cv as Duration, bD as DurationRange, bE as DurationRangeConfigOneOf, aq as DurationUnitType, fh as DurationUnitTypeWithLiterals, ep as Empty, eg as EnablePricingPlansForServiceRequest, cA as EntityCreatedEvent, cD as EntityDeletedEvent, cC as EntityUpdatedEvent, aO as Event, eX as EventMetadata, fF as EventWithLiterals, bV as ExtendedFields, cN as FieldViolation, ad as FirstChargeDateType, f4 as FirstChargeDateTypeWithLiterals, a$ as FixedPayment, cq as FlowControlSettings, aX as Form, e0 as FormDetails, aY as FormSettings, ac as FrequencyType, f3 as FrequencyTypeWithLiterals, b4 as FullUpfrontPayment, eA as GeoCoordinates, cV as GetServiceAvailabilityConstraintsRequest, cW as GetServiceAvailabilityConstraintsResponse, cT as GetServiceRequest, cU as GetServiceResponse, dw as GroupByAggregation, dx as GroupByAggregationKindOneOf, dR as GroupByValueResults, bF as HourlyConfig, er as HtmlSitePublished, cG as IdentificationData, cH as IdentificationDataIdOneOf, ax as IdentityType, fo as IdentityTypeWithLiterals, dm as IncludeMissingValuesOptions, bz as IntakeFormPolicy, aG as Interval, fx as IntervalWithLiterals, ei as InvalidPricingPlan, aL as InvalidSlugError, fC as InvalidSlugErrorWithLiterals, cQ as ItemMetadata, bX as Keyword, bj as LimitEarlyBookingPolicy, bk as LimitLateBookingPolicy, eR as ListAddOnGroupsByServiceIdRequest, ex as Locale, cb as Location, ao as LocationType, af as LocationTypeEnumLocationType, f6 as LocationTypeEnumLocationTypeWithLiterals, ff as LocationTypeWithLiterals, d0 as MaskedService, aT as Media, aU as MediaItem, aV as MediaItemItemOneOf, cF as MessageEnvelope, aD as MissingValues, fu as MissingValuesWithLiterals, aI as Mode, fz as ModeWithLiterals, b0 as Money, ef as MoveToNewLocationsOptions, cw as MultiServiceBookingInfo, am as MultiServiceBookingType, fd as MultiServiceBookingTypeWithLiterals, eE as Multilingual, dv as NestedAggregation, dt as NestedAggregationItem, du as NestedAggregationItemKindOneOf, dD as NestedAggregationResults, dE as NestedAggregationResultsResultOneOf, aF as NestedAggregationType, fw as NestedAggregationTypeWithLiterals, dN as NestedResultValue, dO as NestedResultValueResultOneOf, dT as NestedResults, dI as NestedValueAggregationResult, b7 as OnlineBooking, es as Page, db as Paging, de as PagingMetadataV2, cr as ParticipantChoices, cn as ParticipantNotification, bp as ParticipantsPolicy, aZ as Payment, b5 as PaymentOptions, a_ as PaymentRateOneOf, at as PaymentStatus, fk as PaymentStatusWithLiterals, cc as PhoneCall, aQ as PlacementType, fH as PlacementTypeWithLiterals, av as Platform, fm as PlatformWithLiterals, bi as PolicyDescription, eh as PricingPlanSelection, ev as Properties, eK as PropertiesChange, d_ as QueryBookingFormsRequest, e9 as QueryCategoriesFilter, e8 as QueryCategoriesRequest, e4 as QueryLocationsFilter, e3 as QueryLocationsRequest, dX as QueryPoliciesRequest, ea as QueryServicesMultiLanguageRequest, eb as QueryServicesMultiLanguageResponse, d7 as QueryServicesRequest, dd as QueryServicesResponse, d8 as QueryV2, d9 as QueryV2PagingMethodOneOf, dq as RangeAggregation, dC as RangeAggregationResult, dl as RangeBucket, dK as RangeResult, dG as RangeResults, bx as RankingOptions, ag as RankingOrder, f7 as RankingOrderWithLiterals, ab as RateType, f2 as RateTypeWithLiterals, ed as RemovedLocationSessionsAction, ee as RemovedLocationSessionsActionActionOptionsOneOf, aJ as RequestedFields, fA as RequestedFieldsWithLiterals, bn as ReschedulePolicy, aS as ResolutionMethod, fJ as ResolutionMethodWithLiterals, bR as ResourceDetails, bM as ResourceGroup, bN as ResourceIds, bS as ResourceInfo, cd as ResourceSelection, an as ResourceTransparency, fe as ResourceTransparencyWithLiterals, bQ as ResourceType, bq as ResourcesPolicy, cB as RestoreInfo, dP as Results, bu as SaveCreditCardPolicy, dr as ScalarAggregation, dM as ScalarDateResult, dL as ScalarResult, aE as ScalarType, fv as ScalarTypeWithLiterals, bA as Schedule, dy as SearchDetails, dg as SearchServicesRequest, au as SelectedPaymentOption, fl as SelectedPaymentOptionWithLiterals, ap as SelectionMethod, fg as SelectionMethodWithLiterals, bW as SeoSchema, cX as ServiceAvailabilityConstraints, ct as ServiceChoice, cu as ServiceChoiceChoiceOneOf, cs as ServiceChoices, e_ as ServiceQuerySpec, bO as ServiceResource, bP as ServiceResourceSelectionOneOf, e$ as ServiceSearchSpec, aa as ServiceType, f1 as ServiceTypeWithLiterals, eZ as ServicesQueryResult, c2 as ServicesUrlsChanged, eV as SetAddOnsForGroupRequest, c1 as SetCustomSlugEvent, ek as SetCustomSlugRequest, ec as SetServiceLocationsRequest, bZ as Settings, eM as SiteCloned, eL as SiteCreated, eu as SitePropertiesEvent, et as SitePropertiesNotification, bT as Slug, aC as SortDirection, ft as SortDirectionWithLiterals, aA as SortOrder, fr as SortOrderWithLiterals, aB as SortType, fs as SortTypeWithLiterals, da as Sorting, ah as SortingMethodType, f8 as SortingMethodTypeWithLiterals, eD as SpecialHourPeriod, cY as SplitInterval, bI as StaffMediaItem, bJ as StaffMediaItemItemOneOf, bH as StaffMember, bL as StaffMemberDetails, bv as StaffSortingPolicy, bw as StaffSortingPolicyOptionsOneOf, aN as Status, fE as StatusWithLiterals, ci as StreetAddress, ck as Subdivision, b3 as SubscriptionPayment, eF as SupportedLanguage, bY as Tag, b$ as TaxableAddress, al as TaxableAddressType, fc as TaxableAddressTypeWithLiterals, eC as TimePeriod, ai as Timing, f9 as TimingWithLiterals, eH as Translation, bU as URLs, ak as UnitType, fb as UnitTypeWithLiterals, eQ as UpdateAddOnGroupRequest, cZ as UpdateServiceRequest, c_ as UpdateServiceResponse, eq as UserDomainInfoChangedEvent, aW as V2Category, bC as V2Duration, b9 as V2Location, ba as V2LocationOptionsOneOf, d3 as V2ParticipantNotification, c0 as V2PhoneCall, az as V2RequestedFields, fq as V2RequestedFieldsWithLiterals, ey as V4Address, cL as ValidateServiceRequest, cM as ValidateServiceResponse, el as ValidateSlugRequest, dn as ValueAggregation, dp as ValueAggregationOptionsOneOf, dB as ValueAggregationResult, dJ as ValueResult, dF as ValueResults, ar as ValueType, fi as ValueTypeWithLiterals, b2 as VariedPayment, bo as WaitlistPolicy, ay as WebhookIdentityType, fp as WebhookIdentityTypeWithLiterals, bK as WorkingHoursLocationCoverage, f0 as utils } from './bookings-services-v2-service-services.universal-DV13bOtS.js';
4
4
 
5
5
  declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
6
6
  interface CreateServiceSignature {
@@ -142,6 +142,7 @@ interface GetServiceSignature {
142
142
  *
143
143
  * Supported values:
144
144
  * + `STAFF_MEMBER_DETAILS`: Returns `service.staffMemberDetails`.
145
+ * + `STAFF_WORKING_HOURS_LOCATIONS`: Requires `STAFF_MEMBER_DETAILS`. Returns `service.staffMemberDetails.staffMembers[].workingHoursLocationCoverage` for filtering staff by business location.
145
146
  * + `RESOURCE_TYPE_DETAILS`: Returns the name of each service resource's resource type. See `service.serviceResources.resourceType.name`.
146
147
  * + `DISCOUNT_INFO_DETAILS`: Returns `service.payment.discountInfo`.
147
148
  * + `RESOURCE_DETAILS`: Returns the name of each individual resource assigned to a service resource. See `service.serviceResources.resourceDetails`.
@@ -24,9 +24,7 @@ __export(index_exports, {
24
24
  Actor: () => Actor,
25
25
  AddOnPaymentOptions: () => AddOnPaymentOptions,
26
26
  AggregationType: () => AggregationType,
27
- BenefitType: () => BenefitType,
28
27
  BookingStatus: () => BookingStatus,
29
- CategoryNotificationEvent: () => CategoryNotificationEvent,
30
28
  CloneErrors: () => CloneErrors,
31
29
  CompletionRequirement: () => CompletionRequirement,
32
30
  CrudType: () => CrudType,
@@ -2092,18 +2090,6 @@ var Status = /* @__PURE__ */ ((Status2) => {
2092
2090
  Status2["DELETED"] = "DELETED";
2093
2091
  return Status2;
2094
2092
  })(Status || {});
2095
- var CategoryNotificationEvent = /* @__PURE__ */ ((CategoryNotificationEvent2) => {
2096
- CategoryNotificationEvent2["Updated"] = "Updated";
2097
- CategoryNotificationEvent2["Deleted"] = "Deleted";
2098
- CategoryNotificationEvent2["Created"] = "Created";
2099
- return CategoryNotificationEvent2;
2100
- })(CategoryNotificationEvent || {});
2101
- var BenefitType = /* @__PURE__ */ ((BenefitType2) => {
2102
- BenefitType2["UNDEFINED"] = "UNDEFINED";
2103
- BenefitType2["LIMITED"] = "LIMITED";
2104
- BenefitType2["UNLIMITED"] = "UNLIMITED";
2105
- return BenefitType2;
2106
- })(BenefitType || {});
2107
2093
  var Event = /* @__PURE__ */ ((Event2) => {
2108
2094
  Event2["Updated"] = "Updated";
2109
2095
  Event2["Deleted"] = "Deleted";
@@ -4035,9 +4021,7 @@ var onServiceUpdated2 = (0, import_event_definition_modules.createEventModule)(o
4035
4021
  Actor,
4036
4022
  AddOnPaymentOptions,
4037
4023
  AggregationType,
4038
- BenefitType,
4039
4024
  BookingStatus,
4040
- CategoryNotificationEvent,
4041
4025
  CloneErrors,
4042
4026
  CompletionRequirement,
4043
4027
  CrudType,