@wix/auto_sdk_bookings_services 1.0.210 → 1.0.212
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-BvAL2_h8.d.ts → cjs/bookings-services-v2-service-services.universal-CaGsi0am.d.ts} +14 -31
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/{internal/es/bookings-services-v2-service-services.universal-BvAL2_h8.d.mts → es/bookings-services-v2-service-services.universal-CaGsi0am.d.mts} +14 -31
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +8 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/{cjs/bookings-services-v2-service-services.universal-D44Nv7yN.d.ts → internal/cjs/bookings-services-v2-service-services.universal-D8mHLu60.d.ts} +41 -4
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +8 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/{es/bookings-services-v2-service-services.universal-D44Nv7yN.d.mts → internal/es/bookings-services-v2-service-services.universal-D8mHLu60.d.mts} +41 -4
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +8 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -102,8 +102,13 @@ interface Service {
|
|
|
102
102
|
schedule?: Schedule;
|
|
103
103
|
/**
|
|
104
104
|
* IDs of the [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) that are associated with the [staff members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction) providing the service.
|
|
105
|
-
* Note that these are the
|
|
106
|
-
*
|
|
105
|
+
* Note that these are the resource IDs, not the staff member IDs.
|
|
106
|
+
*
|
|
107
|
+
* For appointment-based services, set this field when creating or updating the service.
|
|
108
|
+
* For classes and courses, this field is read-only and is automatically derived from the staff assigned to the service's scheduled sessions.
|
|
109
|
+
* It's only populated while the class or course has upcoming sessions.
|
|
110
|
+
* To retrieve staff for classes or courses that have ended, query the service's past calendar events instead.
|
|
111
|
+
* Learn more about [retrieving staff for classes and courses](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/sample-flows#retrieve-staff-members-for-a-class-or-course).
|
|
107
112
|
* @maxSize 220
|
|
108
113
|
* @format GUID
|
|
109
114
|
*/
|
|
@@ -248,13 +253,6 @@ interface Payment extends PaymentRateOneOf {
|
|
|
248
253
|
* Required when: `rateType` is `VARIED`
|
|
249
254
|
*/
|
|
250
255
|
varied?: VariedPayment;
|
|
251
|
-
/**
|
|
252
|
-
* The details for the subscription pricing of the service.
|
|
253
|
-
*
|
|
254
|
-
* Required when: `rateType` is `SUBSCRIPTION`
|
|
255
|
-
* @internal
|
|
256
|
-
*/
|
|
257
|
-
subscription?: SubscriptionPayment;
|
|
258
256
|
/** The rate the customer is expected to pay for the service. */
|
|
259
257
|
rateType?: RateTypeWithLiterals;
|
|
260
258
|
/** The payment options a customer can use to pay for the service. */
|
|
@@ -272,19 +270,6 @@ interface Payment extends PaymentRateOneOf {
|
|
|
272
270
|
* If customers pay for the booking using any method other than a pricing plan, the value of this field is ignored.
|
|
273
271
|
*/
|
|
274
272
|
addOnOption?: AddOnPaymentOptionsWithLiterals;
|
|
275
|
-
/**
|
|
276
|
-
* Estimated discount information for the service based on active [eCommerce discounts](https://dev.wix.com/docs/rest/business-solutions/e-commerce/extensions/discounts/introduction).
|
|
277
|
-
* The final discount is determined during eCommerce checkout and may differ from the estimate,
|
|
278
|
-
* for example when discounts depend on cart totals.
|
|
279
|
-
*
|
|
280
|
-
* A discount is considered active when its start time has passed and its end time hasn't.
|
|
281
|
-
* If multiple active discounts apply, the most recently created one is returned.
|
|
282
|
-
*
|
|
283
|
-
* Returned only when `DISCOUNT_INFO_DETAILS` is requested.
|
|
284
|
-
* @internal
|
|
285
|
-
* @readonly
|
|
286
|
-
*/
|
|
287
|
-
discountInfo?: DiscountInfo;
|
|
288
273
|
}
|
|
289
274
|
/** @oneof */
|
|
290
275
|
interface PaymentRateOneOf {
|
|
@@ -307,13 +292,6 @@ interface PaymentRateOneOf {
|
|
|
307
292
|
* Required when: `rateType` is `VARIED`
|
|
308
293
|
*/
|
|
309
294
|
varied?: VariedPayment;
|
|
310
|
-
/**
|
|
311
|
-
* The details for the subscription pricing of the service.
|
|
312
|
-
*
|
|
313
|
-
* Required when: `rateType` is `SUBSCRIPTION`
|
|
314
|
-
* @internal
|
|
315
|
-
*/
|
|
316
|
-
subscription?: SubscriptionPayment;
|
|
317
295
|
}
|
|
318
296
|
declare enum RateType {
|
|
319
297
|
/** The service has a fixed price. */
|
|
@@ -5155,8 +5133,13 @@ interface UpdateService {
|
|
|
5155
5133
|
schedule?: Schedule;
|
|
5156
5134
|
/**
|
|
5157
5135
|
* IDs of the [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) that are associated with the [staff members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction) providing the service.
|
|
5158
|
-
* Note that these are the
|
|
5159
|
-
*
|
|
5136
|
+
* Note that these are the resource IDs, not the staff member IDs.
|
|
5137
|
+
*
|
|
5138
|
+
* For appointment-based services, set this field when creating or updating the service.
|
|
5139
|
+
* For classes and courses, this field is read-only and is automatically derived from the staff assigned to the service's scheduled sessions.
|
|
5140
|
+
* It's only populated while the class or course has upcoming sessions.
|
|
5141
|
+
* To retrieve staff for classes or courses that have ended, query the service's past calendar events instead.
|
|
5142
|
+
* Learn more about [retrieving staff for classes and courses](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/sample-flows#retrieve-staff-members-for-a-class-or-course).
|
|
5160
5143
|
* @maxSize 220
|
|
5161
5144
|
* @format GUID
|
|
5162
5145
|
*/
|
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 { cz as AccountInfo, eW as AccountInfoMetadata, aG as Action, cv as ActionEvent, fx as ActionWithLiterals, as as Actor, fj as ActorWithLiterals, eQ as AddOn, eR as AddOnAddOnInfoOneOf, bR as AddOnDetails, eS as AddOnGroupDetail, ac as AddOnPaymentOptions, f3 as AddOnPaymentOptionsWithLiterals, c7 as Address, ex as AddressHint, ca as AddressLocation, c8 as AddressStreetOneOf, da as Aggregation, dr as AggregationData, db as AggregationKindOneOf, dM as AggregationResults, dN as AggregationResultsResultOneOf, dL as AggregationResultsScalarDateResult, dy as AggregationResultsScalarResult, aD as AggregationType, fu as AggregationTypeWithLiterals, cI as ApplicationError, bz as AvailabilityConstraints, eU as BaseEventMetadata, em as Behavior, en as BehaviorBehaviorOneOf, ei as Benefit, eh as BenefitNotification, aL as BenefitType, fC as BenefitTypeWithLiterals, bj as BookAfterStartPolicy, co as BookedAddOn, b_ as BookedEntity, b$ as BookedEntityItemOneOf, c1 as BookedResource, c5 as BookedSchedule, c0 as BookedSlot, bY as Booking, dS as BookingForm, bZ as BookingParticipantsInfoOneOf, bf as BookingPolicy, dQ as BookingPolicyWithServices, cd as BookingSource, ao as BookingStatus, ff as BookingStatusWithLiterals, cJ as BulkActionMetadata, cF as BulkCreateServicesRequest, cZ as BulkDeleteServicesByFilterRequest, cY as BulkDeleteServicesRequest, cG as BulkServiceResult, cU as BulkUpdateServicesByFilterRequest, cS as BulkUpdateServicesRequest, bd as BusinessLocationOptions, dY as BusinessLocations, ez as BusinessSchedule, bp as CancellationFeePolicy, bk as CancellationPolicy, bq as CancellationWindow, br as CancellationWindowFeeOneOf, eu as Categories, ef as Category, ee as CategoryNotification, aK as CategoryNotificationEvent, fB as CategoryNotificationEventWithLiterals, eG as ChangeContext, eH as ChangeContextPayloadOneOf, aI as CloneErrors, fz as CloneErrorsWithLiterals, ed as CloneServiceRequest, b9 as CommonAddress, bc as CommonAddressLocation, ba as CommonAddressStreetOneOf, cf as CommonIdentificationData, cg as CommonIdentificationDataIdOneOf, fI as CommonQueryWithEntityContext, fJ as CommonSearchWithEntityContext, bb as CommonStreetAddress, ah as CompletionRequirement, f8 as CompletionRequirementWithLiterals, b6 as Conferencing, dU as ConnectedService, eE as ConsentPolicy, c6 as ContactDetails, dV as CountServicesRequest, eL as CreateAddOnGroupRequest, cA as CreateServiceRequest, cB as CreateServiceResponse, aN as CrudType, fE as CrudTypeWithLiterals, d3 as CursorPaging, dq as CursorPagingMetadata, dP as CursorQueryPagingMethodOneOf, d8 as CursorSearch, d9 as CursorSearchPagingMethodOneOf, d6 as Cursors, cc as CustomFormField, be as CustomLocationOptions, dZ as CustomLocations, bw as CustomOptions, a$ as CustomPayment, d_ as CustomerLocations, di as DateHistogramAggregation, dH as DateHistogramResult, dJ as DateHistogramResults, aP as DayOfWeek, fG as DayOfWeekWithLiterals, eM as DeleteAddOnGroupRequest, eN as DeleteAddOnGroupResponse, cV as DeleteServiceRequest, cX as DeleteServiceResponse, ea as DisablePricingPlansForServiceRequest, ek as Discount, el as DiscountDiscountOneOf, b4 as DiscountInfo, cp as DomainEvent, cq as DomainEventBodyOneOf, bW as DummyRequest, bX as DummyResponse, cm as Duration, eg as Empty, e7 as EnablePricingPlansForServiceRequest, cr as EntityCreatedEvent, cu as EntityDeletedEvent, ct as EntityUpdatedEvent, ej as EntryPass, aM as Event, eV as EventMetadata, fD as EventWithLiterals, bM as ExtendedFields, cE as FieldViolation, ab as FirstChargeDateType, f2 as FirstChargeDateTypeWithLiterals, aZ as FixedPayment, ch as FlowControlSettings, aV as Form, dT as FormDetails, aW as FormSettings, aa as FrequencyType, f1 as FrequencyTypeWithLiterals, b2 as FullUpfrontPayment, ey as GeoCoordinates, cM as GetServiceAvailabilityConstraintsRequest, cN as GetServiceAvailabilityConstraintsResponse, cK as GetServiceRequest, cL as GetServiceResponse, dm as GroupByAggregation, dn as GroupByAggregationKindOneOf, dI as GroupByValueResults, ep as HtmlSitePublished, cx as IdentificationData, cy as IdentificationDataIdOneOf, at as IdentityType, fk as IdentityTypeWithLiterals, dd as IncludeMissingValuesOptions, bx as IntakeFormPolicy, aC as Interval, ft as IntervalWithLiterals, e9 as InvalidPricingPlan, aH as InvalidSlugError, fy as InvalidSlugErrorWithLiterals, cH as ItemMetadata, bO as Keyword, bh as LimitEarlyBookingPolicy, bi as LimitLateBookingPolicy, eP as ListAddOnGroupsByServiceIdRequest, ev as Locale, c2 as Location, al as LocationType, ad as LocationTypeEnumLocationType, f4 as LocationTypeEnumLocationTypeWithLiterals, fc as LocationTypeWithLiterals, cT as MaskedService, aR as Media, aS as MediaItem, aT as MediaItemItemOneOf, cw as MessageEnvelope, az as MissingValues, fq as MissingValuesWithLiterals, aE as Mode, fv as ModeWithLiterals, a_ as Money, e6 as MoveToNewLocationsOptions, cn as MultiServiceBookingInfo, aj as MultiServiceBookingType, fa as MultiServiceBookingTypeWithLiterals, eC as Multilingual, dl as NestedAggregation, dj as NestedAggregationItem, dk as NestedAggregationItemKindOneOf, du as NestedAggregationResults, dv as NestedAggregationResultsResultOneOf, aB as NestedAggregationType, fs as NestedAggregationTypeWithLiterals, dE as NestedResultValue, dF as NestedResultValueResultOneOf, dK as NestedResults, dz as NestedValueAggregationResult, b5 as OnlineBooking, eq as Page, d2 as Paging, d5 as PagingMetadataV2, ci as ParticipantChoices, ce as ParticipantNotification, bn as ParticipantsPolicy, aX as Payment, b3 as PaymentOptions, aY as PaymentRateOneOf, ap as PaymentStatus, fg as PaymentStatusWithLiterals, c3 as PhoneCall, aO as PlacementType, fF as PlacementTypeWithLiterals, ar as Platform, fi as PlatformWithLiterals, bg as PolicyDescription, e8 as PricingPlanSelection, et as Properties, eI as PropertiesChange, dR as QueryBookingFormsRequest, e0 as QueryCategoriesFilter, d$ as QueryCategoriesRequest, dX as QueryLocationsFilter, dW as QueryLocationsRequest, dO as QueryPoliciesRequest, e1 as QueryServicesMultiLanguageRequest, e2 as QueryServicesMultiLanguageResponse, c_ as QueryServicesRequest, d4 as QueryServicesResponse, c$ as QueryV2, d0 as QueryV2PagingMethodOneOf, dg as RangeAggregation, dt as RangeAggregationResult, dc as RangeBucket, dB as RangeResult, dx as RangeResults, bv as RankingOptions, ae as RankingOrder, f5 as RankingOrderWithLiterals, a9 as RateType, f0 as RateTypeWithLiterals, e4 as RemovedLocationSessionsAction, e5 as RemovedLocationSessionsActionActionOptionsOneOf, aF as RequestedFields, fw as RequestedFieldsWithLiterals, bl as ReschedulePolicy, aQ as ResolutionMethod, fH as ResolutionMethodWithLiterals, bF as ResourceGroup, bG as ResourceIds, c4 as ResourceSelection, ak as ResourceTransparency, fb as ResourceTransparencyWithLiterals, bJ as ResourceType, bo as ResourcesPolicy, cs as RestoreInfo, dG as Results, bs as SaveCreditCardPolicy, dh as ScalarAggregation, dD as ScalarDateResult, dC as ScalarResult, aA as ScalarType, fr as ScalarTypeWithLiterals, by as Schedule, dp as SearchDetails, d7 as SearchServicesRequest, aq as SelectedPaymentOption, fh as SelectedPaymentOptionWithLiterals, am as SelectionMethod, fd as SelectionMethodWithLiterals, bN as SeoSchema, cO as ServiceAvailabilityConstraints, ck as ServiceChoice, cl as ServiceChoiceChoiceOneOf, cj as ServiceChoices, eY as ServiceQuerySpec, bH as ServiceResource, bI as ServiceResourceSelectionOneOf, eZ as ServiceSearchSpec, a8 as ServiceType, e$ as ServiceTypeWithLiterals, eX as ServicesQueryResult, bV as ServicesUrlsChanged, eT as SetAddOnsForGroupRequest, bU as SetCustomSlugEvent, eb as SetCustomSlugRequest, e3 as SetServiceLocationsRequest, bQ as Settings, eK as SiteCloned, eJ as SiteCreated, es as SitePropertiesEvent, er as SitePropertiesNotification, bK as Slug, ay as SortDirection, fp as SortDirectionWithLiterals, aw as SortOrder, fn as SortOrderWithLiterals, ax as SortType, fo as SortTypeWithLiterals, d1 as Sorting, af as SortingMethodType, f6 as SortingMethodTypeWithLiterals, eB as SpecialHourPeriod, cP as SplitInterval, bC as StaffMediaItem, bD as StaffMediaItemItemOneOf, bB as StaffMember, bE as StaffMemberDetails, bt as StaffSortingPolicy, bu as StaffSortingPolicyOptionsOneOf, aJ as Status, fA as StatusWithLiterals, c9 as StreetAddress, cb as Subdivision, b1 as SubscriptionPayment, eD as SupportedLanguage, bP as Tag, bS as TaxableAddress, ai as TaxableAddressType, f9 as TaxableAddressTypeWithLiterals, eA as TimePeriod, ag as Timing, f7 as TimingWithLiterals, eF as Translation, bL as URLs, eO as UpdateAddOnGroupRequest, cQ as UpdateServiceRequest, cR as UpdateServiceResponse, eo as UserDomainInfoChangedEvent, aU as V2Category, bA as V2Duration, b7 as V2Location, b8 as V2LocationOptionsOneOf, cW as V2ParticipantNotification, bT as V2PhoneCall, av as V2RequestedFields, fm as V2RequestedFieldsWithLiterals, ew as V4Address, cC as ValidateServiceRequest, cD as ValidateServiceResponse, ec as ValidateSlugRequest, de as ValueAggregation, df as ValueAggregationOptionsOneOf, ds as ValueAggregationResult, dA as ValueResult, dw as ValueResults, an as ValueType, fe as ValueTypeWithLiterals, b0 as VariedPayment, bm as WaitlistPolicy, au as WebhookIdentityType, fl as WebhookIdentityTypeWithLiterals, e_ as utils } from './bookings-services-v2-service-services.universal-
|
|
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-CaGsi0am.js';
|
|
3
|
+
export { cz as AccountInfo, eW as AccountInfoMetadata, aG as Action, cv as ActionEvent, fx as ActionWithLiterals, as as Actor, fj as ActorWithLiterals, eQ as AddOn, eR as AddOnAddOnInfoOneOf, bR as AddOnDetails, eS as AddOnGroupDetail, ac as AddOnPaymentOptions, f3 as AddOnPaymentOptionsWithLiterals, c7 as Address, ex as AddressHint, ca as AddressLocation, c8 as AddressStreetOneOf, da as Aggregation, dr as AggregationData, db as AggregationKindOneOf, dM as AggregationResults, dN as AggregationResultsResultOneOf, dL as AggregationResultsScalarDateResult, dy as AggregationResultsScalarResult, aD as AggregationType, fu as AggregationTypeWithLiterals, cI as ApplicationError, bz as AvailabilityConstraints, eU as BaseEventMetadata, em as Behavior, en as BehaviorBehaviorOneOf, ei as Benefit, eh as BenefitNotification, aL as BenefitType, fC as BenefitTypeWithLiterals, bj as BookAfterStartPolicy, co as BookedAddOn, b_ as BookedEntity, b$ as BookedEntityItemOneOf, c1 as BookedResource, c5 as BookedSchedule, c0 as BookedSlot, bY as Booking, dS as BookingForm, bZ as BookingParticipantsInfoOneOf, bf as BookingPolicy, dQ as BookingPolicyWithServices, cd as BookingSource, ao as BookingStatus, ff as BookingStatusWithLiterals, cJ as BulkActionMetadata, cF as BulkCreateServicesRequest, cZ as BulkDeleteServicesByFilterRequest, cY as BulkDeleteServicesRequest, cG as BulkServiceResult, cU as BulkUpdateServicesByFilterRequest, cS as BulkUpdateServicesRequest, bd as BusinessLocationOptions, dY as BusinessLocations, ez as BusinessSchedule, bp as CancellationFeePolicy, bk as CancellationPolicy, bq as CancellationWindow, br as CancellationWindowFeeOneOf, eu as Categories, ef as Category, ee as CategoryNotification, aK as CategoryNotificationEvent, fB as CategoryNotificationEventWithLiterals, eG as ChangeContext, eH as ChangeContextPayloadOneOf, aI as CloneErrors, fz as CloneErrorsWithLiterals, ed as CloneServiceRequest, b9 as CommonAddress, bc as CommonAddressLocation, ba as CommonAddressStreetOneOf, cf as CommonIdentificationData, cg as CommonIdentificationDataIdOneOf, fI as CommonQueryWithEntityContext, fJ as CommonSearchWithEntityContext, bb as CommonStreetAddress, ah as CompletionRequirement, f8 as CompletionRequirementWithLiterals, b6 as Conferencing, dU as ConnectedService, eE as ConsentPolicy, c6 as ContactDetails, dV as CountServicesRequest, eL as CreateAddOnGroupRequest, cA as CreateServiceRequest, cB as CreateServiceResponse, aN as CrudType, fE as CrudTypeWithLiterals, d3 as CursorPaging, dq as CursorPagingMetadata, dP as CursorQueryPagingMethodOneOf, d8 as CursorSearch, d9 as CursorSearchPagingMethodOneOf, d6 as Cursors, cc as CustomFormField, be as CustomLocationOptions, dZ as CustomLocations, bw as CustomOptions, a$ as CustomPayment, d_ as CustomerLocations, di as DateHistogramAggregation, dH as DateHistogramResult, dJ as DateHistogramResults, aP as DayOfWeek, fG as DayOfWeekWithLiterals, eM as DeleteAddOnGroupRequest, eN as DeleteAddOnGroupResponse, cV as DeleteServiceRequest, cX as DeleteServiceResponse, ea as DisablePricingPlansForServiceRequest, ek as Discount, el as DiscountDiscountOneOf, b4 as DiscountInfo, cp as DomainEvent, cq as DomainEventBodyOneOf, bW as DummyRequest, bX as DummyResponse, cm as Duration, eg as Empty, e7 as EnablePricingPlansForServiceRequest, cr as EntityCreatedEvent, cu as EntityDeletedEvent, ct as EntityUpdatedEvent, ej as EntryPass, aM as Event, eV as EventMetadata, fD as EventWithLiterals, bM as ExtendedFields, cE as FieldViolation, ab as FirstChargeDateType, f2 as FirstChargeDateTypeWithLiterals, aZ as FixedPayment, ch as FlowControlSettings, aV as Form, dT as FormDetails, aW as FormSettings, aa as FrequencyType, f1 as FrequencyTypeWithLiterals, b2 as FullUpfrontPayment, ey as GeoCoordinates, cM as GetServiceAvailabilityConstraintsRequest, cN as GetServiceAvailabilityConstraintsResponse, cK as GetServiceRequest, cL as GetServiceResponse, dm as GroupByAggregation, dn as GroupByAggregationKindOneOf, dI as GroupByValueResults, ep as HtmlSitePublished, cx as IdentificationData, cy as IdentificationDataIdOneOf, at as IdentityType, fk as IdentityTypeWithLiterals, dd as IncludeMissingValuesOptions, bx as IntakeFormPolicy, aC as Interval, ft as IntervalWithLiterals, e9 as InvalidPricingPlan, aH as InvalidSlugError, fy as InvalidSlugErrorWithLiterals, cH as ItemMetadata, bO as Keyword, bh as LimitEarlyBookingPolicy, bi as LimitLateBookingPolicy, eP as ListAddOnGroupsByServiceIdRequest, ev as Locale, c2 as Location, al as LocationType, ad as LocationTypeEnumLocationType, f4 as LocationTypeEnumLocationTypeWithLiterals, fc as LocationTypeWithLiterals, cT as MaskedService, aR as Media, aS as MediaItem, aT as MediaItemItemOneOf, cw as MessageEnvelope, az as MissingValues, fq as MissingValuesWithLiterals, aE as Mode, fv as ModeWithLiterals, a_ as Money, e6 as MoveToNewLocationsOptions, cn as MultiServiceBookingInfo, aj as MultiServiceBookingType, fa as MultiServiceBookingTypeWithLiterals, eC as Multilingual, dl as NestedAggregation, dj as NestedAggregationItem, dk as NestedAggregationItemKindOneOf, du as NestedAggregationResults, dv as NestedAggregationResultsResultOneOf, aB as NestedAggregationType, fs as NestedAggregationTypeWithLiterals, dE as NestedResultValue, dF as NestedResultValueResultOneOf, dK as NestedResults, dz as NestedValueAggregationResult, b5 as OnlineBooking, eq as Page, d2 as Paging, d5 as PagingMetadataV2, ci as ParticipantChoices, ce as ParticipantNotification, bn as ParticipantsPolicy, aX as Payment, b3 as PaymentOptions, aY as PaymentRateOneOf, ap as PaymentStatus, fg as PaymentStatusWithLiterals, c3 as PhoneCall, aO as PlacementType, fF as PlacementTypeWithLiterals, ar as Platform, fi as PlatformWithLiterals, bg as PolicyDescription, e8 as PricingPlanSelection, et as Properties, eI as PropertiesChange, dR as QueryBookingFormsRequest, e0 as QueryCategoriesFilter, d$ as QueryCategoriesRequest, dX as QueryLocationsFilter, dW as QueryLocationsRequest, dO as QueryPoliciesRequest, e1 as QueryServicesMultiLanguageRequest, e2 as QueryServicesMultiLanguageResponse, c_ as QueryServicesRequest, d4 as QueryServicesResponse, c$ as QueryV2, d0 as QueryV2PagingMethodOneOf, dg as RangeAggregation, dt as RangeAggregationResult, dc as RangeBucket, dB as RangeResult, dx as RangeResults, bv as RankingOptions, ae as RankingOrder, f5 as RankingOrderWithLiterals, a9 as RateType, f0 as RateTypeWithLiterals, e4 as RemovedLocationSessionsAction, e5 as RemovedLocationSessionsActionActionOptionsOneOf, aF as RequestedFields, fw as RequestedFieldsWithLiterals, bl as ReschedulePolicy, aQ as ResolutionMethod, fH as ResolutionMethodWithLiterals, bF as ResourceGroup, bG as ResourceIds, c4 as ResourceSelection, ak as ResourceTransparency, fb as ResourceTransparencyWithLiterals, bJ as ResourceType, bo as ResourcesPolicy, cs as RestoreInfo, dG as Results, bs as SaveCreditCardPolicy, dh as ScalarAggregation, dD as ScalarDateResult, dC as ScalarResult, aA as ScalarType, fr as ScalarTypeWithLiterals, by as Schedule, dp as SearchDetails, d7 as SearchServicesRequest, aq as SelectedPaymentOption, fh as SelectedPaymentOptionWithLiterals, am as SelectionMethod, fd as SelectionMethodWithLiterals, bN as SeoSchema, cO as ServiceAvailabilityConstraints, ck as ServiceChoice, cl as ServiceChoiceChoiceOneOf, cj as ServiceChoices, eY as ServiceQuerySpec, bH as ServiceResource, bI as ServiceResourceSelectionOneOf, eZ as ServiceSearchSpec, a8 as ServiceType, e$ as ServiceTypeWithLiterals, eX as ServicesQueryResult, bV as ServicesUrlsChanged, eT as SetAddOnsForGroupRequest, bU as SetCustomSlugEvent, eb as SetCustomSlugRequest, e3 as SetServiceLocationsRequest, bQ as Settings, eK as SiteCloned, eJ as SiteCreated, es as SitePropertiesEvent, er as SitePropertiesNotification, bK as Slug, ay as SortDirection, fp as SortDirectionWithLiterals, aw as SortOrder, fn as SortOrderWithLiterals, ax as SortType, fo as SortTypeWithLiterals, d1 as Sorting, af as SortingMethodType, f6 as SortingMethodTypeWithLiterals, eB as SpecialHourPeriod, cP as SplitInterval, bC as StaffMediaItem, bD as StaffMediaItemItemOneOf, bB as StaffMember, bE as StaffMemberDetails, bt as StaffSortingPolicy, bu as StaffSortingPolicyOptionsOneOf, aJ as Status, fA as StatusWithLiterals, c9 as StreetAddress, cb as Subdivision, b1 as SubscriptionPayment, eD as SupportedLanguage, bP as Tag, bS as TaxableAddress, ai as TaxableAddressType, f9 as TaxableAddressTypeWithLiterals, eA as TimePeriod, ag as Timing, f7 as TimingWithLiterals, eF as Translation, bL as URLs, eO as UpdateAddOnGroupRequest, cQ as UpdateServiceRequest, cR as UpdateServiceResponse, eo as UserDomainInfoChangedEvent, aU as V2Category, bA as V2Duration, b7 as V2Location, b8 as V2LocationOptionsOneOf, cW as V2ParticipantNotification, bT as V2PhoneCall, av as V2RequestedFields, fm as V2RequestedFieldsWithLiterals, ew as V4Address, cC as ValidateServiceRequest, cD as ValidateServiceResponse, ec as ValidateSlugRequest, de as ValueAggregation, df as ValueAggregationOptionsOneOf, ds as ValueAggregationResult, dA as ValueResult, dw as ValueResults, an as ValueType, fe as ValueTypeWithLiterals, b0 as VariedPayment, bm as WaitlistPolicy, au as WebhookIdentityType, fl as WebhookIdentityTypeWithLiterals, e_ as utils } from './bookings-services-v2-service-services.universal-CaGsi0am.js';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|