@wix/auto_sdk_bookings_services 1.0.191 → 1.0.192

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.
Files changed (41) hide show
  1. package/build/cjs/{bookings-services-v2-service-services.universal-CIfv76w_.d.ts → bookings-services-v2-service-services.universal-BxKI57Md.d.ts} +154 -160
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +8 -8
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +8 -8
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +157 -163
  9. package/build/cjs/meta.js +8 -8
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-CIfv76w_.d.mts → bookings-services-v2-service-services.universal-BxKI57Md.d.mts} +154 -160
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +8 -8
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +8 -8
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +157 -163
  19. package/build/es/meta.mjs +8 -8
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-CIfv76w_.d.ts → bookings-services-v2-service-services.universal-BxKI57Md.d.ts} +154 -160
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +8 -8
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +8 -8
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +157 -163
  29. package/build/internal/cjs/meta.js +8 -8
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-CIfv76w_.d.mts → bookings-services-v2-service-services.universal-BxKI57Md.d.mts} +154 -160
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +8 -8
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +8 -8
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +157 -163
  39. package/build/internal/es/meta.mjs +8 -8
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -1331,165 +1331,6 @@ interface SetCustomSlugEvent {
1331
1331
  }
1332
1332
  interface ServicesUrlsChanged {
1333
1333
  }
1334
- interface DummyRequest {
1335
- }
1336
- interface DummyResponse {
1337
- /** Service to validate. */
1338
- service?: Service;
1339
- }
1340
- interface DomainEvent extends DomainEventBodyOneOf {
1341
- createdEvent?: EntityCreatedEvent;
1342
- updatedEvent?: EntityUpdatedEvent;
1343
- deletedEvent?: EntityDeletedEvent;
1344
- actionEvent?: ActionEvent;
1345
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
1346
- _id?: string;
1347
- /**
1348
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
1349
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
1350
- */
1351
- entityFqdn?: string;
1352
- /**
1353
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
1354
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
1355
- */
1356
- slug?: string;
1357
- /** ID of the entity associated with the event. */
1358
- entityId?: string;
1359
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
1360
- eventTime?: Date | null;
1361
- /**
1362
- * Whether the event was triggered as a result of a privacy regulation application
1363
- * (for example, GDPR).
1364
- */
1365
- triggeredByAnonymizeRequest?: boolean | null;
1366
- /** If present, indicates the action that triggered the event. */
1367
- originatedFrom?: string | null;
1368
- /**
1369
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
1370
- * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
1371
- */
1372
- entityEventSequence?: string | null;
1373
- }
1374
- /** @oneof */
1375
- interface DomainEventBodyOneOf {
1376
- createdEvent?: EntityCreatedEvent;
1377
- updatedEvent?: EntityUpdatedEvent;
1378
- deletedEvent?: EntityDeletedEvent;
1379
- actionEvent?: ActionEvent;
1380
- }
1381
- interface EntityCreatedEvent {
1382
- entity?: string;
1383
- }
1384
- interface RestoreInfo {
1385
- deletedDate?: Date | null;
1386
- }
1387
- interface EntityUpdatedEvent {
1388
- /**
1389
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1390
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1391
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1392
- */
1393
- currentEntity?: string;
1394
- }
1395
- interface EntityDeletedEvent {
1396
- /** Entity that was deleted. */
1397
- deletedEntity?: string | null;
1398
- }
1399
- interface ActionEvent {
1400
- body?: string;
1401
- }
1402
- interface MessageEnvelope {
1403
- /**
1404
- * App instance ID.
1405
- * @format GUID
1406
- */
1407
- instanceId?: string | null;
1408
- /**
1409
- * Event type.
1410
- * @maxLength 150
1411
- */
1412
- eventType?: string;
1413
- /** The identification type and identity data. */
1414
- identity?: IdentificationData;
1415
- /** Stringify payload. */
1416
- data?: string;
1417
- /** Details related to the account */
1418
- accountInfo?: AccountInfo;
1419
- }
1420
- interface IdentificationData extends IdentificationDataIdOneOf {
1421
- /**
1422
- * ID of a site visitor that has not logged in to the site.
1423
- * @format GUID
1424
- */
1425
- anonymousVisitorId?: string;
1426
- /**
1427
- * ID of a site visitor that has logged in to the site.
1428
- * @format GUID
1429
- */
1430
- memberId?: string;
1431
- /**
1432
- * ID of a Wix user (site owner, contributor, etc.).
1433
- * @format GUID
1434
- */
1435
- wixUserId?: string;
1436
- /**
1437
- * ID of an app.
1438
- * @format GUID
1439
- */
1440
- appId?: string;
1441
- /** @readonly */
1442
- identityType?: WebhookIdentityTypeWithLiterals;
1443
- }
1444
- /** @oneof */
1445
- interface IdentificationDataIdOneOf {
1446
- /**
1447
- * ID of a site visitor that has not logged in to the site.
1448
- * @format GUID
1449
- */
1450
- anonymousVisitorId?: string;
1451
- /**
1452
- * ID of a site visitor that has logged in to the site.
1453
- * @format GUID
1454
- */
1455
- memberId?: string;
1456
- /**
1457
- * ID of a Wix user (site owner, contributor, etc.).
1458
- * @format GUID
1459
- */
1460
- wixUserId?: string;
1461
- /**
1462
- * ID of an app.
1463
- * @format GUID
1464
- */
1465
- appId?: string;
1466
- }
1467
- declare enum WebhookIdentityType {
1468
- UNKNOWN = "UNKNOWN",
1469
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
1470
- MEMBER = "MEMBER",
1471
- WIX_USER = "WIX_USER",
1472
- APP = "APP"
1473
- }
1474
- /** @enumType */
1475
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1476
- interface AccountInfo {
1477
- /**
1478
- * ID of the Wix account associated with the event.
1479
- * @format GUID
1480
- */
1481
- accountId?: string | null;
1482
- /**
1483
- * ID of the parent Wix account. Only included when accountId belongs to a child account.
1484
- * @format GUID
1485
- */
1486
- parentAccountId?: string | null;
1487
- /**
1488
- * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
1489
- * @format GUID
1490
- */
1491
- siteId?: string | null;
1492
- }
1493
1334
  interface CreateServiceRequest {
1494
1335
  /** Service to create. */
1495
1336
  service: Service;
@@ -2946,6 +2787,68 @@ declare enum CategoryNotificationEvent {
2946
2787
  type CategoryNotificationEventWithLiterals = CategoryNotificationEvent | 'Updated' | 'Deleted' | 'Created';
2947
2788
  interface Empty {
2948
2789
  }
2790
+ interface DomainEvent extends DomainEventBodyOneOf {
2791
+ createdEvent?: EntityCreatedEvent;
2792
+ updatedEvent?: EntityUpdatedEvent;
2793
+ deletedEvent?: EntityDeletedEvent;
2794
+ actionEvent?: ActionEvent;
2795
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2796
+ _id?: string;
2797
+ /**
2798
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2799
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2800
+ */
2801
+ entityFqdn?: string;
2802
+ /**
2803
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
2804
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2805
+ */
2806
+ slug?: string;
2807
+ /** ID of the entity associated with the event. */
2808
+ entityId?: string;
2809
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2810
+ eventTime?: Date | null;
2811
+ /**
2812
+ * Whether the event was triggered as a result of a privacy regulation application
2813
+ * (for example, GDPR).
2814
+ */
2815
+ triggeredByAnonymizeRequest?: boolean | null;
2816
+ /** If present, indicates the action that triggered the event. */
2817
+ originatedFrom?: string | null;
2818
+ /**
2819
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2820
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2821
+ */
2822
+ entityEventSequence?: string | null;
2823
+ }
2824
+ /** @oneof */
2825
+ interface DomainEventBodyOneOf {
2826
+ createdEvent?: EntityCreatedEvent;
2827
+ updatedEvent?: EntityUpdatedEvent;
2828
+ deletedEvent?: EntityDeletedEvent;
2829
+ actionEvent?: ActionEvent;
2830
+ }
2831
+ interface EntityCreatedEvent {
2832
+ entity?: string;
2833
+ }
2834
+ interface RestoreInfo {
2835
+ deletedDate?: Date | null;
2836
+ }
2837
+ interface EntityUpdatedEvent {
2838
+ /**
2839
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2840
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2841
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2842
+ */
2843
+ currentEntity?: string;
2844
+ }
2845
+ interface EntityDeletedEvent {
2846
+ /** Entity that was deleted. */
2847
+ deletedEntity?: string | null;
2848
+ }
2849
+ interface ActionEvent {
2850
+ body?: string;
2851
+ }
2949
2852
  interface BenefitNotification {
2950
2853
  /**
2951
2854
  * Plan unique ID
@@ -3395,6 +3298,97 @@ interface SiteCloned {
3395
3298
  /** Origin site id. */
3396
3299
  originMetaSiteId?: string;
3397
3300
  }
3301
+ interface MessageEnvelope {
3302
+ /**
3303
+ * App instance ID.
3304
+ * @format GUID
3305
+ */
3306
+ instanceId?: string | null;
3307
+ /**
3308
+ * Event type.
3309
+ * @maxLength 150
3310
+ */
3311
+ eventType?: string;
3312
+ /** The identification type and identity data. */
3313
+ identity?: IdentificationData;
3314
+ /** Stringify payload. */
3315
+ data?: string;
3316
+ /** Details related to the account */
3317
+ accountInfo?: AccountInfo;
3318
+ }
3319
+ interface IdentificationData extends IdentificationDataIdOneOf {
3320
+ /**
3321
+ * ID of a site visitor that has not logged in to the site.
3322
+ * @format GUID
3323
+ */
3324
+ anonymousVisitorId?: string;
3325
+ /**
3326
+ * ID of a site visitor that has logged in to the site.
3327
+ * @format GUID
3328
+ */
3329
+ memberId?: string;
3330
+ /**
3331
+ * ID of a Wix user (site owner, contributor, etc.).
3332
+ * @format GUID
3333
+ */
3334
+ wixUserId?: string;
3335
+ /**
3336
+ * ID of an app.
3337
+ * @format GUID
3338
+ */
3339
+ appId?: string;
3340
+ /** @readonly */
3341
+ identityType?: WebhookIdentityTypeWithLiterals;
3342
+ }
3343
+ /** @oneof */
3344
+ interface IdentificationDataIdOneOf {
3345
+ /**
3346
+ * ID of a site visitor that has not logged in to the site.
3347
+ * @format GUID
3348
+ */
3349
+ anonymousVisitorId?: string;
3350
+ /**
3351
+ * ID of a site visitor that has logged in to the site.
3352
+ * @format GUID
3353
+ */
3354
+ memberId?: string;
3355
+ /**
3356
+ * ID of a Wix user (site owner, contributor, etc.).
3357
+ * @format GUID
3358
+ */
3359
+ wixUserId?: string;
3360
+ /**
3361
+ * ID of an app.
3362
+ * @format GUID
3363
+ */
3364
+ appId?: string;
3365
+ }
3366
+ declare enum WebhookIdentityType {
3367
+ UNKNOWN = "UNKNOWN",
3368
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3369
+ MEMBER = "MEMBER",
3370
+ WIX_USER = "WIX_USER",
3371
+ APP = "APP"
3372
+ }
3373
+ /** @enumType */
3374
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3375
+ interface AccountInfo {
3376
+ /**
3377
+ * ID of the Wix account associated with the event.
3378
+ * @format GUID
3379
+ */
3380
+ accountId?: string | null;
3381
+ /**
3382
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
3383
+ * @format GUID
3384
+ */
3385
+ parentAccountId?: string | null;
3386
+ /**
3387
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
3388
+ * @format GUID
3389
+ */
3390
+ siteId?: string | null;
3391
+ }
3398
3392
  interface CreateAddOnGroupRequest {
3399
3393
  /** Add-on group to create. */
3400
3394
  addOnGroup: AddOnGroup;
@@ -5145,4 +5139,4 @@ interface SetAddOnsForGroupOptions {
5145
5139
  addOnIds: string[] | null;
5146
5140
  }
5147
5141
 
5148
- 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 CustomLocationOptions 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 DiscountInfo as aR, type OnlineBooking as aS, type Conferencing as aT, type Location as aU, type LocationOptionsOneOf as aV, type CommonAddress as aW, type CommonAddressStreetOneOf as aX, type StreetAddress as aY, type AddressLocation as aZ, type BusinessLocationOptions 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 ItemMetadata as b$, type BookingPolicy as b0, type PolicyDescription as b1, type LimitEarlyBookingPolicy as b2, type LimitLateBookingPolicy as b3, type BookAfterStartPolicy as b4, type CancellationPolicy as b5, type ReschedulePolicy as b6, type WaitlistPolicy as b7, type ParticipantsPolicy as b8, type ResourcesPolicy as b9, type Tag as bA, type Settings as bB, type AddOnDetails as bC, type TaxableAddress as bD, type PhoneCall as bE, type SetCustomSlugEvent as bF, type ServicesUrlsChanged as bG, type DummyRequest as bH, type DummyResponse as bI, type DomainEvent as bJ, type DomainEventBodyOneOf as bK, type EntityCreatedEvent as bL, type RestoreInfo as bM, type EntityUpdatedEvent as bN, type EntityDeletedEvent as bO, type ActionEvent as bP, type MessageEnvelope as bQ, type IdentificationData as bR, type IdentificationDataIdOneOf as bS, type AccountInfo as bT, type CreateServiceRequest as bU, type CreateServiceResponse as bV, type ValidateServiceRequest as bW, type ValidateServiceResponse as bX, type FieldViolation as bY, type BulkCreateServicesRequest as bZ, type BulkServiceResult as b_, type CancellationFeePolicy as ba, type CancellationWindow as bb, type CancellationWindowFeeOneOf as bc, type SaveCreditCardPolicy as bd, type StaffSortingPolicy as be, type StaffSortingPolicyOptionsOneOf as bf, type RankingOptions as bg, type CustomOptions as bh, type IntakeFormPolicy as bi, type Schedule as bj, type AvailabilityConstraints as bk, type Duration as bl, type StaffMember as bm, type StaffMediaItem as bn, type StaffMediaItemItemOneOf as bo, type StaffMemberDetails as bp, type ResourceGroup as bq, type ResourceIds as br, type ServiceResource as bs, type ServiceResourceSelectionOneOf as bt, type ResourceType as bu, type Slug as bv, type URLs as bw, type ExtendedFields as bx, type SeoSchema as by, type Keyword as bz, type BulkUpdateServicesOptions as c, type DateHistogramResults as c$, type ApplicationError as c0, type BulkActionMetadata as c1, type GetServiceRequest as c2, type GetServiceResponse as c3, type GetServiceAvailabilityConstraintsRequest as c4, type GetServiceAvailabilityConstraintsResponse as c5, type ServiceAvailabilityConstraints as c6, type SplitInterval as c7, type UpdateServiceRequest as c8, type UpdateServiceResponse as c9, type RangeAggregation as cA, type ScalarAggregation as cB, type DateHistogramAggregation as cC, type NestedAggregationItem as cD, type NestedAggregationItemKindOneOf as cE, type NestedAggregation as cF, type GroupByAggregation as cG, type GroupByAggregationKindOneOf as cH, type SearchDetails as cI, type CursorPagingMetadata as cJ, type AggregationData as cK, type ValueAggregationResult as cL, type RangeAggregationResult as cM, type NestedAggregationResults as cN, type NestedAggregationResultsResultOneOf as cO, type ValueResults as cP, type RangeResults as cQ, type AggregationResultsScalarResult as cR, type NestedValueAggregationResult as cS, type ValueResult as cT, type RangeResult as cU, type ScalarResult as cV, type NestedResultValue as cW, type NestedResultValueResultOneOf as cX, type Results as cY, type DateHistogramResult as cZ, type GroupByValueResults as c_, type BulkUpdateServicesRequest as ca, type MaskedService as cb, type BulkUpdateServicesByFilterRequest as cc, type DeleteServiceRequest as cd, type ParticipantNotification as ce, type DeleteServiceResponse as cf, type BulkDeleteServicesRequest as cg, type BulkDeleteServicesByFilterRequest as ch, type QueryServicesRequest as ci, type QueryV2 as cj, type QueryV2PagingMethodOneOf as ck, type Sorting as cl, type Paging as cm, type CursorPaging as cn, type QueryServicesResponse as co, type PagingMetadataV2 as cp, type Cursors as cq, type SearchServicesRequest as cr, type CursorSearch as cs, type CursorSearchPagingMethodOneOf as ct, type Aggregation as cu, type AggregationKindOneOf as cv, type RangeBucket as cw, type IncludeMissingValuesOptions as cx, type ValueAggregation as cy, type ValueAggregationOptionsOneOf as cz, type BulkUpdateServicesResponse as d, type SiteCreated as d$, type NestedResults as d0, type AggregationResults as d1, type AggregationResultsResultOneOf as d2, type QueryPoliciesRequest as d3, type CursorQueryPagingMethodOneOf as d4, type BookingPolicyWithServices as d5, type QueryBookingFormsRequest as d6, type BookingForm as d7, type FormDetails as d8, type ConnectedService as d9, type Benefit as dA, type EntryPass as dB, type Discount as dC, type DiscountDiscountOneOf as dD, type Behavior as dE, type BehaviorBehaviorOneOf as dF, type UserDomainInfoChangedEvent as dG, type HtmlSitePublished as dH, type Page as dI, type SitePropertiesNotification as dJ, type SitePropertiesEvent as dK, type Properties as dL, type Categories as dM, type Locale as dN, type Address as dO, type AddressHint as dP, type GeoCoordinates as dQ, type BusinessSchedule as dR, type TimePeriod as dS, type SpecialHourPeriod as dT, type Multilingual as dU, type SupportedLanguage as dV, type ConsentPolicy as dW, type Translation as dX, type ChangeContext as dY, type ChangeContextPayloadOneOf as dZ, type PropertiesChange as d_, type CountServicesRequest as da, type QueryLocationsRequest as db, type QueryLocationsFilter as dc, type BusinessLocations as dd, type CustomLocations as de, type CustomerLocations as df, type QueryCategoriesRequest as dg, type QueryCategoriesFilter as dh, type QueryServicesMultiLanguageRequest as di, type QueryServicesMultiLanguageResponse as dj, type SetServiceLocationsRequest as dk, type RemovedLocationSessionsAction as dl, type RemovedLocationSessionsActionActionOptionsOneOf as dm, type MoveToNewLocationsOptions as dn, type EnablePricingPlansForServiceRequest as dp, type PricingPlanSelection as dq, type InvalidPricingPlan as dr, type DisablePricingPlansForServiceRequest as ds, type SetCustomSlugRequest as dt, type ValidateSlugRequest as du, type CloneServiceRequest as dv, type CategoryNotification as dw, type Category as dx, type Empty as dy, type BenefitNotification as dz, type BulkUpdateServicesByFilterOptions as e, queryPolicies as e$, type SiteCloned as e0, type CreateAddOnGroupRequest as e1, type DeleteAddOnGroupRequest as e2, type DeleteAddOnGroupResponse as e3, type UpdateAddOnGroupRequest as e4, type ListAddOnGroupsByServiceIdRequest as e5, type AddOn as e6, type AddOnAddOnInfoOneOf as e7, type AddOnGroupDetail as e8, type SetAddOnsForGroupRequest 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 BaseEventMetadata as ea, type EventMetadata as eb, type AccountInfoMetadata 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 };
5142
+ 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 CustomLocationOptions 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, PlacementType as aA, DayOfWeek as aB, ResolutionMethod as aC, WebhookIdentityType 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 DiscountInfo as aR, type OnlineBooking as aS, type Conferencing as aT, type Location as aU, type LocationOptionsOneOf as aV, type CommonAddress as aW, type CommonAddressStreetOneOf as aX, type StreetAddress as aY, type AddressLocation as aZ, type BusinessLocationOptions as a_, AddOnPaymentOptions as aa, LocationType as ab, RankingOrder as ac, SortingMethodType as ad, Timing as ae, CompletionRequirement as af, TaxableAddressType as ag, V2RequestedFields as ah, SortOrder as ai, SortType as aj, SortDirection as ak, MissingValues as al, ScalarType as am, NestedAggregationType as an, Interval as ao, AggregationType as ap, Mode as aq, RequestedFields as ar, Action as as, InvalidSlugError as at, CloneErrors as au, Status as av, CategoryNotificationEvent as aw, BenefitType as ax, Event as ay, CrudType as az, type UpdateServiceValidationErrors as b, type BulkUpdateServicesByFilterRequest as b$, type BookingPolicy as b0, type PolicyDescription as b1, type LimitEarlyBookingPolicy as b2, type LimitLateBookingPolicy as b3, type BookAfterStartPolicy as b4, type CancellationPolicy as b5, type ReschedulePolicy as b6, type WaitlistPolicy as b7, type ParticipantsPolicy as b8, type ResourcesPolicy as b9, type Tag as bA, type Settings as bB, type AddOnDetails as bC, type TaxableAddress as bD, type PhoneCall as bE, type SetCustomSlugEvent as bF, type ServicesUrlsChanged as bG, type CreateServiceRequest as bH, type CreateServiceResponse as bI, type ValidateServiceRequest as bJ, type ValidateServiceResponse as bK, type FieldViolation as bL, type BulkCreateServicesRequest as bM, type BulkServiceResult as bN, type ItemMetadata as bO, type ApplicationError as bP, type BulkActionMetadata as bQ, type GetServiceRequest as bR, type GetServiceResponse as bS, type GetServiceAvailabilityConstraintsRequest as bT, type GetServiceAvailabilityConstraintsResponse as bU, type ServiceAvailabilityConstraints as bV, type SplitInterval as bW, type UpdateServiceRequest as bX, type UpdateServiceResponse as bY, type BulkUpdateServicesRequest as bZ, type MaskedService as b_, type CancellationFeePolicy as ba, type CancellationWindow as bb, type CancellationWindowFeeOneOf as bc, type SaveCreditCardPolicy as bd, type StaffSortingPolicy as be, type StaffSortingPolicyOptionsOneOf as bf, type RankingOptions as bg, type CustomOptions as bh, type IntakeFormPolicy as bi, type Schedule as bj, type AvailabilityConstraints as bk, type Duration as bl, type StaffMember as bm, type StaffMediaItem as bn, type StaffMediaItemItemOneOf as bo, type StaffMemberDetails as bp, type ResourceGroup as bq, type ResourceIds as br, type ServiceResource as bs, type ServiceResourceSelectionOneOf as bt, type ResourceType as bu, type Slug as bv, type URLs as bw, type ExtendedFields as bx, type SeoSchema as by, type Keyword as bz, type BulkUpdateServicesOptions as c, type QueryLocationsFilter as c$, type DeleteServiceRequest as c0, type ParticipantNotification as c1, type DeleteServiceResponse as c2, type BulkDeleteServicesRequest as c3, type BulkDeleteServicesByFilterRequest as c4, type QueryServicesRequest as c5, type QueryV2 as c6, type QueryV2PagingMethodOneOf as c7, type Sorting as c8, type Paging as c9, type NestedAggregationResults as cA, type NestedAggregationResultsResultOneOf as cB, type ValueResults as cC, type RangeResults as cD, type AggregationResultsScalarResult as cE, type NestedValueAggregationResult as cF, type ValueResult as cG, type RangeResult as cH, type ScalarResult as cI, type NestedResultValue as cJ, type NestedResultValueResultOneOf as cK, type Results as cL, type DateHistogramResult as cM, type GroupByValueResults as cN, type DateHistogramResults as cO, type NestedResults as cP, type AggregationResults as cQ, type AggregationResultsResultOneOf as cR, type QueryPoliciesRequest as cS, type CursorQueryPagingMethodOneOf as cT, type BookingPolicyWithServices as cU, type QueryBookingFormsRequest as cV, type BookingForm as cW, type FormDetails as cX, type ConnectedService as cY, type CountServicesRequest as cZ, type QueryLocationsRequest as c_, type CursorPaging as ca, type QueryServicesResponse as cb, type PagingMetadataV2 as cc, type Cursors as cd, type SearchServicesRequest as ce, type CursorSearch as cf, type CursorSearchPagingMethodOneOf as cg, type Aggregation as ch, type AggregationKindOneOf as ci, type RangeBucket as cj, type IncludeMissingValuesOptions as ck, type ValueAggregation as cl, type ValueAggregationOptionsOneOf as cm, type RangeAggregation as cn, type ScalarAggregation as co, type DateHistogramAggregation as cp, type NestedAggregationItem as cq, type NestedAggregationItemKindOneOf as cr, type NestedAggregation as cs, type GroupByAggregation as ct, type GroupByAggregationKindOneOf as cu, type SearchDetails as cv, type CursorPagingMetadata as cw, type AggregationData as cx, type ValueAggregationResult as cy, type RangeAggregationResult as cz, type BulkUpdateServicesResponse as d, type CreateAddOnGroupRequest as d$, type BusinessLocations as d0, type CustomLocations as d1, type CustomerLocations as d2, type QueryCategoriesRequest as d3, type QueryCategoriesFilter as d4, type QueryServicesMultiLanguageRequest as d5, type QueryServicesMultiLanguageResponse as d6, type SetServiceLocationsRequest as d7, type RemovedLocationSessionsAction as d8, type RemovedLocationSessionsActionActionOptionsOneOf 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 MessageEnvelope as dX, type IdentificationData as dY, type IdentificationDataIdOneOf as dZ, type AccountInfo as d_, type MoveToNewLocationsOptions as da, type EnablePricingPlansForServiceRequest as db, type PricingPlanSelection as dc, type InvalidPricingPlan as dd, type DisablePricingPlansForServiceRequest as de, type SetCustomSlugRequest as df, type ValidateSlugRequest as dg, type CloneServiceRequest as dh, type CategoryNotification as di, type Category as dj, type Empty as dk, type DomainEvent as dl, type DomainEventBodyOneOf as dm, type EntityCreatedEvent as dn, type RestoreInfo as dp, type EntityUpdatedEvent as dq, type EntityDeletedEvent as dr, type ActionEvent 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, countServices as e$, type DeleteAddOnGroupRequest as e0, type DeleteAddOnGroupResponse as e1, type UpdateAddOnGroupRequest as e2, type ListAddOnGroupsByServiceIdRequest as e3, type AddOn as e4, type AddOnAddOnInfoOneOf as e5, type AddOnGroupDetail as e6, type SetAddOnsForGroupRequest as e7, type BaseEventMetadata as e8, type EventMetadata as e9, type CloneErrorsWithLiterals as eA, type StatusWithLiterals as eB, type CategoryNotificationEventWithLiterals as eC, type BenefitTypeWithLiterals as eD, type EventWithLiterals as eE, type CrudTypeWithLiterals as eF, type PlacementTypeWithLiterals as eG, type DayOfWeekWithLiterals as eH, type ResolutionMethodWithLiterals as eI, type WebhookIdentityTypeWithLiterals as eJ, type CommonQueryWithEntityContext as eK, type CommonSearchWithEntityContext as eL, onServiceCreated as eM, onServiceDeleted as eN, onServiceUpdated as eO, createService as eP, bulkCreateServices as eQ, getService as eR, updateService as eS, bulkUpdateServices as eT, bulkUpdateServicesByFilter as eU, deleteService as eV, bulkDeleteServices as eW, bulkDeleteServicesByFilter as eX, queryServices as eY, queryPolicies as eZ, queryBookingForms as e_, type AccountInfoMetadata as ea, type ServicesQueryResult as eb, type ServiceQuerySpec as ec, type ServiceSearchSpec as ed, type ServiceTypeWithLiterals as ee, type RateTypeWithLiterals as ef, type AddOnPaymentOptionsWithLiterals as eg, type LocationTypeWithLiterals as eh, type RankingOrderWithLiterals as ei, type SortingMethodTypeWithLiterals as ej, type TimingWithLiterals as ek, type CompletionRequirementWithLiterals as el, type TaxableAddressTypeWithLiterals as em, type V2RequestedFieldsWithLiterals as en, type SortOrderWithLiterals as eo, type SortTypeWithLiterals as ep, type SortDirectionWithLiterals as eq, type MissingValuesWithLiterals as er, type ScalarTypeWithLiterals as es, type NestedAggregationTypeWithLiterals as et, type IntervalWithLiterals as eu, type AggregationTypeWithLiterals as ev, type ModeWithLiterals as ew, type RequestedFieldsWithLiterals as ex, type ActionWithLiterals as ey, type InvalidSlugErrorWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, queryLocations as f0, queryCategories as f1, setServiceLocations as f2, enablePricingPlansForService as f3, disablePricingPlansForService as f4, setCustomSlug as f5, validateSlug as f6, cloneService as f7, createAddOnGroup as f8, deleteAddOnGroup as f9, updateAddOnGroup as fa, listAddOnGroupsByServiceId as fb, setAddOnsForGroup as fc, 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 };
@@ -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-CIfv76w_.js';
3
- export { bT as AccountInfo, ec as AccountInfoMetadata, at as Action, bP as ActionEvent, eB as ActionWithLiterals, e6 as AddOn, e7 as AddOnAddOnInfoOneOf, bC as AddOnDetails, e8 as AddOnGroupDetail, aa as AddOnPaymentOptions, ei as AddOnPaymentOptionsWithLiterals, dO as Address, dP as AddressHint, aZ as AddressLocation, cu as Aggregation, cK as AggregationData, cv as AggregationKindOneOf, d1 as AggregationResults, d2 as AggregationResultsResultOneOf, cR as AggregationResultsScalarResult, aq as AggregationType, ey as AggregationTypeWithLiterals, c0 as ApplicationError, bk as AvailabilityConstraints, ea as BaseEventMetadata, dE as Behavior, dF as BehaviorBehaviorOneOf, dA as Benefit, dz as BenefitNotification, ay as BenefitType, eG as BenefitTypeWithLiterals, b4 as BookAfterStartPolicy, d7 as BookingForm, b0 as BookingPolicy, d5 as BookingPolicyWithServices, c1 as BulkActionMetadata, bZ as BulkCreateServicesRequest, ch as BulkDeleteServicesByFilterRequest, cg as BulkDeleteServicesRequest, b_ as BulkServiceResult, cc as BulkUpdateServicesByFilterRequest, ca as BulkUpdateServicesRequest, a_ as BusinessLocationOptions, dd as BusinessLocations, dR as BusinessSchedule, ba as CancellationFeePolicy, b5 as CancellationPolicy, bb as CancellationWindow, bc as CancellationWindowFeeOneOf, dM as Categories, dx as Category, dw as CategoryNotification, ax as CategoryNotificationEvent, eF as CategoryNotificationEventWithLiterals, dY as ChangeContext, dZ as ChangeContextPayloadOneOf, av as CloneErrors, eD as CloneErrorsWithLiterals, dv as CloneServiceRequest, aW as CommonAddress, aX as CommonAddressStreetOneOf, eM as CommonQueryWithEntityContext, eN as CommonSearchWithEntityContext, af as CompletionRequirement, en as CompletionRequirementWithLiterals, aT as Conferencing, d9 as ConnectedService, dW as ConsentPolicy, da as CountServicesRequest, e1 as CreateAddOnGroupRequest, bU as CreateServiceRequest, bV as CreateServiceResponse, aA as CrudType, eI as CrudTypeWithLiterals, cn as CursorPaging, cJ as CursorPagingMetadata, d4 as CursorQueryPagingMethodOneOf, cs as CursorSearch, ct as CursorSearchPagingMethodOneOf, cq as Cursors, a$ as CustomLocationOptions, de as CustomLocations, bh as CustomOptions, aO as CustomPayment, df as CustomerLocations, cC as DateHistogramAggregation, cZ as DateHistogramResult, c$ as DateHistogramResults, aC as DayOfWeek, eK as DayOfWeekWithLiterals, e2 as DeleteAddOnGroupRequest, e3 as DeleteAddOnGroupResponse, cd as DeleteServiceRequest, cf as DeleteServiceResponse, ds as DisablePricingPlansForServiceRequest, dC as Discount, dD as DiscountDiscountOneOf, aR as DiscountInfo, bJ as DomainEvent, bK as DomainEventBodyOneOf, bH as DummyRequest, bI as DummyResponse, bl as Duration, dy as Empty, dp as EnablePricingPlansForServiceRequest, bL as EntityCreatedEvent, bO as EntityDeletedEvent, bN as EntityUpdatedEvent, dB as EntryPass, az as Event, eb as EventMetadata, eH as EventWithLiterals, bx as ExtendedFields, bY as FieldViolation, aM as FixedPayment, aI as Form, d8 as FormDetails, aJ as FormSettings, dQ as GeoCoordinates, c4 as GetServiceAvailabilityConstraintsRequest, c5 as GetServiceAvailabilityConstraintsResponse, c2 as GetServiceRequest, c3 as GetServiceResponse, cG as GroupByAggregation, cH as GroupByAggregationKindOneOf, c_ as GroupByValueResults, dH as HtmlSitePublished, bR as IdentificationData, bS as IdentificationDataIdOneOf, cx as IncludeMissingValuesOptions, bi as IntakeFormPolicy, ap as Interval, ex as IntervalWithLiterals, dr as InvalidPricingPlan, au as InvalidSlugError, eC as InvalidSlugErrorWithLiterals, b$ as ItemMetadata, bz as Keyword, b2 as LimitEarlyBookingPolicy, b3 as LimitLateBookingPolicy, e5 as ListAddOnGroupsByServiceIdRequest, dN as Locale, aU as Location, aV as LocationOptionsOneOf, ab as LocationType, ej as LocationTypeWithLiterals, cb as MaskedService, aE as Media, aF as MediaItem, aG as MediaItemItemOneOf, bQ as MessageEnvelope, am as MissingValues, eu as MissingValuesWithLiterals, ar as Mode, ez as ModeWithLiterals, aN as Money, dn as MoveToNewLocationsOptions, dU as Multilingual, cF as NestedAggregation, cD as NestedAggregationItem, cE as NestedAggregationItemKindOneOf, cN as NestedAggregationResults, cO as NestedAggregationResultsResultOneOf, ao as NestedAggregationType, ew as NestedAggregationTypeWithLiterals, cW as NestedResultValue, cX as NestedResultValueResultOneOf, d0 as NestedResults, cS as NestedValueAggregationResult, aS as OnlineBooking, dI as Page, cm as Paging, cp as PagingMetadataV2, ce as ParticipantNotification, b8 as ParticipantsPolicy, aK as Payment, aQ as PaymentOptions, aL as PaymentRateOneOf, bE as PhoneCall, aB as PlacementType, eJ as PlacementTypeWithLiterals, b1 as PolicyDescription, dq as PricingPlanSelection, dL as Properties, d_ as PropertiesChange, d6 as QueryBookingFormsRequest, dh as QueryCategoriesFilter, dg as QueryCategoriesRequest, dc as QueryLocationsFilter, db as QueryLocationsRequest, d3 as QueryPoliciesRequest, di as QueryServicesMultiLanguageRequest, dj as QueryServicesMultiLanguageResponse, ci as QueryServicesRequest, co as QueryServicesResponse, cj as QueryV2, ck as QueryV2PagingMethodOneOf, cA as RangeAggregation, cM as RangeAggregationResult, cw as RangeBucket, cU as RangeResult, cQ as RangeResults, bg as RankingOptions, ac as RankingOrder, ek as RankingOrderWithLiterals, a9 as RateType, eh as RateTypeWithLiterals, dl as RemovedLocationSessionsAction, dm as RemovedLocationSessionsActionActionOptionsOneOf, as as RequestedFields, eA as RequestedFieldsWithLiterals, b6 as ReschedulePolicy, aD as ResolutionMethod, eL as ResolutionMethodWithLiterals, bq as ResourceGroup, br as ResourceIds, bu as ResourceType, b9 as ResourcesPolicy, bM as RestoreInfo, cY as Results, bd as SaveCreditCardPolicy, cB as ScalarAggregation, cV as ScalarResult, an as ScalarType, ev as ScalarTypeWithLiterals, bj as Schedule, cI as SearchDetails, cr as SearchServicesRequest, by as SeoSchema, c6 as ServiceAvailabilityConstraints, ee as ServiceQuerySpec, bs as ServiceResource, bt as ServiceResourceSelectionOneOf, ef as ServiceSearchSpec, a8 as ServiceType, eg as ServiceTypeWithLiterals, ed as ServicesQueryResult, bG as ServicesUrlsChanged, e9 as SetAddOnsForGroupRequest, bF as SetCustomSlugEvent, dt as SetCustomSlugRequest, dk as SetServiceLocationsRequest, bB as Settings, e0 as SiteCloned, d$ as SiteCreated, dK as SitePropertiesEvent, dJ as SitePropertiesNotification, bv as Slug, al as SortDirection, et as SortDirectionWithLiterals, aj as SortOrder, er as SortOrderWithLiterals, ak as SortType, es as SortTypeWithLiterals, cl as Sorting, ad as SortingMethodType, el as SortingMethodTypeWithLiterals, dT as SpecialHourPeriod, c7 as SplitInterval, bn as StaffMediaItem, bo as StaffMediaItemItemOneOf, bm as StaffMember, bp as StaffMemberDetails, be as StaffSortingPolicy, bf as StaffSortingPolicyOptionsOneOf, aw as Status, eE as StatusWithLiterals, aY as StreetAddress, dV as SupportedLanguage, bA as Tag, bD as TaxableAddress, ag as TaxableAddressType, eo as TaxableAddressTypeWithLiterals, dS as TimePeriod, ae as Timing, em as TimingWithLiterals, dX as Translation, bw as URLs, e4 as UpdateAddOnGroupRequest, c8 as UpdateServiceRequest, c9 as UpdateServiceResponse, dG as UserDomainInfoChangedEvent, aH as V2Category, ai as V2RequestedFields, eq as V2RequestedFieldsWithLiterals, bW as ValidateServiceRequest, bX as ValidateServiceResponse, du as ValidateSlugRequest, cy as ValueAggregation, cz as ValueAggregationOptionsOneOf, cL as ValueAggregationResult, cT as ValueResult, cP as ValueResults, aP as VariedPayment, b7 as WaitlistPolicy, ah as WebhookIdentityType, ep as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-CIfv76w_.js';
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-BxKI57Md.js';
3
+ export { d_ as AccountInfo, ea as AccountInfoMetadata, as as Action, ds as ActionEvent, ey as ActionWithLiterals, e4 as AddOn, e5 as AddOnAddOnInfoOneOf, bC as AddOnDetails, e6 as AddOnGroupDetail, aa as AddOnPaymentOptions, eg as AddOnPaymentOptionsWithLiterals, dI as Address, dJ as AddressHint, aZ as AddressLocation, ch as Aggregation, cx as AggregationData, ci as AggregationKindOneOf, cQ as AggregationResults, cR as AggregationResultsResultOneOf, cE as AggregationResultsScalarResult, ap as AggregationType, ev as AggregationTypeWithLiterals, bP as ApplicationError, bk as AvailabilityConstraints, e8 as BaseEventMetadata, dy as Behavior, dz as BehaviorBehaviorOneOf, du as Benefit, dt as BenefitNotification, ax as BenefitType, eD as BenefitTypeWithLiterals, b4 as BookAfterStartPolicy, cW as BookingForm, b0 as BookingPolicy, cU as BookingPolicyWithServices, bQ as BulkActionMetadata, bM as BulkCreateServicesRequest, c4 as BulkDeleteServicesByFilterRequest, c3 as BulkDeleteServicesRequest, bN as BulkServiceResult, b$ as BulkUpdateServicesByFilterRequest, bZ as BulkUpdateServicesRequest, a_ as BusinessLocationOptions, d0 as BusinessLocations, dL as BusinessSchedule, ba as CancellationFeePolicy, b5 as CancellationPolicy, bb as CancellationWindow, bc as CancellationWindowFeeOneOf, dG as Categories, dj as Category, di as CategoryNotification, aw as CategoryNotificationEvent, eC as CategoryNotificationEventWithLiterals, dS as ChangeContext, dT as ChangeContextPayloadOneOf, au as CloneErrors, eA as CloneErrorsWithLiterals, dh as CloneServiceRequest, aW as CommonAddress, aX as CommonAddressStreetOneOf, eK as CommonQueryWithEntityContext, eL as CommonSearchWithEntityContext, af as CompletionRequirement, el as CompletionRequirementWithLiterals, aT as Conferencing, cY as ConnectedService, dQ as ConsentPolicy, cZ as CountServicesRequest, d$ as CreateAddOnGroupRequest, bH as CreateServiceRequest, bI as CreateServiceResponse, az as CrudType, eF as CrudTypeWithLiterals, ca as CursorPaging, cw as CursorPagingMetadata, cT as CursorQueryPagingMethodOneOf, cf as CursorSearch, cg as CursorSearchPagingMethodOneOf, cd as Cursors, a$ as CustomLocationOptions, d1 as CustomLocations, bh as CustomOptions, aO as CustomPayment, d2 as CustomerLocations, cp as DateHistogramAggregation, cM as DateHistogramResult, cO as DateHistogramResults, aB as DayOfWeek, eH as DayOfWeekWithLiterals, e0 as DeleteAddOnGroupRequest, e1 as DeleteAddOnGroupResponse, c0 as DeleteServiceRequest, c2 as DeleteServiceResponse, de as DisablePricingPlansForServiceRequest, dw as Discount, dx as DiscountDiscountOneOf, aR as DiscountInfo, dl as DomainEvent, dm as DomainEventBodyOneOf, bl as Duration, dk as Empty, db as EnablePricingPlansForServiceRequest, dn as EntityCreatedEvent, dr as EntityDeletedEvent, dq as EntityUpdatedEvent, dv as EntryPass, ay as Event, e9 as EventMetadata, eE as EventWithLiterals, bx as ExtendedFields, bL as FieldViolation, aM as FixedPayment, aI as Form, cX as FormDetails, aJ as FormSettings, dK as GeoCoordinates, bT as GetServiceAvailabilityConstraintsRequest, bU as GetServiceAvailabilityConstraintsResponse, bR as GetServiceRequest, bS as GetServiceResponse, ct as GroupByAggregation, cu as GroupByAggregationKindOneOf, cN as GroupByValueResults, dB as HtmlSitePublished, dY as IdentificationData, dZ as IdentificationDataIdOneOf, ck as IncludeMissingValuesOptions, bi as IntakeFormPolicy, ao as Interval, eu as IntervalWithLiterals, dd as InvalidPricingPlan, at as InvalidSlugError, ez as InvalidSlugErrorWithLiterals, bO as ItemMetadata, bz as Keyword, b2 as LimitEarlyBookingPolicy, b3 as LimitLateBookingPolicy, e3 as ListAddOnGroupsByServiceIdRequest, dH as Locale, aU as Location, aV as LocationOptionsOneOf, ab as LocationType, eh as LocationTypeWithLiterals, b_ as MaskedService, aE as Media, aF as MediaItem, aG as MediaItemItemOneOf, dX as MessageEnvelope, al as MissingValues, er as MissingValuesWithLiterals, aq as Mode, ew as ModeWithLiterals, aN as Money, da as MoveToNewLocationsOptions, dO as Multilingual, cs as NestedAggregation, cq as NestedAggregationItem, cr as NestedAggregationItemKindOneOf, cA as NestedAggregationResults, cB as NestedAggregationResultsResultOneOf, an as NestedAggregationType, et as NestedAggregationTypeWithLiterals, cJ as NestedResultValue, cK as NestedResultValueResultOneOf, cP as NestedResults, cF as NestedValueAggregationResult, aS as OnlineBooking, dC as Page, c9 as Paging, cc as PagingMetadataV2, c1 as ParticipantNotification, b8 as ParticipantsPolicy, aK as Payment, aQ as PaymentOptions, aL as PaymentRateOneOf, bE as PhoneCall, aA as PlacementType, eG as PlacementTypeWithLiterals, b1 as PolicyDescription, dc as PricingPlanSelection, dF as Properties, dU as PropertiesChange, cV as QueryBookingFormsRequest, d4 as QueryCategoriesFilter, d3 as QueryCategoriesRequest, c$ as QueryLocationsFilter, c_ as QueryLocationsRequest, cS as QueryPoliciesRequest, d5 as QueryServicesMultiLanguageRequest, d6 as QueryServicesMultiLanguageResponse, c5 as QueryServicesRequest, cb as QueryServicesResponse, c6 as QueryV2, c7 as QueryV2PagingMethodOneOf, cn as RangeAggregation, cz as RangeAggregationResult, cj as RangeBucket, cH as RangeResult, cD as RangeResults, bg as RankingOptions, ac as RankingOrder, ei as RankingOrderWithLiterals, a9 as RateType, ef as RateTypeWithLiterals, d8 as RemovedLocationSessionsAction, d9 as RemovedLocationSessionsActionActionOptionsOneOf, ar as RequestedFields, ex as RequestedFieldsWithLiterals, b6 as ReschedulePolicy, aC as ResolutionMethod, eI as ResolutionMethodWithLiterals, bq as ResourceGroup, br as ResourceIds, bu as ResourceType, b9 as ResourcesPolicy, dp as RestoreInfo, cL as Results, bd as SaveCreditCardPolicy, co as ScalarAggregation, cI as ScalarResult, am as ScalarType, es as ScalarTypeWithLiterals, bj as Schedule, cv as SearchDetails, ce as SearchServicesRequest, by as SeoSchema, bV as ServiceAvailabilityConstraints, ec as ServiceQuerySpec, bs as ServiceResource, bt as ServiceResourceSelectionOneOf, ed as ServiceSearchSpec, a8 as ServiceType, ee as ServiceTypeWithLiterals, eb as ServicesQueryResult, bG as ServicesUrlsChanged, e7 as SetAddOnsForGroupRequest, bF as SetCustomSlugEvent, df as SetCustomSlugRequest, d7 as SetServiceLocationsRequest, bB as Settings, dW as SiteCloned, dV as SiteCreated, dE as SitePropertiesEvent, dD as SitePropertiesNotification, bv as Slug, ak as SortDirection, eq as SortDirectionWithLiterals, ai as SortOrder, eo as SortOrderWithLiterals, aj as SortType, ep as SortTypeWithLiterals, c8 as Sorting, ad as SortingMethodType, ej as SortingMethodTypeWithLiterals, dN as SpecialHourPeriod, bW as SplitInterval, bn as StaffMediaItem, bo as StaffMediaItemItemOneOf, bm as StaffMember, bp as StaffMemberDetails, be as StaffSortingPolicy, bf as StaffSortingPolicyOptionsOneOf, av as Status, eB as StatusWithLiterals, aY as StreetAddress, dP as SupportedLanguage, bA as Tag, bD as TaxableAddress, ag as TaxableAddressType, em as TaxableAddressTypeWithLiterals, dM as TimePeriod, ae as Timing, ek as TimingWithLiterals, dR as Translation, bw as URLs, e2 as UpdateAddOnGroupRequest, bX as UpdateServiceRequest, bY as UpdateServiceResponse, dA as UserDomainInfoChangedEvent, aH as V2Category, ah as V2RequestedFields, en as V2RequestedFieldsWithLiterals, bJ as ValidateServiceRequest, bK as ValidateServiceResponse, dg as ValidateSlugRequest, cl as ValueAggregation, cm as ValueAggregationOptionsOneOf, cy as ValueAggregationResult, cG as ValueResult, cC as ValueResults, aP as VariedPayment, b7 as WaitlistPolicy, aD as WebhookIdentityType, eJ as WebhookIdentityTypeWithLiterals } from './bookings-services-v2-service-services.universal-BxKI57Md.js';
4
4
 
5
5
  declare function createService$1(httpClient: HttpClient): CreateServiceSignature;
6
6
  interface CreateServiceSignature {
@@ -1866,14 +1866,6 @@ var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
1866
1866
  TaxableAddressType2["BILLING"] = "BILLING";
1867
1867
  return TaxableAddressType2;
1868
1868
  })(TaxableAddressType || {});
1869
- var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
1870
- WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
1871
- WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
1872
- WebhookIdentityType2["MEMBER"] = "MEMBER";
1873
- WebhookIdentityType2["WIX_USER"] = "WIX_USER";
1874
- WebhookIdentityType2["APP"] = "APP";
1875
- return WebhookIdentityType2;
1876
- })(WebhookIdentityType || {});
1877
1869
  var V2RequestedFields = /* @__PURE__ */ ((V2RequestedFields2) => {
1878
1870
  V2RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
1879
1871
  V2RequestedFields2["STAFF_MEMBER_DETAILS"] = "STAFF_MEMBER_DETAILS";
@@ -2017,6 +2009,14 @@ var ResolutionMethod = /* @__PURE__ */ ((ResolutionMethod2) => {
2017
2009
  ResolutionMethod2["SUBDIRECTORY"] = "SUBDIRECTORY";
2018
2010
  return ResolutionMethod2;
2019
2011
  })(ResolutionMethod || {});
2012
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
2013
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
2014
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
2015
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
2016
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
2017
+ WebhookIdentityType2["APP"] = "APP";
2018
+ return WebhookIdentityType2;
2019
+ })(WebhookIdentityType || {});
2020
2020
  async function createService2(service) {
2021
2021
  const { httpClient, sideEffects } = arguments[1];
2022
2022
  const payload = (0, import_transform_paths2.transformPaths)(