@wix/auto_sdk_bookings_services 1.0.217 → 1.0.218
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-DOc1nZfu.d.ts} +64 -28
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +5 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +5 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +65 -2
- package/build/cjs/meta.js +5 -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-DOc1nZfu.d.mts} +64 -28
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +4 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +4 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +65 -2
- package/build/es/meta.mjs +4 -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-CrtyjfbZ.d.ts} +91 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +5 -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 +5 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +65 -2
- package/build/internal/cjs/meta.js +5 -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-CrtyjfbZ.d.mts} +91 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +4 -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 +4 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +65 -2
- package/build/internal/es/meta.mjs +4 -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 UnitType {
|
|
1208
|
+
}
|
|
1209
|
+
/** @enumType */
|
|
1210
|
+
type UnitTypeWithLiterals = UnitType;
|
|
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.
|
|
@@ -6318,4 +6354,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6318
6354
|
addOnIds: string[] | null;
|
|
6319
6355
|
}
|
|
6320
6356
|
|
|
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 };
|
|
6357
|
+
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 Money 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, MissingValues as aA, ScalarType as aB, NestedAggregationType as aC, Interval as aD, AggregationType as aE, Mode as aF, RequestedFields as aG, Action as aH, InvalidSlugError as aI, CloneErrors as aJ, Status as aK, CategoryNotificationEvent as aL, BenefitType as aM, Event as aN, CrudType as aO, PlacementType as aP, DayOfWeek as aQ, ResolutionMethod as aR, type Media as aS, type MediaItem as aT, type MediaItemItemOneOf as aU, type V2Category as aV, type Form as aW, type FormSettings as aX, type Payment as aY, type PaymentRateOneOf as aZ, type FixedPayment 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, UnitType 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, V2RequestedFields as aw, SortOrder as ax, SortType as ay, SortDirection as az, type UpdateServiceValidationErrors as b, type DummyRequest as b$, type CustomPayment as b0, type VariedPayment as b1, type SubscriptionPayment as b2, type FullUpfrontPayment as b3, type PaymentOptions as b4, type DiscountInfo as b5, type OnlineBooking as b6, type Conferencing as b7, type V2Location as b8, type V2LocationOptionsOneOf as b9, type AvailabilityConstraints as bA, type V2Duration as bB, type DurationRange as bC, type DurationRangeConfigOneOf as bD, type HourlyConfig as bE, type DailyConfig as bF, type StaffMember as bG, type StaffMediaItem as bH, type StaffMediaItemItemOneOf as bI, type StaffMemberDetails as bJ, type ResourceGroup as bK, type ResourceIds as bL, type ServiceResource as bM, type ServiceResourceSelectionOneOf as bN, type ResourceType as bO, type Slug as bP, type URLs as bQ, type ExtendedFields as bR, type SeoSchema as bS, type Keyword as bT, type Tag as bU, type Settings as bV, type AddOnDetails as bW, type TaxableAddress as bX, type V2PhoneCall as bY, type SetCustomSlugEvent as bZ, type ServicesUrlsChanged as b_, type CommonAddress as ba, type CommonAddressStreetOneOf as bb, type CommonStreetAddress as bc, type CommonAddressLocation as bd, type BusinessLocationOptions as be, type CustomLocationOptions as bf, type BookingPolicy as bg, type PolicyDescription as bh, type LimitEarlyBookingPolicy as bi, type LimitLateBookingPolicy as bj, type BookAfterStartPolicy as bk, type CancellationPolicy as bl, type ReschedulePolicy as bm, type WaitlistPolicy as bn, type ParticipantsPolicy as bo, type ResourcesPolicy as bp, type CancellationFeePolicy as bq, type CancellationWindow as br, type CancellationWindowFeeOneOf as bs, type SaveCreditCardPolicy as bt, type StaffSortingPolicy as bu, type StaffSortingPolicyOptionsOneOf as bv, type RankingOptions as bw, type CustomOptions as bx, type IntakeFormPolicy as by, type Schedule as bz, type BulkUpdateServicesOptions as c, type V2ParticipantNotification as c$, type DummyResponse as c0, type Booking as c1, type BookingParticipantsInfoOneOf as c2, type BookedEntity as c3, type BookedEntityItemOneOf as c4, type BookedSlot as c5, type BookedResource as c6, type Location as c7, type PhoneCall as c8, type ResourceSelection as c9, type ActionEvent as cA, type MessageEnvelope as cB, type IdentificationData as cC, type IdentificationDataIdOneOf as cD, type AccountInfo as cE, type CreateServiceRequest as cF, type CreateServiceResponse as cG, type ValidateServiceRequest as cH, type ValidateServiceResponse as cI, type FieldViolation as cJ, type BulkCreateServicesRequest as cK, type BulkServiceResult as cL, type ItemMetadata as cM, type ApplicationError as cN, type BulkActionMetadata as cO, type GetServiceRequest as cP, type GetServiceResponse as cQ, type GetServiceAvailabilityConstraintsRequest as cR, type GetServiceAvailabilityConstraintsResponse as cS, type ServiceAvailabilityConstraints as cT, type SplitInterval as cU, type UpdateServiceRequest as cV, type UpdateServiceResponse as cW, type BulkUpdateServicesRequest as cX, type MaskedService as cY, type BulkUpdateServicesByFilterRequest as cZ, type DeleteServiceRequest as c_, type BookedSchedule as ca, type ContactDetails as cb, type Address as cc, type AddressStreetOneOf as cd, type StreetAddress as ce, type AddressLocation as cf, type Subdivision as cg, type CustomFormField as ch, type BookingSource as ci, type ParticipantNotification as cj, type CommonIdentificationData as ck, type CommonIdentificationDataIdOneOf as cl, type FlowControlSettings as cm, type ParticipantChoices as cn, type ServiceChoices as co, type ServiceChoice as cp, type ServiceChoiceChoiceOneOf as cq, type Duration as cr, type MultiServiceBookingInfo as cs, type BookedAddOn as ct, type DomainEvent as cu, type DomainEventBodyOneOf as cv, type EntityCreatedEvent as cw, type RestoreInfo as cx, type EntityUpdatedEvent as cy, type EntityDeletedEvent as cz, type BulkUpdateServicesResponse as d, type QueryLocationsRequest as d$, type DeleteServiceResponse as d0, type BulkDeleteServicesRequest as d1, type BulkDeleteServicesByFilterRequest as d2, type QueryServicesRequest as d3, type QueryV2 as d4, type QueryV2PagingMethodOneOf as d5, type Sorting as d6, type Paging as d7, type CursorPaging as d8, type QueryServicesResponse as d9, type NestedAggregationResultsResultOneOf as dA, type ValueResults as dB, type RangeResults as dC, type AggregationResultsScalarResult as dD, type NestedValueAggregationResult as dE, type ValueResult as dF, type RangeResult as dG, type ScalarResult as dH, type ScalarDateResult as dI, type NestedResultValue as dJ, type NestedResultValueResultOneOf as dK, type Results as dL, type DateHistogramResult as dM, type GroupByValueResults as dN, type DateHistogramResults as dO, type NestedResults as dP, type AggregationResultsScalarDateResult as dQ, type AggregationResults as dR, type AggregationResultsResultOneOf as dS, type QueryPoliciesRequest as dT, type CursorQueryPagingMethodOneOf as dU, type BookingPolicyWithServices as dV, type QueryBookingFormsRequest as dW, type BookingForm as dX, type FormDetails as dY, type ConnectedService as dZ, type CountServicesRequest as d_, type PagingMetadataV2 as da, type Cursors as db, type SearchServicesRequest as dc, type CursorSearch as dd, type CursorSearchPagingMethodOneOf as de, type Aggregation as df, type AggregationKindOneOf as dg, type RangeBucket as dh, type IncludeMissingValuesOptions as di, type ValueAggregation as dj, type ValueAggregationOptionsOneOf as dk, type RangeAggregation as dl, type ScalarAggregation as dm, type DateHistogramAggregation as dn, type NestedAggregationItem as dp, type NestedAggregationItemKindOneOf as dq, type NestedAggregation as dr, type GroupByAggregation as ds, type GroupByAggregationKindOneOf as dt, type SearchDetails as du, type CursorPagingMetadata as dv, type AggregationData as dw, type ValueAggregationResult as dx, type RangeAggregationResult as dy, type NestedAggregationResults as dz, type BulkUpdateServicesByFilterOptions as e, type AccountInfoMetadata as e$, type QueryLocationsFilter as e0, type BusinessLocations as e1, type CustomLocations as e2, type CustomerLocations as e3, type QueryCategoriesRequest as e4, type QueryCategoriesFilter as e5, type QueryServicesMultiLanguageRequest as e6, type QueryServicesMultiLanguageResponse as e7, type SetServiceLocationsRequest as e8, type RemovedLocationSessionsAction as e9, type Locale as eA, type V4Address as eB, type AddressHint as eC, type GeoCoordinates as eD, type BusinessSchedule as eE, type TimePeriod as eF, type SpecialHourPeriod as eG, type Multilingual as eH, type SupportedLanguage as eI, type ConsentPolicy as eJ, type Translation as eK, type ChangeContext as eL, type ChangeContextPayloadOneOf as eM, type PropertiesChange as eN, type SiteCreated as eO, type SiteCloned as eP, type CreateAddOnGroupRequest as eQ, type DeleteAddOnGroupRequest as eR, type DeleteAddOnGroupResponse as eS, type UpdateAddOnGroupRequest as eT, type ListAddOnGroupsByServiceIdRequest as eU, type AddOn as eV, type AddOnAddOnInfoOneOf as eW, type AddOnGroupDetail as eX, type SetAddOnsForGroupRequest as eY, type BaseEventMetadata as eZ, type EventMetadata as e_, type RemovedLocationSessionsActionActionOptionsOneOf as ea, type MoveToNewLocationsOptions as eb, type EnablePricingPlansForServiceRequest as ec, type PricingPlanSelection as ed, type InvalidPricingPlan as ee, type DisablePricingPlansForServiceRequest as ef, type SetCustomSlugRequest as eg, type ValidateSlugRequest as eh, type CloneServiceRequest as ei, type CategoryNotification as ej, type Category as ek, type Empty as el, type BenefitNotification as em, type Benefit as en, type EntryPass as eo, type Discount as ep, type DiscountDiscountOneOf as eq, type Behavior as er, type BehaviorBehaviorOneOf as es, type UserDomainInfoChangedEvent as et, type HtmlSitePublished as eu, type Page as ev, type SitePropertiesNotification as ew, type SitePropertiesEvent as ex, type Properties as ey, type Categories as ez, type BulkUpdateServicesByFilterResponse as f, bulkDeleteServicesByFilter as f$, type ServicesQueryResult as f0, type ServiceQuerySpec as f1, type ServiceSearchSpec as f2, utils as f3, type ServiceTypeWithLiterals as f4, type RateTypeWithLiterals as f5, type FrequencyTypeWithLiterals as f6, type FirstChargeDateTypeWithLiterals as f7, type AddOnPaymentOptionsWithLiterals as f8, type LocationTypeEnumLocationTypeWithLiterals as f9, type AggregationTypeWithLiterals as fA, type ModeWithLiterals as fB, type RequestedFieldsWithLiterals as fC, type ActionWithLiterals as fD, type InvalidSlugErrorWithLiterals as fE, type CloneErrorsWithLiterals as fF, type StatusWithLiterals as fG, type CategoryNotificationEventWithLiterals as fH, type BenefitTypeWithLiterals as fI, type EventWithLiterals as fJ, type CrudTypeWithLiterals as fK, type PlacementTypeWithLiterals as fL, type DayOfWeekWithLiterals as fM, type ResolutionMethodWithLiterals as fN, type CommonQueryWithEntityContext as fO, type CommonSearchWithEntityContext as fP, onServiceCreated as fQ, onServiceDeleted as fR, onServiceUpdated as fS, createService as fT, bulkCreateServices as fU, getService as fV, updateService as fW, bulkUpdateServices as fX, bulkUpdateServicesByFilter as fY, deleteService as fZ, bulkDeleteServices as f_, type RankingOrderWithLiterals as fa, type SortingMethodTypeWithLiterals as fb, type TimingWithLiterals as fc, type CompletionRequirementWithLiterals as fd, type UnitTypeWithLiterals as fe, type TaxableAddressTypeWithLiterals as ff, type MultiServiceBookingTypeWithLiterals as fg, type ResourceTransparencyWithLiterals as fh, type LocationTypeWithLiterals as fi, type SelectionMethodWithLiterals as fj, type ValueTypeWithLiterals as fk, type BookingStatusWithLiterals as fl, type PaymentStatusWithLiterals as fm, type SelectedPaymentOptionWithLiterals as fn, type PlatformWithLiterals as fo, type ActorWithLiterals as fp, type IdentityTypeWithLiterals as fq, type WebhookIdentityTypeWithLiterals as fr, type V2RequestedFieldsWithLiterals as fs, type SortOrderWithLiterals as ft, type SortTypeWithLiterals as fu, type SortDirectionWithLiterals as fv, type MissingValuesWithLiterals as fw, type ScalarTypeWithLiterals as fx, type NestedAggregationTypeWithLiterals as fy, type IntervalWithLiterals as fz, type BulkDeleteServicesOptions as g, queryServices as g0, queryPolicies as g1, queryBookingForms as g2, countServices as g3, queryLocations as g4, queryCategories as g5, setServiceLocations as g6, enablePricingPlansForService as g7, disablePricingPlansForService as g8, setCustomSlug as g9, validateSlug as ga, cloneService as gb, createAddOnGroup as gc, deleteAddOnGroup as gd, updateAddOnGroup as ge, listAddOnGroupsByServiceId as gf, setAddOnsForGroup as gg, 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-DOc1nZfu.js';
|
|
3
|
+
export { cE as AccountInfo, e$ as AccountInfoMetadata, aH as Action, cA as ActionEvent, fD as ActionWithLiterals, at as Actor, fp as ActorWithLiterals, eV as AddOn, eW as AddOnAddOnInfoOneOf, bW as AddOnDetails, eX as AddOnGroupDetail, ac as AddOnPaymentOptions, f8 as AddOnPaymentOptionsWithLiterals, cc as Address, eC as AddressHint, cf as AddressLocation, cd as AddressStreetOneOf, df as Aggregation, dw as AggregationData, dg as AggregationKindOneOf, dR as AggregationResults, dS as AggregationResultsResultOneOf, dQ as AggregationResultsScalarDateResult, dD as AggregationResultsScalarResult, aE as AggregationType, fA as AggregationTypeWithLiterals, cN as ApplicationError, bA as AvailabilityConstraints, eZ as BaseEventMetadata, er as Behavior, es as BehaviorBehaviorOneOf, en as Benefit, em as BenefitNotification, aM as BenefitType, fI as BenefitTypeWithLiterals, bk as BookAfterStartPolicy, ct as BookedAddOn, c3 as BookedEntity, c4 as BookedEntityItemOneOf, c6 as BookedResource, ca as BookedSchedule, c5 as BookedSlot, c1 as Booking, dX as BookingForm, c2 as BookingParticipantsInfoOneOf, bg as BookingPolicy, dV as BookingPolicyWithServices, ci as BookingSource, ap as BookingStatus, fl as BookingStatusWithLiterals, cO as BulkActionMetadata, cK as BulkCreateServicesRequest, d2 as BulkDeleteServicesByFilterRequest, d1 as BulkDeleteServicesRequest, cL as BulkServiceResult, cZ as BulkUpdateServicesByFilterRequest, cX as BulkUpdateServicesRequest, be as BusinessLocationOptions, e1 as BusinessLocations, eE as BusinessSchedule, bq as CancellationFeePolicy, bl as CancellationPolicy, br as CancellationWindow, bs as CancellationWindowFeeOneOf, ez as Categories, ek as Category, ej as CategoryNotification, aL as CategoryNotificationEvent, fH as CategoryNotificationEventWithLiterals, eL as ChangeContext, eM as ChangeContextPayloadOneOf, aJ as CloneErrors, fF as CloneErrorsWithLiterals, ei as CloneServiceRequest, ba as CommonAddress, bd as CommonAddressLocation, bb as CommonAddressStreetOneOf, ck as CommonIdentificationData, cl as CommonIdentificationDataIdOneOf, fO as CommonQueryWithEntityContext, fP as CommonSearchWithEntityContext, bc as CommonStreetAddress, ah as CompletionRequirement, fd as CompletionRequirementWithLiterals, b7 as Conferencing, dZ as ConnectedService, eJ as ConsentPolicy, cb as ContactDetails, d_ as CountServicesRequest, eQ as CreateAddOnGroupRequest, cF as CreateServiceRequest, cG as CreateServiceResponse, aO as CrudType, fK as CrudTypeWithLiterals, d8 as CursorPaging, dv as CursorPagingMetadata, dU as CursorQueryPagingMethodOneOf, dd as CursorSearch, de as CursorSearchPagingMethodOneOf, db as Cursors, ch as CustomFormField, bf as CustomLocationOptions, e2 as CustomLocations, bx as CustomOptions, b0 as CustomPayment, e3 as CustomerLocations, bF as DailyConfig, dn as DateHistogramAggregation, dM as DateHistogramResult, dO as DateHistogramResults, aQ as DayOfWeek, fM as DayOfWeekWithLiterals, eR as DeleteAddOnGroupRequest, eS as DeleteAddOnGroupResponse, c_ as DeleteServiceRequest, d0 as DeleteServiceResponse, ef as DisablePricingPlansForServiceRequest, ep as Discount, eq as DiscountDiscountOneOf, b5 as DiscountInfo, cu as DomainEvent, cv as DomainEventBodyOneOf, b$ as DummyRequest, c0 as DummyResponse, cr as Duration, bC as DurationRange, bD as DurationRangeConfigOneOf, el as Empty, ec as EnablePricingPlansForServiceRequest, cw as EntityCreatedEvent, cz as EntityDeletedEvent, cy as EntityUpdatedEvent, eo as EntryPass, aN as Event, e_ as EventMetadata, fJ as EventWithLiterals, bR as ExtendedFields, cJ as FieldViolation, ab as FirstChargeDateType, f7 as FirstChargeDateTypeWithLiterals, a_ as FixedPayment, cm as FlowControlSettings, aW as Form, dY as FormDetails, aX as FormSettings, aa as FrequencyType, f6 as FrequencyTypeWithLiterals, b3 as FullUpfrontPayment, eD as GeoCoordinates, cR as GetServiceAvailabilityConstraintsRequest, cS as GetServiceAvailabilityConstraintsResponse, cP as GetServiceRequest, cQ as GetServiceResponse, ds as GroupByAggregation, dt as GroupByAggregationKindOneOf, dN as GroupByValueResults, bE as HourlyConfig, eu as HtmlSitePublished, cC as IdentificationData, cD as IdentificationDataIdOneOf, au as IdentityType, fq as IdentityTypeWithLiterals, di as IncludeMissingValuesOptions, by as IntakeFormPolicy, aD as Interval, fz as IntervalWithLiterals, ee as InvalidPricingPlan, aI as InvalidSlugError, fE as InvalidSlugErrorWithLiterals, cM as ItemMetadata, bT as Keyword, bi as LimitEarlyBookingPolicy, bj as LimitLateBookingPolicy, eU as ListAddOnGroupsByServiceIdRequest, eA as Locale, c7 as Location, am as LocationType, ad as LocationTypeEnumLocationType, f9 as LocationTypeEnumLocationTypeWithLiterals, fi as LocationTypeWithLiterals, cY as MaskedService, aS as Media, aT as MediaItem, aU as MediaItemItemOneOf, cB as MessageEnvelope, aA as MissingValues, fw as MissingValuesWithLiterals, aF as Mode, fB as ModeWithLiterals, a$ as Money, eb as MoveToNewLocationsOptions, cs as MultiServiceBookingInfo, ak as MultiServiceBookingType, fg as MultiServiceBookingTypeWithLiterals, eH as Multilingual, dr as NestedAggregation, dp as NestedAggregationItem, dq as NestedAggregationItemKindOneOf, dz as NestedAggregationResults, dA as NestedAggregationResultsResultOneOf, aC as NestedAggregationType, fy as NestedAggregationTypeWithLiterals, dJ as NestedResultValue, dK as NestedResultValueResultOneOf, dP as NestedResults, dE as NestedValueAggregationResult, b6 as OnlineBooking, ev as Page, d7 as Paging, da as PagingMetadataV2, cn as ParticipantChoices, cj as ParticipantNotification, bo as ParticipantsPolicy, aY as Payment, b4 as PaymentOptions, aZ as PaymentRateOneOf, aq as PaymentStatus, fm as PaymentStatusWithLiterals, c8 as PhoneCall, aP as PlacementType, fL as PlacementTypeWithLiterals, as as Platform, fo as PlatformWithLiterals, bh as PolicyDescription, ed as PricingPlanSelection, ey as Properties, eN as PropertiesChange, dW as QueryBookingFormsRequest, e5 as QueryCategoriesFilter, e4 as QueryCategoriesRequest, e0 as QueryLocationsFilter, d$ as QueryLocationsRequest, dT as QueryPoliciesRequest, e6 as QueryServicesMultiLanguageRequest, e7 as QueryServicesMultiLanguageResponse, d3 as QueryServicesRequest, d9 as QueryServicesResponse, d4 as QueryV2, d5 as QueryV2PagingMethodOneOf, dl as RangeAggregation, dy as RangeAggregationResult, dh as RangeBucket, dG as RangeResult, dC as RangeResults, bw as RankingOptions, ae as RankingOrder, fa as RankingOrderWithLiterals, a9 as RateType, f5 as RateTypeWithLiterals, e9 as RemovedLocationSessionsAction, ea as RemovedLocationSessionsActionActionOptionsOneOf, aG as RequestedFields, fC as RequestedFieldsWithLiterals, bm as ReschedulePolicy, aR as ResolutionMethod, fN as ResolutionMethodWithLiterals, bK as ResourceGroup, bL as ResourceIds, c9 as ResourceSelection, al as ResourceTransparency, fh as ResourceTransparencyWithLiterals, bO as ResourceType, bp as ResourcesPolicy, cx as RestoreInfo, dL as Results, bt as SaveCreditCardPolicy, dm as ScalarAggregation, dI as ScalarDateResult, dH as ScalarResult, aB as ScalarType, fx as ScalarTypeWithLiterals, bz as Schedule, du as SearchDetails, dc as SearchServicesRequest, ar as SelectedPaymentOption, fn as SelectedPaymentOptionWithLiterals, an as SelectionMethod, fj as SelectionMethodWithLiterals, bS as SeoSchema, cT as ServiceAvailabilityConstraints, cp as ServiceChoice, cq as ServiceChoiceChoiceOneOf, co as ServiceChoices, f1 as ServiceQuerySpec, bM as ServiceResource, bN as ServiceResourceSelectionOneOf, f2 as ServiceSearchSpec, a8 as ServiceType, f4 as ServiceTypeWithLiterals, f0 as ServicesQueryResult, b_ as ServicesUrlsChanged, eY as SetAddOnsForGroupRequest, bZ as SetCustomSlugEvent, eg as SetCustomSlugRequest, e8 as SetServiceLocationsRequest, bV as Settings, eP as SiteCloned, eO as SiteCreated, ex as SitePropertiesEvent, ew as SitePropertiesNotification, bP as Slug, az as SortDirection, fv as SortDirectionWithLiterals, ax as SortOrder, ft as SortOrderWithLiterals, ay as SortType, fu as SortTypeWithLiterals, d6 as Sorting, af as SortingMethodType, fb as SortingMethodTypeWithLiterals, eG as SpecialHourPeriod, cU as SplitInterval, bH as StaffMediaItem, bI as StaffMediaItemItemOneOf, bG as StaffMember, bJ as StaffMemberDetails, bu as StaffSortingPolicy, bv as StaffSortingPolicyOptionsOneOf, aK as Status, fG as StatusWithLiterals, ce as StreetAddress, cg as Subdivision, b2 as SubscriptionPayment, eI as SupportedLanguage, bU as Tag, bX as TaxableAddress, aj as TaxableAddressType, ff as TaxableAddressTypeWithLiterals, eF as TimePeriod, ag as Timing, fc as TimingWithLiterals, eK as Translation, bQ as URLs, ai as UnitType, fe as UnitTypeWithLiterals, eT as UpdateAddOnGroupRequest, cV as UpdateServiceRequest, cW as UpdateServiceResponse, et as UserDomainInfoChangedEvent, aV as V2Category, bB as V2Duration, b8 as V2Location, b9 as V2LocationOptionsOneOf, c$ as V2ParticipantNotification, bY as V2PhoneCall, aw as V2RequestedFields, fs as V2RequestedFieldsWithLiterals, eB as V4Address, cH as ValidateServiceRequest, cI as ValidateServiceResponse, eh as ValidateSlugRequest, dj as ValueAggregation, dk as ValueAggregationOptionsOneOf, dx as ValueAggregationResult, dF as ValueResult, dB as ValueResults, ao as ValueType, fk as ValueTypeWithLiterals, b1 as VariedPayment, bn as WaitlistPolicy, av as WebhookIdentityType, fr as WebhookIdentityTypeWithLiterals, f3 as utils } from './bookings-services-v2-service-services.universal-DOc1nZfu.js';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -62,6 +62,7 @@ __export(index_exports, {
|
|
|
62
62
|
Status: () => Status,
|
|
63
63
|
TaxableAddressType: () => TaxableAddressType,
|
|
64
64
|
Timing: () => Timing,
|
|
65
|
+
UnitType: () => UnitType,
|
|
65
66
|
V2RequestedFields: () => V2RequestedFields,
|
|
66
67
|
ValueType: () => ValueType,
|
|
67
68
|
WebhookIdentityType: () => WebhookIdentityType,
|
|
@@ -1902,6 +1903,9 @@ var CompletionRequirement = /* @__PURE__ */ ((CompletionRequirement2) => {
|
|
|
1902
1903
|
CompletionRequirement2["REQUIRED_BEFORE_BOOKING"] = "REQUIRED_BEFORE_BOOKING";
|
|
1903
1904
|
return CompletionRequirement2;
|
|
1904
1905
|
})(CompletionRequirement || {});
|
|
1906
|
+
var UnitType = /* @__PURE__ */ ((UnitType2) => {
|
|
1907
|
+
return UnitType2;
|
|
1908
|
+
})(UnitType || {});
|
|
1905
1909
|
var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
1906
1910
|
TaxableAddressType2["BUSINESS"] = "BUSINESS";
|
|
1907
1911
|
TaxableAddressType2["BILLING"] = "BILLING";
|
|
@@ -4047,6 +4051,7 @@ var onServiceUpdated2 = (0, import_event_definition_modules.createEventModule)(o
|
|
|
4047
4051
|
Status,
|
|
4048
4052
|
TaxableAddressType,
|
|
4049
4053
|
Timing,
|
|
4054
|
+
UnitType,
|
|
4050
4055
|
V2RequestedFields,
|
|
4051
4056
|
ValueType,
|
|
4052
4057
|
WebhookIdentityType,
|