@wix/auto_sdk_bookings_services 1.0.256 → 1.0.257
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.
- package/build/cjs/{bookings-services-v2-service-services.universal-CxQEooHC.d.ts → bookings-services-v2-service-services.universal-WPb4Ckct.d.ts} +35 -2
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +35 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-CxQEooHC.d.mts → bookings-services-v2-service-services.universal-WPb4Ckct.d.mts} +35 -2
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +35 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-BqFU1N2_.d.ts → bookings-services-v2-service-services.universal-BEPcsrix.d.ts} +49 -2
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +35 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-BqFU1N2_.d.mts → bookings-services-v2-service-services.universal-BEPcsrix.d.mts} +49 -2
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +35 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2837,6 +2837,39 @@ interface AccountInfo {
|
|
|
2837
2837
|
*/
|
|
2838
2838
|
siteId?: string | null;
|
|
2839
2839
|
}
|
|
2840
|
+
/**
|
|
2841
|
+
* A deposit expressed as exactly one of a fixed monetary amount or a percentage of the full service price.
|
|
2842
|
+
* Structurally exclusive: at most one of `amount` or `percentage` may be set.
|
|
2843
|
+
*/
|
|
2844
|
+
interface DepositDetails extends DepositDetailsValueOneOf {
|
|
2845
|
+
/** The deposit as a fixed monetary amount. */
|
|
2846
|
+
amount?: Money;
|
|
2847
|
+
/**
|
|
2848
|
+
* The deposit as a percentage of the full service price, for example `20` for 20% or `20.5` for 20.5%.
|
|
2849
|
+
* Resolved to a concrete amount when the customer books.
|
|
2850
|
+
*
|
|
2851
|
+
* Min: `0.01` percent
|
|
2852
|
+
* Max: `99.99` percent
|
|
2853
|
+
* @format DECIMAL_VALUE
|
|
2854
|
+
* @decimalValue options { gte:0.01, lte:99.99, maxScale:2 }
|
|
2855
|
+
*/
|
|
2856
|
+
percentage?: string | null;
|
|
2857
|
+
}
|
|
2858
|
+
/** @oneof */
|
|
2859
|
+
interface DepositDetailsValueOneOf {
|
|
2860
|
+
/** The deposit as a fixed monetary amount. */
|
|
2861
|
+
amount?: Money;
|
|
2862
|
+
/**
|
|
2863
|
+
* The deposit as a percentage of the full service price, for example `20` for 20% or `20.5` for 20.5%.
|
|
2864
|
+
* Resolved to a concrete amount when the customer books.
|
|
2865
|
+
*
|
|
2866
|
+
* Min: `0.01` percent
|
|
2867
|
+
* Max: `99.99` percent
|
|
2868
|
+
* @format DECIMAL_VALUE
|
|
2869
|
+
* @decimalValue options { gte:0.01, lte:99.99, maxScale:2 }
|
|
2870
|
+
*/
|
|
2871
|
+
percentage?: string | null;
|
|
2872
|
+
}
|
|
2840
2873
|
interface CreateServiceRequest {
|
|
2841
2874
|
/** Service to create. */
|
|
2842
2875
|
service: Service;
|
|
@@ -5835,7 +5868,7 @@ declare const utils: {
|
|
|
5835
5868
|
};
|
|
5836
5869
|
search: {
|
|
5837
5870
|
SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>;
|
|
5838
|
-
Filter: _wix_sdk_types.FilterFactory<Service, ServiceSearchSpec>;
|
|
5871
|
+
Filter: _wix_sdk_types.FilterFactory<Service, ServiceSearchSpec>;
|
|
5839
5872
|
Sort: _wix_sdk_types.SortFactory<ServiceSearchSpec>;
|
|
5840
5873
|
SearchParams: _wix_sdk_types.SearchParamsFactory<ServiceSearchSpec>;
|
|
5841
5874
|
Aggregation: _wix_sdk_types.AggregationFactory<ServiceSearchSpec>;
|
|
@@ -6582,4 +6615,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6582
6615
|
addOnIds: string[] | null;
|
|
6583
6616
|
}
|
|
6584
6617
|
|
|
6585
|
-
export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type PaymentRateOneOf as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, V2RequestedFields as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, Mode as aJ, RequestedFields as aK, Action as aL, InvalidSlugError as aM, CloneErrors as aN, Status as aO, Event as aP, CrudType as aQ, PlacementType as aR, DayOfWeek as aS, ResolutionMethod as aT, type Media as aU, type MediaItem as aV, type MediaItemItemOneOf as aW, type V2Category as aX, type Form as aY, type FormSettings as aZ, type Payment as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, WorkingHoursMode as al, TaxableAddressType as am, MultiServiceBookingType as an, ResourceTransparency as ao, LocationType as ap, SelectionMethod as aq, DurationUnitType as ar, ValueType as as, BookingStatus as at, PaymentStatus as au, SelectedPaymentOption as av, Platform as aw, Actor as ax, IdentityType as ay, WebhookIdentityType as az, type UpdateServiceValidationErrors as b, type Tag as b$, type FixedPayment as b0, type Money as b1, type CustomPayment as b2, type VariedPayment as b3, type SubscriptionPayment as b4, type FullUpfrontPayment as b5, type PaymentOptions as b6, type DiscountInfo as b7, type OnlineBooking as b8, type Conferencing as b9, type IntakeFormPolicy as bA, type RebookingFrequencyPolicy 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 WorkingHours as bJ, type StaffMember as bK, type StaffMediaItem as bL, type StaffMediaItemItemOneOf as bM, type WorkingHoursLocationCoverage as bN, type StaffMemberDetails as bO, type ResourceGroup as bP, type ResourceIds as bQ, type ServiceResource as bR, type ServiceResourceSelectionOneOf as bS, type ResourceType as bT, type ResourceDetails as bU, type ResourceInfo as bV, type Slug as bW, type URLs as bX, type ExtendedFields as bY, type SeoSchema as bZ, type Keyword as b_, type V2Location as ba, type V2LocationOptionsOneOf as bb, type CommonAddress as bc, type CommonAddressStreetOneOf as bd, type CommonStreetAddress as be, type CommonAddressLocation as bf, type BusinessLocationOptions as bg, type CustomLocationOptions as bh, type BookingPolicy as bi, type PolicyDescription as bj, type LimitEarlyBookingPolicy as bk, type LimitLateBookingPolicy as bl, type BookAfterStartPolicy as bm, type CancellationPolicy as bn, type ReschedulePolicy as bo, type WaitlistPolicy as bp, type ParticipantsPolicy as bq, type ResourcesPolicy as br, type CancellationFeePolicy as bs, type CancellationWindow as bt, type CancellationWindowFeeOneOf as bu, type SaveCreditCardPolicy as bv, type StaffSortingPolicy as bw, type StaffSortingPolicyOptionsOneOf as bx, type RankingOptions as by, type CustomOptions as bz, type BulkUpdateServicesOptions as c, type GetServiceAvailabilityConstraintsResponse as c$, type Settings as c0, type AddOnDetails as c1, type TaxableAddress as c2, type V2PhoneCall as c3, type SetCustomSlugEvent as c4, type ServicesUrlsChanged as c5, type DummyRequest as c6, type DummyResponse as c7, type Booking as c8, type BookingParticipantsInfoOneOf as c9, type ParticipantsRange as cA, type MultiServiceBookingInfo as cB, type BookedAddOn as cC, type DomainEvent as cD, type DomainEventBodyOneOf as cE, type EntityCreatedEvent as cF, type RestoreInfo as cG, type EntityUpdatedEvent as cH, type EntityDeletedEvent as cI, type ActionEvent as cJ, type MessageEnvelope as cK, type IdentificationData as cL, type IdentificationDataIdOneOf as cM, type AccountInfo as cN, type CreateServiceRequest as cO, type CreateServiceResponse as cP, type ValidateServiceRequest as cQ, type ValidateServiceResponse as cR, type FieldViolation as cS, type BulkCreateServicesRequest as cT, type BulkServiceResult as cU, type ItemMetadata as cV, type ApplicationError as cW, type BulkActionMetadata as cX, type GetServiceRequest as cY, type GetServiceResponse as cZ, type GetServiceAvailabilityConstraintsRequest as c_, type BookedEntity as ca, type BookedEntityItemOneOf as cb, type BookedSlot as cc, type BookedResource as cd, type Location as ce, type PhoneCall as cf, type ResourceSelection as cg, type BookedSchedule as ch, type ContactDetails as ci, type Address as cj, type AddressStreetOneOf as ck, type StreetAddress as cl, type AddressLocation as cm, type Subdivision as cn, type CustomFormField as co, type BookingSource as cp, type ParticipantNotification as cq, type CommonIdentificationData as cr, type CommonIdentificationDataIdOneOf as cs, type FlowControlSettings as ct, type ParticipantChoices as cu, type ServiceChoices as cv, type ServiceChoice as cw, type ServiceChoiceChoiceOneOf as cx, type Duration as cy, type DateTimeRule as cz, type BulkUpdateServicesResponse as d, type AggregationResultsResultOneOf as d$, type ServiceAvailabilityConstraints as d0, type SplitInterval as d1, type UpdateServiceRequest as d2, type UpdateServiceResponse as d3, type BulkUpdateServicesRequest as d4, type MaskedService as d5, type BulkUpdateServicesByFilterRequest as d6, type DeleteServiceRequest as d7, type V2ParticipantNotification as d8, type DeleteServiceResponse as d9, type NestedAggregation as dA, type GroupByAggregation as dB, type GroupByAggregationKindOneOf as dC, type SearchDetails as dD, type CursorPagingMetadata as dE, type AggregationData as dF, type ValueAggregationResult as dG, type RangeAggregationResult as dH, type NestedAggregationResults as dI, type NestedAggregationResultsResultOneOf as dJ, type ValueResults as dK, type RangeResults as dL, type AggregationResultsScalarResult as dM, type NestedValueAggregationResult as dN, type ValueResult as dO, type RangeResult as dP, type ScalarResult as dQ, type ScalarDateResult as dR, type NestedResultValue as dS, type NestedResultValueResultOneOf as dT, type Results as dU, type DateHistogramResult as dV, type GroupByValueResults as dW, type DateHistogramResults as dX, type NestedResults as dY, type AggregationResultsScalarDateResult as dZ, type AggregationResults as d_, type BulkDeleteServicesRequest as da, type BulkDeleteServicesByFilterRequest as db, type QueryServicesRequest as dc, type QueryV2 as dd, type QueryV2PagingMethodOneOf as de, type Sorting as df, type Paging as dg, type CursorPaging as dh, type QueryServicesResponse as di, type PagingMetadataV2 as dj, type Cursors as dk, type SearchServicesRequest as dl, type CursorSearch as dm, type CursorSearchPagingMethodOneOf as dn, type Aggregation as dp, type AggregationKindOneOf as dq, type RangeBucket as dr, type IncludeMissingValuesOptions as ds, type ValueAggregation as dt, type ValueAggregationOptionsOneOf as du, type RangeAggregation as dv, type ScalarAggregation as dw, type DateHistogramAggregation as dx, type NestedAggregationItem as dy, type NestedAggregationItemKindOneOf as dz, type BulkUpdateServicesByFilterOptions as e, type BaseEventMetadata as e$, type QueryPoliciesRequest as e0, type CursorQueryPagingMethodOneOf as e1, type BookingPolicyWithServices as e2, type QueryBookingFormsRequest as e3, type BookingForm as e4, type FormDetails as e5, type ConnectedService as e6, type CountServicesRequest as e7, type QueryLocationsRequest as e8, type QueryLocationsFilter as e9, type Properties as eA, type Categories as eB, type Locale as eC, type V4Address as eD, type AddressHint as eE, type GeoCoordinates as eF, type BusinessSchedule as eG, type TimePeriod as eH, type SpecialHourPeriod as eI, type Multilingual as eJ, type SupportedLanguage as eK, type ConsentPolicy as eL, type Translation as eM, type ChangeContext as eN, type ChangeContextPayloadOneOf as eO, type PropertiesChange as eP, type SiteCreated as eQ, type SiteCloned as eR, type CreateAddOnGroupRequest as eS, type DeleteAddOnGroupRequest as eT, type DeleteAddOnGroupResponse as eU, type UpdateAddOnGroupRequest as eV, type ListAddOnGroupsByServiceIdRequest as eW, type AddOn as eX, type AddOnAddOnInfoOneOf as eY, type AddOnGroupDetail as eZ, type SetAddOnsForGroupRequest as e_, type BusinessLocations as ea, type CustomLocations as eb, type CustomerLocations as ec, type QueryCategoriesRequest as ed, type QueryCategoriesFilter as ee, type QueryServicesMultiLanguageRequest as ef, type QueryServicesMultiLanguageResponse as eg, type SetServiceLocationsRequest as eh, type RemovedLocationSessionsAction as ei, type RemovedLocationSessionsActionActionOptionsOneOf as ej, type MoveToNewLocationsOptions as ek, type EnablePricingPlansForServiceRequest as el, type PricingPlanSelection as em, type InvalidPricingPlan as en, type DisablePricingPlansForServiceRequest as eo, type SetCustomSlugRequest as ep, type ValidateSlugRequest as eq, type CloneServiceRequest as er, type CategoryNotification as es, type Category as et, type Empty as eu, type UserDomainInfoChangedEvent as ev, type HtmlSitePublished as ew, type Page as ex, type SitePropertiesNotification as ey, type SitePropertiesEvent as ez, type BulkUpdateServicesByFilterResponse as f, deleteService as f$, type EventMetadata as f0, type AccountInfoMetadata as f1, type ServicesQueryResult as f2, type ServiceQuerySpec as f3, type ServiceSearchSpec as f4, utils as f5, type ServiceTypeWithLiterals as f6, type RateTypeWithLiterals as f7, type FrequencyTypeWithLiterals as f8, type FirstChargeDateTypeWithLiterals as f9, type MissingValuesWithLiterals as fA, type ScalarTypeWithLiterals as fB, type NestedAggregationTypeWithLiterals as fC, type IntervalWithLiterals as fD, type AggregationTypeWithLiterals as fE, type ModeWithLiterals as fF, type RequestedFieldsWithLiterals as fG, type ActionWithLiterals as fH, type InvalidSlugErrorWithLiterals as fI, type CloneErrorsWithLiterals as fJ, type StatusWithLiterals as fK, type EventWithLiterals as fL, type CrudTypeWithLiterals as fM, type PlacementTypeWithLiterals as fN, type DayOfWeekWithLiterals as fO, type ResolutionMethodWithLiterals as fP, type CommonQueryWithEntityContext as fQ, type CommonSearchWithEntityContext as fR, onServiceCreated as fS, onServiceDeleted as fT, onServiceUpdated as fU, createService as fV, bulkCreateServices as fW, getService as fX, updateService as fY, bulkUpdateServices as fZ, bulkUpdateServicesByFilter as f_, type AddOnPaymentOptionsWithLiterals as fa, type LocationTypeEnumLocationTypeWithLiterals as fb, type RankingOrderWithLiterals as fc, type SortingMethodTypeWithLiterals as fd, type TimingWithLiterals as fe, type CompletionRequirementWithLiterals as ff, type UnitTypeWithLiterals as fg, type WorkingHoursModeWithLiterals as fh, type TaxableAddressTypeWithLiterals as fi, type MultiServiceBookingTypeWithLiterals as fj, type ResourceTransparencyWithLiterals as fk, type LocationTypeWithLiterals as fl, type SelectionMethodWithLiterals as fm, type DurationUnitTypeWithLiterals as fn, type ValueTypeWithLiterals as fo, type BookingStatusWithLiterals as fp, type PaymentStatusWithLiterals as fq, type SelectedPaymentOptionWithLiterals as fr, type PlatformWithLiterals as fs, type ActorWithLiterals as ft, type IdentityTypeWithLiterals as fu, type WebhookIdentityTypeWithLiterals as fv, type V2RequestedFieldsWithLiterals as fw, type SortOrderWithLiterals as fx, type SortTypeWithLiterals as fy, type SortDirectionWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkDeleteServices as g0, bulkDeleteServicesByFilter as g1, queryServices as g2, queryPolicies as g3, queryBookingForms as g4, countServices as g5, queryLocations as g6, queryCategories as g7, setServiceLocations as g8, enablePricingPlansForService as g9, disablePricingPlansForService as ga, setCustomSlug as gb, validateSlug as gc, cloneService as gd, createAddOnGroup as ge, deleteAddOnGroup as gf, updateAddOnGroup as gg, listAddOnGroupsByServiceId as gh, setAddOnsForGroup as gi, 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 };
|
|
6618
|
+
export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type PaymentRateOneOf as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, V2RequestedFields as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, Mode as aJ, RequestedFields as aK, Action as aL, InvalidSlugError as aM, CloneErrors as aN, Status as aO, Event as aP, CrudType as aQ, PlacementType as aR, DayOfWeek as aS, ResolutionMethod as aT, type Media as aU, type MediaItem as aV, type MediaItemItemOneOf as aW, type V2Category as aX, type Form as aY, type FormSettings as aZ, type Payment as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, WorkingHoursMode as al, TaxableAddressType as am, MultiServiceBookingType as an, ResourceTransparency as ao, LocationType as ap, SelectionMethod as aq, DurationUnitType as ar, ValueType as as, BookingStatus as at, PaymentStatus as au, SelectedPaymentOption as av, Platform as aw, Actor as ax, IdentityType as ay, WebhookIdentityType as az, type UpdateServiceValidationErrors as b, type Tag as b$, type FixedPayment as b0, type Money as b1, type CustomPayment as b2, type VariedPayment as b3, type SubscriptionPayment as b4, type FullUpfrontPayment as b5, type PaymentOptions as b6, type DiscountInfo as b7, type OnlineBooking as b8, type Conferencing as b9, type IntakeFormPolicy as bA, type RebookingFrequencyPolicy 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 WorkingHours as bJ, type StaffMember as bK, type StaffMediaItem as bL, type StaffMediaItemItemOneOf as bM, type WorkingHoursLocationCoverage as bN, type StaffMemberDetails as bO, type ResourceGroup as bP, type ResourceIds as bQ, type ServiceResource as bR, type ServiceResourceSelectionOneOf as bS, type ResourceType as bT, type ResourceDetails as bU, type ResourceInfo as bV, type Slug as bW, type URLs as bX, type ExtendedFields as bY, type SeoSchema as bZ, type Keyword as b_, type V2Location as ba, type V2LocationOptionsOneOf as bb, type CommonAddress as bc, type CommonAddressStreetOneOf as bd, type CommonStreetAddress as be, type CommonAddressLocation as bf, type BusinessLocationOptions as bg, type CustomLocationOptions as bh, type BookingPolicy as bi, type PolicyDescription as bj, type LimitEarlyBookingPolicy as bk, type LimitLateBookingPolicy as bl, type BookAfterStartPolicy as bm, type CancellationPolicy as bn, type ReschedulePolicy as bo, type WaitlistPolicy as bp, type ParticipantsPolicy as bq, type ResourcesPolicy as br, type CancellationFeePolicy as bs, type CancellationWindow as bt, type CancellationWindowFeeOneOf as bu, type SaveCreditCardPolicy as bv, type StaffSortingPolicy as bw, type StaffSortingPolicyOptionsOneOf as bx, type RankingOptions as by, type CustomOptions as bz, type BulkUpdateServicesOptions as c, type GetServiceResponse as c$, type Settings as c0, type AddOnDetails as c1, type TaxableAddress as c2, type V2PhoneCall as c3, type SetCustomSlugEvent as c4, type ServicesUrlsChanged as c5, type DummyRequest as c6, type DummyResponse as c7, type Booking as c8, type BookingParticipantsInfoOneOf as c9, type ParticipantsRange as cA, type MultiServiceBookingInfo as cB, type BookedAddOn as cC, type DomainEvent as cD, type DomainEventBodyOneOf as cE, type EntityCreatedEvent as cF, type RestoreInfo as cG, type EntityUpdatedEvent as cH, type EntityDeletedEvent as cI, type ActionEvent as cJ, type MessageEnvelope as cK, type IdentificationData as cL, type IdentificationDataIdOneOf as cM, type AccountInfo as cN, type DepositDetails as cO, type DepositDetailsValueOneOf as cP, type CreateServiceRequest as cQ, type CreateServiceResponse as cR, type ValidateServiceRequest as cS, type ValidateServiceResponse as cT, type FieldViolation as cU, type BulkCreateServicesRequest as cV, type BulkServiceResult as cW, type ItemMetadata as cX, type ApplicationError as cY, type BulkActionMetadata as cZ, type GetServiceRequest as c_, type BookedEntity as ca, type BookedEntityItemOneOf as cb, type BookedSlot as cc, type BookedResource as cd, type Location as ce, type PhoneCall as cf, type ResourceSelection as cg, type BookedSchedule as ch, type ContactDetails as ci, type Address as cj, type AddressStreetOneOf as ck, type StreetAddress as cl, type AddressLocation as cm, type Subdivision as cn, type CustomFormField as co, type BookingSource as cp, type ParticipantNotification as cq, type CommonIdentificationData as cr, type CommonIdentificationDataIdOneOf as cs, type FlowControlSettings as ct, type ParticipantChoices as cu, type ServiceChoices as cv, type ServiceChoice as cw, type ServiceChoiceChoiceOneOf as cx, type Duration as cy, type DateTimeRule as cz, type BulkUpdateServicesResponse as d, type AggregationResultsScalarDateResult as d$, type GetServiceAvailabilityConstraintsRequest as d0, type GetServiceAvailabilityConstraintsResponse as d1, type ServiceAvailabilityConstraints as d2, type SplitInterval as d3, type UpdateServiceRequest as d4, type UpdateServiceResponse as d5, type BulkUpdateServicesRequest as d6, type MaskedService as d7, type BulkUpdateServicesByFilterRequest as d8, type DeleteServiceRequest as d9, type NestedAggregationItem as dA, type NestedAggregationItemKindOneOf as dB, type NestedAggregation as dC, type GroupByAggregation as dD, type GroupByAggregationKindOneOf as dE, type SearchDetails as dF, type CursorPagingMetadata as dG, type AggregationData as dH, type ValueAggregationResult as dI, type RangeAggregationResult as dJ, type NestedAggregationResults as dK, type NestedAggregationResultsResultOneOf as dL, type ValueResults as dM, type RangeResults as dN, type AggregationResultsScalarResult as dO, type NestedValueAggregationResult as dP, type ValueResult as dQ, type RangeResult as dR, type ScalarResult as dS, type ScalarDateResult as dT, type NestedResultValue as dU, type NestedResultValueResultOneOf as dV, type Results as dW, type DateHistogramResult as dX, type GroupByValueResults as dY, type DateHistogramResults as dZ, type NestedResults as d_, type V2ParticipantNotification as da, type DeleteServiceResponse as db, type BulkDeleteServicesRequest as dc, type BulkDeleteServicesByFilterRequest as dd, type QueryServicesRequest as de, type QueryV2 as df, type QueryV2PagingMethodOneOf as dg, type Sorting as dh, type Paging as di, type CursorPaging as dj, type QueryServicesResponse as dk, type PagingMetadataV2 as dl, type Cursors as dm, type SearchServicesRequest as dn, type CursorSearch as dp, type CursorSearchPagingMethodOneOf as dq, type Aggregation as dr, type AggregationKindOneOf as ds, type RangeBucket as dt, type IncludeMissingValuesOptions as du, type ValueAggregation as dv, type ValueAggregationOptionsOneOf as dw, type RangeAggregation as dx, type ScalarAggregation as dy, type DateHistogramAggregation as dz, type BulkUpdateServicesByFilterOptions as e, type AddOnGroupDetail as e$, type AggregationResults as e0, type AggregationResultsResultOneOf as e1, type QueryPoliciesRequest as e2, type CursorQueryPagingMethodOneOf as e3, type BookingPolicyWithServices as e4, type QueryBookingFormsRequest as e5, type BookingForm as e6, type FormDetails as e7, type ConnectedService as e8, type CountServicesRequest as e9, type SitePropertiesNotification as eA, type SitePropertiesEvent as eB, type Properties as eC, type Categories as eD, type Locale as eE, type V4Address as eF, type AddressHint as eG, type GeoCoordinates as eH, type BusinessSchedule as eI, type TimePeriod as eJ, type SpecialHourPeriod as eK, type Multilingual as eL, type SupportedLanguage as eM, type ConsentPolicy as eN, type Translation as eO, type ChangeContext as eP, type ChangeContextPayloadOneOf as eQ, type PropertiesChange as eR, type SiteCreated as eS, type SiteCloned as eT, type CreateAddOnGroupRequest as eU, type DeleteAddOnGroupRequest as eV, type DeleteAddOnGroupResponse as eW, type UpdateAddOnGroupRequest as eX, type ListAddOnGroupsByServiceIdRequest as eY, type AddOn as eZ, type AddOnAddOnInfoOneOf as e_, type QueryLocationsRequest as ea, type QueryLocationsFilter as eb, type BusinessLocations as ec, type CustomLocations as ed, type CustomerLocations as ee, type QueryCategoriesRequest as ef, type QueryCategoriesFilter as eg, type QueryServicesMultiLanguageRequest as eh, type QueryServicesMultiLanguageResponse as ei, type SetServiceLocationsRequest as ej, type RemovedLocationSessionsAction as ek, type RemovedLocationSessionsActionActionOptionsOneOf as el, type MoveToNewLocationsOptions as em, type EnablePricingPlansForServiceRequest as en, type PricingPlanSelection as eo, type InvalidPricingPlan as ep, type DisablePricingPlansForServiceRequest as eq, type SetCustomSlugRequest as er, type ValidateSlugRequest as es, type CloneServiceRequest as et, type CategoryNotification as eu, type Category as ev, type Empty as ew, type UserDomainInfoChangedEvent as ex, type HtmlSitePublished as ey, type Page as ez, type BulkUpdateServicesByFilterResponse as f, bulkUpdateServices as f$, type SetAddOnsForGroupRequest as f0, type BaseEventMetadata as f1, type EventMetadata as f2, type AccountInfoMetadata as f3, type ServicesQueryResult as f4, type ServiceQuerySpec as f5, type ServiceSearchSpec as f6, utils as f7, type ServiceTypeWithLiterals as f8, type RateTypeWithLiterals 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 EventWithLiterals as fN, type CrudTypeWithLiterals as fO, type PlacementTypeWithLiterals as fP, type DayOfWeekWithLiterals as fQ, type ResolutionMethodWithLiterals as fR, type CommonQueryWithEntityContext as fS, type CommonSearchWithEntityContext as fT, onServiceCreated as fU, onServiceDeleted as fV, onServiceUpdated as fW, createService as fX, bulkCreateServices as fY, getService as fZ, updateService as f_, type FrequencyTypeWithLiterals as fa, type FirstChargeDateTypeWithLiterals as fb, type AddOnPaymentOptionsWithLiterals as fc, type LocationTypeEnumLocationTypeWithLiterals as fd, type RankingOrderWithLiterals as fe, type SortingMethodTypeWithLiterals as ff, type TimingWithLiterals as fg, type CompletionRequirementWithLiterals as fh, type UnitTypeWithLiterals as fi, type WorkingHoursModeWithLiterals 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, bulkUpdateServicesByFilter as g0, deleteService as g1, bulkDeleteServices as g2, bulkDeleteServicesByFilter as g3, queryServices as g4, queryPolicies as g5, queryBookingForms as g6, countServices as g7, queryLocations as g8, queryCategories as g9, setServiceLocations as ga, enablePricingPlansForService as gb, disablePricingPlansForService as gc, setCustomSlug as gd, validateSlug as ge, cloneService as gf, createAddOnGroup as gg, deleteAddOnGroup as gh, updateAddOnGroup as gi, listAddOnGroupsByServiceId as gj, setAddOnsForGroup as gk, 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 };
|
package/build/es/index.d.mts
CHANGED
|
@@ -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-
|
|
3
|
-
export { cN as AccountInfo,
|
|
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-WPb4Ckct.mjs';
|
|
3
|
+
export { cN as AccountInfo, f3 as AccountInfoMetadata, aL as Action, cJ as ActionEvent, fJ as ActionWithLiterals, ax as Actor, fv as ActorWithLiterals, eZ as AddOn, e_ as AddOnAddOnInfoOneOf, c1 as AddOnDetails, e$ as AddOnGroupDetail, ae as AddOnPaymentOptions, fc as AddOnPaymentOptionsWithLiterals, cj as Address, eG as AddressHint, cm as AddressLocation, ck as AddressStreetOneOf, dr as Aggregation, dH as AggregationData, ds as AggregationKindOneOf, e0 as AggregationResults, e1 as AggregationResultsResultOneOf, d$ as AggregationResultsScalarDateResult, dO as AggregationResultsScalarResult, aI as AggregationType, fG as AggregationTypeWithLiterals, cY as ApplicationError, bD as AvailabilityConstraints, f1 as BaseEventMetadata, bm as BookAfterStartPolicy, cC as BookedAddOn, ca as BookedEntity, cb as BookedEntityItemOneOf, cd as BookedResource, ch as BookedSchedule, cc as BookedSlot, c8 as Booking, e6 as BookingForm, c9 as BookingParticipantsInfoOneOf, bi as BookingPolicy, e4 as BookingPolicyWithServices, cp as BookingSource, at as BookingStatus, fr as BookingStatusWithLiterals, cZ as BulkActionMetadata, cV as BulkCreateServicesRequest, dd as BulkDeleteServicesByFilterRequest, dc as BulkDeleteServicesRequest, cW as BulkServiceResult, d8 as BulkUpdateServicesByFilterRequest, d6 as BulkUpdateServicesRequest, bg as BusinessLocationOptions, ec as BusinessLocations, eI as BusinessSchedule, bs as CancellationFeePolicy, bn as CancellationPolicy, bt as CancellationWindow, bu as CancellationWindowFeeOneOf, eD as Categories, ev as Category, eu as CategoryNotification, eP as ChangeContext, eQ as ChangeContextPayloadOneOf, aN as CloneErrors, fL as CloneErrorsWithLiterals, et as CloneServiceRequest, bc as CommonAddress, bf as CommonAddressLocation, bd as CommonAddressStreetOneOf, cr as CommonIdentificationData, cs as CommonIdentificationDataIdOneOf, fS as CommonQueryWithEntityContext, fT as CommonSearchWithEntityContext, be as CommonStreetAddress, aj as CompletionRequirement, fh as CompletionRequirementWithLiterals, b9 as Conferencing, e8 as ConnectedService, eN as ConsentPolicy, ci as ContactDetails, e9 as CountServicesRequest, eU as CreateAddOnGroupRequest, cQ as CreateServiceRequest, cR as CreateServiceResponse, aQ as CrudType, fO as CrudTypeWithLiterals, dj as CursorPaging, dG as CursorPagingMetadata, e3 as CursorQueryPagingMethodOneOf, dp as CursorSearch, dq as CursorSearchPagingMethodOneOf, dm as Cursors, co as CustomFormField, bh as CustomLocationOptions, ed as CustomLocations, bz as CustomOptions, b2 as CustomPayment, ee as CustomerLocations, bI as DailyConfig, dz as DateHistogramAggregation, dX as DateHistogramResult, dZ as DateHistogramResults, cz as DateTimeRule, aS as DayOfWeek, fQ as DayOfWeekWithLiterals, eV as DeleteAddOnGroupRequest, eW as DeleteAddOnGroupResponse, d9 as DeleteServiceRequest, db as DeleteServiceResponse, cO as DepositDetails, cP as DepositDetailsValueOneOf, eq as DisablePricingPlansForServiceRequest, b7 as DiscountInfo, cD as DomainEvent, cE as DomainEventBodyOneOf, c6 as DummyRequest, c7 as DummyResponse, cy as Duration, bF as DurationRange, bG as DurationRangeConfigOneOf, ar as DurationUnitType, fp as DurationUnitTypeWithLiterals, ew as Empty, en as EnablePricingPlansForServiceRequest, cF as EntityCreatedEvent, cI as EntityDeletedEvent, cH as EntityUpdatedEvent, aP as Event, f2 as EventMetadata, fN as EventWithLiterals, bY as ExtendedFields, cU as FieldViolation, ad as FirstChargeDateType, fb as FirstChargeDateTypeWithLiterals, b0 as FixedPayment, ct as FlowControlSettings, aY as Form, e7 as FormDetails, aZ as FormSettings, ac as FrequencyType, fa as FrequencyTypeWithLiterals, b5 as FullUpfrontPayment, eH as GeoCoordinates, d0 as GetServiceAvailabilityConstraintsRequest, d1 as GetServiceAvailabilityConstraintsResponse, c_ as GetServiceRequest, c$ as GetServiceResponse, dD as GroupByAggregation, dE as GroupByAggregationKindOneOf, dY as GroupByValueResults, bH as HourlyConfig, ey as HtmlSitePublished, cL as IdentificationData, cM as IdentificationDataIdOneOf, ay as IdentityType, fw as IdentityTypeWithLiterals, du as IncludeMissingValuesOptions, bA as IntakeFormPolicy, aH as Interval, fF as IntervalWithLiterals, ep as InvalidPricingPlan, aM as InvalidSlugError, fK as InvalidSlugErrorWithLiterals, cX as ItemMetadata, b_ as Keyword, bk as LimitEarlyBookingPolicy, bl as LimitLateBookingPolicy, eY as ListAddOnGroupsByServiceIdRequest, eE as Locale, ce as Location, ap as LocationType, af as LocationTypeEnumLocationType, fd as LocationTypeEnumLocationTypeWithLiterals, fn as LocationTypeWithLiterals, d7 as MaskedService, aU as Media, aV as MediaItem, aW as MediaItemItemOneOf, cK as MessageEnvelope, aE as MissingValues, fC as MissingValuesWithLiterals, aJ as Mode, fH as ModeWithLiterals, b1 as Money, em as MoveToNewLocationsOptions, cB as MultiServiceBookingInfo, an as MultiServiceBookingType, fl as MultiServiceBookingTypeWithLiterals, eL as Multilingual, dC as NestedAggregation, dA as NestedAggregationItem, dB as NestedAggregationItemKindOneOf, dK as NestedAggregationResults, dL as NestedAggregationResultsResultOneOf, aG as NestedAggregationType, fE as NestedAggregationTypeWithLiterals, dU as NestedResultValue, dV as NestedResultValueResultOneOf, d_ as NestedResults, dP as NestedValueAggregationResult, b8 as OnlineBooking, ez as Page, di as Paging, dl as PagingMetadataV2, cu as ParticipantChoices, cq as ParticipantNotification, bq as ParticipantsPolicy, cA as ParticipantsRange, a_ as Payment, b6 as PaymentOptions, a$ as PaymentRateOneOf, au as PaymentStatus, fs as PaymentStatusWithLiterals, cf as PhoneCall, aR as PlacementType, fP as PlacementTypeWithLiterals, aw as Platform, fu as PlatformWithLiterals, bj as PolicyDescription, eo as PricingPlanSelection, eC as Properties, eR as PropertiesChange, e5 as QueryBookingFormsRequest, eg as QueryCategoriesFilter, ef as QueryCategoriesRequest, eb as QueryLocationsFilter, ea as QueryLocationsRequest, e2 as QueryPoliciesRequest, eh as QueryServicesMultiLanguageRequest, ei as QueryServicesMultiLanguageResponse, de as QueryServicesRequest, dk as QueryServicesResponse, df as QueryV2, dg as QueryV2PagingMethodOneOf, dx as RangeAggregation, dJ as RangeAggregationResult, dt as RangeBucket, dR as RangeResult, dN as RangeResults, by as RankingOptions, ag as RankingOrder, fe as RankingOrderWithLiterals, ab as RateType, f9 as RateTypeWithLiterals, bB as RebookingFrequencyPolicy, ek as RemovedLocationSessionsAction, el as RemovedLocationSessionsActionActionOptionsOneOf, aK as RequestedFields, fI as RequestedFieldsWithLiterals, bo as ReschedulePolicy, aT as ResolutionMethod, fR as ResolutionMethodWithLiterals, bU as ResourceDetails, bP as ResourceGroup, bQ as ResourceIds, bV as ResourceInfo, cg as ResourceSelection, ao as ResourceTransparency, fm as ResourceTransparencyWithLiterals, bT as ResourceType, br as ResourcesPolicy, cG as RestoreInfo, dW as Results, bv as SaveCreditCardPolicy, dy as ScalarAggregation, dT as ScalarDateResult, dS as ScalarResult, aF as ScalarType, fD as ScalarTypeWithLiterals, bC as Schedule, dF as SearchDetails, dn as SearchServicesRequest, av as SelectedPaymentOption, ft as SelectedPaymentOptionWithLiterals, aq as SelectionMethod, fo as SelectionMethodWithLiterals, bZ as SeoSchema, d2 as ServiceAvailabilityConstraints, cw as ServiceChoice, cx as ServiceChoiceChoiceOneOf, cv as ServiceChoices, f5 as ServiceQuerySpec, bR as ServiceResource, bS as ServiceResourceSelectionOneOf, f6 as ServiceSearchSpec, aa as ServiceType, f8 as ServiceTypeWithLiterals, f4 as ServicesQueryResult, c5 as ServicesUrlsChanged, f0 as SetAddOnsForGroupRequest, c4 as SetCustomSlugEvent, er as SetCustomSlugRequest, ej as SetServiceLocationsRequest, c0 as Settings, eT as SiteCloned, eS as SiteCreated, eB as SitePropertiesEvent, eA as SitePropertiesNotification, bW as Slug, aD as SortDirection, fB as SortDirectionWithLiterals, aB as SortOrder, fz as SortOrderWithLiterals, aC as SortType, fA as SortTypeWithLiterals, dh as Sorting, ah as SortingMethodType, ff as SortingMethodTypeWithLiterals, eK as SpecialHourPeriod, d3 as SplitInterval, bL as StaffMediaItem, bM as StaffMediaItemItemOneOf, bK as StaffMember, bO as StaffMemberDetails, bw as StaffSortingPolicy, bx as StaffSortingPolicyOptionsOneOf, aO as Status, fM as StatusWithLiterals, cl as StreetAddress, cn as Subdivision, b4 as SubscriptionPayment, eM as SupportedLanguage, b$ as Tag, c2 as TaxableAddress, am as TaxableAddressType, fk as TaxableAddressTypeWithLiterals, eJ as TimePeriod, ai as Timing, fg as TimingWithLiterals, eO as Translation, bX as URLs, ak as UnitType, fi as UnitTypeWithLiterals, eX as UpdateAddOnGroupRequest, d4 as UpdateServiceRequest, d5 as UpdateServiceResponse, ex as UserDomainInfoChangedEvent, aX as V2Category, bE as V2Duration, ba as V2Location, bb as V2LocationOptionsOneOf, da as V2ParticipantNotification, c3 as V2PhoneCall, aA as V2RequestedFields, fy as V2RequestedFieldsWithLiterals, eF as V4Address, cS as ValidateServiceRequest, cT as ValidateServiceResponse, es as ValidateSlugRequest, dv as ValueAggregation, dw as ValueAggregationOptionsOneOf, dI as ValueAggregationResult, dQ as ValueResult, dM as ValueResults, as as ValueType, fq as ValueTypeWithLiterals, b3 as VariedPayment, bp as WaitlistPolicy, az as WebhookIdentityType, fx as WebhookIdentityTypeWithLiterals, bJ as WorkingHours, bN as WorkingHoursLocationCoverage, al as WorkingHoursMode, fj as WorkingHoursModeWithLiterals, f7 as utils } from './bookings-services-v2-service-services.universal-WPb4Ckct.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|