@wix/auto_sdk_bookings_services 1.0.146 → 1.0.148

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-RXOrb8s-.d.ts → bookings-services-v2-service-services.universal-aR6-LfxR.d.ts} +453 -443
  2. package/build/cjs/index.d.ts +77 -77
  3. package/build/cjs/index.js +302 -302
  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 +265 -265
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +166 -156
  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-RXOrb8s-.d.mts → bookings-services-v2-service-services.universal-aR6-LfxR.d.mts} +453 -443
  12. package/build/es/index.d.mts +77 -77
  13. package/build/es/index.mjs +302 -302
  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 +265 -265
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +166 -156
  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-RXOrb8s-.d.ts → bookings-services-v2-service-services.universal-aR6-LfxR.d.ts} +453 -443
  22. package/build/internal/cjs/index.d.ts +77 -77
  23. package/build/internal/cjs/index.js +302 -302
  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 +265 -265
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +166 -156
  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-RXOrb8s-.d.mts → bookings-services-v2-service-services.universal-aR6-LfxR.d.mts} +453 -443
  32. package/build/internal/es/index.d.mts +77 -77
  33. package/build/internal/es/index.mjs +302 -302
  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 +265 -265
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +166 -156
  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
@@ -1484,138 +1484,6 @@ declare enum WebhookIdentityType {
1484
1484
  }
1485
1485
  /** @enumType */
1486
1486
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1487
- interface CreateAddOnGroupRequest {
1488
- /** Add-on group to create. */
1489
- addOnGroup: AddOnGroup;
1490
- /**
1491
- * ID of the service to create the add-on group for.
1492
- * @format GUID
1493
- */
1494
- serviceId?: string | null;
1495
- }
1496
- interface CreateAddOnGroupResponse {
1497
- /** Created add-on group. */
1498
- addOnGroup?: AddOnGroup;
1499
- }
1500
- interface DeleteAddOnGroupRequest {
1501
- /**
1502
- * ID of the add-on group to delete.
1503
- * @format GUID
1504
- */
1505
- addOnGroupId: string | null;
1506
- /**
1507
- * ID of the service from which to delete the add-on group.
1508
- * @format GUID
1509
- */
1510
- serviceId: string | null;
1511
- }
1512
- interface DeleteAddOnGroupResponse {
1513
- }
1514
- interface UpdateAddOnGroupRequest {
1515
- /** Add-on group to update. */
1516
- addOnGroup: AddOnGroup;
1517
- /**
1518
- * ID of the service that contains the add-on group.
1519
- * @format GUID
1520
- */
1521
- serviceId: string | null;
1522
- }
1523
- interface UpdateAddOnGroupResponse {
1524
- /** Updated add-on group. */
1525
- addOnGroup?: AddOnGroup;
1526
- }
1527
- interface ListAddOnGroupsByServiceIdRequest {
1528
- /**
1529
- * ID of the service to retrieve add-on groups for.
1530
- * @format GUID
1531
- */
1532
- serviceId: string | null;
1533
- /**
1534
- * List of group IDs to return. By default, all groups are returned.
1535
- * @format GUID
1536
- * @maxSize 3
1537
- */
1538
- groupIds?: string[] | null;
1539
- }
1540
- interface ListAddOnGroupsByServiceIdResponse {
1541
- /**
1542
- * List of group details with their linked add-ons.
1543
- * @maxSize 3
1544
- */
1545
- addOnGroupsDetails?: AddOnGroupDetail[];
1546
- }
1547
- interface AddOn extends AddOnAddOnInfoOneOf {
1548
- /** Duration in minutes for duration-based add-ons that extend booking service time. */
1549
- durationInMinutes?: number;
1550
- /** Maximum quantity customers can purchase for quantity-based add-ons. */
1551
- maxQuantity?: number;
1552
- /**
1553
- * Add-on ID.
1554
- * @format GUID
1555
- */
1556
- addOnId?: string | null;
1557
- /**
1558
- * Add-on name displayed to customers.
1559
- * @maxLength 100
1560
- */
1561
- name?: string | null;
1562
- /** Add-on price. */
1563
- price?: Money;
1564
- }
1565
- /** @oneof */
1566
- interface AddOnAddOnInfoOneOf {
1567
- /** Duration in minutes for duration-based add-ons that extend booking service time. */
1568
- durationInMinutes?: number;
1569
- /** Maximum quantity customers can purchase for quantity-based add-ons. */
1570
- maxQuantity?: number;
1571
- }
1572
- interface AddOnGroupDetail {
1573
- /**
1574
- * Group ID.
1575
- * @format GUID
1576
- */
1577
- groupId?: string | null;
1578
- /** Maximum number of add-ons customers can select from this group. */
1579
- maxNumberOfAddOns?: number | null;
1580
- /**
1581
- * Group name displayed to customers.
1582
- * @maxLength 100
1583
- */
1584
- groupName?: string | null;
1585
- /**
1586
- * Add-ons linked to this group in display order.
1587
- * @maxSize 7
1588
- */
1589
- addOns?: AddOn[];
1590
- /**
1591
- * 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`.
1592
- * @maxLength 200
1593
- */
1594
- prompt?: string | null;
1595
- }
1596
- interface SetAddOnsForGroupRequest {
1597
- /**
1598
- * Service ID containing the group.
1599
- * @format GUID
1600
- */
1601
- serviceId: string | null;
1602
- /**
1603
- * Group ID to set add-ons for.
1604
- * @format GUID
1605
- */
1606
- groupId: string | null;
1607
- /**
1608
- * IDs of add-ons to set for the group in display order.
1609
- * @format GUID
1610
- * @minSize 1
1611
- * @maxSize 7
1612
- */
1613
- addOnIds: string[] | null;
1614
- }
1615
- interface SetAddOnsForGroupResponse {
1616
- /** Updated add-on group. */
1617
- addOnGroup?: AddOnGroup;
1618
- }
1619
1487
  interface CreateServiceRequest {
1620
1488
  /** Service to create. */
1621
1489
  service: Service;
@@ -3526,130 +3394,254 @@ interface SiteCloned {
3526
3394
  /** Origin site id. */
3527
3395
  originMetaSiteId?: string;
3528
3396
  }
3529
- /** @docsIgnore */
3530
- type DeleteAddOnGroupApplicationErrors = {
3531
- code?: 'GROUP_NOT_ON_SERVICE';
3532
- description?: string;
3533
- data?: Record<string, any>;
3534
- };
3535
- /** @docsIgnore */
3536
- type UpdateAddOnGroupApplicationErrors = {
3537
- code?: 'GROUP_NOT_ON_SERVICE';
3538
- description?: string;
3539
- data?: Record<string, any>;
3540
- };
3541
- /** @docsIgnore */
3542
- type SetAddOnsForGroupApplicationErrors = {
3543
- code?: 'ADD_ON_GROUP_NOT_FOUND';
3544
- description?: string;
3545
- data?: Record<string, any>;
3546
- };
3547
- /** @docsIgnore */
3548
- type CreateServiceValidationErrors = {
3549
- ruleName?: 'INVALID_FORM';
3550
- } | {
3551
- ruleName?: 'INVALID_CATEGORY';
3552
- } | {
3553
- ruleName?: 'INVALID_BOOKING_POLICY';
3554
- } | {
3555
- ruleName?: 'INVALID_SERVICE_TYPE';
3556
- } | {
3557
- ruleName?: 'INVALID_SERVICE_NAME';
3558
- } | {
3559
- ruleName?: 'INVALID_ONLINE_BOOKING';
3560
- } | {
3561
- ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3562
- } | {
3563
- ruleName?: 'PAYMENT_REQUIRED';
3564
- } | {
3565
- ruleName?: 'INVALID_PAYMENT_TYPE';
3566
- } | {
3567
- ruleName?: 'INVALID_RATE';
3568
- } | {
3569
- ruleName?: 'INVALID_PAYMENT_OPTIONS';
3570
- } | {
3571
- ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3572
- } | {
3573
- ruleName?: 'INVALID_LOCATIONS';
3574
- } | {
3575
- ruleName?: 'INVALID_BUSINESS_LOCATION';
3576
- } | {
3577
- ruleName?: 'INVALID_CUSTOM_LOCATION';
3578
- } | {
3579
- ruleName?: 'INVALID_CUSTOMER_LOCATION';
3580
- } | {
3581
- ruleName?: 'INVALID_UNKNOWN_LOCATION';
3582
- } | {
3583
- ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3584
- } | {
3585
- ruleName?: 'INVALID_DEFAULT_CAPACITY';
3586
- } | {
3587
- ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3588
- } | {
3589
- ruleName?: 'INVALID_SESSION_DURATION';
3590
- };
3591
- /** @docsIgnore */
3592
- type UpdateServiceValidationErrors = {
3593
- ruleName?: 'INVALID_FORM';
3594
- } | {
3595
- ruleName?: 'INVALID_CATEGORY';
3596
- } | {
3597
- ruleName?: 'INVALID_BOOKING_POLICY';
3598
- } | {
3599
- ruleName?: 'INVALID_SERVICE_TYPE';
3600
- } | {
3601
- ruleName?: 'INVALID_SERVICE_NAME';
3602
- } | {
3603
- ruleName?: 'INVALID_ONLINE_BOOKING';
3604
- } | {
3605
- ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3606
- } | {
3607
- ruleName?: 'PAYMENT_REQUIRED';
3608
- } | {
3609
- ruleName?: 'INVALID_PAYMENT_TYPE';
3610
- } | {
3611
- ruleName?: 'INVALID_RATE';
3612
- } | {
3613
- ruleName?: 'INVALID_PAYMENT_OPTIONS';
3614
- } | {
3615
- ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3616
- } | {
3617
- ruleName?: 'INVALID_LOCATIONS';
3618
- } | {
3619
- ruleName?: 'INVALID_BUSINESS_LOCATION';
3620
- } | {
3621
- ruleName?: 'INVALID_CUSTOM_LOCATION';
3622
- } | {
3623
- ruleName?: 'INVALID_CUSTOMER_LOCATION';
3624
- } | {
3625
- ruleName?: 'INVALID_UNKNOWN_LOCATION';
3626
- } | {
3627
- ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3628
- } | {
3629
- ruleName?: 'INVALID_DEFAULT_CAPACITY';
3630
- } | {
3631
- ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3632
- } | {
3633
- ruleName?: 'INVALID_SESSION_DURATION';
3634
- };
3635
- /** @docsIgnore */
3636
- type QueryBookingFormsApplicationErrors = {
3637
- code?: 'DEFAULT_BOOKING_FORM_NOT_FOUND';
3638
- description?: string;
3639
- data?: Record<string, any>;
3640
- };
3641
- /** @docsIgnore */
3642
- type EnablePricingPlansForServiceApplicationErrors = {
3643
- code?: 'INVALID_PRICING_PLAN';
3644
- description?: string;
3645
- data?: InvalidPricingPlan;
3646
- } | {
3647
- code?: 'SERVICE_DOES_NOT_SUPPORT_PRICING_PLANS';
3648
- description?: string;
3649
- data?: Record<string, any>;
3650
- };
3651
- /** @docsIgnore */
3652
- type DisablePricingPlansForServiceApplicationErrors = {
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
+ }
3539
+ /** @docsIgnore */
3540
+ type CreateServiceValidationErrors = {
3541
+ ruleName?: 'INVALID_FORM';
3542
+ } | {
3543
+ ruleName?: 'INVALID_CATEGORY';
3544
+ } | {
3545
+ ruleName?: 'INVALID_BOOKING_POLICY';
3546
+ } | {
3547
+ ruleName?: 'INVALID_SERVICE_TYPE';
3548
+ } | {
3549
+ ruleName?: 'INVALID_SERVICE_NAME';
3550
+ } | {
3551
+ ruleName?: 'INVALID_ONLINE_BOOKING';
3552
+ } | {
3553
+ ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3554
+ } | {
3555
+ ruleName?: 'PAYMENT_REQUIRED';
3556
+ } | {
3557
+ ruleName?: 'INVALID_PAYMENT_TYPE';
3558
+ } | {
3559
+ ruleName?: 'INVALID_RATE';
3560
+ } | {
3561
+ ruleName?: 'INVALID_PAYMENT_OPTIONS';
3562
+ } | {
3563
+ ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3564
+ } | {
3565
+ ruleName?: 'INVALID_LOCATIONS';
3566
+ } | {
3567
+ ruleName?: 'INVALID_BUSINESS_LOCATION';
3568
+ } | {
3569
+ ruleName?: 'INVALID_CUSTOM_LOCATION';
3570
+ } | {
3571
+ ruleName?: 'INVALID_CUSTOMER_LOCATION';
3572
+ } | {
3573
+ ruleName?: 'INVALID_UNKNOWN_LOCATION';
3574
+ } | {
3575
+ ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3576
+ } | {
3577
+ ruleName?: 'INVALID_DEFAULT_CAPACITY';
3578
+ } | {
3579
+ ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3580
+ } | {
3581
+ ruleName?: 'INVALID_SESSION_DURATION';
3582
+ };
3583
+ /** @docsIgnore */
3584
+ type UpdateServiceValidationErrors = {
3585
+ ruleName?: 'INVALID_FORM';
3586
+ } | {
3587
+ ruleName?: 'INVALID_CATEGORY';
3588
+ } | {
3589
+ ruleName?: 'INVALID_BOOKING_POLICY';
3590
+ } | {
3591
+ ruleName?: 'INVALID_SERVICE_TYPE';
3592
+ } | {
3593
+ ruleName?: 'INVALID_SERVICE_NAME';
3594
+ } | {
3595
+ ruleName?: 'INVALID_ONLINE_BOOKING';
3596
+ } | {
3597
+ ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3598
+ } | {
3599
+ ruleName?: 'PAYMENT_REQUIRED';
3600
+ } | {
3601
+ ruleName?: 'INVALID_PAYMENT_TYPE';
3602
+ } | {
3603
+ ruleName?: 'INVALID_RATE';
3604
+ } | {
3605
+ ruleName?: 'INVALID_PAYMENT_OPTIONS';
3606
+ } | {
3607
+ ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3608
+ } | {
3609
+ ruleName?: 'INVALID_LOCATIONS';
3610
+ } | {
3611
+ ruleName?: 'INVALID_BUSINESS_LOCATION';
3612
+ } | {
3613
+ ruleName?: 'INVALID_CUSTOM_LOCATION';
3614
+ } | {
3615
+ ruleName?: 'INVALID_CUSTOMER_LOCATION';
3616
+ } | {
3617
+ ruleName?: 'INVALID_UNKNOWN_LOCATION';
3618
+ } | {
3619
+ ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3620
+ } | {
3621
+ ruleName?: 'INVALID_DEFAULT_CAPACITY';
3622
+ } | {
3623
+ ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3624
+ } | {
3625
+ ruleName?: 'INVALID_SESSION_DURATION';
3626
+ };
3627
+ /** @docsIgnore */
3628
+ type QueryBookingFormsApplicationErrors = {
3629
+ code?: 'DEFAULT_BOOKING_FORM_NOT_FOUND';
3630
+ description?: string;
3631
+ data?: Record<string, any>;
3632
+ };
3633
+ /** @docsIgnore */
3634
+ type EnablePricingPlansForServiceApplicationErrors = {
3635
+ code?: 'INVALID_PRICING_PLAN';
3636
+ description?: string;
3637
+ data?: InvalidPricingPlan;
3638
+ } | {
3639
+ code?: 'SERVICE_DOES_NOT_SUPPORT_PRICING_PLANS';
3640
+ description?: string;
3641
+ data?: Record<string, any>;
3642
+ };
3643
+ /** @docsIgnore */
3644
+ type DisablePricingPlansForServiceApplicationErrors = {
3653
3645
  code?: 'INVALID_PRICING_PLAN';
3654
3646
  description?: string;
3655
3647
  data?: InvalidPricingPlan;
@@ -3664,6 +3656,24 @@ type SetCustomSlugApplicationErrors = {
3664
3656
  type SetCustomSlugValidationErrors = {
3665
3657
  ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
3666
3658
  };
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
+ };
3667
3677
  interface BaseEventMetadata {
3668
3678
  /**
3669
3679
  * App instance ID.
@@ -3730,199 +3740,62 @@ interface ServiceCreatedEnvelope {
3730
3740
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
3731
3741
  * @permissionId BOOKINGS.SERVICES_READ
3732
3742
  * @webhook
3733
- * @eventType wix.bookings.services.v2.service_created
3734
- * @slug created
3735
- */
3736
- declare function onServiceCreated(handler: (event: ServiceCreatedEnvelope) => void | Promise<void>): void;
3737
- interface ServiceDeletedEnvelope {
3738
- entity: Service;
3739
- metadata: EventMetadata;
3740
- }
3741
- /**
3742
- * Triggered when a service is deleted.
3743
- * @permissionScope Manage Stores
3744
- * @permissionScopeId SCOPE.STORES.MANAGE-STORES
3745
- * @permissionScope Read Bookings - Public Data
3746
- * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
3747
- * @permissionScope Manage Bookings Services and Settings
3748
- * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
3749
- * @permissionScope Manage Bookings
3750
- * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
3751
- * @permissionScope Read Bookings - Including Participants
3752
- * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
3753
- * @permissionScope Read Bookings - all read permissions
3754
- * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
3755
- * @permissionScope Manage Bookings - all permissions
3756
- * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
3757
- * @permissionId BOOKINGS.SERVICES_READ
3758
- * @webhook
3759
- * @eventType wix.bookings.services.v2.service_deleted
3760
- * @slug deleted
3761
- */
3762
- declare function onServiceDeleted(handler: (event: ServiceDeletedEnvelope) => void | Promise<void>): void;
3763
- interface ServiceUpdatedEnvelope {
3764
- entity: Service;
3765
- metadata: EventMetadata;
3766
- }
3767
- /**
3768
- * Triggered when a service is updated.
3769
- * @permissionScope Manage Stores
3770
- * @permissionScopeId SCOPE.STORES.MANAGE-STORES
3771
- * @permissionScope Read Bookings - Public Data
3772
- * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
3773
- * @permissionScope Manage Bookings Services and Settings
3774
- * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
3775
- * @permissionScope Manage Bookings
3776
- * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
3777
- * @permissionScope Read Bookings - Including Participants
3778
- * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
3779
- * @permissionScope Read Bookings - all read permissions
3780
- * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
3781
- * @permissionScope Manage Bookings - all permissions
3782
- * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
3783
- * @permissionId BOOKINGS.SERVICES_READ
3784
- * @webhook
3785
- * @eventType wix.bookings.services.v2.service_updated
3786
- * @slug updated
3787
- */
3788
- declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
3789
- /**
3790
- * Creates a new add-on group for a service and updates the service's `addOnGroups` array.
3791
- * @param addOnGroup - Add-on group to create.
3792
- * @public
3793
- * @documentationMaturity preview
3794
- * @requiredField addOnGroup
3795
- * @requiredField addOnGroup.name
3796
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3797
- * @applicableIdentity APP
3798
- * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
3799
- */
3800
- declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
3801
- interface CreateAddOnGroupOptions {
3802
- /**
3803
- * ID of the service to create the add-on group for.
3804
- * @format GUID
3805
- */
3806
- serviceId?: string | null;
3807
- }
3808
- /**
3809
- * Deletes an add-on group.
3810
- *
3811
- *
3812
- * Deleting the group doesn't delete individual add-ons.
3813
- * Any add-on not associated with another group isn't available for customers to book.
3814
- * @param addOnGroupId - ID of the add-on group to delete.
3815
- * @public
3816
- * @documentationMaturity preview
3817
- * @requiredField addOnGroupId
3818
- * @requiredField options
3819
- * @requiredField options.serviceId
3820
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3821
- * @applicableIdentity APP
3822
- * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
3823
- */
3824
- declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
3825
- __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
3826
- }>;
3827
- interface DeleteAddOnGroupOptions {
3828
- /**
3829
- * ID of the service from which to delete the add-on group.
3830
- * @format GUID
3831
- */
3832
- serviceId: string | null;
3833
- }
3834
- /**
3835
- * Updates an add-on group.
3836
- *
3837
- *
3838
- * 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.
3839
- * @param addOnGroup - Add-on group to update.
3840
- * @public
3841
- * @documentationMaturity preview
3842
- * @requiredField addOnGroup
3843
- * @requiredField addOnGroup._id
3844
- * @requiredField options
3845
- * @requiredField options.serviceId
3846
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
3847
- * @applicableIdentity APP
3848
- * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
3743
+ * @eventType wix.bookings.services.v2.service_created
3744
+ * @slug created
3849
3745
  */
3850
- declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
3851
- __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
3852
- }>;
3853
- interface UpdateAddOnGroupOptions {
3854
- /**
3855
- * ID of the service that contains the add-on group.
3856
- * @format GUID
3857
- */
3858
- serviceId: string | null;
3746
+ declare function onServiceCreated(handler: (event: ServiceCreatedEnvelope) => void | Promise<void>): void;
3747
+ interface ServiceDeletedEnvelope {
3748
+ entity: Service;
3749
+ metadata: EventMetadata;
3859
3750
  }
3860
3751
  /**
3861
- * Retrieves add-on groups for a service with enriched add-on details.
3862
- *
3863
- *
3864
- * Add-on details are returned based on their display order.
3865
- *
3866
- * If you specify `groupIds`, only those groups are returned.
3867
- * By default, all groups associated with the service are returned.
3868
- * @param serviceId - ID of the service to retrieve add-on groups for.
3869
- * @public
3870
- * @documentationMaturity preview
3871
- * @requiredField serviceId
3872
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
3873
- * @applicableIdentity APP
3874
- * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
3752
+ * Triggered when a service is deleted.
3753
+ * @permissionScope Manage Stores
3754
+ * @permissionScopeId SCOPE.STORES.MANAGE-STORES
3755
+ * @permissionScope Read Bookings - Public Data
3756
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
3757
+ * @permissionScope Manage Bookings Services and Settings
3758
+ * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
3759
+ * @permissionScope Manage Bookings
3760
+ * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
3761
+ * @permissionScope Read Bookings - Including Participants
3762
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
3763
+ * @permissionScope Read Bookings - all read permissions
3764
+ * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
3765
+ * @permissionScope Manage Bookings - all permissions
3766
+ * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
3767
+ * @permissionId BOOKINGS.SERVICES_READ
3768
+ * @webhook
3769
+ * @eventType wix.bookings.services.v2.service_deleted
3770
+ * @slug deleted
3875
3771
  */
3876
- declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
3877
- interface ListAddOnGroupsByServiceIdOptions {
3878
- /**
3879
- * List of group IDs to return. By default, all groups are returned.
3880
- * @format GUID
3881
- * @maxSize 3
3882
- */
3883
- groupIds?: string[] | null;
3772
+ declare function onServiceDeleted(handler: (event: ServiceDeletedEnvelope) => void | Promise<void>): void;
3773
+ interface ServiceUpdatedEnvelope {
3774
+ entity: Service;
3775
+ metadata: EventMetadata;
3884
3776
  }
3885
3777
  /**
3886
- * Sets the add-ons for a specific group, replacing any existing add-ons in the group.
3887
- *
3888
- *
3889
- * Call this method when you want to:
3890
- * - Add new add-ons to a group.
3891
- * - Remove add-ons from a group.
3892
- * - Reorder existing add-ons for optimal customer presentation.
3893
- *
3894
- * The order of add-ons in the request determines their display sequence to customers.
3895
- * All specified add-ons must already exist before adding them to a group.
3896
- *
3897
- * 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.
3898
- * @param serviceId - Service ID containing the group.
3899
- * @public
3900
- * @documentationMaturity preview
3901
- * @requiredField options
3902
- * @requiredField options.addOnIds
3903
- * @requiredField options.groupId
3904
- * @requiredField serviceId
3905
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
3906
- * @applicableIdentity APP
3907
- * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
3778
+ * Triggered when a service is updated.
3779
+ * @permissionScope Manage Stores
3780
+ * @permissionScopeId SCOPE.STORES.MANAGE-STORES
3781
+ * @permissionScope Read Bookings - Public Data
3782
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
3783
+ * @permissionScope Manage Bookings Services and Settings
3784
+ * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
3785
+ * @permissionScope Manage Bookings
3786
+ * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
3787
+ * @permissionScope Read Bookings - Including Participants
3788
+ * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
3789
+ * @permissionScope Read Bookings - all read permissions
3790
+ * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
3791
+ * @permissionScope Manage Bookings - all permissions
3792
+ * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
3793
+ * @permissionId BOOKINGS.SERVICES_READ
3794
+ * @webhook
3795
+ * @eventType wix.bookings.services.v2.service_updated
3796
+ * @slug updated
3908
3797
  */
3909
- declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
3910
- __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
3911
- }>;
3912
- interface SetAddOnsForGroupOptions {
3913
- /**
3914
- * Group ID to set add-ons for.
3915
- * @format GUID
3916
- */
3917
- groupId: string | null;
3918
- /**
3919
- * IDs of add-ons to set for the group in display order.
3920
- * @format GUID
3921
- * @minSize 1
3922
- * @maxSize 7
3923
- */
3924
- addOnIds: string[] | null;
3925
- }
3798
+ declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
3926
3799
  /**
3927
3800
  * Creates a service.
3928
3801
  *
@@ -5068,5 +4941,142 @@ interface ValidateSlugOptions {
5068
4941
  * @fqn wix.bookings.services.v2.ServicesService.CloneService
5069
4942
  */
5070
4943
  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
+ }
5071
5081
 
5072
- 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 };
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 };