@wix/auto_sdk_bookings_services 1.0.249 → 1.0.251
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-gehWJ2Jb.d.ts → bookings-services-v2-service-services.universal-BDh2Ybc2.d.ts} +20 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +15 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +15 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +21 -2
- package/build/cjs/meta.js +10 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-gehWJ2Jb.d.mts → bookings-services-v2-service-services.universal-BDh2Ybc2.d.mts} +20 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +13 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +13 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +21 -2
- package/build/es/meta.mjs +8 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-yhQzgyJF.d.ts → bookings-services-v2-service-services.universal-BuV3bp_v.d.ts} +71 -2
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +15 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +15 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +21 -2
- package/build/internal/cjs/meta.js +10 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-yhQzgyJF.d.mts → bookings-services-v2-service-services.universal-BuV3bp_v.d.mts} +71 -2
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +13 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +13 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +21 -2
- package/build/internal/es/meta.mjs +8 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1319,6 +1319,11 @@ interface DailyConfig {
|
|
|
1319
1319
|
*/
|
|
1320
1320
|
maxDurationInDays?: number;
|
|
1321
1321
|
}
|
|
1322
|
+
/** Determines which working hours bound the service's availability. */
|
|
1323
|
+
declare enum WorkingHoursMode {
|
|
1324
|
+
}
|
|
1325
|
+
/** @enumType */
|
|
1326
|
+
type WorkingHoursModeWithLiterals = WorkingHoursMode;
|
|
1322
1327
|
interface StaffMember {
|
|
1323
1328
|
/**
|
|
1324
1329
|
* ID of the [resource](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) associated with the staff member providing the service.
|
|
@@ -2751,6 +2756,20 @@ interface AccountInfo {
|
|
|
2751
2756
|
*/
|
|
2752
2757
|
siteId?: string | null;
|
|
2753
2758
|
}
|
|
2759
|
+
/**
|
|
2760
|
+
* Controls how a service's own working hours combine with the working hours of its assigned
|
|
2761
|
+
* staff members and required resources. The hours themselves are not held here. They are the
|
|
2762
|
+
* `WORKING_HOURS` events on the service's schedule (`schedule.id`), and this message controls
|
|
2763
|
+
* only how they combine with the resources working hours.
|
|
2764
|
+
*/
|
|
2765
|
+
interface WorkingHours {
|
|
2766
|
+
/** How the service's own working hours combine with its resources working hours. */
|
|
2767
|
+
mode?: V2WorkingHoursModeWithLiterals;
|
|
2768
|
+
}
|
|
2769
|
+
declare enum V2WorkingHoursMode {
|
|
2770
|
+
}
|
|
2771
|
+
/** @enumType */
|
|
2772
|
+
type V2WorkingHoursModeWithLiterals = V2WorkingHoursMode;
|
|
2754
2773
|
interface CreateServiceRequest {
|
|
2755
2774
|
/** Service to create. */
|
|
2756
2775
|
service: Service;
|
|
@@ -6481,4 +6500,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6481
6500
|
addOnIds: string[] | null;
|
|
6482
6501
|
}
|
|
6483
6502
|
|
|
6484
|
-
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 FixedPayment 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, SortOrder as aA, SortType as aB, SortDirection as aC, MissingValues as aD, ScalarType as aE, NestedAggregationType as aF, Interval as aG, AggregationType as aH, Mode as aI, RequestedFields as aJ, Action as aK, InvalidSlugError as aL, CloneErrors as aM, Status as aN, Event as aO, CrudType as aP, PlacementType as aQ, DayOfWeek as aR, ResolutionMethod as aS, type Media as aT, type MediaItem as aU, type MediaItemItemOneOf as aV, type V2Category as aW, type Form as aX, type FormSettings as aY, type Payment as aZ, type PaymentRateOneOf 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, TaxableAddressType as al, MultiServiceBookingType as am, ResourceTransparency as an, LocationType as ao, SelectionMethod as ap, DurationUnitType as aq, ValueType as ar, BookingStatus as as, PaymentStatus as at, SelectedPaymentOption as au, Platform as av, Actor as aw, IdentityType as ax, WebhookIdentityType as ay, V2RequestedFields as az, type UpdateServiceValidationErrors as b, type TaxableAddress as b$, type Money as b0, type CustomPayment as b1, type VariedPayment as b2, type SubscriptionPayment as b3, type FullUpfrontPayment as b4, type PaymentOptions as b5, type DiscountInfo as b6, type OnlineBooking as b7, type Conferencing as b8, type V2Location as b9, type Schedule as bA, type AvailabilityConstraints as bB, type V2Duration as bC, type DurationRange as bD, type DurationRangeConfigOneOf as bE, type HourlyConfig as bF, type DailyConfig as bG, type StaffMember as bH, type StaffMediaItem as bI, type StaffMediaItemItemOneOf as bJ, type WorkingHoursLocationCoverage as bK, type StaffMemberDetails as bL, type ResourceGroup as bM, type ResourceIds as bN, type ServiceResource as bO, type ServiceResourceSelectionOneOf as bP, type ResourceType as bQ, type ResourceDetails as bR, type ResourceInfo as bS, type Slug as bT, type URLs as bU, type ExtendedFields as bV, type SeoSchema as bW, type Keyword as bX, type Tag as bY, type Settings as bZ, type AddOnDetails as b_, type V2LocationOptionsOneOf as ba, type CommonAddress as bb, type CommonAddressStreetOneOf as bc, type CommonStreetAddress as bd, type CommonAddressLocation as be, type BusinessLocationOptions as bf, type CustomLocationOptions as bg, type BookingPolicy as bh, type PolicyDescription as bi, type LimitEarlyBookingPolicy as bj, type LimitLateBookingPolicy as bk, type BookAfterStartPolicy as bl, type CancellationPolicy as bm, type ReschedulePolicy as bn, type WaitlistPolicy as bo, type ParticipantsPolicy as bp, type ResourcesPolicy as bq, type CancellationFeePolicy as br, type CancellationWindow as bs, type CancellationWindowFeeOneOf as bt, type SaveCreditCardPolicy as bu, type StaffSortingPolicy as bv, type StaffSortingPolicyOptionsOneOf as bw, type RankingOptions as bx, type CustomOptions as by, type IntakeFormPolicy as bz, type BulkUpdateServicesOptions as c, type UpdateServiceRequest as c$, type V2PhoneCall as c0, type SetCustomSlugEvent as c1, type ServicesUrlsChanged as c2, type DummyRequest as c3, type DummyResponse as c4, type Booking as c5, type BookingParticipantsInfoOneOf as c6, type BookedEntity as c7, type BookedEntityItemOneOf as c8, type BookedSlot as c9, type DomainEvent as cA, type DomainEventBodyOneOf as cB, type EntityCreatedEvent as cC, type RestoreInfo as cD, type EntityUpdatedEvent as cE, type EntityDeletedEvent as cF, type ActionEvent as cG, type MessageEnvelope as cH, type IdentificationData as cI, type IdentificationDataIdOneOf as cJ, type AccountInfo as cK, type CreateServiceRequest as cL, type CreateServiceResponse as cM, type ValidateServiceRequest as cN, type ValidateServiceResponse as cO, type FieldViolation as cP, type BulkCreateServicesRequest as cQ, type BulkServiceResult as cR, type ItemMetadata as cS, type ApplicationError as cT, type BulkActionMetadata as cU, type GetServiceRequest as cV, type GetServiceResponse as cW, type GetServiceAvailabilityConstraintsRequest as cX, type GetServiceAvailabilityConstraintsResponse as cY, type ServiceAvailabilityConstraints as cZ, type SplitInterval as c_, type BookedResource as ca, type Location as cb, type PhoneCall as cc, type ResourceSelection as cd, type BookedSchedule as ce, type ContactDetails as cf, type Address as cg, type AddressStreetOneOf as ch, type StreetAddress as ci, type AddressLocation as cj, type Subdivision as ck, type CustomFormField as cl, type BookingSource as cm, type ParticipantNotification as cn, type CommonIdentificationData as co, type CommonIdentificationDataIdOneOf as cp, type FlowControlSettings as cq, type ParticipantChoices as cr, type ServiceChoices as cs, type ServiceChoice as ct, type ServiceChoiceChoiceOneOf as cu, type Duration as cv, type DateTimeRule as cw, type ParticipantsRange as cx, type MultiServiceBookingInfo as cy, type BookedAddOn as cz, type BulkUpdateServicesResponse as d, type BookingPolicyWithServices as d$, type UpdateServiceResponse as d0, type BulkUpdateServicesRequest as d1, type MaskedService as d2, type BulkUpdateServicesByFilterRequest as d3, type DeleteServiceRequest as d4, type V2ParticipantNotification as d5, type DeleteServiceResponse as d6, type BulkDeleteServicesRequest as d7, type BulkDeleteServicesByFilterRequest as d8, type QueryServicesRequest as d9, type SearchDetails as dA, type CursorPagingMetadata as dB, type AggregationData as dC, type ValueAggregationResult as dD, type RangeAggregationResult as dE, type NestedAggregationResults as dF, type NestedAggregationResultsResultOneOf as dG, type ValueResults as dH, type RangeResults as dI, type AggregationResultsScalarResult as dJ, type NestedValueAggregationResult as dK, type ValueResult as dL, type RangeResult as dM, type ScalarResult as dN, type ScalarDateResult as dO, type NestedResultValue as dP, type NestedResultValueResultOneOf as dQ, type Results as dR, type DateHistogramResult as dS, type GroupByValueResults as dT, type DateHistogramResults as dU, type NestedResults as dV, type AggregationResultsScalarDateResult as dW, type AggregationResults as dX, type AggregationResultsResultOneOf as dY, type QueryPoliciesRequest as dZ, type CursorQueryPagingMethodOneOf as d_, type QueryV2 as da, type QueryV2PagingMethodOneOf as db, type Sorting as dc, type Paging as dd, type CursorPaging as de, type QueryServicesResponse as df, type PagingMetadataV2 as dg, type Cursors as dh, type SearchServicesRequest as di, type CursorSearch as dj, type CursorSearchPagingMethodOneOf as dk, type Aggregation as dl, type AggregationKindOneOf as dm, type RangeBucket as dn, type IncludeMissingValuesOptions as dp, type ValueAggregation as dq, type ValueAggregationOptionsOneOf as dr, type RangeAggregation as ds, type ScalarAggregation as dt, type DateHistogramAggregation as du, type NestedAggregationItem as dv, type NestedAggregationItemKindOneOf as dw, type NestedAggregation as dx, type GroupByAggregation as dy, type GroupByAggregationKindOneOf as dz, type BulkUpdateServicesByFilterOptions as e, type ServicesQueryResult as e$, type QueryBookingFormsRequest as e0, type BookingForm as e1, type FormDetails as e2, type ConnectedService as e3, type CountServicesRequest as e4, type QueryLocationsRequest as e5, type QueryLocationsFilter as e6, type BusinessLocations as e7, type CustomLocations as e8, type CustomerLocations as e9, type V4Address as eA, type AddressHint as eB, type GeoCoordinates as eC, type BusinessSchedule as eD, type TimePeriod as eE, type SpecialHourPeriod as eF, type Multilingual as eG, type SupportedLanguage as eH, type ConsentPolicy as eI, type Translation as eJ, type ChangeContext as eK, type ChangeContextPayloadOneOf as eL, type PropertiesChange as eM, type SiteCreated as eN, type SiteCloned as eO, type CreateAddOnGroupRequest as eP, type DeleteAddOnGroupRequest as eQ, type DeleteAddOnGroupResponse as eR, type UpdateAddOnGroupRequest as eS, type ListAddOnGroupsByServiceIdRequest as eT, type AddOn as eU, type AddOnAddOnInfoOneOf as eV, type AddOnGroupDetail as eW, type SetAddOnsForGroupRequest as eX, type BaseEventMetadata as eY, type EventMetadata as eZ, type AccountInfoMetadata as e_, type QueryCategoriesRequest as ea, type QueryCategoriesFilter as eb, type QueryServicesMultiLanguageRequest as ec, type QueryServicesMultiLanguageResponse as ed, type SetServiceLocationsRequest as ee, type RemovedLocationSessionsAction as ef, type RemovedLocationSessionsActionActionOptionsOneOf as eg, type MoveToNewLocationsOptions as eh, type EnablePricingPlansForServiceRequest as ei, type PricingPlanSelection as ej, type InvalidPricingPlan as ek, type DisablePricingPlansForServiceRequest as el, type SetCustomSlugRequest as em, type ValidateSlugRequest as en, type CloneServiceRequest as eo, type CategoryNotification as ep, type Category as eq, type Empty as er, type UserDomainInfoChangedEvent as es, type HtmlSitePublished as et, type Page as eu, type SitePropertiesNotification as ev, type SitePropertiesEvent as ew, type Properties as ex, type Categories as ey, type Locale as ez, type BulkUpdateServicesByFilterResponse as f, queryPolicies as f$, type ServiceQuerySpec as f0, type ServiceSearchSpec as f1, utils as f2, type ServiceTypeWithLiterals as f3, type RateTypeWithLiterals as f4, type FrequencyTypeWithLiterals as f5, type FirstChargeDateTypeWithLiterals as f6, type AddOnPaymentOptionsWithLiterals as f7, type LocationTypeEnumLocationTypeWithLiterals as f8, type RankingOrderWithLiterals as f9, type AggregationTypeWithLiterals as fA, type ModeWithLiterals as fB, type RequestedFieldsWithLiterals as fC, type ActionWithLiterals as fD, type InvalidSlugErrorWithLiterals as fE, type CloneErrorsWithLiterals as fF, type StatusWithLiterals as fG, type EventWithLiterals as fH, type CrudTypeWithLiterals as fI, type PlacementTypeWithLiterals as fJ, type DayOfWeekWithLiterals as fK, type ResolutionMethodWithLiterals as fL, type CommonQueryWithEntityContext as fM, type CommonSearchWithEntityContext as fN, onServiceCreated as fO, onServiceDeleted as fP, onServiceUpdated as fQ, createService as fR, bulkCreateServices as fS, getService as fT, updateService as fU, bulkUpdateServices as fV, bulkUpdateServicesByFilter as fW, deleteService as fX, bulkDeleteServices as fY, bulkDeleteServicesByFilter as fZ, queryServices as f_, type SortingMethodTypeWithLiterals as fa, type TimingWithLiterals as fb, type CompletionRequirementWithLiterals as fc, type UnitTypeWithLiterals as fd, type TaxableAddressTypeWithLiterals as fe, type MultiServiceBookingTypeWithLiterals as ff, type ResourceTransparencyWithLiterals as fg, type LocationTypeWithLiterals as fh, type SelectionMethodWithLiterals as fi, type DurationUnitTypeWithLiterals as fj, type ValueTypeWithLiterals as fk, type BookingStatusWithLiterals as fl, type PaymentStatusWithLiterals as fm, type SelectedPaymentOptionWithLiterals as fn, type PlatformWithLiterals as fo, type ActorWithLiterals as fp, type IdentityTypeWithLiterals as fq, type WebhookIdentityTypeWithLiterals as fr, type V2RequestedFieldsWithLiterals as fs, type SortOrderWithLiterals as ft, type SortTypeWithLiterals as fu, type SortDirectionWithLiterals as fv, type MissingValuesWithLiterals as fw, type ScalarTypeWithLiterals as fx, type NestedAggregationTypeWithLiterals as fy, type IntervalWithLiterals as fz, type BulkDeleteServicesOptions as g, queryBookingForms as g0, countServices as g1, queryLocations as g2, queryCategories as g3, setServiceLocations as g4, enablePricingPlansForService as g5, disablePricingPlansForService as g6, setCustomSlug as g7, validateSlug as g8, cloneService as g9, createAddOnGroup as ga, deleteAddOnGroup as gb, updateAddOnGroup as gc, listAddOnGroupsByServiceId as gd, setAddOnsForGroup as ge, 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 };
|
|
6503
|
+
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 Payment 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, V2WorkingHoursMode as aA, V2RequestedFields as aB, SortOrder as aC, SortType as aD, SortDirection as aE, MissingValues as aF, ScalarType as aG, NestedAggregationType as aH, Interval as aI, AggregationType as aJ, Mode as aK, RequestedFields as aL, Action as aM, InvalidSlugError as aN, CloneErrors as aO, Status as aP, Event as aQ, CrudType as aR, PlacementType as aS, DayOfWeek as aT, ResolutionMethod as aU, type Media as aV, type MediaItem as aW, type MediaItemItemOneOf as aX, type V2Category as aY, type Form as aZ, type FormSettings 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 PaymentRateOneOf as b0, type FixedPayment as b1, type Money as b2, type CustomPayment as b3, type VariedPayment as b4, type SubscriptionPayment as b5, type FullUpfrontPayment as b6, type PaymentOptions as b7, type DiscountInfo as b8, type OnlineBooking as b9, type CustomOptions as bA, type IntakeFormPolicy 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 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 Conferencing as ba, type V2Location as bb, type V2LocationOptionsOneOf as bc, type CommonAddress as bd, type CommonAddressStreetOneOf as be, type CommonStreetAddress as bf, type CommonAddressLocation as bg, type BusinessLocationOptions as bh, type CustomLocationOptions as bi, type BookingPolicy as bj, type PolicyDescription as bk, type LimitEarlyBookingPolicy as bl, type LimitLateBookingPolicy as bm, type BookAfterStartPolicy as bn, type CancellationPolicy as bo, type ReschedulePolicy as bp, type WaitlistPolicy as bq, type ParticipantsPolicy as br, type ResourcesPolicy as bs, type CancellationFeePolicy as bt, type CancellationWindow as bu, type CancellationWindowFeeOneOf as bv, type SaveCreditCardPolicy as bw, type StaffSortingPolicy as bx, type StaffSortingPolicyOptionsOneOf as by, type RankingOptions 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 WorkingHours 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, bulkUpdateServicesByFilter 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 SortDirectionWithLiterals as fA, type MissingValuesWithLiterals as fB, type ScalarTypeWithLiterals as fC, type NestedAggregationTypeWithLiterals as fD, type IntervalWithLiterals as fE, type AggregationTypeWithLiterals as fF, type ModeWithLiterals as fG, type RequestedFieldsWithLiterals as fH, type ActionWithLiterals as fI, type InvalidSlugErrorWithLiterals as fJ, type CloneErrorsWithLiterals as fK, type StatusWithLiterals as fL, type EventWithLiterals as fM, type CrudTypeWithLiterals as fN, type PlacementTypeWithLiterals as fO, type DayOfWeekWithLiterals as fP, type ResolutionMethodWithLiterals as fQ, type CommonQueryWithEntityContext as fR, type CommonSearchWithEntityContext as fS, onServiceCreated as fT, onServiceDeleted as fU, onServiceUpdated as fV, createService as fW, bulkCreateServices as fX, getService as fY, updateService as fZ, bulkUpdateServices 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 V2WorkingHoursModeWithLiterals as fw, type V2RequestedFieldsWithLiterals as fx, type SortOrderWithLiterals as fy, type SortTypeWithLiterals as fz, type BulkDeleteServicesOptions as g, deleteService as g0, bulkDeleteServices as g1, bulkDeleteServicesByFilter as g2, queryServices as g3, queryPolicies as g4, queryBookingForms as g5, countServices as g6, queryLocations as g7, queryCategories as g8, setServiceLocations as g9, enablePricingPlansForService as ga, disablePricingPlansForService as gb, setCustomSlug as gc, validateSlug as gd, cloneService as ge, createAddOnGroup as gf, deleteAddOnGroup as gg, updateAddOnGroup as gh, listAddOnGroupsByServiceId as gi, setAddOnsForGroup as gj, 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/es/index.d.mts
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-BDh2Ybc2.mjs';
|
|
3
|
+
export { cM as AccountInfo, f1 as AccountInfoMetadata, aM as Action, cI as ActionEvent, fI as ActionWithLiterals, ax as Actor, ft as ActorWithLiterals, eX as AddOn, eY as AddOnAddOnInfoOneOf, c0 as AddOnDetails, eZ as AddOnGroupDetail, ae as AddOnPaymentOptions, fa as AddOnPaymentOptionsWithLiterals, ci as Address, eE as AddressHint, cl as AddressLocation, cj as AddressStreetOneOf, dp as Aggregation, dF as AggregationData, dq as AggregationKindOneOf, d_ as AggregationResults, d$ as AggregationResultsResultOneOf, dZ as AggregationResultsScalarDateResult, dM as AggregationResultsScalarResult, aJ as AggregationType, fF as AggregationTypeWithLiterals, cW as ApplicationError, bD as AvailabilityConstraints, e$ as BaseEventMetadata, bn as BookAfterStartPolicy, cB as BookedAddOn, c9 as BookedEntity, ca as BookedEntityItemOneOf, cc as BookedResource, cg as BookedSchedule, cb as BookedSlot, c7 as Booking, e4 as BookingForm, c8 as BookingParticipantsInfoOneOf, bj as BookingPolicy, e2 as BookingPolicyWithServices, co 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, bh as BusinessLocationOptions, ea as BusinessLocations, eG as BusinessSchedule, bt as CancellationFeePolicy, bo as CancellationPolicy, bu as CancellationWindow, bv as CancellationWindowFeeOneOf, eB as Categories, et as Category, es as CategoryNotification, eN as ChangeContext, eO as ChangeContextPayloadOneOf, aO as CloneErrors, fK as CloneErrorsWithLiterals, er as CloneServiceRequest, bd as CommonAddress, bg as CommonAddressLocation, be as CommonAddressStreetOneOf, cq as CommonIdentificationData, cr as CommonIdentificationDataIdOneOf, fR as CommonQueryWithEntityContext, fS as CommonSearchWithEntityContext, bf as CommonStreetAddress, aj as CompletionRequirement, ff as CompletionRequirementWithLiterals, ba as Conferencing, e6 as ConnectedService, eL as ConsentPolicy, ch as ContactDetails, e7 as CountServicesRequest, eS as CreateAddOnGroupRequest, cO as CreateServiceRequest, cP as CreateServiceResponse, aR as CrudType, fN as CrudTypeWithLiterals, dh as CursorPaging, dE as CursorPagingMetadata, e1 as CursorQueryPagingMethodOneOf, dm as CursorSearch, dn as CursorSearchPagingMethodOneOf, dk as Cursors, cn as CustomFormField, bi as CustomLocationOptions, eb as CustomLocations, bA as CustomOptions, b3 as CustomPayment, ec as CustomerLocations, bI as DailyConfig, dx as DateHistogramAggregation, dV as DateHistogramResult, dX as DateHistogramResults, cy as DateTimeRule, aT as DayOfWeek, fP as DayOfWeekWithLiterals, eT as DeleteAddOnGroupRequest, eU as DeleteAddOnGroupResponse, d7 as DeleteServiceRequest, d9 as DeleteServiceResponse, eo as DisablePricingPlansForServiceRequest, b8 as DiscountInfo, cC as DomainEvent, cD as DomainEventBodyOneOf, c5 as DummyRequest, c6 as DummyResponse, cx as Duration, bF as DurationRange, bG as DurationRangeConfigOneOf, ar as DurationUnitType, fn as DurationUnitTypeWithLiterals, eu as Empty, el as EnablePricingPlansForServiceRequest, cE as EntityCreatedEvent, cH as EntityDeletedEvent, cG as EntityUpdatedEvent, aQ as Event, f0 as EventMetadata, fM as EventWithLiterals, bX as ExtendedFields, cS as FieldViolation, ad as FirstChargeDateType, f9 as FirstChargeDateTypeWithLiterals, b1 as FixedPayment, cs as FlowControlSettings, aZ as Form, e5 as FormDetails, a_ as FormSettings, ac as FrequencyType, f8 as FrequencyTypeWithLiterals, b6 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, cK as IdentificationData, cL as IdentificationDataIdOneOf, ay as IdentityType, fu as IdentityTypeWithLiterals, ds as IncludeMissingValuesOptions, bB as IntakeFormPolicy, aI as Interval, fE as IntervalWithLiterals, en as InvalidPricingPlan, aN as InvalidSlugError, fJ as InvalidSlugErrorWithLiterals, cV as ItemMetadata, bZ as Keyword, bl as LimitEarlyBookingPolicy, bm as LimitLateBookingPolicy, eW as ListAddOnGroupsByServiceIdRequest, eC as Locale, cd as Location, ap as LocationType, af as LocationTypeEnumLocationType, fb as LocationTypeEnumLocationTypeWithLiterals, fl as LocationTypeWithLiterals, d5 as MaskedService, aV as Media, aW as MediaItem, aX as MediaItemItemOneOf, cJ as MessageEnvelope, aF as MissingValues, fB as MissingValuesWithLiterals, aK as Mode, fG as ModeWithLiterals, b2 as Money, ek as MoveToNewLocationsOptions, cA 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, aH as NestedAggregationType, fD as NestedAggregationTypeWithLiterals, dS as NestedResultValue, dT as NestedResultValueResultOneOf, dY as NestedResults, dN as NestedValueAggregationResult, b9 as OnlineBooking, ex as Page, dg as Paging, dj as PagingMetadataV2, ct as ParticipantChoices, cp as ParticipantNotification, br as ParticipantsPolicy, cz as ParticipantsRange, a$ as Payment, b7 as PaymentOptions, b0 as PaymentRateOneOf, au as PaymentStatus, fq as PaymentStatusWithLiterals, ce as PhoneCall, aS as PlacementType, fO as PlacementTypeWithLiterals, aw as Platform, fs as PlatformWithLiterals, bk 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, bz as RankingOptions, ag as RankingOrder, fc as RankingOrderWithLiterals, ab as RateType, f7 as RateTypeWithLiterals, ei as RemovedLocationSessionsAction, ej as RemovedLocationSessionsActionActionOptionsOneOf, aL as RequestedFields, fH as RequestedFieldsWithLiterals, bp as ReschedulePolicy, aU as ResolutionMethod, fQ as ResolutionMethodWithLiterals, bT as ResourceDetails, bO as ResourceGroup, bP as ResourceIds, bU as ResourceInfo, cf as ResourceSelection, ao as ResourceTransparency, fk as ResourceTransparencyWithLiterals, bS as ResourceType, bs as ResourcesPolicy, cF as RestoreInfo, dU as Results, bw as SaveCreditCardPolicy, dw as ScalarAggregation, dR as ScalarDateResult, dQ as ScalarResult, aG as ScalarType, fC as ScalarTypeWithLiterals, bC as Schedule, dD as SearchDetails, dl as SearchServicesRequest, av as SelectedPaymentOption, fr as SelectedPaymentOptionWithLiterals, aq as SelectionMethod, fm as SelectionMethodWithLiterals, bY as SeoSchema, d0 as ServiceAvailabilityConstraints, cv as ServiceChoice, cw as ServiceChoiceChoiceOneOf, cu as ServiceChoices, f3 as ServiceQuerySpec, bQ as ServiceResource, bR as ServiceResourceSelectionOneOf, f4 as ServiceSearchSpec, aa as ServiceType, f6 as ServiceTypeWithLiterals, f2 as ServicesQueryResult, c4 as ServicesUrlsChanged, e_ as SetAddOnsForGroupRequest, c3 as SetCustomSlugEvent, ep as SetCustomSlugRequest, eh as SetServiceLocationsRequest, b$ as Settings, eR as SiteCloned, eQ as SiteCreated, ez as SitePropertiesEvent, ey as SitePropertiesNotification, bV as Slug, aE as SortDirection, fA as SortDirectionWithLiterals, aC as SortOrder, fy as SortOrderWithLiterals, aD as SortType, fz as SortTypeWithLiterals, df as Sorting, ah as SortingMethodType, fd as SortingMethodTypeWithLiterals, eI as SpecialHourPeriod, d1 as SplitInterval, bK as StaffMediaItem, bL as StaffMediaItemItemOneOf, bJ as StaffMember, bN as StaffMemberDetails, bx as StaffSortingPolicy, by as StaffSortingPolicyOptionsOneOf, aP as Status, fL as StatusWithLiterals, ck as StreetAddress, cm as Subdivision, b5 as SubscriptionPayment, eK as SupportedLanguage, b_ as Tag, c1 as TaxableAddress, am as TaxableAddressType, fi as TaxableAddressTypeWithLiterals, eH as TimePeriod, ai as Timing, fe as TimingWithLiterals, eM as Translation, bW as URLs, ak as UnitType, fg as UnitTypeWithLiterals, eV as UpdateAddOnGroupRequest, d2 as UpdateServiceRequest, d3 as UpdateServiceResponse, ev as UserDomainInfoChangedEvent, aY as V2Category, bE as V2Duration, bb as V2Location, bc as V2LocationOptionsOneOf, d8 as V2ParticipantNotification, c2 as V2PhoneCall, aB as V2RequestedFields, fx as V2RequestedFieldsWithLiterals, aA as V2WorkingHoursMode, fw as V2WorkingHoursModeWithLiterals, 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, b4 as VariedPayment, bq as WaitlistPolicy, az as WebhookIdentityType, fv as WebhookIdentityTypeWithLiterals, cN as WorkingHours, bM as WorkingHoursLocationCoverage, al as WorkingHoursMode, fh as WorkingHoursModeWithLiterals, f5 as utils } from './bookings-services-v2-service-services.universal-BDh2Ybc2.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -1810,6 +1810,12 @@ var UnitType = /* @__PURE__ */ ((UnitType2) => {
|
|
|
1810
1810
|
UnitType2["DAY"] = "DAY";
|
|
1811
1811
|
return UnitType2;
|
|
1812
1812
|
})(UnitType || {});
|
|
1813
|
+
var WorkingHoursMode = /* @__PURE__ */ ((WorkingHoursMode2) => {
|
|
1814
|
+
WorkingHoursMode2["STAFF"] = "STAFF";
|
|
1815
|
+
WorkingHoursMode2["STAFF_INTERSECTED_WITH_SERVICE"] = "STAFF_INTERSECTED_WITH_SERVICE";
|
|
1816
|
+
WorkingHoursMode2["SERVICE"] = "SERVICE";
|
|
1817
|
+
return WorkingHoursMode2;
|
|
1818
|
+
})(WorkingHoursMode || {});
|
|
1813
1819
|
var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
1814
1820
|
TaxableAddressType2["BUSINESS"] = "BUSINESS";
|
|
1815
1821
|
TaxableAddressType2["BILLING"] = "BILLING";
|
|
@@ -1905,6 +1911,11 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1905
1911
|
WebhookIdentityType2["APP"] = "APP";
|
|
1906
1912
|
return WebhookIdentityType2;
|
|
1907
1913
|
})(WebhookIdentityType || {});
|
|
1914
|
+
var V2WorkingHoursMode = /* @__PURE__ */ ((V2WorkingHoursMode2) => {
|
|
1915
|
+
V2WorkingHoursMode2["INTERSECT_RESOURCE_HOURS"] = "INTERSECT_RESOURCE_HOURS";
|
|
1916
|
+
V2WorkingHoursMode2["OVERRIDE_RESOURCE_HOURS"] = "OVERRIDE_RESOURCE_HOURS";
|
|
1917
|
+
return V2WorkingHoursMode2;
|
|
1918
|
+
})(V2WorkingHoursMode || {});
|
|
1908
1919
|
var V2RequestedFields = /* @__PURE__ */ ((V2RequestedFields2) => {
|
|
1909
1920
|
V2RequestedFields2["STAFF_MEMBER_DETAILS"] = "STAFF_MEMBER_DETAILS";
|
|
1910
1921
|
V2RequestedFields2["RESOURCE_TYPE_DETAILS"] = "RESOURCE_TYPE_DETAILS";
|
|
@@ -3961,8 +3972,10 @@ export {
|
|
|
3961
3972
|
Timing,
|
|
3962
3973
|
UnitType,
|
|
3963
3974
|
V2RequestedFields,
|
|
3975
|
+
V2WorkingHoursMode,
|
|
3964
3976
|
ValueType,
|
|
3965
3977
|
WebhookIdentityType,
|
|
3978
|
+
WorkingHoursMode,
|
|
3966
3979
|
bulkCreateServices4 as bulkCreateServices,
|
|
3967
3980
|
bulkDeleteServices4 as bulkDeleteServices,
|
|
3968
3981
|
bulkDeleteServicesByFilter4 as bulkDeleteServicesByFilter,
|