@wix/auto_sdk_bookings_services 1.0.237 → 1.0.239

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 (45) hide show
  1. package/build/cjs/{bookings-services-v2-service-services.universal-BKoqsyEO.d.ts → bookings-services-v2-service-services.universal-Dorio3C3.d.ts} +30 -28
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +12 -6
  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 +12 -6
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +30 -28
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.js +40 -40
  11. package/build/cjs/schemas.js.map +1 -1
  12. package/build/es/{bookings-services-v2-service-services.universal-BKoqsyEO.d.mts → bookings-services-v2-service-services.universal-Dorio3C3.d.mts} +30 -28
  13. package/build/es/index.d.mts +2 -2
  14. package/build/es/index.mjs +12 -6
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +2 -2
  17. package/build/es/index.typings.mjs +12 -6
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +30 -28
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/es/schemas.mjs +40 -40
  22. package/build/es/schemas.mjs.map +1 -1
  23. package/build/internal/cjs/{bookings-services-v2-service-services.universal-D98H2-yO.d.ts → bookings-services-v2-service-services.universal-mc9Kk_qi.d.ts} +72 -28
  24. package/build/internal/cjs/index.d.ts +2 -2
  25. package/build/internal/cjs/index.js +12 -6
  26. package/build/internal/cjs/index.js.map +1 -1
  27. package/build/internal/cjs/index.typings.d.ts +2 -2
  28. package/build/internal/cjs/index.typings.js +12 -6
  29. package/build/internal/cjs/index.typings.js.map +1 -1
  30. package/build/internal/cjs/meta.d.ts +30 -28
  31. package/build/internal/cjs/meta.js.map +1 -1
  32. package/build/internal/cjs/schemas.js +40 -40
  33. package/build/internal/cjs/schemas.js.map +1 -1
  34. package/build/internal/es/{bookings-services-v2-service-services.universal-D98H2-yO.d.mts → bookings-services-v2-service-services.universal-mc9Kk_qi.d.mts} +72 -28
  35. package/build/internal/es/index.d.mts +2 -2
  36. package/build/internal/es/index.mjs +12 -6
  37. package/build/internal/es/index.mjs.map +1 -1
  38. package/build/internal/es/index.typings.d.mts +2 -2
  39. package/build/internal/es/index.typings.mjs +12 -6
  40. package/build/internal/es/index.typings.mjs.map +1 -1
  41. package/build/internal/es/meta.d.mts +30 -28
  42. package/build/internal/es/meta.mjs.map +1 -1
  43. package/build/internal/es/schemas.mjs +40 -40
  44. package/build/internal/es/schemas.mjs.map +1 -1
  45. package/package.json +2 -2
@@ -893,9 +893,10 @@ interface CancellationPolicy {
893
893
  * policy itself is disabled (`enabled` = `false`), anonymous users cannot cancel
894
894
  * regardless of this flag's value.
895
895
  *
896
- * When not set (null), defaults to disabled.
896
+ * When not set (null), defaults to enabled. Anonymous cancellations are allowed by default
897
+ * so that customers aren't required to be site members to cancel their bookings.
897
898
  *
898
- * Default: `null` (treated as disabled)
899
+ * Default: `null` (treated as `true`)
899
900
  */
900
901
  allowAnonymous?: boolean | null;
901
902
  }
@@ -930,9 +931,10 @@ interface ReschedulePolicy {
930
931
  * policy itself is disabled (`enabled` = `false`), anonymous users cannot reschedule
931
932
  * regardless of this flag's value.
932
933
  *
933
- * When not set (null), defaults to disabled.
934
+ * When not set (null), defaults to enabled. Anonymous rescheduling is allowed by default
935
+ * so that customers aren't required to be site members to reschedule their bookings.
934
936
  *
935
- * Default: `null` (treated as disabled)
937
+ * Default: `null` (treated as `true`)
936
938
  */
937
939
  allowAnonymous?: boolean | null;
938
940
  }
@@ -1367,6 +1369,29 @@ interface ResourceType {
1367
1369
  */
1368
1370
  name?: string | null;
1369
1371
  }
1372
+ /** Details about the individual resources assigned to a service resource. */
1373
+ interface ResourceDetails {
1374
+ /**
1375
+ * List of resources assigned to this service resource.
1376
+ * @maxSize 100
1377
+ */
1378
+ resources?: ResourceInfo[];
1379
+ }
1380
+ /** A resource assigned to a service resource. */
1381
+ interface ResourceInfo {
1382
+ /**
1383
+ * ID of the resource.
1384
+ * @format GUID
1385
+ * @readonly
1386
+ */
1387
+ _id?: string;
1388
+ /**
1389
+ * Display name of the resource (for example, `"John Smith"` or `"Room A"`).
1390
+ * @readonly
1391
+ * @maxLength 100
1392
+ */
1393
+ name?: string | null;
1394
+ }
1370
1395
  interface Slug {
1371
1396
  /**
1372
1397
  * The unique part of service's URL that identifies the service's information page. For example, `service-1` in `https:/example.com/services/service-1`.
@@ -2628,29 +2653,6 @@ interface AccountInfo {
2628
2653
  */
2629
2654
  siteId?: string | null;
2630
2655
  }
2631
- /** Details about the individual resources assigned to a service resource. */
2632
- interface ResourceDetails {
2633
- /**
2634
- * List of resources assigned to this service resource.
2635
- * @maxSize 100
2636
- */
2637
- resources?: ResourceInfo[];
2638
- }
2639
- /** A resource assigned to a service resource. */
2640
- interface ResourceInfo {
2641
- /**
2642
- * ID of the resource.
2643
- * @format GUID
2644
- * @readonly
2645
- */
2646
- _id?: string;
2647
- /**
2648
- * Display name of the resource (for example, `"John Smith"` or `"Room A"`).
2649
- * @readonly
2650
- * @maxLength 100
2651
- */
2652
- name?: string | null;
2653
- }
2654
2656
  interface CreateServiceRequest {
2655
2657
  /** Service to create. */
2656
2658
  service: Service;
@@ -6476,4 +6478,4 @@ interface SetAddOnsForGroupOptions {
6476
6478
  addOnIds: string[] | null;
6477
6479
  }
6478
6480
 
6479
- 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 V2PhoneCall 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 Slug as bS, type URLs as bT, type ExtendedFields as bU, type SeoSchema as bV, type Keyword as bW, type Tag as bX, type Settings as bY, type AddOnDetails as bZ, type TaxableAddress 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 SetCustomSlugEvent as c0, type ServicesUrlsChanged as c1, type DummyRequest as c2, type DummyResponse as c3, type Booking as c4, type BookingParticipantsInfoOneOf as c5, type BookedEntity as c6, type BookedEntityItemOneOf as c7, type BookedSlot as c8, type BookedResource as c9, type RestoreInfo as cA, type EntityUpdatedEvent as cB, type EntityDeletedEvent as cC, type ActionEvent as cD, type MessageEnvelope as cE, type IdentificationData as cF, type IdentificationDataIdOneOf as cG, type AccountInfo as cH, type ResourceDetails as cI, type ResourceInfo 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 Location as ca, type PhoneCall as cb, type ResourceSelection as cc, type BookedSchedule as cd, type ContactDetails as ce, type Address as cf, type AddressStreetOneOf as cg, type StreetAddress as ch, type AddressLocation as ci, type Subdivision as cj, type CustomFormField as ck, type BookingSource as cl, type ParticipantNotification as cm, type CommonIdentificationData as cn, type CommonIdentificationDataIdOneOf as co, type FlowControlSettings as cp, type ParticipantChoices as cq, type ServiceChoices as cr, type ServiceChoice as cs, type ServiceChoiceChoiceOneOf as ct, type Duration as cu, type MultiServiceBookingInfo as cv, type BookedAddOn as cw, type DomainEvent as cx, type DomainEventBodyOneOf as cy, type EntityCreatedEvent 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 };
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 };
@@ -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-BKoqsyEO.js';
3
- export { cH as AccountInfo, f4 as AccountInfoMetadata, aK as Action, cD as ActionEvent, fJ as ActionWithLiterals, aw as Actor, fv as ActorWithLiterals, e_ as AddOn, e$ as AddOnAddOnInfoOneOf, bZ as AddOnDetails, f0 as AddOnGroupDetail, ae as AddOnPaymentOptions, fd as AddOnPaymentOptionsWithLiterals, cf as Address, eH as AddressHint, ci as AddressLocation, cg 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, cw as BookedAddOn, c6 as BookedEntity, c7 as BookedEntityItemOneOf, c9 as BookedResource, cd as BookedSchedule, c8 as BookedSlot, c4 as Booking, e0 as BookingForm, c5 as BookingParticipantsInfoOneOf, bj as BookingPolicy, d_ as BookingPolicyWithServices, cl 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, cn as CommonIdentificationData, co 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, ce 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, ck 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, cx as DomainEvent, cy as DomainEventBodyOneOf, c2 as DummyRequest, c3 as DummyResponse, cu as Duration, bF as DurationRange, bG as DurationRangeConfigOneOf, aq as DurationUnitType, fp as DurationUnitTypeWithLiterals, eq as Empty, eh as EnablePricingPlansForServiceRequest, cz as EntityCreatedEvent, cC as EntityDeletedEvent, cB as EntityUpdatedEvent, et as EntryPass, aQ as Event, f3 as EventMetadata, fP as EventWithLiterals, bU as ExtendedFields, cO as FieldViolation, ad as FirstChargeDateType, fc as FirstChargeDateTypeWithLiterals, b1 as FixedPayment, cp 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, cF as IdentificationData, cG 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, bW as Keyword, bl as LimitEarlyBookingPolicy, bm as LimitLateBookingPolicy, eZ as ListAddOnGroupsByServiceIdRequest, eF as Locale, ca 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, cE as MessageEnvelope, aD as MissingValues, fC as MissingValuesWithLiterals, aI as Mode, fH as ModeWithLiterals, b2 as Money, eg as MoveToNewLocationsOptions, cv 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, cq as ParticipantChoices, cm as ParticipantNotification, br as ParticipantsPolicy, a$ as Payment, b7 as PaymentOptions, b0 as PaymentRateOneOf, at as PaymentStatus, fs as PaymentStatusWithLiterals, cb 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, cI as ResourceDetails, bN as ResourceGroup, bO as ResourceIds, cJ as ResourceInfo, cc as ResourceSelection, an as ResourceTransparency, fm as ResourceTransparencyWithLiterals, bR as ResourceType, bs as ResourcesPolicy, cA 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, bV as SeoSchema, cY as ServiceAvailabilityConstraints, cs as ServiceChoice, ct as ServiceChoiceChoiceOneOf, cr as ServiceChoices, f6 as ServiceQuerySpec, bP as ServiceResource, bQ as ServiceResourceSelectionOneOf, f7 as ServiceSearchSpec, aa as ServiceType, f9 as ServiceTypeWithLiterals, f5 as ServicesQueryResult, c1 as ServicesUrlsChanged, f1 as SetAddOnsForGroupRequest, c0 as SetCustomSlugEvent, el as SetCustomSlugRequest, ed as SetServiceLocationsRequest, bY as Settings, eU as SiteCloned, eT as SiteCreated, eC as SitePropertiesEvent, eB as SitePropertiesNotification, bS 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, ch as StreetAddress, cj as Subdivision, b5 as SubscriptionPayment, eN as SupportedLanguage, bX as Tag, b_ as TaxableAddress, al as TaxableAddressType, fk as TaxableAddressTypeWithLiterals, eK as TimePeriod, ai as Timing, fh as TimingWithLiterals, eP as Translation, bT 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, b$ 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-BKoqsyEO.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-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';
4
4
 
5
5
  declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
6
6
  interface CreateServiceSignature {
@@ -2605,7 +2605,8 @@ async function deleteService2(serviceId, options) {
2605
2605
  const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
2606
2606
  serviceId,
2607
2607
  preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
2608
- participantNotification: options?.participantNotification
2608
+ participantNotification: options?.participantNotification,
2609
+ cancelSubscription: options?.cancelSubscription
2609
2610
  });
2610
2611
  const reqOpts = deleteService(payload);
2611
2612
  sideEffects?.onSiteCall?.();
@@ -2620,7 +2621,8 @@ async function deleteService2(serviceId, options) {
2620
2621
  explicitPathsToArguments: {
2621
2622
  serviceId: "$[0]",
2622
2623
  preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
2623
- participantNotification: "$[1].participantNotification"
2624
+ participantNotification: "$[1].participantNotification",
2625
+ cancelSubscription: "$[1].cancelSubscription"
2624
2626
  },
2625
2627
  singleArgumentUnchanged: false
2626
2628
  },
@@ -2635,7 +2637,8 @@ async function bulkDeleteServices2(ids, options) {
2635
2637
  const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
2636
2638
  ids,
2637
2639
  preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
2638
- participantNotification: options?.participantNotification
2640
+ participantNotification: options?.participantNotification,
2641
+ cancelSubscription: options?.cancelSubscription
2639
2642
  });
2640
2643
  const reqOpts = bulkDeleteServices(payload);
2641
2644
  sideEffects?.onSiteCall?.();
@@ -2682,7 +2685,8 @@ async function bulkDeleteServices2(ids, options) {
2682
2685
  explicitPathsToArguments: {
2683
2686
  ids: "$[0]",
2684
2687
  preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
2685
- participantNotification: "$[1].participantNotification"
2688
+ participantNotification: "$[1].participantNotification",
2689
+ cancelSubscription: "$[1].cancelSubscription"
2686
2690
  },
2687
2691
  singleArgumentUnchanged: false
2688
2692
  },
@@ -2697,7 +2701,8 @@ async function bulkDeleteServicesByFilter2(filter, options) {
2697
2701
  const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
2698
2702
  filter,
2699
2703
  preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
2700
- participantNotification: options?.participantNotification
2704
+ participantNotification: options?.participantNotification,
2705
+ cancelSubscription: options?.cancelSubscription
2701
2706
  });
2702
2707
  const reqOpts = bulkDeleteServicesByFilter(payload);
2703
2708
  sideEffects?.onSiteCall?.();
@@ -2713,7 +2718,8 @@ async function bulkDeleteServicesByFilter2(filter, options) {
2713
2718
  explicitPathsToArguments: {
2714
2719
  filter: "$[0]",
2715
2720
  preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
2716
- participantNotification: "$[1].participantNotification"
2721
+ participantNotification: "$[1].participantNotification",
2722
+ cancelSubscription: "$[1].cancelSubscription"
2717
2723
  },
2718
2724
  singleArgumentUnchanged: false
2719
2725
  },