@wix/auto_sdk_bookings_services 1.0.251 → 1.0.253
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-BDh2Ybc2.d.ts → bookings-services-v2-service-services.universal-Bs4IqDuC.d.ts} +11 -24
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +2 -10
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +2 -10
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -25
- package/build/cjs/meta.js +0 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-BDh2Ybc2.d.mts → bookings-services-v2-service-services.universal-Bs4IqDuC.d.mts} +11 -24
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +2 -9
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +2 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -25
- package/build/es/meta.mjs +0 -4
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-BuV3bp_v.d.ts → bookings-services-v2-service-services.universal-R9Bww8Wa.d.ts} +33 -48
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +2 -10
- 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 +2 -10
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -25
- package/build/internal/cjs/meta.js +0 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-BuV3bp_v.d.mts → bookings-services-v2-service-services.universal-R9Bww8Wa.d.mts} +33 -48
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +2 -9
- 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 +2 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +12 -25
- package/build/internal/es/meta.mjs +0 -4
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1360,30 +1360,31 @@ interface DailyConfig {
|
|
|
1360
1360
|
*/
|
|
1361
1361
|
maxDurationInDays?: number;
|
|
1362
1362
|
}
|
|
1363
|
-
/**
|
|
1363
|
+
/**
|
|
1364
|
+
* Controls how a service's own working hours combine with the working hours of its assigned
|
|
1365
|
+
* staff members and required resources. The hours themselves are not held here. They are the
|
|
1366
|
+
* `WORKING_HOURS` events on the service's schedule (`schedule.id`), and this message controls
|
|
1367
|
+
* only how they combine with the resources working hours.
|
|
1368
|
+
*/
|
|
1369
|
+
interface WorkingHours {
|
|
1370
|
+
/** How the service's own working hours combine with its resources working hours. */
|
|
1371
|
+
mode?: WorkingHoursModeWithLiterals;
|
|
1372
|
+
}
|
|
1364
1373
|
declare enum WorkingHoursMode {
|
|
1365
1374
|
/**
|
|
1366
|
-
*
|
|
1367
|
-
*
|
|
1368
|
-
* @documentationMaturity preview
|
|
1369
|
-
* @internal
|
|
1370
|
-
*/
|
|
1371
|
-
STAFF = "STAFF",
|
|
1372
|
-
/**
|
|
1373
|
-
* Availability is the intersection of the service's own working hours and the working
|
|
1374
|
-
* hours of each assigned staff member and required resource.
|
|
1375
|
+
* Bookable only where the service's own working hours and the resources working hours
|
|
1376
|
+
* overlap (the intersection of the two).
|
|
1375
1377
|
* @documentationMaturity preview
|
|
1376
1378
|
* @internal
|
|
1377
1379
|
*/
|
|
1378
|
-
|
|
1380
|
+
INTERSECT_RESOURCE_HOURS = "INTERSECT_RESOURCE_HOURS",
|
|
1379
1381
|
/**
|
|
1380
|
-
* The service's own working hours replace the working-hours window
|
|
1381
|
-
*
|
|
1382
|
-
* availability.
|
|
1382
|
+
* The service's own working hours replace the resources working-hours window. Existing
|
|
1383
|
+
* bookings and blocked time on those resources still reduce availability.
|
|
1383
1384
|
* @documentationMaturity preview
|
|
1384
1385
|
* @internal
|
|
1385
1386
|
*/
|
|
1386
|
-
|
|
1387
|
+
OVERRIDE_RESOURCE_HOURS = "OVERRIDE_RESOURCE_HOURS"
|
|
1387
1388
|
}
|
|
1388
1389
|
/** @enumType */
|
|
1389
1390
|
type WorkingHoursModeWithLiterals = WorkingHoursMode;
|
|
@@ -2618,9 +2619,15 @@ interface ServiceChoice extends ServiceChoiceChoiceOneOf {
|
|
|
2618
2619
|
*/
|
|
2619
2620
|
custom?: string;
|
|
2620
2621
|
duration?: Duration;
|
|
2621
|
-
/**
|
|
2622
|
+
/**
|
|
2623
|
+
* The matched date-time pricing rule. Available only for `DATE_TIME` options.
|
|
2624
|
+
* @internal
|
|
2625
|
+
*/
|
|
2622
2626
|
dateTime?: DateTimeRule;
|
|
2623
|
-
/**
|
|
2627
|
+
/**
|
|
2628
|
+
* The matched participants pricing rule. Available only for `NUMBER_OF_PARTICIPANTS` options.
|
|
2629
|
+
* @internal
|
|
2630
|
+
*/
|
|
2624
2631
|
participantRange?: ParticipantsRange;
|
|
2625
2632
|
/**
|
|
2626
2633
|
* ID of the corresponding option for the choice. For example, the choice `child`
|
|
@@ -2640,9 +2647,15 @@ interface ServiceChoiceChoiceOneOf {
|
|
|
2640
2647
|
*/
|
|
2641
2648
|
custom?: string;
|
|
2642
2649
|
duration?: Duration;
|
|
2643
|
-
/**
|
|
2650
|
+
/**
|
|
2651
|
+
* The matched date-time pricing rule. Available only for `DATE_TIME` options.
|
|
2652
|
+
* @internal
|
|
2653
|
+
*/
|
|
2644
2654
|
dateTime?: DateTimeRule;
|
|
2645
|
-
/**
|
|
2655
|
+
/**
|
|
2656
|
+
* The matched participants pricing rule. Available only for `NUMBER_OF_PARTICIPANTS` options.
|
|
2657
|
+
* @internal
|
|
2658
|
+
*/
|
|
2646
2659
|
participantRange?: ParticipantsRange;
|
|
2647
2660
|
}
|
|
2648
2661
|
interface Duration {
|
|
@@ -2878,34 +2891,6 @@ interface AccountInfo {
|
|
|
2878
2891
|
*/
|
|
2879
2892
|
siteId?: string | null;
|
|
2880
2893
|
}
|
|
2881
|
-
/**
|
|
2882
|
-
* Controls how a service's own working hours combine with the working hours of its assigned
|
|
2883
|
-
* staff members and required resources. The hours themselves are not held here. They are the
|
|
2884
|
-
* `WORKING_HOURS` events on the service's schedule (`schedule.id`), and this message controls
|
|
2885
|
-
* only how they combine with the resources working hours.
|
|
2886
|
-
*/
|
|
2887
|
-
interface WorkingHours {
|
|
2888
|
-
/** How the service's own working hours combine with its resources working hours. */
|
|
2889
|
-
mode?: V2WorkingHoursModeWithLiterals;
|
|
2890
|
-
}
|
|
2891
|
-
declare enum V2WorkingHoursMode {
|
|
2892
|
-
/**
|
|
2893
|
-
* Bookable only where the service's own working hours and the resources working hours
|
|
2894
|
-
* overlap (the intersection of the two).
|
|
2895
|
-
* @documentationMaturity preview
|
|
2896
|
-
* @internal
|
|
2897
|
-
*/
|
|
2898
|
-
INTERSECT_RESOURCE_HOURS = "INTERSECT_RESOURCE_HOURS",
|
|
2899
|
-
/**
|
|
2900
|
-
* The service's own working hours replace the resources working-hours window. Existing
|
|
2901
|
-
* bookings and blocked time on those resources still reduce availability.
|
|
2902
|
-
* @documentationMaturity preview
|
|
2903
|
-
* @internal
|
|
2904
|
-
*/
|
|
2905
|
-
OVERRIDE_RESOURCE_HOURS = "OVERRIDE_RESOURCE_HOURS"
|
|
2906
|
-
}
|
|
2907
|
-
/** @enumType */
|
|
2908
|
-
type V2WorkingHoursModeWithLiterals = V2WorkingHoursMode;
|
|
2909
2894
|
interface CreateServiceRequest {
|
|
2910
2895
|
/** Service to create. */
|
|
2911
2896
|
service: Service;
|
|
@@ -6692,4 +6677,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6692
6677
|
addOnIds: string[] | null;
|
|
6693
6678
|
}
|
|
6694
6679
|
|
|
6695
|
-
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 };
|
|
6680
|
+
export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type PaymentRateOneOf as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, V2RequestedFields as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, Mode as aJ, RequestedFields as aK, Action as aL, InvalidSlugError as aM, CloneErrors as aN, Status as aO, Event as aP, CrudType as aQ, PlacementType as aR, DayOfWeek as aS, ResolutionMethod as aT, type Media as aU, type MediaItem as aV, type MediaItemItemOneOf as aW, type V2Category as aX, type Form as aY, type FormSettings as aZ, type Payment as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, WorkingHoursMode as al, TaxableAddressType as am, MultiServiceBookingType as an, ResourceTransparency as ao, LocationType as ap, SelectionMethod as aq, DurationUnitType as ar, ValueType as as, BookingStatus as at, PaymentStatus as au, SelectedPaymentOption as av, Platform as aw, Actor as ax, IdentityType as ay, WebhookIdentityType as az, type UpdateServiceValidationErrors as b, type Settings as b$, type FixedPayment as b0, type Money as b1, type CustomPayment as b2, type VariedPayment as b3, type SubscriptionPayment as b4, type FullUpfrontPayment as b5, type PaymentOptions as b6, type DiscountInfo as b7, type OnlineBooking as b8, type Conferencing as b9, type IntakeFormPolicy as bA, type Schedule as bB, type AvailabilityConstraints as bC, type V2Duration as bD, type DurationRange as bE, type DurationRangeConfigOneOf as bF, type HourlyConfig as bG, type DailyConfig as bH, type WorkingHours as bI, type StaffMember as bJ, type StaffMediaItem as bK, type StaffMediaItemItemOneOf as bL, type WorkingHoursLocationCoverage as bM, type StaffMemberDetails as bN, type ResourceGroup as bO, type ResourceIds as bP, type ServiceResource as bQ, type ServiceResourceSelectionOneOf as bR, type ResourceType as bS, type ResourceDetails as bT, type ResourceInfo as bU, type Slug as bV, type URLs as bW, type ExtendedFields as bX, type SeoSchema as bY, type Keyword as bZ, type Tag as b_, type V2Location as ba, type V2LocationOptionsOneOf as bb, type CommonAddress as bc, type CommonAddressStreetOneOf as bd, type CommonStreetAddress as be, type CommonAddressLocation as bf, type BusinessLocationOptions as bg, type CustomLocationOptions as bh, type BookingPolicy as bi, type PolicyDescription as bj, type LimitEarlyBookingPolicy as bk, type LimitLateBookingPolicy as bl, type BookAfterStartPolicy as bm, type CancellationPolicy as bn, type ReschedulePolicy as bo, type WaitlistPolicy as bp, type ParticipantsPolicy as bq, type ResourcesPolicy as br, type CancellationFeePolicy as bs, type CancellationWindow as bt, type CancellationWindowFeeOneOf as bu, type SaveCreditCardPolicy as bv, type StaffSortingPolicy as bw, type StaffSortingPolicyOptionsOneOf as bx, type RankingOptions as by, type CustomOptions as bz, type BulkUpdateServicesOptions as c, type ServiceAvailabilityConstraints 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 CreateServiceRequest as cN, type CreateServiceResponse as cO, type ValidateServiceRequest as cP, type ValidateServiceResponse as cQ, type FieldViolation as cR, type BulkCreateServicesRequest as cS, type BulkServiceResult as cT, type ItemMetadata as cU, type ApplicationError as cV, type BulkActionMetadata as cW, type GetServiceRequest as cX, type GetServiceResponse as cY, type GetServiceAvailabilityConstraintsRequest as cZ, type GetServiceAvailabilityConstraintsResponse 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 QueryPoliciesRequest as d$, type SplitInterval as d0, type UpdateServiceRequest as d1, type UpdateServiceResponse as d2, type BulkUpdateServicesRequest as d3, type MaskedService as d4, type BulkUpdateServicesByFilterRequest as d5, type DeleteServiceRequest as d6, type V2ParticipantNotification as d7, type DeleteServiceResponse as d8, type BulkDeleteServicesRequest as d9, type GroupByAggregation as dA, type GroupByAggregationKindOneOf as dB, type SearchDetails as dC, type CursorPagingMetadata as dD, type AggregationData as dE, type ValueAggregationResult as dF, type RangeAggregationResult as dG, type NestedAggregationResults as dH, type NestedAggregationResultsResultOneOf as dI, type ValueResults as dJ, type RangeResults as dK, type AggregationResultsScalarResult as dL, type NestedValueAggregationResult as dM, type ValueResult as dN, type RangeResult as dO, type ScalarResult as dP, type ScalarDateResult as dQ, type NestedResultValue as dR, type NestedResultValueResultOneOf as dS, type Results as dT, type DateHistogramResult as dU, type GroupByValueResults as dV, type DateHistogramResults as dW, type NestedResults as dX, type AggregationResultsScalarDateResult as dY, type AggregationResults as dZ, type AggregationResultsResultOneOf as d_, type BulkDeleteServicesByFilterRequest as da, type QueryServicesRequest as db, type QueryV2 as dc, type QueryV2PagingMethodOneOf as dd, type Sorting as de, type Paging as df, type CursorPaging as dg, type QueryServicesResponse as dh, type PagingMetadataV2 as di, type Cursors as dj, type SearchServicesRequest as dk, type CursorSearch as dl, type CursorSearchPagingMethodOneOf as dm, type Aggregation as dn, type AggregationKindOneOf as dp, type RangeBucket as dq, type IncludeMissingValuesOptions as dr, type ValueAggregation as ds, type ValueAggregationOptionsOneOf as dt, type RangeAggregation as du, type ScalarAggregation as dv, type DateHistogramAggregation as dw, type NestedAggregationItem as dx, type NestedAggregationItemKindOneOf as dy, type NestedAggregation as dz, type BulkUpdateServicesByFilterOptions as e, type EventMetadata as e$, type CursorQueryPagingMethodOneOf as e0, type BookingPolicyWithServices as e1, type QueryBookingFormsRequest as e2, type BookingForm as e3, type FormDetails as e4, type ConnectedService as e5, type CountServicesRequest as e6, type QueryLocationsRequest as e7, type QueryLocationsFilter as e8, type BusinessLocations as e9, type Categories as eA, type Locale as eB, type V4Address as eC, type AddressHint as eD, type GeoCoordinates as eE, type BusinessSchedule as eF, type TimePeriod as eG, type SpecialHourPeriod as eH, type Multilingual as eI, type SupportedLanguage as eJ, type ConsentPolicy as eK, type Translation as eL, type ChangeContext as eM, type ChangeContextPayloadOneOf as eN, type PropertiesChange as eO, type SiteCreated as eP, type SiteCloned as eQ, type CreateAddOnGroupRequest as eR, type DeleteAddOnGroupRequest as eS, type DeleteAddOnGroupResponse as eT, type UpdateAddOnGroupRequest as eU, type ListAddOnGroupsByServiceIdRequest as eV, type AddOn as eW, type AddOnAddOnInfoOneOf as eX, type AddOnGroupDetail as eY, type SetAddOnsForGroupRequest as eZ, type BaseEventMetadata as e_, type CustomLocations as ea, type CustomerLocations as eb, type QueryCategoriesRequest as ec, type QueryCategoriesFilter as ed, type QueryServicesMultiLanguageRequest as ee, type QueryServicesMultiLanguageResponse as ef, type SetServiceLocationsRequest as eg, type RemovedLocationSessionsAction as eh, type RemovedLocationSessionsActionActionOptionsOneOf as ei, type MoveToNewLocationsOptions as ej, type EnablePricingPlansForServiceRequest as ek, type PricingPlanSelection as el, type InvalidPricingPlan as em, type DisablePricingPlansForServiceRequest as en, type SetCustomSlugRequest as eo, type ValidateSlugRequest as ep, type CloneServiceRequest as eq, type CategoryNotification as er, type Category as es, type Empty as et, type UserDomainInfoChangedEvent as eu, type HtmlSitePublished as ev, type Page as ew, type SitePropertiesNotification as ex, type SitePropertiesEvent as ey, type Properties as ez, type BulkUpdateServicesByFilterResponse as f, bulkDeleteServices as f$, type AccountInfoMetadata as f0, type ServicesQueryResult as f1, type ServiceQuerySpec as f2, type ServiceSearchSpec as f3, utils as f4, type ServiceTypeWithLiterals as f5, type RateTypeWithLiterals as f6, type FrequencyTypeWithLiterals as f7, type FirstChargeDateTypeWithLiterals as f8, type AddOnPaymentOptionsWithLiterals as f9, type ScalarTypeWithLiterals as fA, type NestedAggregationTypeWithLiterals as fB, type IntervalWithLiterals as fC, type AggregationTypeWithLiterals as fD, type ModeWithLiterals as fE, type RequestedFieldsWithLiterals as fF, type ActionWithLiterals as fG, type InvalidSlugErrorWithLiterals as fH, type CloneErrorsWithLiterals as fI, type StatusWithLiterals as fJ, type EventWithLiterals as fK, type CrudTypeWithLiterals as fL, type PlacementTypeWithLiterals as fM, type DayOfWeekWithLiterals as fN, type ResolutionMethodWithLiterals as fO, type CommonQueryWithEntityContext as fP, type CommonSearchWithEntityContext as fQ, onServiceCreated as fR, onServiceDeleted as fS, onServiceUpdated as fT, createService as fU, bulkCreateServices as fV, getService as fW, updateService as fX, bulkUpdateServices as fY, bulkUpdateServicesByFilter as fZ, deleteService as f_, type LocationTypeEnumLocationTypeWithLiterals as fa, type RankingOrderWithLiterals as fb, type SortingMethodTypeWithLiterals as fc, type TimingWithLiterals as fd, type CompletionRequirementWithLiterals as fe, type UnitTypeWithLiterals as ff, type WorkingHoursModeWithLiterals as fg, type TaxableAddressTypeWithLiterals as fh, type MultiServiceBookingTypeWithLiterals as fi, type ResourceTransparencyWithLiterals as fj, type LocationTypeWithLiterals as fk, type SelectionMethodWithLiterals as fl, type DurationUnitTypeWithLiterals as fm, type ValueTypeWithLiterals as fn, type BookingStatusWithLiterals as fo, type PaymentStatusWithLiterals as fp, type SelectedPaymentOptionWithLiterals as fq, type PlatformWithLiterals as fr, type ActorWithLiterals as fs, type IdentityTypeWithLiterals as ft, type WebhookIdentityTypeWithLiterals as fu, type V2RequestedFieldsWithLiterals as fv, type SortOrderWithLiterals as fw, type SortTypeWithLiterals as fx, type SortDirectionWithLiterals as fy, type MissingValuesWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkDeleteServicesByFilter as g0, queryServices as g1, queryPolicies as g2, queryBookingForms as g3, countServices as g4, queryLocations as g5, queryCategories as g6, setServiceLocations as g7, enablePricingPlansForService as g8, disablePricingPlansForService as g9, setCustomSlug as ga, validateSlug as gb, cloneService as gc, createAddOnGroup as gd, deleteAddOnGroup as ge, updateAddOnGroup as gf, listAddOnGroupsByServiceId as gg, setAddOnsForGroup as gh, 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 };
|
|
@@ -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 { cM as AccountInfo,
|
|
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-R9Bww8Wa.js';
|
|
3
|
+
export { cM as AccountInfo, f0 as AccountInfoMetadata, aL as Action, cI as ActionEvent, fG as ActionWithLiterals, ax as Actor, fs as ActorWithLiterals, eW as AddOn, eX as AddOnAddOnInfoOneOf, c0 as AddOnDetails, eY as AddOnGroupDetail, ae as AddOnPaymentOptions, f9 as AddOnPaymentOptionsWithLiterals, ci as Address, eD as AddressHint, cl as AddressLocation, cj as AddressStreetOneOf, dn as Aggregation, dE as AggregationData, dp as AggregationKindOneOf, dZ as AggregationResults, d_ as AggregationResultsResultOneOf, dY as AggregationResultsScalarDateResult, dL as AggregationResultsScalarResult, aI as AggregationType, fD as AggregationTypeWithLiterals, cV as ApplicationError, bC as AvailabilityConstraints, e_ as BaseEventMetadata, bm as BookAfterStartPolicy, cB as BookedAddOn, c9 as BookedEntity, ca as BookedEntityItemOneOf, cc as BookedResource, cg as BookedSchedule, cb as BookedSlot, c7 as Booking, e3 as BookingForm, c8 as BookingParticipantsInfoOneOf, bi as BookingPolicy, e1 as BookingPolicyWithServices, co as BookingSource, at as BookingStatus, fo as BookingStatusWithLiterals, cW as BulkActionMetadata, cS as BulkCreateServicesRequest, da as BulkDeleteServicesByFilterRequest, d9 as BulkDeleteServicesRequest, cT as BulkServiceResult, d5 as BulkUpdateServicesByFilterRequest, d3 as BulkUpdateServicesRequest, bg as BusinessLocationOptions, e9 as BusinessLocations, eF as BusinessSchedule, bs as CancellationFeePolicy, bn as CancellationPolicy, bt as CancellationWindow, bu as CancellationWindowFeeOneOf, eA as Categories, es as Category, er as CategoryNotification, eM as ChangeContext, eN as ChangeContextPayloadOneOf, aN as CloneErrors, fI as CloneErrorsWithLiterals, eq as CloneServiceRequest, bc as CommonAddress, bf as CommonAddressLocation, bd as CommonAddressStreetOneOf, cq as CommonIdentificationData, cr as CommonIdentificationDataIdOneOf, fP as CommonQueryWithEntityContext, fQ as CommonSearchWithEntityContext, be as CommonStreetAddress, aj as CompletionRequirement, fe as CompletionRequirementWithLiterals, b9 as Conferencing, e5 as ConnectedService, eK as ConsentPolicy, ch as ContactDetails, e6 as CountServicesRequest, eR as CreateAddOnGroupRequest, cN as CreateServiceRequest, cO as CreateServiceResponse, aQ as CrudType, fL as CrudTypeWithLiterals, dg as CursorPaging, dD as CursorPagingMetadata, e0 as CursorQueryPagingMethodOneOf, dl as CursorSearch, dm as CursorSearchPagingMethodOneOf, dj as Cursors, cn as CustomFormField, bh as CustomLocationOptions, ea as CustomLocations, bz as CustomOptions, b2 as CustomPayment, eb as CustomerLocations, bH as DailyConfig, dw as DateHistogramAggregation, dU as DateHistogramResult, dW as DateHistogramResults, cy as DateTimeRule, aS as DayOfWeek, fN as DayOfWeekWithLiterals, eS as DeleteAddOnGroupRequest, eT as DeleteAddOnGroupResponse, d6 as DeleteServiceRequest, d8 as DeleteServiceResponse, en as DisablePricingPlansForServiceRequest, b7 as DiscountInfo, cC as DomainEvent, cD as DomainEventBodyOneOf, c5 as DummyRequest, c6 as DummyResponse, cx as Duration, bE as DurationRange, bF as DurationRangeConfigOneOf, ar as DurationUnitType, fm as DurationUnitTypeWithLiterals, et as Empty, ek as EnablePricingPlansForServiceRequest, cE as EntityCreatedEvent, cH as EntityDeletedEvent, cG as EntityUpdatedEvent, aP as Event, e$ as EventMetadata, fK as EventWithLiterals, bX as ExtendedFields, cR as FieldViolation, ad as FirstChargeDateType, f8 as FirstChargeDateTypeWithLiterals, b0 as FixedPayment, cs as FlowControlSettings, aY as Form, e4 as FormDetails, aZ as FormSettings, ac as FrequencyType, f7 as FrequencyTypeWithLiterals, b5 as FullUpfrontPayment, eE as GeoCoordinates, cZ as GetServiceAvailabilityConstraintsRequest, c_ as GetServiceAvailabilityConstraintsResponse, cX as GetServiceRequest, cY as GetServiceResponse, dA as GroupByAggregation, dB as GroupByAggregationKindOneOf, dV as GroupByValueResults, bG as HourlyConfig, ev as HtmlSitePublished, cK as IdentificationData, cL as IdentificationDataIdOneOf, ay as IdentityType, ft as IdentityTypeWithLiterals, dr as IncludeMissingValuesOptions, bA as IntakeFormPolicy, aH as Interval, fC as IntervalWithLiterals, em as InvalidPricingPlan, aM as InvalidSlugError, fH as InvalidSlugErrorWithLiterals, cU as ItemMetadata, bZ as Keyword, bk as LimitEarlyBookingPolicy, bl as LimitLateBookingPolicy, eV as ListAddOnGroupsByServiceIdRequest, eB as Locale, cd as Location, ap as LocationType, af as LocationTypeEnumLocationType, fa as LocationTypeEnumLocationTypeWithLiterals, fk as LocationTypeWithLiterals, d4 as MaskedService, aU as Media, aV as MediaItem, aW as MediaItemItemOneOf, cJ as MessageEnvelope, aE as MissingValues, fz as MissingValuesWithLiterals, aJ as Mode, fE as ModeWithLiterals, b1 as Money, ej as MoveToNewLocationsOptions, cA as MultiServiceBookingInfo, an as MultiServiceBookingType, fi as MultiServiceBookingTypeWithLiterals, eI as Multilingual, dz as NestedAggregation, dx as NestedAggregationItem, dy as NestedAggregationItemKindOneOf, dH as NestedAggregationResults, dI as NestedAggregationResultsResultOneOf, aG as NestedAggregationType, fB as NestedAggregationTypeWithLiterals, dR as NestedResultValue, dS as NestedResultValueResultOneOf, dX as NestedResults, dM as NestedValueAggregationResult, b8 as OnlineBooking, ew as Page, df as Paging, di as PagingMetadataV2, ct as ParticipantChoices, cp as ParticipantNotification, bq as ParticipantsPolicy, cz as ParticipantsRange, a_ as Payment, b6 as PaymentOptions, a$ as PaymentRateOneOf, au as PaymentStatus, fp as PaymentStatusWithLiterals, ce as PhoneCall, aR as PlacementType, fM as PlacementTypeWithLiterals, aw as Platform, fr as PlatformWithLiterals, bj as PolicyDescription, el as PricingPlanSelection, ez as Properties, eO as PropertiesChange, e2 as QueryBookingFormsRequest, ed as QueryCategoriesFilter, ec as QueryCategoriesRequest, e8 as QueryLocationsFilter, e7 as QueryLocationsRequest, d$ as QueryPoliciesRequest, ee as QueryServicesMultiLanguageRequest, ef as QueryServicesMultiLanguageResponse, db as QueryServicesRequest, dh as QueryServicesResponse, dc as QueryV2, dd as QueryV2PagingMethodOneOf, du as RangeAggregation, dG as RangeAggregationResult, dq as RangeBucket, dO as RangeResult, dK as RangeResults, by as RankingOptions, ag as RankingOrder, fb as RankingOrderWithLiterals, ab as RateType, f6 as RateTypeWithLiterals, eh as RemovedLocationSessionsAction, ei as RemovedLocationSessionsActionActionOptionsOneOf, aK as RequestedFields, fF as RequestedFieldsWithLiterals, bo as ReschedulePolicy, aT as ResolutionMethod, fO as ResolutionMethodWithLiterals, bT as ResourceDetails, bO as ResourceGroup, bP as ResourceIds, bU as ResourceInfo, cf as ResourceSelection, ao as ResourceTransparency, fj as ResourceTransparencyWithLiterals, bS as ResourceType, br as ResourcesPolicy, cF as RestoreInfo, dT as Results, bv as SaveCreditCardPolicy, dv as ScalarAggregation, dQ as ScalarDateResult, dP as ScalarResult, aF as ScalarType, fA as ScalarTypeWithLiterals, bB as Schedule, dC as SearchDetails, dk as SearchServicesRequest, av as SelectedPaymentOption, fq as SelectedPaymentOptionWithLiterals, aq as SelectionMethod, fl as SelectionMethodWithLiterals, bY as SeoSchema, c$ as ServiceAvailabilityConstraints, cv as ServiceChoice, cw as ServiceChoiceChoiceOneOf, cu as ServiceChoices, f2 as ServiceQuerySpec, bQ as ServiceResource, bR as ServiceResourceSelectionOneOf, f3 as ServiceSearchSpec, aa as ServiceType, f5 as ServiceTypeWithLiterals, f1 as ServicesQueryResult, c4 as ServicesUrlsChanged, eZ as SetAddOnsForGroupRequest, c3 as SetCustomSlugEvent, eo as SetCustomSlugRequest, eg as SetServiceLocationsRequest, b$ as Settings, eQ as SiteCloned, eP as SiteCreated, ey as SitePropertiesEvent, ex as SitePropertiesNotification, bV as Slug, aD as SortDirection, fy as SortDirectionWithLiterals, aB as SortOrder, fw as SortOrderWithLiterals, aC as SortType, fx as SortTypeWithLiterals, de as Sorting, ah as SortingMethodType, fc as SortingMethodTypeWithLiterals, eH as SpecialHourPeriod, d0 as SplitInterval, bK as StaffMediaItem, bL as StaffMediaItemItemOneOf, bJ as StaffMember, bN as StaffMemberDetails, bw as StaffSortingPolicy, bx as StaffSortingPolicyOptionsOneOf, aO as Status, fJ as StatusWithLiterals, ck as StreetAddress, cm as Subdivision, b4 as SubscriptionPayment, eJ as SupportedLanguage, b_ as Tag, c1 as TaxableAddress, am as TaxableAddressType, fh as TaxableAddressTypeWithLiterals, eG as TimePeriod, ai as Timing, fd as TimingWithLiterals, eL as Translation, bW as URLs, ak as UnitType, ff as UnitTypeWithLiterals, eU as UpdateAddOnGroupRequest, d1 as UpdateServiceRequest, d2 as UpdateServiceResponse, eu as UserDomainInfoChangedEvent, aX as V2Category, bD as V2Duration, ba as V2Location, bb as V2LocationOptionsOneOf, d7 as V2ParticipantNotification, c2 as V2PhoneCall, aA as V2RequestedFields, fv as V2RequestedFieldsWithLiterals, eC as V4Address, cP as ValidateServiceRequest, cQ as ValidateServiceResponse, ep as ValidateSlugRequest, ds as ValueAggregation, dt as ValueAggregationOptionsOneOf, dF as ValueAggregationResult, dN as ValueResult, dJ as ValueResults, as as ValueType, fn as ValueTypeWithLiterals, b3 as VariedPayment, bp as WaitlistPolicy, az as WebhookIdentityType, fu as WebhookIdentityTypeWithLiterals, bI as WorkingHours, bM as WorkingHoursLocationCoverage, al as WorkingHoursMode, fg as WorkingHoursModeWithLiterals, f4 as utils } from './bookings-services-v2-service-services.universal-R9Bww8Wa.js';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|
|
@@ -63,7 +63,6 @@ __export(index_exports, {
|
|
|
63
63
|
Timing: () => Timing,
|
|
64
64
|
UnitType: () => UnitType,
|
|
65
65
|
V2RequestedFields: () => V2RequestedFields,
|
|
66
|
-
V2WorkingHoursMode: () => V2WorkingHoursMode,
|
|
67
66
|
ValueType: () => ValueType,
|
|
68
67
|
WebhookIdentityType: () => WebhookIdentityType,
|
|
69
68
|
WorkingHoursMode: () => WorkingHoursMode,
|
|
@@ -1911,9 +1910,8 @@ var UnitType = /* @__PURE__ */ ((UnitType2) => {
|
|
|
1911
1910
|
return UnitType2;
|
|
1912
1911
|
})(UnitType || {});
|
|
1913
1912
|
var WorkingHoursMode = /* @__PURE__ */ ((WorkingHoursMode2) => {
|
|
1914
|
-
WorkingHoursMode2["
|
|
1915
|
-
WorkingHoursMode2["
|
|
1916
|
-
WorkingHoursMode2["SERVICE"] = "SERVICE";
|
|
1913
|
+
WorkingHoursMode2["INTERSECT_RESOURCE_HOURS"] = "INTERSECT_RESOURCE_HOURS";
|
|
1914
|
+
WorkingHoursMode2["OVERRIDE_RESOURCE_HOURS"] = "OVERRIDE_RESOURCE_HOURS";
|
|
1917
1915
|
return WorkingHoursMode2;
|
|
1918
1916
|
})(WorkingHoursMode || {});
|
|
1919
1917
|
var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
@@ -2011,11 +2009,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
2011
2009
|
WebhookIdentityType2["APP"] = "APP";
|
|
2012
2010
|
return WebhookIdentityType2;
|
|
2013
2011
|
})(WebhookIdentityType || {});
|
|
2014
|
-
var V2WorkingHoursMode = /* @__PURE__ */ ((V2WorkingHoursMode2) => {
|
|
2015
|
-
V2WorkingHoursMode2["INTERSECT_RESOURCE_HOURS"] = "INTERSECT_RESOURCE_HOURS";
|
|
2016
|
-
V2WorkingHoursMode2["OVERRIDE_RESOURCE_HOURS"] = "OVERRIDE_RESOURCE_HOURS";
|
|
2017
|
-
return V2WorkingHoursMode2;
|
|
2018
|
-
})(V2WorkingHoursMode || {});
|
|
2019
2012
|
var V2RequestedFields = /* @__PURE__ */ ((V2RequestedFields2) => {
|
|
2020
2013
|
V2RequestedFields2["STAFF_MEMBER_DETAILS"] = "STAFF_MEMBER_DETAILS";
|
|
2021
2014
|
V2RequestedFields2["RESOURCE_TYPE_DETAILS"] = "RESOURCE_TYPE_DETAILS";
|
|
@@ -4073,7 +4066,6 @@ var onServiceUpdated2 = (0, import_event_definition_modules.createEventModule)(o
|
|
|
4073
4066
|
Timing,
|
|
4074
4067
|
UnitType,
|
|
4075
4068
|
V2RequestedFields,
|
|
4076
|
-
V2WorkingHoursMode,
|
|
4077
4069
|
ValueType,
|
|
4078
4070
|
WebhookIdentityType,
|
|
4079
4071
|
WorkingHoursMode,
|