@wix/auto_sdk_bookings_services 1.0.131 → 1.0.133

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-CyRaI-DD.d.ts → bookings-services-v2-service-services.universal-BdI6PnqP.d.ts} +285 -271
  2. package/build/cjs/index.d.ts +60 -60
  3. package/build/cjs/index.js +312 -312
  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 +275 -275
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +138 -138
  9. package/build/cjs/meta.js +200 -200
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-CyRaI-DD.d.mts → bookings-services-v2-service-services.universal-BdI6PnqP.d.mts} +285 -271
  12. package/build/es/index.d.mts +60 -60
  13. package/build/es/index.mjs +312 -312
  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 +275 -275
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +138 -138
  19. package/build/es/meta.mjs +200 -200
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-CyRaI-DD.d.ts → bookings-services-v2-service-services.universal-BdI6PnqP.d.ts} +285 -271
  22. package/build/internal/cjs/index.d.ts +60 -60
  23. package/build/internal/cjs/index.js +312 -312
  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 +275 -275
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +138 -138
  29. package/build/internal/cjs/meta.js +200 -200
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-CyRaI-DD.d.mts → bookings-services-v2-service-services.universal-BdI6PnqP.d.mts} +285 -271
  32. package/build/internal/es/index.d.mts +60 -60
  33. package/build/internal/es/index.mjs +312 -312
  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 +275 -275
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +138 -138
  39. package/build/internal/es/meta.mjs +200 -200
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -950,6 +950,20 @@ interface CustomOptions {
950
950
  */
951
951
  appId?: string;
952
952
  }
953
+ /** Policy for integrating with Intake form. Stores which form to use and when to present it. */
954
+ interface IntakeFormPolicy {
955
+ /**
956
+ * ID of the form used as an intake form for the service.
957
+ * @format GUID
958
+ */
959
+ formId?: string | null;
960
+ /**
961
+ * Whether the waiver must be completed before bookings.
962
+ * If `false`, the waiver is handled after bookings.
963
+ * Default: `false`
964
+ */
965
+ requireBeforeBook?: boolean;
966
+ }
953
967
  interface Schedule {
954
968
  /**
955
969
  * ID of the *schedule*
@@ -1440,6 +1454,138 @@ declare enum WebhookIdentityType {
1440
1454
  }
1441
1455
  /** @enumType */
1442
1456
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1457
+ interface CreateAddOnGroupRequest {
1458
+ /** AddOnGroup to create. */
1459
+ addOnGroup: AddOnGroup;
1460
+ /**
1461
+ * ID of the service to create the AddOnGroup for.
1462
+ * @format GUID
1463
+ */
1464
+ serviceId?: string | null;
1465
+ }
1466
+ interface CreateAddOnGroupResponse {
1467
+ /** Created AddOnGroup. */
1468
+ addOnGroup?: AddOnGroup;
1469
+ }
1470
+ interface DeleteAddOnGroupRequest {
1471
+ /**
1472
+ * ID of the AddOnGroup to delete.
1473
+ * @format GUID
1474
+ */
1475
+ addOnGroupId: string | null;
1476
+ /**
1477
+ * ID of the service from which to delete the AddOnGroup.
1478
+ * @format GUID
1479
+ */
1480
+ serviceId: string | null;
1481
+ }
1482
+ interface DeleteAddOnGroupResponse {
1483
+ }
1484
+ interface UpdateAddOnGroupRequest {
1485
+ /** AddOnGroup to update. */
1486
+ addOnGroup: AddOnGroup;
1487
+ /**
1488
+ * ID of the service that contains the AddOnGroup.
1489
+ * @format GUID
1490
+ */
1491
+ serviceId: string | null;
1492
+ }
1493
+ interface UpdateAddOnGroupResponse {
1494
+ /** Updated AddOnGroup */
1495
+ addOnGroup?: AddOnGroup;
1496
+ }
1497
+ interface ListAddOnGroupsByServiceIdRequest {
1498
+ /**
1499
+ * ID of the service to retrieve AddOnGroups for.
1500
+ * @format GUID
1501
+ */
1502
+ serviceId: string | null;
1503
+ /**
1504
+ * List of group ids to return. If not provided, all groups are returned.
1505
+ * @format GUID
1506
+ * @maxSize 3
1507
+ */
1508
+ groupIds?: string[] | null;
1509
+ }
1510
+ interface ListAddOnGroupsByServiceIdResponse {
1511
+ /**
1512
+ * List of group IDs and their linked AddOns.
1513
+ * @maxSize 3
1514
+ */
1515
+ addOnGroupsDetails?: AddOnGroupDetail[];
1516
+ }
1517
+ interface AddOn extends AddOnAddOnInfoOneOf {
1518
+ /** The AddOn description. */
1519
+ durationInMinutes?: number;
1520
+ /** The AddOn max quantity. */
1521
+ maxQuantity?: number;
1522
+ /**
1523
+ * The AddOn ID.
1524
+ * @format GUID
1525
+ */
1526
+ addOnId?: string | null;
1527
+ /**
1528
+ * The AddOn name.
1529
+ * @maxLength 100
1530
+ */
1531
+ name?: string | null;
1532
+ /** The AddOn price. */
1533
+ price?: Money;
1534
+ }
1535
+ /** @oneof */
1536
+ interface AddOnAddOnInfoOneOf {
1537
+ /** The AddOn description. */
1538
+ durationInMinutes?: number;
1539
+ /** The AddOn max quantity. */
1540
+ maxQuantity?: number;
1541
+ }
1542
+ interface AddOnGroupDetail {
1543
+ /**
1544
+ * The group ID.
1545
+ * @format GUID
1546
+ */
1547
+ groupId?: string | null;
1548
+ /** The group max number of AddOns. */
1549
+ maxNumberOfAddOns?: number | null;
1550
+ /**
1551
+ * The group name.
1552
+ * @maxLength 100
1553
+ */
1554
+ groupName?: string | null;
1555
+ /**
1556
+ * The AddOns information linked to the group.
1557
+ * @maxSize 7
1558
+ */
1559
+ addOns?: AddOn[];
1560
+ /**
1561
+ * The group prompt.
1562
+ * @maxLength 200
1563
+ */
1564
+ prompt?: string | null;
1565
+ }
1566
+ interface SetAddOnsForGroupRequest {
1567
+ /**
1568
+ * The service ID to set AddOns for.
1569
+ * @format GUID
1570
+ */
1571
+ serviceId: string | null;
1572
+ /**
1573
+ * The group ID to set AddOns for.
1574
+ * @format GUID
1575
+ */
1576
+ groupId: string | null;
1577
+ /**
1578
+ * The IDs of AddOns to set.
1579
+ * @format GUID
1580
+ * @minSize 1
1581
+ * @maxSize 7
1582
+ */
1583
+ addOnIds: string[] | null;
1584
+ }
1585
+ interface SetAddOnsForGroupResponse {
1586
+ /** The updated AddOnGroup. */
1587
+ addOnGroup?: AddOnGroup;
1588
+ }
1443
1589
  interface CreateServiceRequest {
1444
1590
  /** Service to create. */
1445
1591
  service: Service;
@@ -3348,138 +3494,24 @@ interface SiteCloned {
3348
3494
  /** Origin site id. */
3349
3495
  originMetaSiteId?: string;
3350
3496
  }
3351
- interface CreateAddOnGroupRequest {
3352
- /** AddOnGroup to create. */
3353
- addOnGroup: AddOnGroup;
3354
- /**
3355
- * ID of the service to create the AddOnGroup for.
3356
- * @format GUID
3357
- */
3358
- serviceId?: string | null;
3359
- }
3360
- interface CreateAddOnGroupResponse {
3361
- /** Created AddOnGroup. */
3362
- addOnGroup?: AddOnGroup;
3363
- }
3364
- interface DeleteAddOnGroupRequest {
3365
- /**
3366
- * ID of the AddOnGroup to delete.
3367
- * @format GUID
3368
- */
3369
- addOnGroupId: string | null;
3370
- /**
3371
- * ID of the service from which to delete the AddOnGroup.
3372
- * @format GUID
3373
- */
3374
- serviceId: string | null;
3375
- }
3376
- interface DeleteAddOnGroupResponse {
3377
- }
3378
- interface UpdateAddOnGroupRequest {
3379
- /** AddOnGroup to update. */
3380
- addOnGroup: AddOnGroup;
3381
- /**
3382
- * ID of the service that contains the AddOnGroup.
3383
- * @format GUID
3384
- */
3385
- serviceId: string | null;
3386
- }
3387
- interface UpdateAddOnGroupResponse {
3388
- /** Updated AddOnGroup */
3389
- addOnGroup?: AddOnGroup;
3390
- }
3391
- interface ListAddOnGroupsByServiceIdRequest {
3392
- /**
3393
- * ID of the service to retrieve AddOnGroups for.
3394
- * @format GUID
3395
- */
3396
- serviceId: string | null;
3397
- /**
3398
- * List of group ids to return. If not provided, all groups are returned.
3399
- * @format GUID
3400
- * @maxSize 3
3401
- */
3402
- groupIds?: string[] | null;
3403
- }
3404
- interface ListAddOnGroupsByServiceIdResponse {
3405
- /**
3406
- * List of group IDs and their linked AddOns.
3407
- * @maxSize 3
3408
- */
3409
- addOnGroupsDetails?: AddOnGroupDetail[];
3410
- }
3411
- interface AddOn extends AddOnAddOnInfoOneOf {
3412
- /** The AddOn description. */
3413
- durationInMinutes?: number;
3414
- /** The AddOn max quantity. */
3415
- maxQuantity?: number;
3416
- /**
3417
- * The AddOn ID.
3418
- * @format GUID
3419
- */
3420
- addOnId?: string | null;
3421
- /**
3422
- * The AddOn name.
3423
- * @maxLength 100
3424
- */
3425
- name?: string | null;
3426
- /** The AddOn price. */
3427
- price?: Money;
3428
- }
3429
- /** @oneof */
3430
- interface AddOnAddOnInfoOneOf {
3431
- /** The AddOn description. */
3432
- durationInMinutes?: number;
3433
- /** The AddOn max quantity. */
3434
- maxQuantity?: number;
3435
- }
3436
- interface AddOnGroupDetail {
3437
- /**
3438
- * The group ID.
3439
- * @format GUID
3440
- */
3441
- groupId?: string | null;
3442
- /** The group max number of AddOns. */
3443
- maxNumberOfAddOns?: number | null;
3444
- /**
3445
- * The group name.
3446
- * @maxLength 100
3447
- */
3448
- groupName?: string | null;
3449
- /**
3450
- * The AddOns information linked to the group.
3451
- * @maxSize 7
3452
- */
3453
- addOns?: AddOn[];
3454
- /**
3455
- * The group prompt.
3456
- * @maxLength 200
3457
- */
3458
- prompt?: string | null;
3459
- }
3460
- interface SetAddOnsForGroupRequest {
3461
- /**
3462
- * The service ID to set AddOns for.
3463
- * @format GUID
3464
- */
3465
- serviceId: string | null;
3466
- /**
3467
- * The group ID to set AddOns for.
3468
- * @format GUID
3469
- */
3470
- groupId: string | null;
3471
- /**
3472
- * The IDs of AddOns to set.
3473
- * @format GUID
3474
- * @minSize 1
3475
- * @maxSize 7
3476
- */
3477
- addOnIds: string[] | null;
3478
- }
3479
- interface SetAddOnsForGroupResponse {
3480
- /** The updated AddOnGroup. */
3481
- addOnGroup?: AddOnGroup;
3482
- }
3497
+ /** @docsIgnore */
3498
+ type DeleteAddOnGroupApplicationErrors = {
3499
+ code?: 'GROUP_NOT_ON_SERVICE';
3500
+ description?: string;
3501
+ data?: Record<string, any>;
3502
+ };
3503
+ /** @docsIgnore */
3504
+ type UpdateAddOnGroupApplicationErrors = {
3505
+ code?: 'GROUP_NOT_ON_SERVICE';
3506
+ description?: string;
3507
+ data?: Record<string, any>;
3508
+ };
3509
+ /** @docsIgnore */
3510
+ type SetAddOnsForGroupApplicationErrors = {
3511
+ code?: 'ADD_ON_GROUP_NOT_FOUND';
3512
+ description?: string;
3513
+ data?: Record<string, any>;
3514
+ };
3483
3515
  /** @docsIgnore */
3484
3516
  type CreateServiceValidationErrors = {
3485
3517
  ruleName?: 'INVALID_FORM';
@@ -3600,24 +3632,6 @@ type SetCustomSlugApplicationErrors = {
3600
3632
  type SetCustomSlugValidationErrors = {
3601
3633
  ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
3602
3634
  };
3603
- /** @docsIgnore */
3604
- type DeleteAddOnGroupApplicationErrors = {
3605
- code?: 'GROUP_NOT_ON_SERVICE';
3606
- description?: string;
3607
- data?: Record<string, any>;
3608
- };
3609
- /** @docsIgnore */
3610
- type UpdateAddOnGroupApplicationErrors = {
3611
- code?: 'GROUP_NOT_ON_SERVICE';
3612
- description?: string;
3613
- data?: Record<string, any>;
3614
- };
3615
- /** @docsIgnore */
3616
- type SetAddOnsForGroupApplicationErrors = {
3617
- code?: 'ADD_ON_GROUP_NOT_FOUND';
3618
- description?: string;
3619
- data?: Record<string, any>;
3620
- };
3621
3635
  interface BaseEventMetadata {
3622
3636
  /**
3623
3637
  * App instance ID.
@@ -3740,6 +3754,126 @@ interface ServiceUpdatedEnvelope {
3740
3754
  * @slug updated
3741
3755
  */
3742
3756
  declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
3757
+ /**
3758
+ * Create a new AddOns group.
3759
+ * An AddOns group defines a collection of AddOns that can be linked to a Service,
3760
+ * with constraints such as minimum and maximum selections.
3761
+ * @param addOnGroup - AddOnGroup to create.
3762
+ * @public
3763
+ * @documentationMaturity preview
3764
+ * @requiredField addOnGroup
3765
+ * @requiredField addOnGroup.name
3766
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3767
+ * @applicableIdentity APP
3768
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
3769
+ */
3770
+ declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
3771
+ interface CreateAddOnGroupOptions {
3772
+ /**
3773
+ * ID of the service to create the AddOnGroup for.
3774
+ * @format GUID
3775
+ */
3776
+ serviceId?: string | null;
3777
+ }
3778
+ /**
3779
+ * Delete an existing AddOns group.
3780
+ * This will remove the group and unlink all associated AddOns.
3781
+ * @param addOnGroupId - ID of the AddOnGroup to delete.
3782
+ * @public
3783
+ * @documentationMaturity preview
3784
+ * @requiredField addOnGroupId
3785
+ * @requiredField options
3786
+ * @requiredField options.serviceId
3787
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3788
+ * @applicableIdentity APP
3789
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
3790
+ */
3791
+ declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
3792
+ __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
3793
+ }>;
3794
+ interface DeleteAddOnGroupOptions {
3795
+ /**
3796
+ * ID of the service from which to delete the AddOnGroup.
3797
+ * @format GUID
3798
+ */
3799
+ serviceId: string | null;
3800
+ }
3801
+ /**
3802
+ * Update an existing AddOns group.
3803
+ * This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
3804
+ * @param addOnGroup - AddOnGroup to update.
3805
+ * @public
3806
+ * @documentationMaturity preview
3807
+ * @requiredField addOnGroup
3808
+ * @requiredField addOnGroup._id
3809
+ * @requiredField options
3810
+ * @requiredField options.serviceId
3811
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
3812
+ * @applicableIdentity APP
3813
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
3814
+ */
3815
+ declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
3816
+ __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
3817
+ }>;
3818
+ interface UpdateAddOnGroupOptions {
3819
+ /**
3820
+ * ID of the service that contains the AddOnGroup.
3821
+ * @format GUID
3822
+ */
3823
+ serviceId: string | null;
3824
+ }
3825
+ /**
3826
+ * Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
3827
+ * If the group_id is specified, only the AddOns for the specified group will be returned,
3828
+ * otherwise all groups will be returned.
3829
+ * @param serviceId - ID of the service to retrieve AddOnGroups for.
3830
+ * @public
3831
+ * @documentationMaturity preview
3832
+ * @requiredField serviceId
3833
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
3834
+ * @applicableIdentity APP
3835
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
3836
+ */
3837
+ declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
3838
+ interface ListAddOnGroupsByServiceIdOptions {
3839
+ /**
3840
+ * List of group ids to return. If not provided, all groups are returned.
3841
+ * @format GUID
3842
+ * @maxSize 3
3843
+ */
3844
+ groupIds?: string[] | null;
3845
+ }
3846
+ /**
3847
+ * Sets the AddOns for a specific group.
3848
+ * The order of the AddOns in the list will be used to determine their display order.
3849
+ * @param serviceId - The service ID to set AddOns for.
3850
+ * @public
3851
+ * @documentationMaturity preview
3852
+ * @requiredField options
3853
+ * @requiredField options.addOnIds
3854
+ * @requiredField options.groupId
3855
+ * @requiredField serviceId
3856
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
3857
+ * @applicableIdentity APP
3858
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
3859
+ */
3860
+ declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
3861
+ __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
3862
+ }>;
3863
+ interface SetAddOnsForGroupOptions {
3864
+ /**
3865
+ * The group ID to set AddOns for.
3866
+ * @format GUID
3867
+ */
3868
+ groupId: string | null;
3869
+ /**
3870
+ * The IDs of AddOns to set.
3871
+ * @format GUID
3872
+ * @minSize 1
3873
+ * @maxSize 7
3874
+ */
3875
+ addOnIds: string[] | null;
3876
+ }
3743
3877
  /**
3744
3878
  * Creates a service.
3745
3879
  *
@@ -4877,125 +5011,5 @@ interface ValidateSlugOptions {
4877
5011
  * @fqn wix.bookings.services.v2.ServicesService.CloneService
4878
5012
  */
4879
5013
  declare function cloneService(sourceServiceId: string): Promise<NonNullablePaths<CloneServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.taxableAddress.taxableAddressType` | `errors`, 7>>;
4880
- /**
4881
- * Create a new AddOns group.
4882
- * An AddOns group defines a collection of AddOns that can be linked to a Service,
4883
- * with constraints such as minimum and maximum selections.
4884
- * @param addOnGroup - AddOnGroup to create.
4885
- * @public
4886
- * @documentationMaturity preview
4887
- * @requiredField addOnGroup
4888
- * @requiredField addOnGroup.name
4889
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4890
- * @applicableIdentity APP
4891
- * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
4892
- */
4893
- declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
4894
- interface CreateAddOnGroupOptions {
4895
- /**
4896
- * ID of the service to create the AddOnGroup for.
4897
- * @format GUID
4898
- */
4899
- serviceId?: string | null;
4900
- }
4901
- /**
4902
- * Delete an existing AddOns group.
4903
- * This will remove the group and unlink all associated AddOns.
4904
- * @param addOnGroupId - ID of the AddOnGroup to delete.
4905
- * @public
4906
- * @documentationMaturity preview
4907
- * @requiredField addOnGroupId
4908
- * @requiredField options
4909
- * @requiredField options.serviceId
4910
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4911
- * @applicableIdentity APP
4912
- * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
4913
- */
4914
- declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
4915
- __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
4916
- }>;
4917
- interface DeleteAddOnGroupOptions {
4918
- /**
4919
- * ID of the service from which to delete the AddOnGroup.
4920
- * @format GUID
4921
- */
4922
- serviceId: string | null;
4923
- }
4924
- /**
4925
- * Update an existing AddOns group.
4926
- * This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
4927
- * @param addOnGroup - AddOnGroup to update.
4928
- * @public
4929
- * @documentationMaturity preview
4930
- * @requiredField addOnGroup
4931
- * @requiredField addOnGroup._id
4932
- * @requiredField options
4933
- * @requiredField options.serviceId
4934
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
4935
- * @applicableIdentity APP
4936
- * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
4937
- */
4938
- declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
4939
- __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
4940
- }>;
4941
- interface UpdateAddOnGroupOptions {
4942
- /**
4943
- * ID of the service that contains the AddOnGroup.
4944
- * @format GUID
4945
- */
4946
- serviceId: string | null;
4947
- }
4948
- /**
4949
- * Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
4950
- * If the group_id is specified, only the AddOns for the specified group will be returned,
4951
- * otherwise all groups will be returned.
4952
- * @param serviceId - ID of the service to retrieve AddOnGroups for.
4953
- * @public
4954
- * @documentationMaturity preview
4955
- * @requiredField serviceId
4956
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
4957
- * @applicableIdentity APP
4958
- * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
4959
- */
4960
- declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
4961
- interface ListAddOnGroupsByServiceIdOptions {
4962
- /**
4963
- * List of group ids to return. If not provided, all groups are returned.
4964
- * @format GUID
4965
- * @maxSize 3
4966
- */
4967
- groupIds?: string[] | null;
4968
- }
4969
- /**
4970
- * Sets the AddOns for a specific group.
4971
- * The order of the AddOns in the list will be used to determine their display order.
4972
- * @param serviceId - The service ID to set AddOns for.
4973
- * @public
4974
- * @documentationMaturity preview
4975
- * @requiredField options
4976
- * @requiredField options.addOnIds
4977
- * @requiredField options.groupId
4978
- * @requiredField serviceId
4979
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
4980
- * @applicableIdentity APP
4981
- * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
4982
- */
4983
- declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
4984
- __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
4985
- }>;
4986
- interface SetAddOnsForGroupOptions {
4987
- /**
4988
- * The group ID to set AddOns for.
4989
- * @format GUID
4990
- */
4991
- groupId: string | null;
4992
- /**
4993
- * The IDs of AddOns to set.
4994
- * @format GUID
4995
- * @minSize 1
4996
- * @maxSize 7
4997
- */
4998
- addOnIds: string[] | null;
4999
- }
5000
5014
 
5001
- export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceOptions as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceResponse as F, type DisablePricingPlansForServiceApplicationErrors as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type Location as L, type ValidateSlugResponse as M, type CloneServiceResponse as N, type AddOnGroup as O, type CreateAddOnGroupOptions as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupResponse as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type CancellationPolicy as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, type Media as aA, type MediaItem as aB, type MediaItemItemOneOf as aC, type V2Category as aD, type Form as aE, type FormSettings as aF, type Payment as aG, type PaymentRateOneOf as aH, type FixedPayment as aI, type Money as aJ, type CustomPayment as aK, type VariedPayment as aL, type PaymentOptions as aM, type OnlineBooking as aN, type Conferencing as aO, type LocationOptionsOneOf as aP, type CommonAddress as aQ, type CommonAddressStreetOneOf as aR, type StreetAddress as aS, type AddressLocation as aT, type BusinessLocationOptions as aU, type CustomLocationOptions as aV, type BookingPolicy as aW, type PolicyDescription as aX, type LimitEarlyBookingPolicy as aY, type LimitLateBookingPolicy as aZ, type BookAfterStartPolicy as a_, RankingOrder as aa, SortingMethodType as ab, TaxableAddressType as ac, WebhookIdentityType as ad, V2RequestedFields as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, Mode as an, RequestedFields as ao, Action as ap, InvalidSlugError as aq, CloneErrors as ar, Status as as, CategoryNotificationEvent as at, BenefitType as au, Event as av, CrudType as aw, PlacementType as ax, DayOfWeek as ay, ResolutionMethod as az, type UpdateServiceValidationErrors as b, type GetServiceAvailabilityConstraintsResponse as b$, type ReschedulePolicy as b0, type WaitlistPolicy as b1, type ParticipantsPolicy as b2, type ResourcesPolicy as b3, type CancellationFeePolicy as b4, type CancellationWindow as b5, type CancellationWindowFeeOneOf as b6, type SaveCreditCardPolicy as b7, type StaffSortingPolicy as b8, type StaffSortingPolicyOptionsOneOf as b9, type Delete as bA, type Schema as bB, type SetCustomSlugEvent as bC, type ServicesUrlsChanged as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type CreateServiceRequest as bO, type CreateServiceResponse as bP, type ValidateServiceRequest as bQ, type ValidateServiceResponse as bR, type FieldViolation as bS, type BulkCreateServicesRequest as bT, type BulkServiceResult as bU, type ItemMetadata as bV, type ApplicationError as bW, type BulkActionMetadata as bX, type GetServiceRequest as bY, type GetServiceResponse as bZ, type GetServiceAvailabilityConstraintsRequest as b_, type RankingOptions as ba, type CustomOptions as bb, type Schedule as bc, type AvailabilityConstraints as bd, type Duration as be, type StaffMember as bf, type StaffMediaItem as bg, type StaffMediaItemItemOneOf as bh, type StaffMemberDetails as bi, type ResourceGroup as bj, type ResourceIds as bk, type ServiceResource as bl, type ServiceResourceSelectionOneOf as bm, type ResourceType as bn, type Slug as bo, type URLs as bp, type ExtendedFields as bq, type SeoSchema as br, type Keyword as bs, type Tag as bt, type Settings as bu, type AddOnDetails as bv, type TaxableAddress as bw, type ReindexMessage as bx, type ReindexMessageActionOneOf as by, type Upsert as bz, type BulkUpdateServicesOptions as c, type BookingPolicyWithServices as c$, type ServiceAvailabilityConstraints as c0, type SplitInterval as c1, type UpdateServiceRequest as c2, type UpdateServiceResponse as c3, type BulkUpdateServicesRequest as c4, type MaskedService as c5, type BulkUpdateServicesByFilterRequest as c6, type DeleteServiceRequest as c7, type ParticipantNotification as c8, type DeleteServiceResponse as c9, type GroupByAggregation as cA, type GroupByAggregationKindOneOf as cB, type SearchDetails as cC, type CursorPagingMetadata as cD, type AggregationData as cE, type ValueAggregationResult as cF, type RangeAggregationResult as cG, type NestedAggregationResults as cH, type NestedAggregationResultsResultOneOf as cI, type ValueResults as cJ, type RangeResults as cK, type AggregationResultsScalarResult as cL, type NestedValueAggregationResult as cM, type ValueResult as cN, type RangeResult as cO, type ScalarResult as cP, type NestedResultValue as cQ, type NestedResultValueResultOneOf as cR, type Results as cS, type DateHistogramResult as cT, type GroupByValueResults as cU, type DateHistogramResults as cV, type NestedResults as cW, type AggregationResults as cX, type AggregationResultsResultOneOf as cY, type QueryPoliciesRequest as cZ, type CursorQueryPagingMethodOneOf as c_, type BulkDeleteServicesRequest as ca, type BulkDeleteServicesByFilterRequest as cb, type QueryServicesRequest as cc, type QueryV2 as cd, type QueryV2PagingMethodOneOf as ce, type Sorting as cf, type Paging as cg, type CursorPaging as ch, type QueryServicesResponse as ci, type PagingMetadataV2 as cj, type Cursors as ck, type SearchServicesRequest as cl, type CursorSearch as cm, type CursorSearchPagingMethodOneOf as cn, type Aggregation as co, type AggregationKindOneOf as cp, type RangeBucket as cq, type IncludeMissingValuesOptions as cr, type ValueAggregation as cs, type ValueAggregationOptionsOneOf as ct, type RangeAggregation as cu, type ScalarAggregation as cv, type DateHistogramAggregation as cw, type NestedAggregationItem as cx, type NestedAggregationItemKindOneOf as cy, type NestedAggregation as cz, type BulkUpdateServicesResponse as d, type AddOn as d$, type QueryBookingFormsRequest as d0, type BookingForm as d1, type FormDetails as d2, type ConnectedService as d3, type CountServicesRequest as d4, type QueryLocationsRequest as d5, type QueryLocationsFilter as d6, type BusinessLocations as d7, type CustomLocations as d8, type CustomerLocations as d9, type HtmlSitePublished as dA, type Page as dB, type SitePropertiesNotification as dC, type SitePropertiesEvent as dD, type Properties as dE, type Categories as dF, type Locale as dG, type Address as dH, type AddressHint as dI, type GeoCoordinates as dJ, type BusinessSchedule as dK, type TimePeriod as dL, type SpecialHourPeriod as dM, type Multilingual as dN, type SupportedLanguage as dO, type ConsentPolicy as dP, type Translation as dQ, type ChangeContext as dR, type ChangeContextPayloadOneOf as dS, type PropertiesChange as dT, type SiteCreated as dU, type SiteCloned as dV, type CreateAddOnGroupRequest as dW, type DeleteAddOnGroupRequest as dX, type DeleteAddOnGroupResponse as dY, type UpdateAddOnGroupRequest as dZ, type ListAddOnGroupsByServiceIdRequest as d_, type QueryCategoriesRequest as da, type QueryCategoriesFilter as db, type QueryServicesMultiLanguageRequest as dc, type QueryServicesMultiLanguageResponse as dd, type SetServiceLocationsRequest as de, type RemovedLocationSessionsAction as df, type RemovedLocationSessionsActionActionOptionsOneOf as dg, type MoveToNewLocationsOptions as dh, type EnablePricingPlansForServiceRequest as di, type InvalidPricingPlan as dj, type DisablePricingPlansForServiceRequest as dk, type SetCustomSlugRequest as dl, type ValidateSlugRequest as dm, type CloneServiceRequest as dn, type CategoryNotification as dp, type Category as dq, type Empty as dr, type BenefitNotification as ds, type Benefit as dt, type EntryPass as du, type Discount as dv, type DiscountDiscountOneOf as dw, type Behavior as dx, type BehaviorBehaviorOneOf as dy, type UserDomainInfoChangedEvent as dz, type BulkUpdateServicesByFilterOptions as e, deleteAddOnGroup as e$, type AddOnAddOnInfoOneOf as e0, type AddOnGroupDetail as e1, type SetAddOnsForGroupRequest as e2, type BaseEventMetadata as e3, type EventMetadata as e4, type ServicesQueryResult as e5, type ServiceSearchSpec as e6, type ServiceTypeWithLiterals as e7, type RateTypeWithLiterals as e8, type AddOnPaymentOptionsWithLiterals as e9, type ResolutionMethodWithLiterals as eA, type CommonSearchWithEntityContext as eB, onServiceCreated as eC, onServiceDeleted as eD, onServiceUpdated as eE, createService as eF, bulkCreateServices as eG, getService as eH, updateService as eI, bulkUpdateServices as eJ, bulkUpdateServicesByFilter as eK, deleteService as eL, bulkDeleteServices as eM, bulkDeleteServicesByFilter as eN, queryServices as eO, queryPolicies as eP, queryBookingForms as eQ, countServices as eR, queryLocations as eS, queryCategories as eT, setServiceLocations as eU, enablePricingPlansForService as eV, disablePricingPlansForService as eW, setCustomSlug as eX, validateSlug as eY, cloneService as eZ, createAddOnGroup as e_, type LocationTypeWithLiterals as ea, type RankingOrderWithLiterals as eb, type SortingMethodTypeWithLiterals as ec, type TaxableAddressTypeWithLiterals as ed, type WebhookIdentityTypeWithLiterals as ee, type V2RequestedFieldsWithLiterals as ef, type SortOrderWithLiterals as eg, type SortTypeWithLiterals as eh, type SortDirectionWithLiterals as ei, type MissingValuesWithLiterals as ej, type ScalarTypeWithLiterals as ek, type NestedAggregationTypeWithLiterals as el, type IntervalWithLiterals as em, type AggregationTypeWithLiterals as en, type ModeWithLiterals as eo, type RequestedFieldsWithLiterals as ep, type ActionWithLiterals as eq, type InvalidSlugErrorWithLiterals as er, type CloneErrorsWithLiterals as es, type StatusWithLiterals as et, type CategoryNotificationEventWithLiterals as eu, type BenefitTypeWithLiterals as ev, type EventWithLiterals as ew, type CrudTypeWithLiterals as ex, type PlacementTypeWithLiterals as ey, type DayOfWeekWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, updateAddOnGroup as f0, listAddOnGroupsByServiceId as f1, setAddOnsForGroup as f2, type BulkDeleteServicesOptions as g, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServicesQueryBuilder as k, type ServiceSearch as l, type SearchServicesResponse as m, type CursorQuery as n, type QueryBookingFormsOptions as o, type QueryBookingFormsResponse as p, type QueryBookingFormsApplicationErrors as q, type CountServicesOptions as r, type CountServicesResponse as s, type QueryLocationsOptions as t, type QueryLocationsResponse as u, type QueryCategoriesOptions as v, type QueryCategoriesResponse as w, type SetServiceLocationsOptions as x, type SetServiceLocationsResponse as y, type EnablePricingPlansForServiceApplicationErrors as z };
5015
+ export { type SetCustomSlugValidationErrors as $, type AddOnGroup as A, type BulkCreateServicesOptions as B, type CreateAddOnGroupOptions as C, type DeleteAddOnGroupOptions as D, type QueryBookingFormsResponse as E, type QueryBookingFormsApplicationErrors as F, type CountServicesOptions as G, type CountServicesResponse as H, type QueryLocationsOptions as I, type QueryLocationsResponse as J, type QueryCategoriesOptions as K, type ListAddOnGroupsByServiceIdOptions as L, type QueryCategoriesResponse as M, type Location as N, type SetServiceLocationsOptions as O, type SetServiceLocationsResponse as P, type QueryPoliciesResponse as Q, type EnablePricingPlansForServiceResponse as R, type SetAddOnsForGroupOptions as S, type EnablePricingPlansForServiceApplicationErrors as T, type UpdateAddOnGroupOptions as U, type DisablePricingPlansForServiceOptions as V, type DisablePricingPlansForServiceResponse as W, type DisablePricingPlansForServiceApplicationErrors as X, type SetCustomSlugOptions as Y, type SetCustomSlugResponse as Z, type SetCustomSlugApplicationErrors as _, type CreateAddOnGroupResponse as a, type CancellationPolicy as a$, type ValidateSlugOptions as a0, type ValidateSlugResponse as a1, type CloneServiceResponse as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, type Media as aA, type MediaItem as aB, type MediaItemItemOneOf as aC, type V2Category as aD, type Form as aE, type FormSettings as aF, type Payment as aG, type PaymentRateOneOf as aH, type FixedPayment as aI, type Money as aJ, type CustomPayment as aK, type VariedPayment as aL, type PaymentOptions as aM, type OnlineBooking as aN, type Conferencing as aO, type LocationOptionsOneOf as aP, type CommonAddress as aQ, type CommonAddressStreetOneOf as aR, type StreetAddress as aS, type AddressLocation as aT, type BusinessLocationOptions as aU, type CustomLocationOptions as aV, type BookingPolicy as aW, type PolicyDescription as aX, type LimitEarlyBookingPolicy as aY, type LimitLateBookingPolicy as aZ, type BookAfterStartPolicy as a_, RankingOrder as aa, SortingMethodType as ab, TaxableAddressType as ac, WebhookIdentityType as ad, V2RequestedFields as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, Mode as an, RequestedFields as ao, Action as ap, InvalidSlugError as aq, CloneErrors as ar, Status as as, CategoryNotificationEvent as at, BenefitType as au, Event as av, CrudType as aw, PlacementType as ax, DayOfWeek as ay, ResolutionMethod as az, type DeleteAddOnGroupApplicationErrors as b, type ValidateServiceResponse as b$, type ReschedulePolicy as b0, type WaitlistPolicy as b1, type ParticipantsPolicy as b2, type ResourcesPolicy as b3, type CancellationFeePolicy as b4, type CancellationWindow as b5, type CancellationWindowFeeOneOf as b6, type SaveCreditCardPolicy as b7, type StaffSortingPolicy as b8, type StaffSortingPolicyOptionsOneOf as b9, type Upsert as bA, type Delete as bB, type Schema as bC, type SetCustomSlugEvent as bD, type ServicesUrlsChanged as bE, type DomainEvent as bF, type DomainEventBodyOneOf as bG, type EntityCreatedEvent as bH, type RestoreInfo as bI, type EntityUpdatedEvent as bJ, type EntityDeletedEvent as bK, type ActionEvent as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf as bO, type CreateAddOnGroupRequest as bP, type DeleteAddOnGroupRequest as bQ, type DeleteAddOnGroupResponse as bR, type UpdateAddOnGroupRequest as bS, type ListAddOnGroupsByServiceIdRequest as bT, type AddOn as bU, type AddOnAddOnInfoOneOf as bV, type AddOnGroupDetail as bW, type SetAddOnsForGroupRequest as bX, type CreateServiceRequest as bY, type CreateServiceResponse as bZ, type ValidateServiceRequest as b_, type RankingOptions as ba, type CustomOptions as bb, type IntakeFormPolicy as bc, type Schedule as bd, type AvailabilityConstraints as be, type Duration as bf, type StaffMember as bg, type StaffMediaItem as bh, type StaffMediaItemItemOneOf as bi, type StaffMemberDetails as bj, type ResourceGroup as bk, type ResourceIds as bl, type ServiceResource as bm, type ServiceResourceSelectionOneOf as bn, type ResourceType as bo, type Slug as bp, type URLs as bq, type ExtendedFields as br, type SeoSchema as bs, type Keyword as bt, type Tag as bu, type Settings as bv, type AddOnDetails as bw, type TaxableAddress as bx, type ReindexMessage as by, type ReindexMessageActionOneOf as bz, type UpdateAddOnGroupResponse as c, type NestedResultValueResultOneOf as c$, type FieldViolation as c0, type BulkCreateServicesRequest as c1, type BulkServiceResult as c2, type ItemMetadata as c3, type ApplicationError as c4, type BulkActionMetadata as c5, type GetServiceRequest as c6, type GetServiceResponse as c7, type GetServiceAvailabilityConstraintsRequest as c8, type GetServiceAvailabilityConstraintsResponse as c9, type RangeBucket as cA, type IncludeMissingValuesOptions as cB, type ValueAggregation as cC, type ValueAggregationOptionsOneOf as cD, type RangeAggregation as cE, type ScalarAggregation as cF, type DateHistogramAggregation as cG, type NestedAggregationItem as cH, type NestedAggregationItemKindOneOf as cI, type NestedAggregation as cJ, type GroupByAggregation as cK, type GroupByAggregationKindOneOf as cL, type SearchDetails as cM, type CursorPagingMetadata as cN, type AggregationData as cO, type ValueAggregationResult as cP, type RangeAggregationResult as cQ, type NestedAggregationResults as cR, type NestedAggregationResultsResultOneOf as cS, type ValueResults as cT, type RangeResults as cU, type AggregationResultsScalarResult as cV, type NestedValueAggregationResult as cW, type ValueResult as cX, type RangeResult as cY, type ScalarResult as cZ, type NestedResultValue as c_, type ServiceAvailabilityConstraints as ca, type SplitInterval as cb, type UpdateServiceRequest as cc, type UpdateServiceResponse as cd, type BulkUpdateServicesRequest as ce, type MaskedService as cf, type BulkUpdateServicesByFilterRequest as cg, type DeleteServiceRequest as ch, type ParticipantNotification as ci, type DeleteServiceResponse as cj, type BulkDeleteServicesRequest as ck, type BulkDeleteServicesByFilterRequest as cl, type QueryServicesRequest as cm, type QueryV2 as cn, type QueryV2PagingMethodOneOf as co, type Sorting as cp, type Paging as cq, type CursorPaging as cr, type QueryServicesResponse as cs, type PagingMetadataV2 as ct, type Cursors as cu, type SearchServicesRequest as cv, type CursorSearch as cw, type CursorSearchPagingMethodOneOf as cx, type Aggregation as cy, type AggregationKindOneOf as cz, type UpdateAddOnGroupApplicationErrors as d, type ChangeContext as d$, type Results as d0, type DateHistogramResult as d1, type GroupByValueResults as d2, type DateHistogramResults as d3, type NestedResults as d4, type AggregationResults as d5, type AggregationResultsResultOneOf as d6, type QueryPoliciesRequest as d7, type CursorQueryPagingMethodOneOf as d8, type BookingPolicyWithServices as d9, type Category as dA, type Empty as dB, type BenefitNotification as dC, type Benefit as dD, type EntryPass as dE, type Discount as dF, type DiscountDiscountOneOf as dG, type Behavior as dH, type BehaviorBehaviorOneOf as dI, type UserDomainInfoChangedEvent as dJ, type HtmlSitePublished as dK, type Page as dL, type SitePropertiesNotification as dM, type SitePropertiesEvent as dN, type Properties as dO, type Categories as dP, type Locale as dQ, type Address as dR, type AddressHint as dS, type GeoCoordinates as dT, type BusinessSchedule as dU, type TimePeriod as dV, type SpecialHourPeriod as dW, type Multilingual as dX, type SupportedLanguage as dY, type ConsentPolicy as dZ, type Translation as d_, type QueryBookingFormsRequest as da, type BookingForm as db, type FormDetails as dc, type ConnectedService as dd, type CountServicesRequest as de, type QueryLocationsRequest as df, type QueryLocationsFilter as dg, type BusinessLocations as dh, type CustomLocations as di, type CustomerLocations as dj, type QueryCategoriesRequest as dk, type QueryCategoriesFilter as dl, type QueryServicesMultiLanguageRequest as dm, type QueryServicesMultiLanguageResponse as dn, type SetServiceLocationsRequest as dp, type RemovedLocationSessionsAction as dq, type RemovedLocationSessionsActionActionOptionsOneOf as dr, type MoveToNewLocationsOptions as ds, type EnablePricingPlansForServiceRequest as dt, type InvalidPricingPlan as du, type DisablePricingPlansForServiceRequest as dv, type SetCustomSlugRequest as dw, type ValidateSlugRequest as dx, type CloneServiceRequest as dy, type CategoryNotification as dz, type ListAddOnGroupsByServiceIdResponse as e, enablePricingPlansForService as e$, type ChangeContextPayloadOneOf as e0, type PropertiesChange as e1, type SiteCreated as e2, type SiteCloned as e3, type BaseEventMetadata as e4, type EventMetadata as e5, type ServicesQueryResult as e6, type ServiceSearchSpec as e7, type ServiceTypeWithLiterals as e8, type RateTypeWithLiterals as e9, type DayOfWeekWithLiterals as eA, type ResolutionMethodWithLiterals as eB, type CommonSearchWithEntityContext as eC, onServiceCreated as eD, onServiceDeleted as eE, onServiceUpdated as eF, createAddOnGroup as eG, deleteAddOnGroup as eH, updateAddOnGroup as eI, listAddOnGroupsByServiceId as eJ, setAddOnsForGroup as eK, createService as eL, bulkCreateServices as eM, getService as eN, updateService as eO, bulkUpdateServices as eP, bulkUpdateServicesByFilter as eQ, deleteService as eR, bulkDeleteServices as eS, bulkDeleteServicesByFilter as eT, queryServices as eU, queryPolicies as eV, queryBookingForms as eW, countServices as eX, queryLocations as eY, queryCategories as eZ, setServiceLocations as e_, type AddOnPaymentOptionsWithLiterals as ea, type LocationTypeWithLiterals as eb, type RankingOrderWithLiterals as ec, type SortingMethodTypeWithLiterals as ed, type TaxableAddressTypeWithLiterals as ee, type WebhookIdentityTypeWithLiterals as ef, type V2RequestedFieldsWithLiterals as eg, type SortOrderWithLiterals as eh, type SortTypeWithLiterals as ei, type SortDirectionWithLiterals as ej, type MissingValuesWithLiterals as ek, type ScalarTypeWithLiterals as el, type NestedAggregationTypeWithLiterals as em, type IntervalWithLiterals as en, type AggregationTypeWithLiterals as eo, type ModeWithLiterals as ep, type RequestedFieldsWithLiterals as eq, type ActionWithLiterals as er, type InvalidSlugErrorWithLiterals as es, type CloneErrorsWithLiterals as et, type StatusWithLiterals as eu, type CategoryNotificationEventWithLiterals as ev, type BenefitTypeWithLiterals as ew, type EventWithLiterals as ex, type CrudTypeWithLiterals as ey, type PlacementTypeWithLiterals as ez, type SetAddOnsForGroupResponse as f, disablePricingPlansForService as f0, setCustomSlug as f1, validateSlug as f2, cloneService as f3, type SetAddOnsForGroupApplicationErrors as g, type Service as h, type CreateServiceValidationErrors as i, type BulkCreateServicesResponse as j, type UpdateService as k, type UpdateServiceValidationErrors as l, type BulkUpdateServicesOptions as m, type BulkUpdateServicesResponse as n, type BulkUpdateServicesByFilterOptions as o, type BulkUpdateServicesByFilterResponse as p, type DeleteServiceOptions as q, type BulkDeleteServicesOptions as r, type BulkDeleteServicesResponse as s, type BulkDeleteServicesByFilterOptions as t, type BulkDeleteServicesByFilterResponse as u, type ServicesQueryBuilder as v, type ServiceSearch as w, type SearchServicesResponse as x, type CursorQuery as y, type QueryBookingFormsOptions as z };