@wix/auto_sdk_bookings_services 1.0.124 → 1.0.126

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-ITYqFvzY.d.ts → bookings-services-v2-service-services.universal-B6t2dBMg.d.ts} +298 -282
  2. package/build/cjs/index.d.ts +72 -72
  3. package/build/cjs/index.js +343 -335
  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 +253 -245
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +152 -138
  9. package/build/cjs/meta.js +185 -185
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-ITYqFvzY.d.mts → bookings-services-v2-service-services.universal-B6t2dBMg.d.mts} +298 -282
  12. package/build/es/index.d.mts +72 -72
  13. package/build/es/index.mjs +342 -335
  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 +252 -245
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +152 -138
  19. package/build/es/meta.mjs +185 -185
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-ITYqFvzY.d.ts → bookings-services-v2-service-services.universal-B6t2dBMg.d.ts} +298 -282
  22. package/build/internal/cjs/index.d.ts +72 -72
  23. package/build/internal/cjs/index.js +343 -335
  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 +253 -245
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +152 -138
  29. package/build/internal/cjs/meta.js +185 -185
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-ITYqFvzY.d.mts → bookings-services-v2-service-services.universal-B6t2dBMg.d.mts} +298 -282
  32. package/build/internal/es/index.d.mts +72 -72
  33. package/build/internal/es/index.mjs +342 -335
  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 +252 -245
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +152 -138
  39. package/build/internal/es/meta.mjs +185 -185
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -137,6 +137,8 @@ interface Service {
137
137
  * @readonly
138
138
  */
139
139
  revision?: string | null;
140
+ /** Taxable address used to calculate tax */
141
+ taxableAddress?: TaxableAddress;
140
142
  }
141
143
  declare enum ServiceType {
142
144
  /** Appointment-based service. */
@@ -1426,6 +1428,150 @@ declare enum WebhookIdentityType {
1426
1428
  }
1427
1429
  /** @enumType */
1428
1430
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1431
+ /** `TaxableAddress` defines the taxable address used for the service. */
1432
+ interface TaxableAddress {
1433
+ /** Taxable address type. */
1434
+ taxableAddressType?: TaxableAddressTypeWithLiterals;
1435
+ }
1436
+ declare enum TaxableAddressType {
1437
+ UNKNOWN_TAXABLE_ADDRESS_TYPE = "UNKNOWN_TAXABLE_ADDRESS_TYPE",
1438
+ BUSINESS = "BUSINESS",
1439
+ BILLING = "BILLING"
1440
+ }
1441
+ /** @enumType */
1442
+ type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS_TYPE' | 'BUSINESS' | 'BILLING';
1443
+ interface CreateAddOnGroupRequest {
1444
+ /** AddOnGroup to create. */
1445
+ addOnGroup: AddOnGroup;
1446
+ /**
1447
+ * ID of the service to create the AddOnGroup for.
1448
+ * @format GUID
1449
+ */
1450
+ serviceId?: string | null;
1451
+ }
1452
+ interface CreateAddOnGroupResponse {
1453
+ /** Created AddOnGroup. */
1454
+ addOnGroup?: AddOnGroup;
1455
+ }
1456
+ interface DeleteAddOnGroupRequest {
1457
+ /**
1458
+ * ID of the AddOnGroup to delete.
1459
+ * @format GUID
1460
+ */
1461
+ addOnGroupId: string | null;
1462
+ /**
1463
+ * ID of the service from which to delete the AddOnGroup.
1464
+ * @format GUID
1465
+ */
1466
+ serviceId: string | null;
1467
+ }
1468
+ interface DeleteAddOnGroupResponse {
1469
+ }
1470
+ interface UpdateAddOnGroupRequest {
1471
+ /** AddOnGroup to update. */
1472
+ addOnGroup: AddOnGroup;
1473
+ /**
1474
+ * ID of the service that contains the AddOnGroup.
1475
+ * @format GUID
1476
+ */
1477
+ serviceId: string | null;
1478
+ }
1479
+ interface UpdateAddOnGroupResponse {
1480
+ /** Updated AddOnGroup */
1481
+ addOnGroup?: AddOnGroup;
1482
+ }
1483
+ interface ListAddOnGroupsByServiceIdRequest {
1484
+ /**
1485
+ * ID of the service to retrieve AddOnGroups for.
1486
+ * @format GUID
1487
+ */
1488
+ serviceId: string | null;
1489
+ /**
1490
+ * List of group ids to return. If not provided, all groups are returned.
1491
+ * @format GUID
1492
+ * @maxSize 3
1493
+ */
1494
+ groupIds?: string[] | null;
1495
+ }
1496
+ interface ListAddOnGroupsByServiceIdResponse {
1497
+ /**
1498
+ * List of group IDs and their linked AddOns.
1499
+ * @maxSize 3
1500
+ */
1501
+ addOnGroupsDetails?: AddOnGroupDetail[];
1502
+ }
1503
+ interface AddOn extends AddOnAddOnInfoOneOf {
1504
+ /** The AddOn description. */
1505
+ durationInMinutes?: number;
1506
+ /** The AddOn max quantity. */
1507
+ maxQuantity?: number;
1508
+ /**
1509
+ * The AddOn ID.
1510
+ * @format GUID
1511
+ */
1512
+ addOnId?: string | null;
1513
+ /**
1514
+ * The AddOn name.
1515
+ * @maxLength 100
1516
+ */
1517
+ name?: string | null;
1518
+ /** The AddOn price. */
1519
+ price?: Money;
1520
+ }
1521
+ /** @oneof */
1522
+ interface AddOnAddOnInfoOneOf {
1523
+ /** The AddOn description. */
1524
+ durationInMinutes?: number;
1525
+ /** The AddOn max quantity. */
1526
+ maxQuantity?: number;
1527
+ }
1528
+ interface AddOnGroupDetail {
1529
+ /**
1530
+ * The group ID.
1531
+ * @format GUID
1532
+ */
1533
+ groupId?: string | null;
1534
+ /** The group max number of AddOns. */
1535
+ maxNumberOfAddOns?: number | null;
1536
+ /**
1537
+ * The group name.
1538
+ * @maxLength 100
1539
+ */
1540
+ groupName?: string | null;
1541
+ /**
1542
+ * The AddOns information linked to the group.
1543
+ * @maxSize 7
1544
+ */
1545
+ addOns?: AddOn[];
1546
+ /**
1547
+ * The group prompt.
1548
+ * @maxLength 200
1549
+ */
1550
+ prompt?: string | null;
1551
+ }
1552
+ interface SetAddOnsForGroupRequest {
1553
+ /**
1554
+ * The service ID to set AddOns for.
1555
+ * @format GUID
1556
+ */
1557
+ serviceId: string | null;
1558
+ /**
1559
+ * The group ID to set AddOns for.
1560
+ * @format GUID
1561
+ */
1562
+ groupId: string | null;
1563
+ /**
1564
+ * The IDs of AddOns to set.
1565
+ * @format GUID
1566
+ * @minSize 1
1567
+ * @maxSize 7
1568
+ */
1569
+ addOnIds: string[] | null;
1570
+ }
1571
+ interface SetAddOnsForGroupResponse {
1572
+ /** The updated AddOnGroup. */
1573
+ addOnGroup?: AddOnGroup;
1574
+ }
1429
1575
  interface CreateServiceRequest {
1430
1576
  /** Service to create. */
1431
1577
  service: Service;
@@ -3334,138 +3480,24 @@ interface SiteCloned {
3334
3480
  /** Origin site id. */
3335
3481
  originMetaSiteId?: string;
3336
3482
  }
3337
- interface CreateAddOnGroupRequest {
3338
- /** AddOnGroup to create. */
3339
- addOnGroup: AddOnGroup;
3340
- /**
3341
- * ID of the service to create the AddOnGroup for.
3342
- * @format GUID
3343
- */
3344
- serviceId?: string | null;
3345
- }
3346
- interface CreateAddOnGroupResponse {
3347
- /** Created AddOnGroup. */
3348
- addOnGroup?: AddOnGroup;
3349
- }
3350
- interface DeleteAddOnGroupRequest {
3351
- /**
3352
- * ID of the AddOnGroup to delete.
3353
- * @format GUID
3354
- */
3355
- addOnGroupId: string | null;
3356
- /**
3357
- * ID of the service from which to delete the AddOnGroup.
3358
- * @format GUID
3359
- */
3360
- serviceId: string | null;
3361
- }
3362
- interface DeleteAddOnGroupResponse {
3363
- }
3364
- interface UpdateAddOnGroupRequest {
3365
- /** AddOnGroup to update. */
3366
- addOnGroup: AddOnGroup;
3367
- /**
3368
- * ID of the service that contains the AddOnGroup.
3369
- * @format GUID
3370
- */
3371
- serviceId: string | null;
3372
- }
3373
- interface UpdateAddOnGroupResponse {
3374
- /** Updated AddOnGroup */
3375
- addOnGroup?: AddOnGroup;
3376
- }
3377
- interface ListAddOnGroupsByServiceIdRequest {
3378
- /**
3379
- * ID of the service to retrieve AddOnGroups for.
3380
- * @format GUID
3381
- */
3382
- serviceId: string | null;
3383
- /**
3384
- * List of group ids to return. If not provided, all groups are returned.
3385
- * @format GUID
3386
- * @maxSize 3
3387
- */
3388
- groupIds?: string[] | null;
3389
- }
3390
- interface ListAddOnGroupsByServiceIdResponse {
3391
- /**
3392
- * List of group IDs and their linked AddOns.
3393
- * @maxSize 3
3394
- */
3395
- addOnGroupsDetails?: AddOnGroupDetail[];
3396
- }
3397
- interface AddOn extends AddOnAddOnInfoOneOf {
3398
- /** The AddOn description. */
3399
- durationInMinutes?: number;
3400
- /** The AddOn max quantity. */
3401
- maxQuantity?: number;
3402
- /**
3403
- * The AddOn ID.
3404
- * @format GUID
3405
- */
3406
- addOnId?: string | null;
3407
- /**
3408
- * The AddOn name.
3409
- * @maxLength 100
3410
- */
3411
- name?: string | null;
3412
- /** The AddOn price. */
3413
- price?: Money;
3414
- }
3415
- /** @oneof */
3416
- interface AddOnAddOnInfoOneOf {
3417
- /** The AddOn description. */
3418
- durationInMinutes?: number;
3419
- /** The AddOn max quantity. */
3420
- maxQuantity?: number;
3421
- }
3422
- interface AddOnGroupDetail {
3423
- /**
3424
- * The group ID.
3425
- * @format GUID
3426
- */
3427
- groupId?: string | null;
3428
- /** The group max number of AddOns. */
3429
- maxNumberOfAddOns?: number | null;
3430
- /**
3431
- * The group name.
3432
- * @maxLength 100
3433
- */
3434
- groupName?: string | null;
3435
- /**
3436
- * The AddOns information linked to the group.
3437
- * @maxSize 7
3438
- */
3439
- addOns?: AddOn[];
3440
- /**
3441
- * The group prompt.
3442
- * @maxLength 200
3443
- */
3444
- prompt?: string | null;
3445
- }
3446
- interface SetAddOnsForGroupRequest {
3447
- /**
3448
- * The service ID to set AddOns for.
3449
- * @format GUID
3450
- */
3451
- serviceId: string | null;
3452
- /**
3453
- * The group ID to set AddOns for.
3454
- * @format GUID
3455
- */
3456
- groupId: string | null;
3457
- /**
3458
- * The IDs of AddOns to set.
3459
- * @format GUID
3460
- * @minSize 1
3461
- * @maxSize 7
3462
- */
3463
- addOnIds: string[] | null;
3464
- }
3465
- interface SetAddOnsForGroupResponse {
3466
- /** The updated AddOnGroup. */
3467
- addOnGroup?: AddOnGroup;
3468
- }
3483
+ /** @docsIgnore */
3484
+ type DeleteAddOnGroupApplicationErrors = {
3485
+ code?: 'GROUP_NOT_ON_SERVICE';
3486
+ description?: string;
3487
+ data?: Record<string, any>;
3488
+ };
3489
+ /** @docsIgnore */
3490
+ type UpdateAddOnGroupApplicationErrors = {
3491
+ code?: 'GROUP_NOT_ON_SERVICE';
3492
+ description?: string;
3493
+ data?: Record<string, any>;
3494
+ };
3495
+ /** @docsIgnore */
3496
+ type SetAddOnsForGroupApplicationErrors = {
3497
+ code?: 'ADD_ON_GROUP_NOT_FOUND';
3498
+ description?: string;
3499
+ data?: Record<string, any>;
3500
+ };
3469
3501
  /** @docsIgnore */
3470
3502
  type CreateServiceValidationErrors = {
3471
3503
  ruleName?: 'INVALID_FORM';
@@ -3586,24 +3618,6 @@ type SetCustomSlugApplicationErrors = {
3586
3618
  type SetCustomSlugValidationErrors = {
3587
3619
  ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
3588
3620
  };
3589
- /** @docsIgnore */
3590
- type DeleteAddOnGroupApplicationErrors = {
3591
- code?: 'GROUP_NOT_ON_SERVICE';
3592
- description?: string;
3593
- data?: Record<string, any>;
3594
- };
3595
- /** @docsIgnore */
3596
- type UpdateAddOnGroupApplicationErrors = {
3597
- code?: 'GROUP_NOT_ON_SERVICE';
3598
- description?: string;
3599
- data?: Record<string, any>;
3600
- };
3601
- /** @docsIgnore */
3602
- type SetAddOnsForGroupApplicationErrors = {
3603
- code?: 'ADD_ON_GROUP_NOT_FOUND';
3604
- description?: string;
3605
- data?: Record<string, any>;
3606
- };
3607
3621
  interface BaseEventMetadata {
3608
3622
  /**
3609
3623
  * App instance ID.
@@ -3726,6 +3740,126 @@ interface ServiceUpdatedEnvelope {
3726
3740
  * @slug updated
3727
3741
  */
3728
3742
  declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
3743
+ /**
3744
+ * Create a new AddOns group.
3745
+ * An AddOns group defines a collection of AddOns that can be linked to a Service,
3746
+ * with constraints such as minimum and maximum selections.
3747
+ * @param addOnGroup - AddOnGroup to create.
3748
+ * @public
3749
+ * @documentationMaturity preview
3750
+ * @requiredField addOnGroup
3751
+ * @requiredField addOnGroup.name
3752
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3753
+ * @applicableIdentity APP
3754
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
3755
+ */
3756
+ declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
3757
+ interface CreateAddOnGroupOptions {
3758
+ /**
3759
+ * ID of the service to create the AddOnGroup for.
3760
+ * @format GUID
3761
+ */
3762
+ serviceId?: string | null;
3763
+ }
3764
+ /**
3765
+ * Delete an existing AddOns group.
3766
+ * This will remove the group and unlink all associated AddOns.
3767
+ * @param addOnGroupId - ID of the AddOnGroup to delete.
3768
+ * @public
3769
+ * @documentationMaturity preview
3770
+ * @requiredField addOnGroupId
3771
+ * @requiredField options
3772
+ * @requiredField options.serviceId
3773
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3774
+ * @applicableIdentity APP
3775
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
3776
+ */
3777
+ declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
3778
+ __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
3779
+ }>;
3780
+ interface DeleteAddOnGroupOptions {
3781
+ /**
3782
+ * ID of the service from which to delete the AddOnGroup.
3783
+ * @format GUID
3784
+ */
3785
+ serviceId: string | null;
3786
+ }
3787
+ /**
3788
+ * Update an existing AddOns group.
3789
+ * This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
3790
+ * @param addOnGroup - AddOnGroup to update.
3791
+ * @public
3792
+ * @documentationMaturity preview
3793
+ * @requiredField addOnGroup
3794
+ * @requiredField addOnGroup._id
3795
+ * @requiredField options
3796
+ * @requiredField options.serviceId
3797
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
3798
+ * @applicableIdentity APP
3799
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
3800
+ */
3801
+ declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
3802
+ __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
3803
+ }>;
3804
+ interface UpdateAddOnGroupOptions {
3805
+ /**
3806
+ * ID of the service that contains the AddOnGroup.
3807
+ * @format GUID
3808
+ */
3809
+ serviceId: string | null;
3810
+ }
3811
+ /**
3812
+ * Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
3813
+ * If the group_id is specified, only the AddOns for the specified group will be returned,
3814
+ * otherwise all groups will be returned.
3815
+ * @param serviceId - ID of the service to retrieve AddOnGroups for.
3816
+ * @public
3817
+ * @documentationMaturity preview
3818
+ * @requiredField serviceId
3819
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
3820
+ * @applicableIdentity APP
3821
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
3822
+ */
3823
+ declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
3824
+ interface ListAddOnGroupsByServiceIdOptions {
3825
+ /**
3826
+ * List of group ids to return. If not provided, all groups are returned.
3827
+ * @format GUID
3828
+ * @maxSize 3
3829
+ */
3830
+ groupIds?: string[] | null;
3831
+ }
3832
+ /**
3833
+ * Sets the AddOns for a specific group.
3834
+ * The order of the AddOns in the list will be used to determine their display order.
3835
+ * @param serviceId - The service ID to set AddOns for.
3836
+ * @public
3837
+ * @documentationMaturity preview
3838
+ * @requiredField options
3839
+ * @requiredField options.addOnIds
3840
+ * @requiredField options.groupId
3841
+ * @requiredField serviceId
3842
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
3843
+ * @applicableIdentity APP
3844
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
3845
+ */
3846
+ declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
3847
+ __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
3848
+ }>;
3849
+ interface SetAddOnsForGroupOptions {
3850
+ /**
3851
+ * The group ID to set AddOns for.
3852
+ * @format GUID
3853
+ */
3854
+ groupId: string | null;
3855
+ /**
3856
+ * The IDs of AddOns to set.
3857
+ * @format GUID
3858
+ * @minSize 1
3859
+ * @maxSize 7
3860
+ */
3861
+ addOnIds: string[] | null;
3862
+ }
3729
3863
  /**
3730
3864
  * Creates a service.
3731
3865
  *
@@ -3778,7 +3912,7 @@ declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => vo
3778
3912
  * @returns Created service.
3779
3913
  * @fqn wix.bookings.services.v2.ServicesService.CreateService
3780
3914
  */
3781
- declare function createService(service: Service): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain`, 6> & {
3915
+ declare function createService(service: Service): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `taxableAddress.taxableAddressType`, 6> & {
3782
3916
  __validationErrorsType?: CreateServiceValidationErrors;
3783
3917
  }>;
3784
3918
  /**
@@ -3795,7 +3929,7 @@ declare function createService(service: Service): Promise<NonNullablePaths<Servi
3795
3929
  * @applicableIdentity APP
3796
3930
  * @fqn wix.bookings.services.v2.ServicesService.BulkCreateServices
3797
3931
  */
3798
- declare function bulkCreateServices(services: Service[], options?: BulkCreateServicesOptions): Promise<NonNullablePaths<BulkCreateServicesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.type` | `results.${number}.item.category._id` | `results.${number}.item.form._id` | `results.${number}.item.payment.rateType` | `results.${number}.item.payment.addOnOption` | `results.${number}.item.bookingPolicy._id` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
3932
+ declare function bulkCreateServices(services: Service[], options?: BulkCreateServicesOptions): Promise<NonNullablePaths<BulkCreateServicesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.type` | `results.${number}.item.category._id` | `results.${number}.item.form._id` | `results.${number}.item.payment.rateType` | `results.${number}.item.payment.addOnOption` | `results.${number}.item.bookingPolicy._id` | `results.${number}.item.taxableAddress.taxableAddressType` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
3799
3933
  interface BulkCreateServicesOptions {
3800
3934
  /** Whether to return the created service objects. */
3801
3935
  returnEntity?: boolean;
@@ -3810,7 +3944,7 @@ interface BulkCreateServicesOptions {
3810
3944
  * @returns Retrieved service.
3811
3945
  * @fqn wix.bookings.services.v2.ServicesService.GetService
3812
3946
  */
3813
- declare function getService(serviceId: string): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain`, 6>>;
3947
+ declare function getService(serviceId: string): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `taxableAddress.taxableAddressType`, 6>>;
3814
3948
  /**
3815
3949
  * Updates a service.
3816
3950
  *
@@ -3842,7 +3976,7 @@ declare function getService(serviceId: string): Promise<NonNullablePaths<Service
3842
3976
  * @returns Updated service.
3843
3977
  * @fqn wix.bookings.services.v2.ServicesService.UpdateService
3844
3978
  */
3845
- declare function updateService(_id: string, service: NonNullablePaths<UpdateService, `revision`, 2>): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain`, 6> & {
3979
+ declare function updateService(_id: string, service: NonNullablePaths<UpdateService, `revision`, 2>): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `taxableAddress.taxableAddressType`, 6> & {
3846
3980
  __validationErrorsType?: UpdateServiceValidationErrors;
3847
3981
  }>;
3848
3982
  interface UpdateService {
@@ -3981,6 +4115,8 @@ interface UpdateService {
3981
4115
  * @readonly
3982
4116
  */
3983
4117
  revision?: string | null;
4118
+ /** Taxable address used to calculate tax */
4119
+ taxableAddress?: TaxableAddress;
3984
4120
  }
3985
4121
  /**
3986
4122
  * Updates up to 100 services.
@@ -4000,7 +4136,7 @@ interface UpdateService {
4000
4136
  * @applicableIdentity APP
4001
4137
  * @fqn wix.bookings.services.v2.ServicesService.BulkUpdateServices
4002
4138
  */
4003
- declare function bulkUpdateServices(options?: NonNullablePaths<BulkUpdateServicesOptions, `services.${number}.service` | `services.${number}.service._id` | `services.${number}.service.revision`, 5>): Promise<NonNullablePaths<BulkUpdateServicesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.type` | `results.${number}.item.category._id` | `results.${number}.item.form._id` | `results.${number}.item.payment.rateType` | `results.${number}.item.payment.addOnOption` | `results.${number}.item.bookingPolicy._id` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
4139
+ declare function bulkUpdateServices(options?: NonNullablePaths<BulkUpdateServicesOptions, `services.${number}.service` | `services.${number}.service._id` | `services.${number}.service.revision`, 5>): Promise<NonNullablePaths<BulkUpdateServicesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.type` | `results.${number}.item.category._id` | `results.${number}.item.form._id` | `results.${number}.item.payment.rateType` | `results.${number}.item.payment.addOnOption` | `results.${number}.item.bookingPolicy._id` | `results.${number}.item.taxableAddress.taxableAddressType` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
4004
4140
  interface BulkUpdateServicesOptions {
4005
4141
  /**
4006
4142
  * Services to update.
@@ -4083,7 +4219,7 @@ interface DeleteServiceOptions {
4083
4219
  * @applicableIdentity APP
4084
4220
  * @fqn wix.bookings.services.v2.ServicesService.BulkDeleteServices
4085
4221
  */
4086
- declare function bulkDeleteServices(ids: string[], options?: BulkDeleteServicesOptions): Promise<NonNullablePaths<BulkDeleteServicesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.type` | `results.${number}.item.category._id` | `results.${number}.item.form._id` | `results.${number}.item.payment.rateType` | `results.${number}.item.payment.addOnOption` | `results.${number}.item.bookingPolicy._id` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
4222
+ declare function bulkDeleteServices(ids: string[], options?: BulkDeleteServicesOptions): Promise<NonNullablePaths<BulkDeleteServicesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.type` | `results.${number}.item.category._id` | `results.${number}.item.form._id` | `results.${number}.item.payment.rateType` | `results.${number}.item.payment.addOnOption` | `results.${number}.item.bookingPolicy._id` | `results.${number}.item.taxableAddress.taxableAddressType` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
4087
4223
  interface BulkDeleteServicesOptions {
4088
4224
  /**
4089
4225
  * Whether to preserve future sessions with participants.
@@ -4673,7 +4809,7 @@ interface QueryCategoriesOptions {
4673
4809
  * @applicableIdentity APP
4674
4810
  * @fqn wix.bookings.services.v2.ServicesService.SetServiceLocations
4675
4811
  */
4676
- declare function setServiceLocations(serviceId: string, locations: Location[], options?: SetServiceLocationsOptions): Promise<NonNullablePaths<SetServiceLocationsResponse, `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`, 7>>;
4812
+ declare function setServiceLocations(serviceId: string, locations: Location[], options?: SetServiceLocationsOptions): Promise<NonNullablePaths<SetServiceLocationsResponse, `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`, 7>>;
4677
4813
  interface SetServiceLocationsOptions {
4678
4814
  /**
4679
4815
  * The action to perform on sessions currently set to a removed location. For
@@ -4709,7 +4845,7 @@ interface SetServiceLocationsOptions {
4709
4845
  * @applicableIdentity APP
4710
4846
  * @fqn wix.bookings.services.v2.ServicesService.EnablePricingPlansForService
4711
4847
  */
4712
- declare function enablePricingPlansForService(serviceId: string, pricingPlanIds: string[]): Promise<NonNullablePaths<EnablePricingPlansForServiceResponse, `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`, 7> & {
4848
+ declare function enablePricingPlansForService(serviceId: string, pricingPlanIds: string[]): Promise<NonNullablePaths<EnablePricingPlansForServiceResponse, `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`, 7> & {
4713
4849
  __applicationErrorsType?: EnablePricingPlansForServiceApplicationErrors;
4714
4850
  }>;
4715
4851
  /**
@@ -4728,7 +4864,7 @@ declare function enablePricingPlansForService(serviceId: string, pricingPlanIds:
4728
4864
  * @applicableIdentity APP
4729
4865
  * @fqn wix.bookings.services.v2.ServicesService.DisablePricingPlansForService
4730
4866
  */
4731
- declare function disablePricingPlansForService(serviceId: string, options?: DisablePricingPlansForServiceOptions): Promise<NonNullablePaths<DisablePricingPlansForServiceResponse, `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`, 7> & {
4867
+ declare function disablePricingPlansForService(serviceId: string, options?: DisablePricingPlansForServiceOptions): Promise<NonNullablePaths<DisablePricingPlansForServiceResponse, `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`, 7> & {
4732
4868
  __applicationErrorsType?: DisablePricingPlansForServiceApplicationErrors;
4733
4869
  }>;
4734
4870
  interface DisablePricingPlansForServiceOptions {
@@ -4756,7 +4892,7 @@ interface DisablePricingPlansForServiceOptions {
4756
4892
  * @applicableIdentity APP
4757
4893
  * @fqn wix.bookings.services.v2.ServicesService.SetCustomSlug
4758
4894
  */
4759
- declare function setCustomSlug(serviceId: string, options?: SetCustomSlugOptions): Promise<NonNullablePaths<SetCustomSlugResponse, `slug.name` | `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`, 7> & {
4895
+ declare function setCustomSlug(serviceId: string, options?: SetCustomSlugOptions): Promise<NonNullablePaths<SetCustomSlugResponse, `slug.name` | `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`, 7> & {
4760
4896
  __applicationErrorsType?: SetCustomSlugApplicationErrors;
4761
4897
  __validationErrorsType?: SetCustomSlugValidationErrors;
4762
4898
  }>;
@@ -4860,126 +4996,6 @@ interface ValidateSlugOptions {
4860
4996
  * @applicableIdentity APP
4861
4997
  * @fqn wix.bookings.services.v2.ServicesService.CloneService
4862
4998
  */
4863
- 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` | `errors`, 7>>;
4864
- /**
4865
- * Create a new AddOns group.
4866
- * An AddOns group defines a collection of AddOns that can be linked to a Service,
4867
- * with constraints such as minimum and maximum selections.
4868
- * @param addOnGroup - AddOnGroup to create.
4869
- * @public
4870
- * @documentationMaturity preview
4871
- * @requiredField addOnGroup
4872
- * @requiredField addOnGroup.name
4873
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4874
- * @applicableIdentity APP
4875
- * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
4876
- */
4877
- declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
4878
- interface CreateAddOnGroupOptions {
4879
- /**
4880
- * ID of the service to create the AddOnGroup for.
4881
- * @format GUID
4882
- */
4883
- serviceId?: string | null;
4884
- }
4885
- /**
4886
- * Delete an existing AddOns group.
4887
- * This will remove the group and unlink all associated AddOns.
4888
- * @param addOnGroupId - ID of the AddOnGroup to delete.
4889
- * @public
4890
- * @documentationMaturity preview
4891
- * @requiredField addOnGroupId
4892
- * @requiredField options
4893
- * @requiredField options.serviceId
4894
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4895
- * @applicableIdentity APP
4896
- * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
4897
- */
4898
- declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
4899
- __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
4900
- }>;
4901
- interface DeleteAddOnGroupOptions {
4902
- /**
4903
- * ID of the service from which to delete the AddOnGroup.
4904
- * @format GUID
4905
- */
4906
- serviceId: string | null;
4907
- }
4908
- /**
4909
- * Update an existing AddOns group.
4910
- * This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
4911
- * @param addOnGroup - AddOnGroup to update.
4912
- * @public
4913
- * @documentationMaturity preview
4914
- * @requiredField addOnGroup
4915
- * @requiredField addOnGroup._id
4916
- * @requiredField options
4917
- * @requiredField options.serviceId
4918
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
4919
- * @applicableIdentity APP
4920
- * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
4921
- */
4922
- declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
4923
- __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
4924
- }>;
4925
- interface UpdateAddOnGroupOptions {
4926
- /**
4927
- * ID of the service that contains the AddOnGroup.
4928
- * @format GUID
4929
- */
4930
- serviceId: string | null;
4931
- }
4932
- /**
4933
- * Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
4934
- * If the group_id is specified, only the AddOns for the specified group will be returned,
4935
- * otherwise all groups will be returned.
4936
- * @param serviceId - ID of the service to retrieve AddOnGroups for.
4937
- * @public
4938
- * @documentationMaturity preview
4939
- * @requiredField serviceId
4940
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
4941
- * @applicableIdentity APP
4942
- * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
4943
- */
4944
- declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
4945
- interface ListAddOnGroupsByServiceIdOptions {
4946
- /**
4947
- * List of group ids to return. If not provided, all groups are returned.
4948
- * @format GUID
4949
- * @maxSize 3
4950
- */
4951
- groupIds?: string[] | null;
4952
- }
4953
- /**
4954
- * Sets the AddOns for a specific group.
4955
- * The order of the AddOns in the list will be used to determine their display order.
4956
- * @param serviceId - The service ID to set AddOns for.
4957
- * @public
4958
- * @documentationMaturity preview
4959
- * @requiredField options
4960
- * @requiredField options.addOnIds
4961
- * @requiredField options.groupId
4962
- * @requiredField serviceId
4963
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
4964
- * @applicableIdentity APP
4965
- * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
4966
- */
4967
- declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
4968
- __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
4969
- }>;
4970
- interface SetAddOnsForGroupOptions {
4971
- /**
4972
- * The group ID to set AddOns for.
4973
- * @format GUID
4974
- */
4975
- groupId: string | null;
4976
- /**
4977
- * The IDs of AddOns to set.
4978
- * @format GUID
4979
- * @minSize 1
4980
- * @maxSize 7
4981
- */
4982
- addOnIds: string[] | null;
4983
- }
4999
+ 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>>;
4984
5000
 
4985
- 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 ReschedulePolicy as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, type MediaItem as aA, type MediaItemItemOneOf as aB, type V2Category as aC, type Form as aD, type FormSettings as aE, type Payment as aF, type PaymentRateOneOf as aG, type FixedPayment as aH, type Money as aI, type CustomPayment as aJ, type VariedPayment as aK, type PaymentOptions as aL, type OnlineBooking as aM, type Conferencing as aN, type LocationOptionsOneOf as aO, type CommonAddress as aP, type CommonAddressStreetOneOf as aQ, type StreetAddress as aR, type AddressLocation as aS, type BusinessLocationOptions as aT, type CustomLocationOptions as aU, type BookingPolicy as aV, type PolicyDescription as aW, type LimitEarlyBookingPolicy as aX, type LimitLateBookingPolicy as aY, type BookAfterStartPolicy as aZ, type CancellationPolicy as a_, RankingOrder as aa, SortingMethodType as ab, WebhookIdentityType as ac, V2RequestedFields as ad, SortOrder as ae, SortType as af, SortDirection as ag, MissingValues as ah, ScalarType as ai, NestedAggregationType as aj, Interval as ak, AggregationType as al, Mode as am, RequestedFields as an, Action as ao, InvalidSlugError as ap, CloneErrors as aq, Status as ar, CategoryNotificationEvent as as, BenefitType as at, Event as au, CrudType as av, PlacementType as aw, DayOfWeek as ax, ResolutionMethod as ay, type Media as az, type UpdateServiceValidationErrors as b, type SplitInterval as b$, type WaitlistPolicy as b0, type ParticipantsPolicy as b1, type ResourcesPolicy as b2, type CancellationFeePolicy as b3, type CancellationWindow as b4, type CancellationWindowFeeOneOf as b5, type SaveCreditCardPolicy as b6, type StaffSortingPolicy as b7, type StaffSortingPolicyOptionsOneOf as b8, type RankingOptions as b9, type SetCustomSlugEvent as bA, type ServicesUrlsChanged as bB, type DomainEvent as bC, type DomainEventBodyOneOf as bD, type EntityCreatedEvent as bE, type RestoreInfo as bF, type EntityUpdatedEvent as bG, type EntityDeletedEvent as bH, type ActionEvent as bI, type MessageEnvelope as bJ, type IdentificationData as bK, type IdentificationDataIdOneOf as bL, type CreateServiceRequest as bM, type CreateServiceResponse as bN, type ValidateServiceRequest as bO, type ValidateServiceResponse as bP, type FieldViolation as bQ, type BulkCreateServicesRequest as bR, type BulkServiceResult as bS, type ItemMetadata as bT, type ApplicationError as bU, type BulkActionMetadata as bV, type GetServiceRequest as bW, type GetServiceResponse as bX, type GetServiceAvailabilityConstraintsRequest as bY, type GetServiceAvailabilityConstraintsResponse as bZ, type ServiceAvailabilityConstraints as b_, type CustomOptions as ba, type Schedule as bb, type AvailabilityConstraints as bc, type Duration as bd, type StaffMember as be, type StaffMediaItem as bf, type StaffMediaItemItemOneOf as bg, type StaffMemberDetails as bh, type ResourceGroup as bi, type ResourceIds as bj, type ServiceResource as bk, type ServiceResourceSelectionOneOf as bl, type ResourceType as bm, type Slug as bn, type URLs as bo, type ExtendedFields as bp, type SeoSchema as bq, type Keyword as br, type Tag as bs, type Settings as bt, type AddOnDetails as bu, type ReindexMessage as bv, type ReindexMessageActionOneOf as bw, type Upsert as bx, type Delete as by, type Schema as bz, type BulkUpdateServicesOptions as c, type BookingForm as c$, type UpdateServiceRequest as c0, type UpdateServiceResponse as c1, type BulkUpdateServicesRequest as c2, type MaskedService as c3, type BulkUpdateServicesByFilterRequest as c4, type DeleteServiceRequest as c5, type ParticipantNotification as c6, type DeleteServiceResponse as c7, type BulkDeleteServicesRequest as c8, type BulkDeleteServicesByFilterRequest as c9, type SearchDetails as cA, type CursorPagingMetadata as cB, type AggregationData as cC, type ValueAggregationResult as cD, type RangeAggregationResult as cE, type NestedAggregationResults as cF, type NestedAggregationResultsResultOneOf as cG, type ValueResults as cH, type RangeResults as cI, type AggregationResultsScalarResult as cJ, type NestedValueAggregationResult as cK, type ValueResult as cL, type RangeResult as cM, type ScalarResult as cN, type NestedResultValue as cO, type NestedResultValueResultOneOf as cP, type Results as cQ, type DateHistogramResult as cR, type GroupByValueResults as cS, type DateHistogramResults as cT, type NestedResults as cU, type AggregationResults as cV, type AggregationResultsResultOneOf as cW, type QueryPoliciesRequest as cX, type CursorQueryPagingMethodOneOf as cY, type BookingPolicyWithServices as cZ, type QueryBookingFormsRequest as c_, type QueryServicesRequest as ca, type QueryV2 as cb, type QueryV2PagingMethodOneOf as cc, type Sorting as cd, type Paging as ce, type CursorPaging as cf, type QueryServicesResponse as cg, type PagingMetadataV2 as ch, type Cursors as ci, type SearchServicesRequest as cj, type CursorSearch as ck, type CursorSearchPagingMethodOneOf as cl, type Aggregation as cm, type AggregationKindOneOf as cn, type RangeBucket as co, type IncludeMissingValuesOptions as cp, type ValueAggregation as cq, type ValueAggregationOptionsOneOf as cr, type RangeAggregation as cs, type ScalarAggregation as ct, type DateHistogramAggregation as cu, type NestedAggregationItem as cv, type NestedAggregationItemKindOneOf as cw, type NestedAggregation as cx, type GroupByAggregation as cy, type GroupByAggregationKindOneOf as cz, type BulkUpdateServicesResponse as d, type AddOnGroupDetail as d$, type FormDetails as d0, type ConnectedService as d1, type CountServicesRequest as d2, type QueryLocationsRequest as d3, type QueryLocationsFilter as d4, type BusinessLocations as d5, type CustomLocations as d6, type CustomerLocations as d7, type QueryCategoriesRequest as d8, type QueryCategoriesFilter as d9, type SitePropertiesNotification as dA, type SitePropertiesEvent as dB, type Properties as dC, type Categories as dD, type Locale as dE, type Address as dF, type AddressHint as dG, type GeoCoordinates as dH, type BusinessSchedule as dI, type TimePeriod as dJ, type SpecialHourPeriod as dK, type Multilingual as dL, type SupportedLanguage as dM, type ConsentPolicy as dN, type Translation as dO, type ChangeContext as dP, type ChangeContextPayloadOneOf as dQ, type PropertiesChange as dR, type SiteCreated as dS, type SiteCloned as dT, type CreateAddOnGroupRequest as dU, type DeleteAddOnGroupRequest as dV, type DeleteAddOnGroupResponse as dW, type UpdateAddOnGroupRequest as dX, type ListAddOnGroupsByServiceIdRequest as dY, type AddOn as dZ, type AddOnAddOnInfoOneOf as d_, type QueryServicesMultiLanguageRequest as da, type QueryServicesMultiLanguageResponse as db, type SetServiceLocationsRequest as dc, type RemovedLocationSessionsAction as dd, type RemovedLocationSessionsActionActionOptionsOneOf as de, type MoveToNewLocationsOptions as df, type EnablePricingPlansForServiceRequest as dg, type InvalidPricingPlan as dh, type DisablePricingPlansForServiceRequest as di, type SetCustomSlugRequest as dj, type ValidateSlugRequest as dk, type CloneServiceRequest as dl, type CategoryNotification as dm, type Category as dn, type Empty as dp, type BenefitNotification as dq, type Benefit as dr, type EntryPass as ds, type Discount as dt, type DiscountDiscountOneOf as du, type Behavior as dv, type BehaviorBehaviorOneOf as dw, type UserDomainInfoChangedEvent as dx, type HtmlSitePublished as dy, type Page as dz, type BulkUpdateServicesByFilterOptions as e, setAddOnsForGroup as e$, type SetAddOnsForGroupRequest as e0, type BaseEventMetadata as e1, type EventMetadata as e2, type ServicesQueryResult as e3, type ServiceSearchSpec as e4, type ServiceTypeWithLiterals as e5, type RateTypeWithLiterals as e6, type AddOnPaymentOptionsWithLiterals as e7, type LocationTypeWithLiterals as e8, type RankingOrderWithLiterals as e9, onServiceDeleted as eA, onServiceUpdated as eB, createService as eC, bulkCreateServices as eD, getService as eE, updateService as eF, bulkUpdateServices as eG, bulkUpdateServicesByFilter as eH, deleteService as eI, bulkDeleteServices as eJ, bulkDeleteServicesByFilter as eK, queryServices as eL, queryPolicies as eM, queryBookingForms as eN, countServices as eO, queryLocations as eP, queryCategories as eQ, setServiceLocations as eR, enablePricingPlansForService as eS, disablePricingPlansForService as eT, setCustomSlug as eU, validateSlug as eV, cloneService as eW, createAddOnGroup as eX, deleteAddOnGroup as eY, updateAddOnGroup as eZ, listAddOnGroupsByServiceId as e_, type SortingMethodTypeWithLiterals as ea, type WebhookIdentityTypeWithLiterals as eb, type V2RequestedFieldsWithLiterals as ec, type SortOrderWithLiterals as ed, type SortTypeWithLiterals as ee, type SortDirectionWithLiterals as ef, type MissingValuesWithLiterals as eg, type ScalarTypeWithLiterals as eh, type NestedAggregationTypeWithLiterals as ei, type IntervalWithLiterals as ej, type AggregationTypeWithLiterals as ek, type ModeWithLiterals as el, type RequestedFieldsWithLiterals as em, type ActionWithLiterals as en, type InvalidSlugErrorWithLiterals as eo, type CloneErrorsWithLiterals as ep, type StatusWithLiterals as eq, type CategoryNotificationEventWithLiterals as er, type BenefitTypeWithLiterals as es, type EventWithLiterals as et, type CrudTypeWithLiterals as eu, type PlacementTypeWithLiterals as ev, type DayOfWeekWithLiterals as ew, type ResolutionMethodWithLiterals as ex, type CommonSearchWithEntityContext as ey, onServiceCreated as ez, type BulkUpdateServicesByFilterResponse as f, type BulkDeleteServicesOptions as g, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServicesQueryBuilder as k, type ServiceSearch as l, type SearchServicesResponse as m, type CursorQuery as n, type QueryBookingFormsOptions as o, type QueryBookingFormsResponse as p, type QueryBookingFormsApplicationErrors as q, type CountServicesOptions as r, type CountServicesResponse as s, type QueryLocationsOptions as t, type QueryLocationsResponse as u, type QueryCategoriesOptions as v, type QueryCategoriesResponse as w, type SetServiceLocationsOptions as x, type SetServiceLocationsResponse as y, type EnablePricingPlansForServiceApplicationErrors as z };
5001
+ export { type SetCustomSlugValidationErrors as $, type AddOnGroup as A, type BulkCreateServicesOptions as B, type CreateAddOnGroupOptions as C, type DeleteAddOnGroupOptions as D, type QueryBookingFormsResponse as E, type QueryBookingFormsApplicationErrors as F, type CountServicesOptions as G, type CountServicesResponse as H, type QueryLocationsOptions as I, type QueryLocationsResponse as J, type QueryCategoriesOptions as K, type ListAddOnGroupsByServiceIdOptions as L, type QueryCategoriesResponse as M, type Location as N, type SetServiceLocationsOptions as O, type SetServiceLocationsResponse as P, type QueryPoliciesResponse as Q, type EnablePricingPlansForServiceResponse as R, type SetAddOnsForGroupOptions as S, type EnablePricingPlansForServiceApplicationErrors as T, type UpdateAddOnGroupOptions as U, type DisablePricingPlansForServiceOptions as V, type DisablePricingPlansForServiceResponse as W, type DisablePricingPlansForServiceApplicationErrors as X, type SetCustomSlugOptions as Y, type SetCustomSlugResponse as Z, type SetCustomSlugApplicationErrors as _, type CreateAddOnGroupResponse as a, type CancellationPolicy as a$, type ValidateSlugOptions as a0, type ValidateSlugResponse as a1, type CloneServiceResponse as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, type Media as aA, type MediaItem as aB, type MediaItemItemOneOf as aC, type V2Category as aD, type Form as aE, type FormSettings as aF, type Payment as aG, type PaymentRateOneOf as aH, type FixedPayment as aI, type Money as aJ, type CustomPayment as aK, type VariedPayment as aL, type PaymentOptions as aM, type OnlineBooking as aN, type Conferencing as aO, type LocationOptionsOneOf as aP, type CommonAddress as aQ, type CommonAddressStreetOneOf as aR, type StreetAddress as aS, type AddressLocation as aT, type BusinessLocationOptions as aU, type CustomLocationOptions as aV, type BookingPolicy as aW, type PolicyDescription as aX, type LimitEarlyBookingPolicy as aY, type LimitLateBookingPolicy as aZ, type BookAfterStartPolicy as a_, RankingOrder as aa, SortingMethodType as ab, WebhookIdentityType as ac, TaxableAddressType as ad, V2RequestedFields as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, Mode as an, RequestedFields as ao, Action as ap, InvalidSlugError as aq, CloneErrors as ar, Status as as, CategoryNotificationEvent as at, BenefitType as au, Event as av, CrudType as aw, PlacementType as ax, DayOfWeek as ay, ResolutionMethod as az, type DeleteAddOnGroupApplicationErrors as b, type FieldViolation as b$, type ReschedulePolicy as b0, type WaitlistPolicy as b1, type ParticipantsPolicy as b2, type ResourcesPolicy as b3, type CancellationFeePolicy as b4, type CancellationWindow as b5, type CancellationWindowFeeOneOf as b6, type SaveCreditCardPolicy as b7, type StaffSortingPolicy as b8, type StaffSortingPolicyOptionsOneOf as b9, type Schema as bA, type SetCustomSlugEvent as bB, type ServicesUrlsChanged as bC, type DomainEvent as bD, type DomainEventBodyOneOf as bE, type EntityCreatedEvent as bF, type RestoreInfo as bG, type EntityUpdatedEvent as bH, type EntityDeletedEvent as bI, type ActionEvent as bJ, type MessageEnvelope as bK, type IdentificationData as bL, type IdentificationDataIdOneOf as bM, type TaxableAddress as bN, type CreateAddOnGroupRequest as bO, type DeleteAddOnGroupRequest as bP, type DeleteAddOnGroupResponse as bQ, type UpdateAddOnGroupRequest as bR, type ListAddOnGroupsByServiceIdRequest as bS, type AddOn as bT, type AddOnAddOnInfoOneOf as bU, type AddOnGroupDetail as bV, type SetAddOnsForGroupRequest as bW, type CreateServiceRequest as bX, type CreateServiceResponse as bY, type ValidateServiceRequest as bZ, type ValidateServiceResponse as b_, type RankingOptions as ba, type CustomOptions as bb, type Schedule as bc, type AvailabilityConstraints as bd, type Duration as be, type StaffMember as bf, type StaffMediaItem as bg, type StaffMediaItemItemOneOf as bh, type StaffMemberDetails as bi, type ResourceGroup as bj, type ResourceIds as bk, type ServiceResource as bl, type ServiceResourceSelectionOneOf as bm, type ResourceType as bn, type Slug as bo, type URLs as bp, type ExtendedFields as bq, type SeoSchema as br, type Keyword as bs, type Tag as bt, type Settings as bu, type AddOnDetails as bv, type ReindexMessage as bw, type ReindexMessageActionOneOf as bx, type Upsert as by, type Delete as bz, type UpdateAddOnGroupResponse as c, type Results as c$, type BulkCreateServicesRequest as c0, type BulkServiceResult as c1, type ItemMetadata as c2, type ApplicationError as c3, type BulkActionMetadata as c4, type GetServiceRequest as c5, type GetServiceResponse as c6, type GetServiceAvailabilityConstraintsRequest as c7, type GetServiceAvailabilityConstraintsResponse as c8, type ServiceAvailabilityConstraints as c9, type IncludeMissingValuesOptions as cA, type ValueAggregation as cB, type ValueAggregationOptionsOneOf as cC, type RangeAggregation as cD, type ScalarAggregation as cE, type DateHistogramAggregation as cF, type NestedAggregationItem as cG, type NestedAggregationItemKindOneOf as cH, type NestedAggregation as cI, type GroupByAggregation as cJ, type GroupByAggregationKindOneOf as cK, type SearchDetails as cL, type CursorPagingMetadata as cM, type AggregationData as cN, type ValueAggregationResult as cO, type RangeAggregationResult as cP, type NestedAggregationResults as cQ, type NestedAggregationResultsResultOneOf as cR, type ValueResults as cS, type RangeResults as cT, type AggregationResultsScalarResult as cU, type NestedValueAggregationResult as cV, type ValueResult as cW, type RangeResult as cX, type ScalarResult as cY, type NestedResultValue as cZ, type NestedResultValueResultOneOf as c_, type SplitInterval as ca, type UpdateServiceRequest as cb, type UpdateServiceResponse as cc, type BulkUpdateServicesRequest as cd, type MaskedService as ce, type BulkUpdateServicesByFilterRequest as cf, type DeleteServiceRequest as cg, type ParticipantNotification as ch, type DeleteServiceResponse as ci, type BulkDeleteServicesRequest as cj, type BulkDeleteServicesByFilterRequest as ck, type QueryServicesRequest as cl, type QueryV2 as cm, type QueryV2PagingMethodOneOf as cn, type Sorting as co, type Paging as cp, type CursorPaging as cq, type QueryServicesResponse as cr, type PagingMetadataV2 as cs, type Cursors as ct, type SearchServicesRequest as cu, type CursorSearch as cv, type CursorSearchPagingMethodOneOf as cw, type Aggregation as cx, type AggregationKindOneOf as cy, type RangeBucket as cz, type UpdateAddOnGroupApplicationErrors as d, type ChangeContextPayloadOneOf as d$, type DateHistogramResult as d0, type GroupByValueResults as d1, type DateHistogramResults as d2, type NestedResults as d3, type AggregationResults as d4, type AggregationResultsResultOneOf as d5, type QueryPoliciesRequest as d6, type CursorQueryPagingMethodOneOf as d7, type BookingPolicyWithServices as d8, type QueryBookingFormsRequest as d9, type Empty as dA, type BenefitNotification as dB, type Benefit as dC, type EntryPass as dD, type Discount as dE, type DiscountDiscountOneOf as dF, type Behavior as dG, type BehaviorBehaviorOneOf as dH, type UserDomainInfoChangedEvent as dI, type HtmlSitePublished as dJ, type Page as dK, type SitePropertiesNotification as dL, type SitePropertiesEvent as dM, type Properties as dN, type Categories as dO, type Locale as dP, type Address as dQ, type AddressHint as dR, type GeoCoordinates as dS, type BusinessSchedule as dT, type TimePeriod as dU, type SpecialHourPeriod as dV, type Multilingual as dW, type SupportedLanguage as dX, type ConsentPolicy as dY, type Translation as dZ, type ChangeContext as d_, type BookingForm as da, type FormDetails as db, type ConnectedService as dc, type CountServicesRequest as dd, type QueryLocationsRequest as de, type QueryLocationsFilter as df, type BusinessLocations as dg, type CustomLocations as dh, type CustomerLocations as di, type QueryCategoriesRequest as dj, type QueryCategoriesFilter as dk, type QueryServicesMultiLanguageRequest as dl, type QueryServicesMultiLanguageResponse as dm, type SetServiceLocationsRequest as dn, type RemovedLocationSessionsAction as dp, type RemovedLocationSessionsActionActionOptionsOneOf as dq, type MoveToNewLocationsOptions as dr, type EnablePricingPlansForServiceRequest as ds, type InvalidPricingPlan as dt, type DisablePricingPlansForServiceRequest as du, type SetCustomSlugRequest as dv, type ValidateSlugRequest as dw, type CloneServiceRequest as dx, type CategoryNotification as dy, type Category as dz, type ListAddOnGroupsByServiceIdResponse as e, disablePricingPlansForService as e$, type PropertiesChange as e0, type SiteCreated as e1, type SiteCloned as e2, type BaseEventMetadata as e3, type EventMetadata as e4, type ServicesQueryResult as e5, type ServiceSearchSpec as e6, type ServiceTypeWithLiterals as e7, type RateTypeWithLiterals as e8, type AddOnPaymentOptionsWithLiterals as e9, type ResolutionMethodWithLiterals as eA, type CommonSearchWithEntityContext as eB, onServiceCreated as eC, onServiceDeleted as eD, onServiceUpdated as eE, createAddOnGroup as eF, deleteAddOnGroup as eG, updateAddOnGroup as eH, listAddOnGroupsByServiceId as eI, setAddOnsForGroup as eJ, createService as eK, bulkCreateServices as eL, getService as eM, updateService as eN, bulkUpdateServices as eO, bulkUpdateServicesByFilter as eP, deleteService as eQ, bulkDeleteServices as eR, bulkDeleteServicesByFilter as eS, queryServices as eT, queryPolicies as eU, queryBookingForms as eV, countServices as eW, queryLocations as eX, queryCategories as eY, setServiceLocations as eZ, enablePricingPlansForService as e_, type LocationTypeWithLiterals as ea, type RankingOrderWithLiterals as eb, type SortingMethodTypeWithLiterals as ec, type WebhookIdentityTypeWithLiterals as ed, type TaxableAddressTypeWithLiterals as ee, type V2RequestedFieldsWithLiterals as ef, type SortOrderWithLiterals as eg, type SortTypeWithLiterals as eh, type SortDirectionWithLiterals as ei, type MissingValuesWithLiterals as ej, type ScalarTypeWithLiterals as ek, type NestedAggregationTypeWithLiterals as el, type IntervalWithLiterals as em, type AggregationTypeWithLiterals as en, type ModeWithLiterals as eo, type RequestedFieldsWithLiterals as ep, type ActionWithLiterals as eq, type InvalidSlugErrorWithLiterals as er, type CloneErrorsWithLiterals as es, type StatusWithLiterals as et, type CategoryNotificationEventWithLiterals as eu, type BenefitTypeWithLiterals as ev, type EventWithLiterals as ew, type CrudTypeWithLiterals as ex, type PlacementTypeWithLiterals as ey, type DayOfWeekWithLiterals as ez, type SetAddOnsForGroupResponse as f, setCustomSlug as f0, validateSlug as f1, cloneService as f2, 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 };