@wix/auto_sdk_bookings_services 1.0.71 → 1.0.73

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-DYRSxPXw.d.ts → bookings-services-v2-service-services.universal-B_To7DFS.d.ts} +176 -13
  2. package/build/cjs/index.d.ts +120 -32
  3. package/build/cjs/index.js +469 -0
  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 +415 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +203 -2
  9. package/build/cjs/meta.js +345 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-DYRSxPXw.d.mts → bookings-services-v2-service-services.universal-B_To7DFS.d.mts} +176 -13
  12. package/build/es/index.d.mts +120 -32
  13. package/build/es/index.mjs +463 -0
  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 +409 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +203 -2
  19. package/build/es/meta.mjs +339 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-DYRSxPXw.d.ts → bookings-services-v2-service-services.universal-B_To7DFS.d.ts} +176 -13
  22. package/build/internal/cjs/index.d.ts +120 -32
  23. package/build/internal/cjs/index.js +469 -0
  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 +415 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +203 -2
  29. package/build/internal/cjs/meta.js +345 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-DYRSxPXw.d.mts → bookings-services-v2-service-services.universal-B_To7DFS.d.mts} +176 -13
  32. package/build/internal/es/index.d.mts +120 -32
  33. package/build/internal/es/index.mjs +463 -0
  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 +409 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +203 -2
  39. package/build/internal/es/meta.mjs +339 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +3 -2
@@ -1340,7 +1340,7 @@ declare enum WebhookIdentityType {
1340
1340
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1341
1341
  interface CreateAddOnGroupRequest {
1342
1342
  /** AddOnGroup to create. */
1343
- addOnGroup?: AddOnGroup;
1343
+ addOnGroup: AddOnGroup;
1344
1344
  /**
1345
1345
  * ID of the service to create the AddOnGroup for.
1346
1346
  * @format GUID
@@ -1356,23 +1356,23 @@ interface DeleteAddOnGroupRequest {
1356
1356
  * ID of the AddOnGroup to delete.
1357
1357
  * @format GUID
1358
1358
  */
1359
- addOnGroupId?: string | null;
1359
+ addOnGroupId: string | null;
1360
1360
  /**
1361
1361
  * ID of the service from which to delete the AddOnGroup.
1362
1362
  * @format GUID
1363
1363
  */
1364
- serviceId?: string | null;
1364
+ serviceId: string | null;
1365
1365
  }
1366
1366
  interface DeleteAddOnGroupResponse {
1367
1367
  }
1368
1368
  interface UpdateAddOnGroupRequest {
1369
1369
  /** AddOnGroup to update. */
1370
- addOnGroup?: AddOnGroup;
1370
+ addOnGroup: AddOnGroup;
1371
1371
  /**
1372
1372
  * ID of the service that contains the AddOnGroup.
1373
1373
  * @format GUID
1374
1374
  */
1375
- serviceId?: string | null;
1375
+ serviceId: string | null;
1376
1376
  }
1377
1377
  interface UpdateAddOnGroupResponse {
1378
1378
  /** Updated AddOnGroup */
@@ -1383,7 +1383,7 @@ interface ListAddOnGroupsByServiceIdRequest {
1383
1383
  * ID of the service to retrieve AddOnGroups for.
1384
1384
  * @format GUID
1385
1385
  */
1386
- serviceId?: string | null;
1386
+ serviceId: string | null;
1387
1387
  /**
1388
1388
  * List of group ids to return. If not provided, all groups are returned.
1389
1389
  * @format GUID
@@ -1452,19 +1452,19 @@ interface SetAddOnsForGroupRequest {
1452
1452
  * The service ID to set AddOns for.
1453
1453
  * @format GUID
1454
1454
  */
1455
- serviceId?: string | null;
1455
+ serviceId: string | null;
1456
1456
  /**
1457
1457
  * The group ID to set AddOns for.
1458
1458
  * @format GUID
1459
1459
  */
1460
- groupId?: string | null;
1460
+ groupId: string | null;
1461
1461
  /**
1462
1462
  * The IDs of AddOns to set.
1463
1463
  * @format GUID
1464
1464
  * @minSize 1
1465
1465
  * @maxSize 7
1466
1466
  */
1467
- addOnIds?: string[] | null;
1467
+ addOnIds: string[] | null;
1468
1468
  }
1469
1469
  interface SetAddOnsForGroupResponse {
1470
1470
  /** The updated AddOnGroup. */
@@ -1475,19 +1475,19 @@ interface ValidateAddOnsSelectionRequest {
1475
1475
  * The service ID to validate AddOns against.
1476
1476
  * @format GUID
1477
1477
  */
1478
- serviceId?: string | null;
1478
+ serviceId: string | null;
1479
1479
  /**
1480
1480
  * The group ID to validate AddOns against.
1481
1481
  * @format GUID
1482
1482
  */
1483
- groupId?: string | null;
1483
+ groupId: string | null;
1484
1484
  /**
1485
1485
  * The IDs of AddOns to validate.
1486
1486
  * @format GUID
1487
1487
  * @minSize 1
1488
1488
  * @maxSize 7
1489
1489
  */
1490
- addOnIds?: string[] | null;
1490
+ addOnIds: string[] | null;
1491
1491
  }
1492
1492
  interface ValidateAddOnsSelectionResponse {
1493
1493
  /** The validation result. */
@@ -3412,6 +3412,21 @@ interface SiteCloned {
3412
3412
  /** Origin site id. */
3413
3413
  originMetaSiteId?: string;
3414
3414
  }
3415
+ type DeleteAddOnGroupApplicationErrors = {
3416
+ code?: 'GROUP_NOT_ON_SERVICE';
3417
+ description?: string;
3418
+ data?: Record<string, any>;
3419
+ };
3420
+ type UpdateAddOnGroupApplicationErrors = {
3421
+ code?: 'GROUP_NOT_ON_SERVICE';
3422
+ description?: string;
3423
+ data?: Record<string, any>;
3424
+ };
3425
+ type SetAddOnsForGroupApplicationErrors = {
3426
+ code?: 'ADD_ON_GROUP_NOT_FOUND';
3427
+ description?: string;
3428
+ data?: Record<string, any>;
3429
+ };
3415
3430
  type CreateServiceValidationErrors = {
3416
3431
  ruleName?: 'INVALID_FORM';
3417
3432
  } | {
@@ -3648,6 +3663,154 @@ interface ServiceUpdatedEnvelope {
3648
3663
  */
3649
3664
  declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
3650
3665
  type ServiceNonNullablePaths = `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.business.address.streetAddress.number` | `locations.${number}.business.address.streetAddress.name` | `locations.${number}.business.address.streetAddress.apt` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.amount.value` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.amount.currency` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `mainSlug.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain`;
3666
+ /**
3667
+ * Create a new AddOns group.
3668
+ * An AddOns group defines a collection of AddOns that can be linked to a Service,
3669
+ * with constraints such as minimum and maximum selections.
3670
+ * @param addOnGroup - AddOnGroup to create.
3671
+ * @public
3672
+ * @documentationMaturity preview
3673
+ * @requiredField addOnGroup
3674
+ * @requiredField addOnGroup.name
3675
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3676
+ * @applicableIdentity APP
3677
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
3678
+ */
3679
+ declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`>>;
3680
+ interface CreateAddOnGroupOptions {
3681
+ /**
3682
+ * ID of the service to create the AddOnGroup for.
3683
+ * @format GUID
3684
+ */
3685
+ serviceId?: string | null;
3686
+ }
3687
+ /**
3688
+ * Delete an existing AddOns group.
3689
+ * This will remove the group and unlink all associated AddOns.
3690
+ * @param addOnGroupId - ID of the AddOnGroup to delete.
3691
+ * @public
3692
+ * @documentationMaturity preview
3693
+ * @requiredField addOnGroupId
3694
+ * @requiredField options
3695
+ * @requiredField options.serviceId
3696
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3697
+ * @applicableIdentity APP
3698
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
3699
+ */
3700
+ declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`>): Promise<void & {
3701
+ __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
3702
+ }>;
3703
+ interface DeleteAddOnGroupOptions {
3704
+ /**
3705
+ * ID of the service from which to delete the AddOnGroup.
3706
+ * @format GUID
3707
+ */
3708
+ serviceId: string | null;
3709
+ }
3710
+ /**
3711
+ * Update an existing AddOns group.
3712
+ * This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
3713
+ * @param addOnGroup - AddOnGroup to update.
3714
+ * @public
3715
+ * @documentationMaturity preview
3716
+ * @requiredField addOnGroup
3717
+ * @requiredField addOnGroup._id
3718
+ * @requiredField options
3719
+ * @requiredField options.serviceId
3720
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
3721
+ * @applicableIdentity APP
3722
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
3723
+ */
3724
+ declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`> & {
3725
+ __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
3726
+ }>;
3727
+ interface UpdateAddOnGroupOptions {
3728
+ /**
3729
+ * ID of the service that contains the AddOnGroup.
3730
+ * @format GUID
3731
+ */
3732
+ serviceId: string | null;
3733
+ }
3734
+ /**
3735
+ * Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
3736
+ * If the group_id is specified, only the AddOns for the specified group will be returned,
3737
+ * otherwise all groups will be returned.
3738
+ * @param serviceId - ID of the service to retrieve AddOnGroups for.
3739
+ * @public
3740
+ * @documentationMaturity preview
3741
+ * @requiredField serviceId
3742
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
3743
+ * @applicableIdentity APP
3744
+ * @applicableIdentity VISITOR
3745
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
3746
+ */
3747
+ declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`>>;
3748
+ interface ListAddOnGroupsByServiceIdOptions {
3749
+ /**
3750
+ * List of group ids to return. If not provided, all groups are returned.
3751
+ * @format GUID
3752
+ * @maxSize 3
3753
+ */
3754
+ groupIds?: string[] | null;
3755
+ }
3756
+ /**
3757
+ * Sets the AddOns for a specific group.
3758
+ * The order of the AddOns in the list will be used to determine their display order.
3759
+ * @param serviceId - The service ID to set AddOns for.
3760
+ * @public
3761
+ * @documentationMaturity preview
3762
+ * @requiredField options
3763
+ * @requiredField options.addOnIds
3764
+ * @requiredField options.groupId
3765
+ * @requiredField serviceId
3766
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
3767
+ * @applicableIdentity APP
3768
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
3769
+ */
3770
+ declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`> & {
3771
+ __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
3772
+ }>;
3773
+ interface SetAddOnsForGroupOptions {
3774
+ /**
3775
+ * The group ID to set AddOns for.
3776
+ * @format GUID
3777
+ */
3778
+ groupId: string | null;
3779
+ /**
3780
+ * The IDs of AddOns to set.
3781
+ * @format GUID
3782
+ * @minSize 1
3783
+ * @maxSize 7
3784
+ */
3785
+ addOnIds: string[] | null;
3786
+ }
3787
+ /**
3788
+ * Validates the selection of AddOns for a given group based on the group's settings.
3789
+ * @param serviceId - The service ID to validate AddOns against.
3790
+ * @public
3791
+ * @documentationMaturity preview
3792
+ * @requiredField options
3793
+ * @requiredField options.addOnIds
3794
+ * @requiredField options.groupId
3795
+ * @requiredField serviceId
3796
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_VALIDATE
3797
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.ValidateAddOnsSelection
3798
+ */
3799
+ declare function validateAddOnsSelection(serviceId: string, options: NonNullablePaths<ValidateAddOnsSelectionOptions, `addOnIds` | `groupId`>): Promise<ValidateAddOnsSelectionResponse>;
3800
+ interface ValidateAddOnsSelectionOptions {
3801
+ /**
3802
+ * The group ID to validate AddOns against.
3803
+ * @format GUID
3804
+ */
3805
+ groupId: string | null;
3806
+ /**
3807
+ * The IDs of AddOns to validate.
3808
+ * @format GUID
3809
+ * @minSize 1
3810
+ * @maxSize 7
3811
+ */
3812
+ addOnIds: string[] | null;
3813
+ }
3651
3814
  /**
3652
3815
  * Creates a service.
3653
3816
  *
@@ -4805,4 +4968,4 @@ declare function cloneService(sourceServiceId: string): Promise<NonNullablePaths
4805
4968
  [P in ServiceNonNullablePaths]: `service.${P}`;
4806
4969
  }[ServiceNonNullablePaths] | `errors`>>;
4807
4970
 
4808
- export { SortType 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 ServiceCreatedEnvelope as O, type ServiceDeletedEnvelope as P, type QueryPoliciesResponse as Q, type ServiceUpdatedEnvelope as R, type Service as S, ServiceType as T, type UpdateService as U, type ValidateSlugOptions as V, RateType as W, LocationType as X, WebhookIdentityType as Y, V2RequestedFields as Z, SortOrder as _, type BulkCreateServicesResponse as a, type ResourceIds as a$, SortDirection as a0, MissingValues as a1, ScalarType as a2, NestedAggregationType as a3, Interval as a4, AggregationType as a5, Mode as a6, RequestedFields as a7, Action as a8, InvalidSlugError as a9, type CommonAddressStreetOneOf as aA, type StreetAddress as aB, type AddressLocation as aC, type BusinessLocationOptions as aD, type CustomLocationOptions as aE, type BookingPolicy as aF, type PolicyDescription as aG, type LimitEarlyBookingPolicy as aH, type LimitLateBookingPolicy as aI, type BookAfterStartPolicy as aJ, type CancellationPolicy as aK, type ReschedulePolicy as aL, type WaitlistPolicy as aM, type ParticipantsPolicy as aN, type ResourcesPolicy as aO, type CancellationFeePolicy as aP, type CancellationWindow as aQ, type CancellationWindowFeeOneOf as aR, type SaveCreditCardPolicy as aS, type Schedule as aT, type AvailabilityConstraints as aU, type Duration as aV, type StaffMember as aW, type StaffMediaItem as aX, type StaffMediaItemItemOneOf as aY, type StaffMemberDetails as aZ, type ResourceGroup as a_, CloneErrors as aa, Status as ab, CategoryNotificationEvent as ac, BenefitType as ad, Event as ae, CrudType as af, PlacementType as ag, DayOfWeek as ah, ResolutionMethod as ai, type Media as aj, type MediaItem as ak, type MediaItemItemOneOf as al, type V2Category as am, type Form as an, type FormSettings as ao, type Payment as ap, type PaymentRateOneOf as aq, type FixedPayment as ar, type Money as as, type CustomPayment as at, type VariedPayment as au, type PaymentOptions as av, type OnlineBooking as aw, type Conferencing as ax, type LocationOptionsOneOf as ay, type CommonAddress as az, type UpdateServiceValidationErrors as b, type BulkUpdateServicesRequest as b$, type ServiceResource as b0, type ServiceResourceSelectionOneOf as b1, type ResourceType as b2, type Slug as b3, type URLs as b4, type ExtendedFields as b5, type SeoSchema as b6, type Keyword as b7, type Tag as b8, type Settings as b9, type ListAddOnGroupsByServiceIdResponse as bA, type AddOn as bB, type AddOnAddOnInfoOneOf as bC, type AddOnGroupDetail as bD, type SetAddOnsForGroupRequest as bE, type SetAddOnsForGroupResponse as bF, type ValidateAddOnsSelectionRequest as bG, type ValidateAddOnsSelectionResponse as bH, type ValidationResult as bI, type CreateServiceRequest as bJ, type CreateServiceResponse as bK, type ValidateServiceRequest as bL, type ValidateServiceResponse as bM, type FieldViolation as bN, type BulkCreateServicesRequest as bO, type BulkServiceResult as bP, type ItemMetadata as bQ, type ApplicationError as bR, type BulkActionMetadata as bS, type GetServiceRequest as bT, type GetServiceResponse as bU, type GetServiceAvailabilityConstraintsRequest as bV, type GetServiceAvailabilityConstraintsResponse as bW, type ServiceAvailabilityConstraints as bX, type SplitInterval as bY, type UpdateServiceRequest as bZ, type UpdateServiceResponse as b_, type AddOnGroup as ba, type AddOnDetails as bb, type ReindexMessage as bc, type ReindexMessageActionOneOf as bd, type Upsert as be, type Delete as bf, type Schema as bg, type SetCustomSlugEvent as bh, type ServicesUrlsChanged 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 CreateAddOnGroupRequest as bt, type CreateAddOnGroupResponse as bu, type DeleteAddOnGroupRequest as bv, type DeleteAddOnGroupResponse as bw, type UpdateAddOnGroupRequest as bx, type UpdateAddOnGroupResponse as by, type ListAddOnGroupsByServiceIdRequest as bz, type BulkUpdateServicesOptions as c, type CountServicesRequest as c$, type MaskedService as c0, type BulkUpdateServicesByFilterRequest as c1, type DeleteServiceRequest as c2, type ParticipantNotification as c3, type DeleteServiceResponse as c4, type BulkDeleteServicesRequest as c5, type BulkDeleteServicesByFilterRequest as c6, type QueryServicesRequest as c7, type QueryV2 as c8, type QueryV2PagingMethodOneOf as c9, type ValueAggregationResult as cA, type RangeAggregationResult as cB, type NestedAggregationResults as cC, type NestedAggregationResultsResultOneOf as cD, type ValueResults as cE, type RangeResults as cF, type AggregationResultsScalarResult as cG, type NestedValueAggregationResult as cH, type ValueResult as cI, type RangeResult as cJ, type ScalarResult as cK, type NestedResultValue as cL, type NestedResultValueResultOneOf as cM, type Results as cN, type DateHistogramResult as cO, type GroupByValueResults as cP, type DateHistogramResults as cQ, type NestedResults as cR, type AggregationResults as cS, type AggregationResultsResultOneOf as cT, type QueryPoliciesRequest as cU, type CursorQueryPagingMethodOneOf as cV, type BookingPolicyWithServices as cW, type QueryBookingFormsRequest as cX, type BookingForm as cY, type FormDetails as cZ, type ConnectedService as c_, type Sorting as ca, type Paging as cb, type CursorPaging as cc, type QueryServicesResponse as cd, type PagingMetadataV2 as ce, type Cursors as cf, type SearchServicesRequest as cg, type CursorSearch as ch, type CursorSearchPagingMethodOneOf as ci, type Aggregation as cj, type AggregationKindOneOf as ck, type RangeBucket as cl, type IncludeMissingValuesOptions as cm, type ValueAggregation as cn, type ValueAggregationOptionsOneOf as co, type RangeAggregation as cp, type ScalarAggregation as cq, type DateHistogramAggregation as cr, type NestedAggregationItem as cs, type NestedAggregationItemKindOneOf as ct, type NestedAggregation as cu, type GroupByAggregation as cv, type GroupByAggregationKindOneOf as cw, type SearchDetails as cx, type CursorPagingMetadata as cy, type AggregationData as cz, type BulkUpdateServicesResponse as d, type SortTypeWithLiterals as d$, type QueryLocationsRequest as d0, type QueryLocationsFilter as d1, type BusinessLocations as d2, type CustomLocations as d3, type CustomerLocations as d4, type QueryCategoriesRequest as d5, type QueryCategoriesFilter as d6, type QueryServicesMultiLanguageRequest as d7, type QueryServicesMultiLanguageResponse as d8, type SetServiceLocationsRequest as d9, type Categories as dA, type Locale as dB, type Address as dC, type AddressHint as dD, type GeoCoordinates as dE, type BusinessSchedule as dF, type TimePeriod as dG, type SpecialHourPeriod as dH, type Multilingual as dI, type SupportedLanguage as dJ, type ConsentPolicy as dK, type Translation as dL, type ChangeContext as dM, type ChangeContextPayloadOneOf as dN, type PropertiesChange as dO, type SiteCreated as dP, type SiteCloned as dQ, type BaseEventMetadata as dR, type EventMetadata as dS, type ServicesQueryResult as dT, type ServiceSearchSpec as dU, type ServiceTypeWithLiterals as dV, type RateTypeWithLiterals as dW, type LocationTypeWithLiterals as dX, type WebhookIdentityTypeWithLiterals as dY, type V2RequestedFieldsWithLiterals as dZ, type SortOrderWithLiterals as d_, type RemovedLocationSessionsAction as da, type RemovedLocationSessionsActionActionOptionsOneOf as db, type MoveToNewLocationsOptions as dc, type EnablePricingPlansForServiceRequest as dd, type InvalidPricingPlan as de, type DisablePricingPlansForServiceRequest as df, type SetCustomSlugRequest as dg, type ValidateSlugRequest as dh, type CloneServiceRequest as di, type CategoryNotification as dj, type Category as dk, type Empty as dl, type BenefitNotification as dm, type Benefit as dn, type EntryPass as dp, type Discount as dq, type DiscountDiscountOneOf as dr, type Behavior as ds, type BehaviorBehaviorOneOf as dt, type UserDomainInfoChangedEvent as du, type HtmlSitePublished as dv, type Page as dw, type SitePropertiesNotification as dx, type SitePropertiesEvent as dy, type Properties as dz, type BulkUpdateServicesByFilterOptions as e, type SortDirectionWithLiterals as e0, type MissingValuesWithLiterals as e1, type ScalarTypeWithLiterals as e2, type NestedAggregationTypeWithLiterals as e3, type IntervalWithLiterals as e4, type AggregationTypeWithLiterals as e5, type ModeWithLiterals as e6, type RequestedFieldsWithLiterals as e7, type ActionWithLiterals as e8, type InvalidSlugErrorWithLiterals as e9, queryLocations as eA, queryCategories as eB, setServiceLocations as eC, enablePricingPlansForService as eD, disablePricingPlansForService as eE, setCustomSlug as eF, validateSlug as eG, cloneService as eH, 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, onServiceCreated as ej, onServiceDeleted as ek, onServiceUpdated as el, createService as em, bulkCreateServices as en, getService as eo, updateService as ep, bulkUpdateServices as eq, bulkUpdateServicesByFilter as er, deleteService as es, bulkDeleteServices as et, bulkDeleteServicesByFilter as eu, queryServices as ev, type CommonSearchWithEntityContext as ew, queryPolicies as ex, queryBookingForms as ey, countServices as ez, type BulkUpdateServicesByFilterResponse as f, 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 };
4971
+ export { type SetCustomSlugResponse as $, type AddOnGroup as A, type BulkCreateServicesOptions as B, type CreateAddOnGroupOptions as C, type DeleteAddOnGroupOptions as D, type QueryBookingFormsOptions as E, type QueryBookingFormsResponse as F, type QueryBookingFormsApplicationErrors as G, type CountServicesOptions as H, type CountServicesResponse as I, type QueryLocationsOptions as J, type QueryLocationsResponse as K, type ListAddOnGroupsByServiceIdOptions as L, type QueryCategoriesOptions as M, type QueryCategoriesResponse as N, type Location as O, type SetServiceLocationsOptions as P, type QueryPoliciesResponse as Q, type SetServiceLocationsResponse as R, type SetAddOnsForGroupOptions as S, type EnablePricingPlansForServiceResponse as T, type UpdateAddOnGroupOptions as U, type ValidateAddOnsSelectionOptions as V, type EnablePricingPlansForServiceApplicationErrors as W, type DisablePricingPlansForServiceOptions as X, type DisablePricingPlansForServiceResponse as Y, type DisablePricingPlansForServiceApplicationErrors as Z, type SetCustomSlugOptions as _, type CreateAddOnGroupResponse as a, type WaitlistPolicy as a$, type SetCustomSlugApplicationErrors as a0, type SetCustomSlugValidationErrors as a1, type ValidateSlugOptions as a2, type ValidateSlugResponse as a3, type CloneServiceResponse as a4, type ServiceCreatedEnvelope as a5, type ServiceDeletedEnvelope as a6, type ServiceUpdatedEnvelope as a7, ServiceType as a8, RateType as a9, type MediaItemItemOneOf as aA, type V2Category as aB, type Form as aC, type FormSettings as aD, type Payment as aE, type PaymentRateOneOf as aF, type FixedPayment as aG, type Money as aH, type CustomPayment as aI, type VariedPayment as aJ, type PaymentOptions as aK, type OnlineBooking as aL, type Conferencing as aM, type LocationOptionsOneOf as aN, type CommonAddress as aO, type CommonAddressStreetOneOf as aP, type StreetAddress as aQ, type AddressLocation as aR, type BusinessLocationOptions as aS, type CustomLocationOptions as aT, type BookingPolicy as aU, type PolicyDescription as aV, type LimitEarlyBookingPolicy as aW, type LimitLateBookingPolicy as aX, type BookAfterStartPolicy as aY, type CancellationPolicy as aZ, type ReschedulePolicy as a_, LocationType as aa, WebhookIdentityType as ab, V2RequestedFields as ac, SortOrder as ad, SortType as ae, SortDirection as af, MissingValues as ag, ScalarType as ah, NestedAggregationType as ai, Interval as aj, AggregationType as ak, Mode as al, RequestedFields as am, Action as an, InvalidSlugError as ao, CloneErrors as ap, Status as aq, CategoryNotificationEvent as ar, BenefitType as as, Event as at, CrudType as au, PlacementType as av, DayOfWeek as aw, ResolutionMethod as ax, type Media as ay, type MediaItem as az, type DeleteAddOnGroupApplicationErrors as b, type BulkActionMetadata as b$, type ParticipantsPolicy as b0, type ResourcesPolicy as b1, type CancellationFeePolicy as b2, type CancellationWindow as b3, type CancellationWindowFeeOneOf as b4, type SaveCreditCardPolicy as b5, type Schedule as b6, type AvailabilityConstraints as b7, type Duration as b8, type StaffMember as b9, type RestoreInfo as bA, type EntityUpdatedEvent as bB, type EntityDeletedEvent as bC, type ActionEvent as bD, type MessageEnvelope as bE, type IdentificationData as bF, type IdentificationDataIdOneOf as bG, type CreateAddOnGroupRequest as bH, type DeleteAddOnGroupRequest as bI, type DeleteAddOnGroupResponse as bJ, type UpdateAddOnGroupRequest as bK, type ListAddOnGroupsByServiceIdRequest as bL, type AddOn as bM, type AddOnAddOnInfoOneOf as bN, type AddOnGroupDetail as bO, type SetAddOnsForGroupRequest as bP, type ValidateAddOnsSelectionRequest as bQ, type ValidationResult as bR, type CreateServiceRequest as bS, type CreateServiceResponse as bT, type ValidateServiceRequest as bU, type ValidateServiceResponse as bV, type FieldViolation as bW, type BulkCreateServicesRequest as bX, type BulkServiceResult as bY, type ItemMetadata as bZ, type ApplicationError as b_, type StaffMediaItem as ba, type StaffMediaItemItemOneOf as bb, type StaffMemberDetails as bc, type ResourceGroup as bd, type ResourceIds as be, type ServiceResource as bf, type ServiceResourceSelectionOneOf as bg, type ResourceType as bh, type Slug as bi, type URLs as bj, type ExtendedFields as bk, type SeoSchema as bl, type Keyword as bm, type Tag as bn, type Settings as bo, type AddOnDetails as bp, type ReindexMessage as bq, type ReindexMessageActionOneOf as br, type Upsert as bs, type Delete as bt, type Schema as bu, type SetCustomSlugEvent as bv, type ServicesUrlsChanged as bw, type DomainEvent as bx, type DomainEventBodyOneOf as by, type EntityCreatedEvent as bz, type UpdateAddOnGroupResponse as c, type AggregationResults as c$, type GetServiceRequest as c0, type GetServiceResponse as c1, type GetServiceAvailabilityConstraintsRequest as c2, type GetServiceAvailabilityConstraintsResponse as c3, type ServiceAvailabilityConstraints as c4, type SplitInterval as c5, type UpdateServiceRequest as c6, type UpdateServiceResponse as c7, type BulkUpdateServicesRequest as c8, type MaskedService as c9, type DateHistogramAggregation as cA, type NestedAggregationItem as cB, type NestedAggregationItemKindOneOf as cC, type NestedAggregation as cD, type GroupByAggregation as cE, type GroupByAggregationKindOneOf as cF, type SearchDetails as cG, type CursorPagingMetadata as cH, type AggregationData as cI, type ValueAggregationResult as cJ, type RangeAggregationResult as cK, type NestedAggregationResults as cL, type NestedAggregationResultsResultOneOf as cM, type ValueResults as cN, type RangeResults as cO, type AggregationResultsScalarResult as cP, type NestedValueAggregationResult as cQ, type ValueResult as cR, type RangeResult as cS, type ScalarResult as cT, type NestedResultValue as cU, type NestedResultValueResultOneOf as cV, type Results as cW, type DateHistogramResult as cX, type GroupByValueResults as cY, type DateHistogramResults as cZ, type NestedResults as c_, type BulkUpdateServicesByFilterRequest as ca, type DeleteServiceRequest as cb, type ParticipantNotification as cc, type DeleteServiceResponse as cd, type BulkDeleteServicesRequest as ce, type BulkDeleteServicesByFilterRequest as cf, type QueryServicesRequest as cg, type QueryV2 as ch, type QueryV2PagingMethodOneOf as ci, type Sorting as cj, type Paging as ck, type CursorPaging as cl, type QueryServicesResponse as cm, type PagingMetadataV2 as cn, type Cursors as co, type SearchServicesRequest as cp, type CursorSearch as cq, type CursorSearchPagingMethodOneOf as cr, type Aggregation as cs, type AggregationKindOneOf as ct, type RangeBucket as cu, type IncludeMissingValuesOptions as cv, type ValueAggregation as cw, type ValueAggregationOptionsOneOf as cx, type RangeAggregation as cy, type ScalarAggregation as cz, type UpdateAddOnGroupApplicationErrors as d, type EventMetadata as d$, type AggregationResultsResultOneOf as d0, type QueryPoliciesRequest as d1, type CursorQueryPagingMethodOneOf as d2, type BookingPolicyWithServices as d3, type QueryBookingFormsRequest as d4, type BookingForm as d5, type FormDetails as d6, type ConnectedService as d7, type CountServicesRequest as d8, type QueryLocationsRequest as d9, type DiscountDiscountOneOf as dA, type Behavior as dB, type BehaviorBehaviorOneOf as dC, type UserDomainInfoChangedEvent as dD, type HtmlSitePublished as dE, type Page as dF, type SitePropertiesNotification as dG, type SitePropertiesEvent as dH, type Properties as dI, type Categories as dJ, type Locale as dK, type Address as dL, type AddressHint as dM, type GeoCoordinates as dN, type BusinessSchedule as dO, type TimePeriod as dP, type SpecialHourPeriod as dQ, type Multilingual as dR, type SupportedLanguage as dS, type ConsentPolicy as dT, type Translation as dU, type ChangeContext as dV, type ChangeContextPayloadOneOf as dW, type PropertiesChange as dX, type SiteCreated as dY, type SiteCloned as dZ, type BaseEventMetadata as d_, type QueryLocationsFilter as da, type BusinessLocations as db, type CustomLocations as dc, type CustomerLocations as dd, type QueryCategoriesRequest as de, type QueryCategoriesFilter as df, type QueryServicesMultiLanguageRequest as dg, type QueryServicesMultiLanguageResponse as dh, type SetServiceLocationsRequest as di, type RemovedLocationSessionsAction as dj, type RemovedLocationSessionsActionActionOptionsOneOf as dk, type MoveToNewLocationsOptions as dl, type EnablePricingPlansForServiceRequest as dm, type InvalidPricingPlan as dn, type DisablePricingPlansForServiceRequest as dp, type SetCustomSlugRequest as dq, type ValidateSlugRequest as dr, type CloneServiceRequest as ds, type CategoryNotification as dt, type Category as du, type Empty as dv, type BenefitNotification as dw, type Benefit as dx, type EntryPass as dy, type Discount as dz, type ListAddOnGroupsByServiceIdResponse as e, type ServicesQueryResult as e0, type ServiceSearchSpec as e1, type ServiceTypeWithLiterals as e2, type RateTypeWithLiterals as e3, type LocationTypeWithLiterals as e4, type WebhookIdentityTypeWithLiterals as e5, type V2RequestedFieldsWithLiterals as e6, type SortOrderWithLiterals as e7, type SortTypeWithLiterals as e8, type SortDirectionWithLiterals as e9, validateAddOnsSelection as eA, createService as eB, bulkCreateServices as eC, getService as eD, updateService as eE, bulkUpdateServices as eF, bulkUpdateServicesByFilter as eG, deleteService as eH, bulkDeleteServices as eI, bulkDeleteServicesByFilter as eJ, queryServices as eK, type CommonSearchWithEntityContext as eL, queryPolicies as eM, queryBookingForms as eN, countServices as eO, queryLocations as eP, queryCategories as eQ, setServiceLocations as eR, enablePricingPlansForService as eS, disablePricingPlansForService as eT, setCustomSlug as eU, validateSlug as eV, cloneService as eW, type MissingValuesWithLiterals as ea, type ScalarTypeWithLiterals as eb, type NestedAggregationTypeWithLiterals as ec, type IntervalWithLiterals as ed, type AggregationTypeWithLiterals as ee, type ModeWithLiterals as ef, type RequestedFieldsWithLiterals as eg, type ActionWithLiterals as eh, type InvalidSlugErrorWithLiterals as ei, type CloneErrorsWithLiterals as ej, type StatusWithLiterals as ek, type CategoryNotificationEventWithLiterals as el, type BenefitTypeWithLiterals as em, type EventWithLiterals as en, type CrudTypeWithLiterals as eo, type PlacementTypeWithLiterals as ep, type DayOfWeekWithLiterals as eq, type ResolutionMethodWithLiterals as er, onServiceCreated as es, onServiceDeleted as et, onServiceUpdated as eu, createAddOnGroup as ev, deleteAddOnGroup as ew, updateAddOnGroup as ex, listAddOnGroupsByServiceId as ey, setAddOnsForGroup as ez, type SetAddOnsForGroupResponse as f, type SetAddOnsForGroupApplicationErrors as g, type ValidateAddOnsSelectionResponse as h, type Service as i, type CreateServiceValidationErrors as j, type BulkCreateServicesResponse as k, type UpdateService as l, type UpdateServiceValidationErrors as m, type BulkUpdateServicesOptions as n, type BulkUpdateServicesResponse as o, type BulkUpdateServicesByFilterOptions as p, type BulkUpdateServicesByFilterResponse as q, type DeleteServiceOptions as r, type BulkDeleteServicesOptions as s, type BulkDeleteServicesResponse as t, type BulkDeleteServicesByFilterOptions as u, type BulkDeleteServicesByFilterResponse as v, type ServicesQueryBuilder as w, type ServiceSearch as x, type SearchServicesResponse as y, type CursorQuery as z };