@wix/auto_sdk_bookings_services 1.0.142 → 1.0.144

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/{bookings-services-v2-service-services.universal-Bk0wGwO4.d.ts → bookings-services-v2-service-services.universal-DyEOrnAk.d.ts} +30 -6
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +16 -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 +16 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +31 -7
  9. package/build/cjs/meta.js +16 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-Bk0wGwO4.d.mts → bookings-services-v2-service-services.universal-DyEOrnAk.d.mts} +30 -6
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +14 -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 +14 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +31 -7
  19. package/build/es/meta.mjs +14 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-Bk0wGwO4.d.ts → bookings-services-v2-service-services.universal-DyEOrnAk.d.ts} +30 -6
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +16 -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 +16 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +31 -7
  29. package/build/internal/cjs/meta.js +16 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-Bk0wGwO4.d.mts → bookings-services-v2-service-services.universal-DyEOrnAk.d.mts} +30 -6
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +14 -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 +14 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +31 -7
  39. package/build/internal/es/meta.mjs +14 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -953,17 +953,41 @@ interface CustomOptions {
953
953
  /** Policy for integrating with Intake form. Stores which form to use and when to present it. */
954
954
  interface IntakeFormPolicy {
955
955
  /**
956
- * ID of the form used as an intake form for the service.
956
+ * Whether intake form integration is enabled for the service.
957
+ * Default: `false`
958
+ */
959
+ enabled?: boolean;
960
+ /**
961
+ * ID of the intake form to integrate with the service.
957
962
  * @format GUID
958
963
  */
959
964
  formId?: string | null;
965
+ /** When to present the intake form to the customer. */
966
+ timing?: TimingWithLiterals;
967
+ completionRequirement?: CompletionRequirementWithLiterals;
968
+ }
969
+ declare enum Timing {
970
+ UNKNOWN_TIMING = "UNKNOWN_TIMING",
971
+ /** Send form after booking. */
972
+ AFTER_BOOKING = "AFTER_BOOKING",
973
+ /** Show form during booking flow. */
974
+ BEFORE_BOOKING = "BEFORE_BOOKING"
975
+ }
976
+ /** @enumType */
977
+ type TimingWithLiterals = Timing | 'UNKNOWN_TIMING' | 'AFTER_BOOKING' | 'BEFORE_BOOKING';
978
+ /** Requirement for completing the intake form. */
979
+ declare enum CompletionRequirement {
980
+ UNKNOWN_COMPLETION_REQUIREMENT = "UNKNOWN_COMPLETION_REQUIREMENT",
981
+ /** Form completion is optional and can be skipped entirely. */
982
+ OPTIONAL = "OPTIONAL",
960
983
  /**
961
- * Whether the waiver must be completed before bookings.
962
- * If `false`, the waiver is handled after bookings.
963
- * Default: `false`
984
+ * Form must be completed before the booking can be finalized.
985
+ * can used only if timing is BEFORE_BOOKING.
964
986
  */
965
- requireBeforeBook?: boolean;
987
+ REQUIRED_BEFORE_BOOKING = "REQUIRED_BEFORE_BOOKING"
966
988
  }
989
+ /** @enumType */
990
+ type CompletionRequirementWithLiterals = CompletionRequirement | 'UNKNOWN_COMPLETION_REQUIREMENT' | 'OPTIONAL' | 'REQUIRED_BEFORE_BOOKING';
967
991
  interface Schedule {
968
992
  /**
969
993
  * ID of the *schedule*
@@ -5037,4 +5061,4 @@ interface ValidateSlugOptions {
5037
5061
  */
5038
5062
  declare function cloneService(sourceServiceId: string): Promise<NonNullablePaths<CloneServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.taxableAddress.taxableAddressType` | `errors`, 7>>;
5039
5063
 
5040
- export { type SetCustomSlugValidationErrors as $, type AddOnGroup as A, type BulkCreateServicesOptions as B, type CreateAddOnGroupOptions as C, type DeleteAddOnGroupOptions as D, type QueryBookingFormsResponse as E, type QueryBookingFormsApplicationErrors as F, type CountServicesOptions as G, type CountServicesResponse as H, type QueryLocationsOptions as I, type QueryLocationsResponse as J, type QueryCategoriesOptions as K, type ListAddOnGroupsByServiceIdOptions as L, type QueryCategoriesResponse as M, type Location as N, type SetServiceLocationsOptions as O, type SetServiceLocationsResponse as P, type QueryPoliciesResponse as Q, type EnablePricingPlansForServiceResponse as R, type SetAddOnsForGroupOptions as S, type EnablePricingPlansForServiceApplicationErrors as T, type UpdateAddOnGroupOptions as U, type DisablePricingPlansForServiceOptions as V, type DisablePricingPlansForServiceResponse as W, type DisablePricingPlansForServiceApplicationErrors as X, type SetCustomSlugOptions as Y, type SetCustomSlugResponse as Z, type SetCustomSlugApplicationErrors as _, type CreateAddOnGroupResponse as a, type CancellationPolicy as a$, type ValidateSlugOptions as a0, type ValidateSlugResponse as a1, type CloneServiceResponse as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, type Media as aA, type MediaItem as aB, type MediaItemItemOneOf as aC, type V2Category as aD, type Form as aE, type FormSettings as aF, type Payment as aG, type PaymentRateOneOf as aH, type FixedPayment as aI, type Money as aJ, type CustomPayment as aK, type VariedPayment as aL, type PaymentOptions as aM, type OnlineBooking as aN, type Conferencing as aO, type LocationOptionsOneOf as aP, type CommonAddress as aQ, type CommonAddressStreetOneOf as aR, type StreetAddress as aS, type AddressLocation as aT, type BusinessLocationOptions as aU, type CustomLocationOptions as aV, type BookingPolicy as aW, type PolicyDescription as aX, type LimitEarlyBookingPolicy as aY, type LimitLateBookingPolicy as aZ, type BookAfterStartPolicy as a_, RankingOrder as aa, SortingMethodType as ab, TaxableAddressType as ac, WebhookIdentityType as ad, V2RequestedFields as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, Mode as an, RequestedFields as ao, Action as ap, InvalidSlugError as aq, CloneErrors as ar, Status as as, CategoryNotificationEvent as at, BenefitType as au, Event as av, CrudType as aw, PlacementType as ax, DayOfWeek as ay, ResolutionMethod as az, type DeleteAddOnGroupApplicationErrors as b, type ValidateServiceResponse as b$, type ReschedulePolicy as b0, type WaitlistPolicy as b1, type ParticipantsPolicy as b2, type ResourcesPolicy as b3, type CancellationFeePolicy as b4, type CancellationWindow as b5, type CancellationWindowFeeOneOf as b6, type SaveCreditCardPolicy as b7, type StaffSortingPolicy as b8, type StaffSortingPolicyOptionsOneOf as b9, type Upsert as bA, type Delete as bB, type Schema as bC, type SetCustomSlugEvent as bD, type ServicesUrlsChanged as bE, type DomainEvent as bF, type DomainEventBodyOneOf as bG, type EntityCreatedEvent as bH, type RestoreInfo as bI, type EntityUpdatedEvent as bJ, type EntityDeletedEvent as bK, type ActionEvent as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf as bO, type CreateAddOnGroupRequest as bP, type DeleteAddOnGroupRequest as bQ, type DeleteAddOnGroupResponse as bR, type UpdateAddOnGroupRequest as bS, type ListAddOnGroupsByServiceIdRequest as bT, type AddOn as bU, type AddOnAddOnInfoOneOf as bV, type AddOnGroupDetail as bW, type SetAddOnsForGroupRequest as bX, type CreateServiceRequest as bY, type CreateServiceResponse as bZ, type ValidateServiceRequest as b_, type RankingOptions as ba, type CustomOptions as bb, type IntakeFormPolicy as bc, type Schedule as bd, type AvailabilityConstraints as be, type Duration as bf, type StaffMember as bg, type StaffMediaItem as bh, type StaffMediaItemItemOneOf as bi, type StaffMemberDetails as bj, type ResourceGroup as bk, type ResourceIds as bl, type ServiceResource as bm, type ServiceResourceSelectionOneOf as bn, type ResourceType as bo, type Slug as bp, type URLs as bq, type ExtendedFields as br, type SeoSchema as bs, type Keyword as bt, type Tag as bu, type Settings as bv, type AddOnDetails as bw, type TaxableAddress as bx, type ReindexMessage as by, type ReindexMessageActionOneOf as bz, type UpdateAddOnGroupResponse as c, type NestedResultValueResultOneOf as c$, type FieldViolation as c0, type BulkCreateServicesRequest as c1, type BulkServiceResult as c2, type ItemMetadata as c3, type ApplicationError as c4, type BulkActionMetadata as c5, type GetServiceRequest as c6, type GetServiceResponse as c7, type GetServiceAvailabilityConstraintsRequest as c8, type GetServiceAvailabilityConstraintsResponse as c9, type RangeBucket as cA, type IncludeMissingValuesOptions as cB, type ValueAggregation as cC, type ValueAggregationOptionsOneOf as cD, type RangeAggregation as cE, type ScalarAggregation as cF, type DateHistogramAggregation as cG, type NestedAggregationItem as cH, type NestedAggregationItemKindOneOf as cI, type NestedAggregation as cJ, type GroupByAggregation as cK, type GroupByAggregationKindOneOf as cL, type SearchDetails as cM, type CursorPagingMetadata as cN, type AggregationData as cO, type ValueAggregationResult as cP, type RangeAggregationResult as cQ, type NestedAggregationResults as cR, type NestedAggregationResultsResultOneOf as cS, type ValueResults as cT, type RangeResults as cU, type AggregationResultsScalarResult as cV, type NestedValueAggregationResult as cW, type ValueResult as cX, type RangeResult as cY, type ScalarResult as cZ, type NestedResultValue as c_, type ServiceAvailabilityConstraints as ca, type SplitInterval as cb, type UpdateServiceRequest as cc, type UpdateServiceResponse as cd, type BulkUpdateServicesRequest as ce, type MaskedService as cf, type BulkUpdateServicesByFilterRequest as cg, type DeleteServiceRequest as ch, type ParticipantNotification as ci, type DeleteServiceResponse as cj, type BulkDeleteServicesRequest as ck, type BulkDeleteServicesByFilterRequest as cl, type QueryServicesRequest as cm, type QueryV2 as cn, type QueryV2PagingMethodOneOf as co, type Sorting as cp, type Paging as cq, type CursorPaging as cr, type QueryServicesResponse as cs, type PagingMetadataV2 as ct, type Cursors as cu, type SearchServicesRequest as cv, type CursorSearch as cw, type CursorSearchPagingMethodOneOf as cx, type Aggregation as cy, type AggregationKindOneOf as cz, type UpdateAddOnGroupApplicationErrors as d, type ChangeContext as d$, type Results as d0, type DateHistogramResult as d1, type GroupByValueResults as d2, type DateHistogramResults as d3, type NestedResults as d4, type AggregationResults as d5, type AggregationResultsResultOneOf as d6, type QueryPoliciesRequest as d7, type CursorQueryPagingMethodOneOf as d8, type BookingPolicyWithServices as d9, type Category as dA, type Empty as dB, type BenefitNotification as dC, type Benefit as dD, type EntryPass as dE, type Discount as dF, type DiscountDiscountOneOf as dG, type Behavior as dH, type BehaviorBehaviorOneOf as dI, type UserDomainInfoChangedEvent as dJ, type HtmlSitePublished as dK, type Page as dL, type SitePropertiesNotification as dM, type SitePropertiesEvent as dN, type Properties as dO, type Categories as dP, type Locale as dQ, type Address as dR, type AddressHint as dS, type GeoCoordinates as dT, type BusinessSchedule as dU, type TimePeriod as dV, type SpecialHourPeriod as dW, type Multilingual as dX, type SupportedLanguage as dY, type ConsentPolicy as dZ, type Translation as d_, type QueryBookingFormsRequest as da, type BookingForm as db, type FormDetails as dc, type ConnectedService as dd, type CountServicesRequest as de, type QueryLocationsRequest as df, type QueryLocationsFilter as dg, type BusinessLocations as dh, type CustomLocations as di, type CustomerLocations as dj, type QueryCategoriesRequest as dk, type QueryCategoriesFilter as dl, type QueryServicesMultiLanguageRequest as dm, type QueryServicesMultiLanguageResponse as dn, type SetServiceLocationsRequest as dp, type RemovedLocationSessionsAction as dq, type RemovedLocationSessionsActionActionOptionsOneOf as dr, type MoveToNewLocationsOptions as ds, type EnablePricingPlansForServiceRequest as dt, type InvalidPricingPlan as du, type DisablePricingPlansForServiceRequest as dv, type SetCustomSlugRequest as dw, type ValidateSlugRequest as dx, type CloneServiceRequest as dy, type CategoryNotification as dz, type ListAddOnGroupsByServiceIdResponse as e, enablePricingPlansForService as e$, type ChangeContextPayloadOneOf as e0, type PropertiesChange as e1, type SiteCreated as e2, type SiteCloned as e3, type BaseEventMetadata as e4, type EventMetadata as e5, type ServicesQueryResult as e6, type ServiceSearchSpec as e7, type ServiceTypeWithLiterals as e8, type RateTypeWithLiterals as e9, type DayOfWeekWithLiterals as eA, type ResolutionMethodWithLiterals as eB, type CommonSearchWithEntityContext as eC, onServiceCreated as eD, onServiceDeleted as eE, onServiceUpdated as eF, createAddOnGroup as eG, deleteAddOnGroup as eH, updateAddOnGroup as eI, listAddOnGroupsByServiceId as eJ, setAddOnsForGroup as eK, createService as eL, bulkCreateServices as eM, getService as eN, updateService as eO, bulkUpdateServices as eP, bulkUpdateServicesByFilter as eQ, deleteService as eR, bulkDeleteServices as eS, bulkDeleteServicesByFilter as eT, queryServices as eU, queryPolicies as eV, queryBookingForms as eW, countServices as eX, queryLocations as eY, queryCategories as eZ, setServiceLocations as e_, type AddOnPaymentOptionsWithLiterals as ea, type LocationTypeWithLiterals as eb, type RankingOrderWithLiterals as ec, type SortingMethodTypeWithLiterals as ed, type TaxableAddressTypeWithLiterals as ee, type WebhookIdentityTypeWithLiterals as ef, type V2RequestedFieldsWithLiterals as eg, type SortOrderWithLiterals as eh, type SortTypeWithLiterals as ei, type SortDirectionWithLiterals as ej, type MissingValuesWithLiterals as ek, type ScalarTypeWithLiterals as el, type NestedAggregationTypeWithLiterals as em, type IntervalWithLiterals as en, type AggregationTypeWithLiterals as eo, type ModeWithLiterals as ep, type RequestedFieldsWithLiterals as eq, type ActionWithLiterals as er, type InvalidSlugErrorWithLiterals as es, type CloneErrorsWithLiterals as et, type StatusWithLiterals as eu, type CategoryNotificationEventWithLiterals as ev, type BenefitTypeWithLiterals as ew, type EventWithLiterals as ex, type CrudTypeWithLiterals as ey, type PlacementTypeWithLiterals as ez, type SetAddOnsForGroupResponse as f, disablePricingPlansForService as f0, setCustomSlug as f1, validateSlug as f2, cloneService as f3, type SetAddOnsForGroupApplicationErrors as g, type Service as h, type CreateServiceValidationErrors as i, type BulkCreateServicesResponse as j, type UpdateService as k, type UpdateServiceValidationErrors as l, type BulkUpdateServicesOptions as m, type BulkUpdateServicesResponse as n, type BulkUpdateServicesByFilterOptions as o, type BulkUpdateServicesByFilterResponse as p, type DeleteServiceOptions as q, type BulkDeleteServicesOptions as r, type BulkDeleteServicesResponse as s, type BulkDeleteServicesByFilterOptions as t, type BulkDeleteServicesByFilterResponse as u, type ServicesQueryBuilder as v, type ServiceSearch as w, type SearchServicesResponse as x, type CursorQuery as y, type QueryBookingFormsOptions as z };
5064
+ export { type SetCustomSlugValidationErrors as $, type AddOnGroup as A, type BulkCreateServicesOptions as B, type CreateAddOnGroupOptions as C, type DeleteAddOnGroupOptions as D, type QueryBookingFormsResponse as E, type QueryBookingFormsApplicationErrors as F, type CountServicesOptions as G, type CountServicesResponse as H, type QueryLocationsOptions as I, type QueryLocationsResponse as J, type QueryCategoriesOptions as K, type ListAddOnGroupsByServiceIdOptions as L, type QueryCategoriesResponse as M, type Location as N, type SetServiceLocationsOptions as O, type SetServiceLocationsResponse as P, type QueryPoliciesResponse as Q, type EnablePricingPlansForServiceResponse as R, type SetAddOnsForGroupOptions as S, type EnablePricingPlansForServiceApplicationErrors as T, type UpdateAddOnGroupOptions as U, type DisablePricingPlansForServiceOptions as V, type DisablePricingPlansForServiceResponse as W, type DisablePricingPlansForServiceApplicationErrors as X, type SetCustomSlugOptions as Y, type SetCustomSlugResponse as Z, type SetCustomSlugApplicationErrors as _, type CreateAddOnGroupResponse as a, type LimitLateBookingPolicy as a$, type ValidateSlugOptions as a0, type ValidateSlugResponse as a1, type CloneServiceResponse as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, DayOfWeek as aA, ResolutionMethod as aB, type Media as aC, type MediaItem as aD, type MediaItemItemOneOf as aE, type V2Category as aF, type Form as aG, type FormSettings as aH, type Payment as aI, type PaymentRateOneOf as aJ, type FixedPayment as aK, type Money as aL, type CustomPayment as aM, type VariedPayment as aN, type PaymentOptions as aO, type OnlineBooking as aP, type Conferencing as aQ, type LocationOptionsOneOf as aR, type CommonAddress as aS, type CommonAddressStreetOneOf as aT, type StreetAddress as aU, type AddressLocation as aV, type BusinessLocationOptions as aW, type CustomLocationOptions as aX, type BookingPolicy as aY, type PolicyDescription as aZ, type LimitEarlyBookingPolicy as a_, RankingOrder as aa, SortingMethodType as ab, Timing as ac, CompletionRequirement as ad, TaxableAddressType as ae, WebhookIdentityType as af, V2RequestedFields as ag, SortOrder as ah, SortType as ai, SortDirection as aj, MissingValues as ak, ScalarType as al, NestedAggregationType as am, Interval as an, AggregationType as ao, Mode as ap, RequestedFields as aq, Action as ar, InvalidSlugError as as, CloneErrors as at, Status as au, CategoryNotificationEvent as av, BenefitType as aw, Event as ax, CrudType as ay, PlacementType as az, type DeleteAddOnGroupApplicationErrors as b, type CreateServiceResponse as b$, type BookAfterStartPolicy as b0, type CancellationPolicy as b1, type ReschedulePolicy as b2, type WaitlistPolicy as b3, type ParticipantsPolicy as b4, type ResourcesPolicy as b5, type CancellationFeePolicy as b6, type CancellationWindow as b7, type CancellationWindowFeeOneOf as b8, type SaveCreditCardPolicy as b9, type ReindexMessage as bA, type ReindexMessageActionOneOf as bB, type Upsert as bC, type Delete as bD, type Schema as bE, type SetCustomSlugEvent as bF, type ServicesUrlsChanged as bG, type DomainEvent as bH, type DomainEventBodyOneOf as bI, type EntityCreatedEvent as bJ, type RestoreInfo as bK, type EntityUpdatedEvent as bL, type EntityDeletedEvent as bM, type ActionEvent as bN, type MessageEnvelope as bO, type IdentificationData as bP, type IdentificationDataIdOneOf as bQ, type CreateAddOnGroupRequest as bR, type DeleteAddOnGroupRequest as bS, type DeleteAddOnGroupResponse as bT, type UpdateAddOnGroupRequest as bU, type ListAddOnGroupsByServiceIdRequest as bV, type AddOn as bW, type AddOnAddOnInfoOneOf as bX, type AddOnGroupDetail as bY, type SetAddOnsForGroupRequest as bZ, type CreateServiceRequest as b_, type StaffSortingPolicy as ba, type StaffSortingPolicyOptionsOneOf as bb, type RankingOptions as bc, type CustomOptions as bd, type IntakeFormPolicy as be, type Schedule as bf, type AvailabilityConstraints as bg, type Duration as bh, type StaffMember as bi, type StaffMediaItem as bj, type StaffMediaItemItemOneOf as bk, type StaffMemberDetails as bl, type ResourceGroup as bm, type ResourceIds as bn, type ServiceResource as bo, type ServiceResourceSelectionOneOf as bp, type ResourceType as bq, type Slug as br, type URLs as bs, type ExtendedFields as bt, type SeoSchema as bu, type Keyword as bv, type Tag as bw, type Settings as bx, type AddOnDetails as by, type TaxableAddress as bz, type UpdateAddOnGroupResponse as c, type ScalarResult as c$, type ValidateServiceRequest as c0, type ValidateServiceResponse as c1, type FieldViolation as c2, type BulkCreateServicesRequest as c3, type BulkServiceResult as c4, type ItemMetadata as c5, type ApplicationError as c6, type BulkActionMetadata as c7, type GetServiceRequest as c8, type GetServiceResponse as c9, type Aggregation as cA, type AggregationKindOneOf as cB, type RangeBucket as cC, type IncludeMissingValuesOptions as cD, type ValueAggregation as cE, type ValueAggregationOptionsOneOf as cF, type RangeAggregation as cG, type ScalarAggregation as cH, type DateHistogramAggregation as cI, type NestedAggregationItem as cJ, type NestedAggregationItemKindOneOf as cK, type NestedAggregation as cL, type GroupByAggregation as cM, type GroupByAggregationKindOneOf as cN, type SearchDetails as cO, type CursorPagingMetadata as cP, type AggregationData as cQ, type ValueAggregationResult as cR, type RangeAggregationResult as cS, type NestedAggregationResults as cT, type NestedAggregationResultsResultOneOf as cU, type ValueResults as cV, type RangeResults as cW, type AggregationResultsScalarResult as cX, type NestedValueAggregationResult as cY, type ValueResult as cZ, type RangeResult as c_, type GetServiceAvailabilityConstraintsRequest as ca, type GetServiceAvailabilityConstraintsResponse as cb, type ServiceAvailabilityConstraints as cc, type SplitInterval as cd, type UpdateServiceRequest as ce, type UpdateServiceResponse as cf, type BulkUpdateServicesRequest as cg, type MaskedService as ch, type BulkUpdateServicesByFilterRequest as ci, type DeleteServiceRequest as cj, type ParticipantNotification as ck, type DeleteServiceResponse as cl, type BulkDeleteServicesRequest as cm, type BulkDeleteServicesByFilterRequest as cn, type QueryServicesRequest as co, type QueryV2 as cp, type QueryV2PagingMethodOneOf as cq, type Sorting as cr, type Paging as cs, type CursorPaging as ct, type QueryServicesResponse as cu, type PagingMetadataV2 as cv, type Cursors as cw, type SearchServicesRequest as cx, type CursorSearch as cy, type CursorSearchPagingMethodOneOf as cz, type UpdateAddOnGroupApplicationErrors as d, type ConsentPolicy as d$, type NestedResultValue as d0, type NestedResultValueResultOneOf as d1, type Results as d2, type DateHistogramResult as d3, type GroupByValueResults as d4, type DateHistogramResults as d5, type NestedResults as d6, type AggregationResults as d7, type AggregationResultsResultOneOf as d8, type QueryPoliciesRequest as d9, type CloneServiceRequest as dA, type CategoryNotification as dB, type Category as dC, type Empty as dD, type BenefitNotification as dE, type Benefit as dF, type EntryPass as dG, type Discount as dH, type DiscountDiscountOneOf as dI, type Behavior as dJ, type BehaviorBehaviorOneOf as dK, type UserDomainInfoChangedEvent as dL, type HtmlSitePublished as dM, type Page as dN, type SitePropertiesNotification as dO, type SitePropertiesEvent as dP, type Properties as dQ, type Categories as dR, type Locale as dS, type Address as dT, type AddressHint as dU, type GeoCoordinates as dV, type BusinessSchedule as dW, type TimePeriod as dX, type SpecialHourPeriod as dY, type Multilingual as dZ, type SupportedLanguage as d_, type CursorQueryPagingMethodOneOf as da, type BookingPolicyWithServices as db, type QueryBookingFormsRequest as dc, type BookingForm as dd, type FormDetails as de, type ConnectedService as df, type CountServicesRequest as dg, type QueryLocationsRequest as dh, type QueryLocationsFilter as di, type BusinessLocations as dj, type CustomLocations as dk, type CustomerLocations as dl, type QueryCategoriesRequest as dm, type QueryCategoriesFilter as dn, type QueryServicesMultiLanguageRequest as dp, type QueryServicesMultiLanguageResponse as dq, type SetServiceLocationsRequest as dr, type RemovedLocationSessionsAction as ds, type RemovedLocationSessionsActionActionOptionsOneOf as dt, type MoveToNewLocationsOptions as du, type EnablePricingPlansForServiceRequest as dv, type InvalidPricingPlan as dw, type DisablePricingPlansForServiceRequest as dx, type SetCustomSlugRequest as dy, type ValidateSlugRequest as dz, type ListAddOnGroupsByServiceIdResponse as e, countServices as e$, type Translation as e0, type ChangeContext as e1, type ChangeContextPayloadOneOf as e2, type PropertiesChange as e3, type SiteCreated as e4, type SiteCloned as e5, type BaseEventMetadata as e6, type EventMetadata as e7, type ServicesQueryResult as e8, type ServiceSearchSpec as e9, type BenefitTypeWithLiterals as eA, type EventWithLiterals as eB, type CrudTypeWithLiterals as eC, type PlacementTypeWithLiterals as eD, type DayOfWeekWithLiterals as eE, type ResolutionMethodWithLiterals as eF, type CommonSearchWithEntityContext as eG, onServiceCreated as eH, onServiceDeleted as eI, onServiceUpdated as eJ, createAddOnGroup as eK, deleteAddOnGroup as eL, updateAddOnGroup as eM, listAddOnGroupsByServiceId as eN, setAddOnsForGroup as eO, createService as eP, bulkCreateServices as eQ, getService as eR, updateService as eS, bulkUpdateServices as eT, bulkUpdateServicesByFilter as eU, deleteService as eV, bulkDeleteServices as eW, bulkDeleteServicesByFilter as eX, queryServices as eY, queryPolicies as eZ, queryBookingForms as e_, type ServiceTypeWithLiterals as ea, type RateTypeWithLiterals as eb, type AddOnPaymentOptionsWithLiterals as ec, type LocationTypeWithLiterals as ed, type RankingOrderWithLiterals as ee, type SortingMethodTypeWithLiterals as ef, type TimingWithLiterals as eg, type CompletionRequirementWithLiterals as eh, type TaxableAddressTypeWithLiterals as ei, type WebhookIdentityTypeWithLiterals as ej, type V2RequestedFieldsWithLiterals as ek, type SortOrderWithLiterals as el, type SortTypeWithLiterals as em, type SortDirectionWithLiterals as en, type MissingValuesWithLiterals as eo, type ScalarTypeWithLiterals as ep, type NestedAggregationTypeWithLiterals as eq, type IntervalWithLiterals as er, type AggregationTypeWithLiterals as es, type ModeWithLiterals as et, type RequestedFieldsWithLiterals as eu, type ActionWithLiterals as ev, type InvalidSlugErrorWithLiterals as ew, type CloneErrorsWithLiterals as ex, type StatusWithLiterals as ey, type CategoryNotificationEventWithLiterals as ez, type SetAddOnsForGroupResponse as f, queryLocations as f0, queryCategories as f1, setServiceLocations as f2, enablePricingPlansForService as f3, disablePricingPlansForService as f4, setCustomSlug as f5, validateSlug as f6, cloneService as f7, type SetAddOnsForGroupApplicationErrors as g, type Service as h, type CreateServiceValidationErrors as i, type BulkCreateServicesResponse as j, type UpdateService as k, type UpdateServiceValidationErrors as l, type BulkUpdateServicesOptions as m, type BulkUpdateServicesResponse as n, type BulkUpdateServicesByFilterOptions as o, type BulkUpdateServicesByFilterResponse as p, type DeleteServiceOptions as q, type BulkDeleteServicesOptions as r, type BulkDeleteServicesResponse as s, type BulkDeleteServicesByFilterOptions as t, type BulkDeleteServicesByFilterResponse as u, type ServicesQueryBuilder as v, type ServiceSearch as w, type SearchServicesResponse as x, type CursorQuery as y, type QueryBookingFormsOptions as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { A as AddOnGroup, C as CreateAddOnGroupOptions, a as CreateAddOnGroupResponse, D as DeleteAddOnGroupOptions, b as DeleteAddOnGroupApplicationErrors, U as UpdateAddOnGroupOptions, c as UpdateAddOnGroupResponse, d as UpdateAddOnGroupApplicationErrors, L as ListAddOnGroupsByServiceIdOptions, e as ListAddOnGroupsByServiceIdResponse, S as SetAddOnsForGroupOptions, f as SetAddOnsForGroupResponse, g as SetAddOnsForGroupApplicationErrors, h as Service, i as CreateServiceValidationErrors, B as BulkCreateServicesOptions, j as BulkCreateServicesResponse, k as UpdateService, l as UpdateServiceValidationErrors, m as BulkUpdateServicesOptions, n as BulkUpdateServicesResponse, o as BulkUpdateServicesByFilterOptions, p as BulkUpdateServicesByFilterResponse, q as DeleteServiceOptions, r as BulkDeleteServicesOptions, s as BulkDeleteServicesResponse, t as BulkDeleteServicesByFilterOptions, u as BulkDeleteServicesByFilterResponse, v as ServicesQueryBuilder, w as ServiceSearch, x as SearchServicesResponse, y as CursorQuery, Q as QueryPoliciesResponse, z as QueryBookingFormsOptions, E as QueryBookingFormsResponse, F as QueryBookingFormsApplicationErrors, G as CountServicesOptions, H as CountServicesResponse, I as QueryLocationsOptions, J as QueryLocationsResponse, K as QueryCategoriesOptions, M as QueryCategoriesResponse, N as Location, O as SetServiceLocationsOptions, P as SetServiceLocationsResponse, R as EnablePricingPlansForServiceResponse, T as EnablePricingPlansForServiceApplicationErrors, V as DisablePricingPlansForServiceOptions, W as DisablePricingPlansForServiceResponse, X as DisablePricingPlansForServiceApplicationErrors, Y as SetCustomSlugOptions, Z as SetCustomSlugResponse, _ as SetCustomSlugApplicationErrors, $ as SetCustomSlugValidationErrors, a0 as ValidateSlugOptions, a1 as ValidateSlugResponse, a2 as CloneServiceResponse, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope } from './bookings-services-v2-service-services.universal-Bk0wGwO4.js';
3
- export { ap as Action, bL as ActionEvent, er as ActionWithLiterals, bU as AddOn, bV as AddOnAddOnInfoOneOf, bw as AddOnDetails, bW as AddOnGroupDetail, a8 as AddOnPaymentOptions, ea as AddOnPaymentOptionsWithLiterals, dR as Address, dS as AddressHint, aT as AddressLocation, cy as Aggregation, cO as AggregationData, cz as AggregationKindOneOf, d5 as AggregationResults, d6 as AggregationResultsResultOneOf, cV as AggregationResultsScalarResult, am as AggregationType, eo as AggregationTypeWithLiterals, c4 as ApplicationError, be as AvailabilityConstraints, e4 as BaseEventMetadata, dH as Behavior, dI as BehaviorBehaviorOneOf, dD as Benefit, dC as BenefitNotification, au as BenefitType, ew as BenefitTypeWithLiterals, a_ as BookAfterStartPolicy, db as BookingForm, aW as BookingPolicy, d9 as BookingPolicyWithServices, c5 as BulkActionMetadata, c1 as BulkCreateServicesRequest, cl as BulkDeleteServicesByFilterRequest, ck as BulkDeleteServicesRequest, c2 as BulkServiceResult, cg as BulkUpdateServicesByFilterRequest, ce as BulkUpdateServicesRequest, aU as BusinessLocationOptions, dh as BusinessLocations, dU as BusinessSchedule, b4 as CancellationFeePolicy, a$ as CancellationPolicy, b5 as CancellationWindow, b6 as CancellationWindowFeeOneOf, dP as Categories, dA as Category, dz as CategoryNotification, at as CategoryNotificationEvent, ev as CategoryNotificationEventWithLiterals, d$ as ChangeContext, e0 as ChangeContextPayloadOneOf, ar as CloneErrors, et as CloneErrorsWithLiterals, dy as CloneServiceRequest, aQ as CommonAddress, aR as CommonAddressStreetOneOf, eC as CommonSearchWithEntityContext, aO as Conferencing, dd as ConnectedService, dZ as ConsentPolicy, de as CountServicesRequest, bP as CreateAddOnGroupRequest, bY as CreateServiceRequest, bZ as CreateServiceResponse, aw as CrudType, ey as CrudTypeWithLiterals, cr as CursorPaging, cN as CursorPagingMetadata, d8 as CursorQueryPagingMethodOneOf, cw as CursorSearch, cx as CursorSearchPagingMethodOneOf, cu as Cursors, aV as CustomLocationOptions, di as CustomLocations, bb as CustomOptions, aK as CustomPayment, dj as CustomerLocations, cG as DateHistogramAggregation, d1 as DateHistogramResult, d3 as DateHistogramResults, ay as DayOfWeek, eA as DayOfWeekWithLiterals, bB as Delete, bQ as DeleteAddOnGroupRequest, bR as DeleteAddOnGroupResponse, ch as DeleteServiceRequest, cj as DeleteServiceResponse, dv as DisablePricingPlansForServiceRequest, dF as Discount, dG as DiscountDiscountOneOf, bF as DomainEvent, bG as DomainEventBodyOneOf, bf as Duration, dB as Empty, dt as EnablePricingPlansForServiceRequest, bH as EntityCreatedEvent, bK as EntityDeletedEvent, bJ as EntityUpdatedEvent, dE as EntryPass, av as Event, e5 as EventMetadata, ex as EventWithLiterals, br as ExtendedFields, c0 as FieldViolation, aI as FixedPayment, aE as Form, dc as FormDetails, aF as FormSettings, dT as GeoCoordinates, c8 as GetServiceAvailabilityConstraintsRequest, c9 as GetServiceAvailabilityConstraintsResponse, c6 as GetServiceRequest, c7 as GetServiceResponse, cK as GroupByAggregation, cL as GroupByAggregationKindOneOf, d2 as GroupByValueResults, dK as HtmlSitePublished, bN as IdentificationData, bO as IdentificationDataIdOneOf, cB as IncludeMissingValuesOptions, bc as IntakeFormPolicy, al as Interval, en as IntervalWithLiterals, du as InvalidPricingPlan, aq as InvalidSlugError, es as InvalidSlugErrorWithLiterals, c3 as ItemMetadata, bt as Keyword, aY as LimitEarlyBookingPolicy, aZ as LimitLateBookingPolicy, bT as ListAddOnGroupsByServiceIdRequest, dQ as Locale, aP as LocationOptionsOneOf, a9 as LocationType, eb as LocationTypeWithLiterals, cf as MaskedService, aA as Media, aB as MediaItem, aC as MediaItemItemOneOf, bM as MessageEnvelope, ai as MissingValues, ek as MissingValuesWithLiterals, an as Mode, ep as ModeWithLiterals, aJ as Money, ds as MoveToNewLocationsOptions, dX as Multilingual, cJ as NestedAggregation, cH as NestedAggregationItem, cI as NestedAggregationItemKindOneOf, cR as NestedAggregationResults, cS as NestedAggregationResultsResultOneOf, ak as NestedAggregationType, em as NestedAggregationTypeWithLiterals, c_ as NestedResultValue, c$ as NestedResultValueResultOneOf, d4 as NestedResults, cW as NestedValueAggregationResult, aN as OnlineBooking, dL as Page, cq as Paging, ct as PagingMetadataV2, ci as ParticipantNotification, b2 as ParticipantsPolicy, aG as Payment, aM as PaymentOptions, aH as PaymentRateOneOf, ax as PlacementType, ez as PlacementTypeWithLiterals, aX as PolicyDescription, dO as Properties, e1 as PropertiesChange, da as QueryBookingFormsRequest, dl as QueryCategoriesFilter, dk as QueryCategoriesRequest, dg as QueryLocationsFilter, df as QueryLocationsRequest, d7 as QueryPoliciesRequest, dm as QueryServicesMultiLanguageRequest, dn as QueryServicesMultiLanguageResponse, cm as QueryServicesRequest, cs as QueryServicesResponse, cn as QueryV2, co as QueryV2PagingMethodOneOf, cE as RangeAggregation, cQ as RangeAggregationResult, cA as RangeBucket, cY as RangeResult, cU as RangeResults, ba as RankingOptions, aa as RankingOrder, ec as RankingOrderWithLiterals, a7 as RateType, e9 as RateTypeWithLiterals, by as ReindexMessage, bz as ReindexMessageActionOneOf, dq as RemovedLocationSessionsAction, dr as RemovedLocationSessionsActionActionOptionsOneOf, ao as RequestedFields, eq as RequestedFieldsWithLiterals, b0 as ReschedulePolicy, az as ResolutionMethod, eB as ResolutionMethodWithLiterals, bk as ResourceGroup, bl as ResourceIds, bo as ResourceType, b3 as ResourcesPolicy, bI as RestoreInfo, d0 as Results, b7 as SaveCreditCardPolicy, cF as ScalarAggregation, cZ as ScalarResult, aj as ScalarType, el as ScalarTypeWithLiterals, bd as Schedule, bC as Schema, cM as SearchDetails, cv as SearchServicesRequest, bs as SeoSchema, ca as ServiceAvailabilityConstraints, bm as ServiceResource, bn as ServiceResourceSelectionOneOf, e7 as ServiceSearchSpec, a6 as ServiceType, e8 as ServiceTypeWithLiterals, e6 as ServicesQueryResult, bE as ServicesUrlsChanged, bX as SetAddOnsForGroupRequest, bD as SetCustomSlugEvent, dw as SetCustomSlugRequest, dp as SetServiceLocationsRequest, bv as Settings, e3 as SiteCloned, e2 as SiteCreated, dN as SitePropertiesEvent, dM as SitePropertiesNotification, bp as Slug, ah as SortDirection, ej as SortDirectionWithLiterals, af as SortOrder, eh as SortOrderWithLiterals, ag as SortType, ei as SortTypeWithLiterals, cp as Sorting, ab as SortingMethodType, ed as SortingMethodTypeWithLiterals, dW as SpecialHourPeriod, cb as SplitInterval, bh as StaffMediaItem, bi as StaffMediaItemItemOneOf, bg as StaffMember, bj as StaffMemberDetails, b8 as StaffSortingPolicy, b9 as StaffSortingPolicyOptionsOneOf, as as Status, eu as StatusWithLiterals, aS as StreetAddress, dY as SupportedLanguage, bu as Tag, bx as TaxableAddress, ac as TaxableAddressType, ee as TaxableAddressTypeWithLiterals, dV as TimePeriod, d_ as Translation, bq as URLs, bS as UpdateAddOnGroupRequest, cc as UpdateServiceRequest, cd as UpdateServiceResponse, bA as Upsert, dJ as UserDomainInfoChangedEvent, aD as V2Category, ae as V2RequestedFields, eg as V2RequestedFieldsWithLiterals, b_ as ValidateServiceRequest, b$ as ValidateServiceResponse, dx as ValidateSlugRequest, cC as ValueAggregation, cD as ValueAggregationOptionsOneOf, cP as ValueAggregationResult, cX as ValueResult, cT as ValueResults, aL as VariedPayment, b1 as WaitlistPolicy, ad as WebhookIdentityType, ef as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-Bk0wGwO4.js';
2
+ import { A as AddOnGroup, C as CreateAddOnGroupOptions, a as CreateAddOnGroupResponse, D as DeleteAddOnGroupOptions, b as DeleteAddOnGroupApplicationErrors, U as UpdateAddOnGroupOptions, c as UpdateAddOnGroupResponse, d as UpdateAddOnGroupApplicationErrors, L as ListAddOnGroupsByServiceIdOptions, e as ListAddOnGroupsByServiceIdResponse, S as SetAddOnsForGroupOptions, f as SetAddOnsForGroupResponse, g as SetAddOnsForGroupApplicationErrors, h as Service, i as CreateServiceValidationErrors, B as BulkCreateServicesOptions, j as BulkCreateServicesResponse, k as UpdateService, l as UpdateServiceValidationErrors, m as BulkUpdateServicesOptions, n as BulkUpdateServicesResponse, o as BulkUpdateServicesByFilterOptions, p as BulkUpdateServicesByFilterResponse, q as DeleteServiceOptions, r as BulkDeleteServicesOptions, s as BulkDeleteServicesResponse, t as BulkDeleteServicesByFilterOptions, u as BulkDeleteServicesByFilterResponse, v as ServicesQueryBuilder, w as ServiceSearch, x as SearchServicesResponse, y as CursorQuery, Q as QueryPoliciesResponse, z as QueryBookingFormsOptions, E as QueryBookingFormsResponse, F as QueryBookingFormsApplicationErrors, G as CountServicesOptions, H as CountServicesResponse, I as QueryLocationsOptions, J as QueryLocationsResponse, K as QueryCategoriesOptions, M as QueryCategoriesResponse, N as Location, O as SetServiceLocationsOptions, P as SetServiceLocationsResponse, R as EnablePricingPlansForServiceResponse, T as EnablePricingPlansForServiceApplicationErrors, V as DisablePricingPlansForServiceOptions, W as DisablePricingPlansForServiceResponse, X as DisablePricingPlansForServiceApplicationErrors, Y as SetCustomSlugOptions, Z as SetCustomSlugResponse, _ as SetCustomSlugApplicationErrors, $ as SetCustomSlugValidationErrors, a0 as ValidateSlugOptions, a1 as ValidateSlugResponse, a2 as CloneServiceResponse, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope } from './bookings-services-v2-service-services.universal-DyEOrnAk.js';
3
+ export { ar as Action, bN as ActionEvent, ev as ActionWithLiterals, bW as AddOn, bX as AddOnAddOnInfoOneOf, by as AddOnDetails, bY as AddOnGroupDetail, a8 as AddOnPaymentOptions, ec as AddOnPaymentOptionsWithLiterals, dT as Address, dU as AddressHint, aV as AddressLocation, cA as Aggregation, cQ as AggregationData, cB as AggregationKindOneOf, d7 as AggregationResults, d8 as AggregationResultsResultOneOf, cX as AggregationResultsScalarResult, ao as AggregationType, es as AggregationTypeWithLiterals, c6 as ApplicationError, bg as AvailabilityConstraints, e6 as BaseEventMetadata, dJ as Behavior, dK as BehaviorBehaviorOneOf, dF as Benefit, dE as BenefitNotification, aw as BenefitType, eA as BenefitTypeWithLiterals, b0 as BookAfterStartPolicy, dd as BookingForm, aY as BookingPolicy, db as BookingPolicyWithServices, c7 as BulkActionMetadata, c3 as BulkCreateServicesRequest, cn as BulkDeleteServicesByFilterRequest, cm as BulkDeleteServicesRequest, c4 as BulkServiceResult, ci as BulkUpdateServicesByFilterRequest, cg as BulkUpdateServicesRequest, aW as BusinessLocationOptions, dj as BusinessLocations, dW as BusinessSchedule, b6 as CancellationFeePolicy, b1 as CancellationPolicy, b7 as CancellationWindow, b8 as CancellationWindowFeeOneOf, dR as Categories, dC as Category, dB as CategoryNotification, av as CategoryNotificationEvent, ez as CategoryNotificationEventWithLiterals, e1 as ChangeContext, e2 as ChangeContextPayloadOneOf, at as CloneErrors, ex as CloneErrorsWithLiterals, dA as CloneServiceRequest, aS as CommonAddress, aT as CommonAddressStreetOneOf, eG as CommonSearchWithEntityContext, ad as CompletionRequirement, eh as CompletionRequirementWithLiterals, aQ as Conferencing, df as ConnectedService, d$ as ConsentPolicy, dg as CountServicesRequest, bR as CreateAddOnGroupRequest, b_ as CreateServiceRequest, b$ as CreateServiceResponse, ay as CrudType, eC as CrudTypeWithLiterals, ct as CursorPaging, cP as CursorPagingMetadata, da as CursorQueryPagingMethodOneOf, cy as CursorSearch, cz as CursorSearchPagingMethodOneOf, cw as Cursors, aX as CustomLocationOptions, dk as CustomLocations, bd as CustomOptions, aM as CustomPayment, dl as CustomerLocations, cI as DateHistogramAggregation, d3 as DateHistogramResult, d5 as DateHistogramResults, aA as DayOfWeek, eE as DayOfWeekWithLiterals, bD as Delete, bS as DeleteAddOnGroupRequest, bT as DeleteAddOnGroupResponse, cj as DeleteServiceRequest, cl as DeleteServiceResponse, dx as DisablePricingPlansForServiceRequest, dH as Discount, dI as DiscountDiscountOneOf, bH as DomainEvent, bI as DomainEventBodyOneOf, bh as Duration, dD as Empty, dv as EnablePricingPlansForServiceRequest, bJ as EntityCreatedEvent, bM as EntityDeletedEvent, bL as EntityUpdatedEvent, dG as EntryPass, ax as Event, e7 as EventMetadata, eB as EventWithLiterals, bt as ExtendedFields, c2 as FieldViolation, aK as FixedPayment, aG as Form, de as FormDetails, aH as FormSettings, dV as GeoCoordinates, ca as GetServiceAvailabilityConstraintsRequest, cb as GetServiceAvailabilityConstraintsResponse, c8 as GetServiceRequest, c9 as GetServiceResponse, cM as GroupByAggregation, cN as GroupByAggregationKindOneOf, d4 as GroupByValueResults, dM as HtmlSitePublished, bP as IdentificationData, bQ as IdentificationDataIdOneOf, cD as IncludeMissingValuesOptions, be as IntakeFormPolicy, an as Interval, er as IntervalWithLiterals, dw as InvalidPricingPlan, as as InvalidSlugError, ew as InvalidSlugErrorWithLiterals, c5 as ItemMetadata, bv as Keyword, a_ as LimitEarlyBookingPolicy, a$ as LimitLateBookingPolicy, bV as ListAddOnGroupsByServiceIdRequest, dS as Locale, aR as LocationOptionsOneOf, a9 as LocationType, ed as LocationTypeWithLiterals, ch as MaskedService, aC as Media, aD as MediaItem, aE as MediaItemItemOneOf, bO as MessageEnvelope, ak as MissingValues, eo as MissingValuesWithLiterals, ap as Mode, et as ModeWithLiterals, aL as Money, du as MoveToNewLocationsOptions, dZ as Multilingual, cL as NestedAggregation, cJ as NestedAggregationItem, cK as NestedAggregationItemKindOneOf, cT as NestedAggregationResults, cU as NestedAggregationResultsResultOneOf, am as NestedAggregationType, eq as NestedAggregationTypeWithLiterals, d0 as NestedResultValue, d1 as NestedResultValueResultOneOf, d6 as NestedResults, cY as NestedValueAggregationResult, aP as OnlineBooking, dN as Page, cs as Paging, cv as PagingMetadataV2, ck as ParticipantNotification, b4 as ParticipantsPolicy, aI as Payment, aO as PaymentOptions, aJ as PaymentRateOneOf, az as PlacementType, eD as PlacementTypeWithLiterals, aZ as PolicyDescription, dQ as Properties, e3 as PropertiesChange, dc as QueryBookingFormsRequest, dn as QueryCategoriesFilter, dm as QueryCategoriesRequest, di as QueryLocationsFilter, dh as QueryLocationsRequest, d9 as QueryPoliciesRequest, dp as QueryServicesMultiLanguageRequest, dq as QueryServicesMultiLanguageResponse, co as QueryServicesRequest, cu as QueryServicesResponse, cp as QueryV2, cq as QueryV2PagingMethodOneOf, cG as RangeAggregation, cS as RangeAggregationResult, cC as RangeBucket, c_ as RangeResult, cW as RangeResults, bc as RankingOptions, aa as RankingOrder, ee as RankingOrderWithLiterals, a7 as RateType, eb as RateTypeWithLiterals, bA as ReindexMessage, bB as ReindexMessageActionOneOf, ds as RemovedLocationSessionsAction, dt as RemovedLocationSessionsActionActionOptionsOneOf, aq as RequestedFields, eu as RequestedFieldsWithLiterals, b2 as ReschedulePolicy, aB as ResolutionMethod, eF as ResolutionMethodWithLiterals, bm as ResourceGroup, bn as ResourceIds, bq as ResourceType, b5 as ResourcesPolicy, bK as RestoreInfo, d2 as Results, b9 as SaveCreditCardPolicy, cH as ScalarAggregation, c$ as ScalarResult, al as ScalarType, ep as ScalarTypeWithLiterals, bf as Schedule, bE as Schema, cO as SearchDetails, cx as SearchServicesRequest, bu as SeoSchema, cc as ServiceAvailabilityConstraints, bo as ServiceResource, bp as ServiceResourceSelectionOneOf, e9 as ServiceSearchSpec, a6 as ServiceType, ea as ServiceTypeWithLiterals, e8 as ServicesQueryResult, bG as ServicesUrlsChanged, bZ as SetAddOnsForGroupRequest, bF as SetCustomSlugEvent, dy as SetCustomSlugRequest, dr as SetServiceLocationsRequest, bx as Settings, e5 as SiteCloned, e4 as SiteCreated, dP as SitePropertiesEvent, dO as SitePropertiesNotification, br as Slug, aj as SortDirection, en as SortDirectionWithLiterals, ah as SortOrder, el as SortOrderWithLiterals, ai as SortType, em as SortTypeWithLiterals, cr as Sorting, ab as SortingMethodType, ef as SortingMethodTypeWithLiterals, dY as SpecialHourPeriod, cd as SplitInterval, bj as StaffMediaItem, bk as StaffMediaItemItemOneOf, bi as StaffMember, bl as StaffMemberDetails, ba as StaffSortingPolicy, bb as StaffSortingPolicyOptionsOneOf, au as Status, ey as StatusWithLiterals, aU as StreetAddress, d_ as SupportedLanguage, bw as Tag, bz as TaxableAddress, ae as TaxableAddressType, ei as TaxableAddressTypeWithLiterals, dX as TimePeriod, ac as Timing, eg as TimingWithLiterals, e0 as Translation, bs as URLs, bU as UpdateAddOnGroupRequest, ce as UpdateServiceRequest, cf as UpdateServiceResponse, bC as Upsert, dL as UserDomainInfoChangedEvent, aF as V2Category, ag as V2RequestedFields, ek as V2RequestedFieldsWithLiterals, c0 as ValidateServiceRequest, c1 as ValidateServiceResponse, dz as ValidateSlugRequest, cE as ValueAggregation, cF as ValueAggregationOptionsOneOf, cR as ValueAggregationResult, cZ as ValueResult, cV as ValueResults, aN as VariedPayment, b3 as WaitlistPolicy, af as WebhookIdentityType, ej as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-DyEOrnAk.js';
4
4
 
5
5
  declare function createAddOnGroup$1(httpClient: HttpClient): CreateAddOnGroupSignature;
6
6
  interface CreateAddOnGroupSignature {
@@ -26,6 +26,7 @@ __export(index_exports, {
26
26
  BenefitType: () => BenefitType,
27
27
  CategoryNotificationEvent: () => CategoryNotificationEvent,
28
28
  CloneErrors: () => CloneErrors,
29
+ CompletionRequirement: () => CompletionRequirement,
29
30
  CrudType: () => CrudType,
30
31
  DayOfWeek: () => DayOfWeek,
31
32
  Event: () => Event,
@@ -48,6 +49,7 @@ __export(index_exports, {
48
49
  SortingMethodType: () => SortingMethodType,
49
50
  Status: () => Status,
50
51
  TaxableAddressType: () => TaxableAddressType,
52
+ Timing: () => Timing,
51
53
  V2RequestedFields: () => V2RequestedFields,
52
54
  WebhookIdentityType: () => WebhookIdentityType,
53
55
  bulkCreateServices: () => bulkCreateServices4,
@@ -1846,6 +1848,18 @@ var SortingMethodType = /* @__PURE__ */ ((SortingMethodType2) => {
1846
1848
  SortingMethodType2["CUSTOM"] = "CUSTOM";
1847
1849
  return SortingMethodType2;
1848
1850
  })(SortingMethodType || {});
1851
+ var Timing = /* @__PURE__ */ ((Timing2) => {
1852
+ Timing2["UNKNOWN_TIMING"] = "UNKNOWN_TIMING";
1853
+ Timing2["AFTER_BOOKING"] = "AFTER_BOOKING";
1854
+ Timing2["BEFORE_BOOKING"] = "BEFORE_BOOKING";
1855
+ return Timing2;
1856
+ })(Timing || {});
1857
+ var CompletionRequirement = /* @__PURE__ */ ((CompletionRequirement2) => {
1858
+ CompletionRequirement2["UNKNOWN_COMPLETION_REQUIREMENT"] = "UNKNOWN_COMPLETION_REQUIREMENT";
1859
+ CompletionRequirement2["OPTIONAL"] = "OPTIONAL";
1860
+ CompletionRequirement2["REQUIRED_BEFORE_BOOKING"] = "REQUIRED_BEFORE_BOOKING";
1861
+ return CompletionRequirement2;
1862
+ })(CompletionRequirement || {});
1849
1863
  var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
1850
1864
  TaxableAddressType2["UNKNOWN_TAXABLE_ADDRESS_TYPE"] = "UNKNOWN_TAXABLE_ADDRESS_TYPE";
1851
1865
  TaxableAddressType2["BUSINESS"] = "BUSINESS";
@@ -3775,6 +3789,7 @@ var onServiceUpdated2 = (0, import_event_definition_modules.createEventModule)(o
3775
3789
  BenefitType,
3776
3790
  CategoryNotificationEvent,
3777
3791
  CloneErrors,
3792
+ CompletionRequirement,
3778
3793
  CrudType,
3779
3794
  DayOfWeek,
3780
3795
  Event,
@@ -3797,6 +3812,7 @@ var onServiceUpdated2 = (0, import_event_definition_modules.createEventModule)(o
3797
3812
  SortingMethodType,
3798
3813
  Status,
3799
3814
  TaxableAddressType,
3815
+ Timing,
3800
3816
  V2RequestedFields,
3801
3817
  WebhookIdentityType,
3802
3818
  bulkCreateServices,