@wix/auto_sdk_bookings_services 1.0.258 → 1.0.260
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-Bp0C3nWc.d.ts → bookings-services-v2-service-services.universal-D9ZXb1ZL.d.ts} +25 -39
- 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 +20 -40
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-Bp0C3nWc.d.mts → bookings-services-v2-service-services.universal-D9ZXb1ZL.d.mts} +25 -39
- 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 +20 -40
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-BVF1IIXx.d.ts → bookings-services-v2-service-services.universal-DbIwZt8t.d.ts} +25 -39
- 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 +20 -40
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-BVF1IIXx.d.mts → bookings-services-v2-service-services.universal-DbIwZt8t.d.mts} +25 -39
- 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 +20 -40
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1243,25 +1243,34 @@ declare enum CompletionRequirement {
|
|
|
1243
1243
|
}
|
|
1244
1244
|
/** @enumType */
|
|
1245
1245
|
type CompletionRequirementWithLiterals = CompletionRequirement | 'OPTIONAL' | 'REQUIRED_BEFORE_BOOKING';
|
|
1246
|
-
/**
|
|
1247
|
-
|
|
1246
|
+
/**
|
|
1247
|
+
* Rule limiting how many times the same customer can book a service within a given period.
|
|
1248
|
+
* The first booking is always allowed; the limit constrains additional bookings.
|
|
1249
|
+
*/
|
|
1250
|
+
interface LimitRebookingPolicy {
|
|
1248
1251
|
/**
|
|
1249
|
-
* Whether
|
|
1252
|
+
* Whether booking-frequency limits are enabled for the service. When `false`, there's no limit on how often a customer can book.
|
|
1250
1253
|
*
|
|
1251
1254
|
* Default: `false`
|
|
1252
1255
|
*/
|
|
1253
1256
|
enabled?: boolean;
|
|
1254
1257
|
/**
|
|
1255
|
-
*
|
|
1258
|
+
* Maximum number of bookings of the same service a single customer can make within `windowInMinutes`.
|
|
1259
|
+
* Only enforced when `enabled` is `true`, and required in that case.
|
|
1256
1260
|
*
|
|
1257
|
-
*
|
|
1261
|
+
* Example: `2` (up to two bookings per window)
|
|
1262
|
+
* Min: `1`
|
|
1263
|
+
* @min 1
|
|
1258
1264
|
*/
|
|
1259
|
-
|
|
1265
|
+
maxBookings?: number | null;
|
|
1260
1266
|
/**
|
|
1261
|
-
*
|
|
1262
|
-
*
|
|
1267
|
+
* Length of the rolling window, in minutes, over which `maxBookings` is counted. Only enforced when `enabled` is `true`.
|
|
1268
|
+
* When enabled and left unset, the limit applies over all time (a lifetime cap) — e.g. `maxBookings = 1` with no window blocks rebooking permanently.
|
|
1269
|
+
*
|
|
1270
|
+
* Examples: `1440` (1 day), `10080` (7 days), `43200` (30 days)
|
|
1271
|
+
* @min 1
|
|
1263
1272
|
*/
|
|
1264
|
-
|
|
1273
|
+
windowInMinutes?: number | null;
|
|
1265
1274
|
}
|
|
1266
1275
|
interface Schedule {
|
|
1267
1276
|
/**
|
|
@@ -2964,35 +2973,6 @@ interface AccountInfo {
|
|
|
2964
2973
|
*/
|
|
2965
2974
|
siteId?: string | null;
|
|
2966
2975
|
}
|
|
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
|
-
}
|
|
2996
2976
|
interface CreateServiceRequest {
|
|
2997
2977
|
/** Service to create. */
|
|
2998
2978
|
service: Service;
|
|
@@ -5209,6 +5189,8 @@ interface ServiceCreatedEnvelope {
|
|
|
5209
5189
|
* @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
|
|
5210
5190
|
* @permissionScope Read Bookings - Including Participants
|
|
5211
5191
|
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
|
|
5192
|
+
* @permissionScope Manage Invoices
|
|
5193
|
+
* @permissionScopeId SCOPE.INVOICES.MANAGE
|
|
5212
5194
|
* @permissionScope Read Bookings - all read permissions
|
|
5213
5195
|
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
|
|
5214
5196
|
* @permissionScope Manage Bookings - all permissions
|
|
@@ -5241,6 +5223,8 @@ interface ServiceDeletedEnvelope {
|
|
|
5241
5223
|
* @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
|
|
5242
5224
|
* @permissionScope Read Bookings - Including Participants
|
|
5243
5225
|
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
|
|
5226
|
+
* @permissionScope Manage Invoices
|
|
5227
|
+
* @permissionScopeId SCOPE.INVOICES.MANAGE
|
|
5244
5228
|
* @permissionScope Read Bookings - all read permissions
|
|
5245
5229
|
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
|
|
5246
5230
|
* @permissionScope Manage Bookings - all permissions
|
|
@@ -5275,6 +5259,8 @@ interface ServiceUpdatedEnvelope {
|
|
|
5275
5259
|
* @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
|
|
5276
5260
|
* @permissionScope Read Bookings - Including Participants
|
|
5277
5261
|
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
|
|
5262
|
+
* @permissionScope Manage Invoices
|
|
5263
|
+
* @permissionScopeId SCOPE.INVOICES.MANAGE
|
|
5278
5264
|
* @permissionScope Read Bookings - all read permissions
|
|
5279
5265
|
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
|
|
5280
5266
|
* @permissionScope Manage Bookings - all permissions
|
|
@@ -6783,4 +6769,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6783
6769
|
addOnIds: string[] | null;
|
|
6784
6770
|
}
|
|
6785
6771
|
|
|
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 };
|
|
6772
|
+
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 LimitRebookingPolicy 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 GetServiceResponse 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 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 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 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 };
|
|
@@ -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 { cP 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-DbIwZt8t.js';
|
|
3
|
+
export { cP as AccountInfo, f3 as AccountInfoMetadata, aL as Action, cL as ActionEvent, fJ as ActionWithLiterals, ax as Actor, fv as ActorWithLiterals, eZ as AddOn, e_ as AddOnAddOnInfoOneOf, c3 as AddOnDetails, e$ as AddOnGroupDetail, ae as AddOnPaymentOptions, fc as AddOnPaymentOptionsWithLiterals, cl as Address, eG as AddressHint, co as AddressLocation, cm 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, bF as AvailabilityConstraints, f1 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, e6 as BookingForm, cb as BookingParticipantsInfoOneOf, bk as BookingPolicy, e4 as BookingPolicyWithServices, cr 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, bi as BusinessLocationOptions, ec as BusinessLocations, eI as BusinessSchedule, bu as CancellationFeePolicy, bp as CancellationPolicy, bv as CancellationWindow, bw 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, be as CommonAddress, bh as CommonAddressLocation, bf as CommonAddressStreetOneOf, ct as CommonIdentificationData, cu as CommonIdentificationDataIdOneOf, fS as CommonQueryWithEntityContext, fT as CommonSearchWithEntityContext, bg as CommonStreetAddress, aj as CompletionRequirement, fh as CompletionRequirementWithLiterals, bb as Conferencing, e8 as ConnectedService, eN as ConsentPolicy, ck 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, cq as CustomFormField, bj as CustomLocationOptions, ed as CustomLocations, bB as CustomOptions, b4 as CustomPayment, ee as CustomerLocations, bK as DailyConfig, dz as DateHistogramAggregation, dX as DateHistogramResult, dZ as DateHistogramResults, cB as DateTimeRule, aS as DayOfWeek, fQ as DayOfWeekWithLiterals, eV as DeleteAddOnGroupRequest, eW as DeleteAddOnGroupResponse, d9 as DeleteServiceRequest, db as DeleteServiceResponse, b2 as DepositDetails, b3 as DepositDetailsValueOneOf, eq 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, fp as DurationUnitTypeWithLiterals, ew as Empty, en as EnablePricingPlansForServiceRequest, cH as EntityCreatedEvent, cK as EntityDeletedEvent, cJ as EntityUpdatedEvent, aP as Event, f2 as EventMetadata, fN as EventWithLiterals, b_ as ExtendedFields, cU as FieldViolation, ad as FirstChargeDateType, fb as FirstChargeDateTypeWithLiterals, b0 as FixedPayment, cv as FlowControlSettings, aY as Form, e7 as FormDetails, aZ as FormSettings, ac as FrequencyType, fa as FrequencyTypeWithLiterals, b7 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, bJ as HourlyConfig, ey as HtmlSitePublished, cN as IdentificationData, cO as IdentificationDataIdOneOf, ay as IdentityType, fw as IdentityTypeWithLiterals, du as IncludeMissingValuesOptions, bC as IntakeFormPolicy, aH as Interval, fF as IntervalWithLiterals, ep as InvalidPricingPlan, aM as InvalidSlugError, fK as InvalidSlugErrorWithLiterals, cX as ItemMetadata, c0 as Keyword, bm as LimitEarlyBookingPolicy, bn as LimitLateBookingPolicy, bD as LimitRebookingPolicy, eY as ListAddOnGroupsByServiceIdRequest, eE as Locale, cg 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, cM as MessageEnvelope, aE as MissingValues, fC as MissingValuesWithLiterals, aJ as Mode, fH as ModeWithLiterals, b1 as Money, em as MoveToNewLocationsOptions, cD 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, ba as OnlineBooking, ez as Page, di as Paging, dl 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, fs as PaymentStatusWithLiterals, ch as PhoneCall, aR as PlacementType, fP as PlacementTypeWithLiterals, aw as Platform, fu as PlatformWithLiterals, bl 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, bA as RankingOptions, ag as RankingOrder, fe as RankingOrderWithLiterals, ab as RateType, f9 as RateTypeWithLiterals, ek as RemovedLocationSessionsAction, el as RemovedLocationSessionsActionActionOptionsOneOf, aK as RequestedFields, fI as RequestedFieldsWithLiterals, bq as ReschedulePolicy, aT as ResolutionMethod, fR as ResolutionMethodWithLiterals, bW as ResourceDetails, bR as ResourceGroup, bS as ResourceIds, bX as ResourceInfo, ci as ResourceSelection, ao as ResourceTransparency, fm as ResourceTransparencyWithLiterals, bV as ResourceType, bt as ResourcesPolicy, cI as RestoreInfo, dW as Results, bx as SaveCreditCardPolicy, dy as ScalarAggregation, dT as ScalarDateResult, dS as ScalarResult, aF as ScalarType, fD as ScalarTypeWithLiterals, bE as Schedule, dF as SearchDetails, dn as SearchServicesRequest, av as SelectedPaymentOption, ft as SelectedPaymentOptionWithLiterals, aq as SelectionMethod, fo as SelectionMethodWithLiterals, b$ as SeoSchema, d2 as ServiceAvailabilityConstraints, cy as ServiceChoice, cz as ServiceChoiceChoiceOneOf, cx as ServiceChoices, f5 as ServiceQuerySpec, bT as ServiceResource, bU as ServiceResourceSelectionOneOf, f6 as ServiceSearchSpec, aa as ServiceType, f8 as ServiceTypeWithLiterals, f4 as ServicesQueryResult, c7 as ServicesUrlsChanged, f0 as SetAddOnsForGroupRequest, c6 as SetCustomSlugEvent, er as SetCustomSlugRequest, ej as SetServiceLocationsRequest, c2 as Settings, eT as SiteCloned, eS as SiteCreated, eB as SitePropertiesEvent, eA as SitePropertiesNotification, bY 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, bN as StaffMediaItem, bO as StaffMediaItemItemOneOf, bM as StaffMember, bQ as StaffMemberDetails, by as StaffSortingPolicy, bz as StaffSortingPolicyOptionsOneOf, aO as Status, fM as StatusWithLiterals, cn as StreetAddress, cp as Subdivision, b6 as SubscriptionPayment, eM as SupportedLanguage, c1 as Tag, c4 as TaxableAddress, am as TaxableAddressType, fk as TaxableAddressTypeWithLiterals, eJ as TimePeriod, ai as Timing, fg as TimingWithLiterals, eO as Translation, bZ as URLs, ak as UnitType, fi as UnitTypeWithLiterals, eX as UpdateAddOnGroupRequest, d4 as UpdateServiceRequest, d5 as UpdateServiceResponse, ex as UserDomainInfoChangedEvent, aX as V2Category, bG as V2Duration, bc as V2Location, bd as V2LocationOptionsOneOf, da as V2ParticipantNotification, c5 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, b5 as VariedPayment, br as WaitlistPolicy, az as WebhookIdentityType, fx as WebhookIdentityTypeWithLiterals, bL as WorkingHours, bP as WorkingHoursLocationCoverage, al as WorkingHoursMode, fj as WorkingHoursModeWithLiterals, f7 as utils } from './bookings-services-v2-service-services.universal-DbIwZt8t.js';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|