@wix/auto_sdk_bookings_services 1.0.217 → 1.0.219
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/{internal/cjs/bookings-services-v2-service-services.universal-qEiVExkH.d.ts → cjs/bookings-services-v2-service-services.universal-BgThyBUH.d.ts} +69 -28
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +10 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +10 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +70 -2
- package/build/cjs/meta.js +10 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/{internal/es/bookings-services-v2-service-services.universal-qEiVExkH.d.mts → es/bookings-services-v2-service-services.universal-BgThyBUH.d.mts} +69 -28
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +8 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +8 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +70 -2
- package/build/es/meta.mjs +8 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/{cjs/bookings-services-v2-service-services.universal-B6tPfCd0.d.ts → internal/cjs/bookings-services-v2-service-services.universal-XLSTzYV_.d.ts} +96 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +10 -0
- 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 +10 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +70 -2
- package/build/internal/cjs/meta.js +10 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/{es/bookings-services-v2-service-services.universal-B6tPfCd0.d.mts → internal/es/bookings-services-v2-service-services.universal-XLSTzYV_.d.mts} +96 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +8 -0
- 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 +8 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +70 -2
- package/build/internal/es/meta.mjs +8 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -254,13 +254,6 @@ interface Payment extends PaymentRateOneOf {
|
|
|
254
254
|
* Required when: `rateType` is `VARIED`
|
|
255
255
|
*/
|
|
256
256
|
varied?: VariedPayment;
|
|
257
|
-
/**
|
|
258
|
-
* The details for the subscription pricing of the service.
|
|
259
|
-
*
|
|
260
|
-
* Required when: `rateType` is `SUBSCRIPTION`
|
|
261
|
-
* @internal
|
|
262
|
-
*/
|
|
263
|
-
subscription?: SubscriptionPayment;
|
|
264
257
|
/** The rate the customer is expected to pay for the service. */
|
|
265
258
|
rateType?: RateTypeWithLiterals;
|
|
266
259
|
/** The payment options a customer can use to pay for the service. */
|
|
@@ -278,19 +271,6 @@ interface Payment extends PaymentRateOneOf {
|
|
|
278
271
|
* If customers pay for the booking using any method other than a pricing plan, the value of this field is ignored.
|
|
279
272
|
*/
|
|
280
273
|
addOnOption?: AddOnPaymentOptionsWithLiterals;
|
|
281
|
-
/**
|
|
282
|
-
* Estimated discount information for the service based on active [eCommerce discounts](https://dev.wix.com/docs/rest/business-solutions/e-commerce/extensions/discounts/introduction).
|
|
283
|
-
* The final discount is determined during eCommerce checkout and may differ from the estimate,
|
|
284
|
-
* for example when discounts depend on cart totals.
|
|
285
|
-
*
|
|
286
|
-
* A discount is considered active when its start time has passed and its end time hasn't.
|
|
287
|
-
* If multiple active discounts apply, the most recently created one is returned.
|
|
288
|
-
*
|
|
289
|
-
* Returned only when `DISCOUNT_INFO_DETAILS` is requested.
|
|
290
|
-
* @internal
|
|
291
|
-
* @readonly
|
|
292
|
-
*/
|
|
293
|
-
discountInfo?: DiscountInfo;
|
|
294
274
|
}
|
|
295
275
|
/** @oneof */
|
|
296
276
|
interface PaymentRateOneOf {
|
|
@@ -313,13 +293,6 @@ interface PaymentRateOneOf {
|
|
|
313
293
|
* Required when: `rateType` is `VARIED`
|
|
314
294
|
*/
|
|
315
295
|
varied?: VariedPayment;
|
|
316
|
-
/**
|
|
317
|
-
* The details for the subscription pricing of the service.
|
|
318
|
-
*
|
|
319
|
-
* Required when: `rateType` is `SUBSCRIPTION`
|
|
320
|
-
* @internal
|
|
321
|
-
*/
|
|
322
|
-
subscription?: SubscriptionPayment;
|
|
323
296
|
}
|
|
324
297
|
declare enum RateType {
|
|
325
298
|
/** The service has a fixed price. */
|
|
@@ -1214,6 +1187,69 @@ interface V2Duration {
|
|
|
1214
1187
|
*/
|
|
1215
1188
|
minutes?: number;
|
|
1216
1189
|
}
|
|
1190
|
+
/** Duration range configuration for a service. */
|
|
1191
|
+
interface DurationRange extends DurationRangeConfigOneOf {
|
|
1192
|
+
/** Configuration for hourly duration. Set when `unit_type` is `HOUR`. */
|
|
1193
|
+
hourOptions?: HourlyConfig;
|
|
1194
|
+
/** Configuration for daily duration. Set when `unit_type` is `DAY`. */
|
|
1195
|
+
dayOptions?: DailyConfig;
|
|
1196
|
+
/** The unit type for this duration range. */
|
|
1197
|
+
unitType?: UnitTypeWithLiterals;
|
|
1198
|
+
}
|
|
1199
|
+
/** @oneof */
|
|
1200
|
+
interface DurationRangeConfigOneOf {
|
|
1201
|
+
/** Configuration for hourly duration. Set when `unit_type` is `HOUR`. */
|
|
1202
|
+
hourOptions?: HourlyConfig;
|
|
1203
|
+
/** Configuration for daily duration. Set when `unit_type` is `DAY`. */
|
|
1204
|
+
dayOptions?: DailyConfig;
|
|
1205
|
+
}
|
|
1206
|
+
/** The booking unit for the duration range. */
|
|
1207
|
+
declare enum V2UnitType {
|
|
1208
|
+
}
|
|
1209
|
+
/** @enumType */
|
|
1210
|
+
type V2UnitTypeWithLiterals = V2UnitType;
|
|
1211
|
+
/** Hourly duration configuration. Values are in minutes. */
|
|
1212
|
+
interface HourlyConfig {
|
|
1213
|
+
/**
|
|
1214
|
+
* Minimum bookable duration in minutes.
|
|
1215
|
+
*
|
|
1216
|
+
* Min: `30` minutes
|
|
1217
|
+
* Max: `4320` minutes (72 hours)
|
|
1218
|
+
* @min 30
|
|
1219
|
+
* @max 4320
|
|
1220
|
+
*/
|
|
1221
|
+
minDurationInMinutes?: number;
|
|
1222
|
+
/**
|
|
1223
|
+
* Maximum bookable duration in minutes.
|
|
1224
|
+
*
|
|
1225
|
+
* Min: `30` minutes
|
|
1226
|
+
* Max: `4320` minutes (72 hours)
|
|
1227
|
+
* @min 30
|
|
1228
|
+
* @max 4320
|
|
1229
|
+
*/
|
|
1230
|
+
maxDurationInMinutes?: number;
|
|
1231
|
+
}
|
|
1232
|
+
/** Daily duration configuration. Values are in days. */
|
|
1233
|
+
interface DailyConfig {
|
|
1234
|
+
/**
|
|
1235
|
+
* Minimum bookable duration in days.
|
|
1236
|
+
*
|
|
1237
|
+
* Min: `1` day
|
|
1238
|
+
* Max: `8` days
|
|
1239
|
+
* @min 1
|
|
1240
|
+
* @max 8
|
|
1241
|
+
*/
|
|
1242
|
+
minDurationInDays?: number;
|
|
1243
|
+
/**
|
|
1244
|
+
* Maximum bookable duration in days.
|
|
1245
|
+
*
|
|
1246
|
+
* Min: `1` day
|
|
1247
|
+
* Max: `8` days
|
|
1248
|
+
* @min 1
|
|
1249
|
+
* @max 8
|
|
1250
|
+
*/
|
|
1251
|
+
maxDurationInDays?: number;
|
|
1252
|
+
}
|
|
1217
1253
|
interface StaffMember {
|
|
1218
1254
|
/**
|
|
1219
1255
|
* ID of the [resource](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) associated with the staff member providing the service.
|
|
@@ -2546,6 +2582,11 @@ interface AccountInfo {
|
|
|
2546
2582
|
*/
|
|
2547
2583
|
siteId?: string | null;
|
|
2548
2584
|
}
|
|
2585
|
+
/** The booking unit for the duration range. */
|
|
2586
|
+
declare enum UnitType {
|
|
2587
|
+
}
|
|
2588
|
+
/** @enumType */
|
|
2589
|
+
type UnitTypeWithLiterals = UnitType;
|
|
2549
2590
|
interface CreateServiceRequest {
|
|
2550
2591
|
/** Service to create. */
|
|
2551
2592
|
service: Service;
|
|
@@ -6318,4 +6359,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6318
6359
|
addOnIds: string[] | null;
|
|
6319
6360
|
}
|
|
6320
6361
|
|
|
6321
|
-
export { type SetAddOnsForGroupResponse 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 SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type DeleteAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupApplicationErrors as R, type Service as S, type UpdateAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupResponse as W, type UpdateAddOnGroupApplicationErrors as X, type ListAddOnGroupsByServiceIdOptions as Y, type ListAddOnGroupsByServiceIdResponse as Z, type SetAddOnsForGroupOptions as _, type BulkCreateServicesResponse as a, type CustomPayment as a$, type SetAddOnsForGroupApplicationErrors as a0, type ServiceCreatedEnvelope as a1, type ServiceDeletedEnvelope as a2, type ServiceUpdatedEnvelope as a3, type ServiceQuery as a4, type QueryServicesOptions as a5, typedQueryServices as a6, type ServicesQueryBuilder as a7, ServiceType as a8, RateType as a9, ScalarType as aA, NestedAggregationType as aB, Interval as aC, AggregationType as aD, Mode as aE, RequestedFields as aF, Action as aG, InvalidSlugError as aH, CloneErrors as aI, Status as aJ, CategoryNotificationEvent as aK, BenefitType as aL, Event as aM, CrudType as aN, PlacementType as aO, DayOfWeek as aP, ResolutionMethod as aQ, type Media as aR, type MediaItem as aS, type MediaItemItemOneOf as aT, type V2Category as aU, type Form as aV, type FormSettings as aW, type Payment as aX, type PaymentRateOneOf as aY, type FixedPayment as aZ, type Money as a_, FrequencyType as aa, FirstChargeDateType as ab, AddOnPaymentOptions as ac, LocationTypeEnumLocationType as ad, RankingOrder as ae, SortingMethodType as af, Timing as ag, CompletionRequirement as ah, TaxableAddressType as ai, MultiServiceBookingType as aj, ResourceTransparency as ak, LocationType as al, SelectionMethod as am, ValueType as an, BookingStatus as ao, PaymentStatus as ap, SelectedPaymentOption as aq, Platform as ar, Actor as as, IdentityType as at, WebhookIdentityType as au, V2RequestedFields as av, SortOrder as aw, SortType as ax, SortDirection as ay, MissingValues as az, type UpdateServiceValidationErrors as b, type BookedEntityItemOneOf as b$, type VariedPayment as b0, type SubscriptionPayment as b1, type FullUpfrontPayment as b2, type PaymentOptions as b3, type DiscountInfo as b4, type OnlineBooking as b5, type Conferencing as b6, type V2Location as b7, type V2LocationOptionsOneOf as b8, type CommonAddress as b9, type V2Duration as bA, type StaffMember as bB, type StaffMediaItem as bC, type StaffMediaItemItemOneOf as bD, type StaffMemberDetails as bE, type ResourceGroup as bF, type ResourceIds as bG, type ServiceResource as bH, type ServiceResourceSelectionOneOf as bI, type ResourceType as bJ, type Slug as bK, type URLs as bL, type ExtendedFields as bM, type SeoSchema as bN, type Keyword as bO, type Tag as bP, type Settings as bQ, type AddOnDetails as bR, type TaxableAddress as bS, type V2PhoneCall as bT, type SetCustomSlugEvent as bU, type ServicesUrlsChanged as bV, type DummyRequest as bW, type DummyResponse as bX, type Booking as bY, type BookingParticipantsInfoOneOf as bZ, type BookedEntity as b_, type CommonAddressStreetOneOf as ba, type CommonStreetAddress as bb, type CommonAddressLocation as bc, type BusinessLocationOptions as bd, type CustomLocationOptions as be, type BookingPolicy as bf, type PolicyDescription as bg, type LimitEarlyBookingPolicy as bh, type LimitLateBookingPolicy as bi, type BookAfterStartPolicy as bj, type CancellationPolicy as bk, type ReschedulePolicy as bl, type WaitlistPolicy as bm, type ParticipantsPolicy as bn, type ResourcesPolicy as bo, type CancellationFeePolicy as bp, type CancellationWindow as bq, type CancellationWindowFeeOneOf as br, type SaveCreditCardPolicy as bs, type StaffSortingPolicy as bt, type StaffSortingPolicyOptionsOneOf as bu, type RankingOptions as bv, type CustomOptions as bw, type IntakeFormPolicy as bx, type Schedule as by, type AvailabilityConstraints as bz, type BulkUpdateServicesOptions as c, type QueryV2 as c$, type BookedSlot as c0, type BookedResource as c1, type Location as c2, type PhoneCall as c3, type ResourceSelection as c4, type BookedSchedule as c5, type ContactDetails as c6, type Address as c7, type AddressStreetOneOf as c8, type StreetAddress as c9, type CreateServiceRequest as cA, type CreateServiceResponse as cB, type ValidateServiceRequest as cC, type ValidateServiceResponse as cD, type FieldViolation as cE, type BulkCreateServicesRequest as cF, type BulkServiceResult as cG, type ItemMetadata as cH, type ApplicationError as cI, type BulkActionMetadata as cJ, type GetServiceRequest as cK, type GetServiceResponse as cL, type GetServiceAvailabilityConstraintsRequest as cM, type GetServiceAvailabilityConstraintsResponse as cN, type ServiceAvailabilityConstraints as cO, type SplitInterval as cP, type UpdateServiceRequest as cQ, type UpdateServiceResponse as cR, type BulkUpdateServicesRequest as cS, type MaskedService as cT, type BulkUpdateServicesByFilterRequest as cU, type DeleteServiceRequest as cV, type V2ParticipantNotification as cW, type DeleteServiceResponse as cX, type BulkDeleteServicesRequest as cY, type BulkDeleteServicesByFilterRequest as cZ, type QueryServicesRequest as c_, type AddressLocation as ca, type Subdivision as cb, type CustomFormField as cc, type BookingSource as cd, type ParticipantNotification as ce, type CommonIdentificationData as cf, type CommonIdentificationDataIdOneOf as cg, type FlowControlSettings as ch, type ParticipantChoices as ci, type ServiceChoices as cj, type ServiceChoice as ck, type ServiceChoiceChoiceOneOf as cl, type Duration as cm, type MultiServiceBookingInfo as cn, type BookedAddOn as co, type DomainEvent as cp, type DomainEventBodyOneOf as cq, type EntityCreatedEvent as cr, type RestoreInfo as cs, type EntityUpdatedEvent as ct, type EntityDeletedEvent as cu, type ActionEvent as cv, type MessageEnvelope as cw, type IdentificationData as cx, type IdentificationDataIdOneOf as cy, type AccountInfo as cz, type BulkUpdateServicesResponse as d, type QueryCategoriesRequest as d$, type QueryV2PagingMethodOneOf as d0, type Sorting as d1, type Paging as d2, type CursorPaging as d3, type QueryServicesResponse as d4, type PagingMetadataV2 as d5, type Cursors as d6, type SearchServicesRequest as d7, type CursorSearch as d8, type CursorSearchPagingMethodOneOf as d9, type ValueResult as dA, type RangeResult as dB, type ScalarResult as dC, type ScalarDateResult as dD, type NestedResultValue as dE, type NestedResultValueResultOneOf as dF, type Results as dG, type DateHistogramResult as dH, type GroupByValueResults as dI, type DateHistogramResults as dJ, type NestedResults as dK, type AggregationResultsScalarDateResult as dL, type AggregationResults as dM, type AggregationResultsResultOneOf as dN, type QueryPoliciesRequest as dO, type CursorQueryPagingMethodOneOf as dP, type BookingPolicyWithServices as dQ, type QueryBookingFormsRequest as dR, type BookingForm as dS, type FormDetails as dT, type ConnectedService as dU, type CountServicesRequest as dV, type QueryLocationsRequest as dW, type QueryLocationsFilter as dX, type BusinessLocations as dY, type CustomLocations as dZ, type CustomerLocations as d_, type Aggregation as da, type AggregationKindOneOf as db, type RangeBucket as dc, type IncludeMissingValuesOptions as dd, type ValueAggregation as de, type ValueAggregationOptionsOneOf as df, type RangeAggregation as dg, type ScalarAggregation as dh, type DateHistogramAggregation as di, type NestedAggregationItem as dj, type NestedAggregationItemKindOneOf as dk, type NestedAggregation as dl, type GroupByAggregation as dm, type GroupByAggregationKindOneOf as dn, type SearchDetails as dp, type CursorPagingMetadata as dq, type AggregationData as dr, type ValueAggregationResult as ds, type RangeAggregationResult as dt, type NestedAggregationResults as du, type NestedAggregationResultsResultOneOf as dv, type ValueResults as dw, type RangeResults as dx, type AggregationResultsScalarResult as dy, type NestedValueAggregationResult as dz, type BulkUpdateServicesByFilterOptions as e, type ServiceTypeWithLiterals as e$, type QueryCategoriesFilter as e0, type QueryServicesMultiLanguageRequest as e1, type QueryServicesMultiLanguageResponse as e2, type SetServiceLocationsRequest as e3, type RemovedLocationSessionsAction as e4, type RemovedLocationSessionsActionActionOptionsOneOf as e5, type MoveToNewLocationsOptions as e6, type EnablePricingPlansForServiceRequest as e7, type PricingPlanSelection as e8, type InvalidPricingPlan as e9, type TimePeriod as eA, type SpecialHourPeriod as eB, type Multilingual as eC, type SupportedLanguage as eD, type ConsentPolicy as eE, type Translation as eF, type ChangeContext as eG, type ChangeContextPayloadOneOf as eH, type PropertiesChange as eI, type SiteCreated as eJ, type SiteCloned as eK, type CreateAddOnGroupRequest as eL, type DeleteAddOnGroupRequest as eM, type DeleteAddOnGroupResponse as eN, type UpdateAddOnGroupRequest as eO, type ListAddOnGroupsByServiceIdRequest as eP, type AddOn as eQ, type AddOnAddOnInfoOneOf as eR, type AddOnGroupDetail as eS, type SetAddOnsForGroupRequest as eT, type BaseEventMetadata as eU, type EventMetadata as eV, type AccountInfoMetadata as eW, type ServicesQueryResult as eX, type ServiceQuerySpec as eY, type ServiceSearchSpec as eZ, utils as e_, type DisablePricingPlansForServiceRequest as ea, type SetCustomSlugRequest as eb, type ValidateSlugRequest as ec, type CloneServiceRequest as ed, type CategoryNotification as ee, type Category as ef, type Empty as eg, type BenefitNotification as eh, type Benefit as ei, type EntryPass as ej, type Discount as ek, type DiscountDiscountOneOf as el, type Behavior as em, type BehaviorBehaviorOneOf as en, type UserDomainInfoChangedEvent as eo, type HtmlSitePublished as ep, type Page as eq, type SitePropertiesNotification as er, type SitePropertiesEvent as es, type Properties as et, type Categories as eu, type Locale as ev, type V4Address as ew, type AddressHint as ex, type GeoCoordinates as ey, type BusinessSchedule as ez, type BulkUpdateServicesByFilterResponse as f, queryCategories as f$, type RateTypeWithLiterals as f0, type FrequencyTypeWithLiterals as f1, type FirstChargeDateTypeWithLiterals as f2, type AddOnPaymentOptionsWithLiterals as f3, type LocationTypeEnumLocationTypeWithLiterals as f4, type RankingOrderWithLiterals as f5, type SortingMethodTypeWithLiterals as f6, type TimingWithLiterals as f7, type CompletionRequirementWithLiterals as f8, type TaxableAddressTypeWithLiterals as f9, type StatusWithLiterals as fA, type CategoryNotificationEventWithLiterals as fB, type BenefitTypeWithLiterals as fC, type EventWithLiterals as fD, type CrudTypeWithLiterals as fE, type PlacementTypeWithLiterals as fF, type DayOfWeekWithLiterals as fG, type ResolutionMethodWithLiterals as fH, type CommonQueryWithEntityContext as fI, type CommonSearchWithEntityContext as fJ, onServiceCreated as fK, onServiceDeleted as fL, onServiceUpdated as fM, createService as fN, bulkCreateServices as fO, getService as fP, updateService as fQ, bulkUpdateServices as fR, bulkUpdateServicesByFilter as fS, deleteService as fT, bulkDeleteServices as fU, bulkDeleteServicesByFilter as fV, queryServices as fW, queryPolicies as fX, queryBookingForms as fY, countServices as fZ, queryLocations as f_, type MultiServiceBookingTypeWithLiterals as fa, type ResourceTransparencyWithLiterals as fb, type LocationTypeWithLiterals as fc, type SelectionMethodWithLiterals as fd, type ValueTypeWithLiterals as fe, type BookingStatusWithLiterals as ff, type PaymentStatusWithLiterals as fg, type SelectedPaymentOptionWithLiterals as fh, type PlatformWithLiterals as fi, type ActorWithLiterals as fj, type IdentityTypeWithLiterals as fk, type WebhookIdentityTypeWithLiterals as fl, type V2RequestedFieldsWithLiterals as fm, type SortOrderWithLiterals as fn, type SortTypeWithLiterals as fo, type SortDirectionWithLiterals as fp, type MissingValuesWithLiterals as fq, type ScalarTypeWithLiterals as fr, type NestedAggregationTypeWithLiterals as fs, type IntervalWithLiterals as ft, type AggregationTypeWithLiterals as fu, type ModeWithLiterals as fv, type RequestedFieldsWithLiterals as fw, type ActionWithLiterals as fx, type InvalidSlugErrorWithLiterals as fy, type CloneErrorsWithLiterals as fz, type BulkDeleteServicesOptions as g, setServiceLocations as g0, enablePricingPlansForService as g1, disablePricingPlansForService as g2, setCustomSlug as g3, validateSlug as g4, cloneService as g5, createAddOnGroup as g6, deleteAddOnGroup as g7, updateAddOnGroup as g8, listAddOnGroupsByServiceId as g9, setAddOnsForGroup as ga, 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 };
|
|
6362
|
+
export { type SetAddOnsForGroupResponse 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 SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type DeleteAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupApplicationErrors as R, type Service as S, type UpdateAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupResponse as W, type UpdateAddOnGroupApplicationErrors as X, type ListAddOnGroupsByServiceIdOptions as Y, type ListAddOnGroupsByServiceIdResponse as Z, type SetAddOnsForGroupOptions as _, type BulkCreateServicesResponse as a, type FixedPayment as a$, type SetAddOnsForGroupApplicationErrors as a0, type ServiceCreatedEnvelope as a1, type ServiceDeletedEnvelope as a2, type ServiceUpdatedEnvelope as a3, type ServiceQuery as a4, type QueryServicesOptions as a5, typedQueryServices as a6, type ServicesQueryBuilder as a7, ServiceType as a8, RateType as a9, SortDirection as aA, MissingValues as aB, ScalarType as aC, NestedAggregationType as aD, Interval as aE, AggregationType as aF, Mode as aG, RequestedFields as aH, Action as aI, InvalidSlugError as aJ, CloneErrors as aK, Status as aL, CategoryNotificationEvent as aM, BenefitType as aN, Event as aO, CrudType as aP, PlacementType as aQ, DayOfWeek as aR, ResolutionMethod as aS, type Media as aT, type MediaItem as aU, type MediaItemItemOneOf as aV, type V2Category as aW, type Form as aX, type FormSettings as aY, type Payment as aZ, type PaymentRateOneOf as a_, FrequencyType as aa, FirstChargeDateType as ab, AddOnPaymentOptions as ac, LocationTypeEnumLocationType as ad, RankingOrder as ae, SortingMethodType as af, Timing as ag, CompletionRequirement as ah, V2UnitType as ai, TaxableAddressType as aj, MultiServiceBookingType as ak, ResourceTransparency as al, LocationType as am, SelectionMethod as an, ValueType as ao, BookingStatus as ap, PaymentStatus as aq, SelectedPaymentOption as ar, Platform as as, Actor as at, IdentityType as au, WebhookIdentityType as av, UnitType as aw, V2RequestedFields as ax, SortOrder as ay, SortType as az, type UpdateServiceValidationErrors as b, type ServicesUrlsChanged as b$, type Money as b0, type CustomPayment as b1, type VariedPayment as b2, type SubscriptionPayment as b3, type FullUpfrontPayment as b4, type PaymentOptions as b5, type DiscountInfo as b6, type OnlineBooking as b7, type Conferencing as b8, type V2Location as b9, type Schedule as bA, type AvailabilityConstraints as bB, type V2Duration as bC, type DurationRange as bD, type DurationRangeConfigOneOf as bE, type HourlyConfig as bF, type DailyConfig as bG, type StaffMember as bH, type StaffMediaItem as bI, type StaffMediaItemItemOneOf as bJ, type StaffMemberDetails as bK, type ResourceGroup as bL, type ResourceIds as bM, type ServiceResource as bN, type ServiceResourceSelectionOneOf as bO, type ResourceType as bP, type Slug as bQ, type URLs as bR, type ExtendedFields as bS, type SeoSchema as bT, type Keyword as bU, type Tag as bV, type Settings as bW, type AddOnDetails as bX, type TaxableAddress as bY, type V2PhoneCall as bZ, type SetCustomSlugEvent as b_, type V2LocationOptionsOneOf as ba, type CommonAddress as bb, type CommonAddressStreetOneOf as bc, type CommonStreetAddress as bd, type CommonAddressLocation as be, type BusinessLocationOptions as bf, type CustomLocationOptions as bg, type BookingPolicy as bh, type PolicyDescription as bi, type LimitEarlyBookingPolicy as bj, type LimitLateBookingPolicy as bk, type BookAfterStartPolicy as bl, type CancellationPolicy as bm, type ReschedulePolicy as bn, type WaitlistPolicy as bo, type ParticipantsPolicy as bp, type ResourcesPolicy as bq, type CancellationFeePolicy as br, type CancellationWindow as bs, type CancellationWindowFeeOneOf as bt, type SaveCreditCardPolicy as bu, type StaffSortingPolicy as bv, type StaffSortingPolicyOptionsOneOf as bw, type RankingOptions as bx, type CustomOptions as by, type IntakeFormPolicy as bz, type BulkUpdateServicesOptions as c, type DeleteServiceRequest as c$, type DummyRequest as c0, type DummyResponse as c1, type Booking as c2, type BookingParticipantsInfoOneOf as c3, type BookedEntity as c4, type BookedEntityItemOneOf as c5, type BookedSlot as c6, type BookedResource as c7, type Location as c8, type PhoneCall as c9, type EntityDeletedEvent as cA, type ActionEvent as cB, type MessageEnvelope as cC, type IdentificationData as cD, type IdentificationDataIdOneOf as cE, type AccountInfo as cF, type CreateServiceRequest as cG, type CreateServiceResponse as cH, type ValidateServiceRequest as cI, type ValidateServiceResponse as cJ, type FieldViolation as cK, type BulkCreateServicesRequest as cL, type BulkServiceResult as cM, type ItemMetadata as cN, type ApplicationError as cO, type BulkActionMetadata as cP, type GetServiceRequest as cQ, type GetServiceResponse as cR, type GetServiceAvailabilityConstraintsRequest as cS, type GetServiceAvailabilityConstraintsResponse as cT, type ServiceAvailabilityConstraints as cU, type SplitInterval as cV, type UpdateServiceRequest as cW, type UpdateServiceResponse as cX, type BulkUpdateServicesRequest as cY, type MaskedService as cZ, type BulkUpdateServicesByFilterRequest as c_, type ResourceSelection as ca, type BookedSchedule as cb, type ContactDetails as cc, type Address as cd, type AddressStreetOneOf as ce, type StreetAddress as cf, type AddressLocation as cg, type Subdivision as ch, type CustomFormField as ci, type BookingSource as cj, type ParticipantNotification as ck, type CommonIdentificationData as cl, type CommonIdentificationDataIdOneOf as cm, type FlowControlSettings as cn, type ParticipantChoices as co, type ServiceChoices as cp, type ServiceChoice as cq, type ServiceChoiceChoiceOneOf as cr, type Duration as cs, type MultiServiceBookingInfo as ct, type BookedAddOn as cu, type DomainEvent as cv, type DomainEventBodyOneOf as cw, type EntityCreatedEvent as cx, type RestoreInfo as cy, type EntityUpdatedEvent as cz, type BulkUpdateServicesResponse as d, type CountServicesRequest as d$, type V2ParticipantNotification as d0, type DeleteServiceResponse as d1, type BulkDeleteServicesRequest as d2, type BulkDeleteServicesByFilterRequest as d3, type QueryServicesRequest as d4, type QueryV2 as d5, type QueryV2PagingMethodOneOf as d6, type Sorting as d7, type Paging as d8, type CursorPaging as d9, type NestedAggregationResults as dA, type NestedAggregationResultsResultOneOf as dB, type ValueResults as dC, type RangeResults as dD, type AggregationResultsScalarResult as dE, type NestedValueAggregationResult as dF, type ValueResult as dG, type RangeResult as dH, type ScalarResult as dI, type ScalarDateResult as dJ, type NestedResultValue as dK, type NestedResultValueResultOneOf as dL, type Results as dM, type DateHistogramResult as dN, type GroupByValueResults as dO, type DateHistogramResults as dP, type NestedResults as dQ, type AggregationResultsScalarDateResult as dR, type AggregationResults as dS, type AggregationResultsResultOneOf as dT, type QueryPoliciesRequest as dU, type CursorQueryPagingMethodOneOf as dV, type BookingPolicyWithServices as dW, type QueryBookingFormsRequest as dX, type BookingForm as dY, type FormDetails as dZ, type ConnectedService as d_, type QueryServicesResponse as da, type PagingMetadataV2 as db, type Cursors as dc, type SearchServicesRequest as dd, type CursorSearch as de, type CursorSearchPagingMethodOneOf as df, type Aggregation as dg, type AggregationKindOneOf as dh, type RangeBucket as di, type IncludeMissingValuesOptions as dj, type ValueAggregation as dk, type ValueAggregationOptionsOneOf as dl, type RangeAggregation as dm, type ScalarAggregation as dn, type DateHistogramAggregation as dp, type NestedAggregationItem as dq, type NestedAggregationItemKindOneOf as dr, type NestedAggregation as ds, type GroupByAggregation as dt, type GroupByAggregationKindOneOf as du, type SearchDetails as dv, type CursorPagingMetadata as dw, type AggregationData as dx, type ValueAggregationResult as dy, type RangeAggregationResult as dz, type BulkUpdateServicesByFilterOptions as e, type EventMetadata as e$, type QueryLocationsRequest as e0, type QueryLocationsFilter as e1, type BusinessLocations as e2, type CustomLocations as e3, type CustomerLocations as e4, type QueryCategoriesRequest as e5, type QueryCategoriesFilter as e6, type QueryServicesMultiLanguageRequest as e7, type QueryServicesMultiLanguageResponse as e8, type SetServiceLocationsRequest as e9, type Categories as eA, type Locale as eB, type V4Address as eC, type AddressHint as eD, type GeoCoordinates as eE, type BusinessSchedule as eF, type TimePeriod as eG, type SpecialHourPeriod as eH, type Multilingual as eI, type SupportedLanguage as eJ, type ConsentPolicy as eK, type Translation as eL, type ChangeContext as eM, type ChangeContextPayloadOneOf as eN, type PropertiesChange as eO, type SiteCreated as eP, type SiteCloned as eQ, type CreateAddOnGroupRequest as eR, type DeleteAddOnGroupRequest as eS, type DeleteAddOnGroupResponse as eT, type UpdateAddOnGroupRequest as eU, type ListAddOnGroupsByServiceIdRequest as eV, type AddOn as eW, type AddOnAddOnInfoOneOf as eX, type AddOnGroupDetail as eY, type SetAddOnsForGroupRequest as eZ, type BaseEventMetadata as e_, type RemovedLocationSessionsAction as ea, type RemovedLocationSessionsActionActionOptionsOneOf as eb, type MoveToNewLocationsOptions as ec, type EnablePricingPlansForServiceRequest as ed, type PricingPlanSelection as ee, type InvalidPricingPlan as ef, type DisablePricingPlansForServiceRequest as eg, type SetCustomSlugRequest as eh, type ValidateSlugRequest as ei, type CloneServiceRequest as ej, type CategoryNotification as ek, type Category as el, type Empty as em, type BenefitNotification as en, type Benefit as eo, type EntryPass as ep, type Discount as eq, type DiscountDiscountOneOf as er, type Behavior as es, type BehaviorBehaviorOneOf as et, type UserDomainInfoChangedEvent as eu, type HtmlSitePublished as ev, type Page as ew, type SitePropertiesNotification as ex, type SitePropertiesEvent as ey, type Properties as ez, type BulkUpdateServicesByFilterResponse as f, deleteService as f$, type AccountInfoMetadata as f0, type ServicesQueryResult as f1, type ServiceQuerySpec as f2, type ServiceSearchSpec as f3, utils as f4, type ServiceTypeWithLiterals as f5, type RateTypeWithLiterals as f6, type FrequencyTypeWithLiterals as f7, type FirstChargeDateTypeWithLiterals as f8, type AddOnPaymentOptionsWithLiterals as f9, type NestedAggregationTypeWithLiterals as fA, type IntervalWithLiterals as fB, type AggregationTypeWithLiterals as fC, type ModeWithLiterals as fD, type RequestedFieldsWithLiterals as fE, type ActionWithLiterals as fF, type InvalidSlugErrorWithLiterals as fG, type CloneErrorsWithLiterals as fH, type StatusWithLiterals as fI, type CategoryNotificationEventWithLiterals as fJ, type BenefitTypeWithLiterals 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 LocationTypeEnumLocationTypeWithLiterals as fa, type RankingOrderWithLiterals as fb, type SortingMethodTypeWithLiterals as fc, type TimingWithLiterals as fd, type CompletionRequirementWithLiterals as fe, type V2UnitTypeWithLiterals as ff, type TaxableAddressTypeWithLiterals as fg, type MultiServiceBookingTypeWithLiterals as fh, type ResourceTransparencyWithLiterals as fi, type LocationTypeWithLiterals as fj, type SelectionMethodWithLiterals as fk, type ValueTypeWithLiterals as fl, type BookingStatusWithLiterals as fm, type PaymentStatusWithLiterals as fn, type SelectedPaymentOptionWithLiterals as fo, type PlatformWithLiterals as fp, type ActorWithLiterals as fq, type IdentityTypeWithLiterals as fr, type WebhookIdentityTypeWithLiterals as fs, type UnitTypeWithLiterals as ft, type V2RequestedFieldsWithLiterals as fu, type SortOrderWithLiterals as fv, type SortTypeWithLiterals as fw, type SortDirectionWithLiterals as fx, type MissingValuesWithLiterals as fy, type ScalarTypeWithLiterals 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 };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, 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, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 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, 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, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-BgThyBUH.js';
|
|
3
|
+
export { cF as AccountInfo, f0 as AccountInfoMetadata, aI as Action, cB as ActionEvent, fF as ActionWithLiterals, at as Actor, fq as ActorWithLiterals, eW as AddOn, eX as AddOnAddOnInfoOneOf, bX as AddOnDetails, eY as AddOnGroupDetail, ac as AddOnPaymentOptions, f9 as AddOnPaymentOptionsWithLiterals, cd as Address, eD as AddressHint, cg as AddressLocation, ce as AddressStreetOneOf, dg as Aggregation, dx as AggregationData, dh as AggregationKindOneOf, dS as AggregationResults, dT as AggregationResultsResultOneOf, dR as AggregationResultsScalarDateResult, dE as AggregationResultsScalarResult, aF as AggregationType, fC as AggregationTypeWithLiterals, cO as ApplicationError, bB as AvailabilityConstraints, e_ as BaseEventMetadata, es as Behavior, et as BehaviorBehaviorOneOf, eo as Benefit, en as BenefitNotification, aN as BenefitType, fK as BenefitTypeWithLiterals, bl as BookAfterStartPolicy, cu as BookedAddOn, c4 as BookedEntity, c5 as BookedEntityItemOneOf, c7 as BookedResource, cb as BookedSchedule, c6 as BookedSlot, c2 as Booking, dY as BookingForm, c3 as BookingParticipantsInfoOneOf, bh as BookingPolicy, dW as BookingPolicyWithServices, cj as BookingSource, ap as BookingStatus, fm as BookingStatusWithLiterals, cP as BulkActionMetadata, cL as BulkCreateServicesRequest, d3 as BulkDeleteServicesByFilterRequest, d2 as BulkDeleteServicesRequest, cM as BulkServiceResult, c_ as BulkUpdateServicesByFilterRequest, cY as BulkUpdateServicesRequest, bf as BusinessLocationOptions, e2 as BusinessLocations, eF as BusinessSchedule, br as CancellationFeePolicy, bm as CancellationPolicy, bs as CancellationWindow, bt as CancellationWindowFeeOneOf, eA as Categories, el as Category, ek as CategoryNotification, aM as CategoryNotificationEvent, fJ as CategoryNotificationEventWithLiterals, eM as ChangeContext, eN as ChangeContextPayloadOneOf, aK as CloneErrors, fH as CloneErrorsWithLiterals, ej as CloneServiceRequest, bb as CommonAddress, be as CommonAddressLocation, bc as CommonAddressStreetOneOf, cl as CommonIdentificationData, cm as CommonIdentificationDataIdOneOf, fQ as CommonQueryWithEntityContext, fR as CommonSearchWithEntityContext, bd as CommonStreetAddress, ah as CompletionRequirement, fe as CompletionRequirementWithLiterals, b8 as Conferencing, d_ as ConnectedService, eK as ConsentPolicy, cc as ContactDetails, d$ as CountServicesRequest, eR as CreateAddOnGroupRequest, cG as CreateServiceRequest, cH as CreateServiceResponse, aP as CrudType, fM as CrudTypeWithLiterals, d9 as CursorPaging, dw as CursorPagingMetadata, dV as CursorQueryPagingMethodOneOf, de as CursorSearch, df as CursorSearchPagingMethodOneOf, dc as Cursors, ci as CustomFormField, bg as CustomLocationOptions, e3 as CustomLocations, by as CustomOptions, b1 as CustomPayment, e4 as CustomerLocations, bG as DailyConfig, dp as DateHistogramAggregation, dN as DateHistogramResult, dP as DateHistogramResults, aR as DayOfWeek, fO as DayOfWeekWithLiterals, eS as DeleteAddOnGroupRequest, eT as DeleteAddOnGroupResponse, c$ as DeleteServiceRequest, d1 as DeleteServiceResponse, eg as DisablePricingPlansForServiceRequest, eq as Discount, er as DiscountDiscountOneOf, b6 as DiscountInfo, cv as DomainEvent, cw as DomainEventBodyOneOf, c0 as DummyRequest, c1 as DummyResponse, cs as Duration, bD as DurationRange, bE as DurationRangeConfigOneOf, em as Empty, ed as EnablePricingPlansForServiceRequest, cx as EntityCreatedEvent, cA as EntityDeletedEvent, cz as EntityUpdatedEvent, ep as EntryPass, aO as Event, e$ as EventMetadata, fL as EventWithLiterals, bS as ExtendedFields, cK as FieldViolation, ab as FirstChargeDateType, f8 as FirstChargeDateTypeWithLiterals, a$ as FixedPayment, cn as FlowControlSettings, aX as Form, dZ as FormDetails, aY as FormSettings, aa as FrequencyType, f7 as FrequencyTypeWithLiterals, b4 as FullUpfrontPayment, eE as GeoCoordinates, cS as GetServiceAvailabilityConstraintsRequest, cT as GetServiceAvailabilityConstraintsResponse, cQ as GetServiceRequest, cR as GetServiceResponse, dt as GroupByAggregation, du as GroupByAggregationKindOneOf, dO as GroupByValueResults, bF as HourlyConfig, ev as HtmlSitePublished, cD as IdentificationData, cE as IdentificationDataIdOneOf, au as IdentityType, fr as IdentityTypeWithLiterals, dj as IncludeMissingValuesOptions, bz as IntakeFormPolicy, aE as Interval, fB as IntervalWithLiterals, ef as InvalidPricingPlan, aJ as InvalidSlugError, fG as InvalidSlugErrorWithLiterals, cN as ItemMetadata, bU as Keyword, bj as LimitEarlyBookingPolicy, bk as LimitLateBookingPolicy, eV as ListAddOnGroupsByServiceIdRequest, eB as Locale, c8 as Location, am as LocationType, ad as LocationTypeEnumLocationType, fa as LocationTypeEnumLocationTypeWithLiterals, fj as LocationTypeWithLiterals, cZ as MaskedService, aT as Media, aU as MediaItem, aV as MediaItemItemOneOf, cC as MessageEnvelope, aB as MissingValues, fy as MissingValuesWithLiterals, aG as Mode, fD as ModeWithLiterals, b0 as Money, ec as MoveToNewLocationsOptions, ct as MultiServiceBookingInfo, ak as MultiServiceBookingType, fh as MultiServiceBookingTypeWithLiterals, eI as Multilingual, ds as NestedAggregation, dq as NestedAggregationItem, dr as NestedAggregationItemKindOneOf, dA as NestedAggregationResults, dB as NestedAggregationResultsResultOneOf, aD as NestedAggregationType, fA as NestedAggregationTypeWithLiterals, dK as NestedResultValue, dL as NestedResultValueResultOneOf, dQ as NestedResults, dF as NestedValueAggregationResult, b7 as OnlineBooking, ew as Page, d8 as Paging, db as PagingMetadataV2, co as ParticipantChoices, ck as ParticipantNotification, bp as ParticipantsPolicy, aZ as Payment, b5 as PaymentOptions, a_ as PaymentRateOneOf, aq as PaymentStatus, fn as PaymentStatusWithLiterals, c9 as PhoneCall, aQ as PlacementType, fN as PlacementTypeWithLiterals, as as Platform, fp as PlatformWithLiterals, bi as PolicyDescription, ee as PricingPlanSelection, ez as Properties, eO as PropertiesChange, dX as QueryBookingFormsRequest, e6 as QueryCategoriesFilter, e5 as QueryCategoriesRequest, e1 as QueryLocationsFilter, e0 as QueryLocationsRequest, dU as QueryPoliciesRequest, e7 as QueryServicesMultiLanguageRequest, e8 as QueryServicesMultiLanguageResponse, d4 as QueryServicesRequest, da as QueryServicesResponse, d5 as QueryV2, d6 as QueryV2PagingMethodOneOf, dm as RangeAggregation, dz as RangeAggregationResult, di as RangeBucket, dH as RangeResult, dD as RangeResults, bx as RankingOptions, ae as RankingOrder, fb as RankingOrderWithLiterals, a9 as RateType, f6 as RateTypeWithLiterals, ea as RemovedLocationSessionsAction, eb as RemovedLocationSessionsActionActionOptionsOneOf, aH as RequestedFields, fE as RequestedFieldsWithLiterals, bn as ReschedulePolicy, aS as ResolutionMethod, fP as ResolutionMethodWithLiterals, bL as ResourceGroup, bM as ResourceIds, ca as ResourceSelection, al as ResourceTransparency, fi as ResourceTransparencyWithLiterals, bP as ResourceType, bq as ResourcesPolicy, cy as RestoreInfo, dM as Results, bu as SaveCreditCardPolicy, dn as ScalarAggregation, dJ as ScalarDateResult, dI as ScalarResult, aC as ScalarType, fz as ScalarTypeWithLiterals, bA as Schedule, dv as SearchDetails, dd as SearchServicesRequest, ar as SelectedPaymentOption, fo as SelectedPaymentOptionWithLiterals, an as SelectionMethod, fk as SelectionMethodWithLiterals, bT as SeoSchema, cU as ServiceAvailabilityConstraints, cq as ServiceChoice, cr as ServiceChoiceChoiceOneOf, cp as ServiceChoices, f2 as ServiceQuerySpec, bN as ServiceResource, bO as ServiceResourceSelectionOneOf, f3 as ServiceSearchSpec, a8 as ServiceType, f5 as ServiceTypeWithLiterals, f1 as ServicesQueryResult, b$ as ServicesUrlsChanged, eZ as SetAddOnsForGroupRequest, b_ as SetCustomSlugEvent, eh as SetCustomSlugRequest, e9 as SetServiceLocationsRequest, bW as Settings, eQ as SiteCloned, eP as SiteCreated, ey as SitePropertiesEvent, ex as SitePropertiesNotification, bQ as Slug, aA as SortDirection, fx as SortDirectionWithLiterals, ay as SortOrder, fv as SortOrderWithLiterals, az as SortType, fw as SortTypeWithLiterals, d7 as Sorting, af as SortingMethodType, fc as SortingMethodTypeWithLiterals, eH as SpecialHourPeriod, cV as SplitInterval, bI as StaffMediaItem, bJ as StaffMediaItemItemOneOf, bH as StaffMember, bK as StaffMemberDetails, bv as StaffSortingPolicy, bw as StaffSortingPolicyOptionsOneOf, aL as Status, fI as StatusWithLiterals, cf as StreetAddress, ch as Subdivision, b3 as SubscriptionPayment, eJ as SupportedLanguage, bV as Tag, bY as TaxableAddress, aj as TaxableAddressType, fg as TaxableAddressTypeWithLiterals, eG as TimePeriod, ag as Timing, fd as TimingWithLiterals, eL as Translation, bR as URLs, aw as UnitType, ft as UnitTypeWithLiterals, eU as UpdateAddOnGroupRequest, cW as UpdateServiceRequest, cX as UpdateServiceResponse, eu as UserDomainInfoChangedEvent, aW as V2Category, bC as V2Duration, b9 as V2Location, ba as V2LocationOptionsOneOf, d0 as V2ParticipantNotification, bZ as V2PhoneCall, ax as V2RequestedFields, fu as V2RequestedFieldsWithLiterals, ai as V2UnitType, ff as V2UnitTypeWithLiterals, eC as V4Address, cI as ValidateServiceRequest, cJ as ValidateServiceResponse, ei as ValidateSlugRequest, dk as ValueAggregation, dl as ValueAggregationOptionsOneOf, dy as ValueAggregationResult, dG as ValueResult, dC as ValueResults, ao as ValueType, fl as ValueTypeWithLiterals, b2 as VariedPayment, bo as WaitlistPolicy, av as WebhookIdentityType, fs as WebhookIdentityTypeWithLiterals, f4 as utils } from './bookings-services-v2-service-services.universal-BgThyBUH.js';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -62,7 +62,9 @@ __export(index_exports, {
|
|
|
62
62
|
Status: () => Status,
|
|
63
63
|
TaxableAddressType: () => TaxableAddressType,
|
|
64
64
|
Timing: () => Timing,
|
|
65
|
+
UnitType: () => UnitType,
|
|
65
66
|
V2RequestedFields: () => V2RequestedFields,
|
|
67
|
+
V2UnitType: () => V2UnitType,
|
|
66
68
|
ValueType: () => ValueType,
|
|
67
69
|
WebhookIdentityType: () => WebhookIdentityType,
|
|
68
70
|
bulkCreateServices: () => bulkCreateServices4,
|
|
@@ -1902,6 +1904,9 @@ var CompletionRequirement = /* @__PURE__ */ ((CompletionRequirement2) => {
|
|
|
1902
1904
|
CompletionRequirement2["REQUIRED_BEFORE_BOOKING"] = "REQUIRED_BEFORE_BOOKING";
|
|
1903
1905
|
return CompletionRequirement2;
|
|
1904
1906
|
})(CompletionRequirement || {});
|
|
1907
|
+
var V2UnitType = /* @__PURE__ */ ((V2UnitType2) => {
|
|
1908
|
+
return V2UnitType2;
|
|
1909
|
+
})(V2UnitType || {});
|
|
1905
1910
|
var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
1906
1911
|
TaxableAddressType2["BUSINESS"] = "BUSINESS";
|
|
1907
1912
|
TaxableAddressType2["BILLING"] = "BILLING";
|
|
@@ -1991,6 +1996,9 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1991
1996
|
WebhookIdentityType2["APP"] = "APP";
|
|
1992
1997
|
return WebhookIdentityType2;
|
|
1993
1998
|
})(WebhookIdentityType || {});
|
|
1999
|
+
var UnitType = /* @__PURE__ */ ((UnitType2) => {
|
|
2000
|
+
return UnitType2;
|
|
2001
|
+
})(UnitType || {});
|
|
1994
2002
|
var V2RequestedFields = /* @__PURE__ */ ((V2RequestedFields2) => {
|
|
1995
2003
|
V2RequestedFields2["STAFF_MEMBER_DETAILS"] = "STAFF_MEMBER_DETAILS";
|
|
1996
2004
|
V2RequestedFields2["RESOURCE_TYPE_DETAILS"] = "RESOURCE_TYPE_DETAILS";
|
|
@@ -4047,7 +4055,9 @@ var onServiceUpdated2 = (0, import_event_definition_modules.createEventModule)(o
|
|
|
4047
4055
|
Status,
|
|
4048
4056
|
TaxableAddressType,
|
|
4049
4057
|
Timing,
|
|
4058
|
+
UnitType,
|
|
4050
4059
|
V2RequestedFields,
|
|
4060
|
+
V2UnitType,
|
|
4051
4061
|
ValueType,
|
|
4052
4062
|
WebhookIdentityType,
|
|
4053
4063
|
bulkCreateServices,
|