@wix/auto_sdk_bookings_services 1.0.146 → 1.0.147

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-vH2KMOVN.d.ts} +443 -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 +156 -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-vH2KMOVN.d.mts} +443 -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 +156 -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-vH2KMOVN.d.ts} +443 -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 +156 -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-vH2KMOVN.d.mts} +443 -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 +156 -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,244 @@ 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
+ /** @oneof */
3476
+ interface AddOnAddOnInfoOneOf {
3477
+ /** Duration in minutes for duration-based add-ons that extend booking service time. */
3478
+ durationInMinutes?: number;
3479
+ /** Maximum quantity customers can purchase for quantity-based add-ons. */
3480
+ maxQuantity?: number;
3481
+ }
3482
+ interface AddOnGroupDetail {
3483
+ /**
3484
+ * Group ID.
3485
+ * @format GUID
3486
+ */
3487
+ groupId?: string | null;
3488
+ /** Maximum number of add-ons customers can select from this group. */
3489
+ maxNumberOfAddOns?: number | null;
3490
+ /**
3491
+ * Group name displayed to customers.
3492
+ * @maxLength 100
3493
+ */
3494
+ groupName?: string | null;
3495
+ /**
3496
+ * Add-ons linked to this group in display order.
3497
+ * @maxSize 7
3498
+ */
3499
+ addOns?: AddOn[];
3500
+ /**
3501
+ * 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`.
3502
+ * @maxLength 200
3503
+ */
3504
+ prompt?: string | null;
3505
+ }
3506
+ interface SetAddOnsForGroupRequest {
3507
+ /**
3508
+ * Service ID containing the group.
3509
+ * @format GUID
3510
+ */
3511
+ serviceId: string | null;
3512
+ /**
3513
+ * Group ID to set add-ons for.
3514
+ * @format GUID
3515
+ */
3516
+ groupId: string | null;
3517
+ /**
3518
+ * IDs of add-ons to set for the group in display order.
3519
+ * @format GUID
3520
+ * @minSize 1
3521
+ * @maxSize 7
3522
+ */
3523
+ addOnIds: string[] | null;
3524
+ }
3525
+ interface SetAddOnsForGroupResponse {
3526
+ /** Updated add-on group. */
3527
+ addOnGroup?: AddOnGroup;
3528
+ }
3529
+ /** @docsIgnore */
3530
+ type CreateServiceValidationErrors = {
3531
+ ruleName?: 'INVALID_FORM';
3532
+ } | {
3533
+ ruleName?: 'INVALID_CATEGORY';
3534
+ } | {
3535
+ ruleName?: 'INVALID_BOOKING_POLICY';
3536
+ } | {
3537
+ ruleName?: 'INVALID_SERVICE_TYPE';
3538
+ } | {
3539
+ ruleName?: 'INVALID_SERVICE_NAME';
3540
+ } | {
3541
+ ruleName?: 'INVALID_ONLINE_BOOKING';
3542
+ } | {
3543
+ ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3544
+ } | {
3545
+ ruleName?: 'PAYMENT_REQUIRED';
3546
+ } | {
3547
+ ruleName?: 'INVALID_PAYMENT_TYPE';
3548
+ } | {
3549
+ ruleName?: 'INVALID_RATE';
3550
+ } | {
3551
+ ruleName?: 'INVALID_PAYMENT_OPTIONS';
3552
+ } | {
3553
+ ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3554
+ } | {
3555
+ ruleName?: 'INVALID_LOCATIONS';
3556
+ } | {
3557
+ ruleName?: 'INVALID_BUSINESS_LOCATION';
3558
+ } | {
3559
+ ruleName?: 'INVALID_CUSTOM_LOCATION';
3560
+ } | {
3561
+ ruleName?: 'INVALID_CUSTOMER_LOCATION';
3562
+ } | {
3563
+ ruleName?: 'INVALID_UNKNOWN_LOCATION';
3564
+ } | {
3565
+ ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3566
+ } | {
3567
+ ruleName?: 'INVALID_DEFAULT_CAPACITY';
3568
+ } | {
3569
+ ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3570
+ } | {
3571
+ ruleName?: 'INVALID_SESSION_DURATION';
3572
+ };
3573
+ /** @docsIgnore */
3574
+ type UpdateServiceValidationErrors = {
3575
+ ruleName?: 'INVALID_FORM';
3576
+ } | {
3577
+ ruleName?: 'INVALID_CATEGORY';
3578
+ } | {
3579
+ ruleName?: 'INVALID_BOOKING_POLICY';
3580
+ } | {
3581
+ ruleName?: 'INVALID_SERVICE_TYPE';
3582
+ } | {
3583
+ ruleName?: 'INVALID_SERVICE_NAME';
3584
+ } | {
3585
+ ruleName?: 'INVALID_ONLINE_BOOKING';
3586
+ } | {
3587
+ ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3588
+ } | {
3589
+ ruleName?: 'PAYMENT_REQUIRED';
3590
+ } | {
3591
+ ruleName?: 'INVALID_PAYMENT_TYPE';
3592
+ } | {
3593
+ ruleName?: 'INVALID_RATE';
3594
+ } | {
3595
+ ruleName?: 'INVALID_PAYMENT_OPTIONS';
3596
+ } | {
3597
+ ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3598
+ } | {
3599
+ ruleName?: 'INVALID_LOCATIONS';
3600
+ } | {
3601
+ ruleName?: 'INVALID_BUSINESS_LOCATION';
3602
+ } | {
3603
+ ruleName?: 'INVALID_CUSTOM_LOCATION';
3604
+ } | {
3605
+ ruleName?: 'INVALID_CUSTOMER_LOCATION';
3606
+ } | {
3607
+ ruleName?: 'INVALID_UNKNOWN_LOCATION';
3608
+ } | {
3609
+ ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3610
+ } | {
3611
+ ruleName?: 'INVALID_DEFAULT_CAPACITY';
3612
+ } | {
3613
+ ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3614
+ } | {
3615
+ ruleName?: 'INVALID_SESSION_DURATION';
3616
+ };
3617
+ /** @docsIgnore */
3618
+ type QueryBookingFormsApplicationErrors = {
3619
+ code?: 'DEFAULT_BOOKING_FORM_NOT_FOUND';
3620
+ description?: string;
3621
+ data?: Record<string, any>;
3622
+ };
3623
+ /** @docsIgnore */
3624
+ type EnablePricingPlansForServiceApplicationErrors = {
3625
+ code?: 'INVALID_PRICING_PLAN';
3626
+ description?: string;
3627
+ data?: InvalidPricingPlan;
3628
+ } | {
3629
+ code?: 'SERVICE_DOES_NOT_SUPPORT_PRICING_PLANS';
3630
+ description?: string;
3631
+ data?: Record<string, any>;
3632
+ };
3633
+ /** @docsIgnore */
3634
+ type DisablePricingPlansForServiceApplicationErrors = {
3653
3635
  code?: 'INVALID_PRICING_PLAN';
3654
3636
  description?: string;
3655
3637
  data?: InvalidPricingPlan;
@@ -3664,6 +3646,24 @@ type SetCustomSlugApplicationErrors = {
3664
3646
  type SetCustomSlugValidationErrors = {
3665
3647
  ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
3666
3648
  };
3649
+ /** @docsIgnore */
3650
+ type DeleteAddOnGroupApplicationErrors = {
3651
+ code?: 'GROUP_NOT_ON_SERVICE';
3652
+ description?: string;
3653
+ data?: Record<string, any>;
3654
+ };
3655
+ /** @docsIgnore */
3656
+ type UpdateAddOnGroupApplicationErrors = {
3657
+ code?: 'GROUP_NOT_ON_SERVICE';
3658
+ description?: string;
3659
+ data?: Record<string, any>;
3660
+ };
3661
+ /** @docsIgnore */
3662
+ type SetAddOnsForGroupApplicationErrors = {
3663
+ code?: 'ADD_ON_GROUP_NOT_FOUND';
3664
+ description?: string;
3665
+ data?: Record<string, any>;
3666
+ };
3667
3667
  interface BaseEventMetadata {
3668
3668
  /**
3669
3669
  * App instance ID.
@@ -3730,199 +3730,62 @@ interface ServiceCreatedEnvelope {
3730
3730
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
3731
3731
  * @permissionId BOOKINGS.SERVICES_READ
3732
3732
  * @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
3733
+ * @eventType wix.bookings.services.v2.service_created
3734
+ * @slug created
3849
3735
  */
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;
3736
+ declare function onServiceCreated(handler: (event: ServiceCreatedEnvelope) => void | Promise<void>): void;
3737
+ interface ServiceDeletedEnvelope {
3738
+ entity: Service;
3739
+ metadata: EventMetadata;
3859
3740
  }
3860
3741
  /**
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
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
3875
3761
  */
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;
3762
+ declare function onServiceDeleted(handler: (event: ServiceDeletedEnvelope) => void | Promise<void>): void;
3763
+ interface ServiceUpdatedEnvelope {
3764
+ entity: Service;
3765
+ metadata: EventMetadata;
3884
3766
  }
3885
3767
  /**
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
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
3908
3787
  */
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
- }
3788
+ declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
3926
3789
  /**
3927
3790
  * Creates a service.
3928
3791
  *
@@ -5068,5 +4931,142 @@ interface ValidateSlugOptions {
5068
4931
  * @fqn wix.bookings.services.v2.ServicesService.CloneService
5069
4932
  */
5070
4933
  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>>;
4934
+ /**
4935
+ * Creates a new add-on group for a service and updates the service's `addOnGroups` array.
4936
+ * @param addOnGroup - Add-on group to create.
4937
+ * @public
4938
+ * @documentationMaturity preview
4939
+ * @requiredField addOnGroup
4940
+ * @requiredField addOnGroup.name
4941
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4942
+ * @applicableIdentity APP
4943
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
4944
+ */
4945
+ declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
4946
+ interface CreateAddOnGroupOptions {
4947
+ /**
4948
+ * ID of the service to create the add-on group for.
4949
+ * @format GUID
4950
+ */
4951
+ serviceId?: string | null;
4952
+ }
4953
+ /**
4954
+ * Deletes an add-on group.
4955
+ *
4956
+ *
4957
+ * Deleting the group doesn't delete individual add-ons.
4958
+ * Any add-on not associated with another group isn't available for customers to book.
4959
+ * @param addOnGroupId - ID of the add-on group to delete.
4960
+ * @public
4961
+ * @documentationMaturity preview
4962
+ * @requiredField addOnGroupId
4963
+ * @requiredField options
4964
+ * @requiredField options.serviceId
4965
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4966
+ * @applicableIdentity APP
4967
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
4968
+ */
4969
+ declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
4970
+ __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
4971
+ }>;
4972
+ interface DeleteAddOnGroupOptions {
4973
+ /**
4974
+ * ID of the service from which to delete the add-on group.
4975
+ * @format GUID
4976
+ */
4977
+ serviceId: string | null;
4978
+ }
4979
+ /**
4980
+ * Updates an add-on group.
4981
+ *
4982
+ *
4983
+ * 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.
4984
+ * @param addOnGroup - Add-on group to update.
4985
+ * @public
4986
+ * @documentationMaturity preview
4987
+ * @requiredField addOnGroup
4988
+ * @requiredField addOnGroup._id
4989
+ * @requiredField options
4990
+ * @requiredField options.serviceId
4991
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
4992
+ * @applicableIdentity APP
4993
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
4994
+ */
4995
+ declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
4996
+ __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
4997
+ }>;
4998
+ interface UpdateAddOnGroupOptions {
4999
+ /**
5000
+ * ID of the service that contains the add-on group.
5001
+ * @format GUID
5002
+ */
5003
+ serviceId: string | null;
5004
+ }
5005
+ /**
5006
+ * Retrieves add-on groups for a service with enriched add-on details.
5007
+ *
5008
+ *
5009
+ * Add-on details are returned based on their display order.
5010
+ *
5011
+ * If you specify `groupIds`, only those groups are returned.
5012
+ * By default, all groups associated with the service are returned.
5013
+ * @param serviceId - ID of the service to retrieve add-on groups for.
5014
+ * @public
5015
+ * @documentationMaturity preview
5016
+ * @requiredField serviceId
5017
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
5018
+ * @applicableIdentity APP
5019
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
5020
+ */
5021
+ declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
5022
+ interface ListAddOnGroupsByServiceIdOptions {
5023
+ /**
5024
+ * List of group IDs to return. By default, all groups are returned.
5025
+ * @format GUID
5026
+ * @maxSize 3
5027
+ */
5028
+ groupIds?: string[] | null;
5029
+ }
5030
+ /**
5031
+ * Sets the add-ons for a specific group, replacing any existing add-ons in the group.
5032
+ *
5033
+ *
5034
+ * Call this method when you want to:
5035
+ * - Add new add-ons to a group.
5036
+ * - Remove add-ons from a group.
5037
+ * - Reorder existing add-ons for optimal customer presentation.
5038
+ *
5039
+ * The order of add-ons in the request determines their display sequence to customers.
5040
+ * All specified add-ons must already exist before adding them to a group.
5041
+ *
5042
+ * 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.
5043
+ * @param serviceId - Service ID containing the group.
5044
+ * @public
5045
+ * @documentationMaturity preview
5046
+ * @requiredField options
5047
+ * @requiredField options.addOnIds
5048
+ * @requiredField options.groupId
5049
+ * @requiredField serviceId
5050
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
5051
+ * @applicableIdentity APP
5052
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
5053
+ */
5054
+ declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
5055
+ __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
5056
+ }>;
5057
+ interface SetAddOnsForGroupOptions {
5058
+ /**
5059
+ * Group ID to set add-ons for.
5060
+ * @format GUID
5061
+ */
5062
+ groupId: string | null;
5063
+ /**
5064
+ * IDs of add-ons to set for the group in display order.
5065
+ * @format GUID
5066
+ * @minSize 1
5067
+ * @maxSize 7
5068
+ */
5069
+ addOnIds: string[] | null;
5070
+ }
5071
5071
 
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 };
5072
+ 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 };