@wix/auto_sdk_bookings_services 1.0.176 → 1.0.178
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-CHCEBqrr.d.ts → bookings-services-v2-service-services.universal-V03VQ8tx.d.ts} +36 -9
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +33 -7
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-CHCEBqrr.d.mts → bookings-services-v2-service-services.universal-V03VQ8tx.d.mts} +36 -9
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +33 -7
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-CHCEBqrr.d.ts → bookings-services-v2-service-services.universal-V03VQ8tx.d.ts} +36 -9
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +33 -7
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-CHCEBqrr.d.mts → bookings-services-v2-service-services.universal-V03VQ8tx.d.mts} +36 -9
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +33 -7
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -74,8 +74,9 @@ interface Service {
|
|
|
74
74
|
*/
|
|
75
75
|
schedule?: Schedule;
|
|
76
76
|
/**
|
|
77
|
-
* IDs of the [staff members](https://dev.wix.com/docs/
|
|
78
|
-
*
|
|
77
|
+
* IDs of the [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) that are associated with the [staff members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction) providing the service.
|
|
78
|
+
* Note that these are the resources IDs, not the staff member IDs.
|
|
79
|
+
* Available only for appointment-based services.
|
|
79
80
|
* @maxSize 220
|
|
80
81
|
* @format GUID
|
|
81
82
|
*/
|
|
@@ -1470,6 +1471,29 @@ declare enum WebhookIdentityType {
|
|
|
1470
1471
|
}
|
|
1471
1472
|
/** @enumType */
|
|
1472
1473
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1474
|
+
/**
|
|
1475
|
+
* Represents estimated discount information for a service.
|
|
1476
|
+
*
|
|
1477
|
+
* *Important**: This is an estimate and may not reflect the final discount applied at checkout. The actual discount is applied in the ecommerce system during checkout, where additional discounts may be applied based on the full cart context, and the final amount may differ.
|
|
1478
|
+
*
|
|
1479
|
+
* The discount can be system-generated (from discount rules; when multiple apply, the most recently created is returned) or manually set using [Update Service](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/update-service) with a fieldmask. Manual discounts replace system-generated ones.
|
|
1480
|
+
*/
|
|
1481
|
+
interface DiscountInfo {
|
|
1482
|
+
/**
|
|
1483
|
+
* Name of the discount (e.g., "Summer Sale - 20% Off").
|
|
1484
|
+
* @minLength 1
|
|
1485
|
+
* @maxLength 50
|
|
1486
|
+
*/
|
|
1487
|
+
discountName?: string;
|
|
1488
|
+
/**
|
|
1489
|
+
* Estimated price after applying the discount. Optional.
|
|
1490
|
+
*
|
|
1491
|
+
* *Important**: This is an estimate. The final price may differ at checkout when additional discounts are applied or rules are re-evaluated with complete booking information.
|
|
1492
|
+
*
|
|
1493
|
+
* May be empty when the discount depends on booking/cart context (e.g., "10% discount on Service X when booking with Service Y") or requires information only available at checkout.
|
|
1494
|
+
*/
|
|
1495
|
+
priceAfterDiscount?: Money;
|
|
1496
|
+
}
|
|
1473
1497
|
interface CreateServiceRequest {
|
|
1474
1498
|
/** Service to create. */
|
|
1475
1499
|
service: Service;
|
|
@@ -1568,10 +1592,12 @@ declare enum V2RequestedFields {
|
|
|
1568
1592
|
/** When passed, `service.staff_members` is returned. */
|
|
1569
1593
|
STAFF_MEMBER_DETAILS = "STAFF_MEMBER_DETAILS",
|
|
1570
1594
|
/** When passed, `service.service_resources.resource_type.name` is returned. */
|
|
1571
|
-
RESOURCE_TYPE_DETAILS = "RESOURCE_TYPE_DETAILS"
|
|
1595
|
+
RESOURCE_TYPE_DETAILS = "RESOURCE_TYPE_DETAILS",
|
|
1596
|
+
/** When passed, `service.payment.discount_info` is returned. */
|
|
1597
|
+
DISCOUNT_INFO_DETAILS = "DISCOUNT_INFO_DETAILS"
|
|
1572
1598
|
}
|
|
1573
1599
|
/** @enumType */
|
|
1574
|
-
type V2RequestedFieldsWithLiterals = V2RequestedFields | 'UNKNOWN_REQUESTED_FIELD' | 'STAFF_MEMBER_DETAILS' | 'RESOURCE_TYPE_DETAILS';
|
|
1600
|
+
type V2RequestedFieldsWithLiterals = V2RequestedFields | 'UNKNOWN_REQUESTED_FIELD' | 'STAFF_MEMBER_DETAILS' | 'RESOURCE_TYPE_DETAILS' | 'DISCOUNT_INFO_DETAILS';
|
|
1575
1601
|
interface GetServiceResponse {
|
|
1576
1602
|
/** Retrieved service. */
|
|
1577
1603
|
service?: Service;
|
|
@@ -2510,7 +2536,7 @@ interface QueryBookingFormsRequest {
|
|
|
2510
2536
|
query: CursorQuery;
|
|
2511
2537
|
/**
|
|
2512
2538
|
* Conditional fields to return.
|
|
2513
|
-
* @maxSize
|
|
2539
|
+
* @maxSize 5
|
|
2514
2540
|
*/
|
|
2515
2541
|
conditionalFields?: RequestedFieldsWithLiterals[];
|
|
2516
2542
|
}
|
|
@@ -4006,8 +4032,9 @@ interface UpdateService {
|
|
|
4006
4032
|
*/
|
|
4007
4033
|
schedule?: Schedule;
|
|
4008
4034
|
/**
|
|
4009
|
-
* IDs of the [staff members](https://dev.wix.com/docs/
|
|
4010
|
-
*
|
|
4035
|
+
* IDs of the [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) that are associated with the [staff members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/introduction) providing the service.
|
|
4036
|
+
* Note that these are the resources IDs, not the staff member IDs.
|
|
4037
|
+
* Available only for appointment-based services.
|
|
4011
4038
|
* @maxSize 220
|
|
4012
4039
|
* @format GUID
|
|
4013
4040
|
*/
|
|
@@ -4681,7 +4708,7 @@ declare function queryBookingForms(query: CursorQuery, options?: QueryBookingFor
|
|
|
4681
4708
|
interface QueryBookingFormsOptions {
|
|
4682
4709
|
/**
|
|
4683
4710
|
* Conditional fields to return.
|
|
4684
|
-
* @maxSize
|
|
4711
|
+
* @maxSize 5
|
|
4685
4712
|
*/
|
|
4686
4713
|
conditionalFields?: RequestedFieldsWithLiterals[];
|
|
4687
4714
|
}
|
|
@@ -5147,4 +5174,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
5147
5174
|
addOnIds: string[] | null;
|
|
5148
5175
|
}
|
|
5149
5176
|
|
|
5150
|
-
export { type SetAddOnsForGroupResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type DeleteAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupApplicationErrors as R, type Service as S, type UpdateAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupResponse as W, type UpdateAddOnGroupApplicationErrors as X, type ListAddOnGroupsByServiceIdOptions as Y, type ListAddOnGroupsByServiceIdResponse as Z, type SetAddOnsForGroupOptions as _, type BulkCreateServicesResponse as a, type BookingPolicy as a$, type SetAddOnsForGroupApplicationErrors as a0, type ServiceCreatedEnvelope as a1, type ServiceDeletedEnvelope as a2, type ServiceUpdatedEnvelope as a3, type ServiceQuery as a4, type QueryServicesOptions as a5, typedQueryServices as a6, type ServicesQueryBuilder as a7, ServiceType as a8, RateType as a9, CrudType as aA, PlacementType as aB, DayOfWeek as aC, ResolutionMethod as aD, type Media as aE, type MediaItem as aF, type MediaItemItemOneOf as aG, type V2Category as aH, type Form as aI, type FormSettings as aJ, type Payment as aK, type PaymentRateOneOf as aL, type FixedPayment as aM, type Money as aN, type CustomPayment as aO, type VariedPayment as aP, type PaymentOptions as aQ, type OnlineBooking as aR, type Conferencing as aS, type Location as aT, type LocationOptionsOneOf as aU, type CommonAddress as aV, type CommonAddressStreetOneOf as aW, type StreetAddress as aX, type AddressLocation as aY, type BusinessLocationOptions as aZ, type CustomLocationOptions as a_, AddOnPaymentOptions as aa, LocationType as ab, RankingOrder as ac, SortingMethodType as ad, Timing as ae, CompletionRequirement as af, TaxableAddressType as ag, WebhookIdentityType as ah, V2RequestedFields as ai, SortOrder as aj, SortType as ak, SortDirection as al, MissingValues as am, ScalarType as an, NestedAggregationType as ao, Interval as ap, AggregationType as aq, Mode as ar, RequestedFields as as, Action as at, InvalidSlugError as au, CloneErrors as av, Status as aw, CategoryNotificationEvent as ax, BenefitType as ay, Event as az, type UpdateServiceValidationErrors as b, type BulkServiceResult as b$, type PolicyDescription as b0, type LimitEarlyBookingPolicy as b1, type LimitLateBookingPolicy as b2, type BookAfterStartPolicy as b3, type CancellationPolicy as b4, type ReschedulePolicy as b5, type WaitlistPolicy as b6, type ParticipantsPolicy as b7, type ResourcesPolicy as b8, type CancellationFeePolicy as b9, type Settings as bA, type AddOnDetails as bB, type TaxableAddress as bC, type PhoneCall as bD, type ReindexMessage as bE, type ReindexMessageActionOneOf as bF, type Upsert as bG, type Delete as bH, type Schema as bI, type SetCustomSlugEvent as bJ, type ServicesUrlsChanged as bK, type DomainEvent as bL, type DomainEventBodyOneOf as bM, type EntityCreatedEvent as bN, type RestoreInfo as bO, type EntityUpdatedEvent as bP, type EntityDeletedEvent as bQ, type ActionEvent as bR, type MessageEnvelope as bS, type IdentificationData as bT, type IdentificationDataIdOneOf as bU, type CreateServiceRequest as bV, type CreateServiceResponse as bW, type ValidateServiceRequest as bX, type ValidateServiceResponse as bY, type FieldViolation as bZ, type BulkCreateServicesRequest as b_, type CancellationWindow as ba, type CancellationWindowFeeOneOf as bb, type SaveCreditCardPolicy as bc, type StaffSortingPolicy as bd, type StaffSortingPolicyOptionsOneOf as be, type RankingOptions as bf, type CustomOptions as bg, type IntakeFormPolicy as bh, type Schedule as bi, type AvailabilityConstraints as bj, type Duration as bk, type StaffMember as bl, type StaffMediaItem as bm, type StaffMediaItemItemOneOf as bn, type StaffMemberDetails as bo, type ResourceGroup as bp, type ResourceIds as bq, type ServiceResource as br, type ServiceResourceSelectionOneOf as bs, type ResourceType as bt, type Slug as bu, type URLs as bv, type ExtendedFields as bw, type SeoSchema as bx, type Keyword as by, type Tag as bz, type BulkUpdateServicesOptions as c, type GroupByValueResults as c$, type ItemMetadata as c0, type ApplicationError as c1, type BulkActionMetadata as c2, type GetServiceRequest as c3, type GetServiceResponse as c4, type GetServiceAvailabilityConstraintsRequest as c5, type GetServiceAvailabilityConstraintsResponse as c6, type ServiceAvailabilityConstraints as c7, type SplitInterval as c8, type UpdateServiceRequest as c9, type ValueAggregationOptionsOneOf as cA, type RangeAggregation as cB, type ScalarAggregation as cC, type DateHistogramAggregation as cD, type NestedAggregationItem as cE, type NestedAggregationItemKindOneOf as cF, type NestedAggregation as cG, type GroupByAggregation as cH, type GroupByAggregationKindOneOf as cI, type SearchDetails as cJ, type CursorPagingMetadata as cK, type AggregationData as cL, type ValueAggregationResult as cM, type RangeAggregationResult as cN, type NestedAggregationResults as cO, type NestedAggregationResultsResultOneOf as cP, type ValueResults as cQ, type RangeResults as cR, type AggregationResultsScalarResult as cS, type NestedValueAggregationResult as cT, type ValueResult as cU, type RangeResult as cV, type ScalarResult as cW, type NestedResultValue as cX, type NestedResultValueResultOneOf as cY, type Results as cZ, type DateHistogramResult as c_, type UpdateServiceResponse as ca, type BulkUpdateServicesRequest as cb, type MaskedService as cc, type BulkUpdateServicesByFilterRequest as cd, type DeleteServiceRequest as ce, type ParticipantNotification as cf, type DeleteServiceResponse as cg, type BulkDeleteServicesRequest as ch, type BulkDeleteServicesByFilterRequest as ci, type QueryServicesRequest as cj, type QueryV2 as ck, type QueryV2PagingMethodOneOf as cl, type Sorting as cm, type Paging as cn, type CursorPaging as co, type QueryServicesResponse as cp, type PagingMetadataV2 as cq, type Cursors as cr, type SearchServicesRequest as cs, type CursorSearch as ct, type CursorSearchPagingMethodOneOf as cu, type Aggregation as cv, type AggregationKindOneOf as cw, type RangeBucket as cx, type IncludeMissingValuesOptions as cy, type ValueAggregation as cz, type BulkUpdateServicesResponse as d, type PropertiesChange as d$, type DateHistogramResults as d0, type NestedResults as d1, type AggregationResults as d2, type AggregationResultsResultOneOf as d3, type QueryPoliciesRequest as d4, type CursorQueryPagingMethodOneOf as d5, type BookingPolicyWithServices as d6, type QueryBookingFormsRequest as d7, type BookingForm as d8, type FormDetails as d9, type BenefitNotification as dA, type Benefit as dB, type EntryPass as dC, type Discount as dD, type DiscountDiscountOneOf as dE, type Behavior as dF, type BehaviorBehaviorOneOf as dG, type UserDomainInfoChangedEvent as dH, type HtmlSitePublished as dI, type Page as dJ, type SitePropertiesNotification as dK, type SitePropertiesEvent as dL, type Properties as dM, type Categories as dN, type Locale as dO, type Address as dP, type AddressHint as dQ, type GeoCoordinates as dR, type BusinessSchedule as dS, type TimePeriod as dT, type SpecialHourPeriod as dU, type Multilingual as dV, type SupportedLanguage as dW, type ConsentPolicy as dX, type Translation as dY, type ChangeContext as dZ, type ChangeContextPayloadOneOf as d_, type ConnectedService as da, type CountServicesRequest as db, type QueryLocationsRequest as dc, type QueryLocationsFilter as dd, type BusinessLocations as de, type CustomLocations as df, type CustomerLocations as dg, type QueryCategoriesRequest as dh, type QueryCategoriesFilter as di, type QueryServicesMultiLanguageRequest as dj, type QueryServicesMultiLanguageResponse as dk, type SetServiceLocationsRequest as dl, type RemovedLocationSessionsAction as dm, type RemovedLocationSessionsActionActionOptionsOneOf as dn, type MoveToNewLocationsOptions as dp, type EnablePricingPlansForServiceRequest as dq, type PricingPlanSelection as dr, type InvalidPricingPlan as ds, type DisablePricingPlansForServiceRequest as dt, type SetCustomSlugRequest as du, type ValidateSlugRequest as dv, type CloneServiceRequest as dw, type CategoryNotification as dx, type Category as dy, type Empty as dz, type BulkUpdateServicesByFilterOptions as e, queryPolicies as e$, type SiteCreated as e0, type SiteCloned as e1, type CreateAddOnGroupRequest as e2, type DeleteAddOnGroupRequest as e3, type DeleteAddOnGroupResponse as e4, type UpdateAddOnGroupRequest as e5, type ListAddOnGroupsByServiceIdRequest as e6, type AddOn as e7, type AddOnAddOnInfoOneOf as e8, type AddOnGroupDetail as e9, type RequestedFieldsWithLiterals as eA, type ActionWithLiterals as eB, type InvalidSlugErrorWithLiterals as eC, type CloneErrorsWithLiterals as eD, type StatusWithLiterals as eE, type CategoryNotificationEventWithLiterals as eF, type BenefitTypeWithLiterals as eG, type EventWithLiterals as eH, type CrudTypeWithLiterals as eI, type PlacementTypeWithLiterals as eJ, type DayOfWeekWithLiterals as eK, type ResolutionMethodWithLiterals as eL, type CommonQueryWithEntityContext as eM, type CommonSearchWithEntityContext as eN, onServiceCreated as eO, onServiceDeleted as eP, onServiceUpdated as eQ, createService as eR, bulkCreateServices as eS, getService as eT, updateService as eU, bulkUpdateServices as eV, bulkUpdateServicesByFilter as eW, deleteService as eX, bulkDeleteServices as eY, bulkDeleteServicesByFilter as eZ, queryServices as e_, type SetAddOnsForGroupRequest as ea, type BaseEventMetadata as eb, type EventMetadata as ec, type ServicesQueryResult as ed, type ServiceQuerySpec as ee, type ServiceSearchSpec as ef, type ServiceTypeWithLiterals as eg, type RateTypeWithLiterals as eh, type AddOnPaymentOptionsWithLiterals as ei, type LocationTypeWithLiterals as ej, type RankingOrderWithLiterals as ek, type SortingMethodTypeWithLiterals as el, type TimingWithLiterals as em, type CompletionRequirementWithLiterals as en, type TaxableAddressTypeWithLiterals as eo, type WebhookIdentityTypeWithLiterals as ep, type V2RequestedFieldsWithLiterals as eq, type SortOrderWithLiterals as er, type SortTypeWithLiterals as es, type SortDirectionWithLiterals as et, type MissingValuesWithLiterals as eu, type ScalarTypeWithLiterals as ev, type NestedAggregationTypeWithLiterals as ew, type IntervalWithLiterals as ex, type AggregationTypeWithLiterals as ey, type ModeWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, queryBookingForms as f0, countServices as f1, queryLocations as f2, queryCategories as f3, setServiceLocations as f4, enablePricingPlansForService as f5, disablePricingPlansForService as f6, setCustomSlug as f7, validateSlug as f8, cloneService as f9, createAddOnGroup as fa, deleteAddOnGroup as fb, updateAddOnGroup as fc, listAddOnGroupsByServiceId as fd, setAddOnsForGroup as fe, type BulkDeleteServicesOptions as g, 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 };
|
|
5177
|
+
export { type SetAddOnsForGroupResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type SetCustomSlugOptions as G, type SetCustomSlugResponse as H, type SetCustomSlugApplicationErrors as I, type SetCustomSlugValidationErrors as J, type ValidateSlugResponse as K, type CloneServiceResponse as L, type AddOnGroup as M, type CreateAddOnGroupOptions as N, type CreateAddOnGroupResponse as O, type DeleteAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type DeleteAddOnGroupApplicationErrors as R, type Service as S, type UpdateAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type UpdateAddOnGroupResponse as W, type UpdateAddOnGroupApplicationErrors as X, type ListAddOnGroupsByServiceIdOptions as Y, type ListAddOnGroupsByServiceIdResponse as Z, type SetAddOnsForGroupOptions as _, type BulkCreateServicesResponse as a, type BookingPolicy as a$, type SetAddOnsForGroupApplicationErrors as a0, type ServiceCreatedEnvelope as a1, type ServiceDeletedEnvelope as a2, type ServiceUpdatedEnvelope as a3, type ServiceQuery as a4, type QueryServicesOptions as a5, typedQueryServices as a6, type ServicesQueryBuilder as a7, ServiceType as a8, RateType as a9, CrudType as aA, PlacementType as aB, DayOfWeek as aC, ResolutionMethod as aD, type Media as aE, type MediaItem as aF, type MediaItemItemOneOf as aG, type V2Category as aH, type Form as aI, type FormSettings as aJ, type Payment as aK, type PaymentRateOneOf as aL, type FixedPayment as aM, type Money as aN, type CustomPayment as aO, type VariedPayment as aP, type PaymentOptions as aQ, type OnlineBooking as aR, type Conferencing as aS, type Location as aT, type LocationOptionsOneOf as aU, type CommonAddress as aV, type CommonAddressStreetOneOf as aW, type StreetAddress as aX, type AddressLocation as aY, type BusinessLocationOptions as aZ, type CustomLocationOptions as a_, AddOnPaymentOptions as aa, LocationType as ab, RankingOrder as ac, SortingMethodType as ad, Timing as ae, CompletionRequirement as af, TaxableAddressType as ag, WebhookIdentityType as ah, V2RequestedFields as ai, SortOrder as aj, SortType as ak, SortDirection as al, MissingValues as am, ScalarType as an, NestedAggregationType as ao, Interval as ap, AggregationType as aq, Mode as ar, RequestedFields as as, Action as at, InvalidSlugError as au, CloneErrors as av, Status as aw, CategoryNotificationEvent as ax, BenefitType as ay, Event as az, type UpdateServiceValidationErrors as b, type BulkCreateServicesRequest as b$, type PolicyDescription as b0, type LimitEarlyBookingPolicy as b1, type LimitLateBookingPolicy as b2, type BookAfterStartPolicy as b3, type CancellationPolicy as b4, type ReschedulePolicy as b5, type WaitlistPolicy as b6, type ParticipantsPolicy as b7, type ResourcesPolicy as b8, type CancellationFeePolicy as b9, type Settings as bA, type AddOnDetails as bB, type TaxableAddress as bC, type PhoneCall as bD, type ReindexMessage as bE, type ReindexMessageActionOneOf as bF, type Upsert as bG, type Delete as bH, type Schema as bI, type SetCustomSlugEvent as bJ, type ServicesUrlsChanged as bK, type DomainEvent as bL, type DomainEventBodyOneOf as bM, type EntityCreatedEvent as bN, type RestoreInfo as bO, type EntityUpdatedEvent as bP, type EntityDeletedEvent as bQ, type ActionEvent as bR, type MessageEnvelope as bS, type IdentificationData as bT, type IdentificationDataIdOneOf as bU, type DiscountInfo as bV, type CreateServiceRequest as bW, type CreateServiceResponse as bX, type ValidateServiceRequest as bY, type ValidateServiceResponse as bZ, type FieldViolation as b_, type CancellationWindow as ba, type CancellationWindowFeeOneOf as bb, type SaveCreditCardPolicy as bc, type StaffSortingPolicy as bd, type StaffSortingPolicyOptionsOneOf as be, type RankingOptions as bf, type CustomOptions as bg, type IntakeFormPolicy as bh, type Schedule as bi, type AvailabilityConstraints as bj, type Duration as bk, type StaffMember as bl, type StaffMediaItem as bm, type StaffMediaItemItemOneOf as bn, type StaffMemberDetails as bo, type ResourceGroup as bp, type ResourceIds as bq, type ServiceResource as br, type ServiceResourceSelectionOneOf as bs, type ResourceType as bt, type Slug as bu, type URLs as bv, type ExtendedFields as bw, type SeoSchema as bx, type Keyword as by, type Tag as bz, type BulkUpdateServicesOptions as c, type DateHistogramResult as c$, type BulkServiceResult as c0, type ItemMetadata as c1, type ApplicationError as c2, type BulkActionMetadata as c3, type GetServiceRequest as c4, type GetServiceResponse as c5, type GetServiceAvailabilityConstraintsRequest as c6, type GetServiceAvailabilityConstraintsResponse as c7, type ServiceAvailabilityConstraints as c8, type SplitInterval as c9, type ValueAggregation as cA, type ValueAggregationOptionsOneOf as cB, type RangeAggregation as cC, type ScalarAggregation as cD, type DateHistogramAggregation as cE, type NestedAggregationItem as cF, type NestedAggregationItemKindOneOf as cG, type NestedAggregation as cH, type GroupByAggregation as cI, type GroupByAggregationKindOneOf as cJ, type SearchDetails as cK, type CursorPagingMetadata as cL, type AggregationData as cM, type ValueAggregationResult as cN, type RangeAggregationResult as cO, type NestedAggregationResults as cP, type NestedAggregationResultsResultOneOf as cQ, type ValueResults as cR, type RangeResults as cS, type AggregationResultsScalarResult as cT, type NestedValueAggregationResult as cU, type ValueResult as cV, type RangeResult as cW, type ScalarResult as cX, type NestedResultValue as cY, type NestedResultValueResultOneOf as cZ, type Results as c_, type UpdateServiceRequest as ca, type UpdateServiceResponse as cb, type BulkUpdateServicesRequest as cc, type MaskedService as cd, type BulkUpdateServicesByFilterRequest as ce, type DeleteServiceRequest as cf, type ParticipantNotification as cg, type DeleteServiceResponse as ch, type BulkDeleteServicesRequest as ci, type BulkDeleteServicesByFilterRequest as cj, type QueryServicesRequest as ck, type QueryV2 as cl, type QueryV2PagingMethodOneOf as cm, type Sorting as cn, type Paging as co, type CursorPaging as cp, type QueryServicesResponse as cq, type PagingMetadataV2 as cr, type Cursors as cs, type SearchServicesRequest as ct, type CursorSearch as cu, type CursorSearchPagingMethodOneOf as cv, type Aggregation as cw, type AggregationKindOneOf as cx, type RangeBucket as cy, type IncludeMissingValuesOptions as cz, type BulkUpdateServicesResponse as d, type ChangeContextPayloadOneOf as d$, type GroupByValueResults as d0, type DateHistogramResults as d1, type NestedResults as d2, type AggregationResults as d3, type AggregationResultsResultOneOf as d4, type QueryPoliciesRequest as d5, type CursorQueryPagingMethodOneOf as d6, type BookingPolicyWithServices as d7, type QueryBookingFormsRequest as d8, type BookingForm as d9, type Empty as dA, type BenefitNotification as dB, type Benefit as dC, type EntryPass as dD, type Discount as dE, type DiscountDiscountOneOf as dF, type Behavior as dG, type BehaviorBehaviorOneOf as dH, type UserDomainInfoChangedEvent as dI, type HtmlSitePublished as dJ, type Page as dK, type SitePropertiesNotification as dL, type SitePropertiesEvent as dM, type Properties as dN, type Categories as dO, type Locale as dP, type Address as dQ, type AddressHint as dR, type GeoCoordinates as dS, type BusinessSchedule as dT, type TimePeriod as dU, type SpecialHourPeriod as dV, type Multilingual as dW, type SupportedLanguage as dX, type ConsentPolicy as dY, type Translation as dZ, type ChangeContext as d_, type FormDetails as da, type ConnectedService as db, type CountServicesRequest as dc, type QueryLocationsRequest as dd, type QueryLocationsFilter as de, type BusinessLocations as df, type CustomLocations as dg, type CustomerLocations as dh, type QueryCategoriesRequest as di, type QueryCategoriesFilter as dj, type QueryServicesMultiLanguageRequest as dk, type QueryServicesMultiLanguageResponse as dl, type SetServiceLocationsRequest as dm, type RemovedLocationSessionsAction as dn, type RemovedLocationSessionsActionActionOptionsOneOf as dp, type MoveToNewLocationsOptions as dq, type EnablePricingPlansForServiceRequest as dr, type PricingPlanSelection as ds, type InvalidPricingPlan as dt, type DisablePricingPlansForServiceRequest as du, type SetCustomSlugRequest as dv, type ValidateSlugRequest as dw, type CloneServiceRequest as dx, type CategoryNotification as dy, type Category as dz, type BulkUpdateServicesByFilterOptions as e, queryServices as e$, type PropertiesChange as e0, type SiteCreated as e1, type SiteCloned as e2, type CreateAddOnGroupRequest as e3, type DeleteAddOnGroupRequest as e4, type DeleteAddOnGroupResponse as e5, type UpdateAddOnGroupRequest as e6, type ListAddOnGroupsByServiceIdRequest as e7, type AddOn as e8, type AddOnAddOnInfoOneOf as e9, type ModeWithLiterals as eA, type RequestedFieldsWithLiterals as eB, type ActionWithLiterals as eC, type InvalidSlugErrorWithLiterals as eD, type CloneErrorsWithLiterals as eE, type StatusWithLiterals as eF, type CategoryNotificationEventWithLiterals as eG, type BenefitTypeWithLiterals as eH, type EventWithLiterals as eI, type CrudTypeWithLiterals as eJ, type PlacementTypeWithLiterals as eK, type DayOfWeekWithLiterals as eL, type ResolutionMethodWithLiterals as eM, type CommonQueryWithEntityContext as eN, type CommonSearchWithEntityContext as eO, onServiceCreated as eP, onServiceDeleted as eQ, onServiceUpdated as eR, createService as eS, bulkCreateServices as eT, getService as eU, updateService as eV, bulkUpdateServices as eW, bulkUpdateServicesByFilter as eX, deleteService as eY, bulkDeleteServices as eZ, bulkDeleteServicesByFilter as e_, type AddOnGroupDetail as ea, type SetAddOnsForGroupRequest as eb, type BaseEventMetadata as ec, type EventMetadata as ed, type ServicesQueryResult as ee, type ServiceQuerySpec as ef, type ServiceSearchSpec as eg, type ServiceTypeWithLiterals as eh, type RateTypeWithLiterals as ei, type AddOnPaymentOptionsWithLiterals as ej, type LocationTypeWithLiterals as ek, type RankingOrderWithLiterals as el, type SortingMethodTypeWithLiterals as em, type TimingWithLiterals as en, type CompletionRequirementWithLiterals as eo, type TaxableAddressTypeWithLiterals as ep, type WebhookIdentityTypeWithLiterals as eq, type V2RequestedFieldsWithLiterals as er, type SortOrderWithLiterals as es, type SortTypeWithLiterals as et, type SortDirectionWithLiterals as eu, type MissingValuesWithLiterals as ev, type ScalarTypeWithLiterals as ew, type NestedAggregationTypeWithLiterals as ex, type IntervalWithLiterals as ey, type AggregationTypeWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, queryPolicies as f0, queryBookingForms as f1, countServices as f2, queryLocations as f3, queryCategories as f4, setServiceLocations as f5, enablePricingPlansForService as f6, disablePricingPlansForService as f7, setCustomSlug as f8, validateSlug as f9, cloneService as fa, createAddOnGroup as fb, deleteAddOnGroup as fc, updateAddOnGroup as fd, listAddOnGroupsByServiceId as fe, setAddOnsForGroup as ff, type BulkDeleteServicesOptions as g, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-
|
|
3
|
-
export { at as Action, bR as ActionEvent,
|
|
2
|
+
import { S as Service, C as CreateServiceValidationErrors, B as BulkCreateServicesOptions, a as BulkCreateServicesResponse, U as UpdateService, b as UpdateServiceValidationErrors, c as BulkUpdateServicesOptions, d as BulkUpdateServicesResponse, e as BulkUpdateServicesByFilterOptions, f as BulkUpdateServicesByFilterResponse, D as DeleteServiceOptions, g as BulkDeleteServicesOptions, h as BulkDeleteServicesResponse, i as BulkDeleteServicesByFilterOptions, j as BulkDeleteServicesByFilterResponse, k as ServiceSearch, l as SearchServicesResponse, m as CursorQuery, Q as QueryPoliciesResponse, n as QueryBookingFormsOptions, o as QueryBookingFormsResponse, p as QueryBookingFormsApplicationErrors, q as CountServicesOptions, r as CountServicesResponse, s as QueryLocationsOptions, t as QueryLocationsResponse, u as QueryCategoriesOptions, v as QueryCategoriesResponse, w as SetServiceLocationsOptions, x as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, y as EnablePricingPlansForServiceApplicationErrors, z as DisablePricingPlansForServiceOptions, A as DisablePricingPlansForServiceResponse, F as DisablePricingPlansForServiceApplicationErrors, G as SetCustomSlugOptions, H as SetCustomSlugResponse, I as SetCustomSlugApplicationErrors, J as SetCustomSlugValidationErrors, V as ValidateSlugOptions, K as ValidateSlugResponse, L as CloneServiceResponse, M as AddOnGroup, N as CreateAddOnGroupOptions, O as CreateAddOnGroupResponse, P as DeleteAddOnGroupOptions, R as DeleteAddOnGroupApplicationErrors, T as UpdateAddOnGroupOptions, W as UpdateAddOnGroupResponse, X as UpdateAddOnGroupApplicationErrors, Y as ListAddOnGroupsByServiceIdOptions, Z as ListAddOnGroupsByServiceIdResponse, _ as SetAddOnsForGroupOptions, $ as SetAddOnsForGroupResponse, a0 as SetAddOnsForGroupApplicationErrors, a1 as ServiceCreatedEnvelope, a2 as ServiceDeletedEnvelope, a3 as ServiceUpdatedEnvelope, a4 as ServiceQuery, a5 as QueryServicesOptions, a6 as typedQueryServices, a7 as ServicesQueryBuilder } from './bookings-services-v2-service-services.universal-V03VQ8tx.js';
|
|
3
|
+
export { at as Action, bR as ActionEvent, eC as ActionWithLiterals, e8 as AddOn, e9 as AddOnAddOnInfoOneOf, bB as AddOnDetails, ea as AddOnGroupDetail, aa as AddOnPaymentOptions, ej as AddOnPaymentOptionsWithLiterals, dQ as Address, dR as AddressHint, aY as AddressLocation, cw as Aggregation, cM as AggregationData, cx as AggregationKindOneOf, d3 as AggregationResults, d4 as AggregationResultsResultOneOf, cT as AggregationResultsScalarResult, aq as AggregationType, ez as AggregationTypeWithLiterals, c2 as ApplicationError, bj as AvailabilityConstraints, ec as BaseEventMetadata, dG as Behavior, dH as BehaviorBehaviorOneOf, dC as Benefit, dB as BenefitNotification, ay as BenefitType, eH as BenefitTypeWithLiterals, b3 as BookAfterStartPolicy, d9 as BookingForm, a$ as BookingPolicy, d7 as BookingPolicyWithServices, c3 as BulkActionMetadata, b$ as BulkCreateServicesRequest, cj as BulkDeleteServicesByFilterRequest, ci as BulkDeleteServicesRequest, c0 as BulkServiceResult, ce as BulkUpdateServicesByFilterRequest, cc as BulkUpdateServicesRequest, aZ as BusinessLocationOptions, df as BusinessLocations, dT as BusinessSchedule, b9 as CancellationFeePolicy, b4 as CancellationPolicy, ba as CancellationWindow, bb as CancellationWindowFeeOneOf, dO as Categories, dz as Category, dy as CategoryNotification, ax as CategoryNotificationEvent, eG as CategoryNotificationEventWithLiterals, d_ as ChangeContext, d$ as ChangeContextPayloadOneOf, av as CloneErrors, eE as CloneErrorsWithLiterals, dx as CloneServiceRequest, aV as CommonAddress, aW as CommonAddressStreetOneOf, eN as CommonQueryWithEntityContext, eO as CommonSearchWithEntityContext, af as CompletionRequirement, eo as CompletionRequirementWithLiterals, aS as Conferencing, db as ConnectedService, dY as ConsentPolicy, dc as CountServicesRequest, e3 as CreateAddOnGroupRequest, bW as CreateServiceRequest, bX as CreateServiceResponse, aA as CrudType, eJ as CrudTypeWithLiterals, cp as CursorPaging, cL as CursorPagingMetadata, d6 as CursorQueryPagingMethodOneOf, cu as CursorSearch, cv as CursorSearchPagingMethodOneOf, cs as Cursors, a_ as CustomLocationOptions, dg as CustomLocations, bg as CustomOptions, aO as CustomPayment, dh as CustomerLocations, cE as DateHistogramAggregation, c$ as DateHistogramResult, d1 as DateHistogramResults, aC as DayOfWeek, eL as DayOfWeekWithLiterals, bH as Delete, e4 as DeleteAddOnGroupRequest, e5 as DeleteAddOnGroupResponse, cf as DeleteServiceRequest, ch as DeleteServiceResponse, du as DisablePricingPlansForServiceRequest, dE as Discount, dF as DiscountDiscountOneOf, bV as DiscountInfo, bL as DomainEvent, bM as DomainEventBodyOneOf, bk as Duration, dA as Empty, dr as EnablePricingPlansForServiceRequest, bN as EntityCreatedEvent, bQ as EntityDeletedEvent, bP as EntityUpdatedEvent, dD as EntryPass, az as Event, ed as EventMetadata, eI as EventWithLiterals, bw as ExtendedFields, b_ as FieldViolation, aM as FixedPayment, aI as Form, da as FormDetails, aJ as FormSettings, dS as GeoCoordinates, c6 as GetServiceAvailabilityConstraintsRequest, c7 as GetServiceAvailabilityConstraintsResponse, c4 as GetServiceRequest, c5 as GetServiceResponse, cI as GroupByAggregation, cJ as GroupByAggregationKindOneOf, d0 as GroupByValueResults, dJ as HtmlSitePublished, bT as IdentificationData, bU as IdentificationDataIdOneOf, cz as IncludeMissingValuesOptions, bh as IntakeFormPolicy, ap as Interval, ey as IntervalWithLiterals, dt as InvalidPricingPlan, au as InvalidSlugError, eD as InvalidSlugErrorWithLiterals, c1 as ItemMetadata, by as Keyword, b1 as LimitEarlyBookingPolicy, b2 as LimitLateBookingPolicy, e7 as ListAddOnGroupsByServiceIdRequest, dP as Locale, aT as Location, aU as LocationOptionsOneOf, ab as LocationType, ek as LocationTypeWithLiterals, cd as MaskedService, aE as Media, aF as MediaItem, aG as MediaItemItemOneOf, bS as MessageEnvelope, am as MissingValues, ev as MissingValuesWithLiterals, ar as Mode, eA as ModeWithLiterals, aN as Money, dq as MoveToNewLocationsOptions, dW as Multilingual, cH as NestedAggregation, cF as NestedAggregationItem, cG as NestedAggregationItemKindOneOf, cP as NestedAggregationResults, cQ as NestedAggregationResultsResultOneOf, ao as NestedAggregationType, ex as NestedAggregationTypeWithLiterals, cY as NestedResultValue, cZ as NestedResultValueResultOneOf, d2 as NestedResults, cU as NestedValueAggregationResult, aR as OnlineBooking, dK as Page, co as Paging, cr as PagingMetadataV2, cg as ParticipantNotification, b7 as ParticipantsPolicy, aK as Payment, aQ as PaymentOptions, aL as PaymentRateOneOf, bD as PhoneCall, aB as PlacementType, eK as PlacementTypeWithLiterals, b0 as PolicyDescription, ds as PricingPlanSelection, dN as Properties, e0 as PropertiesChange, d8 as QueryBookingFormsRequest, dj as QueryCategoriesFilter, di as QueryCategoriesRequest, de as QueryLocationsFilter, dd as QueryLocationsRequest, d5 as QueryPoliciesRequest, dk as QueryServicesMultiLanguageRequest, dl as QueryServicesMultiLanguageResponse, ck as QueryServicesRequest, cq as QueryServicesResponse, cl as QueryV2, cm as QueryV2PagingMethodOneOf, cC as RangeAggregation, cO as RangeAggregationResult, cy as RangeBucket, cW as RangeResult, cS as RangeResults, bf as RankingOptions, ac as RankingOrder, el as RankingOrderWithLiterals, a9 as RateType, ei as RateTypeWithLiterals, bE as ReindexMessage, bF as ReindexMessageActionOneOf, dn as RemovedLocationSessionsAction, dp as RemovedLocationSessionsActionActionOptionsOneOf, as as RequestedFields, eB as RequestedFieldsWithLiterals, b5 as ReschedulePolicy, aD as ResolutionMethod, eM as ResolutionMethodWithLiterals, bp as ResourceGroup, bq as ResourceIds, bt as ResourceType, b8 as ResourcesPolicy, bO as RestoreInfo, c_ as Results, bc as SaveCreditCardPolicy, cD as ScalarAggregation, cX as ScalarResult, an as ScalarType, ew as ScalarTypeWithLiterals, bi as Schedule, bI as Schema, cK as SearchDetails, ct as SearchServicesRequest, bx as SeoSchema, c8 as ServiceAvailabilityConstraints, ef as ServiceQuerySpec, br as ServiceResource, bs as ServiceResourceSelectionOneOf, eg as ServiceSearchSpec, a8 as ServiceType, eh as ServiceTypeWithLiterals, ee as ServicesQueryResult, bK as ServicesUrlsChanged, eb as SetAddOnsForGroupRequest, bJ as SetCustomSlugEvent, dv as SetCustomSlugRequest, dm as SetServiceLocationsRequest, bA as Settings, e2 as SiteCloned, e1 as SiteCreated, dM as SitePropertiesEvent, dL as SitePropertiesNotification, bu as Slug, al as SortDirection, eu as SortDirectionWithLiterals, aj as SortOrder, es as SortOrderWithLiterals, ak as SortType, et as SortTypeWithLiterals, cn as Sorting, ad as SortingMethodType, em as SortingMethodTypeWithLiterals, dV as SpecialHourPeriod, c9 as SplitInterval, bm as StaffMediaItem, bn as StaffMediaItemItemOneOf, bl as StaffMember, bo as StaffMemberDetails, bd as StaffSortingPolicy, be as StaffSortingPolicyOptionsOneOf, aw as Status, eF as StatusWithLiterals, aX as StreetAddress, dX as SupportedLanguage, bz as Tag, bC as TaxableAddress, ag as TaxableAddressType, ep as TaxableAddressTypeWithLiterals, dU as TimePeriod, ae as Timing, en as TimingWithLiterals, dZ as Translation, bv as URLs, e6 as UpdateAddOnGroupRequest, ca as UpdateServiceRequest, cb as UpdateServiceResponse, bG as Upsert, dI as UserDomainInfoChangedEvent, aH as V2Category, ai as V2RequestedFields, er as V2RequestedFieldsWithLiterals, bY as ValidateServiceRequest, bZ as ValidateServiceResponse, dw as ValidateSlugRequest, cA as ValueAggregation, cB as ValueAggregationOptionsOneOf, cN as ValueAggregationResult, cV as ValueResult, cR as ValueResults, aP as VariedPayment, b6 as WaitlistPolicy, ah as WebhookIdentityType, eq as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-V03VQ8tx.js';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -1878,6 +1878,7 @@ var V2RequestedFields = /* @__PURE__ */ ((V2RequestedFields2) => {
|
|
|
1878
1878
|
V2RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
|
|
1879
1879
|
V2RequestedFields2["STAFF_MEMBER_DETAILS"] = "STAFF_MEMBER_DETAILS";
|
|
1880
1880
|
V2RequestedFields2["RESOURCE_TYPE_DETAILS"] = "RESOURCE_TYPE_DETAILS";
|
|
1881
|
+
V2RequestedFields2["DISCOUNT_INFO_DETAILS"] = "DISCOUNT_INFO_DETAILS";
|
|
1881
1882
|
return V2RequestedFields2;
|
|
1882
1883
|
})(V2RequestedFields || {});
|
|
1883
1884
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|