@wix/auto_sdk_bookings_services 1.0.206 → 1.0.207
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-CbgtDTn8.d.ts → bookings-services-v2-service-services.universal-DcAQwjHz.d.ts} +25 -1
- package/build/cjs/index.d.ts +3 -3
- 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 +26 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-CbgtDTn8.d.mts → bookings-services-v2-service-services.universal-DcAQwjHz.d.mts} +25 -1
- package/build/es/index.d.mts +3 -3
- 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 +26 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-CHj4z-zm.d.ts → bookings-services-v2-service-services.universal-CyE22DHC.d.ts} +25 -1
- package/build/internal/cjs/index.d.ts +3 -3
- 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 +26 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-CHj4z-zm.d.mts → bookings-services-v2-service-services.universal-CyE22DHC.d.mts} +25 -1
- package/build/internal/es/index.d.mts +3 -3
- 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 +26 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3371,6 +3371,13 @@ interface ScalarResult {
|
|
|
3371
3371
|
/** Value of the scalar aggregation. */
|
|
3372
3372
|
value?: number;
|
|
3373
3373
|
}
|
|
3374
|
+
interface ScalarDateResult {
|
|
3375
|
+
/**
|
|
3376
|
+
* Date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
3377
|
+
* @maxLength 100
|
|
3378
|
+
*/
|
|
3379
|
+
value?: string;
|
|
3380
|
+
}
|
|
3374
3381
|
interface NestedResultValue extends NestedResultValueResultOneOf {
|
|
3375
3382
|
/** Value aggregation result. */
|
|
3376
3383
|
value?: ValueResult;
|
|
@@ -3380,6 +3387,8 @@ interface NestedResultValue extends NestedResultValueResultOneOf {
|
|
|
3380
3387
|
scalar?: ScalarResult;
|
|
3381
3388
|
/** Date histogram aggregation result. */
|
|
3382
3389
|
dateHistogram?: ValueResult;
|
|
3390
|
+
/** Scalar date aggregation result. */
|
|
3391
|
+
scalarDate?: ScalarDateResult;
|
|
3383
3392
|
}
|
|
3384
3393
|
/** @oneof */
|
|
3385
3394
|
interface NestedResultValueResultOneOf {
|
|
@@ -3391,6 +3400,8 @@ interface NestedResultValueResultOneOf {
|
|
|
3391
3400
|
scalar?: ScalarResult;
|
|
3392
3401
|
/** Date histogram aggregation result. */
|
|
3393
3402
|
dateHistogram?: ValueResult;
|
|
3403
|
+
/** Scalar date aggregation result. */
|
|
3404
|
+
scalarDate?: ScalarDateResult;
|
|
3394
3405
|
}
|
|
3395
3406
|
interface Results {
|
|
3396
3407
|
/** Map of nested aggregation results, keyed by aggregation name. */
|
|
@@ -3430,6 +3441,15 @@ interface NestedResults {
|
|
|
3430
3441
|
*/
|
|
3431
3442
|
results?: Results[];
|
|
3432
3443
|
}
|
|
3444
|
+
interface AggregationResultsScalarDateResult {
|
|
3445
|
+
/** Type of scalar date aggregation. Possible values: `MIN`, `MAX`. */
|
|
3446
|
+
type?: ScalarTypeWithLiterals;
|
|
3447
|
+
/**
|
|
3448
|
+
* Date in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
3449
|
+
* @maxLength 100
|
|
3450
|
+
*/
|
|
3451
|
+
value?: string;
|
|
3452
|
+
}
|
|
3433
3453
|
interface AggregationResults extends AggregationResultsResultOneOf {
|
|
3434
3454
|
/** Value aggregation results. */
|
|
3435
3455
|
values?: ValueResults;
|
|
@@ -3443,6 +3463,8 @@ interface AggregationResults extends AggregationResultsResultOneOf {
|
|
|
3443
3463
|
dateHistogram?: DateHistogramResults;
|
|
3444
3464
|
/** Nested aggregation results. */
|
|
3445
3465
|
nested?: NestedResults;
|
|
3466
|
+
/** Date aggregation results. */
|
|
3467
|
+
scalarDate?: AggregationResultsScalarDateResult;
|
|
3446
3468
|
/**
|
|
3447
3469
|
* User-defined name of aggregation as derived from search request.
|
|
3448
3470
|
* @maxLength 100
|
|
@@ -3470,6 +3492,8 @@ interface AggregationResultsResultOneOf {
|
|
|
3470
3492
|
dateHistogram?: DateHistogramResults;
|
|
3471
3493
|
/** Nested aggregation results. */
|
|
3472
3494
|
nested?: NestedResults;
|
|
3495
|
+
/** Date aggregation results. */
|
|
3496
|
+
scalarDate?: AggregationResultsScalarDateResult;
|
|
3473
3497
|
}
|
|
3474
3498
|
interface QueryPoliciesRequest {
|
|
3475
3499
|
/** Information about filters, paging, and sorting. */
|
|
@@ -6250,4 +6274,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6250
6274
|
addOnIds: string[] | null;
|
|
6251
6275
|
}
|
|
6252
6276
|
|
|
6253
|
-
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 VariedPayment 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, NestedAggregationType as aA, Interval as aB, AggregationType as aC, Mode as aD, RequestedFields as aE, Action as aF, InvalidSlugError as aG, CloneErrors as aH, Status as aI, CategoryNotificationEvent as aJ, BenefitType as aK, Event as aL, CrudType as aM, PlacementType as aN, DayOfWeek as aO, ResolutionMethod as aP, type Media as aQ, type MediaItem as aR, type MediaItemItemOneOf as aS, type V2Category as aT, type Form as aU, type FormSettings as aV, type Payment as aW, type PaymentRateOneOf as aX, type FixedPayment as aY, type Money as aZ, type CustomPayment 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, LocationType as ak, SelectionMethod as al, ValueType as am, BookingStatus as an, PaymentStatus as ao, SelectedPaymentOption as ap, Platform as aq, Actor as ar, IdentityType as as, WebhookIdentityType as at, V2RequestedFields as au, SortOrder as av, SortType as aw, SortDirection as ax, MissingValues as ay, ScalarType as az, type UpdateServiceValidationErrors as b, type BookedSlot as b$, type SubscriptionPayment as b0, type FullUpfrontPayment as b1, type PaymentOptions as b2, type DiscountInfo as b3, type OnlineBooking as b4, type Conferencing as b5, type V2Location as b6, type V2LocationOptionsOneOf as b7, type CommonAddress as b8, type CommonAddressStreetOneOf as b9, type StaffMember as bA, type StaffMediaItem as bB, type StaffMediaItemItemOneOf as bC, type StaffMemberDetails as bD, type ResourceGroup as bE, type ResourceIds as bF, type ServiceResource as bG, type ServiceResourceSelectionOneOf as bH, type ResourceType as bI, type Slug as bJ, type URLs as bK, type ExtendedFields as bL, type SeoSchema as bM, type Keyword as bN, type Tag as bO, type Settings as bP, type AddOnDetails as bQ, type TaxableAddress as bR, type V2PhoneCall as bS, type SetCustomSlugEvent as bT, type ServicesUrlsChanged as bU, type DummyRequest as bV, type DummyResponse as bW, type Booking as bX, type BookingParticipantsInfoOneOf as bY, type BookedEntity as bZ, type BookedEntityItemOneOf as b_, type CommonStreetAddress as ba, type CommonAddressLocation as bb, type BusinessLocationOptions as bc, type CustomLocationOptions as bd, type BookingPolicy as be, type PolicyDescription as bf, type LimitEarlyBookingPolicy as bg, type LimitLateBookingPolicy as bh, type BookAfterStartPolicy as bi, type CancellationPolicy as bj, type ReschedulePolicy as bk, type WaitlistPolicy as bl, type ParticipantsPolicy as bm, type ResourcesPolicy as bn, type CancellationFeePolicy as bo, type CancellationWindow as bp, type CancellationWindowFeeOneOf as bq, type SaveCreditCardPolicy as br, type StaffSortingPolicy as bs, type StaffSortingPolicyOptionsOneOf as bt, type RankingOptions as bu, type CustomOptions as bv, type IntakeFormPolicy as bw, type Schedule as bx, type AvailabilityConstraints as by, type V2Duration as bz, type BulkUpdateServicesOptions as c, type QueryV2PagingMethodOneOf as c$, type BookedResource as c0, type Location as c1, type PhoneCall as c2, type ResourceSelection as c3, type BookedSchedule as c4, type ContactDetails as c5, type Address as c6, type AddressStreetOneOf as c7, type StreetAddress as c8, type AddressLocation as c9, type CreateServiceResponse as cA, type ValidateServiceRequest as cB, type ValidateServiceResponse as cC, type FieldViolation as cD, type BulkCreateServicesRequest as cE, type BulkServiceResult as cF, type ItemMetadata as cG, type ApplicationError as cH, type BulkActionMetadata as cI, type GetServiceRequest as cJ, type GetServiceResponse as cK, type GetServiceAvailabilityConstraintsRequest as cL, type GetServiceAvailabilityConstraintsResponse as cM, type ServiceAvailabilityConstraints as cN, type SplitInterval as cO, type UpdateServiceRequest as cP, type UpdateServiceResponse as cQ, type BulkUpdateServicesRequest as cR, type MaskedService as cS, type BulkUpdateServicesByFilterRequest as cT, type DeleteServiceRequest as cU, type V2ParticipantNotification as cV, type DeleteServiceResponse as cW, type BulkDeleteServicesRequest as cX, type BulkDeleteServicesByFilterRequest as cY, type QueryServicesRequest as cZ, type QueryV2 as c_, type Subdivision as ca, type CustomFormField as cb, type BookingSource as cc, type ParticipantNotification as cd, type CommonIdentificationData as ce, type CommonIdentificationDataIdOneOf as cf, type FlowControlSettings as cg, type ParticipantChoices as ch, type ServiceChoices as ci, type ServiceChoice as cj, type ServiceChoiceChoiceOneOf as ck, type Duration as cl, type MultiServiceBookingInfo as cm, type BookedAddOn as cn, type DomainEvent as co, type DomainEventBodyOneOf as cp, type EntityCreatedEvent as cq, type RestoreInfo as cr, type EntityUpdatedEvent as cs, type EntityDeletedEvent as ct, type ActionEvent as cu, type MessageEnvelope as cv, type IdentificationData as cw, type IdentificationDataIdOneOf as cx, type AccountInfo as cy, type CreateServiceRequest as cz, type BulkUpdateServicesResponse as d, type QueryServicesMultiLanguageResponse as d$, type Sorting as d0, type Paging as d1, type CursorPaging as d2, type QueryServicesResponse as d3, type PagingMetadataV2 as d4, type Cursors as d5, type SearchServicesRequest as d6, type CursorSearch as d7, type CursorSearchPagingMethodOneOf as d8, type Aggregation as d9, type RangeResult as dA, type ScalarResult as dB, type NestedResultValue as dC, type NestedResultValueResultOneOf as dD, type Results as dE, type DateHistogramResult as dF, type GroupByValueResults as dG, type DateHistogramResults as dH, type NestedResults as dI, type AggregationResults as dJ, type AggregationResultsResultOneOf as dK, type QueryPoliciesRequest as dL, type CursorQueryPagingMethodOneOf as dM, type BookingPolicyWithServices as dN, type QueryBookingFormsRequest as dO, type BookingForm as dP, type FormDetails as dQ, type ConnectedService as dR, type CountServicesRequest as dS, type QueryLocationsRequest as dT, type QueryLocationsFilter as dU, type BusinessLocations as dV, type CustomLocations as dW, type CustomerLocations as dX, type QueryCategoriesRequest as dY, type QueryCategoriesFilter as dZ, type QueryServicesMultiLanguageRequest as d_, type AggregationKindOneOf as da, type RangeBucket as db, type IncludeMissingValuesOptions as dc, type ValueAggregation as dd, type ValueAggregationOptionsOneOf as de, type RangeAggregation as df, type ScalarAggregation as dg, type DateHistogramAggregation as dh, type NestedAggregationItem as di, type NestedAggregationItemKindOneOf as dj, type NestedAggregation as dk, type GroupByAggregation as dl, type GroupByAggregationKindOneOf as dm, type SearchDetails as dn, type CursorPagingMetadata as dp, type AggregationData as dq, type ValueAggregationResult as dr, type RangeAggregationResult as ds, type NestedAggregationResults as dt, type NestedAggregationResultsResultOneOf as du, type ValueResults as dv, type RangeResults as dw, type AggregationResultsScalarResult as dx, type NestedValueAggregationResult as dy, type ValueResult as dz, type BulkUpdateServicesByFilterOptions as e, type FirstChargeDateTypeWithLiterals as e$, type SetServiceLocationsRequest as e0, type RemovedLocationSessionsAction as e1, type RemovedLocationSessionsActionActionOptionsOneOf as e2, type MoveToNewLocationsOptions as e3, type EnablePricingPlansForServiceRequest as e4, type PricingPlanSelection as e5, type InvalidPricingPlan as e6, type DisablePricingPlansForServiceRequest as e7, type SetCustomSlugRequest as e8, type ValidateSlugRequest as e9, type SupportedLanguage as eA, type ConsentPolicy as eB, type Translation as eC, type ChangeContext as eD, type ChangeContextPayloadOneOf as eE, type PropertiesChange as eF, type SiteCreated as eG, type SiteCloned as eH, type CreateAddOnGroupRequest as eI, type DeleteAddOnGroupRequest as eJ, type DeleteAddOnGroupResponse as eK, type UpdateAddOnGroupRequest as eL, type ListAddOnGroupsByServiceIdRequest as eM, type AddOn as eN, type AddOnAddOnInfoOneOf as eO, type AddOnGroupDetail as eP, type SetAddOnsForGroupRequest as eQ, type BaseEventMetadata as eR, type EventMetadata as eS, type AccountInfoMetadata as eT, type ServicesQueryResult as eU, type ServiceQuerySpec as eV, type ServiceSearchSpec as eW, utils as eX, type ServiceTypeWithLiterals as eY, type RateTypeWithLiterals as eZ, type FrequencyTypeWithLiterals as e_, type CloneServiceRequest as ea, type CategoryNotification as eb, type Category as ec, type Empty as ed, type BenefitNotification as ee, type Benefit as ef, type EntryPass as eg, type Discount as eh, type DiscountDiscountOneOf as ei, type Behavior as ej, type BehaviorBehaviorOneOf as ek, type UserDomainInfoChangedEvent as el, type HtmlSitePublished as em, type Page as en, type SitePropertiesNotification as eo, type SitePropertiesEvent as ep, type Properties as eq, type Categories as er, type Locale as es, type V4Address as et, type AddressHint as eu, type GeoCoordinates as ev, type BusinessSchedule as ew, type TimePeriod as ex, type SpecialHourPeriod as ey, type Multilingual as ez, type BulkUpdateServicesByFilterResponse as f, setCustomSlug as f$, type AddOnPaymentOptionsWithLiterals as f0, type LocationTypeEnumLocationTypeWithLiterals as f1, type RankingOrderWithLiterals as f2, type SortingMethodTypeWithLiterals as f3, type TimingWithLiterals as f4, type CompletionRequirementWithLiterals as f5, type TaxableAddressTypeWithLiterals as f6, type MultiServiceBookingTypeWithLiterals as f7, type LocationTypeWithLiterals as f8, type SelectionMethodWithLiterals as f9, type CrudTypeWithLiterals as fA, type PlacementTypeWithLiterals as fB, type DayOfWeekWithLiterals as fC, type ResolutionMethodWithLiterals as fD, type CommonQueryWithEntityContext as fE, type CommonSearchWithEntityContext as fF, onServiceCreated as fG, onServiceDeleted as fH, onServiceUpdated as fI, createService as fJ, bulkCreateServices as fK, getService as fL, updateService as fM, bulkUpdateServices as fN, bulkUpdateServicesByFilter as fO, deleteService as fP, bulkDeleteServices as fQ, bulkDeleteServicesByFilter as fR, queryServices as fS, queryPolicies as fT, queryBookingForms as fU, countServices as fV, queryLocations as fW, queryCategories as fX, setServiceLocations as fY, enablePricingPlansForService as fZ, disablePricingPlansForService as f_, type ValueTypeWithLiterals as fa, type BookingStatusWithLiterals as fb, type PaymentStatusWithLiterals as fc, type SelectedPaymentOptionWithLiterals as fd, type PlatformWithLiterals as fe, type ActorWithLiterals as ff, type IdentityTypeWithLiterals as fg, type WebhookIdentityTypeWithLiterals as fh, type V2RequestedFieldsWithLiterals as fi, type SortOrderWithLiterals as fj, type SortTypeWithLiterals as fk, type SortDirectionWithLiterals as fl, type MissingValuesWithLiterals as fm, type ScalarTypeWithLiterals as fn, type NestedAggregationTypeWithLiterals as fo, type IntervalWithLiterals as fp, type AggregationTypeWithLiterals as fq, type ModeWithLiterals as fr, type RequestedFieldsWithLiterals as fs, type ActionWithLiterals as ft, type InvalidSlugErrorWithLiterals as fu, type CloneErrorsWithLiterals as fv, type StatusWithLiterals as fw, type CategoryNotificationEventWithLiterals as fx, type BenefitTypeWithLiterals as fy, type EventWithLiterals as fz, type BulkDeleteServicesOptions as g, validateSlug as g0, cloneService as g1, createAddOnGroup as g2, deleteAddOnGroup as g3, updateAddOnGroup as g4, listAddOnGroupsByServiceId as g5, setAddOnsForGroup as g6, 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 };
|
|
6277
|
+
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 VariedPayment 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, NestedAggregationType as aA, Interval as aB, AggregationType as aC, Mode as aD, RequestedFields as aE, Action as aF, InvalidSlugError as aG, CloneErrors as aH, Status as aI, CategoryNotificationEvent as aJ, BenefitType as aK, Event as aL, CrudType as aM, PlacementType as aN, DayOfWeek as aO, ResolutionMethod as aP, type Media as aQ, type MediaItem as aR, type MediaItemItemOneOf as aS, type V2Category as aT, type Form as aU, type FormSettings as aV, type Payment as aW, type PaymentRateOneOf as aX, type FixedPayment as aY, type Money as aZ, type CustomPayment 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, LocationType as ak, SelectionMethod as al, ValueType as am, BookingStatus as an, PaymentStatus as ao, SelectedPaymentOption as ap, Platform as aq, Actor as ar, IdentityType as as, WebhookIdentityType as at, V2RequestedFields as au, SortOrder as av, SortType as aw, SortDirection as ax, MissingValues as ay, ScalarType as az, type UpdateServiceValidationErrors as b, type BookedSlot as b$, type SubscriptionPayment as b0, type FullUpfrontPayment as b1, type PaymentOptions as b2, type DiscountInfo as b3, type OnlineBooking as b4, type Conferencing as b5, type V2Location as b6, type V2LocationOptionsOneOf as b7, type CommonAddress as b8, type CommonAddressStreetOneOf as b9, type StaffMember as bA, type StaffMediaItem as bB, type StaffMediaItemItemOneOf as bC, type StaffMemberDetails as bD, type ResourceGroup as bE, type ResourceIds as bF, type ServiceResource as bG, type ServiceResourceSelectionOneOf as bH, type ResourceType as bI, type Slug as bJ, type URLs as bK, type ExtendedFields as bL, type SeoSchema as bM, type Keyword as bN, type Tag as bO, type Settings as bP, type AddOnDetails as bQ, type TaxableAddress as bR, type V2PhoneCall as bS, type SetCustomSlugEvent as bT, type ServicesUrlsChanged as bU, type DummyRequest as bV, type DummyResponse as bW, type Booking as bX, type BookingParticipantsInfoOneOf as bY, type BookedEntity as bZ, type BookedEntityItemOneOf as b_, type CommonStreetAddress as ba, type CommonAddressLocation as bb, type BusinessLocationOptions as bc, type CustomLocationOptions as bd, type BookingPolicy as be, type PolicyDescription as bf, type LimitEarlyBookingPolicy as bg, type LimitLateBookingPolicy as bh, type BookAfterStartPolicy as bi, type CancellationPolicy as bj, type ReschedulePolicy as bk, type WaitlistPolicy as bl, type ParticipantsPolicy as bm, type ResourcesPolicy as bn, type CancellationFeePolicy as bo, type CancellationWindow as bp, type CancellationWindowFeeOneOf as bq, type SaveCreditCardPolicy as br, type StaffSortingPolicy as bs, type StaffSortingPolicyOptionsOneOf as bt, type RankingOptions as bu, type CustomOptions as bv, type IntakeFormPolicy as bw, type Schedule as bx, type AvailabilityConstraints as by, type V2Duration as bz, type BulkUpdateServicesOptions as c, type QueryV2PagingMethodOneOf as c$, type BookedResource as c0, type Location as c1, type PhoneCall as c2, type ResourceSelection as c3, type BookedSchedule as c4, type ContactDetails as c5, type Address as c6, type AddressStreetOneOf as c7, type StreetAddress as c8, type AddressLocation as c9, type CreateServiceResponse as cA, type ValidateServiceRequest as cB, type ValidateServiceResponse as cC, type FieldViolation as cD, type BulkCreateServicesRequest as cE, type BulkServiceResult as cF, type ItemMetadata as cG, type ApplicationError as cH, type BulkActionMetadata as cI, type GetServiceRequest as cJ, type GetServiceResponse as cK, type GetServiceAvailabilityConstraintsRequest as cL, type GetServiceAvailabilityConstraintsResponse as cM, type ServiceAvailabilityConstraints as cN, type SplitInterval as cO, type UpdateServiceRequest as cP, type UpdateServiceResponse as cQ, type BulkUpdateServicesRequest as cR, type MaskedService as cS, type BulkUpdateServicesByFilterRequest as cT, type DeleteServiceRequest as cU, type V2ParticipantNotification as cV, type DeleteServiceResponse as cW, type BulkDeleteServicesRequest as cX, type BulkDeleteServicesByFilterRequest as cY, type QueryServicesRequest as cZ, type QueryV2 as c_, type Subdivision as ca, type CustomFormField as cb, type BookingSource as cc, type ParticipantNotification as cd, type CommonIdentificationData as ce, type CommonIdentificationDataIdOneOf as cf, type FlowControlSettings as cg, type ParticipantChoices as ch, type ServiceChoices as ci, type ServiceChoice as cj, type ServiceChoiceChoiceOneOf as ck, type Duration as cl, type MultiServiceBookingInfo as cm, type BookedAddOn as cn, type DomainEvent as co, type DomainEventBodyOneOf as cp, type EntityCreatedEvent as cq, type RestoreInfo as cr, type EntityUpdatedEvent as cs, type EntityDeletedEvent as ct, type ActionEvent as cu, type MessageEnvelope as cv, type IdentificationData as cw, type IdentificationDataIdOneOf as cx, type AccountInfo as cy, type CreateServiceRequest as cz, type BulkUpdateServicesResponse as d, type QueryCategoriesFilter as d$, type Sorting as d0, type Paging as d1, type CursorPaging as d2, type QueryServicesResponse as d3, type PagingMetadataV2 as d4, type Cursors as d5, type SearchServicesRequest as d6, type CursorSearch as d7, type CursorSearchPagingMethodOneOf as d8, type Aggregation as d9, type RangeResult as dA, type ScalarResult as dB, type ScalarDateResult as dC, type NestedResultValue as dD, type NestedResultValueResultOneOf as dE, type Results as dF, type DateHistogramResult as dG, type GroupByValueResults as dH, type DateHistogramResults as dI, type NestedResults as dJ, type AggregationResultsScalarDateResult as dK, type AggregationResults as dL, type AggregationResultsResultOneOf as dM, type QueryPoliciesRequest as dN, type CursorQueryPagingMethodOneOf as dO, type BookingPolicyWithServices as dP, type QueryBookingFormsRequest as dQ, type BookingForm as dR, type FormDetails as dS, type ConnectedService as dT, type CountServicesRequest as dU, type QueryLocationsRequest as dV, type QueryLocationsFilter as dW, type BusinessLocations as dX, type CustomLocations as dY, type CustomerLocations as dZ, type QueryCategoriesRequest as d_, type AggregationKindOneOf as da, type RangeBucket as db, type IncludeMissingValuesOptions as dc, type ValueAggregation as dd, type ValueAggregationOptionsOneOf as de, type RangeAggregation as df, type ScalarAggregation as dg, type DateHistogramAggregation as dh, type NestedAggregationItem as di, type NestedAggregationItemKindOneOf as dj, type NestedAggregation as dk, type GroupByAggregation as dl, type GroupByAggregationKindOneOf as dm, type SearchDetails as dn, type CursorPagingMetadata as dp, type AggregationData as dq, type ValueAggregationResult as dr, type RangeAggregationResult as ds, type NestedAggregationResults as dt, type NestedAggregationResultsResultOneOf as du, type ValueResults as dv, type RangeResults as dw, type AggregationResultsScalarResult as dx, type NestedValueAggregationResult as dy, type ValueResult as dz, type BulkUpdateServicesByFilterOptions as e, type RateTypeWithLiterals as e$, type QueryServicesMultiLanguageRequest as e0, type QueryServicesMultiLanguageResponse as e1, type SetServiceLocationsRequest as e2, type RemovedLocationSessionsAction as e3, type RemovedLocationSessionsActionActionOptionsOneOf as e4, type MoveToNewLocationsOptions as e5, type EnablePricingPlansForServiceRequest as e6, type PricingPlanSelection as e7, type InvalidPricingPlan as e8, type DisablePricingPlansForServiceRequest as e9, type SpecialHourPeriod as eA, type Multilingual as eB, type SupportedLanguage as eC, type ConsentPolicy as eD, type Translation as eE, type ChangeContext as eF, type ChangeContextPayloadOneOf as eG, type PropertiesChange as eH, type SiteCreated as eI, type SiteCloned as eJ, type CreateAddOnGroupRequest as eK, type DeleteAddOnGroupRequest as eL, type DeleteAddOnGroupResponse as eM, type UpdateAddOnGroupRequest as eN, type ListAddOnGroupsByServiceIdRequest as eO, type AddOn as eP, type AddOnAddOnInfoOneOf as eQ, type AddOnGroupDetail as eR, type SetAddOnsForGroupRequest as eS, type BaseEventMetadata as eT, type EventMetadata as eU, type AccountInfoMetadata as eV, type ServicesQueryResult as eW, type ServiceQuerySpec as eX, type ServiceSearchSpec as eY, utils as eZ, type ServiceTypeWithLiterals as e_, type SetCustomSlugRequest as ea, type ValidateSlugRequest as eb, type CloneServiceRequest as ec, type CategoryNotification as ed, type Category as ee, type Empty as ef, type BenefitNotification as eg, type Benefit as eh, type EntryPass as ei, type Discount as ej, type DiscountDiscountOneOf as ek, type Behavior as el, type BehaviorBehaviorOneOf as em, type UserDomainInfoChangedEvent as en, type HtmlSitePublished as eo, type Page as ep, type SitePropertiesNotification as eq, type SitePropertiesEvent as er, type Properties as es, type Categories as et, type Locale as eu, type V4Address as ev, type AddressHint as ew, type GeoCoordinates as ex, type BusinessSchedule as ey, type TimePeriod as ez, type BulkUpdateServicesByFilterResponse as f, enablePricingPlansForService as f$, type FrequencyTypeWithLiterals as f0, type FirstChargeDateTypeWithLiterals as f1, type AddOnPaymentOptionsWithLiterals as f2, type LocationTypeEnumLocationTypeWithLiterals as f3, type RankingOrderWithLiterals as f4, type SortingMethodTypeWithLiterals as f5, type TimingWithLiterals as f6, type CompletionRequirementWithLiterals as f7, type TaxableAddressTypeWithLiterals as f8, type MultiServiceBookingTypeWithLiterals as f9, type BenefitTypeWithLiterals as fA, type EventWithLiterals as fB, type CrudTypeWithLiterals as fC, type PlacementTypeWithLiterals as fD, type DayOfWeekWithLiterals as fE, type ResolutionMethodWithLiterals as fF, type CommonQueryWithEntityContext as fG, type CommonSearchWithEntityContext as fH, onServiceCreated as fI, onServiceDeleted as fJ, onServiceUpdated as fK, createService as fL, bulkCreateServices as fM, getService as fN, updateService as fO, bulkUpdateServices as fP, bulkUpdateServicesByFilter as fQ, deleteService as fR, bulkDeleteServices as fS, bulkDeleteServicesByFilter as fT, queryServices as fU, queryPolicies as fV, queryBookingForms as fW, countServices as fX, queryLocations as fY, queryCategories as fZ, setServiceLocations as f_, type LocationTypeWithLiterals as fa, type SelectionMethodWithLiterals as fb, type ValueTypeWithLiterals as fc, type BookingStatusWithLiterals as fd, type PaymentStatusWithLiterals as fe, type SelectedPaymentOptionWithLiterals as ff, type PlatformWithLiterals as fg, type ActorWithLiterals as fh, type IdentityTypeWithLiterals as fi, type WebhookIdentityTypeWithLiterals as fj, type V2RequestedFieldsWithLiterals as fk, type SortOrderWithLiterals as fl, type SortTypeWithLiterals as fm, type SortDirectionWithLiterals as fn, type MissingValuesWithLiterals as fo, type ScalarTypeWithLiterals as fp, type NestedAggregationTypeWithLiterals as fq, type IntervalWithLiterals as fr, type AggregationTypeWithLiterals as fs, type ModeWithLiterals as ft, type RequestedFieldsWithLiterals as fu, type ActionWithLiterals as fv, type InvalidSlugErrorWithLiterals as fw, type CloneErrorsWithLiterals as fx, type StatusWithLiterals as fy, type CategoryNotificationEventWithLiterals as fz, type BulkDeleteServicesOptions as g, disablePricingPlansForService as g0, setCustomSlug as g1, validateSlug as g2, cloneService as g3, createAddOnGroup as g4, deleteAddOnGroup as g5, updateAddOnGroup as g6, listAddOnGroupsByServiceId as g7, setAddOnsForGroup as g8, 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 { cy as AccountInfo,
|
|
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-DcAQwjHz.js';
|
|
3
|
+
export { cy as AccountInfo, eV as AccountInfoMetadata, aF as Action, cu as ActionEvent, fv as ActionWithLiterals, ar as Actor, fh as ActorWithLiterals, eP as AddOn, eQ as AddOnAddOnInfoOneOf, bQ as AddOnDetails, eR as AddOnGroupDetail, ac as AddOnPaymentOptions, f2 as AddOnPaymentOptionsWithLiterals, c6 as Address, ew as AddressHint, c9 as AddressLocation, c7 as AddressStreetOneOf, d9 as Aggregation, dq as AggregationData, da as AggregationKindOneOf, dL as AggregationResults, dM as AggregationResultsResultOneOf, dK as AggregationResultsScalarDateResult, dx as AggregationResultsScalarResult, aC as AggregationType, fs as AggregationTypeWithLiterals, cH as ApplicationError, by as AvailabilityConstraints, eT as BaseEventMetadata, el as Behavior, em as BehaviorBehaviorOneOf, eh as Benefit, eg as BenefitNotification, aK as BenefitType, fA as BenefitTypeWithLiterals, bi as BookAfterStartPolicy, cn as BookedAddOn, bZ as BookedEntity, b_ as BookedEntityItemOneOf, c0 as BookedResource, c4 as BookedSchedule, b$ as BookedSlot, bX as Booking, dR as BookingForm, bY as BookingParticipantsInfoOneOf, be as BookingPolicy, dP as BookingPolicyWithServices, cc as BookingSource, an as BookingStatus, fd as BookingStatusWithLiterals, cI as BulkActionMetadata, cE as BulkCreateServicesRequest, cY as BulkDeleteServicesByFilterRequest, cX as BulkDeleteServicesRequest, cF as BulkServiceResult, cT as BulkUpdateServicesByFilterRequest, cR as BulkUpdateServicesRequest, bc as BusinessLocationOptions, dX as BusinessLocations, ey as BusinessSchedule, bo as CancellationFeePolicy, bj as CancellationPolicy, bp as CancellationWindow, bq as CancellationWindowFeeOneOf, et as Categories, ee as Category, ed as CategoryNotification, aJ as CategoryNotificationEvent, fz as CategoryNotificationEventWithLiterals, eF as ChangeContext, eG as ChangeContextPayloadOneOf, aH as CloneErrors, fx as CloneErrorsWithLiterals, ec as CloneServiceRequest, b8 as CommonAddress, bb as CommonAddressLocation, b9 as CommonAddressStreetOneOf, ce as CommonIdentificationData, cf as CommonIdentificationDataIdOneOf, fG as CommonQueryWithEntityContext, fH as CommonSearchWithEntityContext, ba as CommonStreetAddress, ah as CompletionRequirement, f7 as CompletionRequirementWithLiterals, b5 as Conferencing, dT as ConnectedService, eD as ConsentPolicy, c5 as ContactDetails, dU as CountServicesRequest, eK as CreateAddOnGroupRequest, cz as CreateServiceRequest, cA as CreateServiceResponse, aM as CrudType, fC as CrudTypeWithLiterals, d2 as CursorPaging, dp as CursorPagingMetadata, dO as CursorQueryPagingMethodOneOf, d7 as CursorSearch, d8 as CursorSearchPagingMethodOneOf, d5 as Cursors, cb as CustomFormField, bd as CustomLocationOptions, dY as CustomLocations, bv as CustomOptions, a_ as CustomPayment, dZ as CustomerLocations, dh as DateHistogramAggregation, dG as DateHistogramResult, dI as DateHistogramResults, aO as DayOfWeek, fE as DayOfWeekWithLiterals, eL as DeleteAddOnGroupRequest, eM as DeleteAddOnGroupResponse, cU as DeleteServiceRequest, cW as DeleteServiceResponse, e9 as DisablePricingPlansForServiceRequest, ej as Discount, ek as DiscountDiscountOneOf, b3 as DiscountInfo, co as DomainEvent, cp as DomainEventBodyOneOf, bV as DummyRequest, bW as DummyResponse, cl as Duration, ef as Empty, e6 as EnablePricingPlansForServiceRequest, cq as EntityCreatedEvent, ct as EntityDeletedEvent, cs as EntityUpdatedEvent, ei as EntryPass, aL as Event, eU as EventMetadata, fB as EventWithLiterals, bL as ExtendedFields, cD as FieldViolation, ab as FirstChargeDateType, f1 as FirstChargeDateTypeWithLiterals, aY as FixedPayment, cg as FlowControlSettings, aU as Form, dS as FormDetails, aV as FormSettings, aa as FrequencyType, f0 as FrequencyTypeWithLiterals, b1 as FullUpfrontPayment, ex as GeoCoordinates, cL as GetServiceAvailabilityConstraintsRequest, cM as GetServiceAvailabilityConstraintsResponse, cJ as GetServiceRequest, cK as GetServiceResponse, dl as GroupByAggregation, dm as GroupByAggregationKindOneOf, dH as GroupByValueResults, eo as HtmlSitePublished, cw as IdentificationData, cx as IdentificationDataIdOneOf, as as IdentityType, fi as IdentityTypeWithLiterals, dc as IncludeMissingValuesOptions, bw as IntakeFormPolicy, aB as Interval, fr as IntervalWithLiterals, e8 as InvalidPricingPlan, aG as InvalidSlugError, fw as InvalidSlugErrorWithLiterals, cG as ItemMetadata, bN as Keyword, bg as LimitEarlyBookingPolicy, bh as LimitLateBookingPolicy, eO as ListAddOnGroupsByServiceIdRequest, eu as Locale, c1 as Location, ak as LocationType, ad as LocationTypeEnumLocationType, f3 as LocationTypeEnumLocationTypeWithLiterals, fa as LocationTypeWithLiterals, cS as MaskedService, aQ as Media, aR as MediaItem, aS as MediaItemItemOneOf, cv as MessageEnvelope, ay as MissingValues, fo as MissingValuesWithLiterals, aD as Mode, ft as ModeWithLiterals, aZ as Money, e5 as MoveToNewLocationsOptions, cm as MultiServiceBookingInfo, aj as MultiServiceBookingType, f9 as MultiServiceBookingTypeWithLiterals, eB as Multilingual, dk as NestedAggregation, di as NestedAggregationItem, dj as NestedAggregationItemKindOneOf, dt as NestedAggregationResults, du as NestedAggregationResultsResultOneOf, aA as NestedAggregationType, fq as NestedAggregationTypeWithLiterals, dD as NestedResultValue, dE as NestedResultValueResultOneOf, dJ as NestedResults, dy as NestedValueAggregationResult, b4 as OnlineBooking, ep as Page, d1 as Paging, d4 as PagingMetadataV2, ch as ParticipantChoices, cd as ParticipantNotification, bm as ParticipantsPolicy, aW as Payment, b2 as PaymentOptions, aX as PaymentRateOneOf, ao as PaymentStatus, fe as PaymentStatusWithLiterals, c2 as PhoneCall, aN as PlacementType, fD as PlacementTypeWithLiterals, aq as Platform, fg as PlatformWithLiterals, bf as PolicyDescription, e7 as PricingPlanSelection, es as Properties, eH as PropertiesChange, dQ as QueryBookingFormsRequest, d$ as QueryCategoriesFilter, d_ as QueryCategoriesRequest, dW as QueryLocationsFilter, dV as QueryLocationsRequest, dN as QueryPoliciesRequest, e0 as QueryServicesMultiLanguageRequest, e1 as QueryServicesMultiLanguageResponse, cZ as QueryServicesRequest, d3 as QueryServicesResponse, c_ as QueryV2, c$ as QueryV2PagingMethodOneOf, df as RangeAggregation, ds as RangeAggregationResult, db as RangeBucket, dA as RangeResult, dw as RangeResults, bu as RankingOptions, ae as RankingOrder, f4 as RankingOrderWithLiterals, a9 as RateType, e$ as RateTypeWithLiterals, e3 as RemovedLocationSessionsAction, e4 as RemovedLocationSessionsActionActionOptionsOneOf, aE as RequestedFields, fu as RequestedFieldsWithLiterals, bk as ReschedulePolicy, aP as ResolutionMethod, fF as ResolutionMethodWithLiterals, bE as ResourceGroup, bF as ResourceIds, c3 as ResourceSelection, bI as ResourceType, bn as ResourcesPolicy, cr as RestoreInfo, dF as Results, br as SaveCreditCardPolicy, dg as ScalarAggregation, dC as ScalarDateResult, dB as ScalarResult, az as ScalarType, fp as ScalarTypeWithLiterals, bx as Schedule, dn as SearchDetails, d6 as SearchServicesRequest, ap as SelectedPaymentOption, ff as SelectedPaymentOptionWithLiterals, al as SelectionMethod, fb as SelectionMethodWithLiterals, bM as SeoSchema, cN as ServiceAvailabilityConstraints, cj as ServiceChoice, ck as ServiceChoiceChoiceOneOf, ci as ServiceChoices, eX as ServiceQuerySpec, bG as ServiceResource, bH as ServiceResourceSelectionOneOf, eY as ServiceSearchSpec, a8 as ServiceType, e_ as ServiceTypeWithLiterals, eW as ServicesQueryResult, bU as ServicesUrlsChanged, eS as SetAddOnsForGroupRequest, bT as SetCustomSlugEvent, ea as SetCustomSlugRequest, e2 as SetServiceLocationsRequest, bP as Settings, eJ as SiteCloned, eI as SiteCreated, er as SitePropertiesEvent, eq as SitePropertiesNotification, bJ as Slug, ax as SortDirection, fn as SortDirectionWithLiterals, av as SortOrder, fl as SortOrderWithLiterals, aw as SortType, fm as SortTypeWithLiterals, d0 as Sorting, af as SortingMethodType, f5 as SortingMethodTypeWithLiterals, eA as SpecialHourPeriod, cO as SplitInterval, bB as StaffMediaItem, bC as StaffMediaItemItemOneOf, bA as StaffMember, bD as StaffMemberDetails, bs as StaffSortingPolicy, bt as StaffSortingPolicyOptionsOneOf, aI as Status, fy as StatusWithLiterals, c8 as StreetAddress, ca as Subdivision, b0 as SubscriptionPayment, eC as SupportedLanguage, bO as Tag, bR as TaxableAddress, ai as TaxableAddressType, f8 as TaxableAddressTypeWithLiterals, ez as TimePeriod, ag as Timing, f6 as TimingWithLiterals, eE as Translation, bK as URLs, eN as UpdateAddOnGroupRequest, cP as UpdateServiceRequest, cQ as UpdateServiceResponse, en as UserDomainInfoChangedEvent, aT as V2Category, bz as V2Duration, b6 as V2Location, b7 as V2LocationOptionsOneOf, cV as V2ParticipantNotification, bS as V2PhoneCall, au as V2RequestedFields, fk as V2RequestedFieldsWithLiterals, ev as V4Address, cB as ValidateServiceRequest, cC as ValidateServiceResponse, eb as ValidateSlugRequest, dd as ValueAggregation, de as ValueAggregationOptionsOneOf, dr as ValueAggregationResult, dz as ValueResult, dv as ValueResults, am as ValueType, fc as ValueTypeWithLiterals, a$ as VariedPayment, bl as WaitlistPolicy, at as WebhookIdentityType, fj as WebhookIdentityTypeWithLiterals, eZ as utils } from './bookings-services-v2-service-services.universal-DcAQwjHz.js';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|
|
@@ -265,7 +265,7 @@ interface SearchServicesSignature {
|
|
|
265
265
|
* To learn about working with Search methods, see [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language) and [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging).
|
|
266
266
|
* @param - Search criteria including filter, sort, aggregations, and paging options.
|
|
267
267
|
*/
|
|
268
|
-
(search: ServiceSearch): Promise<NonNullablePaths<SearchServicesResponse, `services` | `services.${number}.type` | `services.${number}.category._id` | `services.${number}.form._id` | `services.${number}.payment.rateType` | `services.${number}.payment.addOnOption` | `services.${number}.bookingPolicy._id` | `services.${number}.bookingPolicy.customPolicyDescription.enabled` | `services.${number}.bookingPolicy.customPolicyDescription.description` | `services.${number}.bookingPolicy.limitEarlyBookingPolicy.enabled` | `services.${number}.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `services.${number}.bookingPolicy.limitLateBookingPolicy.enabled` | `services.${number}.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `services.${number}.bookingPolicy.bookAfterStartPolicy.enabled` | `services.${number}.bookingPolicy.cancellationPolicy.enabled` | `services.${number}.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `services.${number}.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `services.${number}.bookingPolicy.reschedulePolicy.enabled` | `services.${number}.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `services.${number}.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `services.${number}.bookingPolicy.waitlistPolicy.enabled` | `services.${number}.bookingPolicy.waitlistPolicy.capacity` | `services.${number}.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `services.${number}.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `services.${number}.bookingPolicy.resourcesPolicy.enabled` | `services.${number}.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `services.${number}.bookingPolicy.cancellationFeePolicy.enabled` | `services.${number}.bookingPolicy.saveCreditCardPolicy.enabled` | `services.${number}.schedule.availabilityConstraints.timeBetweenSessions` | `services.${number}.seoData.settings.preventAutoRedirect` | `services.${number}.taxableAddress.taxableAddressType` | `aggregationData.results` | `aggregationData.results.${number}.scalar.type` | `aggregationData.results.${number}.scalar.value` | `aggregationData.results.${number}.name` | `aggregationData.results.${number}.type` | `aggregationData.results.${number}.fieldPath`, 6>>;
|
|
268
|
+
(search: ServiceSearch): Promise<NonNullablePaths<SearchServicesResponse, `services` | `services.${number}.type` | `services.${number}.category._id` | `services.${number}.form._id` | `services.${number}.payment.rateType` | `services.${number}.payment.addOnOption` | `services.${number}.bookingPolicy._id` | `services.${number}.bookingPolicy.customPolicyDescription.enabled` | `services.${number}.bookingPolicy.customPolicyDescription.description` | `services.${number}.bookingPolicy.limitEarlyBookingPolicy.enabled` | `services.${number}.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `services.${number}.bookingPolicy.limitLateBookingPolicy.enabled` | `services.${number}.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `services.${number}.bookingPolicy.bookAfterStartPolicy.enabled` | `services.${number}.bookingPolicy.cancellationPolicy.enabled` | `services.${number}.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `services.${number}.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `services.${number}.bookingPolicy.reschedulePolicy.enabled` | `services.${number}.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `services.${number}.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `services.${number}.bookingPolicy.waitlistPolicy.enabled` | `services.${number}.bookingPolicy.waitlistPolicy.capacity` | `services.${number}.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `services.${number}.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `services.${number}.bookingPolicy.resourcesPolicy.enabled` | `services.${number}.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `services.${number}.bookingPolicy.cancellationFeePolicy.enabled` | `services.${number}.bookingPolicy.saveCreditCardPolicy.enabled` | `services.${number}.schedule.availabilityConstraints.timeBetweenSessions` | `services.${number}.seoData.settings.preventAutoRedirect` | `services.${number}.taxableAddress.taxableAddressType` | `aggregationData.results` | `aggregationData.results.${number}.scalar.type` | `aggregationData.results.${number}.scalar.value` | `aggregationData.results.${number}.scalarDate.type` | `aggregationData.results.${number}.scalarDate.value` | `aggregationData.results.${number}.name` | `aggregationData.results.${number}.type` | `aggregationData.results.${number}.fieldPath`, 6>>;
|
|
269
269
|
}
|
|
270
270
|
declare function queryPolicies$1(httpClient: HttpClient): QueryPoliciesSignature;
|
|
271
271
|
interface QueryPoliciesSignature {
|