@wix/auto_sdk_bookings_services 1.0.250 → 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-Dtl9GnZT.d.ts → bookings-services-v2-service-services.universal-BDh2Ybc2.d.ts} +18 -4
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +13 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +13 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +19 -5
- package/build/cjs/meta.js +8 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-Dtl9GnZT.d.mts → bookings-services-v2-service-services.universal-BDh2Ybc2.d.mts} +18 -4
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +12 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +12 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +19 -5
- package/build/es/meta.mjs +7 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-CJCST65x.d.ts → bookings-services-v2-service-services.universal-BuV3bp_v.d.ts} +55 -25
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +13 -6
- 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 +13 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +19 -5
- package/build/internal/cjs/meta.js +8 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-CJCST65x.d.mts → bookings-services-v2-service-services.universal-BuV3bp_v.d.mts} +55 -25
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +12 -6
- 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 +12 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +19 -5
- package/build/internal/es/meta.mjs +7 -3
- 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,11 +2756,20 @@ interface AccountInfo {
|
|
|
2751
2756
|
*/
|
|
2752
2757
|
siteId?: string | null;
|
|
2753
2758
|
}
|
|
2754
|
-
/**
|
|
2755
|
-
|
|
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 {
|
|
2756
2770
|
}
|
|
2757
2771
|
/** @enumType */
|
|
2758
|
-
type
|
|
2772
|
+
type V2WorkingHoursModeWithLiterals = V2WorkingHoursMode;
|
|
2759
2773
|
interface CreateServiceRequest {
|
|
2760
2774
|
/** Service to create. */
|
|
2761
2775
|
service: Service;
|
|
@@ -6486,4 +6500,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6486
6500
|
addOnIds: string[] | null;
|
|
6487
6501
|
}
|
|
6488
6502
|
|
|
6489
|
-
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, 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, WorkingHoursMode as az, type UpdateServiceValidationErrors as b, type AddOnDetails 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 StaffMember as bI, type StaffMediaItem as bJ, type StaffMediaItemItemOneOf as bK, type WorkingHoursLocationCoverage as bL, type StaffMemberDetails as bM, type ResourceGroup as bN, type ResourceIds as bO, type ServiceResource as bP, type ServiceResourceSelectionOneOf as bQ, type ResourceType as bR, type ResourceDetails as bS, type ResourceInfo as bT, type Slug as bU, type URLs as bV, type ExtendedFields as bW, type SeoSchema as bX, type Keyword as bY, type Tag as bZ, type Settings 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 SplitInterval as c$, type TaxableAddress as c0, type V2PhoneCall as c1, type SetCustomSlugEvent as c2, type ServicesUrlsChanged as c3, type DummyRequest as c4, type DummyResponse as c5, type Booking as c6, type BookingParticipantsInfoOneOf as c7, type BookedEntity as c8, type BookedEntityItemOneOf as c9, type BookedAddOn as cA, type DomainEvent as cB, type DomainEventBodyOneOf as cC, type EntityCreatedEvent as cD, type RestoreInfo as cE, type EntityUpdatedEvent as cF, type EntityDeletedEvent as cG, type ActionEvent as cH, type MessageEnvelope as cI, type IdentificationData as cJ, type IdentificationDataIdOneOf as cK, type AccountInfo as cL, type CreateServiceRequest as cM, type CreateServiceResponse as cN, type ValidateServiceRequest as cO, type ValidateServiceResponse as cP, type FieldViolation as cQ, type BulkCreateServicesRequest as cR, type BulkServiceResult as cS, type ItemMetadata as cT, type ApplicationError as cU, type BulkActionMetadata as cV, type GetServiceRequest as cW, type GetServiceResponse as cX, type GetServiceAvailabilityConstraintsRequest as cY, type GetServiceAvailabilityConstraintsResponse as cZ, type ServiceAvailabilityConstraints as c_, type BookedSlot as ca, type BookedResource as cb, type Location as cc, type PhoneCall as cd, type ResourceSelection as ce, type BookedSchedule as cf, type ContactDetails as cg, type Address as ch, type AddressStreetOneOf as ci, type StreetAddress as cj, type AddressLocation as ck, type Subdivision as cl, type CustomFormField as cm, type BookingSource as cn, type ParticipantNotification as co, type CommonIdentificationData as cp, type CommonIdentificationDataIdOneOf as cq, type FlowControlSettings as cr, type ParticipantChoices as cs, type ServiceChoices as ct, type ServiceChoice as cu, type ServiceChoiceChoiceOneOf as cv, type Duration as cw, type DateTimeRule as cx, type ParticipantsRange as cy, type MultiServiceBookingInfo as cz, type BulkUpdateServicesResponse as d, type CursorQueryPagingMethodOneOf as d$, type UpdateServiceRequest as d0, type UpdateServiceResponse as d1, type BulkUpdateServicesRequest as d2, type MaskedService as d3, type BulkUpdateServicesByFilterRequest as d4, type DeleteServiceRequest as d5, type V2ParticipantNotification as d6, type DeleteServiceResponse as d7, type BulkDeleteServicesRequest as d8, type BulkDeleteServicesByFilterRequest as d9, type GroupByAggregationKindOneOf as dA, type SearchDetails as dB, type CursorPagingMetadata as dC, type AggregationData as dD, type ValueAggregationResult as dE, type RangeAggregationResult as dF, type NestedAggregationResults as dG, type NestedAggregationResultsResultOneOf as dH, type ValueResults as dI, type RangeResults as dJ, type AggregationResultsScalarResult as dK, type NestedValueAggregationResult as dL, type ValueResult as dM, type RangeResult as dN, type ScalarResult as dO, type ScalarDateResult as dP, type NestedResultValue as dQ, type NestedResultValueResultOneOf as dR, type Results as dS, type DateHistogramResult as dT, type GroupByValueResults as dU, type DateHistogramResults as dV, type NestedResults as dW, type AggregationResultsScalarDateResult as dX, type AggregationResults as dY, type AggregationResultsResultOneOf as dZ, type QueryPoliciesRequest as d_, type QueryServicesRequest as da, type QueryV2 as db, type QueryV2PagingMethodOneOf as dc, type Sorting as dd, type Paging as de, type CursorPaging as df, type QueryServicesResponse as dg, type PagingMetadataV2 as dh, type Cursors as di, type SearchServicesRequest as dj, type CursorSearch as dk, type CursorSearchPagingMethodOneOf as dl, type Aggregation as dm, type AggregationKindOneOf as dn, type RangeBucket as dp, type IncludeMissingValuesOptions as dq, type ValueAggregation as dr, type ValueAggregationOptionsOneOf as ds, type RangeAggregation as dt, type ScalarAggregation as du, type DateHistogramAggregation as dv, type NestedAggregationItem as dw, type NestedAggregationItemKindOneOf as dx, type NestedAggregation as dy, type GroupByAggregation as dz, type BulkUpdateServicesByFilterOptions as e, type AccountInfoMetadata as e$, type BookingPolicyWithServices as e0, type QueryBookingFormsRequest as e1, type BookingForm as e2, type FormDetails as e3, type ConnectedService as e4, type CountServicesRequest as e5, type QueryLocationsRequest as e6, type QueryLocationsFilter as e7, type BusinessLocations as e8, type CustomLocations as e9, type Locale as eA, type V4Address as eB, type AddressHint as eC, type GeoCoordinates as eD, type BusinessSchedule as eE, type TimePeriod as eF, type SpecialHourPeriod as eG, type Multilingual as eH, type SupportedLanguage as eI, type ConsentPolicy as eJ, type Translation as eK, type ChangeContext as eL, type ChangeContextPayloadOneOf as eM, type PropertiesChange as eN, type SiteCreated as eO, type SiteCloned as eP, type CreateAddOnGroupRequest as eQ, type DeleteAddOnGroupRequest as eR, type DeleteAddOnGroupResponse as eS, type UpdateAddOnGroupRequest as eT, type ListAddOnGroupsByServiceIdRequest as eU, type AddOn as eV, type AddOnAddOnInfoOneOf as eW, type AddOnGroupDetail as eX, type SetAddOnsForGroupRequest as eY, type BaseEventMetadata as eZ, type EventMetadata as e_, type CustomerLocations as ea, type QueryCategoriesRequest as eb, type QueryCategoriesFilter as ec, type QueryServicesMultiLanguageRequest as ed, type QueryServicesMultiLanguageResponse as ee, type SetServiceLocationsRequest as ef, type RemovedLocationSessionsAction as eg, type RemovedLocationSessionsActionActionOptionsOneOf as eh, type MoveToNewLocationsOptions as ei, type EnablePricingPlansForServiceRequest as ej, type PricingPlanSelection as ek, type InvalidPricingPlan as el, type DisablePricingPlansForServiceRequest as em, type SetCustomSlugRequest as en, type ValidateSlugRequest as eo, type CloneServiceRequest as ep, type CategoryNotification as eq, type Category as er, type Empty as es, type UserDomainInfoChangedEvent as et, type HtmlSitePublished as eu, type Page as ev, type SitePropertiesNotification as ew, type SitePropertiesEvent as ex, type Properties as ey, type Categories as ez, type BulkUpdateServicesByFilterResponse as f, bulkDeleteServicesByFilter as f$, type ServicesQueryResult as f0, type ServiceQuerySpec as f1, type ServiceSearchSpec as f2, utils as f3, type ServiceTypeWithLiterals as f4, type RateTypeWithLiterals as f5, type FrequencyTypeWithLiterals as f6, type FirstChargeDateTypeWithLiterals as f7, type AddOnPaymentOptionsWithLiterals as f8, type LocationTypeEnumLocationTypeWithLiterals as f9, type NestedAggregationTypeWithLiterals as fA, type IntervalWithLiterals as fB, type AggregationTypeWithLiterals as fC, type ModeWithLiterals as fD, type RequestedFieldsWithLiterals as fE, type ActionWithLiterals as fF, type InvalidSlugErrorWithLiterals as fG, type CloneErrorsWithLiterals as fH, type StatusWithLiterals as fI, type EventWithLiterals as fJ, type CrudTypeWithLiterals as fK, type PlacementTypeWithLiterals as fL, type DayOfWeekWithLiterals as fM, type ResolutionMethodWithLiterals as fN, type CommonQueryWithEntityContext as fO, type CommonSearchWithEntityContext as fP, onServiceCreated as fQ, onServiceDeleted as fR, onServiceUpdated as fS, createService as fT, bulkCreateServices as fU, getService as fV, updateService as fW, bulkUpdateServices as fX, bulkUpdateServicesByFilter as fY, deleteService as fZ, bulkDeleteServices as f_, type RankingOrderWithLiterals as fa, type SortingMethodTypeWithLiterals as fb, type TimingWithLiterals as fc, type CompletionRequirementWithLiterals as fd, type UnitTypeWithLiterals as fe, type TaxableAddressTypeWithLiterals as ff, type MultiServiceBookingTypeWithLiterals as fg, type ResourceTransparencyWithLiterals as fh, type LocationTypeWithLiterals as fi, type SelectionMethodWithLiterals as fj, type DurationUnitTypeWithLiterals as fk, type ValueTypeWithLiterals as fl, type BookingStatusWithLiterals as fm, type PaymentStatusWithLiterals as fn, type SelectedPaymentOptionWithLiterals as fo, type PlatformWithLiterals as fp, type ActorWithLiterals as fq, type IdentityTypeWithLiterals as fr, type WebhookIdentityTypeWithLiterals as fs, type WorkingHoursModeWithLiterals as ft, type V2RequestedFieldsWithLiterals as fu, type SortOrderWithLiterals as fv, type SortTypeWithLiterals as fw, type SortDirectionWithLiterals as fx, type MissingValuesWithLiterals as fy, type ScalarTypeWithLiterals as fz, type BulkDeleteServicesOptions as g, queryServices as g0, queryPolicies as g1, queryBookingForms as g2, countServices as g3, queryLocations as g4, queryCategories as g5, setServiceLocations as g6, enablePricingPlansForService as g7, disablePricingPlansForService as g8, setCustomSlug as g9, validateSlug as ga, cloneService as gb, createAddOnGroup as gc, deleteAddOnGroup as gd, updateAddOnGroup as ge, listAddOnGroupsByServiceId as gf, setAddOnsForGroup as gg, 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,12 +1911,11 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1905
1911
|
WebhookIdentityType2["APP"] = "APP";
|
|
1906
1912
|
return WebhookIdentityType2;
|
|
1907
1913
|
})(WebhookIdentityType || {});
|
|
1908
|
-
var
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
})(WorkingHoursMode || {});
|
|
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 || {});
|
|
1914
1919
|
var V2RequestedFields = /* @__PURE__ */ ((V2RequestedFields2) => {
|
|
1915
1920
|
V2RequestedFields2["STAFF_MEMBER_DETAILS"] = "STAFF_MEMBER_DETAILS";
|
|
1916
1921
|
V2RequestedFields2["RESOURCE_TYPE_DETAILS"] = "RESOURCE_TYPE_DETAILS";
|
|
@@ -3967,6 +3972,7 @@ export {
|
|
|
3967
3972
|
Timing,
|
|
3968
3973
|
UnitType,
|
|
3969
3974
|
V2RequestedFields,
|
|
3975
|
+
V2WorkingHoursMode,
|
|
3970
3976
|
ValueType,
|
|
3971
3977
|
WebhookIdentityType,
|
|
3972
3978
|
WorkingHoursMode,
|