@wix/auto_sdk_bookings_services 1.0.91 → 1.0.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/{bookings-services-v2-service-services.universal-B1GAthHy.d.ts → bookings-services-v2-service-services.universal-C8m36LwQ.d.ts} +15 -5
- 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 +6 -6
- package/build/es/{bookings-services-v2-service-services.universal-B1GAthHy.d.mts → bookings-services-v2-service-services.universal-C8m36LwQ.d.mts} +15 -5
- 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 +6 -6
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-B1GAthHy.d.ts → bookings-services-v2-service-services.universal-C8m36LwQ.d.ts} +15 -5
- 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 +6 -6
- package/build/internal/es/{bookings-services-v2-service-services.universal-B1GAthHy.d.mts → bookings-services-v2-service-services.universal-C8m36LwQ.d.mts} +15 -5
- 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 +6 -6
- package/package.json +2 -2
|
@@ -1105,21 +1105,21 @@ interface Tag {
|
|
|
1105
1105
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
1106
1106
|
*/
|
|
1107
1107
|
props?: Record<string, any> | null;
|
|
1108
|
-
/** SEO tag
|
|
1108
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
1109
1109
|
meta?: Record<string, any> | null;
|
|
1110
1110
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1111
1111
|
children?: string;
|
|
1112
|
-
/** Whether the tag is a custom tag. */
|
|
1112
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
1113
1113
|
custom?: boolean;
|
|
1114
|
-
/** Whether the tag is disabled. */
|
|
1114
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
1115
1115
|
disabled?: boolean;
|
|
1116
1116
|
}
|
|
1117
1117
|
interface Settings {
|
|
1118
1118
|
/**
|
|
1119
|
-
* Whether the
|
|
1119
|
+
* Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.
|
|
1120
1120
|
*
|
|
1121
1121
|
*
|
|
1122
|
-
* Default: `false` (
|
|
1122
|
+
* Default: `false` (automatical redirect is enabled).
|
|
1123
1123
|
*/
|
|
1124
1124
|
preventAutoRedirect?: boolean;
|
|
1125
1125
|
/**
|
|
@@ -3378,21 +3378,25 @@ interface SiteCloned {
|
|
|
3378
3378
|
/** Origin site id. */
|
|
3379
3379
|
originMetaSiteId?: string;
|
|
3380
3380
|
}
|
|
3381
|
+
/** @docsIgnore */
|
|
3381
3382
|
type DeleteAddOnGroupApplicationErrors = {
|
|
3382
3383
|
code?: 'GROUP_NOT_ON_SERVICE';
|
|
3383
3384
|
description?: string;
|
|
3384
3385
|
data?: Record<string, any>;
|
|
3385
3386
|
};
|
|
3387
|
+
/** @docsIgnore */
|
|
3386
3388
|
type UpdateAddOnGroupApplicationErrors = {
|
|
3387
3389
|
code?: 'GROUP_NOT_ON_SERVICE';
|
|
3388
3390
|
description?: string;
|
|
3389
3391
|
data?: Record<string, any>;
|
|
3390
3392
|
};
|
|
3393
|
+
/** @docsIgnore */
|
|
3391
3394
|
type SetAddOnsForGroupApplicationErrors = {
|
|
3392
3395
|
code?: 'ADD_ON_GROUP_NOT_FOUND';
|
|
3393
3396
|
description?: string;
|
|
3394
3397
|
data?: Record<string, any>;
|
|
3395
3398
|
};
|
|
3399
|
+
/** @docsIgnore */
|
|
3396
3400
|
type CreateServiceValidationErrors = {
|
|
3397
3401
|
ruleName?: 'INVALID_FORM';
|
|
3398
3402
|
} | {
|
|
@@ -3436,6 +3440,7 @@ type CreateServiceValidationErrors = {
|
|
|
3436
3440
|
} | {
|
|
3437
3441
|
ruleName?: 'INVALID_SESSION_DURATION';
|
|
3438
3442
|
};
|
|
3443
|
+
/** @docsIgnore */
|
|
3439
3444
|
type UpdateServiceValidationErrors = {
|
|
3440
3445
|
ruleName?: 'INVALID_FORM';
|
|
3441
3446
|
} | {
|
|
@@ -3479,11 +3484,13 @@ type UpdateServiceValidationErrors = {
|
|
|
3479
3484
|
} | {
|
|
3480
3485
|
ruleName?: 'INVALID_SESSION_DURATION';
|
|
3481
3486
|
};
|
|
3487
|
+
/** @docsIgnore */
|
|
3482
3488
|
type QueryBookingFormsApplicationErrors = {
|
|
3483
3489
|
code?: 'DEFAULT_BOOKING_FORM_NOT_FOUND';
|
|
3484
3490
|
description?: string;
|
|
3485
3491
|
data?: Record<string, any>;
|
|
3486
3492
|
};
|
|
3493
|
+
/** @docsIgnore */
|
|
3487
3494
|
type EnablePricingPlansForServiceApplicationErrors = {
|
|
3488
3495
|
code?: 'INVALID_PRICING_PLAN';
|
|
3489
3496
|
description?: string;
|
|
@@ -3493,16 +3500,19 @@ type EnablePricingPlansForServiceApplicationErrors = {
|
|
|
3493
3500
|
description?: string;
|
|
3494
3501
|
data?: Record<string, any>;
|
|
3495
3502
|
};
|
|
3503
|
+
/** @docsIgnore */
|
|
3496
3504
|
type DisablePricingPlansForServiceApplicationErrors = {
|
|
3497
3505
|
code?: 'INVALID_PRICING_PLAN';
|
|
3498
3506
|
description?: string;
|
|
3499
3507
|
data?: InvalidPricingPlan;
|
|
3500
3508
|
};
|
|
3509
|
+
/** @docsIgnore */
|
|
3501
3510
|
type SetCustomSlugApplicationErrors = {
|
|
3502
3511
|
code?: 'SLUG_ALREADY_EXISTS';
|
|
3503
3512
|
description?: string;
|
|
3504
3513
|
data?: Record<string, any>;
|
|
3505
3514
|
};
|
|
3515
|
+
/** @docsIgnore */
|
|
3506
3516
|
type SetCustomSlugValidationErrors = {
|
|
3507
3517
|
ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
|
|
3508
3518
|
};
|
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 { A as AddOnGroup, C as CreateAddOnGroupOptions, a as CreateAddOnGroupResponse, D as DeleteAddOnGroupOptions, b as DeleteAddOnGroupApplicationErrors, U as UpdateAddOnGroupOptions, c as UpdateAddOnGroupResponse, d as UpdateAddOnGroupApplicationErrors, L as ListAddOnGroupsByServiceIdOptions, e as ListAddOnGroupsByServiceIdResponse, S as SetAddOnsForGroupOptions, f as SetAddOnsForGroupResponse, g as SetAddOnsForGroupApplicationErrors, h as Service, i as CreateServiceValidationErrors, B as BulkCreateServicesOptions, j as BulkCreateServicesResponse, k as UpdateService, l as UpdateServiceValidationErrors, m as BulkUpdateServicesOptions, n as BulkUpdateServicesResponse, o as BulkUpdateServicesByFilterOptions, p as BulkUpdateServicesByFilterResponse, q as DeleteServiceOptions, r as BulkDeleteServicesOptions, s as BulkDeleteServicesResponse, t as BulkDeleteServicesByFilterOptions, u as BulkDeleteServicesByFilterResponse, v as ServicesQueryBuilder, w as ServiceSearch, x as SearchServicesResponse, y as CursorQuery, Q as QueryPoliciesResponse, z as QueryBookingFormsOptions, E as QueryBookingFormsResponse, F as QueryBookingFormsApplicationErrors, G as CountServicesOptions, H as CountServicesResponse, I as QueryLocationsOptions, J as QueryLocationsResponse, K as QueryCategoriesOptions, M as QueryCategoriesResponse, N as Location, O as SetServiceLocationsOptions, P as SetServiceLocationsResponse, R as EnablePricingPlansForServiceResponse, T as EnablePricingPlansForServiceApplicationErrors, V as DisablePricingPlansForServiceOptions, W as DisablePricingPlansForServiceResponse, X as DisablePricingPlansForServiceApplicationErrors, Y as SetCustomSlugOptions, Z as SetCustomSlugResponse, _ as SetCustomSlugApplicationErrors, $ as SetCustomSlugValidationErrors, a0 as ValidateSlugOptions, a1 as ValidateSlugResponse, a2 as CloneServiceResponse, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope } from './bookings-services-v2-service-services.universal-
|
|
3
|
-
export { al as Action, bB as ActionEvent, ed as ActionWithLiterals, bK as AddOn, bL as AddOnAddOnInfoOneOf, bn as AddOnDetails, bM as AddOnGroupDetail, dH as Address, dI as AddressHint, aP as AddressLocation, co as Aggregation, cE as AggregationData, cp as AggregationKindOneOf, cX as AggregationResults, cY as AggregationResultsResultOneOf, cL as AggregationResultsScalarResult, ai as AggregationType, ea as AggregationTypeWithLiterals, bW as ApplicationError, b5 as AvailabilityConstraints, dW as BaseEventMetadata, dx as Behavior, dy as BehaviorBehaviorOneOf, dt as Benefit, ds as BenefitNotification, aq as BenefitType, ei as BenefitTypeWithLiterals, aW as BookAfterStartPolicy, d1 as BookingForm, aS as BookingPolicy, c$ as BookingPolicyWithServices, bX as BulkActionMetadata, bT as BulkCreateServicesRequest, cb as BulkDeleteServicesByFilterRequest, ca as BulkDeleteServicesRequest, bU as BulkServiceResult, c6 as BulkUpdateServicesByFilterRequest, c4 as BulkUpdateServicesRequest, aQ as BusinessLocationOptions, d7 as BusinessLocations, dK as BusinessSchedule, b0 as CancellationFeePolicy, aX as CancellationPolicy, b1 as CancellationWindow, b2 as CancellationWindowFeeOneOf, dF as Categories, dq as Category, dp as CategoryNotification, ap as CategoryNotificationEvent, eh as CategoryNotificationEventWithLiterals, dR as ChangeContext, dS as ChangeContextPayloadOneOf, an as CloneErrors, ef as CloneErrorsWithLiterals, dn as CloneServiceRequest, aM as CommonAddress, aN as CommonAddressStreetOneOf, eo as CommonSearchWithEntityContext, aK as Conferencing, d3 as ConnectedService, dP as ConsentPolicy, d4 as CountServicesRequest, bF as CreateAddOnGroupRequest, bO as CreateServiceRequest, bP as CreateServiceResponse, as as CrudType, ek as CrudTypeWithLiterals, ch as CursorPaging, cD as CursorPagingMetadata, c_ as CursorQueryPagingMethodOneOf, cm as CursorSearch, cn as CursorSearchPagingMethodOneOf, ck as Cursors, aR as CustomLocationOptions, d8 as CustomLocations, aG as CustomPayment, d9 as CustomerLocations, cw as DateHistogramAggregation, cT as DateHistogramResult, cV as DateHistogramResults, au as DayOfWeek, em as DayOfWeekWithLiterals, br as Delete, bG as DeleteAddOnGroupRequest, bH as DeleteAddOnGroupResponse, c7 as DeleteServiceRequest, c9 as DeleteServiceResponse, dk as DisablePricingPlansForServiceRequest, dv as Discount, dw as DiscountDiscountOneOf, bv as DomainEvent, bw as DomainEventBodyOneOf, b6 as Duration, dr as Empty, di as EnablePricingPlansForServiceRequest, bx as EntityCreatedEvent, bA as EntityDeletedEvent, bz as EntityUpdatedEvent, du as EntryPass, ar as Event, dX as EventMetadata, ej as EventWithLiterals, bi as ExtendedFields, bS as FieldViolation, aE as FixedPayment, aA as Form, d2 as FormDetails, aB as FormSettings, dJ as GeoCoordinates, b_ as GetServiceAvailabilityConstraintsRequest, b$ as GetServiceAvailabilityConstraintsResponse, bY as GetServiceRequest, bZ as GetServiceResponse, cA as GroupByAggregation, cB as GroupByAggregationKindOneOf, cU as GroupByValueResults, dA as HtmlSitePublished, bD as IdentificationData, bE as IdentificationDataIdOneOf, cr as IncludeMissingValuesOptions, ah as Interval, e9 as IntervalWithLiterals, dj as InvalidPricingPlan, am as InvalidSlugError, ee as InvalidSlugErrorWithLiterals, bV as ItemMetadata, bk as Keyword, aU as LimitEarlyBookingPolicy, aV as LimitLateBookingPolicy, bJ as ListAddOnGroupsByServiceIdRequest, dG as Locale, aL as LocationOptionsOneOf, a8 as LocationType, e0 as LocationTypeWithLiterals, c5 as MaskedService, aw as Media, ax as MediaItem, ay as MediaItemItemOneOf, bC as MessageEnvelope, ae as MissingValues, e6 as MissingValuesWithLiterals, aj as Mode, eb as ModeWithLiterals, aF as Money, dh as MoveToNewLocationsOptions, dN as Multilingual, cz as NestedAggregation, cx as NestedAggregationItem, cy as NestedAggregationItemKindOneOf, cH as NestedAggregationResults, cI as NestedAggregationResultsResultOneOf, ag as NestedAggregationType, e8 as NestedAggregationTypeWithLiterals, cQ as NestedResultValue, cR as NestedResultValueResultOneOf, cW as NestedResults, cM as NestedValueAggregationResult, aJ as OnlineBooking, dB as Page, cg as Paging, cj as PagingMetadataV2, c8 as ParticipantNotification, a_ as ParticipantsPolicy, aC as Payment, aI as PaymentOptions, aD as PaymentRateOneOf, at as PlacementType, el as PlacementTypeWithLiterals, aT as PolicyDescription, dE as Properties, dT as PropertiesChange, d0 as QueryBookingFormsRequest, db as QueryCategoriesFilter, da as QueryCategoriesRequest, d6 as QueryLocationsFilter, d5 as QueryLocationsRequest, cZ as QueryPoliciesRequest, dc as QueryServicesMultiLanguageRequest, dd as QueryServicesMultiLanguageResponse, cc as QueryServicesRequest, ci as QueryServicesResponse, cd as QueryV2, ce as QueryV2PagingMethodOneOf, cu as RangeAggregation, cG as RangeAggregationResult, cq as RangeBucket, cO as RangeResult, cK as RangeResults, a7 as RateType, d$ as RateTypeWithLiterals, bo as ReindexMessage, bp as ReindexMessageActionOneOf, df as RemovedLocationSessionsAction, dg as RemovedLocationSessionsActionActionOptionsOneOf, ak as RequestedFields, ec as RequestedFieldsWithLiterals, aY as ReschedulePolicy, av as ResolutionMethod, en as ResolutionMethodWithLiterals, bb as ResourceGroup, bc as ResourceIds, bf as ResourceType, a$ as ResourcesPolicy, by as RestoreInfo, cS as Results, b3 as SaveCreditCardPolicy, cv as ScalarAggregation, cP as ScalarResult, af as ScalarType, e7 as ScalarTypeWithLiterals, b4 as Schedule, bs as Schema, cC as SearchDetails, cl as SearchServicesRequest, bj as SeoSchema, c0 as ServiceAvailabilityConstraints, bd as ServiceResource, be as ServiceResourceSelectionOneOf, dZ as ServiceSearchSpec, a6 as ServiceType, d_ as ServiceTypeWithLiterals, dY as ServicesQueryResult, bu as ServicesUrlsChanged, bN as SetAddOnsForGroupRequest, bt as SetCustomSlugEvent, dl as SetCustomSlugRequest, de as SetServiceLocationsRequest, bm as Settings, dV as SiteCloned, dU as SiteCreated, dD as SitePropertiesEvent, dC as SitePropertiesNotification, bg as Slug, ad as SortDirection, e5 as SortDirectionWithLiterals, ab as SortOrder, e3 as SortOrderWithLiterals, ac as SortType, e4 as SortTypeWithLiterals, cf as Sorting, dM as SpecialHourPeriod, c1 as SplitInterval, b8 as StaffMediaItem, b9 as StaffMediaItemItemOneOf, b7 as StaffMember, ba as StaffMemberDetails, ao as Status, eg as StatusWithLiterals, aO as StreetAddress, dO as SupportedLanguage, bl as Tag, dL as TimePeriod, dQ as Translation, bh as URLs, bI as UpdateAddOnGroupRequest, c2 as UpdateServiceRequest, c3 as UpdateServiceResponse, bq as Upsert, dz as UserDomainInfoChangedEvent, az as V2Category, aa as V2RequestedFields, e2 as V2RequestedFieldsWithLiterals, bQ as ValidateServiceRequest, bR as ValidateServiceResponse, dm as ValidateSlugRequest, cs as ValueAggregation, ct as ValueAggregationOptionsOneOf, cF as ValueAggregationResult, cN as ValueResult, cJ as ValueResults, aH as VariedPayment, aZ as WaitlistPolicy, a9 as WebhookIdentityType, e1 as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-
|
|
2
|
+
import { A as AddOnGroup, C as CreateAddOnGroupOptions, a as CreateAddOnGroupResponse, D as DeleteAddOnGroupOptions, b as DeleteAddOnGroupApplicationErrors, U as UpdateAddOnGroupOptions, c as UpdateAddOnGroupResponse, d as UpdateAddOnGroupApplicationErrors, L as ListAddOnGroupsByServiceIdOptions, e as ListAddOnGroupsByServiceIdResponse, S as SetAddOnsForGroupOptions, f as SetAddOnsForGroupResponse, g as SetAddOnsForGroupApplicationErrors, h as Service, i as CreateServiceValidationErrors, B as BulkCreateServicesOptions, j as BulkCreateServicesResponse, k as UpdateService, l as UpdateServiceValidationErrors, m as BulkUpdateServicesOptions, n as BulkUpdateServicesResponse, o as BulkUpdateServicesByFilterOptions, p as BulkUpdateServicesByFilterResponse, q as DeleteServiceOptions, r as BulkDeleteServicesOptions, s as BulkDeleteServicesResponse, t as BulkDeleteServicesByFilterOptions, u as BulkDeleteServicesByFilterResponse, v as ServicesQueryBuilder, w as ServiceSearch, x as SearchServicesResponse, y as CursorQuery, Q as QueryPoliciesResponse, z as QueryBookingFormsOptions, E as QueryBookingFormsResponse, F as QueryBookingFormsApplicationErrors, G as CountServicesOptions, H as CountServicesResponse, I as QueryLocationsOptions, J as QueryLocationsResponse, K as QueryCategoriesOptions, M as QueryCategoriesResponse, N as Location, O as SetServiceLocationsOptions, P as SetServiceLocationsResponse, R as EnablePricingPlansForServiceResponse, T as EnablePricingPlansForServiceApplicationErrors, V as DisablePricingPlansForServiceOptions, W as DisablePricingPlansForServiceResponse, X as DisablePricingPlansForServiceApplicationErrors, Y as SetCustomSlugOptions, Z as SetCustomSlugResponse, _ as SetCustomSlugApplicationErrors, $ as SetCustomSlugValidationErrors, a0 as ValidateSlugOptions, a1 as ValidateSlugResponse, a2 as CloneServiceResponse, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope } from './bookings-services-v2-service-services.universal-C8m36LwQ.js';
|
|
3
|
+
export { al as Action, bB as ActionEvent, ed as ActionWithLiterals, bK as AddOn, bL as AddOnAddOnInfoOneOf, bn as AddOnDetails, bM as AddOnGroupDetail, dH as Address, dI as AddressHint, aP as AddressLocation, co as Aggregation, cE as AggregationData, cp as AggregationKindOneOf, cX as AggregationResults, cY as AggregationResultsResultOneOf, cL as AggregationResultsScalarResult, ai as AggregationType, ea as AggregationTypeWithLiterals, bW as ApplicationError, b5 as AvailabilityConstraints, dW as BaseEventMetadata, dx as Behavior, dy as BehaviorBehaviorOneOf, dt as Benefit, ds as BenefitNotification, aq as BenefitType, ei as BenefitTypeWithLiterals, aW as BookAfterStartPolicy, d1 as BookingForm, aS as BookingPolicy, c$ as BookingPolicyWithServices, bX as BulkActionMetadata, bT as BulkCreateServicesRequest, cb as BulkDeleteServicesByFilterRequest, ca as BulkDeleteServicesRequest, bU as BulkServiceResult, c6 as BulkUpdateServicesByFilterRequest, c4 as BulkUpdateServicesRequest, aQ as BusinessLocationOptions, d7 as BusinessLocations, dK as BusinessSchedule, b0 as CancellationFeePolicy, aX as CancellationPolicy, b1 as CancellationWindow, b2 as CancellationWindowFeeOneOf, dF as Categories, dq as Category, dp as CategoryNotification, ap as CategoryNotificationEvent, eh as CategoryNotificationEventWithLiterals, dR as ChangeContext, dS as ChangeContextPayloadOneOf, an as CloneErrors, ef as CloneErrorsWithLiterals, dn as CloneServiceRequest, aM as CommonAddress, aN as CommonAddressStreetOneOf, eo as CommonSearchWithEntityContext, aK as Conferencing, d3 as ConnectedService, dP as ConsentPolicy, d4 as CountServicesRequest, bF as CreateAddOnGroupRequest, bO as CreateServiceRequest, bP as CreateServiceResponse, as as CrudType, ek as CrudTypeWithLiterals, ch as CursorPaging, cD as CursorPagingMetadata, c_ as CursorQueryPagingMethodOneOf, cm as CursorSearch, cn as CursorSearchPagingMethodOneOf, ck as Cursors, aR as CustomLocationOptions, d8 as CustomLocations, aG as CustomPayment, d9 as CustomerLocations, cw as DateHistogramAggregation, cT as DateHistogramResult, cV as DateHistogramResults, au as DayOfWeek, em as DayOfWeekWithLiterals, br as Delete, bG as DeleteAddOnGroupRequest, bH as DeleteAddOnGroupResponse, c7 as DeleteServiceRequest, c9 as DeleteServiceResponse, dk as DisablePricingPlansForServiceRequest, dv as Discount, dw as DiscountDiscountOneOf, bv as DomainEvent, bw as DomainEventBodyOneOf, b6 as Duration, dr as Empty, di as EnablePricingPlansForServiceRequest, bx as EntityCreatedEvent, bA as EntityDeletedEvent, bz as EntityUpdatedEvent, du as EntryPass, ar as Event, dX as EventMetadata, ej as EventWithLiterals, bi as ExtendedFields, bS as FieldViolation, aE as FixedPayment, aA as Form, d2 as FormDetails, aB as FormSettings, dJ as GeoCoordinates, b_ as GetServiceAvailabilityConstraintsRequest, b$ as GetServiceAvailabilityConstraintsResponse, bY as GetServiceRequest, bZ as GetServiceResponse, cA as GroupByAggregation, cB as GroupByAggregationKindOneOf, cU as GroupByValueResults, dA as HtmlSitePublished, bD as IdentificationData, bE as IdentificationDataIdOneOf, cr as IncludeMissingValuesOptions, ah as Interval, e9 as IntervalWithLiterals, dj as InvalidPricingPlan, am as InvalidSlugError, ee as InvalidSlugErrorWithLiterals, bV as ItemMetadata, bk as Keyword, aU as LimitEarlyBookingPolicy, aV as LimitLateBookingPolicy, bJ as ListAddOnGroupsByServiceIdRequest, dG as Locale, aL as LocationOptionsOneOf, a8 as LocationType, e0 as LocationTypeWithLiterals, c5 as MaskedService, aw as Media, ax as MediaItem, ay as MediaItemItemOneOf, bC as MessageEnvelope, ae as MissingValues, e6 as MissingValuesWithLiterals, aj as Mode, eb as ModeWithLiterals, aF as Money, dh as MoveToNewLocationsOptions, dN as Multilingual, cz as NestedAggregation, cx as NestedAggregationItem, cy as NestedAggregationItemKindOneOf, cH as NestedAggregationResults, cI as NestedAggregationResultsResultOneOf, ag as NestedAggregationType, e8 as NestedAggregationTypeWithLiterals, cQ as NestedResultValue, cR as NestedResultValueResultOneOf, cW as NestedResults, cM as NestedValueAggregationResult, aJ as OnlineBooking, dB as Page, cg as Paging, cj as PagingMetadataV2, c8 as ParticipantNotification, a_ as ParticipantsPolicy, aC as Payment, aI as PaymentOptions, aD as PaymentRateOneOf, at as PlacementType, el as PlacementTypeWithLiterals, aT as PolicyDescription, dE as Properties, dT as PropertiesChange, d0 as QueryBookingFormsRequest, db as QueryCategoriesFilter, da as QueryCategoriesRequest, d6 as QueryLocationsFilter, d5 as QueryLocationsRequest, cZ as QueryPoliciesRequest, dc as QueryServicesMultiLanguageRequest, dd as QueryServicesMultiLanguageResponse, cc as QueryServicesRequest, ci as QueryServicesResponse, cd as QueryV2, ce as QueryV2PagingMethodOneOf, cu as RangeAggregation, cG as RangeAggregationResult, cq as RangeBucket, cO as RangeResult, cK as RangeResults, a7 as RateType, d$ as RateTypeWithLiterals, bo as ReindexMessage, bp as ReindexMessageActionOneOf, df as RemovedLocationSessionsAction, dg as RemovedLocationSessionsActionActionOptionsOneOf, ak as RequestedFields, ec as RequestedFieldsWithLiterals, aY as ReschedulePolicy, av as ResolutionMethod, en as ResolutionMethodWithLiterals, bb as ResourceGroup, bc as ResourceIds, bf as ResourceType, a$ as ResourcesPolicy, by as RestoreInfo, cS as Results, b3 as SaveCreditCardPolicy, cv as ScalarAggregation, cP as ScalarResult, af as ScalarType, e7 as ScalarTypeWithLiterals, b4 as Schedule, bs as Schema, cC as SearchDetails, cl as SearchServicesRequest, bj as SeoSchema, c0 as ServiceAvailabilityConstraints, bd as ServiceResource, be as ServiceResourceSelectionOneOf, dZ as ServiceSearchSpec, a6 as ServiceType, d_ as ServiceTypeWithLiterals, dY as ServicesQueryResult, bu as ServicesUrlsChanged, bN as SetAddOnsForGroupRequest, bt as SetCustomSlugEvent, dl as SetCustomSlugRequest, de as SetServiceLocationsRequest, bm as Settings, dV as SiteCloned, dU as SiteCreated, dD as SitePropertiesEvent, dC as SitePropertiesNotification, bg as Slug, ad as SortDirection, e5 as SortDirectionWithLiterals, ab as SortOrder, e3 as SortOrderWithLiterals, ac as SortType, e4 as SortTypeWithLiterals, cf as Sorting, dM as SpecialHourPeriod, c1 as SplitInterval, b8 as StaffMediaItem, b9 as StaffMediaItemItemOneOf, b7 as StaffMember, ba as StaffMemberDetails, ao as Status, eg as StatusWithLiterals, aO as StreetAddress, dO as SupportedLanguage, bl as Tag, dL as TimePeriod, dQ as Translation, bh as URLs, bI as UpdateAddOnGroupRequest, c2 as UpdateServiceRequest, c3 as UpdateServiceResponse, bq as Upsert, dz as UserDomainInfoChangedEvent, az as V2Category, aa as V2RequestedFields, e2 as V2RequestedFieldsWithLiterals, bQ as ValidateServiceRequest, bR as ValidateServiceResponse, dm as ValidateSlugRequest, cs as ValueAggregation, ct as ValueAggregationOptionsOneOf, cF as ValueAggregationResult, cN as ValueResult, cJ as ValueResults, aH as VariedPayment, aZ as WaitlistPolicy, a9 as WebhookIdentityType, e1 as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-C8m36LwQ.js';
|
|
4
4
|
|
|
5
5
|
declare function createAddOnGroup$1(httpClient: HttpClient): CreateAddOnGroupSignature;
|
|
6
6
|
interface CreateAddOnGroupSignature {
|