@wix/auto_sdk_bookings_services 1.0.203 → 1.0.205

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/{internal/cjs/bookings-services-v2-service-services.universal-ES4FwpIX.d.ts → cjs/bookings-services-v2-service-services.universal-B96er953.d.ts} +75 -25
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +15 -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 +15 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +65 -11
  9. package/build/cjs/meta.js +15 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/{internal/es/bookings-services-v2-service-services.universal-ES4FwpIX.d.mts → es/bookings-services-v2-service-services.universal-B96er953.d.mts} +75 -25
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +13 -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 +13 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +65 -11
  19. package/build/es/meta.mjs +13 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/{cjs/bookings-services-v2-service-services.universal-Day26Rn4.d.ts → internal/cjs/bookings-services-v2-service-services.universal-Dw4UxeeD.d.ts} +88 -11
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +15 -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 +15 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +65 -11
  29. package/build/internal/cjs/meta.js +15 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/{es/bookings-services-v2-service-services.universal-Day26Rn4.d.mts → internal/es/bookings-services-v2-service-services.universal-Dw4UxeeD.d.mts} +88 -11
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +13 -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 +13 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +65 -11
  39. package/build/internal/es/meta.mjs +13 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -265,20 +265,6 @@ interface Payment extends PaymentRateOneOf {
265
265
  * If customers pay for the booking using any method other than a pricing plan, the value of this field is ignored.
266
266
  */
267
267
  addOnOption?: AddOnPaymentOptionsWithLiterals;
268
- /**
269
- * Estimated discount information for this service, based on active eCommerce discounts.
270
- * Returned only when `DISCOUNT_INFO_DETAILS` is requested.
271
- *
272
- * Note: Values are estimates. The final discount is applied in eCommerce checkout and may differ,
273
- * for example when discounts depend on cart totals (such as "10% off orders over $100").
274
- * Learn more about [eCommerce discounts](https://dev.wix.com/docs/rest/business-solutions/e-commerce/extensions/discounts/introduction).
275
- *
276
- * A discount is active when its start time has passed and its end time has not. If multiple active
277
- * discounts apply, the most recently created discount is returned.
278
- * @internal
279
- * @readonly
280
- */
281
- discountInfo?: DiscountInfo;
282
268
  }
283
269
  /** @oneof */
284
270
  interface PaymentRateOneOf {
@@ -396,6 +382,62 @@ interface VariedPayment {
396
382
  */
397
383
  fullUpfrontPaymentAllowed?: boolean | null;
398
384
  }
385
+ interface SubscriptionPayment {
386
+ /** Amount charged each billing cycle. */
387
+ amountPerBillingCycle?: Money;
388
+ /** Billing frequency used for recurring subscription charges. */
389
+ frequency?: FrequencyTypeWithLiterals;
390
+ /**
391
+ * Total number of recurring payments in the subscription.
392
+ * Value must be greater than `1`.
393
+ * Required when: `rateType` is `SUBSCRIPTION`
394
+ * @min 2
395
+ */
396
+ totalPayments?: number | null;
397
+ /** When the first recurring payment is charged. */
398
+ firstChargeDate?: FirstChargeDateTypeWithLiterals;
399
+ /**
400
+ * Date and time when recurring payments start in `YYYY-MM-DDThh:mm:ss.sssZ` format.
401
+ * When `firstChargeDate` is `SCHEDULED`, the first charge occurs on this date.
402
+ * When `firstChargeDate` is `CHECKOUT`, the first charge occurs at checkout and recurring billing begins on this date.
403
+ * Required when: `rateType` is `SUBSCRIPTION`. Sets the future billing cycle dates.
404
+ */
405
+ recurringStartDate?: Date | null;
406
+ /** Optional one-time enrollment fee. */
407
+ enrollmentFeeAmount?: Money;
408
+ /** Optional full payment alternative to recurring subscription billing. */
409
+ fullUpfrontPayment?: FullUpfrontPayment;
410
+ }
411
+ declare enum FrequencyType {
412
+ /** Unknown frequency. */
413
+ UNKNOWN_FREQUENCY = "UNKNOWN_FREQUENCY",
414
+ /** Payment is charged once every month. */
415
+ MONTHLY = "MONTHLY"
416
+ }
417
+ /** @enumType */
418
+ type FrequencyTypeWithLiterals = FrequencyType | 'UNKNOWN_FREQUENCY' | 'MONTHLY';
419
+ declare enum FirstChargeDateType {
420
+ /** Unknown first charge date type. */
421
+ UNKNOWN_FIRST_CHARGE_DATE_TYPE = "UNKNOWN_FIRST_CHARGE_DATE_TYPE",
422
+ /** Charge the first billing cycle at checkout. */
423
+ CHECKOUT = "CHECKOUT",
424
+ /** Charge the first billing cycle on the `recurringStartDate`. */
425
+ SCHEDULED = "SCHEDULED"
426
+ }
427
+ /** @enumType */
428
+ type FirstChargeDateTypeWithLiterals = FirstChargeDateType | 'UNKNOWN_FIRST_CHARGE_DATE_TYPE' | 'CHECKOUT' | 'SCHEDULED';
429
+ interface FullUpfrontPayment {
430
+ /** Whether customers can choose a one-time full payment instead of recurring subscription payments. */
431
+ supported?: boolean | null;
432
+ /**
433
+ * Percentage discount applied when a customer chooses the full payment option.
434
+ * Min: `0.01` percent
435
+ * Max: `100` percent
436
+ * @format DECIMAL_VALUE
437
+ * @decimalValue options { gte:0.01, lte:100, maxScale:2 }
438
+ */
439
+ discountPercent?: string | null;
440
+ }
399
441
  interface PaymentOptions {
400
442
  /**
401
443
  * Customers can pay for the service online.
@@ -429,20 +471,18 @@ declare enum AddOnPaymentOptions {
429
471
  }
430
472
  /** @enumType */
431
473
  type AddOnPaymentOptionsWithLiterals = AddOnPaymentOptions | 'UNKNOWN_ADD_ON_PAYMENT_OPTIONS' | 'ONLINE' | 'IN_PERSON';
432
- /** Estimated discount information for a service. */
474
+ /** Estimated discount information for a service based on active eCommerce discounts. */
433
475
  interface DiscountInfo {
434
476
  /**
435
- * Name of the discount (e.g., "Summer Sale - 20% Off").
477
+ * Name of the discount. For example, `Summer Sale - 20% Off`.
436
478
  * @minLength 1
437
479
  * @maxLength 50
438
480
  */
439
481
  discountName?: string;
440
482
  /**
441
- * Estimated price after applying the discount. Optional.
442
- *
443
- * *Important**: This is an estimate. The final price may differ at checkout when additional discounts are applied or rules are re-evaluated with complete booking information.
483
+ * Estimated price after applying the discount. The final price is determined at checkout and may differ when additional discounts are applied or rules are re-evaluated with complete booking information.
444
484
  *
445
- * May be empty when the discount depends on booking/cart context (e.g., "10% discount on Service X when booking with Service Y") or requires information only available at checkout.
485
+ * Not returned when the discount depends on booking or cart context, for example a discount that applies to a service only when booked together with another service, or when the discount requires information only available at checkout.
446
486
  */
447
487
  priceAfterDiscount?: Money;
448
488
  }
@@ -2550,11 +2590,11 @@ interface GetServiceRequest {
2550
2590
  declare enum V2RequestedFields {
2551
2591
  /** Unknown requested field. */
2552
2592
  UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
2553
- /** When passed, `service.staff_members` is returned. */
2593
+ /** When passed, `service.staffMemberDetails` is returned. */
2554
2594
  STAFF_MEMBER_DETAILS = "STAFF_MEMBER_DETAILS",
2555
- /** When passed, `service.service_resources.resource_type.name` is returned. */
2595
+ /** When passed, `service.serviceResources.resourceType.name` is returned. */
2556
2596
  RESOURCE_TYPE_DETAILS = "RESOURCE_TYPE_DETAILS",
2557
- /** When passed, `service.payment.discount_info` is returned. */
2597
+ /** When passed, `service.payment.discountInfo` is returned. */
2558
2598
  DISCOUNT_INFO_DETAILS = "DISCOUNT_INFO_DETAILS"
2559
2599
  }
2560
2600
  /** @enumType */
@@ -4714,6 +4754,8 @@ interface ServiceCreatedEnvelope {
4714
4754
  * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
4715
4755
  * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4716
4756
  * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4757
+ * @permissionScope Manage Events
4758
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
4717
4759
  * @permissionScope Manage Bookings
4718
4760
  * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
4719
4761
  * @permissionScope Read Bookings - Including Participants
@@ -4742,6 +4784,8 @@ interface ServiceDeletedEnvelope {
4742
4784
  * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
4743
4785
  * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4744
4786
  * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4787
+ * @permissionScope Manage Events
4788
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
4745
4789
  * @permissionScope Manage Bookings
4746
4790
  * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
4747
4791
  * @permissionScope Read Bookings - Including Participants
@@ -4772,6 +4816,8 @@ interface ServiceUpdatedEnvelope {
4772
4816
  * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
4773
4817
  * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4774
4818
  * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4819
+ * @permissionScope Manage Events
4820
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
4775
4821
  * @permissionScope Manage Bookings
4776
4822
  * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
4777
4823
  * @permissionScope Read Bookings - Including Participants
@@ -5454,7 +5500,11 @@ declare const utils: {
5454
5500
  Sort: _wix_sdk_types.SortFactory<ServiceQuerySpec>;
5455
5501
  };
5456
5502
  search: {
5457
- SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>;
5503
+ SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>; /**
5504
+ * ID of the [resource](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) associated with the staff member providing the service.
5505
+ * @format GUID
5506
+ * @readonly
5507
+ */
5458
5508
  Filter: _wix_sdk_types.FilterFactory<Service, ServiceSearchSpec>;
5459
5509
  Sort: _wix_sdk_types.SortFactory<ServiceSearchSpec>;
5460
5510
  SearchParams: _wix_sdk_types.SearchParamsFactory<ServiceSearchSpec>;
@@ -6203,4 +6253,4 @@ interface SetAddOnsForGroupOptions {
6203
6253
  addOnIds: string[] | null;
6204
6254
  }
6205
6255
 
6206
- export { type SetAddOnsForGroupResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type DeleteAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupApplicationErrors as R, type Service as S, type UpdateAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupResponse as W, type UpdateAddOnGroupApplicationErrors as X, type ListAddOnGroupsByServiceIdOptions as Y, type ListAddOnGroupsByServiceIdResponse as Z, type SetAddOnsForGroupOptions as _, type BulkCreateServicesResponse as a, type DiscountInfo as a$, type SetAddOnsForGroupApplicationErrors as a0, type ServiceCreatedEnvelope as a1, type ServiceDeletedEnvelope as a2, type ServiceUpdatedEnvelope as a3, type ServiceQuery as a4, type QueryServicesOptions as a5, typedQueryServices as a6, type ServicesQueryBuilder as a7, ServiceType as a8, RateType as a9, AggregationType as aA, Mode as aB, RequestedFields as aC, Action as aD, InvalidSlugError as aE, CloneErrors as aF, Status as aG, CategoryNotificationEvent as aH, BenefitType as aI, Event as aJ, CrudType as aK, PlacementType as aL, DayOfWeek as aM, ResolutionMethod as aN, type Media as aO, type MediaItem as aP, type MediaItemItemOneOf as aQ, type V2Category as aR, type Form as aS, type FormSettings as aT, type Payment as aU, type PaymentRateOneOf as aV, type FixedPayment as aW, type Money as aX, type CustomPayment as aY, type VariedPayment as aZ, type PaymentOptions as a_, AddOnPaymentOptions as aa, LocationTypeEnumLocationType as ab, RankingOrder as ac, SortingMethodType as ad, Timing as ae, CompletionRequirement as af, TaxableAddressType as ag, MultiServiceBookingType as ah, LocationType as ai, SelectionMethod as aj, ValueType as ak, BookingStatus as al, PaymentStatus as am, SelectedPaymentOption as an, Platform as ao, Actor as ap, IdentityType as aq, WebhookIdentityType as ar, V2RequestedFields as as, SortOrder as at, SortType as au, SortDirection as av, MissingValues as aw, ScalarType as ax, NestedAggregationType as ay, Interval as az, type UpdateServiceValidationErrors as b, type ResourceSelection as b$, type OnlineBooking as b0, type Conferencing as b1, type V2Location as b2, type V2LocationOptionsOneOf as b3, type CommonAddress as b4, type CommonAddressStreetOneOf as b5, type CommonStreetAddress as b6, type CommonAddressLocation as b7, type BusinessLocationOptions as b8, type CustomLocationOptions as b9, type ResourceGroup as bA, type ResourceIds as bB, type ServiceResource as bC, type ServiceResourceSelectionOneOf as bD, type ResourceType as bE, type Slug as bF, type URLs as bG, type ExtendedFields as bH, type SeoSchema as bI, type Keyword as bJ, type Tag as bK, type Settings as bL, type AddOnDetails as bM, type TaxableAddress as bN, type V2PhoneCall as bO, type SetCustomSlugEvent as bP, type ServicesUrlsChanged as bQ, type DummyRequest as bR, type DummyResponse as bS, type Booking as bT, type BookingParticipantsInfoOneOf as bU, type BookedEntity as bV, type BookedEntityItemOneOf as bW, type BookedSlot as bX, type BookedResource as bY, type Location as bZ, type PhoneCall as b_, type BookingPolicy as ba, type PolicyDescription as bb, type LimitEarlyBookingPolicy as bc, type LimitLateBookingPolicy as bd, type BookAfterStartPolicy as be, type CancellationPolicy as bf, type ReschedulePolicy as bg, type WaitlistPolicy as bh, type ParticipantsPolicy as bi, type ResourcesPolicy as bj, type CancellationFeePolicy as bk, type CancellationWindow as bl, type CancellationWindowFeeOneOf as bm, type SaveCreditCardPolicy as bn, type StaffSortingPolicy as bo, type StaffSortingPolicyOptionsOneOf as bp, type RankingOptions as bq, type CustomOptions as br, type IntakeFormPolicy as bs, type Schedule as bt, type AvailabilityConstraints as bu, type V2Duration as bv, type StaffMember as bw, type StaffMediaItem as bx, type StaffMediaItemItemOneOf as by, type StaffMemberDetails as bz, type BulkUpdateServicesOptions as c, type QueryServicesResponse as c$, type BookedSchedule as c0, type ContactDetails as c1, type Address as c2, type AddressStreetOneOf as c3, type StreetAddress as c4, type AddressLocation as c5, type Subdivision as c6, type CustomFormField as c7, type BookingSource as c8, type ParticipantNotification as c9, type BulkCreateServicesRequest as cA, type BulkServiceResult as cB, type ItemMetadata as cC, type ApplicationError as cD, type BulkActionMetadata as cE, type GetServiceRequest as cF, type GetServiceResponse as cG, type GetServiceAvailabilityConstraintsRequest as cH, type GetServiceAvailabilityConstraintsResponse as cI, type ServiceAvailabilityConstraints as cJ, type SplitInterval as cK, type UpdateServiceRequest as cL, type UpdateServiceResponse as cM, type BulkUpdateServicesRequest as cN, type MaskedService as cO, type BulkUpdateServicesByFilterRequest as cP, type DeleteServiceRequest as cQ, type V2ParticipantNotification as cR, type DeleteServiceResponse as cS, type BulkDeleteServicesRequest as cT, type BulkDeleteServicesByFilterRequest as cU, type QueryServicesRequest as cV, type QueryV2 as cW, type QueryV2PagingMethodOneOf as cX, type Sorting as cY, type Paging as cZ, type CursorPaging as c_, type CommonIdentificationData as ca, type CommonIdentificationDataIdOneOf as cb, type FlowControlSettings as cc, type ParticipantChoices as cd, type ServiceChoices as ce, type ServiceChoice as cf, type ServiceChoiceChoiceOneOf as cg, type Duration as ch, type MultiServiceBookingInfo as ci, type BookedAddOn as cj, type DomainEvent as ck, type DomainEventBodyOneOf as cl, type EntityCreatedEvent as cm, type RestoreInfo as cn, type EntityUpdatedEvent as co, type EntityDeletedEvent as cp, type ActionEvent as cq, type MessageEnvelope as cr, type IdentificationData as cs, type IdentificationDataIdOneOf as ct, type AccountInfo as cu, type CreateServiceRequest as cv, type CreateServiceResponse as cw, type ValidateServiceRequest as cx, type ValidateServiceResponse as cy, type FieldViolation as cz, type BulkUpdateServicesResponse as d, type MoveToNewLocationsOptions as d$, type PagingMetadataV2 as d0, type Cursors as d1, type SearchServicesRequest as d2, type CursorSearch as d3, type CursorSearchPagingMethodOneOf as d4, type Aggregation as d5, type AggregationKindOneOf as d6, type RangeBucket as d7, type IncludeMissingValuesOptions as d8, type ValueAggregation as d9, type Results as dA, type DateHistogramResult as dB, type GroupByValueResults as dC, type DateHistogramResults as dD, type NestedResults as dE, type AggregationResults as dF, type AggregationResultsResultOneOf as dG, type QueryPoliciesRequest as dH, type CursorQueryPagingMethodOneOf as dI, type BookingPolicyWithServices as dJ, type QueryBookingFormsRequest as dK, type BookingForm as dL, type FormDetails as dM, type ConnectedService as dN, type CountServicesRequest as dO, type QueryLocationsRequest as dP, type QueryLocationsFilter as dQ, type BusinessLocations as dR, type CustomLocations as dS, type CustomerLocations as dT, type QueryCategoriesRequest as dU, type QueryCategoriesFilter as dV, type QueryServicesMultiLanguageRequest as dW, type QueryServicesMultiLanguageResponse as dX, type SetServiceLocationsRequest as dY, type RemovedLocationSessionsAction as dZ, type RemovedLocationSessionsActionActionOptionsOneOf as d_, type ValueAggregationOptionsOneOf as da, type RangeAggregation as db, type ScalarAggregation as dc, type DateHistogramAggregation as dd, type NestedAggregationItem as de, type NestedAggregationItemKindOneOf as df, type NestedAggregation as dg, type GroupByAggregation as dh, type GroupByAggregationKindOneOf as di, type SearchDetails as dj, type CursorPagingMetadata as dk, type AggregationData as dl, type ValueAggregationResult as dm, type RangeAggregationResult as dn, type NestedAggregationResults as dp, type NestedAggregationResultsResultOneOf as dq, type ValueResults as dr, type RangeResults as ds, type AggregationResultsScalarResult as dt, type NestedValueAggregationResult as du, type ValueResult as dv, type RangeResult as dw, type ScalarResult as dx, type NestedResultValue as dy, type NestedResultValueResultOneOf as dz, type BulkUpdateServicesByFilterOptions as e, type CompletionRequirementWithLiterals as e$, type EnablePricingPlansForServiceRequest as e0, type PricingPlanSelection as e1, type InvalidPricingPlan as e2, type DisablePricingPlansForServiceRequest as e3, type SetCustomSlugRequest as e4, type ValidateSlugRequest as e5, type CloneServiceRequest as e6, type CategoryNotification as e7, type Category as e8, type Empty as e9, type ChangeContextPayloadOneOf as eA, type PropertiesChange as eB, type SiteCreated as eC, type SiteCloned as eD, type CreateAddOnGroupRequest as eE, type DeleteAddOnGroupRequest as eF, type DeleteAddOnGroupResponse as eG, type UpdateAddOnGroupRequest as eH, type ListAddOnGroupsByServiceIdRequest as eI, type AddOn as eJ, type AddOnAddOnInfoOneOf as eK, type AddOnGroupDetail as eL, type SetAddOnsForGroupRequest as eM, type BaseEventMetadata as eN, type EventMetadata as eO, type AccountInfoMetadata as eP, type ServicesQueryResult as eQ, type ServiceQuerySpec as eR, type ServiceSearchSpec as eS, utils as eT, type ServiceTypeWithLiterals as eU, type RateTypeWithLiterals as eV, type AddOnPaymentOptionsWithLiterals as eW, type LocationTypeEnumLocationTypeWithLiterals as eX, type RankingOrderWithLiterals as eY, type SortingMethodTypeWithLiterals as eZ, type TimingWithLiterals as e_, type BenefitNotification as ea, type Benefit as eb, type EntryPass as ec, type Discount as ed, type DiscountDiscountOneOf as ee, type Behavior as ef, type BehaviorBehaviorOneOf as eg, type UserDomainInfoChangedEvent as eh, type HtmlSitePublished as ei, type Page as ej, type SitePropertiesNotification as ek, type SitePropertiesEvent as el, type Properties as em, type Categories as en, type Locale as eo, type V4Address as ep, type AddressHint as eq, type GeoCoordinates as er, type BusinessSchedule as es, type TimePeriod as et, type SpecialHourPeriod as eu, type Multilingual as ev, type SupportedLanguage as ew, type ConsentPolicy as ex, type Translation as ey, type ChangeContext as ez, type BulkUpdateServicesByFilterResponse as f, listAddOnGroupsByServiceId as f$, type TaxableAddressTypeWithLiterals as f0, type MultiServiceBookingTypeWithLiterals as f1, type LocationTypeWithLiterals as f2, type SelectionMethodWithLiterals as f3, type ValueTypeWithLiterals as f4, type BookingStatusWithLiterals as f5, type PaymentStatusWithLiterals as f6, type SelectedPaymentOptionWithLiterals as f7, type PlatformWithLiterals as f8, type ActorWithLiterals as f9, onServiceCreated as fA, onServiceDeleted as fB, onServiceUpdated as fC, createService as fD, bulkCreateServices as fE, getService as fF, updateService as fG, bulkUpdateServices as fH, bulkUpdateServicesByFilter as fI, deleteService as fJ, bulkDeleteServices as fK, bulkDeleteServicesByFilter as fL, queryServices as fM, queryPolicies as fN, queryBookingForms as fO, countServices as fP, queryLocations as fQ, queryCategories as fR, setServiceLocations as fS, enablePricingPlansForService as fT, disablePricingPlansForService as fU, setCustomSlug as fV, validateSlug as fW, cloneService as fX, createAddOnGroup as fY, deleteAddOnGroup as fZ, updateAddOnGroup as f_, type IdentityTypeWithLiterals as fa, type WebhookIdentityTypeWithLiterals as fb, type V2RequestedFieldsWithLiterals as fc, type SortOrderWithLiterals as fd, type SortTypeWithLiterals as fe, type SortDirectionWithLiterals as ff, type MissingValuesWithLiterals as fg, type ScalarTypeWithLiterals as fh, type NestedAggregationTypeWithLiterals as fi, type IntervalWithLiterals as fj, type AggregationTypeWithLiterals as fk, type ModeWithLiterals as fl, type RequestedFieldsWithLiterals as fm, type ActionWithLiterals as fn, type InvalidSlugErrorWithLiterals as fo, type CloneErrorsWithLiterals as fp, type StatusWithLiterals as fq, type CategoryNotificationEventWithLiterals as fr, type BenefitTypeWithLiterals as fs, type EventWithLiterals as ft, type CrudTypeWithLiterals as fu, type PlacementTypeWithLiterals as fv, type DayOfWeekWithLiterals as fw, type ResolutionMethodWithLiterals as fx, type CommonQueryWithEntityContext as fy, type CommonSearchWithEntityContext as fz, type BulkDeleteServicesOptions as g, setAddOnsForGroup as g0, 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 };
6256
+ export { type SetAddOnsForGroupResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type DeleteAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupApplicationErrors as R, type Service as S, type UpdateAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupResponse as W, type UpdateAddOnGroupApplicationErrors as X, type ListAddOnGroupsByServiceIdOptions as Y, type ListAddOnGroupsByServiceIdResponse as Z, type SetAddOnsForGroupOptions as _, type BulkCreateServicesResponse as a, type VariedPayment as a$, type SetAddOnsForGroupApplicationErrors as a0, type ServiceCreatedEnvelope as a1, type ServiceDeletedEnvelope as a2, type ServiceUpdatedEnvelope as a3, type ServiceQuery as a4, type QueryServicesOptions as a5, typedQueryServices as a6, type ServicesQueryBuilder as a7, ServiceType as a8, RateType as a9, NestedAggregationType as aA, Interval as aB, AggregationType as aC, Mode as aD, RequestedFields as aE, Action as aF, InvalidSlugError as aG, CloneErrors as aH, Status as aI, CategoryNotificationEvent as aJ, BenefitType as aK, Event as aL, CrudType as aM, PlacementType as aN, DayOfWeek as aO, ResolutionMethod as aP, type Media as aQ, type MediaItem as aR, type MediaItemItemOneOf as aS, type V2Category as aT, type Form as aU, type FormSettings as aV, type Payment as aW, type PaymentRateOneOf as aX, type FixedPayment as aY, type Money as aZ, type CustomPayment as a_, FrequencyType as aa, FirstChargeDateType as ab, AddOnPaymentOptions as ac, LocationTypeEnumLocationType as ad, RankingOrder as ae, SortingMethodType as af, Timing as ag, CompletionRequirement as ah, TaxableAddressType as ai, MultiServiceBookingType as aj, LocationType as ak, SelectionMethod as al, ValueType as am, BookingStatus as an, PaymentStatus as ao, SelectedPaymentOption as ap, Platform as aq, Actor as ar, IdentityType as as, WebhookIdentityType as at, V2RequestedFields as au, SortOrder as av, SortType as aw, SortDirection as ax, MissingValues as ay, ScalarType as az, type UpdateServiceValidationErrors as b, type BookedSlot as b$, type SubscriptionPayment as b0, type FullUpfrontPayment as b1, type PaymentOptions as b2, type DiscountInfo as b3, type OnlineBooking as b4, type Conferencing as b5, type V2Location as b6, type V2LocationOptionsOneOf as b7, type CommonAddress as b8, type CommonAddressStreetOneOf as b9, type StaffMember as bA, type StaffMediaItem as bB, type StaffMediaItemItemOneOf as bC, type StaffMemberDetails as bD, type ResourceGroup as bE, type ResourceIds as bF, type ServiceResource as bG, type ServiceResourceSelectionOneOf as bH, type ResourceType as bI, type Slug as bJ, type URLs as bK, type ExtendedFields as bL, type SeoSchema as bM, type Keyword as bN, type Tag as bO, type Settings as bP, type AddOnDetails as bQ, type TaxableAddress as bR, type V2PhoneCall as bS, type SetCustomSlugEvent as bT, type ServicesUrlsChanged as bU, type DummyRequest as bV, type DummyResponse as bW, type Booking as bX, type BookingParticipantsInfoOneOf as bY, type BookedEntity as bZ, type BookedEntityItemOneOf as b_, type CommonStreetAddress as ba, type CommonAddressLocation as bb, type BusinessLocationOptions as bc, type CustomLocationOptions as bd, type BookingPolicy as be, type PolicyDescription as bf, type LimitEarlyBookingPolicy as bg, type LimitLateBookingPolicy as bh, type BookAfterStartPolicy as bi, type CancellationPolicy as bj, type ReschedulePolicy as bk, type WaitlistPolicy as bl, type ParticipantsPolicy as bm, type ResourcesPolicy as bn, type CancellationFeePolicy as bo, type CancellationWindow as bp, type CancellationWindowFeeOneOf as bq, type SaveCreditCardPolicy as br, type StaffSortingPolicy as bs, type StaffSortingPolicyOptionsOneOf as bt, type RankingOptions as bu, type CustomOptions as bv, type IntakeFormPolicy as bw, type Schedule as bx, type AvailabilityConstraints as by, type V2Duration as bz, type BulkUpdateServicesOptions as c, type QueryV2PagingMethodOneOf as c$, type BookedResource as c0, type Location as c1, type PhoneCall as c2, type ResourceSelection as c3, type BookedSchedule as c4, type ContactDetails as c5, type Address as c6, type AddressStreetOneOf as c7, type StreetAddress as c8, type AddressLocation as c9, type CreateServiceResponse as cA, type ValidateServiceRequest as cB, type ValidateServiceResponse as cC, type FieldViolation as cD, type BulkCreateServicesRequest as cE, type BulkServiceResult as cF, type ItemMetadata as cG, type ApplicationError as cH, type BulkActionMetadata as cI, type GetServiceRequest as cJ, type GetServiceResponse as cK, type GetServiceAvailabilityConstraintsRequest as cL, type GetServiceAvailabilityConstraintsResponse as cM, type ServiceAvailabilityConstraints as cN, type SplitInterval as cO, type UpdateServiceRequest as cP, type UpdateServiceResponse as cQ, type BulkUpdateServicesRequest as cR, type MaskedService as cS, type BulkUpdateServicesByFilterRequest as cT, type DeleteServiceRequest as cU, type V2ParticipantNotification as cV, type DeleteServiceResponse as cW, type BulkDeleteServicesRequest as cX, type BulkDeleteServicesByFilterRequest as cY, type QueryServicesRequest as cZ, type QueryV2 as c_, type Subdivision as ca, type CustomFormField as cb, type BookingSource as cc, type ParticipantNotification as cd, type CommonIdentificationData as ce, type CommonIdentificationDataIdOneOf as cf, type FlowControlSettings as cg, type ParticipantChoices as ch, type ServiceChoices as ci, type ServiceChoice as cj, type ServiceChoiceChoiceOneOf as ck, type Duration as cl, type MultiServiceBookingInfo as cm, type BookedAddOn as cn, type DomainEvent as co, type DomainEventBodyOneOf as cp, type EntityCreatedEvent as cq, type RestoreInfo as cr, type EntityUpdatedEvent as cs, type EntityDeletedEvent as ct, type ActionEvent as cu, type MessageEnvelope as cv, type IdentificationData as cw, type IdentificationDataIdOneOf as cx, type AccountInfo as cy, type CreateServiceRequest as cz, type BulkUpdateServicesResponse as d, type QueryServicesMultiLanguageResponse as d$, type Sorting as d0, type Paging as d1, type CursorPaging as d2, type QueryServicesResponse as d3, type PagingMetadataV2 as d4, type Cursors as d5, type SearchServicesRequest as d6, type CursorSearch as d7, type CursorSearchPagingMethodOneOf as d8, type Aggregation as d9, type RangeResult as dA, type ScalarResult as dB, type NestedResultValue as dC, type NestedResultValueResultOneOf as dD, type Results as dE, type DateHistogramResult as dF, type GroupByValueResults as dG, type DateHistogramResults as dH, type NestedResults as dI, type AggregationResults as dJ, type AggregationResultsResultOneOf as dK, type QueryPoliciesRequest as dL, type CursorQueryPagingMethodOneOf as dM, type BookingPolicyWithServices as dN, type QueryBookingFormsRequest as dO, type BookingForm as dP, type FormDetails as dQ, type ConnectedService as dR, type CountServicesRequest as dS, type QueryLocationsRequest as dT, type QueryLocationsFilter as dU, type BusinessLocations as dV, type CustomLocations as dW, type CustomerLocations as dX, type QueryCategoriesRequest as dY, type QueryCategoriesFilter as dZ, type QueryServicesMultiLanguageRequest as d_, type AggregationKindOneOf as da, type RangeBucket as db, type IncludeMissingValuesOptions as dc, type ValueAggregation as dd, type ValueAggregationOptionsOneOf as de, type RangeAggregation as df, type ScalarAggregation as dg, type DateHistogramAggregation as dh, type NestedAggregationItem as di, type NestedAggregationItemKindOneOf as dj, type NestedAggregation as dk, type GroupByAggregation as dl, type GroupByAggregationKindOneOf as dm, type SearchDetails as dn, type CursorPagingMetadata as dp, type AggregationData as dq, type ValueAggregationResult as dr, type RangeAggregationResult as ds, type NestedAggregationResults as dt, type NestedAggregationResultsResultOneOf as du, type ValueResults as dv, type RangeResults as dw, type AggregationResultsScalarResult as dx, type NestedValueAggregationResult as dy, type ValueResult as dz, type BulkUpdateServicesByFilterOptions as e, type FirstChargeDateTypeWithLiterals as e$, type SetServiceLocationsRequest as e0, type RemovedLocationSessionsAction as e1, type RemovedLocationSessionsActionActionOptionsOneOf as e2, type MoveToNewLocationsOptions as e3, type EnablePricingPlansForServiceRequest as e4, type PricingPlanSelection as e5, type InvalidPricingPlan as e6, type DisablePricingPlansForServiceRequest as e7, type SetCustomSlugRequest as e8, type ValidateSlugRequest as e9, type SupportedLanguage as eA, type ConsentPolicy as eB, type Translation as eC, type ChangeContext as eD, type ChangeContextPayloadOneOf as eE, type PropertiesChange as eF, type SiteCreated as eG, type SiteCloned as eH, type CreateAddOnGroupRequest as eI, type DeleteAddOnGroupRequest as eJ, type DeleteAddOnGroupResponse as eK, type UpdateAddOnGroupRequest as eL, type ListAddOnGroupsByServiceIdRequest as eM, type AddOn as eN, type AddOnAddOnInfoOneOf as eO, type AddOnGroupDetail as eP, type SetAddOnsForGroupRequest as eQ, type BaseEventMetadata as eR, type EventMetadata as eS, type AccountInfoMetadata as eT, type ServicesQueryResult as eU, type ServiceQuerySpec as eV, type ServiceSearchSpec as eW, utils as eX, type ServiceTypeWithLiterals as eY, type RateTypeWithLiterals as eZ, type FrequencyTypeWithLiterals as e_, type CloneServiceRequest as ea, type CategoryNotification as eb, type Category as ec, type Empty as ed, type BenefitNotification as ee, type Benefit as ef, type EntryPass as eg, type Discount as eh, type DiscountDiscountOneOf as ei, type Behavior as ej, type BehaviorBehaviorOneOf as ek, type UserDomainInfoChangedEvent as el, type HtmlSitePublished as em, type Page as en, type SitePropertiesNotification as eo, type SitePropertiesEvent as ep, type Properties as eq, type Categories as er, type Locale as es, type V4Address as et, type AddressHint as eu, type GeoCoordinates as ev, type BusinessSchedule as ew, type TimePeriod as ex, type SpecialHourPeriod as ey, type Multilingual as ez, type BulkUpdateServicesByFilterResponse as f, setCustomSlug as f$, type AddOnPaymentOptionsWithLiterals as f0, type LocationTypeEnumLocationTypeWithLiterals as f1, type RankingOrderWithLiterals as f2, type SortingMethodTypeWithLiterals as f3, type TimingWithLiterals as f4, type CompletionRequirementWithLiterals as f5, type TaxableAddressTypeWithLiterals as f6, type MultiServiceBookingTypeWithLiterals as f7, type LocationTypeWithLiterals as f8, type SelectionMethodWithLiterals as f9, type CrudTypeWithLiterals as fA, type PlacementTypeWithLiterals as fB, type DayOfWeekWithLiterals as fC, type ResolutionMethodWithLiterals as fD, type CommonQueryWithEntityContext as fE, type CommonSearchWithEntityContext as fF, onServiceCreated as fG, onServiceDeleted as fH, onServiceUpdated as fI, createService as fJ, bulkCreateServices as fK, getService as fL, updateService as fM, bulkUpdateServices as fN, bulkUpdateServicesByFilter as fO, deleteService as fP, bulkDeleteServices as fQ, bulkDeleteServicesByFilter as fR, queryServices as fS, queryPolicies as fT, queryBookingForms as fU, countServices as fV, queryLocations as fW, queryCategories as fX, setServiceLocations as fY, enablePricingPlansForService as fZ, disablePricingPlansForService as f_, type ValueTypeWithLiterals as fa, type BookingStatusWithLiterals as fb, type PaymentStatusWithLiterals as fc, type SelectedPaymentOptionWithLiterals as fd, type PlatformWithLiterals as fe, type ActorWithLiterals as ff, type IdentityTypeWithLiterals as fg, type WebhookIdentityTypeWithLiterals as fh, type V2RequestedFieldsWithLiterals as fi, type SortOrderWithLiterals as fj, type SortTypeWithLiterals as fk, type SortDirectionWithLiterals as fl, type MissingValuesWithLiterals as fm, type ScalarTypeWithLiterals as fn, type NestedAggregationTypeWithLiterals as fo, type IntervalWithLiterals as fp, type AggregationTypeWithLiterals as fq, type ModeWithLiterals as fr, type RequestedFieldsWithLiterals as fs, type ActionWithLiterals as ft, type InvalidSlugErrorWithLiterals as fu, type CloneErrorsWithLiterals as fv, type StatusWithLiterals as fw, type CategoryNotificationEventWithLiterals as fx, type BenefitTypeWithLiterals as fy, type EventWithLiterals as fz, type BulkDeleteServicesOptions as g, validateSlug as g0, cloneService as g1, createAddOnGroup as g2, deleteAddOnGroup as g3, updateAddOnGroup as g4, listAddOnGroupsByServiceId as g5, setAddOnsForGroup as g6, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-Day26Rn4.js';
3
- export { cu as AccountInfo, eP as AccountInfoMetadata, aD as Action, cq as ActionEvent, fn as ActionWithLiterals, ap as Actor, f9 as ActorWithLiterals, eJ as AddOn, eK as AddOnAddOnInfoOneOf, bM as AddOnDetails, eL as AddOnGroupDetail, aa as AddOnPaymentOptions, eW as AddOnPaymentOptionsWithLiterals, c2 as Address, eq as AddressHint, c5 as AddressLocation, c3 as AddressStreetOneOf, d5 as Aggregation, dl as AggregationData, d6 as AggregationKindOneOf, dF as AggregationResults, dG as AggregationResultsResultOneOf, dt as AggregationResultsScalarResult, aA as AggregationType, fk as AggregationTypeWithLiterals, cD as ApplicationError, bu as AvailabilityConstraints, eN as BaseEventMetadata, ef as Behavior, eg as BehaviorBehaviorOneOf, eb as Benefit, ea as BenefitNotification, aI as BenefitType, fs as BenefitTypeWithLiterals, be as BookAfterStartPolicy, cj as BookedAddOn, bV as BookedEntity, bW as BookedEntityItemOneOf, bY as BookedResource, c0 as BookedSchedule, bX as BookedSlot, bT as Booking, dL as BookingForm, bU as BookingParticipantsInfoOneOf, ba as BookingPolicy, dJ as BookingPolicyWithServices, c8 as BookingSource, al as BookingStatus, f5 as BookingStatusWithLiterals, cE as BulkActionMetadata, cA as BulkCreateServicesRequest, cU as BulkDeleteServicesByFilterRequest, cT as BulkDeleteServicesRequest, cB as BulkServiceResult, cP as BulkUpdateServicesByFilterRequest, cN as BulkUpdateServicesRequest, b8 as BusinessLocationOptions, dR as BusinessLocations, es as BusinessSchedule, bk as CancellationFeePolicy, bf as CancellationPolicy, bl as CancellationWindow, bm as CancellationWindowFeeOneOf, en as Categories, e8 as Category, e7 as CategoryNotification, aH as CategoryNotificationEvent, fr as CategoryNotificationEventWithLiterals, ez as ChangeContext, eA as ChangeContextPayloadOneOf, aF as CloneErrors, fp as CloneErrorsWithLiterals, e6 as CloneServiceRequest, b4 as CommonAddress, b7 as CommonAddressLocation, b5 as CommonAddressStreetOneOf, ca as CommonIdentificationData, cb as CommonIdentificationDataIdOneOf, fy as CommonQueryWithEntityContext, fz as CommonSearchWithEntityContext, b6 as CommonStreetAddress, af as CompletionRequirement, e$ as CompletionRequirementWithLiterals, b1 as Conferencing, dN as ConnectedService, ex as ConsentPolicy, c1 as ContactDetails, dO as CountServicesRequest, eE as CreateAddOnGroupRequest, cv as CreateServiceRequest, cw as CreateServiceResponse, aK as CrudType, fu as CrudTypeWithLiterals, c_ as CursorPaging, dk as CursorPagingMetadata, dI as CursorQueryPagingMethodOneOf, d3 as CursorSearch, d4 as CursorSearchPagingMethodOneOf, d1 as Cursors, c7 as CustomFormField, b9 as CustomLocationOptions, dS as CustomLocations, br as CustomOptions, aY as CustomPayment, dT as CustomerLocations, dd as DateHistogramAggregation, dB as DateHistogramResult, dD as DateHistogramResults, aM as DayOfWeek, fw as DayOfWeekWithLiterals, eF as DeleteAddOnGroupRequest, eG as DeleteAddOnGroupResponse, cQ as DeleteServiceRequest, cS as DeleteServiceResponse, e3 as DisablePricingPlansForServiceRequest, ed as Discount, ee as DiscountDiscountOneOf, a$ as DiscountInfo, ck as DomainEvent, cl as DomainEventBodyOneOf, bR as DummyRequest, bS as DummyResponse, ch as Duration, e9 as Empty, e0 as EnablePricingPlansForServiceRequest, cm as EntityCreatedEvent, cp as EntityDeletedEvent, co as EntityUpdatedEvent, ec as EntryPass, aJ as Event, eO as EventMetadata, ft as EventWithLiterals, bH as ExtendedFields, cz as FieldViolation, aW as FixedPayment, cc as FlowControlSettings, aS as Form, dM as FormDetails, aT as FormSettings, er as GeoCoordinates, cH as GetServiceAvailabilityConstraintsRequest, cI as GetServiceAvailabilityConstraintsResponse, cF as GetServiceRequest, cG as GetServiceResponse, dh as GroupByAggregation, di as GroupByAggregationKindOneOf, dC as GroupByValueResults, ei as HtmlSitePublished, cs as IdentificationData, ct as IdentificationDataIdOneOf, aq as IdentityType, fa as IdentityTypeWithLiterals, d8 as IncludeMissingValuesOptions, bs as IntakeFormPolicy, az as Interval, fj as IntervalWithLiterals, e2 as InvalidPricingPlan, aE as InvalidSlugError, fo as InvalidSlugErrorWithLiterals, cC as ItemMetadata, bJ as Keyword, bc as LimitEarlyBookingPolicy, bd as LimitLateBookingPolicy, eI as ListAddOnGroupsByServiceIdRequest, eo as Locale, bZ as Location, ai as LocationType, ab as LocationTypeEnumLocationType, eX as LocationTypeEnumLocationTypeWithLiterals, f2 as LocationTypeWithLiterals, cO as MaskedService, aO as Media, aP as MediaItem, aQ as MediaItemItemOneOf, cr as MessageEnvelope, aw as MissingValues, fg as MissingValuesWithLiterals, aB as Mode, fl as ModeWithLiterals, aX as Money, d$ as MoveToNewLocationsOptions, ci as MultiServiceBookingInfo, ah as MultiServiceBookingType, f1 as MultiServiceBookingTypeWithLiterals, ev as Multilingual, dg as NestedAggregation, de as NestedAggregationItem, df as NestedAggregationItemKindOneOf, dp as NestedAggregationResults, dq as NestedAggregationResultsResultOneOf, ay as NestedAggregationType, fi as NestedAggregationTypeWithLiterals, dy as NestedResultValue, dz as NestedResultValueResultOneOf, dE as NestedResults, du as NestedValueAggregationResult, b0 as OnlineBooking, ej as Page, cZ as Paging, d0 as PagingMetadataV2, cd as ParticipantChoices, c9 as ParticipantNotification, bi as ParticipantsPolicy, aU as Payment, a_ as PaymentOptions, aV as PaymentRateOneOf, am as PaymentStatus, f6 as PaymentStatusWithLiterals, b_ as PhoneCall, aL as PlacementType, fv as PlacementTypeWithLiterals, ao as Platform, f8 as PlatformWithLiterals, bb as PolicyDescription, e1 as PricingPlanSelection, em as Properties, eB as PropertiesChange, dK as QueryBookingFormsRequest, dV as QueryCategoriesFilter, dU as QueryCategoriesRequest, dQ as QueryLocationsFilter, dP as QueryLocationsRequest, dH as QueryPoliciesRequest, dW as QueryServicesMultiLanguageRequest, dX as QueryServicesMultiLanguageResponse, cV as QueryServicesRequest, c$ as QueryServicesResponse, cW as QueryV2, cX as QueryV2PagingMethodOneOf, db as RangeAggregation, dn as RangeAggregationResult, d7 as RangeBucket, dw as RangeResult, ds as RangeResults, bq as RankingOptions, ac as RankingOrder, eY as RankingOrderWithLiterals, a9 as RateType, eV as RateTypeWithLiterals, dZ as RemovedLocationSessionsAction, d_ as RemovedLocationSessionsActionActionOptionsOneOf, aC as RequestedFields, fm as RequestedFieldsWithLiterals, bg as ReschedulePolicy, aN as ResolutionMethod, fx as ResolutionMethodWithLiterals, bA as ResourceGroup, bB as ResourceIds, b$ as ResourceSelection, bE as ResourceType, bj as ResourcesPolicy, cn as RestoreInfo, dA as Results, bn as SaveCreditCardPolicy, dc as ScalarAggregation, dx as ScalarResult, ax as ScalarType, fh as ScalarTypeWithLiterals, bt as Schedule, dj as SearchDetails, d2 as SearchServicesRequest, an as SelectedPaymentOption, f7 as SelectedPaymentOptionWithLiterals, aj as SelectionMethod, f3 as SelectionMethodWithLiterals, bI as SeoSchema, cJ as ServiceAvailabilityConstraints, cf as ServiceChoice, cg as ServiceChoiceChoiceOneOf, ce as ServiceChoices, eR as ServiceQuerySpec, bC as ServiceResource, bD as ServiceResourceSelectionOneOf, eS as ServiceSearchSpec, a8 as ServiceType, eU as ServiceTypeWithLiterals, eQ as ServicesQueryResult, bQ as ServicesUrlsChanged, eM as SetAddOnsForGroupRequest, bP as SetCustomSlugEvent, e4 as SetCustomSlugRequest, dY as SetServiceLocationsRequest, bL as Settings, eD as SiteCloned, eC as SiteCreated, el as SitePropertiesEvent, ek as SitePropertiesNotification, bF as Slug, av as SortDirection, ff as SortDirectionWithLiterals, at as SortOrder, fd as SortOrderWithLiterals, au as SortType, fe as SortTypeWithLiterals, cY as Sorting, ad as SortingMethodType, eZ as SortingMethodTypeWithLiterals, eu as SpecialHourPeriod, cK as SplitInterval, bx as StaffMediaItem, by as StaffMediaItemItemOneOf, bw as StaffMember, bz as StaffMemberDetails, bo as StaffSortingPolicy, bp as StaffSortingPolicyOptionsOneOf, aG as Status, fq as StatusWithLiterals, c4 as StreetAddress, c6 as Subdivision, ew as SupportedLanguage, bK as Tag, bN as TaxableAddress, ag as TaxableAddressType, f0 as TaxableAddressTypeWithLiterals, et as TimePeriod, ae as Timing, e_ as TimingWithLiterals, ey as Translation, bG as URLs, eH as UpdateAddOnGroupRequest, cL as UpdateServiceRequest, cM as UpdateServiceResponse, eh as UserDomainInfoChangedEvent, aR as V2Category, bv as V2Duration, b2 as V2Location, b3 as V2LocationOptionsOneOf, cR as V2ParticipantNotification, bO as V2PhoneCall, as as V2RequestedFields, fc as V2RequestedFieldsWithLiterals, ep as V4Address, cx as ValidateServiceRequest, cy as ValidateServiceResponse, e5 as ValidateSlugRequest, d9 as ValueAggregation, da as ValueAggregationOptionsOneOf, dm as ValueAggregationResult, dv as ValueResult, dr as ValueResults, ak as ValueType, f4 as ValueTypeWithLiterals, aZ as VariedPayment, bh as WaitlistPolicy, ar as WebhookIdentityType, fb as WebhookIdentityTypeWithLiterals, eT as utils } from './bookings-services-v2-service-services.universal-Day26Rn4.js';
2
+ import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-B96er953.js';
3
+ export { cy as AccountInfo, eT as AccountInfoMetadata, aF as Action, cu as ActionEvent, ft as ActionWithLiterals, ar as Actor, ff as ActorWithLiterals, eN as AddOn, eO as AddOnAddOnInfoOneOf, bQ as AddOnDetails, eP as AddOnGroupDetail, ac as AddOnPaymentOptions, f0 as AddOnPaymentOptionsWithLiterals, c6 as Address, eu as AddressHint, c9 as AddressLocation, c7 as AddressStreetOneOf, d9 as Aggregation, dq as AggregationData, da as AggregationKindOneOf, dJ as AggregationResults, dK as AggregationResultsResultOneOf, dx as AggregationResultsScalarResult, aC as AggregationType, fq as AggregationTypeWithLiterals, cH as ApplicationError, by as AvailabilityConstraints, eR as BaseEventMetadata, ej as Behavior, ek as BehaviorBehaviorOneOf, ef as Benefit, ee as BenefitNotification, aK as BenefitType, fy as BenefitTypeWithLiterals, bi as BookAfterStartPolicy, cn as BookedAddOn, bZ as BookedEntity, b_ as BookedEntityItemOneOf, c0 as BookedResource, c4 as BookedSchedule, b$ as BookedSlot, bX as Booking, dP as BookingForm, bY as BookingParticipantsInfoOneOf, be as BookingPolicy, dN as BookingPolicyWithServices, cc as BookingSource, an as BookingStatus, fb as BookingStatusWithLiterals, cI as BulkActionMetadata, cE as BulkCreateServicesRequest, cY as BulkDeleteServicesByFilterRequest, cX as BulkDeleteServicesRequest, cF as BulkServiceResult, cT as BulkUpdateServicesByFilterRequest, cR as BulkUpdateServicesRequest, bc as BusinessLocationOptions, dV as BusinessLocations, ew as BusinessSchedule, bo as CancellationFeePolicy, bj as CancellationPolicy, bp as CancellationWindow, bq as CancellationWindowFeeOneOf, er as Categories, ec as Category, eb as CategoryNotification, aJ as CategoryNotificationEvent, fx as CategoryNotificationEventWithLiterals, eD as ChangeContext, eE as ChangeContextPayloadOneOf, aH as CloneErrors, fv as CloneErrorsWithLiterals, ea as CloneServiceRequest, b8 as CommonAddress, bb as CommonAddressLocation, b9 as CommonAddressStreetOneOf, ce as CommonIdentificationData, cf as CommonIdentificationDataIdOneOf, fE as CommonQueryWithEntityContext, fF as CommonSearchWithEntityContext, ba as CommonStreetAddress, ah as CompletionRequirement, f5 as CompletionRequirementWithLiterals, b5 as Conferencing, dR as ConnectedService, eB as ConsentPolicy, c5 as ContactDetails, dS as CountServicesRequest, eI as CreateAddOnGroupRequest, cz as CreateServiceRequest, cA as CreateServiceResponse, aM as CrudType, fA as CrudTypeWithLiterals, d2 as CursorPaging, dp as CursorPagingMetadata, dM as CursorQueryPagingMethodOneOf, d7 as CursorSearch, d8 as CursorSearchPagingMethodOneOf, d5 as Cursors, cb as CustomFormField, bd as CustomLocationOptions, dW as CustomLocations, bv as CustomOptions, a_ as CustomPayment, dX as CustomerLocations, dh as DateHistogramAggregation, dF as DateHistogramResult, dH as DateHistogramResults, aO as DayOfWeek, fC as DayOfWeekWithLiterals, eJ as DeleteAddOnGroupRequest, eK as DeleteAddOnGroupResponse, cU as DeleteServiceRequest, cW as DeleteServiceResponse, e7 as DisablePricingPlansForServiceRequest, eh as Discount, ei as DiscountDiscountOneOf, b3 as DiscountInfo, co as DomainEvent, cp as DomainEventBodyOneOf, bV as DummyRequest, bW as DummyResponse, cl as Duration, ed as Empty, e4 as EnablePricingPlansForServiceRequest, cq as EntityCreatedEvent, ct as EntityDeletedEvent, cs as EntityUpdatedEvent, eg as EntryPass, aL as Event, eS as EventMetadata, fz as EventWithLiterals, bL as ExtendedFields, cD as FieldViolation, ab as FirstChargeDateType, e$ as FirstChargeDateTypeWithLiterals, aY as FixedPayment, cg as FlowControlSettings, aU as Form, dQ as FormDetails, aV as FormSettings, aa as FrequencyType, e_ as FrequencyTypeWithLiterals, b1 as FullUpfrontPayment, ev as GeoCoordinates, cL as GetServiceAvailabilityConstraintsRequest, cM as GetServiceAvailabilityConstraintsResponse, cJ as GetServiceRequest, cK as GetServiceResponse, dl as GroupByAggregation, dm as GroupByAggregationKindOneOf, dG as GroupByValueResults, em as HtmlSitePublished, cw as IdentificationData, cx as IdentificationDataIdOneOf, as as IdentityType, fg as IdentityTypeWithLiterals, dc as IncludeMissingValuesOptions, bw as IntakeFormPolicy, aB as Interval, fp as IntervalWithLiterals, e6 as InvalidPricingPlan, aG as InvalidSlugError, fu as InvalidSlugErrorWithLiterals, cG as ItemMetadata, bN as Keyword, bg as LimitEarlyBookingPolicy, bh as LimitLateBookingPolicy, eM as ListAddOnGroupsByServiceIdRequest, es as Locale, c1 as Location, ak as LocationType, ad as LocationTypeEnumLocationType, f1 as LocationTypeEnumLocationTypeWithLiterals, f8 as LocationTypeWithLiterals, cS as MaskedService, aQ as Media, aR as MediaItem, aS as MediaItemItemOneOf, cv as MessageEnvelope, ay as MissingValues, fm as MissingValuesWithLiterals, aD as Mode, fr as ModeWithLiterals, aZ as Money, e3 as MoveToNewLocationsOptions, cm as MultiServiceBookingInfo, aj as MultiServiceBookingType, f7 as MultiServiceBookingTypeWithLiterals, ez as Multilingual, dk as NestedAggregation, di as NestedAggregationItem, dj as NestedAggregationItemKindOneOf, dt as NestedAggregationResults, du as NestedAggregationResultsResultOneOf, aA as NestedAggregationType, fo as NestedAggregationTypeWithLiterals, dC as NestedResultValue, dD as NestedResultValueResultOneOf, dI as NestedResults, dy as NestedValueAggregationResult, b4 as OnlineBooking, en as Page, d1 as Paging, d4 as PagingMetadataV2, ch as ParticipantChoices, cd as ParticipantNotification, bm as ParticipantsPolicy, aW as Payment, b2 as PaymentOptions, aX as PaymentRateOneOf, ao as PaymentStatus, fc as PaymentStatusWithLiterals, c2 as PhoneCall, aN as PlacementType, fB as PlacementTypeWithLiterals, aq as Platform, fe as PlatformWithLiterals, bf as PolicyDescription, e5 as PricingPlanSelection, eq as Properties, eF as PropertiesChange, dO as QueryBookingFormsRequest, dZ as QueryCategoriesFilter, dY as QueryCategoriesRequest, dU as QueryLocationsFilter, dT as QueryLocationsRequest, dL as QueryPoliciesRequest, d_ as QueryServicesMultiLanguageRequest, d$ as QueryServicesMultiLanguageResponse, cZ as QueryServicesRequest, d3 as QueryServicesResponse, c_ as QueryV2, c$ as QueryV2PagingMethodOneOf, df as RangeAggregation, ds as RangeAggregationResult, db as RangeBucket, dA as RangeResult, dw as RangeResults, bu as RankingOptions, ae as RankingOrder, f2 as RankingOrderWithLiterals, a9 as RateType, eZ as RateTypeWithLiterals, e1 as RemovedLocationSessionsAction, e2 as RemovedLocationSessionsActionActionOptionsOneOf, aE as RequestedFields, fs as RequestedFieldsWithLiterals, bk as ReschedulePolicy, aP as ResolutionMethod, fD as ResolutionMethodWithLiterals, bE as ResourceGroup, bF as ResourceIds, c3 as ResourceSelection, bI as ResourceType, bn as ResourcesPolicy, cr as RestoreInfo, dE as Results, br as SaveCreditCardPolicy, dg as ScalarAggregation, dB as ScalarResult, az as ScalarType, fn as ScalarTypeWithLiterals, bx as Schedule, dn as SearchDetails, d6 as SearchServicesRequest, ap as SelectedPaymentOption, fd as SelectedPaymentOptionWithLiterals, al as SelectionMethod, f9 as SelectionMethodWithLiterals, bM as SeoSchema, cN as ServiceAvailabilityConstraints, cj as ServiceChoice, ck as ServiceChoiceChoiceOneOf, ci as ServiceChoices, eV as ServiceQuerySpec, bG as ServiceResource, bH as ServiceResourceSelectionOneOf, eW as ServiceSearchSpec, a8 as ServiceType, eY as ServiceTypeWithLiterals, eU as ServicesQueryResult, bU as ServicesUrlsChanged, eQ as SetAddOnsForGroupRequest, bT as SetCustomSlugEvent, e8 as SetCustomSlugRequest, e0 as SetServiceLocationsRequest, bP as Settings, eH as SiteCloned, eG as SiteCreated, ep as SitePropertiesEvent, eo as SitePropertiesNotification, bJ as Slug, ax as SortDirection, fl as SortDirectionWithLiterals, av as SortOrder, fj as SortOrderWithLiterals, aw as SortType, fk as SortTypeWithLiterals, d0 as Sorting, af as SortingMethodType, f3 as SortingMethodTypeWithLiterals, ey as SpecialHourPeriod, cO as SplitInterval, bB as StaffMediaItem, bC as StaffMediaItemItemOneOf, bA as StaffMember, bD as StaffMemberDetails, bs as StaffSortingPolicy, bt as StaffSortingPolicyOptionsOneOf, aI as Status, fw as StatusWithLiterals, c8 as StreetAddress, ca as Subdivision, b0 as SubscriptionPayment, eA as SupportedLanguage, bO as Tag, bR as TaxableAddress, ai as TaxableAddressType, f6 as TaxableAddressTypeWithLiterals, ex as TimePeriod, ag as Timing, f4 as TimingWithLiterals, eC as Translation, bK as URLs, eL as UpdateAddOnGroupRequest, cP as UpdateServiceRequest, cQ as UpdateServiceResponse, el as UserDomainInfoChangedEvent, aT as V2Category, bz as V2Duration, b6 as V2Location, b7 as V2LocationOptionsOneOf, cV as V2ParticipantNotification, bS as V2PhoneCall, au as V2RequestedFields, fi as V2RequestedFieldsWithLiterals, et as V4Address, cB as ValidateServiceRequest, cC as ValidateServiceResponse, e9 as ValidateSlugRequest, dd as ValueAggregation, de as ValueAggregationOptionsOneOf, dr as ValueAggregationResult, dz as ValueResult, dv as ValueResults, am as ValueType, fa as ValueTypeWithLiterals, a$ as VariedPayment, bl as WaitlistPolicy, at as WebhookIdentityType, fh as WebhookIdentityTypeWithLiterals, eX as utils } from './bookings-services-v2-service-services.universal-B96er953.js';
4
4
 
5
5
  declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
6
6
  interface CreateServiceSignature {
@@ -32,6 +32,8 @@ __export(index_exports, {
32
32
  CrudType: () => CrudType,
33
33
  DayOfWeek: () => DayOfWeek,
34
34
  Event: () => Event,
35
+ FirstChargeDateType: () => FirstChargeDateType,
36
+ FrequencyType: () => FrequencyType,
35
37
  IdentityType: () => IdentityType,
36
38
  Interval: () => Interval,
37
39
  InvalidSlugError: () => InvalidSlugError,
@@ -1835,6 +1837,17 @@ var RateType = /* @__PURE__ */ ((RateType2) => {
1835
1837
  RateType2["NO_FEE"] = "NO_FEE";
1836
1838
  return RateType2;
1837
1839
  })(RateType || {});
1840
+ var FrequencyType = /* @__PURE__ */ ((FrequencyType2) => {
1841
+ FrequencyType2["UNKNOWN_FREQUENCY"] = "UNKNOWN_FREQUENCY";
1842
+ FrequencyType2["MONTHLY"] = "MONTHLY";
1843
+ return FrequencyType2;
1844
+ })(FrequencyType || {});
1845
+ var FirstChargeDateType = /* @__PURE__ */ ((FirstChargeDateType2) => {
1846
+ FirstChargeDateType2["UNKNOWN_FIRST_CHARGE_DATE_TYPE"] = "UNKNOWN_FIRST_CHARGE_DATE_TYPE";
1847
+ FirstChargeDateType2["CHECKOUT"] = "CHECKOUT";
1848
+ FirstChargeDateType2["SCHEDULED"] = "SCHEDULED";
1849
+ return FirstChargeDateType2;
1850
+ })(FirstChargeDateType || {});
1838
1851
  var AddOnPaymentOptions = /* @__PURE__ */ ((AddOnPaymentOptions2) => {
1839
1852
  AddOnPaymentOptions2["UNKNOWN_ADD_ON_PAYMENT_OPTIONS"] = "UNKNOWN_ADD_ON_PAYMENT_OPTIONS";
1840
1853
  AddOnPaymentOptions2["ONLINE"] = "ONLINE";
@@ -3990,6 +4003,8 @@ var onServiceUpdated2 = (0, import_event_definition_modules.createEventModule)(o
3990
4003
  CrudType,
3991
4004
  DayOfWeek,
3992
4005
  Event,
4006
+ FirstChargeDateType,
4007
+ FrequencyType,
3993
4008
  IdentityType,
3994
4009
  Interval,
3995
4010
  InvalidSlugError,