@wix/auto_sdk_bookings_services 1.0.131 → 1.0.132
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-CyRaI-DD.d.ts → bookings-services-v2-service-services.universal-C1G4Y8fa.d.ts} +15 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-CyRaI-DD.d.mts → bookings-services-v2-service-services.universal-C1G4Y8fa.d.mts} +15 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-CyRaI-DD.d.ts → bookings-services-v2-service-services.universal-C1G4Y8fa.d.ts} +15 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-CyRaI-DD.d.mts → bookings-services-v2-service-services.universal-C1G4Y8fa.d.mts} +15 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { bP as CreateServiceRequest$1, bQ as CreateServiceResponse$1, bU as BulkCreateServicesRequest$1, a as BulkCreateServicesResponse$1, bZ as GetServiceRequest$1, b_ as GetServiceResponse$1, c3 as UpdateServiceRequest$1, c4 as UpdateServiceResponse$1, c5 as BulkUpdateServicesRequest$1, d as BulkUpdateServicesResponse$1, c7 as BulkUpdateServicesByFilterRequest$1, f as BulkUpdateServicesByFilterResponse$1, c8 as DeleteServiceRequest$1, ca as DeleteServiceResponse$1, cb as BulkDeleteServicesRequest$1, h as BulkDeleteServicesResponse$1, cc as BulkDeleteServicesByFilterRequest$1, j as BulkDeleteServicesByFilterResponse$1, cd as QueryServicesRequest$1, cj as QueryServicesResponse$1, cm as SearchServicesRequest$1, m as SearchServicesResponse$1, c_ as QueryPoliciesRequest$1, Q as QueryPoliciesResponse$1, d1 as QueryBookingFormsRequest$1, p as QueryBookingFormsResponse$1, d5 as CountServicesRequest$1, s as CountServicesResponse$1, d6 as QueryLocationsRequest$1, u as QueryLocationsResponse$1, db as QueryCategoriesRequest$1, w as QueryCategoriesResponse$1, df as SetServiceLocationsRequest$1, y as SetServiceLocationsResponse$1, dj as EnablePricingPlansForServiceRequest$1, E as EnablePricingPlansForServiceResponse$1, dl as DisablePricingPlansForServiceRequest$1, F as DisablePricingPlansForServiceResponse$1, dm as SetCustomSlugRequest$1, I as SetCustomSlugResponse$1, dn as ValidateSlugRequest$1, M as ValidateSlugResponse$1, dp as CloneServiceRequest$1, N as CloneServiceResponse$1, dX as CreateAddOnGroupRequest$1, R as CreateAddOnGroupResponse$1, dY as DeleteAddOnGroupRequest$1, dZ as DeleteAddOnGroupResponse$1, d_ as UpdateAddOnGroupRequest$1, Y as UpdateAddOnGroupResponse$1, d$ as ListAddOnGroupsByServiceIdRequest$1, $ as ListAddOnGroupsByServiceIdResponse$1, e3 as SetAddOnsForGroupRequest$1, a1 as SetAddOnsForGroupResponse$1 } from './bookings-services-v2-service-services.universal-C1G4Y8fa.js';
|
|
2
2
|
import '@wix/sdk-types';
|
|
3
3
|
|
|
4
4
|
/** The `service` object represents an offering that a business provides to its customers. */
|
|
@@ -1440,6 +1440,20 @@ declare enum WebhookIdentityType {
|
|
|
1440
1440
|
}
|
|
1441
1441
|
/** @enumType */
|
|
1442
1442
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1443
|
+
/** Policy for integrating with Intake form. Stores which form to use and when to present it. */
|
|
1444
|
+
interface IntakeFormPolicy {
|
|
1445
|
+
/**
|
|
1446
|
+
* ID of the form used as an intake form for the service.
|
|
1447
|
+
* @format GUID
|
|
1448
|
+
*/
|
|
1449
|
+
formId?: string | null;
|
|
1450
|
+
/**
|
|
1451
|
+
* Whether the waiver must be completed before bookings.
|
|
1452
|
+
* If `false`, the waiver is handled after bookings.
|
|
1453
|
+
* Default: `false`
|
|
1454
|
+
*/
|
|
1455
|
+
requireBeforeBook?: boolean;
|
|
1456
|
+
}
|
|
1443
1457
|
interface CreateServiceRequest {
|
|
1444
1458
|
/** Service to create. */
|
|
1445
1459
|
service: Service;
|
|
@@ -4998,4 +5012,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
4998
5012
|
addOnIds: string[] | null;
|
|
4999
5013
|
}
|
|
5000
5014
|
|
|
5001
|
-
export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceOptions as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceResponse as F, type DisablePricingPlansForServiceApplicationErrors as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type Location as L, type ValidateSlugResponse as M, type CloneServiceResponse as N, type AddOnGroup as O, type CreateAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupResponse 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 CancellationPolicy 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, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, type Media as aA, type MediaItem as aB, type MediaItemItemOneOf as aC, type V2Category as aD, type Form as aE, type FormSettings as aF, type Payment as aG, type PaymentRateOneOf as aH, type FixedPayment as aI, type Money as aJ, type CustomPayment as aK, type VariedPayment as aL, type PaymentOptions as aM, type OnlineBooking as aN, type Conferencing as aO, type LocationOptionsOneOf as aP, type CommonAddress as aQ, type CommonAddressStreetOneOf as aR, type StreetAddress as aS, type AddressLocation as aT, type BusinessLocationOptions as aU, type CustomLocationOptions as aV, type BookingPolicy as aW, type PolicyDescription as aX, type LimitEarlyBookingPolicy as aY, type LimitLateBookingPolicy as aZ, type BookAfterStartPolicy as a_, RankingOrder as aa, SortingMethodType as ab, TaxableAddressType as ac, WebhookIdentityType as ad, V2RequestedFields as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, Mode as an, RequestedFields as ao, Action as ap, InvalidSlugError as aq, CloneErrors as ar, Status as as, CategoryNotificationEvent as at, BenefitType as au, Event as av, CrudType as aw, PlacementType as ax, DayOfWeek as ay, ResolutionMethod as az, type UpdateServiceValidationErrors as b, type GetServiceAvailabilityConstraintsResponse as b$, type ReschedulePolicy as b0, type WaitlistPolicy as b1, type ParticipantsPolicy as b2, type ResourcesPolicy as b3, type CancellationFeePolicy as b4, type CancellationWindow as b5, type CancellationWindowFeeOneOf as b6, type SaveCreditCardPolicy as b7, type StaffSortingPolicy as b8, type StaffSortingPolicyOptionsOneOf as b9, type Delete as bA, type Schema as bB, type SetCustomSlugEvent as bC, type ServicesUrlsChanged as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type CreateServiceRequest as bO, type CreateServiceResponse as bP, type ValidateServiceRequest as bQ, type ValidateServiceResponse as bR, type FieldViolation as bS, type BulkCreateServicesRequest as bT, type BulkServiceResult as bU, type ItemMetadata as bV, type ApplicationError as bW, type BulkActionMetadata as bX, type GetServiceRequest as bY, type GetServiceResponse as bZ, type GetServiceAvailabilityConstraintsRequest as b_, type RankingOptions as ba, type CustomOptions as bb, type Schedule as bc, type AvailabilityConstraints as bd, type Duration as be, type StaffMember as bf, type StaffMediaItem as bg, type StaffMediaItemItemOneOf as bh, type StaffMemberDetails as bi, type ResourceGroup as bj, type ResourceIds as bk, type ServiceResource as bl, type ServiceResourceSelectionOneOf as bm, type ResourceType as bn, type Slug as bo, type URLs as bp, type ExtendedFields as bq, type SeoSchema as br, type Keyword as bs, type Tag as bt, type Settings as bu, type AddOnDetails as bv, type TaxableAddress as bw, type ReindexMessage as bx, type ReindexMessageActionOneOf as by, type Upsert as bz, type BulkUpdateServicesOptions as c, type BookingPolicyWithServices as c$, type ServiceAvailabilityConstraints as c0, type SplitInterval as c1, type UpdateServiceRequest as c2, type UpdateServiceResponse as c3, type BulkUpdateServicesRequest as c4, type MaskedService as c5, type BulkUpdateServicesByFilterRequest as c6, type DeleteServiceRequest as c7, type ParticipantNotification as c8, type DeleteServiceResponse as c9, type GroupByAggregation as cA, type GroupByAggregationKindOneOf as cB, type SearchDetails as cC, type CursorPagingMetadata as cD, type AggregationData as cE, type ValueAggregationResult as cF, type RangeAggregationResult as cG, type NestedAggregationResults as cH, type NestedAggregationResultsResultOneOf as cI, type ValueResults as cJ, type RangeResults as cK, type AggregationResultsScalarResult as cL, type NestedValueAggregationResult as cM, type ValueResult as cN, type RangeResult as cO, type ScalarResult as cP, type NestedResultValue as cQ, type NestedResultValueResultOneOf as cR, type Results as cS, type DateHistogramResult as cT, type GroupByValueResults as cU, type DateHistogramResults as cV, type NestedResults as cW, type AggregationResults as cX, type AggregationResultsResultOneOf as cY, type QueryPoliciesRequest as cZ, type CursorQueryPagingMethodOneOf as c_, type BulkDeleteServicesRequest as ca, type BulkDeleteServicesByFilterRequest as cb, type QueryServicesRequest as cc, type QueryV2 as cd, type QueryV2PagingMethodOneOf as ce, type Sorting as cf, type Paging as cg, type CursorPaging as ch, type QueryServicesResponse as ci, type PagingMetadataV2 as cj, type Cursors as ck, type SearchServicesRequest as cl, type CursorSearch as cm, type CursorSearchPagingMethodOneOf as cn, type Aggregation as co, type AggregationKindOneOf as cp, type RangeBucket as cq, type IncludeMissingValuesOptions as cr, type ValueAggregation as cs, type ValueAggregationOptionsOneOf as ct, type RangeAggregation as cu, type ScalarAggregation as cv, type DateHistogramAggregation as cw, type NestedAggregationItem as cx, type NestedAggregationItemKindOneOf as cy, type NestedAggregation as cz, type BulkUpdateServicesResponse as d, type AddOn as d$, type QueryBookingFormsRequest as d0, type BookingForm as d1, type FormDetails as d2, type ConnectedService as d3, type CountServicesRequest as d4, type QueryLocationsRequest as d5, type QueryLocationsFilter as d6, type BusinessLocations as d7, type CustomLocations as d8, type CustomerLocations as d9, type HtmlSitePublished as dA, type Page as dB, type SitePropertiesNotification as dC, type SitePropertiesEvent as dD, type Properties as dE, type Categories as dF, type Locale as dG, type Address as dH, type AddressHint as dI, type GeoCoordinates as dJ, type BusinessSchedule as dK, type TimePeriod as dL, type SpecialHourPeriod as dM, type Multilingual as dN, type SupportedLanguage as dO, type ConsentPolicy as dP, type Translation as dQ, type ChangeContext as dR, type ChangeContextPayloadOneOf as dS, type PropertiesChange as dT, type SiteCreated as dU, type SiteCloned as dV, type CreateAddOnGroupRequest as dW, type DeleteAddOnGroupRequest as dX, type DeleteAddOnGroupResponse as dY, type UpdateAddOnGroupRequest as dZ, type ListAddOnGroupsByServiceIdRequest as d_, type QueryCategoriesRequest as da, type QueryCategoriesFilter as db, type QueryServicesMultiLanguageRequest as dc, type QueryServicesMultiLanguageResponse as dd, type SetServiceLocationsRequest as de, type RemovedLocationSessionsAction as df, type RemovedLocationSessionsActionActionOptionsOneOf as dg, type MoveToNewLocationsOptions as dh, type EnablePricingPlansForServiceRequest as di, type InvalidPricingPlan as dj, type DisablePricingPlansForServiceRequest as dk, type SetCustomSlugRequest as dl, type ValidateSlugRequest as dm, type CloneServiceRequest as dn, type CategoryNotification as dp, type Category as dq, type Empty as dr, type BenefitNotification as ds, type Benefit as dt, type EntryPass as du, type Discount as dv, type DiscountDiscountOneOf as dw, type Behavior as dx, type BehaviorBehaviorOneOf as dy, type UserDomainInfoChangedEvent as dz, type BulkUpdateServicesByFilterOptions as e, deleteAddOnGroup as e$, type AddOnAddOnInfoOneOf as e0, type AddOnGroupDetail as e1, type SetAddOnsForGroupRequest as e2, type BaseEventMetadata as e3, type EventMetadata as e4, type ServicesQueryResult as e5, type ServiceSearchSpec as e6, type ServiceTypeWithLiterals as e7, type RateTypeWithLiterals as e8, type AddOnPaymentOptionsWithLiterals as e9, type ResolutionMethodWithLiterals as eA, type CommonSearchWithEntityContext as eB, onServiceCreated as eC, onServiceDeleted as eD, onServiceUpdated as eE, createService as eF, bulkCreateServices as eG, getService as eH, updateService as eI, bulkUpdateServices as eJ, bulkUpdateServicesByFilter as eK, deleteService as eL, bulkDeleteServices as eM, bulkDeleteServicesByFilter as eN, queryServices as eO, queryPolicies as eP, queryBookingForms as eQ, countServices as eR, queryLocations as eS, queryCategories as eT, setServiceLocations as eU, enablePricingPlansForService as eV, disablePricingPlansForService as eW, setCustomSlug as eX, validateSlug as eY, cloneService as eZ, createAddOnGroup as e_, type LocationTypeWithLiterals as ea, type RankingOrderWithLiterals as eb, type SortingMethodTypeWithLiterals as ec, type TaxableAddressTypeWithLiterals as ed, type WebhookIdentityTypeWithLiterals as ee, type V2RequestedFieldsWithLiterals as ef, type SortOrderWithLiterals as eg, type SortTypeWithLiterals as eh, type SortDirectionWithLiterals as ei, type MissingValuesWithLiterals as ej, type ScalarTypeWithLiterals as ek, type NestedAggregationTypeWithLiterals as el, type IntervalWithLiterals as em, type AggregationTypeWithLiterals as en, type ModeWithLiterals as eo, type RequestedFieldsWithLiterals as ep, type ActionWithLiterals as eq, type InvalidSlugErrorWithLiterals as er, type CloneErrorsWithLiterals as es, type StatusWithLiterals as et, type CategoryNotificationEventWithLiterals as eu, type BenefitTypeWithLiterals as ev, type EventWithLiterals as ew, type CrudTypeWithLiterals as ex, type PlacementTypeWithLiterals as ey, type DayOfWeekWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, updateAddOnGroup as f0, listAddOnGroupsByServiceId as f1, setAddOnsForGroup as f2, type BulkDeleteServicesOptions as g, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServicesQueryBuilder as k, type ServiceSearch as l, type SearchServicesResponse as m, type CursorQuery as n, type QueryBookingFormsOptions as o, type QueryBookingFormsResponse as p, type QueryBookingFormsApplicationErrors as q, type CountServicesOptions as r, type CountServicesResponse as s, type QueryLocationsOptions as t, type QueryLocationsResponse as u, type QueryCategoriesOptions as v, type QueryCategoriesResponse as w, type SetServiceLocationsOptions as x, type SetServiceLocationsResponse as y, type EnablePricingPlansForServiceApplicationErrors as z };
|
|
5015
|
+
export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceOptions as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceResponse as F, type DisablePricingPlansForServiceApplicationErrors as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type Location as L, type ValidateSlugResponse as M, type CloneServiceResponse as N, type AddOnGroup as O, type CreateAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupResponse 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 CancellationPolicy 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, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, type Media as aA, type MediaItem as aB, type MediaItemItemOneOf as aC, type V2Category as aD, type Form as aE, type FormSettings as aF, type Payment as aG, type PaymentRateOneOf as aH, type FixedPayment as aI, type Money as aJ, type CustomPayment as aK, type VariedPayment as aL, type PaymentOptions as aM, type OnlineBooking as aN, type Conferencing as aO, type LocationOptionsOneOf as aP, type CommonAddress as aQ, type CommonAddressStreetOneOf as aR, type StreetAddress as aS, type AddressLocation as aT, type BusinessLocationOptions as aU, type CustomLocationOptions as aV, type BookingPolicy as aW, type PolicyDescription as aX, type LimitEarlyBookingPolicy as aY, type LimitLateBookingPolicy as aZ, type BookAfterStartPolicy as a_, RankingOrder as aa, SortingMethodType as ab, TaxableAddressType as ac, WebhookIdentityType as ad, V2RequestedFields as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, Mode as an, RequestedFields as ao, Action as ap, InvalidSlugError as aq, CloneErrors as ar, Status as as, CategoryNotificationEvent as at, BenefitType as au, Event as av, CrudType as aw, PlacementType as ax, DayOfWeek as ay, ResolutionMethod as az, type UpdateServiceValidationErrors as b, type GetServiceAvailabilityConstraintsRequest as b$, type ReschedulePolicy as b0, type WaitlistPolicy as b1, type ParticipantsPolicy as b2, type ResourcesPolicy as b3, type CancellationFeePolicy as b4, type CancellationWindow as b5, type CancellationWindowFeeOneOf as b6, type SaveCreditCardPolicy as b7, type StaffSortingPolicy as b8, type StaffSortingPolicyOptionsOneOf as b9, type Delete as bA, type Schema as bB, type SetCustomSlugEvent as bC, type ServicesUrlsChanged as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type IntakeFormPolicy as bO, type CreateServiceRequest as bP, type CreateServiceResponse as bQ, type ValidateServiceRequest as bR, type ValidateServiceResponse as bS, type FieldViolation as bT, type BulkCreateServicesRequest as bU, type BulkServiceResult as bV, type ItemMetadata as bW, type ApplicationError as bX, type BulkActionMetadata as bY, type GetServiceRequest as bZ, type GetServiceResponse as b_, type RankingOptions as ba, type CustomOptions as bb, type Schedule as bc, type AvailabilityConstraints as bd, type Duration as be, type StaffMember as bf, type StaffMediaItem as bg, type StaffMediaItemItemOneOf as bh, type StaffMemberDetails as bi, type ResourceGroup as bj, type ResourceIds as bk, type ServiceResource as bl, type ServiceResourceSelectionOneOf as bm, type ResourceType as bn, type Slug as bo, type URLs as bp, type ExtendedFields as bq, type SeoSchema as br, type Keyword as bs, type Tag as bt, type Settings as bu, type AddOnDetails as bv, type TaxableAddress as bw, type ReindexMessage as bx, type ReindexMessageActionOneOf as by, type Upsert as bz, type BulkUpdateServicesOptions as c, type CursorQueryPagingMethodOneOf as c$, type GetServiceAvailabilityConstraintsResponse as c0, type ServiceAvailabilityConstraints as c1, type SplitInterval as c2, type UpdateServiceRequest as c3, type UpdateServiceResponse as c4, type BulkUpdateServicesRequest as c5, type MaskedService as c6, type BulkUpdateServicesByFilterRequest as c7, type DeleteServiceRequest as c8, type ParticipantNotification as c9, type NestedAggregation as cA, type GroupByAggregation as cB, type GroupByAggregationKindOneOf as cC, type SearchDetails as cD, type CursorPagingMetadata as cE, type AggregationData as cF, type ValueAggregationResult as cG, type RangeAggregationResult as cH, type NestedAggregationResults as cI, type NestedAggregationResultsResultOneOf as cJ, type ValueResults as cK, type RangeResults as cL, type AggregationResultsScalarResult as cM, type NestedValueAggregationResult as cN, type ValueResult as cO, type RangeResult as cP, type ScalarResult as cQ, type NestedResultValue as cR, type NestedResultValueResultOneOf as cS, type Results as cT, type DateHistogramResult as cU, type GroupByValueResults as cV, type DateHistogramResults as cW, type NestedResults as cX, type AggregationResults as cY, type AggregationResultsResultOneOf as cZ, type QueryPoliciesRequest as c_, type DeleteServiceResponse as ca, type BulkDeleteServicesRequest as cb, type BulkDeleteServicesByFilterRequest as cc, type QueryServicesRequest as cd, type QueryV2 as ce, type QueryV2PagingMethodOneOf as cf, type Sorting as cg, type Paging as ch, type CursorPaging as ci, type QueryServicesResponse as cj, type PagingMetadataV2 as ck, type Cursors as cl, type SearchServicesRequest as cm, type CursorSearch as cn, type CursorSearchPagingMethodOneOf as co, type Aggregation as cp, type AggregationKindOneOf as cq, type RangeBucket as cr, type IncludeMissingValuesOptions as cs, type ValueAggregation as ct, type ValueAggregationOptionsOneOf as cu, type RangeAggregation as cv, type ScalarAggregation as cw, type DateHistogramAggregation as cx, type NestedAggregationItem as cy, type NestedAggregationItemKindOneOf as cz, type BulkUpdateServicesResponse as d, type ListAddOnGroupsByServiceIdRequest as d$, type BookingPolicyWithServices as d0, type QueryBookingFormsRequest as d1, type BookingForm as d2, type FormDetails as d3, type ConnectedService as d4, type CountServicesRequest as d5, type QueryLocationsRequest as d6, type QueryLocationsFilter as d7, type BusinessLocations as d8, type CustomLocations as d9, type UserDomainInfoChangedEvent as dA, type HtmlSitePublished as dB, type Page as dC, type SitePropertiesNotification as dD, type SitePropertiesEvent as dE, type Properties as dF, type Categories as dG, type Locale as dH, type Address as dI, type AddressHint as dJ, type GeoCoordinates as dK, type BusinessSchedule as dL, type TimePeriod as dM, type SpecialHourPeriod as dN, type Multilingual as dO, type SupportedLanguage as dP, type ConsentPolicy as dQ, type Translation as dR, type ChangeContext as dS, type ChangeContextPayloadOneOf as dT, type PropertiesChange as dU, type SiteCreated as dV, type SiteCloned as dW, type CreateAddOnGroupRequest as dX, type DeleteAddOnGroupRequest as dY, type DeleteAddOnGroupResponse as dZ, type UpdateAddOnGroupRequest as d_, type CustomerLocations as da, type QueryCategoriesRequest as db, type QueryCategoriesFilter as dc, type QueryServicesMultiLanguageRequest as dd, type QueryServicesMultiLanguageResponse as de, type SetServiceLocationsRequest as df, type RemovedLocationSessionsAction as dg, type RemovedLocationSessionsActionActionOptionsOneOf as dh, type MoveToNewLocationsOptions as di, type EnablePricingPlansForServiceRequest as dj, type InvalidPricingPlan as dk, type DisablePricingPlansForServiceRequest as dl, type SetCustomSlugRequest as dm, type ValidateSlugRequest as dn, type CloneServiceRequest as dp, type CategoryNotification as dq, type Category as dr, type Empty as ds, type BenefitNotification as dt, type Benefit as du, type EntryPass as dv, type Discount as dw, type DiscountDiscountOneOf as dx, type Behavior as dy, type BehaviorBehaviorOneOf as dz, type BulkUpdateServicesByFilterOptions as e, createAddOnGroup as e$, type AddOn as e0, type AddOnAddOnInfoOneOf as e1, type AddOnGroupDetail as e2, type SetAddOnsForGroupRequest as e3, type BaseEventMetadata as e4, type EventMetadata as e5, type ServicesQueryResult as e6, type ServiceSearchSpec as e7, type ServiceTypeWithLiterals as e8, type RateTypeWithLiterals as e9, type DayOfWeekWithLiterals as eA, type ResolutionMethodWithLiterals as eB, type CommonSearchWithEntityContext as eC, onServiceCreated as eD, onServiceDeleted as eE, onServiceUpdated as eF, createService as eG, bulkCreateServices as eH, getService as eI, updateService as eJ, bulkUpdateServices as eK, bulkUpdateServicesByFilter as eL, deleteService as eM, bulkDeleteServices as eN, bulkDeleteServicesByFilter as eO, queryServices as eP, queryPolicies as eQ, queryBookingForms as eR, countServices as eS, queryLocations as eT, queryCategories as eU, setServiceLocations as eV, enablePricingPlansForService as eW, disablePricingPlansForService as eX, setCustomSlug as eY, validateSlug as eZ, cloneService as e_, type AddOnPaymentOptionsWithLiterals as ea, type LocationTypeWithLiterals as eb, type RankingOrderWithLiterals as ec, type SortingMethodTypeWithLiterals as ed, type TaxableAddressTypeWithLiterals as ee, type WebhookIdentityTypeWithLiterals as ef, type V2RequestedFieldsWithLiterals as eg, type SortOrderWithLiterals as eh, type SortTypeWithLiterals as ei, type SortDirectionWithLiterals as ej, type MissingValuesWithLiterals as ek, type ScalarTypeWithLiterals as el, type NestedAggregationTypeWithLiterals as em, type IntervalWithLiterals as en, type AggregationTypeWithLiterals as eo, type ModeWithLiterals as ep, type RequestedFieldsWithLiterals as eq, type ActionWithLiterals as er, type InvalidSlugErrorWithLiterals as es, type CloneErrorsWithLiterals as et, type StatusWithLiterals as eu, type CategoryNotificationEventWithLiterals as ev, type BenefitTypeWithLiterals as ew, type EventWithLiterals as ex, type CrudTypeWithLiterals as ey, type PlacementTypeWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, deleteAddOnGroup as f0, updateAddOnGroup as f1, listAddOnGroupsByServiceId as f2, setAddOnsForGroup as f3, type BulkDeleteServicesOptions as g, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServicesQueryBuilder as k, type ServiceSearch as l, type SearchServicesResponse as m, type CursorQuery as n, type QueryBookingFormsOptions as o, type QueryBookingFormsResponse as p, type QueryBookingFormsApplicationErrors as q, type CountServicesOptions as r, type CountServicesResponse as s, type QueryLocationsOptions as t, type QueryLocationsResponse as u, type QueryCategoriesOptions as v, type QueryCategoriesResponse as w, type SetServiceLocationsOptions as x, type SetServiceLocationsResponse as y, type EnablePricingPlansForServiceApplicationErrors 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, 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 ServicesQueryBuilder, l as ServiceSearch, m as SearchServicesResponse, n as CursorQuery, Q as QueryPoliciesResponse, o as QueryBookingFormsOptions, p as QueryBookingFormsResponse, q as QueryBookingFormsApplicationErrors, r as CountServicesOptions, s as CountServicesResponse, t as QueryLocationsOptions, u as QueryLocationsResponse, v as QueryCategoriesOptions, w as QueryCategoriesResponse, L as Location, x as SetServiceLocationsOptions, y as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, z as EnablePricingPlansForServiceApplicationErrors, A as DisablePricingPlansForServiceOptions, F as DisablePricingPlansForServiceResponse, G as DisablePricingPlansForServiceApplicationErrors, H as SetCustomSlugOptions, I as SetCustomSlugResponse, J as SetCustomSlugApplicationErrors, K as SetCustomSlugValidationErrors, V as ValidateSlugOptions, M as ValidateSlugResponse, N as CloneServiceResponse, O as AddOnGroup, P as CreateAddOnGroupOptions, R as CreateAddOnGroupResponse, 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 } from './bookings-services-v2-service-services.universal-
|
|
3
|
-
export { ap as Action, bK 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 ServicesQueryBuilder, l as ServiceSearch, m as SearchServicesResponse, n as CursorQuery, Q as QueryPoliciesResponse, o as QueryBookingFormsOptions, p as QueryBookingFormsResponse, q as QueryBookingFormsApplicationErrors, r as CountServicesOptions, s as CountServicesResponse, t as QueryLocationsOptions, u as QueryLocationsResponse, v as QueryCategoriesOptions, w as QueryCategoriesResponse, L as Location, x as SetServiceLocationsOptions, y as SetServiceLocationsResponse, E as EnablePricingPlansForServiceResponse, z as EnablePricingPlansForServiceApplicationErrors, A as DisablePricingPlansForServiceOptions, F as DisablePricingPlansForServiceResponse, G as DisablePricingPlansForServiceApplicationErrors, H as SetCustomSlugOptions, I as SetCustomSlugResponse, J as SetCustomSlugApplicationErrors, K as SetCustomSlugValidationErrors, V as ValidateSlugOptions, M as ValidateSlugResponse, N as CloneServiceResponse, O as AddOnGroup, P as CreateAddOnGroupOptions, R as CreateAddOnGroupResponse, 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 } from './bookings-services-v2-service-services.universal-C1G4Y8fa.mjs';
|
|
3
|
+
export { ap as Action, bK as ActionEvent, er as ActionWithLiterals, e0 as AddOn, e1 as AddOnAddOnInfoOneOf, bv as AddOnDetails, e2 as AddOnGroupDetail, a8 as AddOnPaymentOptions, ea as AddOnPaymentOptionsWithLiterals, dI as Address, dJ as AddressHint, aT as AddressLocation, cp as Aggregation, cF as AggregationData, cq as AggregationKindOneOf, cY as AggregationResults, cZ as AggregationResultsResultOneOf, cM as AggregationResultsScalarResult, am as AggregationType, eo as AggregationTypeWithLiterals, bX as ApplicationError, bd as AvailabilityConstraints, e4 as BaseEventMetadata, dy as Behavior, dz as BehaviorBehaviorOneOf, du as Benefit, dt as BenefitNotification, au as BenefitType, ew as BenefitTypeWithLiterals, a_ as BookAfterStartPolicy, d2 as BookingForm, aW as BookingPolicy, d0 as BookingPolicyWithServices, bY as BulkActionMetadata, bU as BulkCreateServicesRequest, cc as BulkDeleteServicesByFilterRequest, cb as BulkDeleteServicesRequest, bV as BulkServiceResult, c7 as BulkUpdateServicesByFilterRequest, c5 as BulkUpdateServicesRequest, aU as BusinessLocationOptions, d8 as BusinessLocations, dL as BusinessSchedule, b4 as CancellationFeePolicy, a$ as CancellationPolicy, b5 as CancellationWindow, b6 as CancellationWindowFeeOneOf, dG as Categories, dr as Category, dq as CategoryNotification, at as CategoryNotificationEvent, ev as CategoryNotificationEventWithLiterals, dS as ChangeContext, dT as ChangeContextPayloadOneOf, ar as CloneErrors, et as CloneErrorsWithLiterals, dp as CloneServiceRequest, aQ as CommonAddress, aR as CommonAddressStreetOneOf, eC as CommonSearchWithEntityContext, aO as Conferencing, d4 as ConnectedService, dQ as ConsentPolicy, d5 as CountServicesRequest, dX as CreateAddOnGroupRequest, bP as CreateServiceRequest, bQ as CreateServiceResponse, aw as CrudType, ey as CrudTypeWithLiterals, ci as CursorPaging, cE as CursorPagingMetadata, c$ as CursorQueryPagingMethodOneOf, cn as CursorSearch, co as CursorSearchPagingMethodOneOf, cl as Cursors, aV as CustomLocationOptions, d9 as CustomLocations, bb as CustomOptions, aK as CustomPayment, da as CustomerLocations, cx as DateHistogramAggregation, cU as DateHistogramResult, cW as DateHistogramResults, ay as DayOfWeek, eA as DayOfWeekWithLiterals, bA as Delete, dY as DeleteAddOnGroupRequest, dZ as DeleteAddOnGroupResponse, c8 as DeleteServiceRequest, ca as DeleteServiceResponse, dl as DisablePricingPlansForServiceRequest, dw as Discount, dx as DiscountDiscountOneOf, bE as DomainEvent, bF as DomainEventBodyOneOf, be as Duration, ds as Empty, dj as EnablePricingPlansForServiceRequest, bG as EntityCreatedEvent, bJ as EntityDeletedEvent, bI as EntityUpdatedEvent, dv as EntryPass, av as Event, e5 as EventMetadata, ex as EventWithLiterals, bq as ExtendedFields, bT as FieldViolation, aI as FixedPayment, aE as Form, d3 as FormDetails, aF as FormSettings, dK as GeoCoordinates, b$ as GetServiceAvailabilityConstraintsRequest, c0 as GetServiceAvailabilityConstraintsResponse, bZ as GetServiceRequest, b_ as GetServiceResponse, cB as GroupByAggregation, cC as GroupByAggregationKindOneOf, cV as GroupByValueResults, dB as HtmlSitePublished, bM as IdentificationData, bN as IdentificationDataIdOneOf, cs as IncludeMissingValuesOptions, bO as IntakeFormPolicy, al as Interval, en as IntervalWithLiterals, dk as InvalidPricingPlan, aq as InvalidSlugError, es as InvalidSlugErrorWithLiterals, bW as ItemMetadata, bs as Keyword, aY as LimitEarlyBookingPolicy, aZ as LimitLateBookingPolicy, d$ as ListAddOnGroupsByServiceIdRequest, dH as Locale, aP as LocationOptionsOneOf, a9 as LocationType, eb as LocationTypeWithLiterals, c6 as MaskedService, aA as Media, aB as MediaItem, aC as MediaItemItemOneOf, bL as MessageEnvelope, ai as MissingValues, ek as MissingValuesWithLiterals, an as Mode, ep as ModeWithLiterals, aJ as Money, di as MoveToNewLocationsOptions, dO as Multilingual, cA as NestedAggregation, cy as NestedAggregationItem, cz as NestedAggregationItemKindOneOf, cI as NestedAggregationResults, cJ as NestedAggregationResultsResultOneOf, ak as NestedAggregationType, em as NestedAggregationTypeWithLiterals, cR as NestedResultValue, cS as NestedResultValueResultOneOf, cX as NestedResults, cN as NestedValueAggregationResult, aN as OnlineBooking, dC as Page, ch as Paging, ck as PagingMetadataV2, c9 as ParticipantNotification, b2 as ParticipantsPolicy, aG as Payment, aM as PaymentOptions, aH as PaymentRateOneOf, ax as PlacementType, ez as PlacementTypeWithLiterals, aX as PolicyDescription, dF as Properties, dU as PropertiesChange, d1 as QueryBookingFormsRequest, dc as QueryCategoriesFilter, db as QueryCategoriesRequest, d7 as QueryLocationsFilter, d6 as QueryLocationsRequest, c_ as QueryPoliciesRequest, dd as QueryServicesMultiLanguageRequest, de as QueryServicesMultiLanguageResponse, cd as QueryServicesRequest, cj as QueryServicesResponse, ce as QueryV2, cf as QueryV2PagingMethodOneOf, cv as RangeAggregation, cH as RangeAggregationResult, cr as RangeBucket, cP as RangeResult, cL as RangeResults, ba as RankingOptions, aa as RankingOrder, ec as RankingOrderWithLiterals, a7 as RateType, e9 as RateTypeWithLiterals, bx as ReindexMessage, by as ReindexMessageActionOneOf, dg as RemovedLocationSessionsAction, dh as RemovedLocationSessionsActionActionOptionsOneOf, ao as RequestedFields, eq as RequestedFieldsWithLiterals, b0 as ReschedulePolicy, az as ResolutionMethod, eB as ResolutionMethodWithLiterals, bj as ResourceGroup, bk as ResourceIds, bn as ResourceType, b3 as ResourcesPolicy, bH as RestoreInfo, cT as Results, b7 as SaveCreditCardPolicy, cw as ScalarAggregation, cQ as ScalarResult, aj as ScalarType, el as ScalarTypeWithLiterals, bc as Schedule, bB as Schema, cD as SearchDetails, cm as SearchServicesRequest, br as SeoSchema, c1 as ServiceAvailabilityConstraints, bl as ServiceResource, bm as ServiceResourceSelectionOneOf, e7 as ServiceSearchSpec, a6 as ServiceType, e8 as ServiceTypeWithLiterals, e6 as ServicesQueryResult, bD as ServicesUrlsChanged, e3 as SetAddOnsForGroupRequest, bC as SetCustomSlugEvent, dm as SetCustomSlugRequest, df as SetServiceLocationsRequest, bu as Settings, dW as SiteCloned, dV as SiteCreated, dE as SitePropertiesEvent, dD as SitePropertiesNotification, bo as Slug, ah as SortDirection, ej as SortDirectionWithLiterals, af as SortOrder, eh as SortOrderWithLiterals, ag as SortType, ei as SortTypeWithLiterals, cg as Sorting, ab as SortingMethodType, ed as SortingMethodTypeWithLiterals, dN as SpecialHourPeriod, c2 as SplitInterval, bg as StaffMediaItem, bh as StaffMediaItemItemOneOf, bf as StaffMember, bi as StaffMemberDetails, b8 as StaffSortingPolicy, b9 as StaffSortingPolicyOptionsOneOf, as as Status, eu as StatusWithLiterals, aS as StreetAddress, dP as SupportedLanguage, bt as Tag, bw as TaxableAddress, ac as TaxableAddressType, ee as TaxableAddressTypeWithLiterals, dM as TimePeriod, dR as Translation, bp as URLs, d_ as UpdateAddOnGroupRequest, c3 as UpdateServiceRequest, c4 as UpdateServiceResponse, bz as Upsert, dA as UserDomainInfoChangedEvent, aD as V2Category, ae as V2RequestedFields, eg as V2RequestedFieldsWithLiterals, bR as ValidateServiceRequest, bS as ValidateServiceResponse, dn as ValidateSlugRequest, ct as ValueAggregation, cu as ValueAggregationOptionsOneOf, cG as ValueAggregationResult, cO as ValueResult, cK as ValueResults, aL as VariedPayment, b1 as WaitlistPolicy, ad as WebhookIdentityType, ef as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-C1G4Y8fa.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
|
|
6
6
|
interface CreateServiceSignature {
|