@wix/auto_sdk_bookings_services 1.0.113 → 1.0.114

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-KorTqIDU.d.ts → bookings-services-v2-service-services.universal-DKi7EvxV.d.ts} +377 -377
  2. package/build/cjs/index.d.ts +60 -60
  3. package/build/cjs/index.js +316 -316
  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 +245 -245
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +138 -138
  9. package/build/cjs/meta.js +185 -185
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{bookings-services-v2-service-services.universal-KorTqIDU.d.mts → bookings-services-v2-service-services.universal-DKi7EvxV.d.mts} +377 -377
  12. package/build/es/index.d.mts +60 -60
  13. package/build/es/index.mjs +316 -316
  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 +245 -245
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +138 -138
  19. package/build/es/meta.mjs +185 -185
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{bookings-services-v2-service-services.universal-KorTqIDU.d.ts → bookings-services-v2-service-services.universal-DKi7EvxV.d.ts} +377 -377
  22. package/build/internal/cjs/index.d.ts +60 -60
  23. package/build/internal/cjs/index.js +316 -316
  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 +245 -245
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +138 -138
  29. package/build/internal/cjs/meta.js +185 -185
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{bookings-services-v2-service-services.universal-KorTqIDU.d.mts → bookings-services-v2-service-services.universal-DKi7EvxV.d.mts} +377 -377
  32. package/build/internal/es/index.d.mts +60 -60
  33. package/build/internal/es/index.mjs +316 -316
  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 +245 -245
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +138 -138
  39. package/build/internal/es/meta.mjs +185 -185
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -1353,138 +1353,6 @@ declare enum WebhookIdentityType {
1353
1353
  }
1354
1354
  /** @enumType */
1355
1355
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1356
- interface CreateAddOnGroupRequest {
1357
- /** AddOnGroup to create. */
1358
- addOnGroup: AddOnGroup;
1359
- /**
1360
- * ID of the service to create the AddOnGroup for.
1361
- * @format GUID
1362
- */
1363
- serviceId?: string | null;
1364
- }
1365
- interface CreateAddOnGroupResponse {
1366
- /** Created AddOnGroup. */
1367
- addOnGroup?: AddOnGroup;
1368
- }
1369
- interface DeleteAddOnGroupRequest {
1370
- /**
1371
- * ID of the AddOnGroup to delete.
1372
- * @format GUID
1373
- */
1374
- addOnGroupId: string | null;
1375
- /**
1376
- * ID of the service from which to delete the AddOnGroup.
1377
- * @format GUID
1378
- */
1379
- serviceId: string | null;
1380
- }
1381
- interface DeleteAddOnGroupResponse {
1382
- }
1383
- interface UpdateAddOnGroupRequest {
1384
- /** AddOnGroup to update. */
1385
- addOnGroup: AddOnGroup;
1386
- /**
1387
- * ID of the service that contains the AddOnGroup.
1388
- * @format GUID
1389
- */
1390
- serviceId: string | null;
1391
- }
1392
- interface UpdateAddOnGroupResponse {
1393
- /** Updated AddOnGroup */
1394
- addOnGroup?: AddOnGroup;
1395
- }
1396
- interface ListAddOnGroupsByServiceIdRequest {
1397
- /**
1398
- * ID of the service to retrieve AddOnGroups for.
1399
- * @format GUID
1400
- */
1401
- serviceId: string | null;
1402
- /**
1403
- * List of group ids to return. If not provided, all groups are returned.
1404
- * @format GUID
1405
- * @maxSize 3
1406
- */
1407
- groupIds?: string[] | null;
1408
- }
1409
- interface ListAddOnGroupsByServiceIdResponse {
1410
- /**
1411
- * List of group IDs and their linked AddOns.
1412
- * @maxSize 3
1413
- */
1414
- addOnGroupsDetails?: AddOnGroupDetail[];
1415
- }
1416
- interface AddOn extends AddOnAddOnInfoOneOf {
1417
- /** The AddOn description. */
1418
- durationInMinutes?: number;
1419
- /** The AddOn max quantity. */
1420
- maxQuantity?: number;
1421
- /**
1422
- * The AddOn ID.
1423
- * @format GUID
1424
- */
1425
- addOnId?: string | null;
1426
- /**
1427
- * The AddOn name.
1428
- * @maxLength 100
1429
- */
1430
- name?: string | null;
1431
- /** The AddOn price. */
1432
- price?: Money;
1433
- }
1434
- /** @oneof */
1435
- interface AddOnAddOnInfoOneOf {
1436
- /** The AddOn description. */
1437
- durationInMinutes?: number;
1438
- /** The AddOn max quantity. */
1439
- maxQuantity?: number;
1440
- }
1441
- interface AddOnGroupDetail {
1442
- /**
1443
- * The group ID.
1444
- * @format GUID
1445
- */
1446
- groupId?: string | null;
1447
- /** The group max number of AddOns. */
1448
- maxNumberOfAddOns?: number | null;
1449
- /**
1450
- * The group name.
1451
- * @maxLength 100
1452
- */
1453
- groupName?: string | null;
1454
- /**
1455
- * The AddOns information linked to the group.
1456
- * @maxSize 7
1457
- */
1458
- addOns?: AddOn[];
1459
- /**
1460
- * The group prompt.
1461
- * @maxLength 200
1462
- */
1463
- prompt?: string | null;
1464
- }
1465
- interface SetAddOnsForGroupRequest {
1466
- /**
1467
- * The service ID to set AddOns for.
1468
- * @format GUID
1469
- */
1470
- serviceId: string | null;
1471
- /**
1472
- * The group ID to set AddOns for.
1473
- * @format GUID
1474
- */
1475
- groupId: string | null;
1476
- /**
1477
- * The IDs of AddOns to set.
1478
- * @format GUID
1479
- * @minSize 1
1480
- * @maxSize 7
1481
- */
1482
- addOnIds: string[] | null;
1483
- }
1484
- interface SetAddOnsForGroupResponse {
1485
- /** The updated AddOnGroup. */
1486
- addOnGroup?: AddOnGroup;
1487
- }
1488
1356
  interface CreateServiceRequest {
1489
1357
  /** Service to create. */
1490
1358
  service: Service;
@@ -3393,130 +3261,244 @@ interface SiteCloned {
3393
3261
  /** Origin site id. */
3394
3262
  originMetaSiteId?: string;
3395
3263
  }
3396
- /** @docsIgnore */
3397
- type DeleteAddOnGroupApplicationErrors = {
3398
- code?: 'GROUP_NOT_ON_SERVICE';
3399
- description?: string;
3400
- data?: Record<string, any>;
3401
- };
3402
- /** @docsIgnore */
3403
- type UpdateAddOnGroupApplicationErrors = {
3404
- code?: 'GROUP_NOT_ON_SERVICE';
3405
- description?: string;
3406
- data?: Record<string, any>;
3407
- };
3408
- /** @docsIgnore */
3409
- type SetAddOnsForGroupApplicationErrors = {
3410
- code?: 'ADD_ON_GROUP_NOT_FOUND';
3411
- description?: string;
3412
- data?: Record<string, any>;
3413
- };
3414
- /** @docsIgnore */
3415
- type CreateServiceValidationErrors = {
3416
- ruleName?: 'INVALID_FORM';
3417
- } | {
3418
- ruleName?: 'INVALID_CATEGORY';
3419
- } | {
3420
- ruleName?: 'INVALID_BOOKING_POLICY';
3421
- } | {
3422
- ruleName?: 'INVALID_SERVICE_TYPE';
3423
- } | {
3424
- ruleName?: 'INVALID_SERVICE_NAME';
3425
- } | {
3426
- ruleName?: 'INVALID_ONLINE_BOOKING';
3427
- } | {
3428
- ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3429
- } | {
3430
- ruleName?: 'PAYMENT_REQUIRED';
3431
- } | {
3432
- ruleName?: 'INVALID_PAYMENT_TYPE';
3433
- } | {
3434
- ruleName?: 'INVALID_RATE';
3435
- } | {
3436
- ruleName?: 'INVALID_PAYMENT_OPTIONS';
3437
- } | {
3438
- ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3439
- } | {
3440
- ruleName?: 'INVALID_LOCATIONS';
3441
- } | {
3442
- ruleName?: 'INVALID_BUSINESS_LOCATION';
3443
- } | {
3444
- ruleName?: 'INVALID_CUSTOM_LOCATION';
3445
- } | {
3446
- ruleName?: 'INVALID_CUSTOMER_LOCATION';
3447
- } | {
3448
- ruleName?: 'INVALID_UNKNOWN_LOCATION';
3449
- } | {
3450
- ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3451
- } | {
3452
- ruleName?: 'INVALID_DEFAULT_CAPACITY';
3453
- } | {
3454
- ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3455
- } | {
3456
- ruleName?: 'INVALID_SESSION_DURATION';
3457
- };
3458
- /** @docsIgnore */
3459
- type UpdateServiceValidationErrors = {
3460
- ruleName?: 'INVALID_FORM';
3461
- } | {
3462
- ruleName?: 'INVALID_CATEGORY';
3463
- } | {
3464
- ruleName?: 'INVALID_BOOKING_POLICY';
3465
- } | {
3466
- ruleName?: 'INVALID_SERVICE_TYPE';
3467
- } | {
3468
- ruleName?: 'INVALID_SERVICE_NAME';
3469
- } | {
3470
- ruleName?: 'INVALID_ONLINE_BOOKING';
3471
- } | {
3472
- ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3473
- } | {
3474
- ruleName?: 'PAYMENT_REQUIRED';
3475
- } | {
3476
- ruleName?: 'INVALID_PAYMENT_TYPE';
3477
- } | {
3478
- ruleName?: 'INVALID_RATE';
3479
- } | {
3480
- ruleName?: 'INVALID_PAYMENT_OPTIONS';
3481
- } | {
3482
- ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3483
- } | {
3484
- ruleName?: 'INVALID_LOCATIONS';
3485
- } | {
3486
- ruleName?: 'INVALID_BUSINESS_LOCATION';
3487
- } | {
3488
- ruleName?: 'INVALID_CUSTOM_LOCATION';
3489
- } | {
3490
- ruleName?: 'INVALID_CUSTOMER_LOCATION';
3491
- } | {
3492
- ruleName?: 'INVALID_UNKNOWN_LOCATION';
3493
- } | {
3494
- ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3495
- } | {
3496
- ruleName?: 'INVALID_DEFAULT_CAPACITY';
3497
- } | {
3498
- ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3499
- } | {
3500
- ruleName?: 'INVALID_SESSION_DURATION';
3501
- };
3502
- /** @docsIgnore */
3503
- type QueryBookingFormsApplicationErrors = {
3504
- code?: 'DEFAULT_BOOKING_FORM_NOT_FOUND';
3505
- description?: string;
3506
- data?: Record<string, any>;
3507
- };
3508
- /** @docsIgnore */
3509
- type EnablePricingPlansForServiceApplicationErrors = {
3510
- code?: 'INVALID_PRICING_PLAN';
3511
- description?: string;
3512
- data?: InvalidPricingPlan;
3513
- } | {
3514
- code?: 'SERVICE_DOES_NOT_SUPPORT_PRICING_PLANS';
3515
- description?: string;
3516
- data?: Record<string, any>;
3517
- };
3518
- /** @docsIgnore */
3519
- type DisablePricingPlansForServiceApplicationErrors = {
3264
+ interface CreateAddOnGroupRequest {
3265
+ /** AddOnGroup to create. */
3266
+ addOnGroup: AddOnGroup;
3267
+ /**
3268
+ * ID of the service to create the AddOnGroup for.
3269
+ * @format GUID
3270
+ */
3271
+ serviceId?: string | null;
3272
+ }
3273
+ interface CreateAddOnGroupResponse {
3274
+ /** Created AddOnGroup. */
3275
+ addOnGroup?: AddOnGroup;
3276
+ }
3277
+ interface DeleteAddOnGroupRequest {
3278
+ /**
3279
+ * ID of the AddOnGroup to delete.
3280
+ * @format GUID
3281
+ */
3282
+ addOnGroupId: string | null;
3283
+ /**
3284
+ * ID of the service from which to delete the AddOnGroup.
3285
+ * @format GUID
3286
+ */
3287
+ serviceId: string | null;
3288
+ }
3289
+ interface DeleteAddOnGroupResponse {
3290
+ }
3291
+ interface UpdateAddOnGroupRequest {
3292
+ /** AddOnGroup to update. */
3293
+ addOnGroup: AddOnGroup;
3294
+ /**
3295
+ * ID of the service that contains the AddOnGroup.
3296
+ * @format GUID
3297
+ */
3298
+ serviceId: string | null;
3299
+ }
3300
+ interface UpdateAddOnGroupResponse {
3301
+ /** Updated AddOnGroup */
3302
+ addOnGroup?: AddOnGroup;
3303
+ }
3304
+ interface ListAddOnGroupsByServiceIdRequest {
3305
+ /**
3306
+ * ID of the service to retrieve AddOnGroups for.
3307
+ * @format GUID
3308
+ */
3309
+ serviceId: string | null;
3310
+ /**
3311
+ * List of group ids to return. If not provided, all groups are returned.
3312
+ * @format GUID
3313
+ * @maxSize 3
3314
+ */
3315
+ groupIds?: string[] | null;
3316
+ }
3317
+ interface ListAddOnGroupsByServiceIdResponse {
3318
+ /**
3319
+ * List of group IDs and their linked AddOns.
3320
+ * @maxSize 3
3321
+ */
3322
+ addOnGroupsDetails?: AddOnGroupDetail[];
3323
+ }
3324
+ interface AddOn extends AddOnAddOnInfoOneOf {
3325
+ /** The AddOn description. */
3326
+ durationInMinutes?: number;
3327
+ /** The AddOn max quantity. */
3328
+ maxQuantity?: number;
3329
+ /**
3330
+ * The AddOn ID.
3331
+ * @format GUID
3332
+ */
3333
+ addOnId?: string | null;
3334
+ /**
3335
+ * The AddOn name.
3336
+ * @maxLength 100
3337
+ */
3338
+ name?: string | null;
3339
+ /** The AddOn price. */
3340
+ price?: Money;
3341
+ }
3342
+ /** @oneof */
3343
+ interface AddOnAddOnInfoOneOf {
3344
+ /** The AddOn description. */
3345
+ durationInMinutes?: number;
3346
+ /** The AddOn max quantity. */
3347
+ maxQuantity?: number;
3348
+ }
3349
+ interface AddOnGroupDetail {
3350
+ /**
3351
+ * The group ID.
3352
+ * @format GUID
3353
+ */
3354
+ groupId?: string | null;
3355
+ /** The group max number of AddOns. */
3356
+ maxNumberOfAddOns?: number | null;
3357
+ /**
3358
+ * The group name.
3359
+ * @maxLength 100
3360
+ */
3361
+ groupName?: string | null;
3362
+ /**
3363
+ * The AddOns information linked to the group.
3364
+ * @maxSize 7
3365
+ */
3366
+ addOns?: AddOn[];
3367
+ /**
3368
+ * The group prompt.
3369
+ * @maxLength 200
3370
+ */
3371
+ prompt?: string | null;
3372
+ }
3373
+ interface SetAddOnsForGroupRequest {
3374
+ /**
3375
+ * The service ID to set AddOns for.
3376
+ * @format GUID
3377
+ */
3378
+ serviceId: string | null;
3379
+ /**
3380
+ * The group ID to set AddOns for.
3381
+ * @format GUID
3382
+ */
3383
+ groupId: string | null;
3384
+ /**
3385
+ * The IDs of AddOns to set.
3386
+ * @format GUID
3387
+ * @minSize 1
3388
+ * @maxSize 7
3389
+ */
3390
+ addOnIds: string[] | null;
3391
+ }
3392
+ interface SetAddOnsForGroupResponse {
3393
+ /** The updated AddOnGroup. */
3394
+ addOnGroup?: AddOnGroup;
3395
+ }
3396
+ /** @docsIgnore */
3397
+ type CreateServiceValidationErrors = {
3398
+ ruleName?: 'INVALID_FORM';
3399
+ } | {
3400
+ ruleName?: 'INVALID_CATEGORY';
3401
+ } | {
3402
+ ruleName?: 'INVALID_BOOKING_POLICY';
3403
+ } | {
3404
+ ruleName?: 'INVALID_SERVICE_TYPE';
3405
+ } | {
3406
+ ruleName?: 'INVALID_SERVICE_NAME';
3407
+ } | {
3408
+ ruleName?: 'INVALID_ONLINE_BOOKING';
3409
+ } | {
3410
+ ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3411
+ } | {
3412
+ ruleName?: 'PAYMENT_REQUIRED';
3413
+ } | {
3414
+ ruleName?: 'INVALID_PAYMENT_TYPE';
3415
+ } | {
3416
+ ruleName?: 'INVALID_RATE';
3417
+ } | {
3418
+ ruleName?: 'INVALID_PAYMENT_OPTIONS';
3419
+ } | {
3420
+ ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3421
+ } | {
3422
+ ruleName?: 'INVALID_LOCATIONS';
3423
+ } | {
3424
+ ruleName?: 'INVALID_BUSINESS_LOCATION';
3425
+ } | {
3426
+ ruleName?: 'INVALID_CUSTOM_LOCATION';
3427
+ } | {
3428
+ ruleName?: 'INVALID_CUSTOMER_LOCATION';
3429
+ } | {
3430
+ ruleName?: 'INVALID_UNKNOWN_LOCATION';
3431
+ } | {
3432
+ ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3433
+ } | {
3434
+ ruleName?: 'INVALID_DEFAULT_CAPACITY';
3435
+ } | {
3436
+ ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3437
+ } | {
3438
+ ruleName?: 'INVALID_SESSION_DURATION';
3439
+ };
3440
+ /** @docsIgnore */
3441
+ type UpdateServiceValidationErrors = {
3442
+ ruleName?: 'INVALID_FORM';
3443
+ } | {
3444
+ ruleName?: 'INVALID_CATEGORY';
3445
+ } | {
3446
+ ruleName?: 'INVALID_BOOKING_POLICY';
3447
+ } | {
3448
+ ruleName?: 'INVALID_SERVICE_TYPE';
3449
+ } | {
3450
+ ruleName?: 'INVALID_SERVICE_NAME';
3451
+ } | {
3452
+ ruleName?: 'INVALID_ONLINE_BOOKING';
3453
+ } | {
3454
+ ruleName?: 'INVALID_STAFF_MEMBER_IDS';
3455
+ } | {
3456
+ ruleName?: 'PAYMENT_REQUIRED';
3457
+ } | {
3458
+ ruleName?: 'INVALID_PAYMENT_TYPE';
3459
+ } | {
3460
+ ruleName?: 'INVALID_RATE';
3461
+ } | {
3462
+ ruleName?: 'INVALID_PAYMENT_OPTIONS';
3463
+ } | {
3464
+ ruleName?: 'INVALID_BUSINESS_LOCATIONS';
3465
+ } | {
3466
+ ruleName?: 'INVALID_LOCATIONS';
3467
+ } | {
3468
+ ruleName?: 'INVALID_BUSINESS_LOCATION';
3469
+ } | {
3470
+ ruleName?: 'INVALID_CUSTOM_LOCATION';
3471
+ } | {
3472
+ ruleName?: 'INVALID_CUSTOMER_LOCATION';
3473
+ } | {
3474
+ ruleName?: 'INVALID_UNKNOWN_LOCATION';
3475
+ } | {
3476
+ ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
3477
+ } | {
3478
+ ruleName?: 'INVALID_DEFAULT_CAPACITY';
3479
+ } | {
3480
+ ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
3481
+ } | {
3482
+ ruleName?: 'INVALID_SESSION_DURATION';
3483
+ };
3484
+ /** @docsIgnore */
3485
+ type QueryBookingFormsApplicationErrors = {
3486
+ code?: 'DEFAULT_BOOKING_FORM_NOT_FOUND';
3487
+ description?: string;
3488
+ data?: Record<string, any>;
3489
+ };
3490
+ /** @docsIgnore */
3491
+ type EnablePricingPlansForServiceApplicationErrors = {
3492
+ code?: 'INVALID_PRICING_PLAN';
3493
+ description?: string;
3494
+ data?: InvalidPricingPlan;
3495
+ } | {
3496
+ code?: 'SERVICE_DOES_NOT_SUPPORT_PRICING_PLANS';
3497
+ description?: string;
3498
+ data?: Record<string, any>;
3499
+ };
3500
+ /** @docsIgnore */
3501
+ type DisablePricingPlansForServiceApplicationErrors = {
3520
3502
  code?: 'INVALID_PRICING_PLAN';
3521
3503
  description?: string;
3522
3504
  data?: InvalidPricingPlan;
@@ -3531,6 +3513,24 @@ type SetCustomSlugApplicationErrors = {
3531
3513
  type SetCustomSlugValidationErrors = {
3532
3514
  ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
3533
3515
  };
3516
+ /** @docsIgnore */
3517
+ type DeleteAddOnGroupApplicationErrors = {
3518
+ code?: 'GROUP_NOT_ON_SERVICE';
3519
+ description?: string;
3520
+ data?: Record<string, any>;
3521
+ };
3522
+ /** @docsIgnore */
3523
+ type UpdateAddOnGroupApplicationErrors = {
3524
+ code?: 'GROUP_NOT_ON_SERVICE';
3525
+ description?: string;
3526
+ data?: Record<string, any>;
3527
+ };
3528
+ /** @docsIgnore */
3529
+ type SetAddOnsForGroupApplicationErrors = {
3530
+ code?: 'ADD_ON_GROUP_NOT_FOUND';
3531
+ description?: string;
3532
+ data?: Record<string, any>;
3533
+ };
3534
3534
  interface BaseEventMetadata {
3535
3535
  /**
3536
3536
  * App instance ID.
@@ -3653,126 +3653,6 @@ interface ServiceUpdatedEnvelope {
3653
3653
  * @slug updated
3654
3654
  */
3655
3655
  declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
3656
- /**
3657
- * Create a new AddOns group.
3658
- * An AddOns group defines a collection of AddOns that can be linked to a Service,
3659
- * with constraints such as minimum and maximum selections.
3660
- * @param addOnGroup - AddOnGroup to create.
3661
- * @public
3662
- * @documentationMaturity preview
3663
- * @requiredField addOnGroup
3664
- * @requiredField addOnGroup.name
3665
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3666
- * @applicableIdentity APP
3667
- * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
3668
- */
3669
- declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
3670
- interface CreateAddOnGroupOptions {
3671
- /**
3672
- * ID of the service to create the AddOnGroup for.
3673
- * @format GUID
3674
- */
3675
- serviceId?: string | null;
3676
- }
3677
- /**
3678
- * Delete an existing AddOns group.
3679
- * This will remove the group and unlink all associated AddOns.
3680
- * @param addOnGroupId - ID of the AddOnGroup to delete.
3681
- * @public
3682
- * @documentationMaturity preview
3683
- * @requiredField addOnGroupId
3684
- * @requiredField options
3685
- * @requiredField options.serviceId
3686
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
3687
- * @applicableIdentity APP
3688
- * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
3689
- */
3690
- declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
3691
- __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
3692
- }>;
3693
- interface DeleteAddOnGroupOptions {
3694
- /**
3695
- * ID of the service from which to delete the AddOnGroup.
3696
- * @format GUID
3697
- */
3698
- serviceId: string | null;
3699
- }
3700
- /**
3701
- * Update an existing AddOns group.
3702
- * This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
3703
- * @param addOnGroup - AddOnGroup to update.
3704
- * @public
3705
- * @documentationMaturity preview
3706
- * @requiredField addOnGroup
3707
- * @requiredField addOnGroup._id
3708
- * @requiredField options
3709
- * @requiredField options.serviceId
3710
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
3711
- * @applicableIdentity APP
3712
- * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
3713
- */
3714
- declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
3715
- __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
3716
- }>;
3717
- interface UpdateAddOnGroupOptions {
3718
- /**
3719
- * ID of the service that contains the AddOnGroup.
3720
- * @format GUID
3721
- */
3722
- serviceId: string | null;
3723
- }
3724
- /**
3725
- * Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
3726
- * If the group_id is specified, only the AddOns for the specified group will be returned,
3727
- * otherwise all groups will be returned.
3728
- * @param serviceId - ID of the service to retrieve AddOnGroups for.
3729
- * @public
3730
- * @documentationMaturity preview
3731
- * @requiredField serviceId
3732
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
3733
- * @applicableIdentity APP
3734
- * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
3735
- */
3736
- declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
3737
- interface ListAddOnGroupsByServiceIdOptions {
3738
- /**
3739
- * List of group ids to return. If not provided, all groups are returned.
3740
- * @format GUID
3741
- * @maxSize 3
3742
- */
3743
- groupIds?: string[] | null;
3744
- }
3745
- /**
3746
- * Sets the AddOns for a specific group.
3747
- * The order of the AddOns in the list will be used to determine their display order.
3748
- * @param serviceId - The service ID to set AddOns for.
3749
- * @public
3750
- * @documentationMaturity preview
3751
- * @requiredField options
3752
- * @requiredField options.addOnIds
3753
- * @requiredField options.groupId
3754
- * @requiredField serviceId
3755
- * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
3756
- * @applicableIdentity APP
3757
- * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
3758
- */
3759
- declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
3760
- __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
3761
- }>;
3762
- interface SetAddOnsForGroupOptions {
3763
- /**
3764
- * The group ID to set AddOns for.
3765
- * @format GUID
3766
- */
3767
- groupId: string | null;
3768
- /**
3769
- * The IDs of AddOns to set.
3770
- * @format GUID
3771
- * @minSize 1
3772
- * @maxSize 7
3773
- */
3774
- addOnIds: string[] | null;
3775
- }
3776
3656
  /**
3777
3657
  * Creates a service.
3778
3658
  *
@@ -4908,5 +4788,125 @@ interface ValidateSlugOptions {
4908
4788
  * @fqn wix.bookings.services.v2.ServicesService.CloneService
4909
4789
  */
4910
4790
  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>>;
4791
+ /**
4792
+ * Create a new AddOns group.
4793
+ * An AddOns group defines a collection of AddOns that can be linked to a Service,
4794
+ * with constraints such as minimum and maximum selections.
4795
+ * @param addOnGroup - AddOnGroup to create.
4796
+ * @public
4797
+ * @documentationMaturity preview
4798
+ * @requiredField addOnGroup
4799
+ * @requiredField addOnGroup.name
4800
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4801
+ * @applicableIdentity APP
4802
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
4803
+ */
4804
+ declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
4805
+ interface CreateAddOnGroupOptions {
4806
+ /**
4807
+ * ID of the service to create the AddOnGroup for.
4808
+ * @format GUID
4809
+ */
4810
+ serviceId?: string | null;
4811
+ }
4812
+ /**
4813
+ * Delete an existing AddOns group.
4814
+ * This will remove the group and unlink all associated AddOns.
4815
+ * @param addOnGroupId - ID of the AddOnGroup to delete.
4816
+ * @public
4817
+ * @documentationMaturity preview
4818
+ * @requiredField addOnGroupId
4819
+ * @requiredField options
4820
+ * @requiredField options.serviceId
4821
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
4822
+ * @applicableIdentity APP
4823
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
4824
+ */
4825
+ declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
4826
+ __applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
4827
+ }>;
4828
+ interface DeleteAddOnGroupOptions {
4829
+ /**
4830
+ * ID of the service from which to delete the AddOnGroup.
4831
+ * @format GUID
4832
+ */
4833
+ serviceId: string | null;
4834
+ }
4835
+ /**
4836
+ * Update an existing AddOns group.
4837
+ * This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
4838
+ * @param addOnGroup - AddOnGroup to update.
4839
+ * @public
4840
+ * @documentationMaturity preview
4841
+ * @requiredField addOnGroup
4842
+ * @requiredField addOnGroup._id
4843
+ * @requiredField options
4844
+ * @requiredField options.serviceId
4845
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
4846
+ * @applicableIdentity APP
4847
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
4848
+ */
4849
+ declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
4850
+ __applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
4851
+ }>;
4852
+ interface UpdateAddOnGroupOptions {
4853
+ /**
4854
+ * ID of the service that contains the AddOnGroup.
4855
+ * @format GUID
4856
+ */
4857
+ serviceId: string | null;
4858
+ }
4859
+ /**
4860
+ * Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
4861
+ * If the group_id is specified, only the AddOns for the specified group will be returned,
4862
+ * otherwise all groups will be returned.
4863
+ * @param serviceId - ID of the service to retrieve AddOnGroups for.
4864
+ * @public
4865
+ * @documentationMaturity preview
4866
+ * @requiredField serviceId
4867
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
4868
+ * @applicableIdentity APP
4869
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
4870
+ */
4871
+ declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
4872
+ interface ListAddOnGroupsByServiceIdOptions {
4873
+ /**
4874
+ * List of group ids to return. If not provided, all groups are returned.
4875
+ * @format GUID
4876
+ * @maxSize 3
4877
+ */
4878
+ groupIds?: string[] | null;
4879
+ }
4880
+ /**
4881
+ * Sets the AddOns for a specific group.
4882
+ * The order of the AddOns in the list will be used to determine their display order.
4883
+ * @param serviceId - The service ID to set AddOns for.
4884
+ * @public
4885
+ * @documentationMaturity preview
4886
+ * @requiredField options
4887
+ * @requiredField options.addOnIds
4888
+ * @requiredField options.groupId
4889
+ * @requiredField serviceId
4890
+ * @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
4891
+ * @applicableIdentity APP
4892
+ * @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
4893
+ */
4894
+ declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
4895
+ __applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
4896
+ }>;
4897
+ interface SetAddOnsForGroupOptions {
4898
+ /**
4899
+ * The group ID to set AddOns for.
4900
+ * @format GUID
4901
+ */
4902
+ groupId: string | null;
4903
+ /**
4904
+ * The IDs of AddOns to set.
4905
+ * @format GUID
4906
+ * @minSize 1
4907
+ * @maxSize 7
4908
+ */
4909
+ addOnIds: string[] | null;
4910
+ }
4911
4911
 
4912
- 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 ParticipantsPolicy 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 V2Category as aA, type Form as aB, type FormSettings as aC, type Payment as aD, type PaymentRateOneOf as aE, type FixedPayment as aF, type Money as aG, type CustomPayment as aH, type VariedPayment as aI, type PaymentOptions as aJ, type OnlineBooking as aK, type Conferencing as aL, type LocationOptionsOneOf as aM, type CommonAddress as aN, type CommonAddressStreetOneOf as aO, type StreetAddress as aP, type AddressLocation as aQ, type BusinessLocationOptions as aR, type CustomLocationOptions as aS, type BookingPolicy as aT, type PolicyDescription as aU, type LimitEarlyBookingPolicy as aV, type LimitLateBookingPolicy as aW, type BookAfterStartPolicy as aX, type CancellationPolicy as aY, type ReschedulePolicy as aZ, type WaitlistPolicy as a_, WebhookIdentityType as aa, V2RequestedFields as ab, SortOrder as ac, SortType as ad, SortDirection as ae, MissingValues as af, ScalarType as ag, NestedAggregationType as ah, Interval as ai, AggregationType as aj, Mode as ak, RequestedFields as al, Action as am, InvalidSlugError as an, CloneErrors as ao, Status as ap, CategoryNotificationEvent as aq, BenefitType as ar, Event as as, CrudType as at, PlacementType as au, DayOfWeek as av, ResolutionMethod as aw, type Media as ax, type MediaItem as ay, type MediaItemItemOneOf as az, type DeleteAddOnGroupApplicationErrors as b, type GetServiceAvailabilityConstraintsRequest as b$, type ResourcesPolicy as b0, type CancellationFeePolicy as b1, type CancellationWindow as b2, type CancellationWindowFeeOneOf as b3, type SaveCreditCardPolicy as b4, type Schedule as b5, type AvailabilityConstraints as b6, type Duration as b7, type StaffMember as b8, type StaffMediaItem as b9, type EntityUpdatedEvent as bA, type EntityDeletedEvent as bB, type ActionEvent as bC, type MessageEnvelope as bD, type IdentificationData as bE, type IdentificationDataIdOneOf as bF, type CreateAddOnGroupRequest as bG, type DeleteAddOnGroupRequest as bH, type DeleteAddOnGroupResponse as bI, type UpdateAddOnGroupRequest as bJ, type ListAddOnGroupsByServiceIdRequest as bK, type AddOn as bL, type AddOnAddOnInfoOneOf as bM, type AddOnGroupDetail as bN, type SetAddOnsForGroupRequest as bO, type CreateServiceRequest as bP, type CreateServiceResponse as bQ, type ValidateServiceRequest as bR, type ValidateServiceResponse as bS, type FieldViolation as bT, type BulkCreateServicesRequest as bU, type BulkServiceResult as bV, type ItemMetadata as bW, type ApplicationError as bX, type BulkActionMetadata as bY, type GetServiceRequest as bZ, type GetServiceResponse as b_, type StaffMediaItemItemOneOf as ba, type StaffMemberDetails as bb, type ResourceGroup as bc, type ResourceIds as bd, type ServiceResource as be, type ServiceResourceSelectionOneOf as bf, type ResourceType as bg, type Slug as bh, type URLs as bi, type ExtendedFields as bj, type SeoSchema as bk, type Keyword as bl, type Tag as bm, type Settings as bn, type AddOnDetails as bo, type ReindexMessage as bp, type ReindexMessageActionOneOf as bq, type Upsert as br, type Delete as bs, type Schema as bt, type SetCustomSlugEvent as bu, type ServicesUrlsChanged as bv, type DomainEvent as bw, type DomainEventBodyOneOf as bx, type EntityCreatedEvent as by, type RestoreInfo as bz, type UpdateAddOnGroupResponse as c, type CursorQueryPagingMethodOneOf as c$, type GetServiceAvailabilityConstraintsResponse as c0, type ServiceAvailabilityConstraints as c1, type SplitInterval as c2, type UpdateServiceRequest as c3, type UpdateServiceResponse as c4, type BulkUpdateServicesRequest as c5, type MaskedService as c6, type BulkUpdateServicesByFilterRequest as c7, type DeleteServiceRequest as c8, type ParticipantNotification as c9, type NestedAggregation as cA, type GroupByAggregation as cB, type GroupByAggregationKindOneOf as cC, type SearchDetails as cD, type CursorPagingMetadata as cE, type AggregationData as cF, type ValueAggregationResult as cG, type RangeAggregationResult as cH, type NestedAggregationResults as cI, type NestedAggregationResultsResultOneOf as cJ, type ValueResults as cK, type RangeResults as cL, type AggregationResultsScalarResult as cM, type NestedValueAggregationResult as cN, type ValueResult as cO, type RangeResult as cP, type ScalarResult as cQ, type NestedResultValue as cR, type NestedResultValueResultOneOf as cS, type Results as cT, type DateHistogramResult as cU, type GroupByValueResults as cV, type DateHistogramResults as cW, type NestedResults as cX, type AggregationResults as cY, type AggregationResultsResultOneOf as cZ, type QueryPoliciesRequest as c_, type DeleteServiceResponse as ca, type BulkDeleteServicesRequest as cb, type BulkDeleteServicesByFilterRequest as cc, type QueryServicesRequest as cd, type QueryV2 as ce, type QueryV2PagingMethodOneOf as cf, type Sorting as cg, type Paging as ch, type CursorPaging as ci, type QueryServicesResponse as cj, type PagingMetadataV2 as ck, type Cursors as cl, type SearchServicesRequest as cm, type CursorSearch as cn, type CursorSearchPagingMethodOneOf as co, type Aggregation as cp, type AggregationKindOneOf as cq, type RangeBucket as cr, type IncludeMissingValuesOptions as cs, type ValueAggregation as ct, type ValueAggregationOptionsOneOf as cu, type RangeAggregation as cv, type ScalarAggregation as cw, type DateHistogramAggregation as cx, type NestedAggregationItem as cy, type NestedAggregationItemKindOneOf as cz, type UpdateAddOnGroupApplicationErrors as d, type ServiceTypeWithLiterals as d$, type BookingPolicyWithServices as d0, type QueryBookingFormsRequest as d1, type BookingForm as d2, type FormDetails as d3, type ConnectedService as d4, type CountServicesRequest as d5, type QueryLocationsRequest as d6, type QueryLocationsFilter as d7, type BusinessLocations as d8, type CustomLocations as d9, type UserDomainInfoChangedEvent as dA, type HtmlSitePublished as dB, type Page as dC, type SitePropertiesNotification as dD, type SitePropertiesEvent as dE, type Properties as dF, type Categories as dG, type Locale as dH, type Address as dI, type AddressHint as dJ, type GeoCoordinates as dK, type BusinessSchedule as dL, type TimePeriod as dM, type SpecialHourPeriod as dN, type Multilingual as dO, type SupportedLanguage as dP, type ConsentPolicy as dQ, type Translation as dR, type ChangeContext as dS, type ChangeContextPayloadOneOf as dT, type PropertiesChange as dU, type SiteCreated as dV, type SiteCloned as dW, type BaseEventMetadata as dX, type EventMetadata as dY, type ServicesQueryResult as dZ, type ServiceSearchSpec as d_, type CustomerLocations as da, type QueryCategoriesRequest as db, type QueryCategoriesFilter as dc, type QueryServicesMultiLanguageRequest as dd, type QueryServicesMultiLanguageResponse as de, type SetServiceLocationsRequest as df, type RemovedLocationSessionsAction as dg, type RemovedLocationSessionsActionActionOptionsOneOf as dh, type MoveToNewLocationsOptions as di, type EnablePricingPlansForServiceRequest as dj, type InvalidPricingPlan as dk, type DisablePricingPlansForServiceRequest as dl, type SetCustomSlugRequest as dm, type ValidateSlugRequest as dn, type CloneServiceRequest as dp, type CategoryNotification as dq, type Category as dr, type Empty as ds, type BenefitNotification as dt, type Benefit as du, type EntryPass as dv, type Discount as dw, type DiscountDiscountOneOf as dx, type Behavior as dy, type BehaviorBehaviorOneOf as dz, type ListAddOnGroupsByServiceIdResponse as e, type RateTypeWithLiterals as e0, type AddOnPaymentOptionsWithLiterals as e1, type LocationTypeWithLiterals as e2, type WebhookIdentityTypeWithLiterals as e3, type V2RequestedFieldsWithLiterals as e4, type SortOrderWithLiterals as e5, type SortTypeWithLiterals as e6, type SortDirectionWithLiterals as e7, type MissingValuesWithLiterals as e8, type ScalarTypeWithLiterals as e9, bulkCreateServices as eA, getService as eB, updateService as eC, bulkUpdateServices as eD, bulkUpdateServicesByFilter as eE, deleteService as eF, bulkDeleteServices as eG, bulkDeleteServicesByFilter as eH, queryServices as eI, queryPolicies as eJ, queryBookingForms as eK, countServices as eL, queryLocations as eM, queryCategories as eN, setServiceLocations as eO, enablePricingPlansForService as eP, disablePricingPlansForService as eQ, setCustomSlug as eR, validateSlug as eS, cloneService as eT, type NestedAggregationTypeWithLiterals as ea, type IntervalWithLiterals as eb, type AggregationTypeWithLiterals as ec, type ModeWithLiterals as ed, type RequestedFieldsWithLiterals as ee, type ActionWithLiterals as ef, type InvalidSlugErrorWithLiterals as eg, type CloneErrorsWithLiterals as eh, type StatusWithLiterals as ei, type CategoryNotificationEventWithLiterals as ej, type BenefitTypeWithLiterals as ek, type EventWithLiterals as el, type CrudTypeWithLiterals as em, type PlacementTypeWithLiterals as en, type DayOfWeekWithLiterals as eo, type ResolutionMethodWithLiterals as ep, type CommonSearchWithEntityContext as eq, onServiceCreated as er, onServiceDeleted as es, onServiceUpdated as et, createAddOnGroup as eu, deleteAddOnGroup as ev, updateAddOnGroup as ew, listAddOnGroupsByServiceId as ex, setAddOnsForGroup as ey, createService as ez, type SetAddOnsForGroupResponse as f, 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 };
4912
+ 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 ParticipantsPolicy 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 V2Category as aA, type Form as aB, type FormSettings as aC, type Payment as aD, type PaymentRateOneOf as aE, type FixedPayment as aF, type Money as aG, type CustomPayment as aH, type VariedPayment as aI, type PaymentOptions as aJ, type OnlineBooking as aK, type Conferencing as aL, type LocationOptionsOneOf as aM, type CommonAddress as aN, type CommonAddressStreetOneOf as aO, type StreetAddress as aP, type AddressLocation as aQ, type BusinessLocationOptions as aR, type CustomLocationOptions as aS, type BookingPolicy as aT, type PolicyDescription as aU, type LimitEarlyBookingPolicy as aV, type LimitLateBookingPolicy as aW, type BookAfterStartPolicy as aX, type CancellationPolicy as aY, type ReschedulePolicy as aZ, type WaitlistPolicy as a_, WebhookIdentityType as aa, V2RequestedFields as ab, SortOrder as ac, SortType as ad, SortDirection as ae, MissingValues as af, ScalarType as ag, NestedAggregationType as ah, Interval as ai, AggregationType as aj, Mode as ak, RequestedFields as al, Action as am, InvalidSlugError as an, CloneErrors as ao, Status as ap, CategoryNotificationEvent as aq, BenefitType as ar, Event as as, CrudType as at, PlacementType as au, DayOfWeek as av, ResolutionMethod as aw, type Media as ax, type MediaItem as ay, type MediaItemItemOneOf as az, type UpdateServiceValidationErrors as b, type DeleteServiceRequest as b$, type ResourcesPolicy as b0, type CancellationFeePolicy as b1, type CancellationWindow as b2, type CancellationWindowFeeOneOf as b3, type SaveCreditCardPolicy as b4, type Schedule as b5, type AvailabilityConstraints as b6, type Duration as b7, type StaffMember as b8, type StaffMediaItem as b9, type EntityUpdatedEvent as bA, type EntityDeletedEvent as bB, type ActionEvent as bC, type MessageEnvelope as bD, type IdentificationData as bE, type IdentificationDataIdOneOf as bF, type CreateServiceRequest as bG, type CreateServiceResponse as bH, type ValidateServiceRequest as bI, type ValidateServiceResponse as bJ, type FieldViolation as bK, type BulkCreateServicesRequest as bL, type BulkServiceResult as bM, type ItemMetadata as bN, type ApplicationError as bO, type BulkActionMetadata as bP, type GetServiceRequest as bQ, type GetServiceResponse as bR, type GetServiceAvailabilityConstraintsRequest as bS, type GetServiceAvailabilityConstraintsResponse as bT, type ServiceAvailabilityConstraints as bU, type SplitInterval as bV, type UpdateServiceRequest as bW, type UpdateServiceResponse as bX, type BulkUpdateServicesRequest as bY, type MaskedService as bZ, type BulkUpdateServicesByFilterRequest as b_, type StaffMediaItemItemOneOf as ba, type StaffMemberDetails as bb, type ResourceGroup as bc, type ResourceIds as bd, type ServiceResource as be, type ServiceResourceSelectionOneOf as bf, type ResourceType as bg, type Slug as bh, type URLs as bi, type ExtendedFields as bj, type SeoSchema as bk, type Keyword as bl, type Tag as bm, type Settings as bn, type AddOnDetails as bo, type ReindexMessage as bp, type ReindexMessageActionOneOf as bq, type Upsert as br, type Delete as bs, type Schema as bt, type SetCustomSlugEvent as bu, type ServicesUrlsChanged as bv, type DomainEvent as bw, type DomainEventBodyOneOf as bx, type EntityCreatedEvent as by, type RestoreInfo as bz, type BulkUpdateServicesOptions as c, type BusinessLocations as c$, type ParticipantNotification as c0, type DeleteServiceResponse as c1, type BulkDeleteServicesRequest as c2, type BulkDeleteServicesByFilterRequest as c3, type QueryServicesRequest as c4, type QueryV2 as c5, type QueryV2PagingMethodOneOf as c6, type Sorting as c7, type Paging as c8, type CursorPaging as c9, type NestedAggregationResultsResultOneOf as cA, type ValueResults as cB, type RangeResults as cC, type AggregationResultsScalarResult as cD, type NestedValueAggregationResult as cE, type ValueResult as cF, type RangeResult as cG, type ScalarResult as cH, type NestedResultValue as cI, type NestedResultValueResultOneOf as cJ, type Results as cK, type DateHistogramResult as cL, type GroupByValueResults as cM, type DateHistogramResults as cN, type NestedResults as cO, type AggregationResults as cP, type AggregationResultsResultOneOf as cQ, type QueryPoliciesRequest as cR, type CursorQueryPagingMethodOneOf as cS, type BookingPolicyWithServices as cT, type QueryBookingFormsRequest as cU, type BookingForm as cV, type FormDetails as cW, type ConnectedService as cX, type CountServicesRequest as cY, type QueryLocationsRequest as cZ, type QueryLocationsFilter as c_, type QueryServicesResponse as ca, type PagingMetadataV2 as cb, type Cursors as cc, type SearchServicesRequest as cd, type CursorSearch as ce, type CursorSearchPagingMethodOneOf as cf, type Aggregation as cg, type AggregationKindOneOf as ch, type RangeBucket as ci, type IncludeMissingValuesOptions as cj, type ValueAggregation as ck, type ValueAggregationOptionsOneOf as cl, type RangeAggregation as cm, type ScalarAggregation as cn, type DateHistogramAggregation as co, type NestedAggregationItem as cp, type NestedAggregationItemKindOneOf as cq, type NestedAggregation as cr, type GroupByAggregation as cs, type GroupByAggregationKindOneOf as ct, type SearchDetails as cu, type CursorPagingMetadata as cv, type AggregationData as cw, type ValueAggregationResult as cx, type RangeAggregationResult as cy, type NestedAggregationResults as cz, type BulkUpdateServicesResponse as d, type ServiceTypeWithLiterals as d$, type CustomLocations as d0, type CustomerLocations as d1, type QueryCategoriesRequest as d2, type QueryCategoriesFilter as d3, type QueryServicesMultiLanguageRequest as d4, type QueryServicesMultiLanguageResponse as d5, type SetServiceLocationsRequest as d6, type RemovedLocationSessionsAction as d7, type RemovedLocationSessionsActionActionOptionsOneOf as d8, type MoveToNewLocationsOptions as d9, type AddressHint as dA, type GeoCoordinates as dB, type BusinessSchedule as dC, type TimePeriod as dD, type SpecialHourPeriod as dE, type Multilingual as dF, type SupportedLanguage as dG, type ConsentPolicy as dH, type Translation as dI, type ChangeContext as dJ, type ChangeContextPayloadOneOf as dK, type PropertiesChange as dL, type SiteCreated as dM, type SiteCloned as dN, type CreateAddOnGroupRequest as dO, type DeleteAddOnGroupRequest as dP, type DeleteAddOnGroupResponse as dQ, type UpdateAddOnGroupRequest as dR, type ListAddOnGroupsByServiceIdRequest as dS, type AddOn as dT, type AddOnAddOnInfoOneOf as dU, type AddOnGroupDetail as dV, type SetAddOnsForGroupRequest as dW, type BaseEventMetadata as dX, type EventMetadata as dY, type ServicesQueryResult as dZ, type ServiceSearchSpec as d_, type EnablePricingPlansForServiceRequest as da, type InvalidPricingPlan as db, type DisablePricingPlansForServiceRequest as dc, type SetCustomSlugRequest as dd, type ValidateSlugRequest as de, type CloneServiceRequest as df, type CategoryNotification as dg, type Category as dh, type Empty as di, type BenefitNotification as dj, type Benefit as dk, type EntryPass as dl, type Discount as dm, type DiscountDiscountOneOf as dn, type Behavior as dp, type BehaviorBehaviorOneOf as dq, type UserDomainInfoChangedEvent as dr, type HtmlSitePublished as ds, type Page as dt, type SitePropertiesNotification as du, type SitePropertiesEvent as dv, type Properties as dw, type Categories as dx, type Locale as dy, type Address as dz, type BulkUpdateServicesByFilterOptions as e, type RateTypeWithLiterals as e0, type AddOnPaymentOptionsWithLiterals as e1, type LocationTypeWithLiterals as e2, type WebhookIdentityTypeWithLiterals as e3, type V2RequestedFieldsWithLiterals as e4, type SortOrderWithLiterals as e5, type SortTypeWithLiterals as e6, type SortDirectionWithLiterals as e7, type MissingValuesWithLiterals as e8, type ScalarTypeWithLiterals as e9, deleteService as eA, bulkDeleteServices as eB, bulkDeleteServicesByFilter as eC, queryServices as eD, queryPolicies as eE, queryBookingForms as eF, countServices as eG, queryLocations as eH, queryCategories as eI, setServiceLocations as eJ, enablePricingPlansForService as eK, disablePricingPlansForService as eL, setCustomSlug as eM, validateSlug as eN, cloneService as eO, createAddOnGroup as eP, deleteAddOnGroup as eQ, updateAddOnGroup as eR, listAddOnGroupsByServiceId as eS, setAddOnsForGroup as eT, type NestedAggregationTypeWithLiterals as ea, type IntervalWithLiterals as eb, type AggregationTypeWithLiterals as ec, type ModeWithLiterals as ed, type RequestedFieldsWithLiterals as ee, type ActionWithLiterals as ef, type InvalidSlugErrorWithLiterals as eg, type CloneErrorsWithLiterals as eh, type StatusWithLiterals as ei, type CategoryNotificationEventWithLiterals as ej, type BenefitTypeWithLiterals as ek, type EventWithLiterals as el, type CrudTypeWithLiterals as em, type PlacementTypeWithLiterals as en, type DayOfWeekWithLiterals as eo, type ResolutionMethodWithLiterals as ep, type CommonSearchWithEntityContext as eq, onServiceCreated as er, onServiceDeleted as es, onServiceUpdated as et, createService as eu, bulkCreateServices as ev, getService as ew, updateService as ex, bulkUpdateServices as ey, bulkUpdateServicesByFilter 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 };