@wix/auto_sdk_bookings_services 1.0.256 → 1.0.258
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-Bp0C3nWc.d.ts} +67 -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 +64 -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-Bp0C3nWc.d.mts} +67 -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 +64 -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-BVF1IIXx.d.ts} +81 -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 +64 -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-BVF1IIXx.d.mts} +81 -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 +64 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -374,6 +374,13 @@ interface FixedPayment {
|
|
|
374
374
|
* Default: `false`.
|
|
375
375
|
*/
|
|
376
376
|
fullUpfrontPaymentAllowed?: boolean | null;
|
|
377
|
+
/**
|
|
378
|
+
* The deposit required to book the service, expressed as either a fixed amount or a percentage of the price.
|
|
379
|
+
*
|
|
380
|
+
* Used only when `paymentOptions.deposit` is `true`.
|
|
381
|
+
* @internal
|
|
382
|
+
*/
|
|
383
|
+
depositDetails?: DepositDetails;
|
|
377
384
|
}
|
|
378
385
|
/**
|
|
379
386
|
* Money.
|
|
@@ -398,6 +405,39 @@ interface Money {
|
|
|
398
405
|
*/
|
|
399
406
|
formattedValue?: string | null;
|
|
400
407
|
}
|
|
408
|
+
/**
|
|
409
|
+
* A deposit expressed as exactly one of a fixed monetary amount or a percentage of the full service price.
|
|
410
|
+
* Structurally exclusive: at most one of `amount` or `percentage` may be set.
|
|
411
|
+
*/
|
|
412
|
+
interface DepositDetails extends DepositDetailsValueOneOf {
|
|
413
|
+
/** The deposit as a fixed monetary amount. */
|
|
414
|
+
amount?: Money;
|
|
415
|
+
/**
|
|
416
|
+
* The deposit as a percentage of the full service price, for example `20` for 20% or `20.5` for 20.5%.
|
|
417
|
+
* Resolved to a concrete amount when the customer books.
|
|
418
|
+
*
|
|
419
|
+
* Min: `0.01` percent
|
|
420
|
+
* Max: `99.99` percent
|
|
421
|
+
* @format DECIMAL_VALUE
|
|
422
|
+
* @decimalValue options { gte:0.01, lte:99.99, maxScale:2 }
|
|
423
|
+
*/
|
|
424
|
+
percentage?: string | null;
|
|
425
|
+
}
|
|
426
|
+
/** @oneof */
|
|
427
|
+
interface DepositDetailsValueOneOf {
|
|
428
|
+
/** The deposit as a fixed monetary amount. */
|
|
429
|
+
amount?: Money;
|
|
430
|
+
/**
|
|
431
|
+
* The deposit as a percentage of the full service price, for example `20` for 20% or `20.5` for 20.5%.
|
|
432
|
+
* Resolved to a concrete amount when the customer books.
|
|
433
|
+
*
|
|
434
|
+
* Min: `0.01` percent
|
|
435
|
+
* Max: `99.99` percent
|
|
436
|
+
* @format DECIMAL_VALUE
|
|
437
|
+
* @decimalValue options { gte:0.01, lte:99.99, maxScale:2 }
|
|
438
|
+
*/
|
|
439
|
+
percentage?: string | null;
|
|
440
|
+
}
|
|
401
441
|
interface CustomPayment {
|
|
402
442
|
/**
|
|
403
443
|
* A custom description explaining to the customer how to pay for the service.
|
|
@@ -432,6 +472,13 @@ interface VariedPayment {
|
|
|
432
472
|
* Default: `false`.
|
|
433
473
|
*/
|
|
434
474
|
fullUpfrontPaymentAllowed?: boolean | null;
|
|
475
|
+
/**
|
|
476
|
+
* The deposit required to book the service, expressed as either a fixed amount or a percentage of the price.
|
|
477
|
+
*
|
|
478
|
+
* Used only when `paymentOptions.deposit` is `true`.
|
|
479
|
+
* @internal
|
|
480
|
+
*/
|
|
481
|
+
depositDetails?: DepositDetails;
|
|
435
482
|
}
|
|
436
483
|
interface SubscriptionPayment {
|
|
437
484
|
/**
|
|
@@ -2917,6 +2964,35 @@ interface AccountInfo {
|
|
|
2917
2964
|
*/
|
|
2918
2965
|
siteId?: string | null;
|
|
2919
2966
|
}
|
|
2967
|
+
/**
|
|
2968
|
+
* Rule limiting how many times the same customer can book a service within a given period.
|
|
2969
|
+
* The first booking is always allowed; the limit constrains additional bookings.
|
|
2970
|
+
*/
|
|
2971
|
+
interface LimitRebookingPolicy {
|
|
2972
|
+
/**
|
|
2973
|
+
* Whether booking-frequency limits are enabled for the service. When `false`, there's no limit on how often a customer can book.
|
|
2974
|
+
*
|
|
2975
|
+
* Default: `false`
|
|
2976
|
+
*/
|
|
2977
|
+
enabled?: boolean;
|
|
2978
|
+
/**
|
|
2979
|
+
* Maximum number of bookings of the same service a single customer can make within `windowInMinutes`.
|
|
2980
|
+
* Only enforced when `enabled` is `true`, and required in that case.
|
|
2981
|
+
*
|
|
2982
|
+
* Example: `2` (up to two bookings per window)
|
|
2983
|
+
* Min: `1`
|
|
2984
|
+
* @min 1
|
|
2985
|
+
*/
|
|
2986
|
+
maxBookings?: number | null;
|
|
2987
|
+
/**
|
|
2988
|
+
* Length of the rolling window, in minutes, over which `maxBookings` is counted. Only enforced when `enabled` is `true`.
|
|
2989
|
+
* When enabled and left unset, the limit applies over all time (a lifetime cap) — e.g. `maxBookings = 1` with no window blocks rebooking permanently.
|
|
2990
|
+
*
|
|
2991
|
+
* Examples: `1440` (1 day), `10080` (7 days), `43200` (30 days)
|
|
2992
|
+
* @min 1
|
|
2993
|
+
*/
|
|
2994
|
+
windowInMinutes?: number | null;
|
|
2995
|
+
}
|
|
2920
2996
|
interface CreateServiceRequest {
|
|
2921
2997
|
/** Service to create. */
|
|
2922
2998
|
service: Service;
|
|
@@ -5957,7 +6033,10 @@ declare const utils: {
|
|
|
5957
6033
|
};
|
|
5958
6034
|
search: {
|
|
5959
6035
|
SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>;
|
|
5960
|
-
Filter: _wix_sdk_types.FilterFactory<Service, ServiceSearchSpec>; /**
|
|
6036
|
+
Filter: _wix_sdk_types.FilterFactory<Service, ServiceSearchSpec>; /**
|
|
6037
|
+
* Staff members are selected using a custom implementation provided by SortStaffSPI.
|
|
6038
|
+
* This allows third-party apps to implement custom staff sorting logic.
|
|
6039
|
+
*/
|
|
5961
6040
|
Sort: _wix_sdk_types.SortFactory<ServiceSearchSpec>;
|
|
5962
6041
|
SearchParams: _wix_sdk_types.SearchParamsFactory<ServiceSearchSpec>;
|
|
5963
6042
|
Aggregation: _wix_sdk_types.AggregationFactory<ServiceSearchSpec>;
|
|
@@ -6704,4 +6783,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6704
6783
|
addOnIds: string[] | null;
|
|
6705
6784
|
}
|
|
6706
6785
|
|
|
6707
|
-
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 };
|
|
6786
|
+
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 SeoSchema as b$, type FixedPayment as b0, type Money as b1, type DepositDetails as b2, type DepositDetailsValueOneOf as b3, type CustomPayment as b4, type VariedPayment as b5, type SubscriptionPayment as b6, type FullUpfrontPayment as b7, type PaymentOptions as b8, type DiscountInfo as b9, type RankingOptions as bA, type CustomOptions as bB, type IntakeFormPolicy as bC, type RebookingFrequencyPolicy as bD, type Schedule as bE, type AvailabilityConstraints as bF, type V2Duration as bG, type DurationRange as bH, type DurationRangeConfigOneOf as bI, type HourlyConfig as bJ, type DailyConfig as bK, type WorkingHours as bL, type StaffMember as bM, type StaffMediaItem as bN, type StaffMediaItemItemOneOf as bO, type WorkingHoursLocationCoverage as bP, type StaffMemberDetails as bQ, type ResourceGroup as bR, type ResourceIds as bS, type ServiceResource as bT, type ServiceResourceSelectionOneOf as bU, type ResourceType as bV, type ResourceDetails as bW, type ResourceInfo as bX, type Slug as bY, type URLs as bZ, type ExtendedFields as b_, type OnlineBooking as ba, type Conferencing as bb, type V2Location as bc, type V2LocationOptionsOneOf as bd, type CommonAddress as be, type CommonAddressStreetOneOf as bf, type CommonStreetAddress as bg, type CommonAddressLocation as bh, type BusinessLocationOptions as bi, type CustomLocationOptions as bj, type BookingPolicy as bk, type PolicyDescription as bl, type LimitEarlyBookingPolicy as bm, type LimitLateBookingPolicy as bn, type BookAfterStartPolicy as bo, type CancellationPolicy as bp, type ReschedulePolicy as bq, type WaitlistPolicy as br, type ParticipantsPolicy as bs, type ResourcesPolicy as bt, type CancellationFeePolicy as bu, type CancellationWindow as bv, type CancellationWindowFeeOneOf as bw, type SaveCreditCardPolicy as bx, type StaffSortingPolicy as by, type StaffSortingPolicyOptionsOneOf as bz, type BulkUpdateServicesOptions as c, type GetServiceRequest as c$, type Keyword as c0, type Tag as c1, type Settings as c2, type AddOnDetails as c3, type TaxableAddress as c4, type V2PhoneCall as c5, type SetCustomSlugEvent as c6, type ServicesUrlsChanged as c7, type DummyRequest as c8, type DummyResponse as c9, type Duration as cA, type DateTimeRule as cB, type ParticipantsRange as cC, type MultiServiceBookingInfo as cD, type BookedAddOn as cE, type DomainEvent as cF, type DomainEventBodyOneOf as cG, type EntityCreatedEvent as cH, type RestoreInfo as cI, type EntityUpdatedEvent as cJ, type EntityDeletedEvent as cK, type ActionEvent as cL, type MessageEnvelope as cM, type IdentificationData as cN, type IdentificationDataIdOneOf as cO, type AccountInfo as cP, type LimitRebookingPolicy as cQ, type CreateServiceRequest as cR, type CreateServiceResponse as cS, type ValidateServiceRequest as cT, type ValidateServiceResponse as cU, type FieldViolation as cV, type BulkCreateServicesRequest as cW, type BulkServiceResult as cX, type ItemMetadata as cY, type ApplicationError as cZ, type BulkActionMetadata as c_, type Booking as ca, type BookingParticipantsInfoOneOf as cb, type BookedEntity as cc, type BookedEntityItemOneOf as cd, type BookedSlot as ce, type BookedResource as cf, type Location as cg, type PhoneCall as ch, type ResourceSelection as ci, type BookedSchedule as cj, type ContactDetails as ck, type Address as cl, type AddressStreetOneOf as cm, type StreetAddress as cn, type AddressLocation as co, type Subdivision as cp, type CustomFormField as cq, type BookingSource as cr, type ParticipantNotification as cs, type CommonIdentificationData as ct, type CommonIdentificationDataIdOneOf as cu, type FlowControlSettings as cv, type ParticipantChoices as cw, type ServiceChoices as cx, type ServiceChoice as cy, type ServiceChoiceChoiceOneOf as cz, type BulkUpdateServicesResponse as d, type NestedResults as d$, type GetServiceResponse as d0, type GetServiceAvailabilityConstraintsRequest as d1, type GetServiceAvailabilityConstraintsResponse as d2, type ServiceAvailabilityConstraints as d3, type SplitInterval as d4, type UpdateServiceRequest as d5, type UpdateServiceResponse as d6, type BulkUpdateServicesRequest as d7, type MaskedService as d8, type BulkUpdateServicesByFilterRequest as d9, type DateHistogramAggregation as dA, type NestedAggregationItem as dB, type NestedAggregationItemKindOneOf as dC, type NestedAggregation as dD, type GroupByAggregation as dE, type GroupByAggregationKindOneOf as dF, type SearchDetails as dG, type CursorPagingMetadata as dH, type AggregationData as dI, type ValueAggregationResult as dJ, type RangeAggregationResult as dK, type NestedAggregationResults as dL, type NestedAggregationResultsResultOneOf as dM, type ValueResults as dN, type RangeResults as dO, type AggregationResultsScalarResult as dP, type NestedValueAggregationResult as dQ, type ValueResult as dR, type RangeResult as dS, type ScalarResult as dT, type ScalarDateResult as dU, type NestedResultValue as dV, type NestedResultValueResultOneOf as dW, type Results as dX, type DateHistogramResult as dY, type GroupByValueResults as dZ, type DateHistogramResults as d_, type DeleteServiceRequest as da, type V2ParticipantNotification as db, type DeleteServiceResponse as dc, type BulkDeleteServicesRequest as dd, type BulkDeleteServicesByFilterRequest as de, type QueryServicesRequest as df, type QueryV2 as dg, type QueryV2PagingMethodOneOf as dh, type Sorting as di, type Paging as dj, type CursorPaging as dk, type QueryServicesResponse as dl, type PagingMetadataV2 as dm, type Cursors as dn, type SearchServicesRequest as dp, type CursorSearch as dq, type CursorSearchPagingMethodOneOf as dr, type Aggregation as ds, type AggregationKindOneOf as dt, type RangeBucket as du, type IncludeMissingValuesOptions as dv, type ValueAggregation as dw, type ValueAggregationOptionsOneOf as dx, type RangeAggregation as dy, type ScalarAggregation as dz, type BulkUpdateServicesByFilterOptions as e, type AddOnAddOnInfoOneOf as e$, type AggregationResultsScalarDateResult as e0, type AggregationResults as e1, type AggregationResultsResultOneOf as e2, type QueryPoliciesRequest as e3, type CursorQueryPagingMethodOneOf as e4, type BookingPolicyWithServices as e5, type QueryBookingFormsRequest as e6, type BookingForm as e7, type FormDetails as e8, type ConnectedService as e9, type Page as eA, type SitePropertiesNotification as eB, type SitePropertiesEvent as eC, type Properties as eD, type Categories as eE, type Locale as eF, type V4Address as eG, type AddressHint as eH, type GeoCoordinates as eI, type BusinessSchedule as eJ, type TimePeriod as eK, type SpecialHourPeriod as eL, type Multilingual as eM, type SupportedLanguage as eN, type ConsentPolicy as eO, type Translation as eP, type ChangeContext as eQ, type ChangeContextPayloadOneOf as eR, type PropertiesChange as eS, type SiteCreated as eT, type SiteCloned as eU, type CreateAddOnGroupRequest as eV, type DeleteAddOnGroupRequest as eW, type DeleteAddOnGroupResponse as eX, type UpdateAddOnGroupRequest as eY, type ListAddOnGroupsByServiceIdRequest as eZ, type AddOn as e_, type CountServicesRequest as ea, type QueryLocationsRequest as eb, type QueryLocationsFilter as ec, type BusinessLocations as ed, type CustomLocations as ee, type CustomerLocations as ef, type QueryCategoriesRequest as eg, type QueryCategoriesFilter as eh, type QueryServicesMultiLanguageRequest as ei, type QueryServicesMultiLanguageResponse as ej, type SetServiceLocationsRequest as ek, type RemovedLocationSessionsAction as el, type RemovedLocationSessionsActionActionOptionsOneOf as em, type MoveToNewLocationsOptions as en, type EnablePricingPlansForServiceRequest as eo, type PricingPlanSelection as ep, type InvalidPricingPlan as eq, type DisablePricingPlansForServiceRequest as er, type SetCustomSlugRequest as es, type ValidateSlugRequest as et, type CloneServiceRequest as eu, type CategoryNotification as ev, type Category as ew, type Empty as ex, type UserDomainInfoChangedEvent as ey, type HtmlSitePublished as ez, type BulkUpdateServicesByFilterResponse as f, updateService as f$, type AddOnGroupDetail as f0, type SetAddOnsForGroupRequest as f1, type BaseEventMetadata as f2, type EventMetadata as f3, type AccountInfoMetadata as f4, type ServicesQueryResult as f5, type ServiceQuerySpec as f6, type ServiceSearchSpec as f7, utils as f8, type ServiceTypeWithLiterals as f9, type SortOrderWithLiterals as fA, type SortTypeWithLiterals as fB, type SortDirectionWithLiterals as fC, type MissingValuesWithLiterals as fD, type ScalarTypeWithLiterals as fE, type NestedAggregationTypeWithLiterals as fF, type IntervalWithLiterals as fG, type AggregationTypeWithLiterals as fH, type ModeWithLiterals as fI, type RequestedFieldsWithLiterals as fJ, type ActionWithLiterals as fK, type InvalidSlugErrorWithLiterals as fL, type CloneErrorsWithLiterals as fM, type StatusWithLiterals as fN, type EventWithLiterals as fO, type CrudTypeWithLiterals as fP, type PlacementTypeWithLiterals as fQ, type DayOfWeekWithLiterals as fR, type ResolutionMethodWithLiterals as fS, type CommonQueryWithEntityContext as fT, type CommonSearchWithEntityContext as fU, onServiceCreated as fV, onServiceDeleted as fW, onServiceUpdated as fX, createService as fY, bulkCreateServices as fZ, getService as f_, type RateTypeWithLiterals as fa, type FrequencyTypeWithLiterals as fb, type FirstChargeDateTypeWithLiterals as fc, type AddOnPaymentOptionsWithLiterals as fd, type LocationTypeEnumLocationTypeWithLiterals as fe, type RankingOrderWithLiterals as ff, type SortingMethodTypeWithLiterals as fg, type TimingWithLiterals as fh, type CompletionRequirementWithLiterals as fi, type UnitTypeWithLiterals as fj, type WorkingHoursModeWithLiterals as fk, type TaxableAddressTypeWithLiterals as fl, type MultiServiceBookingTypeWithLiterals as fm, type ResourceTransparencyWithLiterals as fn, type LocationTypeWithLiterals as fo, type SelectionMethodWithLiterals as fp, type DurationUnitTypeWithLiterals as fq, type ValueTypeWithLiterals as fr, type BookingStatusWithLiterals as fs, type PaymentStatusWithLiterals as ft, type SelectedPaymentOptionWithLiterals as fu, type PlatformWithLiterals as fv, type ActorWithLiterals as fw, type IdentityTypeWithLiterals as fx, type WebhookIdentityTypeWithLiterals as fy, type V2RequestedFieldsWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkUpdateServices as g0, bulkUpdateServicesByFilter as g1, deleteService as g2, bulkDeleteServices as g3, bulkDeleteServicesByFilter as g4, queryServices as g5, queryPolicies as g6, queryBookingForms as g7, countServices as g8, queryLocations as g9, queryCategories as ga, setServiceLocations as gb, enablePricingPlansForService as gc, disablePricingPlansForService as gd, setCustomSlug as ge, validateSlug as gf, cloneService as gg, createAddOnGroup as gh, deleteAddOnGroup as gi, updateAddOnGroup as gj, listAddOnGroupsByServiceId as gk, setAddOnsForGroup as gl, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, G as GetServiceOptions, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, H as SetCustomSlugOptions, I as SetCustomSlugResponse, J as SetCustomSlugApplicationErrors, K as SetCustomSlugValidationErrors, V as ValidateSlugOptions, L as ValidateSlugResponse, M as CloneServiceResponse, N as AddOnGroup, O as CreateAddOnGroupOptions, P as CreateAddOnGroupResponse, R as CreateAddOnGroupApplicationErrors, T as DeleteAddOnGroupOptions, W as DeleteAddOnGroupApplicationErrors, X as UpdateAddOnGroupOptions, Y as UpdateAddOnGroupResponse, Z as UpdateAddOnGroupApplicationErrors, _ as ListAddOnGroupsByServiceIdOptions, $ as ListAddOnGroupsByServiceIdResponse, a0 as SetAddOnsForGroupOptions, a1 as SetAddOnsForGroupResponse, a2 as SetAddOnsForGroupApplicationErrors, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope, a6 as ServiceQuery, a7 as QueryServicesOptions, a8 as typedQueryServices, a9 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-
|
|
3
|
-
export {
|
|
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-BVF1IIXx.mjs';
|
|
3
|
+
export { cP as AccountInfo, f4 as AccountInfoMetadata, aL as Action, cL as ActionEvent, fK as ActionWithLiterals, ax as Actor, fw as ActorWithLiterals, e_ as AddOn, e$ as AddOnAddOnInfoOneOf, c3 as AddOnDetails, f0 as AddOnGroupDetail, ae as AddOnPaymentOptions, fd as AddOnPaymentOptionsWithLiterals, cl as Address, eH as AddressHint, co as AddressLocation, cm as AddressStreetOneOf, ds as Aggregation, dI as AggregationData, dt as AggregationKindOneOf, e1 as AggregationResults, e2 as AggregationResultsResultOneOf, e0 as AggregationResultsScalarDateResult, dP as AggregationResultsScalarResult, aI as AggregationType, fH as AggregationTypeWithLiterals, cZ as ApplicationError, bF as AvailabilityConstraints, f2 as BaseEventMetadata, bo as BookAfterStartPolicy, cE as BookedAddOn, cc as BookedEntity, cd as BookedEntityItemOneOf, cf as BookedResource, cj as BookedSchedule, ce as BookedSlot, ca as Booking, e7 as BookingForm, cb as BookingParticipantsInfoOneOf, bk as BookingPolicy, e5 as BookingPolicyWithServices, cr as BookingSource, at as BookingStatus, fs as BookingStatusWithLiterals, c_ as BulkActionMetadata, cW as BulkCreateServicesRequest, de as BulkDeleteServicesByFilterRequest, dd as BulkDeleteServicesRequest, cX as BulkServiceResult, d9 as BulkUpdateServicesByFilterRequest, d7 as BulkUpdateServicesRequest, bi as BusinessLocationOptions, ed as BusinessLocations, eJ as BusinessSchedule, bu as CancellationFeePolicy, bp as CancellationPolicy, bv as CancellationWindow, bw as CancellationWindowFeeOneOf, eE as Categories, ew as Category, ev as CategoryNotification, eQ as ChangeContext, eR as ChangeContextPayloadOneOf, aN as CloneErrors, fM as CloneErrorsWithLiterals, eu as CloneServiceRequest, be as CommonAddress, bh as CommonAddressLocation, bf as CommonAddressStreetOneOf, ct as CommonIdentificationData, cu as CommonIdentificationDataIdOneOf, fT as CommonQueryWithEntityContext, fU as CommonSearchWithEntityContext, bg as CommonStreetAddress, aj as CompletionRequirement, fi as CompletionRequirementWithLiterals, bb as Conferencing, e9 as ConnectedService, eO as ConsentPolicy, ck as ContactDetails, ea as CountServicesRequest, eV as CreateAddOnGroupRequest, cR as CreateServiceRequest, cS as CreateServiceResponse, aQ as CrudType, fP as CrudTypeWithLiterals, dk as CursorPaging, dH as CursorPagingMetadata, e4 as CursorQueryPagingMethodOneOf, dq as CursorSearch, dr as CursorSearchPagingMethodOneOf, dn as Cursors, cq as CustomFormField, bj as CustomLocationOptions, ee as CustomLocations, bB as CustomOptions, b4 as CustomPayment, ef as CustomerLocations, bK as DailyConfig, dA as DateHistogramAggregation, dY as DateHistogramResult, d_ as DateHistogramResults, cB as DateTimeRule, aS as DayOfWeek, fR as DayOfWeekWithLiterals, eW as DeleteAddOnGroupRequest, eX as DeleteAddOnGroupResponse, da as DeleteServiceRequest, dc as DeleteServiceResponse, b2 as DepositDetails, b3 as DepositDetailsValueOneOf, er as DisablePricingPlansForServiceRequest, b9 as DiscountInfo, cF as DomainEvent, cG as DomainEventBodyOneOf, c8 as DummyRequest, c9 as DummyResponse, cA as Duration, bH as DurationRange, bI as DurationRangeConfigOneOf, ar as DurationUnitType, fq as DurationUnitTypeWithLiterals, ex as Empty, eo as EnablePricingPlansForServiceRequest, cH as EntityCreatedEvent, cK as EntityDeletedEvent, cJ as EntityUpdatedEvent, aP as Event, f3 as EventMetadata, fO as EventWithLiterals, b_ as ExtendedFields, cV as FieldViolation, ad as FirstChargeDateType, fc as FirstChargeDateTypeWithLiterals, b0 as FixedPayment, cv as FlowControlSettings, aY as Form, e8 as FormDetails, aZ as FormSettings, ac as FrequencyType, fb as FrequencyTypeWithLiterals, b7 as FullUpfrontPayment, eI as GeoCoordinates, d1 as GetServiceAvailabilityConstraintsRequest, d2 as GetServiceAvailabilityConstraintsResponse, c$ as GetServiceRequest, d0 as GetServiceResponse, dE as GroupByAggregation, dF as GroupByAggregationKindOneOf, dZ as GroupByValueResults, bJ as HourlyConfig, ez as HtmlSitePublished, cN as IdentificationData, cO as IdentificationDataIdOneOf, ay as IdentityType, fx as IdentityTypeWithLiterals, dv as IncludeMissingValuesOptions, bC as IntakeFormPolicy, aH as Interval, fG as IntervalWithLiterals, eq as InvalidPricingPlan, aM as InvalidSlugError, fL as InvalidSlugErrorWithLiterals, cY as ItemMetadata, c0 as Keyword, bm as LimitEarlyBookingPolicy, bn as LimitLateBookingPolicy, cQ as LimitRebookingPolicy, eZ as ListAddOnGroupsByServiceIdRequest, eF as Locale, cg as Location, ap as LocationType, af as LocationTypeEnumLocationType, fe as LocationTypeEnumLocationTypeWithLiterals, fo as LocationTypeWithLiterals, d8 as MaskedService, aU as Media, aV as MediaItem, aW as MediaItemItemOneOf, cM as MessageEnvelope, aE as MissingValues, fD as MissingValuesWithLiterals, aJ as Mode, fI as ModeWithLiterals, b1 as Money, en as MoveToNewLocationsOptions, cD as MultiServiceBookingInfo, an as MultiServiceBookingType, fm as MultiServiceBookingTypeWithLiterals, eM as Multilingual, dD as NestedAggregation, dB as NestedAggregationItem, dC as NestedAggregationItemKindOneOf, dL as NestedAggregationResults, dM as NestedAggregationResultsResultOneOf, aG as NestedAggregationType, fF as NestedAggregationTypeWithLiterals, dV as NestedResultValue, dW as NestedResultValueResultOneOf, d$ as NestedResults, dQ as NestedValueAggregationResult, ba as OnlineBooking, eA as Page, dj as Paging, dm as PagingMetadataV2, cw as ParticipantChoices, cs as ParticipantNotification, bs as ParticipantsPolicy, cC as ParticipantsRange, a_ as Payment, b8 as PaymentOptions, a$ as PaymentRateOneOf, au as PaymentStatus, ft as PaymentStatusWithLiterals, ch as PhoneCall, aR as PlacementType, fQ as PlacementTypeWithLiterals, aw as Platform, fv as PlatformWithLiterals, bl as PolicyDescription, ep as PricingPlanSelection, eD as Properties, eS as PropertiesChange, e6 as QueryBookingFormsRequest, eh as QueryCategoriesFilter, eg as QueryCategoriesRequest, ec as QueryLocationsFilter, eb as QueryLocationsRequest, e3 as QueryPoliciesRequest, ei as QueryServicesMultiLanguageRequest, ej as QueryServicesMultiLanguageResponse, df as QueryServicesRequest, dl as QueryServicesResponse, dg as QueryV2, dh as QueryV2PagingMethodOneOf, dy as RangeAggregation, dK as RangeAggregationResult, du as RangeBucket, dS as RangeResult, dO as RangeResults, bA as RankingOptions, ag as RankingOrder, ff as RankingOrderWithLiterals, ab as RateType, fa as RateTypeWithLiterals, bD as RebookingFrequencyPolicy, el as RemovedLocationSessionsAction, em as RemovedLocationSessionsActionActionOptionsOneOf, aK as RequestedFields, fJ as RequestedFieldsWithLiterals, bq as ReschedulePolicy, aT as ResolutionMethod, fS as ResolutionMethodWithLiterals, bW as ResourceDetails, bR as ResourceGroup, bS as ResourceIds, bX as ResourceInfo, ci as ResourceSelection, ao as ResourceTransparency, fn as ResourceTransparencyWithLiterals, bV as ResourceType, bt as ResourcesPolicy, cI as RestoreInfo, dX as Results, bx as SaveCreditCardPolicy, dz as ScalarAggregation, dU as ScalarDateResult, dT as ScalarResult, aF as ScalarType, fE as ScalarTypeWithLiterals, bE as Schedule, dG as SearchDetails, dp as SearchServicesRequest, av as SelectedPaymentOption, fu as SelectedPaymentOptionWithLiterals, aq as SelectionMethod, fp as SelectionMethodWithLiterals, b$ as SeoSchema, d3 as ServiceAvailabilityConstraints, cy as ServiceChoice, cz as ServiceChoiceChoiceOneOf, cx as ServiceChoices, f6 as ServiceQuerySpec, bT as ServiceResource, bU as ServiceResourceSelectionOneOf, f7 as ServiceSearchSpec, aa as ServiceType, f9 as ServiceTypeWithLiterals, f5 as ServicesQueryResult, c7 as ServicesUrlsChanged, f1 as SetAddOnsForGroupRequest, c6 as SetCustomSlugEvent, es as SetCustomSlugRequest, ek as SetServiceLocationsRequest, c2 as Settings, eU as SiteCloned, eT as SiteCreated, eC as SitePropertiesEvent, eB as SitePropertiesNotification, bY as Slug, aD as SortDirection, fC as SortDirectionWithLiterals, aB as SortOrder, fA as SortOrderWithLiterals, aC as SortType, fB as SortTypeWithLiterals, di as Sorting, ah as SortingMethodType, fg as SortingMethodTypeWithLiterals, eL as SpecialHourPeriod, d4 as SplitInterval, bN as StaffMediaItem, bO as StaffMediaItemItemOneOf, bM as StaffMember, bQ as StaffMemberDetails, by as StaffSortingPolicy, bz as StaffSortingPolicyOptionsOneOf, aO as Status, fN as StatusWithLiterals, cn as StreetAddress, cp as Subdivision, b6 as SubscriptionPayment, eN as SupportedLanguage, c1 as Tag, c4 as TaxableAddress, am as TaxableAddressType, fl as TaxableAddressTypeWithLiterals, eK as TimePeriod, ai as Timing, fh as TimingWithLiterals, eP as Translation, bZ as URLs, ak as UnitType, fj as UnitTypeWithLiterals, eY as UpdateAddOnGroupRequest, d5 as UpdateServiceRequest, d6 as UpdateServiceResponse, ey as UserDomainInfoChangedEvent, aX as V2Category, bG as V2Duration, bc as V2Location, bd as V2LocationOptionsOneOf, db as V2ParticipantNotification, c5 as V2PhoneCall, aA as V2RequestedFields, fz as V2RequestedFieldsWithLiterals, eG as V4Address, cT as ValidateServiceRequest, cU as ValidateServiceResponse, et as ValidateSlugRequest, dw as ValueAggregation, dx as ValueAggregationOptionsOneOf, dJ as ValueAggregationResult, dR as ValueResult, dN as ValueResults, as as ValueType, fr as ValueTypeWithLiterals, b5 as VariedPayment, br as WaitlistPolicy, az as WebhookIdentityType, fy as WebhookIdentityTypeWithLiterals, bL as WorkingHours, bP as WorkingHoursLocationCoverage, al as WorkingHoursMode, fk as WorkingHoursModeWithLiterals, f8 as utils } from './bookings-services-v2-service-services.universal-BVF1IIXx.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|