@wix/auto_sdk_bookings_services 1.0.254 → 1.0.255
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-C4INiLoL.d.ts → bookings-services-v2-service-services.universal-eA4yFYhG.d.ts} +64 -22
- 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 +52 -21
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-C4INiLoL.d.mts → bookings-services-v2-service-services.universal-eA4yFYhG.d.mts} +64 -22
- 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 +52 -21
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-DoKhtzZp.d.ts → bookings-services-v2-service-services.universal-B7pWpsjJ.d.ts} +54 -28
- 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 +52 -21
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-DoKhtzZp.d.mts → bookings-services-v2-service-services.universal-B7pWpsjJ.d.mts} +54 -28
- 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 +52 -21
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1186,6 +1186,26 @@ declare enum CompletionRequirement {
|
|
|
1186
1186
|
}
|
|
1187
1187
|
/** @enumType */
|
|
1188
1188
|
type CompletionRequirementWithLiterals = CompletionRequirement | 'OPTIONAL' | 'REQUIRED_BEFORE_BOOKING';
|
|
1189
|
+
/** Rule restricting how frequently a customer can rebook the same service. */
|
|
1190
|
+
interface RebookingFrequencyPolicy {
|
|
1191
|
+
/**
|
|
1192
|
+
* Whether rebooking restrictions are enabled for the service. When `false`, customers can rebook immediately.
|
|
1193
|
+
*
|
|
1194
|
+
* Default: `false`
|
|
1195
|
+
*/
|
|
1196
|
+
enabled?: boolean;
|
|
1197
|
+
/**
|
|
1198
|
+
* Whether customers can never rebook the same service. Only evaluated when `enabled` is `true`.
|
|
1199
|
+
*
|
|
1200
|
+
* Default: `false`
|
|
1201
|
+
*/
|
|
1202
|
+
permanentBlock?: boolean;
|
|
1203
|
+
/**
|
|
1204
|
+
* Minimum number of minutes between the start times of bookings for the same service by the same customer.
|
|
1205
|
+
* Only enforced when `enabled` is `true` and `permanent_block` is `false`.
|
|
1206
|
+
*/
|
|
1207
|
+
minTimeBetweenRebookingsMinutes?: number | null;
|
|
1208
|
+
}
|
|
1189
1209
|
interface Schedule {
|
|
1190
1210
|
/**
|
|
1191
1211
|
* ID of the [schedule](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction)
|
|
@@ -1997,6 +2017,35 @@ interface BookedSlot {
|
|
|
1997
2017
|
* @maxSize 3
|
|
1998
2018
|
*/
|
|
1999
2019
|
resourceSelections?: ResourceSelection[];
|
|
2020
|
+
/**
|
|
2021
|
+
* Whether the booked slot spans one or more full days.
|
|
2022
|
+
* For class bookings, this value is synced from the linked calendar event.
|
|
2023
|
+
* For appointment bookings, this value is derived from the availability slot at booking creation or reschedule time.
|
|
2024
|
+
*
|
|
2025
|
+
* When `true`, `startDate` is set to `00:00:00` of the first day and `endDate` is set to `00:00:00` of the day after the last day (exclusive). Midnight boundaries are interpreted in the slot's `timezone`.
|
|
2026
|
+
*
|
|
2027
|
+
* Default: `false`
|
|
2028
|
+
*/
|
|
2029
|
+
allDay?: boolean | null;
|
|
2030
|
+
/**
|
|
2031
|
+
* Duration unit type for the booking. Populated only for bookings of [services](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/service-object) configured with a duration range, such as hourly or daily duration-range services. Use together with `durationUnitCount` to determine the booked duration.
|
|
2032
|
+
*
|
|
2033
|
+
* Returned only when the service has a `schedule.availabilityConstraints.durationRange`.
|
|
2034
|
+
* @readonly
|
|
2035
|
+
*/
|
|
2036
|
+
durationUnitType?: DurationUnitTypeWithLiterals;
|
|
2037
|
+
/**
|
|
2038
|
+
* Number of booked duration units. Populated only for bookings of [services](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/service-object) configured with a duration range.
|
|
2039
|
+
* The meaning depends on `durationUnitType`:
|
|
2040
|
+
* - `HOUR`: Duration in minutes. For example, `120` for a 2-hour booking.
|
|
2041
|
+
* - `DAY`: Duration in days. For example, `3` for a 3-day booking.
|
|
2042
|
+
*
|
|
2043
|
+
* Returned only when the service has a `schedule.availabilityConstraints.durationRange`.
|
|
2044
|
+
* @min 1
|
|
2045
|
+
* @max 1440
|
|
2046
|
+
* @readonly
|
|
2047
|
+
*/
|
|
2048
|
+
durationUnitCount?: number | null;
|
|
2000
2049
|
}
|
|
2001
2050
|
interface BookedResource {
|
|
2002
2051
|
/**
|
|
@@ -2089,7 +2138,9 @@ declare enum SelectionMethod {
|
|
|
2089
2138
|
/** @enumType */
|
|
2090
2139
|
type SelectionMethodWithLiterals = SelectionMethod | 'SPECIFIC_RESOURCE' | 'ANY_RESOURCE' | 'NO_SELECTION';
|
|
2091
2140
|
declare enum DurationUnitType {
|
|
2141
|
+
/** Hourly duration. When `durationUnitType` is `HOUR`, `durationUnitCount` represents the booked duration in minutes. */
|
|
2092
2142
|
HOUR = "HOUR",
|
|
2143
|
+
/** Daily duration. When `durationUnitType` is `DAY`, `durationUnitCount` represents the booked duration in days. */
|
|
2093
2144
|
DAY = "DAY"
|
|
2094
2145
|
}
|
|
2095
2146
|
/** @enumType */
|
|
@@ -2757,26 +2808,6 @@ interface AccountInfo {
|
|
|
2757
2808
|
*/
|
|
2758
2809
|
siteId?: string | null;
|
|
2759
2810
|
}
|
|
2760
|
-
/** Rule restricting how frequently a customer can rebook the same service. */
|
|
2761
|
-
interface RebookingFrequencyPolicy {
|
|
2762
|
-
/**
|
|
2763
|
-
* Whether rebooking restrictions are enabled for the service. When `false`, customers can rebook immediately.
|
|
2764
|
-
*
|
|
2765
|
-
* Default: `false`
|
|
2766
|
-
*/
|
|
2767
|
-
enabled?: boolean;
|
|
2768
|
-
/**
|
|
2769
|
-
* Whether customers can never rebook the same service. Only evaluated when `enabled` is `true`.
|
|
2770
|
-
*
|
|
2771
|
-
* Default: `false`
|
|
2772
|
-
*/
|
|
2773
|
-
permanentBlock?: boolean;
|
|
2774
|
-
/**
|
|
2775
|
-
* Minimum number of minutes between the start times of bookings for the same service by the same customer.
|
|
2776
|
-
* Only enforced when `enabled` is `true` and `permanent_block` is `false`.
|
|
2777
|
-
*/
|
|
2778
|
-
minTimeBetweenRebookingsMinutes?: number | null;
|
|
2779
|
-
}
|
|
2780
2811
|
interface CreateServiceRequest {
|
|
2781
2812
|
/** Service to create. */
|
|
2782
2813
|
service: Service;
|
|
@@ -5756,7 +5787,18 @@ declare const utils: {
|
|
|
5756
5787
|
query: {
|
|
5757
5788
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Service, ServiceQuerySpec, ServiceQuery>;
|
|
5758
5789
|
Filter: _wix_sdk_types.FilterFactory<Service, ServiceQuerySpec>;
|
|
5759
|
-
Sort: _wix_sdk_types.SortFactory<ServiceQuerySpec>;
|
|
5790
|
+
Sort: _wix_sdk_types.SortFactory<ServiceQuerySpec>; /**
|
|
5791
|
+
* Determines how the service's own working hours combine with the working hours of its assigned
|
|
5792
|
+
* staff members and required resources. Supported for appointment services only, and can't be
|
|
5793
|
+
* combined with `durationRange`.
|
|
5794
|
+
*
|
|
5795
|
+
* Leave unset for resource-based availability, the default and only valid state for class,
|
|
5796
|
+
* course, and duration-range services. The service's own working hours are the `WORKING_HOURS`
|
|
5797
|
+
* [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)
|
|
5798
|
+
* on this service's schedule (`schedule.id`); this field controls only how those events combine
|
|
5799
|
+
* with the resources working hours, it doesn't contain the hours themselves.
|
|
5800
|
+
* @internal
|
|
5801
|
+
*/
|
|
5760
5802
|
};
|
|
5761
5803
|
search: {
|
|
5762
5804
|
SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>; /** Send form after booking. */
|
|
@@ -6507,4 +6549,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6507
6549
|
addOnIds: string[] | null;
|
|
6508
6550
|
}
|
|
6509
6551
|
|
|
6510
|
-
export { type ListAddOnGroupsByServiceIdResponse 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 GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type PaymentRateOneOf as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, V2RequestedFields as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, Mode as aJ, RequestedFields as aK, Action as aL, InvalidSlugError as aM, CloneErrors as aN, Status as aO, Event as aP, CrudType as aQ, PlacementType as aR, DayOfWeek as aS, ResolutionMethod as aT, type Media as aU, type MediaItem as aV, type MediaItemItemOneOf as aW, type V2Category as aX, type Form as aY, type FormSettings as aZ, type Payment as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, WorkingHoursMode as al, TaxableAddressType as am, MultiServiceBookingType as an, ResourceTransparency as ao, LocationType as ap, SelectionMethod as aq, DurationUnitType as ar, ValueType as as, BookingStatus as at, PaymentStatus as au, SelectedPaymentOption as av, Platform as aw, Actor as ax, IdentityType as ay, WebhookIdentityType as az, type UpdateServiceValidationErrors as b, type Settings as b$, type FixedPayment as b0, type Money as b1, type CustomPayment as b2, type VariedPayment as b3, type SubscriptionPayment as b4, type FullUpfrontPayment as b5, type PaymentOptions as b6, type DiscountInfo as b7, type OnlineBooking as b8, type Conferencing as b9, type IntakeFormPolicy as bA, type Schedule as bB, type AvailabilityConstraints as bC, type V2Duration as bD, type DurationRange as bE, type DurationRangeConfigOneOf as bF, type HourlyConfig as bG, type DailyConfig as bH, type WorkingHours as bI, type StaffMember as bJ, type StaffMediaItem as bK, type StaffMediaItemItemOneOf as bL, type WorkingHoursLocationCoverage as bM, type StaffMemberDetails as bN, type ResourceGroup as bO, type ResourceIds as bP, type ServiceResource as bQ, type ServiceResourceSelectionOneOf as bR, type ResourceType as bS, type ResourceDetails as bT, type ResourceInfo as bU, type Slug as bV, type URLs as bW, type ExtendedFields as bX, type SeoSchema as bY, type Keyword as bZ, type Tag as b_, type V2Location as ba, type V2LocationOptionsOneOf as bb, type CommonAddress as bc, type CommonAddressStreetOneOf as bd, type CommonStreetAddress as be, type CommonAddressLocation as bf, type BusinessLocationOptions as bg, type CustomLocationOptions as bh, type BookingPolicy as bi, type PolicyDescription as bj, type LimitEarlyBookingPolicy as bk, type LimitLateBookingPolicy as bl, type BookAfterStartPolicy as bm, type CancellationPolicy as bn, type ReschedulePolicy as bo, type WaitlistPolicy as bp, type ParticipantsPolicy as bq, type ResourcesPolicy as br, type CancellationFeePolicy as bs, type CancellationWindow as bt, type CancellationWindowFeeOneOf as bu, type SaveCreditCardPolicy as bv, type StaffSortingPolicy as bw, type StaffSortingPolicyOptionsOneOf as bx, type RankingOptions as by, type CustomOptions as bz, type BulkUpdateServicesOptions as c, type GetServiceAvailabilityConstraintsResponse as c$, type AddOnDetails as c0, type TaxableAddress as c1, type V2PhoneCall as c2, type SetCustomSlugEvent as c3, type ServicesUrlsChanged as c4, type DummyRequest as c5, type DummyResponse as c6, type Booking as c7, type BookingParticipantsInfoOneOf as c8, type BookedEntity as c9, type MultiServiceBookingInfo as cA, type BookedAddOn as cB, type DomainEvent as cC, type DomainEventBodyOneOf as cD, type EntityCreatedEvent as cE, type RestoreInfo as cF, type EntityUpdatedEvent as cG, type EntityDeletedEvent as cH, type ActionEvent as cI, type MessageEnvelope as cJ, type IdentificationData as cK, type IdentificationDataIdOneOf as cL, type AccountInfo as cM, type RebookingFrequencyPolicy as cN, type CreateServiceRequest as cO, type CreateServiceResponse as cP, type ValidateServiceRequest as cQ, type ValidateServiceResponse as cR, type FieldViolation as cS, type BulkCreateServicesRequest as cT, type BulkServiceResult as cU, type ItemMetadata as cV, type ApplicationError as cW, type BulkActionMetadata as cX, type GetServiceRequest as cY, type GetServiceResponse as cZ, type GetServiceAvailabilityConstraintsRequest as c_, type BookedEntityItemOneOf as ca, type BookedSlot as cb, type BookedResource as cc, type Location as cd, type PhoneCall as ce, type ResourceSelection as cf, type BookedSchedule as cg, type ContactDetails as ch, type Address as ci, type AddressStreetOneOf as cj, type StreetAddress as ck, type AddressLocation as cl, type Subdivision as cm, type CustomFormField as cn, type BookingSource as co, type ParticipantNotification as cp, type CommonIdentificationData as cq, type CommonIdentificationDataIdOneOf as cr, type FlowControlSettings as cs, type ParticipantChoices as ct, type ServiceChoices as cu, type ServiceChoice as cv, type ServiceChoiceChoiceOneOf as cw, type Duration as cx, type DateTimeRule as cy, type ParticipantsRange as cz, type BulkUpdateServicesResponse as d, type AggregationResultsResultOneOf as d$, type ServiceAvailabilityConstraints as d0, type SplitInterval as d1, type UpdateServiceRequest as d2, type UpdateServiceResponse as d3, type BulkUpdateServicesRequest as d4, type MaskedService as d5, type BulkUpdateServicesByFilterRequest as d6, type DeleteServiceRequest as d7, type V2ParticipantNotification as d8, type DeleteServiceResponse as d9, type NestedAggregation as dA, type GroupByAggregation as dB, type GroupByAggregationKindOneOf as dC, type SearchDetails as dD, type CursorPagingMetadata as dE, type AggregationData as dF, type ValueAggregationResult as dG, type RangeAggregationResult as dH, type NestedAggregationResults as dI, type NestedAggregationResultsResultOneOf as dJ, type ValueResults as dK, type RangeResults as dL, type AggregationResultsScalarResult as dM, type NestedValueAggregationResult as dN, type ValueResult as dO, type RangeResult as dP, type ScalarResult as dQ, type ScalarDateResult as dR, type NestedResultValue as dS, type NestedResultValueResultOneOf as dT, type Results as dU, type DateHistogramResult as dV, type GroupByValueResults as dW, type DateHistogramResults as dX, type NestedResults as dY, type AggregationResultsScalarDateResult as dZ, type AggregationResults as d_, type BulkDeleteServicesRequest as da, type BulkDeleteServicesByFilterRequest as db, type QueryServicesRequest as dc, type QueryV2 as dd, type QueryV2PagingMethodOneOf as de, type Sorting as df, type Paging as dg, type CursorPaging as dh, type QueryServicesResponse as di, type PagingMetadataV2 as dj, type Cursors as dk, type SearchServicesRequest as dl, type CursorSearch as dm, type CursorSearchPagingMethodOneOf as dn, type Aggregation as dp, type AggregationKindOneOf as dq, type RangeBucket as dr, type IncludeMissingValuesOptions as ds, type ValueAggregation as dt, type ValueAggregationOptionsOneOf as du, type RangeAggregation as dv, type ScalarAggregation as dw, type DateHistogramAggregation as dx, type NestedAggregationItem as dy, type NestedAggregationItemKindOneOf as dz, type BulkUpdateServicesByFilterOptions as e, type BaseEventMetadata as e$, type QueryPoliciesRequest as e0, type CursorQueryPagingMethodOneOf as e1, type BookingPolicyWithServices as e2, type QueryBookingFormsRequest as e3, type BookingForm as e4, type FormDetails as e5, type ConnectedService as e6, type CountServicesRequest as e7, type QueryLocationsRequest as e8, type QueryLocationsFilter as e9, type Properties as eA, type Categories as eB, type Locale as eC, type V4Address as eD, type AddressHint as eE, type GeoCoordinates as eF, type BusinessSchedule as eG, type TimePeriod as eH, type SpecialHourPeriod as eI, type Multilingual as eJ, type SupportedLanguage as eK, type ConsentPolicy as eL, type Translation as eM, type ChangeContext as eN, type ChangeContextPayloadOneOf as eO, type PropertiesChange as eP, type SiteCreated as eQ, type SiteCloned as eR, type CreateAddOnGroupRequest as eS, type DeleteAddOnGroupRequest as eT, type DeleteAddOnGroupResponse as eU, type UpdateAddOnGroupRequest as eV, type ListAddOnGroupsByServiceIdRequest as eW, type AddOn as eX, type AddOnAddOnInfoOneOf as eY, type AddOnGroupDetail as eZ, type SetAddOnsForGroupRequest as e_, type BusinessLocations as ea, type CustomLocations as eb, type CustomerLocations as ec, type QueryCategoriesRequest as ed, type QueryCategoriesFilter as ee, type QueryServicesMultiLanguageRequest as ef, type QueryServicesMultiLanguageResponse as eg, type SetServiceLocationsRequest as eh, type RemovedLocationSessionsAction as ei, type RemovedLocationSessionsActionActionOptionsOneOf as ej, type MoveToNewLocationsOptions as ek, type EnablePricingPlansForServiceRequest as el, type PricingPlanSelection as em, type InvalidPricingPlan as en, type DisablePricingPlansForServiceRequest as eo, type SetCustomSlugRequest as ep, type ValidateSlugRequest as eq, type CloneServiceRequest as er, type CategoryNotification as es, type Category as et, type Empty as eu, type UserDomainInfoChangedEvent as ev, type HtmlSitePublished as ew, type Page as ex, type SitePropertiesNotification as ey, type SitePropertiesEvent as ez, type BulkUpdateServicesByFilterResponse as f, deleteService as f$, type EventMetadata as f0, type AccountInfoMetadata as f1, type ServicesQueryResult as f2, type ServiceQuerySpec as f3, type ServiceSearchSpec as f4, utils as f5, type ServiceTypeWithLiterals as f6, type RateTypeWithLiterals as f7, type FrequencyTypeWithLiterals as f8, type FirstChargeDateTypeWithLiterals as f9, type MissingValuesWithLiterals as fA, type ScalarTypeWithLiterals as fB, type NestedAggregationTypeWithLiterals as fC, type IntervalWithLiterals as fD, type AggregationTypeWithLiterals as fE, type ModeWithLiterals as fF, type RequestedFieldsWithLiterals as fG, type ActionWithLiterals as fH, type InvalidSlugErrorWithLiterals as fI, type CloneErrorsWithLiterals as fJ, type StatusWithLiterals as fK, type EventWithLiterals as fL, type CrudTypeWithLiterals as fM, type PlacementTypeWithLiterals as fN, type DayOfWeekWithLiterals as fO, type ResolutionMethodWithLiterals as fP, type CommonQueryWithEntityContext as fQ, type CommonSearchWithEntityContext as fR, onServiceCreated as fS, onServiceDeleted as fT, onServiceUpdated as fU, createService as fV, bulkCreateServices as fW, getService as fX, updateService as fY, bulkUpdateServices as fZ, bulkUpdateServicesByFilter as f_, type AddOnPaymentOptionsWithLiterals as fa, type LocationTypeEnumLocationTypeWithLiterals as fb, type RankingOrderWithLiterals as fc, type SortingMethodTypeWithLiterals as fd, type TimingWithLiterals as fe, type CompletionRequirementWithLiterals as ff, type UnitTypeWithLiterals as fg, type WorkingHoursModeWithLiterals as fh, type TaxableAddressTypeWithLiterals as fi, type MultiServiceBookingTypeWithLiterals as fj, type ResourceTransparencyWithLiterals as fk, type LocationTypeWithLiterals as fl, type SelectionMethodWithLiterals as fm, type DurationUnitTypeWithLiterals as fn, type ValueTypeWithLiterals as fo, type BookingStatusWithLiterals as fp, type PaymentStatusWithLiterals as fq, type SelectedPaymentOptionWithLiterals as fr, type PlatformWithLiterals as fs, type ActorWithLiterals as ft, type IdentityTypeWithLiterals as fu, type WebhookIdentityTypeWithLiterals as fv, type V2RequestedFieldsWithLiterals as fw, type SortOrderWithLiterals as fx, type SortTypeWithLiterals as fy, type SortDirectionWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkDeleteServices as g0, bulkDeleteServicesByFilter as g1, queryServices as g2, queryPolicies as g3, queryBookingForms as g4, countServices as g5, queryLocations as g6, queryCategories as g7, setServiceLocations as g8, enablePricingPlansForService as g9, disablePricingPlansForService as ga, setCustomSlug as gb, validateSlug as gc, cloneService as gd, createAddOnGroup as ge, deleteAddOnGroup as gf, updateAddOnGroup as gg, listAddOnGroupsByServiceId as gh, setAddOnsForGroup as gi, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
|
|
6552
|
+
export { type ListAddOnGroupsByServiceIdResponse 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 GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type PaymentRateOneOf as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, V2RequestedFields as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, Mode as aJ, RequestedFields as aK, Action as aL, InvalidSlugError as aM, CloneErrors as aN, Status as aO, Event as aP, CrudType as aQ, PlacementType as aR, DayOfWeek as aS, ResolutionMethod as aT, type Media as aU, type MediaItem as aV, type MediaItemItemOneOf as aW, type V2Category as aX, type Form as aY, type FormSettings as aZ, type Payment as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, WorkingHoursMode as al, TaxableAddressType as am, MultiServiceBookingType as an, ResourceTransparency as ao, LocationType as ap, SelectionMethod as aq, DurationUnitType as ar, ValueType as as, BookingStatus as at, PaymentStatus as au, SelectedPaymentOption as av, Platform as aw, Actor as ax, IdentityType as ay, WebhookIdentityType as az, type UpdateServiceValidationErrors as b, type Tag as b$, type FixedPayment as b0, type Money as b1, type CustomPayment as b2, type VariedPayment as b3, type SubscriptionPayment as b4, type FullUpfrontPayment as b5, type PaymentOptions as b6, type DiscountInfo as b7, type OnlineBooking as b8, type Conferencing as b9, type IntakeFormPolicy as bA, type RebookingFrequencyPolicy as bB, type Schedule as bC, type AvailabilityConstraints as bD, type V2Duration as bE, type DurationRange as bF, type DurationRangeConfigOneOf as bG, type HourlyConfig as bH, type DailyConfig as bI, type WorkingHours as bJ, type StaffMember as bK, type StaffMediaItem as bL, type StaffMediaItemItemOneOf as bM, type WorkingHoursLocationCoverage as bN, type StaffMemberDetails as bO, type ResourceGroup as bP, type ResourceIds as bQ, type ServiceResource as bR, type ServiceResourceSelectionOneOf as bS, type ResourceType as bT, type ResourceDetails as bU, type ResourceInfo as bV, type Slug as bW, type URLs as bX, type ExtendedFields as bY, type SeoSchema as bZ, type Keyword as b_, type V2Location as ba, type V2LocationOptionsOneOf as bb, type CommonAddress as bc, type CommonAddressStreetOneOf as bd, type CommonStreetAddress as be, type CommonAddressLocation as bf, type BusinessLocationOptions as bg, type CustomLocationOptions as bh, type BookingPolicy as bi, type PolicyDescription as bj, type LimitEarlyBookingPolicy as bk, type LimitLateBookingPolicy as bl, type BookAfterStartPolicy as bm, type CancellationPolicy as bn, type ReschedulePolicy as bo, type WaitlistPolicy as bp, type ParticipantsPolicy as bq, type ResourcesPolicy as br, type CancellationFeePolicy as bs, type CancellationWindow as bt, type CancellationWindowFeeOneOf as bu, type SaveCreditCardPolicy as bv, type StaffSortingPolicy as bw, type StaffSortingPolicyOptionsOneOf as bx, type RankingOptions as by, type CustomOptions as bz, type BulkUpdateServicesOptions as c, type GetServiceAvailabilityConstraintsResponse as c$, type Settings as c0, type AddOnDetails as c1, type TaxableAddress as c2, type V2PhoneCall as c3, type SetCustomSlugEvent as c4, type ServicesUrlsChanged as c5, type DummyRequest as c6, type DummyResponse as c7, type Booking as c8, type BookingParticipantsInfoOneOf as c9, type ParticipantsRange as cA, type MultiServiceBookingInfo as cB, type BookedAddOn as cC, type DomainEvent as cD, type DomainEventBodyOneOf as cE, type EntityCreatedEvent as cF, type RestoreInfo as cG, type EntityUpdatedEvent as cH, type EntityDeletedEvent as cI, type ActionEvent as cJ, type MessageEnvelope as cK, type IdentificationData as cL, type IdentificationDataIdOneOf as cM, type AccountInfo as cN, type CreateServiceRequest as cO, type CreateServiceResponse as cP, type ValidateServiceRequest as cQ, type ValidateServiceResponse as cR, type FieldViolation as cS, type BulkCreateServicesRequest as cT, type BulkServiceResult as cU, type ItemMetadata as cV, type ApplicationError as cW, type BulkActionMetadata as cX, type GetServiceRequest as cY, type GetServiceResponse as cZ, type GetServiceAvailabilityConstraintsRequest as c_, type BookedEntity as ca, type BookedEntityItemOneOf as cb, type BookedSlot as cc, type BookedResource as cd, type Location as ce, type PhoneCall as cf, type ResourceSelection as cg, type BookedSchedule as ch, type ContactDetails as ci, type Address as cj, type AddressStreetOneOf as ck, type StreetAddress as cl, type AddressLocation as cm, type Subdivision as cn, type CustomFormField as co, type BookingSource as cp, type ParticipantNotification as cq, type CommonIdentificationData as cr, type CommonIdentificationDataIdOneOf as cs, type FlowControlSettings as ct, type ParticipantChoices as cu, type ServiceChoices as cv, type ServiceChoice as cw, type ServiceChoiceChoiceOneOf as cx, type Duration as cy, type DateTimeRule as cz, type BulkUpdateServicesResponse as d, type AggregationResultsResultOneOf as d$, type ServiceAvailabilityConstraints as d0, type SplitInterval as d1, type UpdateServiceRequest as d2, type UpdateServiceResponse as d3, type BulkUpdateServicesRequest as d4, type MaskedService as d5, type BulkUpdateServicesByFilterRequest as d6, type DeleteServiceRequest as d7, type V2ParticipantNotification as d8, type DeleteServiceResponse as d9, type NestedAggregation as dA, type GroupByAggregation as dB, type GroupByAggregationKindOneOf as dC, type SearchDetails as dD, type CursorPagingMetadata as dE, type AggregationData as dF, type ValueAggregationResult as dG, type RangeAggregationResult as dH, type NestedAggregationResults as dI, type NestedAggregationResultsResultOneOf as dJ, type ValueResults as dK, type RangeResults as dL, type AggregationResultsScalarResult as dM, type NestedValueAggregationResult as dN, type ValueResult as dO, type RangeResult as dP, type ScalarResult as dQ, type ScalarDateResult as dR, type NestedResultValue as dS, type NestedResultValueResultOneOf as dT, type Results as dU, type DateHistogramResult as dV, type GroupByValueResults as dW, type DateHistogramResults as dX, type NestedResults as dY, type AggregationResultsScalarDateResult as dZ, type AggregationResults as d_, type BulkDeleteServicesRequest as da, type BulkDeleteServicesByFilterRequest as db, type QueryServicesRequest as dc, type QueryV2 as dd, type QueryV2PagingMethodOneOf as de, type Sorting as df, type Paging as dg, type CursorPaging as dh, type QueryServicesResponse as di, type PagingMetadataV2 as dj, type Cursors as dk, type SearchServicesRequest as dl, type CursorSearch as dm, type CursorSearchPagingMethodOneOf as dn, type Aggregation as dp, type AggregationKindOneOf as dq, type RangeBucket as dr, type IncludeMissingValuesOptions as ds, type ValueAggregation as dt, type ValueAggregationOptionsOneOf as du, type RangeAggregation as dv, type ScalarAggregation as dw, type DateHistogramAggregation as dx, type NestedAggregationItem as dy, type NestedAggregationItemKindOneOf as dz, type BulkUpdateServicesByFilterOptions as e, type BaseEventMetadata as e$, type QueryPoliciesRequest as e0, type CursorQueryPagingMethodOneOf as e1, type BookingPolicyWithServices as e2, type QueryBookingFormsRequest as e3, type BookingForm as e4, type FormDetails as e5, type ConnectedService as e6, type CountServicesRequest as e7, type QueryLocationsRequest as e8, type QueryLocationsFilter as e9, type Properties as eA, type Categories as eB, type Locale as eC, type V4Address as eD, type AddressHint as eE, type GeoCoordinates as eF, type BusinessSchedule as eG, type TimePeriod as eH, type SpecialHourPeriod as eI, type Multilingual as eJ, type SupportedLanguage as eK, type ConsentPolicy as eL, type Translation as eM, type ChangeContext as eN, type ChangeContextPayloadOneOf as eO, type PropertiesChange as eP, type SiteCreated as eQ, type SiteCloned as eR, type CreateAddOnGroupRequest as eS, type DeleteAddOnGroupRequest as eT, type DeleteAddOnGroupResponse as eU, type UpdateAddOnGroupRequest as eV, type ListAddOnGroupsByServiceIdRequest as eW, type AddOn as eX, type AddOnAddOnInfoOneOf as eY, type AddOnGroupDetail as eZ, type SetAddOnsForGroupRequest as e_, type BusinessLocations as ea, type CustomLocations as eb, type CustomerLocations as ec, type QueryCategoriesRequest as ed, type QueryCategoriesFilter as ee, type QueryServicesMultiLanguageRequest as ef, type QueryServicesMultiLanguageResponse as eg, type SetServiceLocationsRequest as eh, type RemovedLocationSessionsAction as ei, type RemovedLocationSessionsActionActionOptionsOneOf as ej, type MoveToNewLocationsOptions as ek, type EnablePricingPlansForServiceRequest as el, type PricingPlanSelection as em, type InvalidPricingPlan as en, type DisablePricingPlansForServiceRequest as eo, type SetCustomSlugRequest as ep, type ValidateSlugRequest as eq, type CloneServiceRequest as er, type CategoryNotification as es, type Category as et, type Empty as eu, type UserDomainInfoChangedEvent as ev, type HtmlSitePublished as ew, type Page as ex, type SitePropertiesNotification as ey, type SitePropertiesEvent as ez, type BulkUpdateServicesByFilterResponse as f, deleteService as f$, type EventMetadata as f0, type AccountInfoMetadata as f1, type ServicesQueryResult as f2, type ServiceQuerySpec as f3, type ServiceSearchSpec as f4, utils as f5, type ServiceTypeWithLiterals as f6, type RateTypeWithLiterals as f7, type FrequencyTypeWithLiterals as f8, type FirstChargeDateTypeWithLiterals as f9, type MissingValuesWithLiterals as fA, type ScalarTypeWithLiterals as fB, type NestedAggregationTypeWithLiterals as fC, type IntervalWithLiterals as fD, type AggregationTypeWithLiterals as fE, type ModeWithLiterals as fF, type RequestedFieldsWithLiterals as fG, type ActionWithLiterals as fH, type InvalidSlugErrorWithLiterals as fI, type CloneErrorsWithLiterals as fJ, type StatusWithLiterals as fK, type EventWithLiterals as fL, type CrudTypeWithLiterals as fM, type PlacementTypeWithLiterals as fN, type DayOfWeekWithLiterals as fO, type ResolutionMethodWithLiterals as fP, type CommonQueryWithEntityContext as fQ, type CommonSearchWithEntityContext as fR, onServiceCreated as fS, onServiceDeleted as fT, onServiceUpdated as fU, createService as fV, bulkCreateServices as fW, getService as fX, updateService as fY, bulkUpdateServices as fZ, bulkUpdateServicesByFilter as f_, type AddOnPaymentOptionsWithLiterals as fa, type LocationTypeEnumLocationTypeWithLiterals as fb, type RankingOrderWithLiterals as fc, type SortingMethodTypeWithLiterals as fd, type TimingWithLiterals as fe, type CompletionRequirementWithLiterals as ff, type UnitTypeWithLiterals as fg, type WorkingHoursModeWithLiterals as fh, type TaxableAddressTypeWithLiterals as fi, type MultiServiceBookingTypeWithLiterals as fj, type ResourceTransparencyWithLiterals as fk, type LocationTypeWithLiterals as fl, type SelectionMethodWithLiterals as fm, type DurationUnitTypeWithLiterals as fn, type ValueTypeWithLiterals as fo, type BookingStatusWithLiterals as fp, type PaymentStatusWithLiterals as fq, type SelectedPaymentOptionWithLiterals as fr, type PlatformWithLiterals as fs, type ActorWithLiterals as ft, type IdentityTypeWithLiterals as fu, type WebhookIdentityTypeWithLiterals as fv, type V2RequestedFieldsWithLiterals as fw, type SortOrderWithLiterals as fx, type SortTypeWithLiterals as fy, type SortDirectionWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkDeleteServices as g0, bulkDeleteServicesByFilter as g1, queryServices as g2, queryPolicies as g3, queryBookingForms as g4, countServices as g5, queryLocations as g6, queryCategories as g7, setServiceLocations as g8, enablePricingPlansForService as g9, disablePricingPlansForService as ga, setCustomSlug as gb, validateSlug as gc, cloneService as gd, createAddOnGroup as ge, deleteAddOnGroup as gf, updateAddOnGroup as gg, listAddOnGroupsByServiceId as gh, setAddOnsForGroup as gi, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, G as GetServiceOptions, 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, H as SetCustomSlugOptions, I as SetCustomSlugResponse, J as SetCustomSlugApplicationErrors, K as SetCustomSlugValidationErrors, V as ValidateSlugOptions, L as ValidateSlugResponse, M as CloneServiceResponse, N as AddOnGroup, O as CreateAddOnGroupOptions, P as CreateAddOnGroupResponse, R as CreateAddOnGroupApplicationErrors, T as DeleteAddOnGroupOptions, W as DeleteAddOnGroupApplicationErrors, X as UpdateAddOnGroupOptions, Y as UpdateAddOnGroupResponse, Z as UpdateAddOnGroupApplicationErrors, _ as ListAddOnGroupsByServiceIdOptions, $ as ListAddOnGroupsByServiceIdResponse, a0 as SetAddOnsForGroupOptions, a1 as SetAddOnsForGroupResponse, a2 as SetAddOnsForGroupApplicationErrors, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope, a6 as ServiceQuery, a7 as QueryServicesOptions, a8 as typedQueryServices, a9 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-
|
|
3
|
-
export {
|
|
2
|
+
import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, G as GetServiceOptions, 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, H as SetCustomSlugOptions, I as SetCustomSlugResponse, J as SetCustomSlugApplicationErrors, K as SetCustomSlugValidationErrors, V as ValidateSlugOptions, L as ValidateSlugResponse, M as CloneServiceResponse, N as AddOnGroup, O as CreateAddOnGroupOptions, P as CreateAddOnGroupResponse, R as CreateAddOnGroupApplicationErrors, T as DeleteAddOnGroupOptions, W as DeleteAddOnGroupApplicationErrors, X as UpdateAddOnGroupOptions, Y as UpdateAddOnGroupResponse, Z as UpdateAddOnGroupApplicationErrors, _ as ListAddOnGroupsByServiceIdOptions, $ as ListAddOnGroupsByServiceIdResponse, a0 as SetAddOnsForGroupOptions, a1 as SetAddOnsForGroupResponse, a2 as SetAddOnsForGroupApplicationErrors, a3 as ServiceCreatedEnvelope, a4 as ServiceDeletedEnvelope, a5 as ServiceUpdatedEnvelope, a6 as ServiceQuery, a7 as QueryServicesOptions, a8 as typedQueryServices, a9 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-eA4yFYhG.js';
|
|
3
|
+
export { cN as AccountInfo, f1 as AccountInfoMetadata, aL as Action, cJ as ActionEvent, fH as ActionWithLiterals, ax as Actor, ft as ActorWithLiterals, eX as AddOn, eY as AddOnAddOnInfoOneOf, c1 as AddOnDetails, eZ as AddOnGroupDetail, ae as AddOnPaymentOptions, fa as AddOnPaymentOptionsWithLiterals, cj as Address, eE as AddressHint, cm as AddressLocation, ck as AddressStreetOneOf, dp as Aggregation, dF as AggregationData, dq as AggregationKindOneOf, d_ as AggregationResults, d$ as AggregationResultsResultOneOf, dZ as AggregationResultsScalarDateResult, dM as AggregationResultsScalarResult, aI as AggregationType, fE as AggregationTypeWithLiterals, cW as ApplicationError, bD as AvailabilityConstraints, e$ as BaseEventMetadata, bm as BookAfterStartPolicy, cC as BookedAddOn, ca as BookedEntity, cb as BookedEntityItemOneOf, cd as BookedResource, ch as BookedSchedule, cc as BookedSlot, c8 as Booking, e4 as BookingForm, c9 as BookingParticipantsInfoOneOf, bi as BookingPolicy, e2 as BookingPolicyWithServices, cp as BookingSource, at as BookingStatus, fp as BookingStatusWithLiterals, cX as BulkActionMetadata, cT as BulkCreateServicesRequest, db as BulkDeleteServicesByFilterRequest, da as BulkDeleteServicesRequest, cU as BulkServiceResult, d6 as BulkUpdateServicesByFilterRequest, d4 as BulkUpdateServicesRequest, bg as BusinessLocationOptions, ea as BusinessLocations, eG as BusinessSchedule, bs as CancellationFeePolicy, bn as CancellationPolicy, bt as CancellationWindow, bu as CancellationWindowFeeOneOf, eB as Categories, et as Category, es as CategoryNotification, eN as ChangeContext, eO as ChangeContextPayloadOneOf, aN as CloneErrors, fJ as CloneErrorsWithLiterals, er as CloneServiceRequest, bc as CommonAddress, bf as CommonAddressLocation, bd as CommonAddressStreetOneOf, cr as CommonIdentificationData, cs as CommonIdentificationDataIdOneOf, fQ as CommonQueryWithEntityContext, fR as CommonSearchWithEntityContext, be as CommonStreetAddress, aj as CompletionRequirement, ff as CompletionRequirementWithLiterals, b9 as Conferencing, e6 as ConnectedService, eL as ConsentPolicy, ci as ContactDetails, e7 as CountServicesRequest, eS as CreateAddOnGroupRequest, cO as CreateServiceRequest, cP as CreateServiceResponse, aQ as CrudType, fM as CrudTypeWithLiterals, dh as CursorPaging, dE as CursorPagingMetadata, e1 as CursorQueryPagingMethodOneOf, dm as CursorSearch, dn as CursorSearchPagingMethodOneOf, dk as Cursors, co as CustomFormField, bh as CustomLocationOptions, eb as CustomLocations, bz as CustomOptions, b2 as CustomPayment, ec as CustomerLocations, bI as DailyConfig, dx as DateHistogramAggregation, dV as DateHistogramResult, dX as DateHistogramResults, cz as DateTimeRule, aS as DayOfWeek, fO as DayOfWeekWithLiterals, eT as DeleteAddOnGroupRequest, eU as DeleteAddOnGroupResponse, d7 as DeleteServiceRequest, d9 as DeleteServiceResponse, eo as DisablePricingPlansForServiceRequest, b7 as DiscountInfo, cD as DomainEvent, cE as DomainEventBodyOneOf, c6 as DummyRequest, c7 as DummyResponse, cy as Duration, bF as DurationRange, bG as DurationRangeConfigOneOf, ar as DurationUnitType, fn as DurationUnitTypeWithLiterals, eu as Empty, el as EnablePricingPlansForServiceRequest, cF as EntityCreatedEvent, cI as EntityDeletedEvent, cH as EntityUpdatedEvent, aP as Event, f0 as EventMetadata, fL as EventWithLiterals, bY as ExtendedFields, cS as FieldViolation, ad as FirstChargeDateType, f9 as FirstChargeDateTypeWithLiterals, b0 as FixedPayment, ct as FlowControlSettings, aY as Form, e5 as FormDetails, aZ as FormSettings, ac as FrequencyType, f8 as FrequencyTypeWithLiterals, b5 as FullUpfrontPayment, eF as GeoCoordinates, c_ as GetServiceAvailabilityConstraintsRequest, c$ as GetServiceAvailabilityConstraintsResponse, cY as GetServiceRequest, cZ as GetServiceResponse, dB as GroupByAggregation, dC as GroupByAggregationKindOneOf, dW as GroupByValueResults, bH as HourlyConfig, ew as HtmlSitePublished, cL as IdentificationData, cM as IdentificationDataIdOneOf, ay as IdentityType, fu as IdentityTypeWithLiterals, ds as IncludeMissingValuesOptions, bA as IntakeFormPolicy, aH as Interval, fD as IntervalWithLiterals, en as InvalidPricingPlan, aM as InvalidSlugError, fI as InvalidSlugErrorWithLiterals, cV as ItemMetadata, b_ as Keyword, bk as LimitEarlyBookingPolicy, bl as LimitLateBookingPolicy, eW as ListAddOnGroupsByServiceIdRequest, eC as Locale, ce as Location, ap as LocationType, af as LocationTypeEnumLocationType, fb as LocationTypeEnumLocationTypeWithLiterals, fl as LocationTypeWithLiterals, d5 as MaskedService, aU as Media, aV as MediaItem, aW as MediaItemItemOneOf, cK as MessageEnvelope, aE as MissingValues, fA as MissingValuesWithLiterals, aJ as Mode, fF as ModeWithLiterals, b1 as Money, ek as MoveToNewLocationsOptions, cB as MultiServiceBookingInfo, an as MultiServiceBookingType, fj as MultiServiceBookingTypeWithLiterals, eJ as Multilingual, dA as NestedAggregation, dy as NestedAggregationItem, dz as NestedAggregationItemKindOneOf, dI as NestedAggregationResults, dJ as NestedAggregationResultsResultOneOf, aG as NestedAggregationType, fC as NestedAggregationTypeWithLiterals, dS as NestedResultValue, dT as NestedResultValueResultOneOf, dY as NestedResults, dN as NestedValueAggregationResult, b8 as OnlineBooking, ex as Page, dg as Paging, dj as PagingMetadataV2, cu as ParticipantChoices, cq as ParticipantNotification, bq as ParticipantsPolicy, cA as ParticipantsRange, a_ as Payment, b6 as PaymentOptions, a$ as PaymentRateOneOf, au as PaymentStatus, fq as PaymentStatusWithLiterals, cf as PhoneCall, aR as PlacementType, fN as PlacementTypeWithLiterals, aw as Platform, fs as PlatformWithLiterals, bj as PolicyDescription, em as PricingPlanSelection, eA as Properties, eP as PropertiesChange, e3 as QueryBookingFormsRequest, ee as QueryCategoriesFilter, ed as QueryCategoriesRequest, e9 as QueryLocationsFilter, e8 as QueryLocationsRequest, e0 as QueryPoliciesRequest, ef as QueryServicesMultiLanguageRequest, eg as QueryServicesMultiLanguageResponse, dc as QueryServicesRequest, di as QueryServicesResponse, dd as QueryV2, de as QueryV2PagingMethodOneOf, dv as RangeAggregation, dH as RangeAggregationResult, dr as RangeBucket, dP as RangeResult, dL as RangeResults, by as RankingOptions, ag as RankingOrder, fc as RankingOrderWithLiterals, ab as RateType, f7 as RateTypeWithLiterals, bB as RebookingFrequencyPolicy, ei as RemovedLocationSessionsAction, ej as RemovedLocationSessionsActionActionOptionsOneOf, aK as RequestedFields, fG as RequestedFieldsWithLiterals, bo as ReschedulePolicy, aT as ResolutionMethod, fP as ResolutionMethodWithLiterals, bU as ResourceDetails, bP as ResourceGroup, bQ as ResourceIds, bV as ResourceInfo, cg as ResourceSelection, ao as ResourceTransparency, fk as ResourceTransparencyWithLiterals, bT as ResourceType, br as ResourcesPolicy, cG as RestoreInfo, dU as Results, bv as SaveCreditCardPolicy, dw as ScalarAggregation, dR as ScalarDateResult, dQ as ScalarResult, aF as ScalarType, fB as ScalarTypeWithLiterals, bC as Schedule, dD as SearchDetails, dl as SearchServicesRequest, av as SelectedPaymentOption, fr as SelectedPaymentOptionWithLiterals, aq as SelectionMethod, fm as SelectionMethodWithLiterals, bZ as SeoSchema, d0 as ServiceAvailabilityConstraints, cw as ServiceChoice, cx as ServiceChoiceChoiceOneOf, cv as ServiceChoices, f3 as ServiceQuerySpec, bR as ServiceResource, bS as ServiceResourceSelectionOneOf, f4 as ServiceSearchSpec, aa as ServiceType, f6 as ServiceTypeWithLiterals, f2 as ServicesQueryResult, c5 as ServicesUrlsChanged, e_ as SetAddOnsForGroupRequest, c4 as SetCustomSlugEvent, ep as SetCustomSlugRequest, eh as SetServiceLocationsRequest, c0 as Settings, eR as SiteCloned, eQ as SiteCreated, ez as SitePropertiesEvent, ey as SitePropertiesNotification, bW as Slug, aD as SortDirection, fz as SortDirectionWithLiterals, aB as SortOrder, fx as SortOrderWithLiterals, aC as SortType, fy as SortTypeWithLiterals, df as Sorting, ah as SortingMethodType, fd as SortingMethodTypeWithLiterals, eI as SpecialHourPeriod, d1 as SplitInterval, bL as StaffMediaItem, bM as StaffMediaItemItemOneOf, bK as StaffMember, bO as StaffMemberDetails, bw as StaffSortingPolicy, bx as StaffSortingPolicyOptionsOneOf, aO as Status, fK as StatusWithLiterals, cl as StreetAddress, cn as Subdivision, b4 as SubscriptionPayment, eK as SupportedLanguage, b$ as Tag, c2 as TaxableAddress, am as TaxableAddressType, fi as TaxableAddressTypeWithLiterals, eH as TimePeriod, ai as Timing, fe as TimingWithLiterals, eM as Translation, bX as URLs, ak as UnitType, fg as UnitTypeWithLiterals, eV as UpdateAddOnGroupRequest, d2 as UpdateServiceRequest, d3 as UpdateServiceResponse, ev as UserDomainInfoChangedEvent, aX as V2Category, bE as V2Duration, ba as V2Location, bb as V2LocationOptionsOneOf, d8 as V2ParticipantNotification, c3 as V2PhoneCall, aA as V2RequestedFields, fw as V2RequestedFieldsWithLiterals, eD as V4Address, cQ as ValidateServiceRequest, cR as ValidateServiceResponse, eq as ValidateSlugRequest, dt as ValueAggregation, du as ValueAggregationOptionsOneOf, dG as ValueAggregationResult, dO as ValueResult, dK as ValueResults, as as ValueType, fo as ValueTypeWithLiterals, b3 as VariedPayment, bp as WaitlistPolicy, az as WebhookIdentityType, fv as WebhookIdentityTypeWithLiterals, bJ as WorkingHours, bN as WorkingHoursLocationCoverage, al as WorkingHoursMode, fh as WorkingHoursModeWithLiterals, f5 as utils } from './bookings-services-v2-service-services.universal-eA4yFYhG.js';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|