@wix/auto_sdk_bookings_services 1.0.148 → 1.0.150

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-aR6-LfxR.d.ts → bookings-services-v2-service-services.universal-BPPGPPHk.d.ts} +298 -302
  2. package/build/cjs/index.d.ts +77 -77
  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 +166 -168
  9. package/build/cjs/meta.js +203 -203
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-aR6-LfxR.d.mts → bookings-services-v2-service-services.universal-BPPGPPHk.d.mts} +298 -302
  12. package/build/es/index.d.mts +77 -77
  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 +166 -168
  19. package/build/es/meta.mjs +203 -203
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-aR6-LfxR.d.ts → bookings-services-v2-service-services.universal-BPPGPPHk.d.ts} +298 -302
  22. package/build/internal/cjs/index.d.ts +77 -77
  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 +166 -168
  29. package/build/internal/cjs/meta.js +203 -203
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-aR6-LfxR.d.mts → bookings-services-v2-service-services.universal-BPPGPPHk.d.mts} +298 -302
  32. package/build/internal/es/index.d.mts +77 -77
  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 +166 -168
  39. package/build/internal/es/meta.mjs +203 -203
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -139,8 +139,6 @@ interface Service {
139
139
  revision?: string | null;
140
140
  /** Taxable address used to calculate tax */
141
141
  taxableAddress?: TaxableAddress;
142
- /** Phone call options for the service. */
143
- phoneCall?: PhoneCall;
144
142
  }
145
143
  declare enum ServiceType {
146
144
  /** Appointment-based service. */
@@ -1484,6 +1482,148 @@ declare enum WebhookIdentityType {
1484
1482
  }
1485
1483
  /** @enumType */
1486
1484
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1485
+ interface CreateAddOnGroupRequest {
1486
+ /** Add-on group to create. */
1487
+ addOnGroup: AddOnGroup;
1488
+ /**
1489
+ * ID of the service to create the add-on group for.
1490
+ * @format GUID
1491
+ */
1492
+ serviceId?: string | null;
1493
+ }
1494
+ interface CreateAddOnGroupResponse {
1495
+ /** Created add-on group. */
1496
+ addOnGroup?: AddOnGroup;
1497
+ }
1498
+ interface DeleteAddOnGroupRequest {
1499
+ /**
1500
+ * ID of the add-on group to delete.
1501
+ * @format GUID
1502
+ */
1503
+ addOnGroupId: string | null;
1504
+ /**
1505
+ * ID of the service from which to delete the add-on group.
1506
+ * @format GUID
1507
+ */
1508
+ serviceId: string | null;
1509
+ }
1510
+ interface DeleteAddOnGroupResponse {
1511
+ }
1512
+ interface UpdateAddOnGroupRequest {
1513
+ /** Add-on group to update. */
1514
+ addOnGroup: AddOnGroup;
1515
+ /**
1516
+ * ID of the service that contains the add-on group.
1517
+ * @format GUID
1518
+ */
1519
+ serviceId: string | null;
1520
+ }
1521
+ interface UpdateAddOnGroupResponse {
1522
+ /** Updated add-on group. */
1523
+ addOnGroup?: AddOnGroup;
1524
+ }
1525
+ interface ListAddOnGroupsByServiceIdRequest {
1526
+ /**
1527
+ * ID of the service to retrieve add-on groups for.
1528
+ * @format GUID
1529
+ */
1530
+ serviceId: string | null;
1531
+ /**
1532
+ * List of group IDs to return. By default, all groups are returned.
1533
+ * @format GUID
1534
+ * @maxSize 3
1535
+ */
1536
+ groupIds?: string[] | null;
1537
+ }
1538
+ interface ListAddOnGroupsByServiceIdResponse {
1539
+ /**
1540
+ * List of group details with their linked add-ons.
1541
+ * @maxSize 3
1542
+ */
1543
+ addOnGroupsDetails?: AddOnGroupDetail[];
1544
+ }
1545
+ interface AddOn extends AddOnAddOnInfoOneOf {
1546
+ /** Duration in minutes for duration-based add-ons that extend booking service time. */
1547
+ durationInMinutes?: number;
1548
+ /** Maximum quantity customers can purchase for quantity-based add-ons. */
1549
+ maxQuantity?: number;
1550
+ /**
1551
+ * Add-on ID.
1552
+ * @format GUID
1553
+ */
1554
+ addOnId?: string | null;
1555
+ /**
1556
+ * Add-on name displayed to customers.
1557
+ * @maxLength 100
1558
+ */
1559
+ name?: string | null;
1560
+ /** Add-on price. */
1561
+ price?: Money;
1562
+ /**
1563
+ * Translated add-on name.
1564
+ * @maxLength 100
1565
+ */
1566
+ nameTranslated?: string | null;
1567
+ }
1568
+ /** @oneof */
1569
+ interface AddOnAddOnInfoOneOf {
1570
+ /** Duration in minutes for duration-based add-ons that extend booking service time. */
1571
+ durationInMinutes?: number;
1572
+ /** Maximum quantity customers can purchase for quantity-based add-ons. */
1573
+ maxQuantity?: number;
1574
+ }
1575
+ interface AddOnGroupDetail {
1576
+ /**
1577
+ * Group ID.
1578
+ * @format GUID
1579
+ */
1580
+ groupId?: string | null;
1581
+ /** Maximum number of add-ons customers can select from this group. */
1582
+ maxNumberOfAddOns?: number | null;
1583
+ /**
1584
+ * Group name displayed to customers.
1585
+ * @maxLength 100
1586
+ */
1587
+ groupName?: string | null;
1588
+ /**
1589
+ * Add-ons linked to this group in display order.
1590
+ * @maxSize 7
1591
+ */
1592
+ addOns?: AddOn[];
1593
+ /**
1594
+ * Instructional prompt displayed to customers. For example, `Choose up to 2 relaxing spa treatments to enhance your experience`. You can also use this field as a group description. For example, `Beginner-friendly rental equipment`.
1595
+ * @maxLength 200
1596
+ */
1597
+ prompt?: string | null;
1598
+ /**
1599
+ * Translated group name.
1600
+ * @maxLength 100
1601
+ */
1602
+ groupNameTranslated?: string | null;
1603
+ }
1604
+ interface SetAddOnsForGroupRequest {
1605
+ /**
1606
+ * Service ID containing the group.
1607
+ * @format GUID
1608
+ */
1609
+ serviceId: string | null;
1610
+ /**
1611
+ * Group ID to set add-ons for.
1612
+ * @format GUID
1613
+ */
1614
+ groupId: string | null;
1615
+ /**
1616
+ * IDs of add-ons to set for the group in display order.
1617
+ * @format GUID
1618
+ * @minSize 1
1619
+ * @maxSize 7
1620
+ */
1621
+ addOnIds: string[] | null;
1622
+ }
1623
+ interface SetAddOnsForGroupResponse {
1624
+ /** Updated add-on group. */
1625
+ addOnGroup?: AddOnGroup;
1626
+ }
1487
1627
  interface CreateServiceRequest {
1488
1628
  /** Service to create. */
1489
1629
  service: Service;
@@ -3394,148 +3534,24 @@ interface SiteCloned {
3394
3534
  /** Origin site id. */
3395
3535
  originMetaSiteId?: string;
3396
3536
  }
3397
- interface CreateAddOnGroupRequest {
3398
- /** Add-on group to create. */
3399
- addOnGroup: AddOnGroup;
3400
- /**
3401
- * ID of the service to create the add-on group for.
3402
- * @format GUID
3403
- */
3404
- serviceId?: string | null;
3405
- }
3406
- interface CreateAddOnGroupResponse {
3407
- /** Created add-on group. */
3408
- addOnGroup?: AddOnGroup;
3409
- }
3410
- interface DeleteAddOnGroupRequest {
3411
- /**
3412
- * ID of the add-on group to delete.
3413
- * @format GUID
3414
- */
3415
- addOnGroupId: string | null;
3416
- /**
3417
- * ID of the service from which to delete the add-on group.
3418
- * @format GUID
3419
- */
3420
- serviceId: string | null;
3421
- }
3422
- interface DeleteAddOnGroupResponse {
3423
- }
3424
- interface UpdateAddOnGroupRequest {
3425
- /** Add-on group to update. */
3426
- addOnGroup: AddOnGroup;
3427
- /**
3428
- * ID of the service that contains the add-on group.
3429
- * @format GUID
3430
- */
3431
- serviceId: string | null;
3432
- }
3433
- interface UpdateAddOnGroupResponse {
3434
- /** Updated add-on group. */
3435
- addOnGroup?: AddOnGroup;
3436
- }
3437
- interface ListAddOnGroupsByServiceIdRequest {
3438
- /**
3439
- * ID of the service to retrieve add-on groups for.
3440
- * @format GUID
3441
- */
3442
- serviceId: string | null;
3443
- /**
3444
- * List of group IDs to return. By default, all groups are returned.
3445
- * @format GUID
3446
- * @maxSize 3
3447
- */
3448
- groupIds?: string[] | null;
3449
- }
3450
- interface ListAddOnGroupsByServiceIdResponse {
3451
- /**
3452
- * List of group details with their linked add-ons.
3453
- * @maxSize 3
3454
- */
3455
- addOnGroupsDetails?: AddOnGroupDetail[];
3456
- }
3457
- interface AddOn extends AddOnAddOnInfoOneOf {
3458
- /** Duration in minutes for duration-based add-ons that extend booking service time. */
3459
- durationInMinutes?: number;
3460
- /** Maximum quantity customers can purchase for quantity-based add-ons. */
3461
- maxQuantity?: number;
3462
- /**
3463
- * Add-on ID.
3464
- * @format GUID
3465
- */
3466
- addOnId?: string | null;
3467
- /**
3468
- * Add-on name displayed to customers.
3469
- * @maxLength 100
3470
- */
3471
- name?: string | null;
3472
- /** Add-on price. */
3473
- price?: Money;
3474
- /**
3475
- * Translated add-on name.
3476
- * @maxLength 100
3477
- */
3478
- nameTranslated?: string | null;
3479
- }
3480
- /** @oneof */
3481
- interface AddOnAddOnInfoOneOf {
3482
- /** Duration in minutes for duration-based add-ons that extend booking service time. */
3483
- durationInMinutes?: number;
3484
- /** Maximum quantity customers can purchase for quantity-based add-ons. */
3485
- maxQuantity?: number;
3486
- }
3487
- interface AddOnGroupDetail {
3488
- /**
3489
- * Group ID.
3490
- * @format GUID
3491
- */
3492
- groupId?: string | null;
3493
- /** Maximum number of add-ons customers can select from this group. */
3494
- maxNumberOfAddOns?: number | null;
3495
- /**
3496
- * Group name displayed to customers.
3497
- * @maxLength 100
3498
- */
3499
- groupName?: string | null;
3500
- /**
3501
- * Add-ons linked to this group in display order.
3502
- * @maxSize 7
3503
- */
3504
- addOns?: AddOn[];
3505
- /**
3506
- * Instructional prompt displayed to customers. For example, `Choose up to 2 relaxing spa treatments to enhance your experience`. You can also use this field as a group description. For example, `Beginner-friendly rental equipment`.
3507
- * @maxLength 200
3508
- */
3509
- prompt?: string | null;
3510
- /**
3511
- * Translated group name.
3512
- * @maxLength 100
3513
- */
3514
- groupNameTranslated?: string | null;
3515
- }
3516
- interface SetAddOnsForGroupRequest {
3517
- /**
3518
- * Service ID containing the group.
3519
- * @format GUID
3520
- */
3521
- serviceId: string | null;
3522
- /**
3523
- * Group ID to set add-ons for.
3524
- * @format GUID
3525
- */
3526
- groupId: string | null;
3527
- /**
3528
- * IDs of add-ons to set for the group in display order.
3529
- * @format GUID
3530
- * @minSize 1
3531
- * @maxSize 7
3532
- */
3533
- addOnIds: string[] | null;
3534
- }
3535
- interface SetAddOnsForGroupResponse {
3536
- /** Updated add-on group. */
3537
- addOnGroup?: AddOnGroup;
3538
- }
3537
+ /** @docsIgnore */
3538
+ type DeleteAddOnGroupApplicationErrors = {
3539
+ code?: 'GROUP_NOT_ON_SERVICE';
3540
+ description?: string;
3541
+ data?: Record<string, any>;
3542
+ };
3543
+ /** @docsIgnore */
3544
+ type UpdateAddOnGroupApplicationErrors = {
3545
+ code?: 'GROUP_NOT_ON_SERVICE';
3546
+ description?: string;
3547
+ data?: Record<string, any>;
3548
+ };
3549
+ /** @docsIgnore */
3550
+ type SetAddOnsForGroupApplicationErrors = {
3551
+ code?: 'ADD_ON_GROUP_NOT_FOUND';
3552
+ description?: string;
3553
+ data?: Record<string, any>;
3554
+ };
3539
3555
  /** @docsIgnore */
3540
3556
  type CreateServiceValidationErrors = {
3541
3557
  ruleName?: 'INVALID_FORM';
@@ -3656,24 +3672,6 @@ type SetCustomSlugApplicationErrors = {
3656
3672
  type SetCustomSlugValidationErrors = {
3657
3673
  ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
3658
3674
  };
3659
- /** @docsIgnore */
3660
- type DeleteAddOnGroupApplicationErrors = {
3661
- code?: 'GROUP_NOT_ON_SERVICE';
3662
- description?: string;
3663
- data?: Record<string, any>;
3664
- };
3665
- /** @docsIgnore */
3666
- type UpdateAddOnGroupApplicationErrors = {
3667
- code?: 'GROUP_NOT_ON_SERVICE';
3668
- description?: string;
3669
- data?: Record<string, any>;
3670
- };
3671
- /** @docsIgnore */
3672
- type SetAddOnsForGroupApplicationErrors = {
3673
- code?: 'ADD_ON_GROUP_NOT_FOUND';
3674
- description?: string;
3675
- data?: Record<string, any>;
3676
- };
3677
3675
  interface BaseEventMetadata {
3678
3676
  /**
3679
3677
  * App instance ID.
@@ -3796,6 +3794,143 @@ interface ServiceUpdatedEnvelope {
3796
3794
  * @slug updated
3797
3795
  */
3798
3796
  declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
3797
+ /**
3798
+ * Creates a new add-on group for a service and updates the service's `addOnGroups` array.
3799
+ * @param addOnGroup - Add-on group to create.
3800
+ * @public
3801
+ * @documentationMaturity preview
3802
+ * @requiredField addOnGroup
3803
+ * @requiredField addOnGroup.name
3804
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3805
+ * @applicableIdentity APP
3806
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
3807
+ */
3808
+ declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
3809
+ interface CreateAddOnGroupOptions {
3810
+ /**
3811
+ * ID of the service to create the add-on group for.
3812
+ * @format GUID
3813
+ */
3814
+ serviceId?: string | null;
3815
+ }
3816
+ /**
3817
+ * Deletes an add-on group.
3818
+ *
3819
+ *
3820
+ * Deleting the group doesn't delete individual add-ons.
3821
+ * Any add-on not associated with another group isn't available for customers to book.
3822
+ * @param addOnGroupId - ID of the add-on group to delete.
3823
+ * @public
3824
+ * @documentationMaturity preview
3825
+ * @requiredField addOnGroupId
3826
+ * @requiredField options
3827
+ * @requiredField options.serviceId
3828
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3829
+ * @applicableIdentity APP
3830
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
3831
+ */
3832
+ declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
3833
+ __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
3834
+ }>;
3835
+ interface DeleteAddOnGroupOptions {
3836
+ /**
3837
+ * ID of the service from which to delete the add-on group.
3838
+ * @format GUID
3839
+ */
3840
+ serviceId: string | null;
3841
+ }
3842
+ /**
3843
+ * Updates an add-on group.
3844
+ *
3845
+ *
3846
+ * To update only add-on display order, call [Set Add Ons For Group](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/set-add-ons-for-group) instead.
3847
+ * @param addOnGroup - Add-on group to update.
3848
+ * @public
3849
+ * @documentationMaturity preview
3850
+ * @requiredField addOnGroup
3851
+ * @requiredField addOnGroup._id
3852
+ * @requiredField options
3853
+ * @requiredField options.serviceId
3854
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
3855
+ * @applicableIdentity APP
3856
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
3857
+ */
3858
+ declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
3859
+ __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
3860
+ }>;
3861
+ interface UpdateAddOnGroupOptions {
3862
+ /**
3863
+ * ID of the service that contains the add-on group.
3864
+ * @format GUID
3865
+ */
3866
+ serviceId: string | null;
3867
+ }
3868
+ /**
3869
+ * Retrieves add-on groups for a service with enriched add-on details.
3870
+ *
3871
+ *
3872
+ * Add-on details are returned based on their display order.
3873
+ *
3874
+ * If you specify `groupIds`, only those groups are returned.
3875
+ * By default, all groups associated with the service are returned.
3876
+ * @param serviceId - ID of the service to retrieve add-on groups for.
3877
+ * @public
3878
+ * @documentationMaturity preview
3879
+ * @requiredField serviceId
3880
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
3881
+ * @applicableIdentity APP
3882
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
3883
+ */
3884
+ declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
3885
+ interface ListAddOnGroupsByServiceIdOptions {
3886
+ /**
3887
+ * List of group IDs to return. By default, all groups are returned.
3888
+ * @format GUID
3889
+ * @maxSize 3
3890
+ */
3891
+ groupIds?: string[] | null;
3892
+ }
3893
+ /**
3894
+ * Sets the add-ons for a specific group, replacing any existing add-ons in the group.
3895
+ *
3896
+ *
3897
+ * Call this method when you want to:
3898
+ * - Add new add-ons to a group.
3899
+ * - Remove add-ons from a group.
3900
+ * - Reorder existing add-ons for optimal customer presentation.
3901
+ *
3902
+ * The order of add-ons in the request determines their display sequence to customers.
3903
+ * All specified add-ons must already exist before adding them to a group.
3904
+ *
3905
+ * For updating other add-on group properties, for example `name`, `prompt`, or `constraints`, call [Update Add On Group](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/update-add-on-group) instead.
3906
+ * @param serviceId - Service ID containing the group.
3907
+ * @public
3908
+ * @documentationMaturity preview
3909
+ * @requiredField options
3910
+ * @requiredField options.addOnIds
3911
+ * @requiredField options.groupId
3912
+ * @requiredField serviceId
3913
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
3914
+ * @applicableIdentity APP
3915
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
3916
+ */
3917
+ declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
3918
+ __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
3919
+ }>;
3920
+ interface SetAddOnsForGroupOptions {
3921
+ /**
3922
+ * Group ID to set add-ons for.
3923
+ * @format GUID
3924
+ */
3925
+ groupId: string | null;
3926
+ /**
3927
+ * IDs of add-ons to set for the group in display order.
3928
+ * @format GUID
3929
+ * @minSize 1
3930
+ * @maxSize 7
3931
+ */
3932
+ addOnIds: string[] | null;
3933
+ }
3799
3934
  /**
3800
3935
  * Creates a service.
3801
3936
  *
@@ -4059,8 +4194,6 @@ interface UpdateService {
4059
4194
  revision?: string | null;
4060
4195
  /** Taxable address used to calculate tax */
4061
4196
  taxableAddress?: TaxableAddress;
4062
- /** Phone call options for the service. */
4063
- phoneCall?: PhoneCall;
4064
4197
  }
4065
4198
  /**
4066
4199
  * Updates up to 100 services.
@@ -4941,142 +5074,5 @@ interface ValidateSlugOptions {
4941
5074
  * @fqn wix.bookings.services.v2.ServicesService.CloneService
4942
5075
  */
4943
5076
  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>>;
4944
- /**
4945
- * Creates a new add-on group for a service and updates the service's `addOnGroups` array.
4946
- * @param addOnGroup - Add-on group to create.
4947
- * @public
4948
- * @documentationMaturity preview
4949
- * @requiredField addOnGroup
4950
- * @requiredField addOnGroup.name
4951
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4952
- * @applicableIdentity APP
4953
- * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
4954
- */
4955
- declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
4956
- interface CreateAddOnGroupOptions {
4957
- /**
4958
- * ID of the service to create the add-on group for.
4959
- * @format GUID
4960
- */
4961
- serviceId?: string | null;
4962
- }
4963
- /**
4964
- * Deletes an add-on group.
4965
- *
4966
- *
4967
- * Deleting the group doesn't delete individual add-ons.
4968
- * Any add-on not associated with another group isn't available for customers to book.
4969
- * @param addOnGroupId - ID of the add-on group to delete.
4970
- * @public
4971
- * @documentationMaturity preview
4972
- * @requiredField addOnGroupId
4973
- * @requiredField options
4974
- * @requiredField options.serviceId
4975
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4976
- * @applicableIdentity APP
4977
- * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
4978
- */
4979
- declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
4980
- __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
4981
- }>;
4982
- interface DeleteAddOnGroupOptions {
4983
- /**
4984
- * ID of the service from which to delete the add-on group.
4985
- * @format GUID
4986
- */
4987
- serviceId: string | null;
4988
- }
4989
- /**
4990
- * Updates an add-on group.
4991
- *
4992
- *
4993
- * To update only add-on display order, call [Set Add Ons For Group](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/set-add-ons-for-group) instead.
4994
- * @param addOnGroup - Add-on group to update.
4995
- * @public
4996
- * @documentationMaturity preview
4997
- * @requiredField addOnGroup
4998
- * @requiredField addOnGroup._id
4999
- * @requiredField options
5000
- * @requiredField options.serviceId
5001
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
5002
- * @applicableIdentity APP
5003
- * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
5004
- */
5005
- declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
5006
- __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
5007
- }>;
5008
- interface UpdateAddOnGroupOptions {
5009
- /**
5010
- * ID of the service that contains the add-on group.
5011
- * @format GUID
5012
- */
5013
- serviceId: string | null;
5014
- }
5015
- /**
5016
- * Retrieves add-on groups for a service with enriched add-on details.
5017
- *
5018
- *
5019
- * Add-on details are returned based on their display order.
5020
- *
5021
- * If you specify `groupIds`, only those groups are returned.
5022
- * By default, all groups associated with the service are returned.
5023
- * @param serviceId - ID of the service to retrieve add-on groups for.
5024
- * @public
5025
- * @documentationMaturity preview
5026
- * @requiredField serviceId
5027
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
5028
- * @applicableIdentity APP
5029
- * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
5030
- */
5031
- declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
5032
- interface ListAddOnGroupsByServiceIdOptions {
5033
- /**
5034
- * List of group IDs to return. By default, all groups are returned.
5035
- * @format GUID
5036
- * @maxSize 3
5037
- */
5038
- groupIds?: string[] | null;
5039
- }
5040
- /**
5041
- * Sets the add-ons for a specific group, replacing any existing add-ons in the group.
5042
- *
5043
- *
5044
- * Call this method when you want to:
5045
- * - Add new add-ons to a group.
5046
- * - Remove add-ons from a group.
5047
- * - Reorder existing add-ons for optimal customer presentation.
5048
- *
5049
- * The order of add-ons in the request determines their display sequence to customers.
5050
- * All specified add-ons must already exist before adding them to a group.
5051
- *
5052
- * For updating other add-on group properties, for example `name`, `prompt`, or `constraints`, call [Update Add On Group](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/update-add-on-group) instead.
5053
- * @param serviceId - Service ID containing the group.
5054
- * @public
5055
- * @documentationMaturity preview
5056
- * @requiredField options
5057
- * @requiredField options.addOnIds
5058
- * @requiredField options.groupId
5059
- * @requiredField serviceId
5060
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
5061
- * @applicableIdentity APP
5062
- * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
5063
- */
5064
- declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
5065
- __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
5066
- }>;
5067
- interface SetAddOnsForGroupOptions {
5068
- /**
5069
- * Group ID to set add-ons for.
5070
- * @format GUID
5071
- */
5072
- groupId: string | null;
5073
- /**
5074
- * IDs of add-ons to set for the group in display order.
5075
- * @format GUID
5076
- * @minSize 1
5077
- * @maxSize 7
5078
- */
5079
- addOnIds: string[] | null;
5080
- }
5081
5077
 
5082
- 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 LimitLateBookingPolicy 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, DayOfWeek as aA, ResolutionMethod as aB, type Media as aC, type MediaItem as aD, type MediaItemItemOneOf as aE, type V2Category as aF, type Form as aG, type FormSettings as aH, type Payment as aI, type PaymentRateOneOf as aJ, type FixedPayment as aK, type Money as aL, type CustomPayment as aM, type VariedPayment as aN, type PaymentOptions as aO, type OnlineBooking as aP, type Conferencing as aQ, type LocationOptionsOneOf as aR, type CommonAddress as aS, type CommonAddressStreetOneOf as aT, type StreetAddress as aU, type AddressLocation as aV, type BusinessLocationOptions as aW, type CustomLocationOptions as aX, type BookingPolicy as aY, type PolicyDescription as aZ, type LimitEarlyBookingPolicy as a_, RankingOrder as aa, SortingMethodType as ab, Timing as ac, CompletionRequirement as ad, TaxableAddressType as ae, WebhookIdentityType as af, V2RequestedFields as ag, SortOrder as ah, SortType as ai, SortDirection as aj, MissingValues as ak, ScalarType as al, NestedAggregationType as am, Interval as an, AggregationType as ao, Mode as ap, RequestedFields as aq, Action as ar, InvalidSlugError as as, CloneErrors as at, Status as au, CategoryNotificationEvent as av, BenefitType as aw, Event as ax, CrudType as ay, PlacementType as az, type UpdateServiceValidationErrors as b, type BulkActionMetadata as b$, type BookAfterStartPolicy as b0, type CancellationPolicy as b1, type ReschedulePolicy as b2, type WaitlistPolicy as b3, type ParticipantsPolicy as b4, type ResourcesPolicy as b5, type CancellationFeePolicy as b6, type CancellationWindow as b7, type CancellationWindowFeeOneOf as b8, type SaveCreditCardPolicy as b9, type PhoneCall as bA, type ReindexMessage as bB, type ReindexMessageActionOneOf as bC, type Upsert as bD, type Delete as bE, type Schema as bF, type SetCustomSlugEvent as bG, type ServicesUrlsChanged as bH, type DomainEvent as bI, type DomainEventBodyOneOf as bJ, type EntityCreatedEvent as bK, type RestoreInfo as bL, type EntityUpdatedEvent as bM, type EntityDeletedEvent as bN, type ActionEvent as bO, type MessageEnvelope as bP, type IdentificationData as bQ, type IdentificationDataIdOneOf 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 StaffSortingPolicy as ba, type StaffSortingPolicyOptionsOneOf as bb, type RankingOptions as bc, type CustomOptions as bd, type IntakeFormPolicy as be, type Schedule as bf, type AvailabilityConstraints as bg, type Duration as bh, type StaffMember as bi, type StaffMediaItem as bj, type StaffMediaItemItemOneOf as bk, type StaffMemberDetails as bl, type ResourceGroup as bm, type ResourceIds as bn, type ServiceResource as bo, type ServiceResourceSelectionOneOf as bp, type ResourceType as bq, type Slug as br, type URLs as bs, type ExtendedFields as bt, type SeoSchema as bu, type Keyword as bv, type Tag as bw, type Settings as bx, type AddOnDetails as by, type TaxableAddress as bz, type BulkUpdateServicesOptions 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 BulkUpdateServicesResponse as d, type DeleteAddOnGroupRequest 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 CreateAddOnGroupRequest 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 BulkUpdateServicesByFilterOptions as e, enablePricingPlansForService as e$, type DeleteAddOnGroupResponse as e0, type UpdateAddOnGroupRequest as e1, type ListAddOnGroupsByServiceIdRequest as e2, type AddOn as e3, type AddOnAddOnInfoOneOf as e4, type AddOnGroupDetail as e5, type SetAddOnsForGroupRequest as e6, type BaseEventMetadata as e7, type EventMetadata as e8, type ServicesQueryResult as e9, type CategoryNotificationEventWithLiterals as eA, type BenefitTypeWithLiterals as eB, type EventWithLiterals as eC, type CrudTypeWithLiterals as eD, type PlacementTypeWithLiterals as eE, type DayOfWeekWithLiterals as eF, type ResolutionMethodWithLiterals as eG, type CommonSearchWithEntityContext as eH, onServiceCreated as eI, onServiceDeleted as eJ, onServiceUpdated 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 ServiceSearchSpec as ea, type ServiceTypeWithLiterals as eb, type RateTypeWithLiterals as ec, type AddOnPaymentOptionsWithLiterals as ed, type LocationTypeWithLiterals as ee, type RankingOrderWithLiterals as ef, type SortingMethodTypeWithLiterals as eg, type TimingWithLiterals as eh, type CompletionRequirementWithLiterals as ei, type TaxableAddressTypeWithLiterals as ej, type WebhookIdentityTypeWithLiterals as ek, type V2RequestedFieldsWithLiterals as el, type SortOrderWithLiterals as em, type SortTypeWithLiterals as en, type SortDirectionWithLiterals as eo, type MissingValuesWithLiterals as ep, type ScalarTypeWithLiterals as eq, type NestedAggregationTypeWithLiterals as er, type IntervalWithLiterals as es, type AggregationTypeWithLiterals as et, type ModeWithLiterals as eu, type RequestedFieldsWithLiterals as ev, type ActionWithLiterals as ew, type InvalidSlugErrorWithLiterals as ex, type CloneErrorsWithLiterals as ey, type StatusWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, disablePricingPlansForService as f0, setCustomSlug as f1, validateSlug as f2, cloneService as f3, createAddOnGroup as f4, deleteAddOnGroup as f5, updateAddOnGroup as f6, listAddOnGroupsByServiceId as f7, setAddOnsForGroup as f8, 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 };
5078
+ 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 LimitLateBookingPolicy 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, DayOfWeek as aA, ResolutionMethod as aB, type Media as aC, type MediaItem as aD, type MediaItemItemOneOf as aE, type V2Category as aF, type Form as aG, type FormSettings as aH, type Payment as aI, type PaymentRateOneOf as aJ, type FixedPayment as aK, type Money as aL, type CustomPayment as aM, type VariedPayment as aN, type PaymentOptions as aO, type OnlineBooking as aP, type Conferencing as aQ, type LocationOptionsOneOf as aR, type CommonAddress as aS, type CommonAddressStreetOneOf as aT, type StreetAddress as aU, type AddressLocation as aV, type BusinessLocationOptions as aW, type CustomLocationOptions as aX, type BookingPolicy as aY, type PolicyDescription as aZ, type LimitEarlyBookingPolicy as a_, RankingOrder as aa, SortingMethodType as ab, Timing as ac, CompletionRequirement as ad, TaxableAddressType as ae, WebhookIdentityType as af, V2RequestedFields as ag, SortOrder as ah, SortType as ai, SortDirection as aj, MissingValues as ak, ScalarType as al, NestedAggregationType as am, Interval as an, AggregationType as ao, Mode as ap, RequestedFields as aq, Action as ar, InvalidSlugError as as, CloneErrors as at, Status as au, CategoryNotificationEvent as av, BenefitType as aw, Event as ax, CrudType as ay, PlacementType as az, type DeleteAddOnGroupApplicationErrors as b, type CreateServiceRequest as b$, type BookAfterStartPolicy as b0, type CancellationPolicy as b1, type ReschedulePolicy as b2, type WaitlistPolicy as b3, type ParticipantsPolicy as b4, type ResourcesPolicy as b5, type CancellationFeePolicy as b6, type CancellationWindow as b7, type CancellationWindowFeeOneOf as b8, type SaveCreditCardPolicy as b9, type PhoneCall as bA, type ReindexMessage as bB, type ReindexMessageActionOneOf as bC, type Upsert as bD, type Delete as bE, type Schema as bF, type SetCustomSlugEvent as bG, type ServicesUrlsChanged as bH, type DomainEvent as bI, type DomainEventBodyOneOf as bJ, type EntityCreatedEvent as bK, type RestoreInfo as bL, type EntityUpdatedEvent as bM, type EntityDeletedEvent as bN, type ActionEvent as bO, type MessageEnvelope as bP, type IdentificationData as bQ, type IdentificationDataIdOneOf as bR, type CreateAddOnGroupRequest as bS, type DeleteAddOnGroupRequest as bT, type DeleteAddOnGroupResponse as bU, type UpdateAddOnGroupRequest as bV, type ListAddOnGroupsByServiceIdRequest as bW, type AddOn as bX, type AddOnAddOnInfoOneOf as bY, type AddOnGroupDetail as bZ, type SetAddOnsForGroupRequest as b_, type StaffSortingPolicy as ba, type StaffSortingPolicyOptionsOneOf as bb, type RankingOptions as bc, type CustomOptions as bd, type IntakeFormPolicy as be, type Schedule as bf, type AvailabilityConstraints as bg, type Duration as bh, type StaffMember as bi, type StaffMediaItem as bj, type StaffMediaItemItemOneOf as bk, type StaffMemberDetails as bl, type ResourceGroup as bm, type ResourceIds as bn, type ServiceResource as bo, type ServiceResourceSelectionOneOf as bp, type ResourceType as bq, type Slug as br, type URLs as bs, type ExtendedFields as bt, type SeoSchema as bu, type Keyword as bv, type Tag as bw, type Settings as bx, type AddOnDetails as by, type TaxableAddress as bz, type UpdateAddOnGroupResponse as c, type RangeResult as c$, type CreateServiceResponse as c0, type ValidateServiceRequest as c1, type ValidateServiceResponse as c2, type FieldViolation as c3, type BulkCreateServicesRequest as c4, type BulkServiceResult as c5, type ItemMetadata as c6, type ApplicationError as c7, type BulkActionMetadata as c8, type GetServiceRequest as c9, type CursorSearchPagingMethodOneOf as cA, type Aggregation as cB, type AggregationKindOneOf as cC, type RangeBucket as cD, type IncludeMissingValuesOptions as cE, type ValueAggregation as cF, type ValueAggregationOptionsOneOf as cG, type RangeAggregation as cH, type ScalarAggregation as cI, type DateHistogramAggregation as cJ, type NestedAggregationItem as cK, type NestedAggregationItemKindOneOf as cL, type NestedAggregation as cM, type GroupByAggregation as cN, type GroupByAggregationKindOneOf as cO, type SearchDetails as cP, type CursorPagingMetadata as cQ, type AggregationData as cR, type ValueAggregationResult as cS, type RangeAggregationResult as cT, type NestedAggregationResults as cU, type NestedAggregationResultsResultOneOf as cV, type ValueResults as cW, type RangeResults as cX, type AggregationResultsScalarResult as cY, type NestedValueAggregationResult as cZ, type ValueResult as c_, type GetServiceResponse as ca, type GetServiceAvailabilityConstraintsRequest as cb, type GetServiceAvailabilityConstraintsResponse as cc, type ServiceAvailabilityConstraints as cd, type SplitInterval as ce, type UpdateServiceRequest as cf, type UpdateServiceResponse as cg, type BulkUpdateServicesRequest as ch, type MaskedService as ci, type BulkUpdateServicesByFilterRequest as cj, type DeleteServiceRequest as ck, type ParticipantNotification as cl, type DeleteServiceResponse as cm, type BulkDeleteServicesRequest as cn, type BulkDeleteServicesByFilterRequest as co, type QueryServicesRequest as cp, type QueryV2 as cq, type QueryV2PagingMethodOneOf as cr, type Sorting as cs, type Paging as ct, type CursorPaging as cu, type QueryServicesResponse as cv, type PagingMetadataV2 as cw, type Cursors as cx, type SearchServicesRequest as cy, type CursorSearch as cz, type UpdateAddOnGroupApplicationErrors as d, type SupportedLanguage as d$, type ScalarResult as d0, type NestedResultValue as d1, type NestedResultValueResultOneOf as d2, type Results as d3, type DateHistogramResult as d4, type GroupByValueResults as d5, type DateHistogramResults as d6, type NestedResults as d7, type AggregationResults as d8, type AggregationResultsResultOneOf as d9, type ValidateSlugRequest as dA, type CloneServiceRequest as dB, type CategoryNotification as dC, type Category as dD, type Empty as dE, type BenefitNotification as dF, type Benefit as dG, type EntryPass as dH, type Discount as dI, type DiscountDiscountOneOf as dJ, type Behavior as dK, type BehaviorBehaviorOneOf as dL, type UserDomainInfoChangedEvent as dM, type HtmlSitePublished as dN, type Page as dO, type SitePropertiesNotification as dP, type SitePropertiesEvent as dQ, type Properties as dR, type Categories as dS, type Locale as dT, type Address as dU, type AddressHint as dV, type GeoCoordinates as dW, type BusinessSchedule as dX, type TimePeriod as dY, type SpecialHourPeriod as dZ, type Multilingual as d_, type QueryPoliciesRequest as da, type CursorQueryPagingMethodOneOf as db, type BookingPolicyWithServices as dc, type QueryBookingFormsRequest as dd, type BookingForm as de, type FormDetails as df, type ConnectedService as dg, type CountServicesRequest as dh, type QueryLocationsRequest as di, type QueryLocationsFilter as dj, type BusinessLocations as dk, type CustomLocations as dl, type CustomerLocations as dm, type QueryCategoriesRequest as dn, type QueryCategoriesFilter as dp, type QueryServicesMultiLanguageRequest as dq, type QueryServicesMultiLanguageResponse as dr, type SetServiceLocationsRequest as ds, type RemovedLocationSessionsAction as dt, type RemovedLocationSessionsActionActionOptionsOneOf as du, type MoveToNewLocationsOptions as dv, type EnablePricingPlansForServiceRequest as dw, type InvalidPricingPlan as dx, type DisablePricingPlansForServiceRequest as dy, type SetCustomSlugRequest as dz, type ListAddOnGroupsByServiceIdResponse as e, queryBookingForms as e$, type ConsentPolicy as e0, type Translation as e1, type ChangeContext as e2, type ChangeContextPayloadOneOf as e3, type PropertiesChange as e4, type SiteCreated as e5, type SiteCloned as e6, type BaseEventMetadata as e7, type EventMetadata as e8, type ServicesQueryResult as e9, type CategoryNotificationEventWithLiterals as eA, type BenefitTypeWithLiterals as eB, type EventWithLiterals as eC, type CrudTypeWithLiterals as eD, type PlacementTypeWithLiterals as eE, type DayOfWeekWithLiterals as eF, type ResolutionMethodWithLiterals as eG, type CommonSearchWithEntityContext as eH, onServiceCreated as eI, onServiceDeleted as eJ, onServiceUpdated as eK, createAddOnGroup as eL, deleteAddOnGroup as eM, updateAddOnGroup as eN, listAddOnGroupsByServiceId as eO, setAddOnsForGroup as eP, createService as eQ, bulkCreateServices as eR, getService as eS, updateService as eT, bulkUpdateServices as eU, bulkUpdateServicesByFilter as eV, deleteService as eW, bulkDeleteServices as eX, bulkDeleteServicesByFilter as eY, queryServices as eZ, queryPolicies as e_, type ServiceSearchSpec as ea, type ServiceTypeWithLiterals as eb, type RateTypeWithLiterals as ec, type AddOnPaymentOptionsWithLiterals as ed, type LocationTypeWithLiterals as ee, type RankingOrderWithLiterals as ef, type SortingMethodTypeWithLiterals as eg, type TimingWithLiterals as eh, type CompletionRequirementWithLiterals as ei, type TaxableAddressTypeWithLiterals as ej, type WebhookIdentityTypeWithLiterals as ek, type V2RequestedFieldsWithLiterals as el, type SortOrderWithLiterals as em, type SortTypeWithLiterals as en, type SortDirectionWithLiterals as eo, type MissingValuesWithLiterals as ep, type ScalarTypeWithLiterals as eq, type NestedAggregationTypeWithLiterals as er, type IntervalWithLiterals as es, type AggregationTypeWithLiterals as et, type ModeWithLiterals as eu, type RequestedFieldsWithLiterals as ev, type ActionWithLiterals as ew, type InvalidSlugErrorWithLiterals as ex, type CloneErrorsWithLiterals as ey, type StatusWithLiterals as ez, type SetAddOnsForGroupResponse as f, countServices as f0, queryLocations as f1, queryCategories as f2, setServiceLocations as f3, enablePricingPlansForService as f4, disablePricingPlansForService as f5, setCustomSlug as f6, validateSlug as f7, cloneService as f8, 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 };