@wix/auto_sdk_bookings_services 1.0.139 → 1.0.141
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.
- package/build/cjs/{bookings-services-v2-service-services.universal-DlruFL9W.d.ts → bookings-services-v2-service-services.universal-B4drRz1z.d.ts} +445 -445
- package/build/cjs/index.d.ts +79 -79
- package/build/cjs/index.js +302 -302
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +265 -265
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +156 -156
- package/build/cjs/meta.js +203 -203
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-DlruFL9W.d.mts → bookings-services-v2-service-services.universal-B4drRz1z.d.mts} +445 -445
- package/build/es/index.d.mts +79 -79
- package/build/es/index.mjs +302 -302
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +265 -265
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +156 -156
- package/build/es/meta.mjs +203 -203
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-DlruFL9W.d.ts → bookings-services-v2-service-services.universal-B4drRz1z.d.ts} +445 -445
- package/build/internal/cjs/index.d.ts +79 -79
- package/build/internal/cjs/index.js +302 -302
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +265 -265
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +156 -156
- package/build/internal/cjs/meta.js +203 -203
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-DlruFL9W.d.mts → bookings-services-v2-service-services.universal-B4drRz1z.d.mts} +445 -445
- package/build/internal/es/index.d.mts +79 -79
- package/build/internal/es/index.mjs +302 -302
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +265 -265
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +156 -156
- package/build/internal/es/meta.mjs +203 -203
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1454,138 +1454,6 @@ declare enum WebhookIdentityType {
|
|
|
1454
1454
|
}
|
|
1455
1455
|
/** @enumType */
|
|
1456
1456
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1457
|
-
interface CreateAddOnGroupRequest {
|
|
1458
|
-
/** Add-on group to create. */
|
|
1459
|
-
addOnGroup: AddOnGroup;
|
|
1460
|
-
/**
|
|
1461
|
-
* ID of the service to create the add-on group for.
|
|
1462
|
-
* @format GUID
|
|
1463
|
-
*/
|
|
1464
|
-
serviceId?: string | null;
|
|
1465
|
-
}
|
|
1466
|
-
interface CreateAddOnGroupResponse {
|
|
1467
|
-
/** Created add-on group. */
|
|
1468
|
-
addOnGroup?: AddOnGroup;
|
|
1469
|
-
}
|
|
1470
|
-
interface DeleteAddOnGroupRequest {
|
|
1471
|
-
/**
|
|
1472
|
-
* ID of the add-on group to delete.
|
|
1473
|
-
* @format GUID
|
|
1474
|
-
*/
|
|
1475
|
-
addOnGroupId: string | null;
|
|
1476
|
-
/**
|
|
1477
|
-
* ID of the service from which to delete the add-on group.
|
|
1478
|
-
* @format GUID
|
|
1479
|
-
*/
|
|
1480
|
-
serviceId: string | null;
|
|
1481
|
-
}
|
|
1482
|
-
interface DeleteAddOnGroupResponse {
|
|
1483
|
-
}
|
|
1484
|
-
interface UpdateAddOnGroupRequest {
|
|
1485
|
-
/** Add-on group to update. */
|
|
1486
|
-
addOnGroup: AddOnGroup;
|
|
1487
|
-
/**
|
|
1488
|
-
* ID of the service that contains the add-on group.
|
|
1489
|
-
* @format GUID
|
|
1490
|
-
*/
|
|
1491
|
-
serviceId: string | null;
|
|
1492
|
-
}
|
|
1493
|
-
interface UpdateAddOnGroupResponse {
|
|
1494
|
-
/** Updated add-on group. */
|
|
1495
|
-
addOnGroup?: AddOnGroup;
|
|
1496
|
-
}
|
|
1497
|
-
interface ListAddOnGroupsByServiceIdRequest {
|
|
1498
|
-
/**
|
|
1499
|
-
* ID of the service to retrieve add-on groups for.
|
|
1500
|
-
* @format GUID
|
|
1501
|
-
*/
|
|
1502
|
-
serviceId: string | null;
|
|
1503
|
-
/**
|
|
1504
|
-
* List of group IDs to return. By default, all groups are returned.
|
|
1505
|
-
* @format GUID
|
|
1506
|
-
* @maxSize 3
|
|
1507
|
-
*/
|
|
1508
|
-
groupIds?: string[] | null;
|
|
1509
|
-
}
|
|
1510
|
-
interface ListAddOnGroupsByServiceIdResponse {
|
|
1511
|
-
/**
|
|
1512
|
-
* List of group details with their linked add-ons.
|
|
1513
|
-
* @maxSize 3
|
|
1514
|
-
*/
|
|
1515
|
-
addOnGroupsDetails?: AddOnGroupDetail[];
|
|
1516
|
-
}
|
|
1517
|
-
interface AddOn extends AddOnAddOnInfoOneOf {
|
|
1518
|
-
/** Duration in minutes for duration-based add-ons that extend booking service time. */
|
|
1519
|
-
durationInMinutes?: number;
|
|
1520
|
-
/** Maximum quantity customers can purchase for quantity-based add-ons. */
|
|
1521
|
-
maxQuantity?: number;
|
|
1522
|
-
/**
|
|
1523
|
-
* Add-on ID.
|
|
1524
|
-
* @format GUID
|
|
1525
|
-
*/
|
|
1526
|
-
addOnId?: string | null;
|
|
1527
|
-
/**
|
|
1528
|
-
* Add-on name displayed to customers.
|
|
1529
|
-
* @maxLength 100
|
|
1530
|
-
*/
|
|
1531
|
-
name?: string | null;
|
|
1532
|
-
/** Add-on price. */
|
|
1533
|
-
price?: Money;
|
|
1534
|
-
}
|
|
1535
|
-
/** @oneof */
|
|
1536
|
-
interface AddOnAddOnInfoOneOf {
|
|
1537
|
-
/** Duration in minutes for duration-based add-ons that extend booking service time. */
|
|
1538
|
-
durationInMinutes?: number;
|
|
1539
|
-
/** Maximum quantity customers can purchase for quantity-based add-ons. */
|
|
1540
|
-
maxQuantity?: number;
|
|
1541
|
-
}
|
|
1542
|
-
interface AddOnGroupDetail {
|
|
1543
|
-
/**
|
|
1544
|
-
* Group ID.
|
|
1545
|
-
* @format GUID
|
|
1546
|
-
*/
|
|
1547
|
-
groupId?: string | null;
|
|
1548
|
-
/** Maximum number of add-ons customers can select from this group. */
|
|
1549
|
-
maxNumberOfAddOns?: number | null;
|
|
1550
|
-
/**
|
|
1551
|
-
* Group name displayed to customers.
|
|
1552
|
-
* @maxLength 100
|
|
1553
|
-
*/
|
|
1554
|
-
groupName?: string | null;
|
|
1555
|
-
/**
|
|
1556
|
-
* Add-ons linked to this group in display order.
|
|
1557
|
-
* @maxSize 7
|
|
1558
|
-
*/
|
|
1559
|
-
addOns?: AddOn[];
|
|
1560
|
-
/**
|
|
1561
|
-
* Instructional prompt displayed to customers. For example, `Choose up to 2 relaxing spa treatments to enhance your experience`. You can also use this field as a group description. For example, `Beginner-friendly rental equipment`.
|
|
1562
|
-
* @maxLength 200
|
|
1563
|
-
*/
|
|
1564
|
-
prompt?: string | null;
|
|
1565
|
-
}
|
|
1566
|
-
interface SetAddOnsForGroupRequest {
|
|
1567
|
-
/**
|
|
1568
|
-
* Service ID containing the group.
|
|
1569
|
-
* @format GUID
|
|
1570
|
-
*/
|
|
1571
|
-
serviceId: string | null;
|
|
1572
|
-
/**
|
|
1573
|
-
* Group ID to set add-ons for.
|
|
1574
|
-
* @format GUID
|
|
1575
|
-
*/
|
|
1576
|
-
groupId: string | null;
|
|
1577
|
-
/**
|
|
1578
|
-
* IDs of add-ons to set for the group in display order.
|
|
1579
|
-
* @format GUID
|
|
1580
|
-
* @minSize 1
|
|
1581
|
-
* @maxSize 7
|
|
1582
|
-
*/
|
|
1583
|
-
addOnIds: string[] | null;
|
|
1584
|
-
}
|
|
1585
|
-
interface SetAddOnsForGroupResponse {
|
|
1586
|
-
/** Updated add-on group. */
|
|
1587
|
-
addOnGroup?: AddOnGroup;
|
|
1588
|
-
}
|
|
1589
1457
|
interface CreateServiceRequest {
|
|
1590
1458
|
/** Service to create. */
|
|
1591
1459
|
service: Service;
|
|
@@ -3496,130 +3364,244 @@ interface SiteCloned {
|
|
|
3496
3364
|
/** Origin site id. */
|
|
3497
3365
|
originMetaSiteId?: string;
|
|
3498
3366
|
}
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
}
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
}
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
}
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
}
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3367
|
+
interface CreateAddOnGroupRequest {
|
|
3368
|
+
/** Add-on group to create. */
|
|
3369
|
+
addOnGroup: AddOnGroup;
|
|
3370
|
+
/**
|
|
3371
|
+
* ID of the service to create the add-on group for.
|
|
3372
|
+
* @format GUID
|
|
3373
|
+
*/
|
|
3374
|
+
serviceId?: string | null;
|
|
3375
|
+
}
|
|
3376
|
+
interface CreateAddOnGroupResponse {
|
|
3377
|
+
/** Created add-on group. */
|
|
3378
|
+
addOnGroup?: AddOnGroup;
|
|
3379
|
+
}
|
|
3380
|
+
interface DeleteAddOnGroupRequest {
|
|
3381
|
+
/**
|
|
3382
|
+
* ID of the add-on group to delete.
|
|
3383
|
+
* @format GUID
|
|
3384
|
+
*/
|
|
3385
|
+
addOnGroupId: string | null;
|
|
3386
|
+
/**
|
|
3387
|
+
* ID of the service from which to delete the add-on group.
|
|
3388
|
+
* @format GUID
|
|
3389
|
+
*/
|
|
3390
|
+
serviceId: string | null;
|
|
3391
|
+
}
|
|
3392
|
+
interface DeleteAddOnGroupResponse {
|
|
3393
|
+
}
|
|
3394
|
+
interface UpdateAddOnGroupRequest {
|
|
3395
|
+
/** Add-on group to update. */
|
|
3396
|
+
addOnGroup: AddOnGroup;
|
|
3397
|
+
/**
|
|
3398
|
+
* ID of the service that contains the add-on group.
|
|
3399
|
+
* @format GUID
|
|
3400
|
+
*/
|
|
3401
|
+
serviceId: string | null;
|
|
3402
|
+
}
|
|
3403
|
+
interface UpdateAddOnGroupResponse {
|
|
3404
|
+
/** Updated add-on group. */
|
|
3405
|
+
addOnGroup?: AddOnGroup;
|
|
3406
|
+
}
|
|
3407
|
+
interface ListAddOnGroupsByServiceIdRequest {
|
|
3408
|
+
/**
|
|
3409
|
+
* ID of the service to retrieve add-on groups for.
|
|
3410
|
+
* @format GUID
|
|
3411
|
+
*/
|
|
3412
|
+
serviceId: string | null;
|
|
3413
|
+
/**
|
|
3414
|
+
* List of group IDs to return. By default, all groups are returned.
|
|
3415
|
+
* @format GUID
|
|
3416
|
+
* @maxSize 3
|
|
3417
|
+
*/
|
|
3418
|
+
groupIds?: string[] | null;
|
|
3419
|
+
}
|
|
3420
|
+
interface ListAddOnGroupsByServiceIdResponse {
|
|
3421
|
+
/**
|
|
3422
|
+
* List of group details with their linked add-ons.
|
|
3423
|
+
* @maxSize 3
|
|
3424
|
+
*/
|
|
3425
|
+
addOnGroupsDetails?: AddOnGroupDetail[];
|
|
3426
|
+
}
|
|
3427
|
+
interface AddOn extends AddOnAddOnInfoOneOf {
|
|
3428
|
+
/** Duration in minutes for duration-based add-ons that extend booking service time. */
|
|
3429
|
+
durationInMinutes?: number;
|
|
3430
|
+
/** Maximum quantity customers can purchase for quantity-based add-ons. */
|
|
3431
|
+
maxQuantity?: number;
|
|
3432
|
+
/**
|
|
3433
|
+
* Add-on ID.
|
|
3434
|
+
* @format GUID
|
|
3435
|
+
*/
|
|
3436
|
+
addOnId?: string | null;
|
|
3437
|
+
/**
|
|
3438
|
+
* Add-on name displayed to customers.
|
|
3439
|
+
* @maxLength 100
|
|
3440
|
+
*/
|
|
3441
|
+
name?: string | null;
|
|
3442
|
+
/** Add-on price. */
|
|
3443
|
+
price?: Money;
|
|
3444
|
+
}
|
|
3445
|
+
/** @oneof */
|
|
3446
|
+
interface AddOnAddOnInfoOneOf {
|
|
3447
|
+
/** Duration in minutes for duration-based add-ons that extend booking service time. */
|
|
3448
|
+
durationInMinutes?: number;
|
|
3449
|
+
/** Maximum quantity customers can purchase for quantity-based add-ons. */
|
|
3450
|
+
maxQuantity?: number;
|
|
3451
|
+
}
|
|
3452
|
+
interface AddOnGroupDetail {
|
|
3453
|
+
/**
|
|
3454
|
+
* Group ID.
|
|
3455
|
+
* @format GUID
|
|
3456
|
+
*/
|
|
3457
|
+
groupId?: string | null;
|
|
3458
|
+
/** Maximum number of add-ons customers can select from this group. */
|
|
3459
|
+
maxNumberOfAddOns?: number | null;
|
|
3460
|
+
/**
|
|
3461
|
+
* Group name displayed to customers.
|
|
3462
|
+
* @maxLength 100
|
|
3463
|
+
*/
|
|
3464
|
+
groupName?: string | null;
|
|
3465
|
+
/**
|
|
3466
|
+
* Add-ons linked to this group in display order.
|
|
3467
|
+
* @maxSize 7
|
|
3468
|
+
*/
|
|
3469
|
+
addOns?: AddOn[];
|
|
3470
|
+
/**
|
|
3471
|
+
* Instructional prompt displayed to customers. For example, `Choose up to 2 relaxing spa treatments to enhance your experience`. You can also use this field as a group description. For example, `Beginner-friendly rental equipment`.
|
|
3472
|
+
* @maxLength 200
|
|
3473
|
+
*/
|
|
3474
|
+
prompt?: string | null;
|
|
3475
|
+
}
|
|
3476
|
+
interface SetAddOnsForGroupRequest {
|
|
3477
|
+
/**
|
|
3478
|
+
* Service ID containing the group.
|
|
3479
|
+
* @format GUID
|
|
3480
|
+
*/
|
|
3481
|
+
serviceId: string | null;
|
|
3482
|
+
/**
|
|
3483
|
+
* Group ID to set add-ons for.
|
|
3484
|
+
* @format GUID
|
|
3485
|
+
*/
|
|
3486
|
+
groupId: string | null;
|
|
3487
|
+
/**
|
|
3488
|
+
* IDs of add-ons to set for the group in display order.
|
|
3489
|
+
* @format GUID
|
|
3490
|
+
* @minSize 1
|
|
3491
|
+
* @maxSize 7
|
|
3492
|
+
*/
|
|
3493
|
+
addOnIds: string[] | null;
|
|
3494
|
+
}
|
|
3495
|
+
interface SetAddOnsForGroupResponse {
|
|
3496
|
+
/** Updated add-on group. */
|
|
3497
|
+
addOnGroup?: AddOnGroup;
|
|
3498
|
+
}
|
|
3499
|
+
/** @docsIgnore */
|
|
3500
|
+
type CreateServiceValidationErrors = {
|
|
3501
|
+
ruleName?: 'INVALID_FORM';
|
|
3502
|
+
} | {
|
|
3503
|
+
ruleName?: 'INVALID_CATEGORY';
|
|
3504
|
+
} | {
|
|
3505
|
+
ruleName?: 'INVALID_BOOKING_POLICY';
|
|
3506
|
+
} | {
|
|
3507
|
+
ruleName?: 'INVALID_SERVICE_TYPE';
|
|
3508
|
+
} | {
|
|
3509
|
+
ruleName?: 'INVALID_SERVICE_NAME';
|
|
3510
|
+
} | {
|
|
3511
|
+
ruleName?: 'INVALID_ONLINE_BOOKING';
|
|
3512
|
+
} | {
|
|
3513
|
+
ruleName?: 'INVALID_STAFF_MEMBER_IDS';
|
|
3514
|
+
} | {
|
|
3515
|
+
ruleName?: 'PAYMENT_REQUIRED';
|
|
3516
|
+
} | {
|
|
3517
|
+
ruleName?: 'INVALID_PAYMENT_TYPE';
|
|
3518
|
+
} | {
|
|
3519
|
+
ruleName?: 'INVALID_RATE';
|
|
3520
|
+
} | {
|
|
3521
|
+
ruleName?: 'INVALID_PAYMENT_OPTIONS';
|
|
3522
|
+
} | {
|
|
3523
|
+
ruleName?: 'INVALID_BUSINESS_LOCATIONS';
|
|
3524
|
+
} | {
|
|
3525
|
+
ruleName?: 'INVALID_LOCATIONS';
|
|
3526
|
+
} | {
|
|
3527
|
+
ruleName?: 'INVALID_BUSINESS_LOCATION';
|
|
3528
|
+
} | {
|
|
3529
|
+
ruleName?: 'INVALID_CUSTOM_LOCATION';
|
|
3530
|
+
} | {
|
|
3531
|
+
ruleName?: 'INVALID_CUSTOMER_LOCATION';
|
|
3532
|
+
} | {
|
|
3533
|
+
ruleName?: 'INVALID_UNKNOWN_LOCATION';
|
|
3534
|
+
} | {
|
|
3535
|
+
ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
|
|
3536
|
+
} | {
|
|
3537
|
+
ruleName?: 'INVALID_DEFAULT_CAPACITY';
|
|
3538
|
+
} | {
|
|
3539
|
+
ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
|
|
3540
|
+
} | {
|
|
3541
|
+
ruleName?: 'INVALID_SESSION_DURATION';
|
|
3542
|
+
};
|
|
3543
|
+
/** @docsIgnore */
|
|
3544
|
+
type UpdateServiceValidationErrors = {
|
|
3545
|
+
ruleName?: 'INVALID_FORM';
|
|
3546
|
+
} | {
|
|
3547
|
+
ruleName?: 'INVALID_CATEGORY';
|
|
3548
|
+
} | {
|
|
3549
|
+
ruleName?: 'INVALID_BOOKING_POLICY';
|
|
3550
|
+
} | {
|
|
3551
|
+
ruleName?: 'INVALID_SERVICE_TYPE';
|
|
3552
|
+
} | {
|
|
3553
|
+
ruleName?: 'INVALID_SERVICE_NAME';
|
|
3554
|
+
} | {
|
|
3555
|
+
ruleName?: 'INVALID_ONLINE_BOOKING';
|
|
3556
|
+
} | {
|
|
3557
|
+
ruleName?: 'INVALID_STAFF_MEMBER_IDS';
|
|
3558
|
+
} | {
|
|
3559
|
+
ruleName?: 'PAYMENT_REQUIRED';
|
|
3560
|
+
} | {
|
|
3561
|
+
ruleName?: 'INVALID_PAYMENT_TYPE';
|
|
3562
|
+
} | {
|
|
3563
|
+
ruleName?: 'INVALID_RATE';
|
|
3564
|
+
} | {
|
|
3565
|
+
ruleName?: 'INVALID_PAYMENT_OPTIONS';
|
|
3566
|
+
} | {
|
|
3567
|
+
ruleName?: 'INVALID_BUSINESS_LOCATIONS';
|
|
3568
|
+
} | {
|
|
3569
|
+
ruleName?: 'INVALID_LOCATIONS';
|
|
3570
|
+
} | {
|
|
3571
|
+
ruleName?: 'INVALID_BUSINESS_LOCATION';
|
|
3572
|
+
} | {
|
|
3573
|
+
ruleName?: 'INVALID_CUSTOM_LOCATION';
|
|
3574
|
+
} | {
|
|
3575
|
+
ruleName?: 'INVALID_CUSTOMER_LOCATION';
|
|
3576
|
+
} | {
|
|
3577
|
+
ruleName?: 'INVALID_UNKNOWN_LOCATION';
|
|
3578
|
+
} | {
|
|
3579
|
+
ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
|
|
3580
|
+
} | {
|
|
3581
|
+
ruleName?: 'INVALID_DEFAULT_CAPACITY';
|
|
3582
|
+
} | {
|
|
3583
|
+
ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
|
|
3584
|
+
} | {
|
|
3585
|
+
ruleName?: 'INVALID_SESSION_DURATION';
|
|
3586
|
+
};
|
|
3587
|
+
/** @docsIgnore */
|
|
3588
|
+
type QueryBookingFormsApplicationErrors = {
|
|
3589
|
+
code?: 'DEFAULT_BOOKING_FORM_NOT_FOUND';
|
|
3590
|
+
description?: string;
|
|
3591
|
+
data?: Record<string, any>;
|
|
3592
|
+
};
|
|
3593
|
+
/** @docsIgnore */
|
|
3594
|
+
type EnablePricingPlansForServiceApplicationErrors = {
|
|
3595
|
+
code?: 'INVALID_PRICING_PLAN';
|
|
3596
|
+
description?: string;
|
|
3597
|
+
data?: InvalidPricingPlan;
|
|
3598
|
+
} | {
|
|
3599
|
+
code?: 'SERVICE_DOES_NOT_SUPPORT_PRICING_PLANS';
|
|
3600
|
+
description?: string;
|
|
3601
|
+
data?: Record<string, any>;
|
|
3602
|
+
};
|
|
3603
|
+
/** @docsIgnore */
|
|
3604
|
+
type DisablePricingPlansForServiceApplicationErrors = {
|
|
3623
3605
|
code?: 'INVALID_PRICING_PLAN';
|
|
3624
3606
|
description?: string;
|
|
3625
3607
|
data?: InvalidPricingPlan;
|
|
@@ -3634,6 +3616,24 @@ type SetCustomSlugApplicationErrors = {
|
|
|
3634
3616
|
type SetCustomSlugValidationErrors = {
|
|
3635
3617
|
ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
|
|
3636
3618
|
};
|
|
3619
|
+
/** @docsIgnore */
|
|
3620
|
+
type DeleteAddOnGroupApplicationErrors = {
|
|
3621
|
+
code?: 'GROUP_NOT_ON_SERVICE';
|
|
3622
|
+
description?: string;
|
|
3623
|
+
data?: Record<string, any>;
|
|
3624
|
+
};
|
|
3625
|
+
/** @docsIgnore */
|
|
3626
|
+
type UpdateAddOnGroupApplicationErrors = {
|
|
3627
|
+
code?: 'GROUP_NOT_ON_SERVICE';
|
|
3628
|
+
description?: string;
|
|
3629
|
+
data?: Record<string, any>;
|
|
3630
|
+
};
|
|
3631
|
+
/** @docsIgnore */
|
|
3632
|
+
type SetAddOnsForGroupApplicationErrors = {
|
|
3633
|
+
code?: 'ADD_ON_GROUP_NOT_FOUND';
|
|
3634
|
+
description?: string;
|
|
3635
|
+
data?: Record<string, any>;
|
|
3636
|
+
};
|
|
3637
3637
|
interface BaseEventMetadata {
|
|
3638
3638
|
/**
|
|
3639
3639
|
* App instance ID.
|
|
@@ -3700,199 +3700,62 @@ interface ServiceCreatedEnvelope {
|
|
|
3700
3700
|
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
|
|
3701
3701
|
* @permissionId BOOKINGS.SERVICES_READ
|
|
3702
3702
|
* @webhook
|
|
3703
|
-
* @eventType wix.bookings.services.v2.service_created
|
|
3704
|
-
* @slug created
|
|
3705
|
-
*/
|
|
3706
|
-
declare function onServiceCreated(handler: (event: ServiceCreatedEnvelope) => void | Promise<void>): void;
|
|
3707
|
-
interface ServiceDeletedEnvelope {
|
|
3708
|
-
entity: Service;
|
|
3709
|
-
metadata: EventMetadata;
|
|
3710
|
-
}
|
|
3711
|
-
/**
|
|
3712
|
-
* Triggered when a service is deleted.
|
|
3713
|
-
* @permissionScope Manage Stores
|
|
3714
|
-
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
3715
|
-
* @permissionScope Read Bookings - Public Data
|
|
3716
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
3717
|
-
* @permissionScope Manage Bookings Services and Settings
|
|
3718
|
-
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
3719
|
-
* @permissionScope Manage Bookings
|
|
3720
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
|
|
3721
|
-
* @permissionScope Read Bookings - Including Participants
|
|
3722
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
|
|
3723
|
-
* @permissionScope Read Bookings - all read permissions
|
|
3724
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
|
|
3725
|
-
* @permissionScope Manage Bookings - all permissions
|
|
3726
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
|
|
3727
|
-
* @permissionId BOOKINGS.SERVICES_READ
|
|
3728
|
-
* @webhook
|
|
3729
|
-
* @eventType wix.bookings.services.v2.service_deleted
|
|
3730
|
-
* @slug deleted
|
|
3731
|
-
*/
|
|
3732
|
-
declare function onServiceDeleted(handler: (event: ServiceDeletedEnvelope) => void | Promise<void>): void;
|
|
3733
|
-
interface ServiceUpdatedEnvelope {
|
|
3734
|
-
entity: Service;
|
|
3735
|
-
metadata: EventMetadata;
|
|
3736
|
-
}
|
|
3737
|
-
/**
|
|
3738
|
-
* Triggered when a service is updated.
|
|
3739
|
-
* @permissionScope Manage Stores
|
|
3740
|
-
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
3741
|
-
* @permissionScope Read Bookings - Public Data
|
|
3742
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
3743
|
-
* @permissionScope Manage Bookings Services and Settings
|
|
3744
|
-
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
3745
|
-
* @permissionScope Manage Bookings
|
|
3746
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
|
|
3747
|
-
* @permissionScope Read Bookings - Including Participants
|
|
3748
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
|
|
3749
|
-
* @permissionScope Read Bookings - all read permissions
|
|
3750
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
|
|
3751
|
-
* @permissionScope Manage Bookings - all permissions
|
|
3752
|
-
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
|
|
3753
|
-
* @permissionId BOOKINGS.SERVICES_READ
|
|
3754
|
-
* @webhook
|
|
3755
|
-
* @eventType wix.bookings.services.v2.service_updated
|
|
3756
|
-
* @slug updated
|
|
3757
|
-
*/
|
|
3758
|
-
declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
|
|
3759
|
-
/**
|
|
3760
|
-
* Creates a new add-on group for a service and updates the service's `addOnGroups` array.
|
|
3761
|
-
* @param addOnGroup - Add-on group to create.
|
|
3762
|
-
* @public
|
|
3763
|
-
* @documentationMaturity preview
|
|
3764
|
-
* @requiredField addOnGroup
|
|
3765
|
-
* @requiredField addOnGroup.name
|
|
3766
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
|
|
3767
|
-
* @applicableIdentity APP
|
|
3768
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
|
|
3769
|
-
*/
|
|
3770
|
-
declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
|
|
3771
|
-
interface CreateAddOnGroupOptions {
|
|
3772
|
-
/**
|
|
3773
|
-
* ID of the service to create the add-on group for.
|
|
3774
|
-
* @format GUID
|
|
3775
|
-
*/
|
|
3776
|
-
serviceId?: string | null;
|
|
3777
|
-
}
|
|
3778
|
-
/**
|
|
3779
|
-
* Deletes an add-on group.
|
|
3780
|
-
*
|
|
3781
|
-
*
|
|
3782
|
-
* Deleting the group doesn't delete individual add-ons.
|
|
3783
|
-
* Any add-on not associated with another group isn't available for customers to book.
|
|
3784
|
-
* @param addOnGroupId - ID of the add-on group to delete.
|
|
3785
|
-
* @public
|
|
3786
|
-
* @documentationMaturity preview
|
|
3787
|
-
* @requiredField addOnGroupId
|
|
3788
|
-
* @requiredField options
|
|
3789
|
-
* @requiredField options.serviceId
|
|
3790
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
|
|
3791
|
-
* @applicableIdentity APP
|
|
3792
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
|
|
3793
|
-
*/
|
|
3794
|
-
declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
|
|
3795
|
-
__applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
|
|
3796
|
-
}>;
|
|
3797
|
-
interface DeleteAddOnGroupOptions {
|
|
3798
|
-
/**
|
|
3799
|
-
* ID of the service from which to delete the add-on group.
|
|
3800
|
-
* @format GUID
|
|
3801
|
-
*/
|
|
3802
|
-
serviceId: string | null;
|
|
3803
|
-
}
|
|
3804
|
-
/**
|
|
3805
|
-
* Updates an add-on group.
|
|
3806
|
-
*
|
|
3807
|
-
*
|
|
3808
|
-
* To update only add-on display order, call [Set Add Ons For Group](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/set-add-ons-for-group) instead.
|
|
3809
|
-
* @param addOnGroup - Add-on group to update.
|
|
3810
|
-
* @public
|
|
3811
|
-
* @documentationMaturity preview
|
|
3812
|
-
* @requiredField addOnGroup
|
|
3813
|
-
* @requiredField addOnGroup._id
|
|
3814
|
-
* @requiredField options
|
|
3815
|
-
* @requiredField options.serviceId
|
|
3816
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
|
|
3817
|
-
* @applicableIdentity APP
|
|
3818
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
|
|
3703
|
+
* @eventType wix.bookings.services.v2.service_created
|
|
3704
|
+
* @slug created
|
|
3819
3705
|
*/
|
|
3820
|
-
declare function
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
/**
|
|
3825
|
-
* ID of the service that contains the add-on group.
|
|
3826
|
-
* @format GUID
|
|
3827
|
-
*/
|
|
3828
|
-
serviceId: string | null;
|
|
3706
|
+
declare function onServiceCreated(handler: (event: ServiceCreatedEnvelope) => void | Promise<void>): void;
|
|
3707
|
+
interface ServiceDeletedEnvelope {
|
|
3708
|
+
entity: Service;
|
|
3709
|
+
metadata: EventMetadata;
|
|
3829
3710
|
}
|
|
3830
3711
|
/**
|
|
3831
|
-
*
|
|
3832
|
-
*
|
|
3833
|
-
*
|
|
3834
|
-
*
|
|
3835
|
-
*
|
|
3836
|
-
*
|
|
3837
|
-
*
|
|
3838
|
-
* @
|
|
3839
|
-
* @
|
|
3840
|
-
* @
|
|
3841
|
-
* @
|
|
3842
|
-
* @
|
|
3843
|
-
* @
|
|
3844
|
-
* @
|
|
3712
|
+
* Triggered when a service is deleted.
|
|
3713
|
+
* @permissionScope Manage Stores
|
|
3714
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
3715
|
+
* @permissionScope Read Bookings - Public Data
|
|
3716
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
3717
|
+
* @permissionScope Manage Bookings Services and Settings
|
|
3718
|
+
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
3719
|
+
* @permissionScope Manage Bookings
|
|
3720
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
|
|
3721
|
+
* @permissionScope Read Bookings - Including Participants
|
|
3722
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
|
|
3723
|
+
* @permissionScope Read Bookings - all read permissions
|
|
3724
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
|
|
3725
|
+
* @permissionScope Manage Bookings - all permissions
|
|
3726
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
|
|
3727
|
+
* @permissionId BOOKINGS.SERVICES_READ
|
|
3728
|
+
* @webhook
|
|
3729
|
+
* @eventType wix.bookings.services.v2.service_deleted
|
|
3730
|
+
* @slug deleted
|
|
3845
3731
|
*/
|
|
3846
|
-
declare function
|
|
3847
|
-
interface
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
* @format GUID
|
|
3851
|
-
* @maxSize 3
|
|
3852
|
-
*/
|
|
3853
|
-
groupIds?: string[] | null;
|
|
3732
|
+
declare function onServiceDeleted(handler: (event: ServiceDeletedEnvelope) => void | Promise<void>): void;
|
|
3733
|
+
interface ServiceUpdatedEnvelope {
|
|
3734
|
+
entity: Service;
|
|
3735
|
+
metadata: EventMetadata;
|
|
3854
3736
|
}
|
|
3855
3737
|
/**
|
|
3856
|
-
*
|
|
3857
|
-
*
|
|
3858
|
-
*
|
|
3859
|
-
*
|
|
3860
|
-
*
|
|
3861
|
-
*
|
|
3862
|
-
*
|
|
3863
|
-
*
|
|
3864
|
-
*
|
|
3865
|
-
*
|
|
3866
|
-
*
|
|
3867
|
-
*
|
|
3868
|
-
* @
|
|
3869
|
-
* @
|
|
3870
|
-
* @
|
|
3871
|
-
* @
|
|
3872
|
-
* @
|
|
3873
|
-
* @
|
|
3874
|
-
* @
|
|
3875
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
|
|
3876
|
-
* @applicableIdentity APP
|
|
3877
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
|
|
3738
|
+
* Triggered when a service is updated.
|
|
3739
|
+
* @permissionScope Manage Stores
|
|
3740
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
3741
|
+
* @permissionScope Read Bookings - Public Data
|
|
3742
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
3743
|
+
* @permissionScope Manage Bookings Services and Settings
|
|
3744
|
+
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
3745
|
+
* @permissionScope Manage Bookings
|
|
3746
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
|
|
3747
|
+
* @permissionScope Read Bookings - Including Participants
|
|
3748
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
|
|
3749
|
+
* @permissionScope Read Bookings - all read permissions
|
|
3750
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
|
|
3751
|
+
* @permissionScope Manage Bookings - all permissions
|
|
3752
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
|
|
3753
|
+
* @permissionId BOOKINGS.SERVICES_READ
|
|
3754
|
+
* @webhook
|
|
3755
|
+
* @eventType wix.bookings.services.v2.service_updated
|
|
3756
|
+
* @slug updated
|
|
3878
3757
|
*/
|
|
3879
|
-
declare function
|
|
3880
|
-
__applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
|
|
3881
|
-
}>;
|
|
3882
|
-
interface SetAddOnsForGroupOptions {
|
|
3883
|
-
/**
|
|
3884
|
-
* Group ID to set add-ons for.
|
|
3885
|
-
* @format GUID
|
|
3886
|
-
*/
|
|
3887
|
-
groupId: string | null;
|
|
3888
|
-
/**
|
|
3889
|
-
* IDs of add-ons to set for the group in display order.
|
|
3890
|
-
* @format GUID
|
|
3891
|
-
* @minSize 1
|
|
3892
|
-
* @maxSize 7
|
|
3893
|
-
*/
|
|
3894
|
-
addOnIds: string[] | null;
|
|
3895
|
-
}
|
|
3758
|
+
declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
|
|
3896
3759
|
/**
|
|
3897
3760
|
* Creates a service.
|
|
3898
3761
|
*
|
|
@@ -4000,11 +3863,11 @@ declare function getService(serviceId: string): Promise<NonNullablePaths<Service
|
|
|
4000
3863
|
*
|
|
4001
3864
|
* Don't use Update Service to modify service locations. Instead, use Set Service Locations ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/services/set-service-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/set-service-locations)), which provides options for handling existing sessions when locations are changed.
|
|
4002
3865
|
*
|
|
4003
|
-
* ### Add-on groups
|
|
3866
|
+
* <!-- ### Add-on groups
|
|
4004
3867
|
*
|
|
4005
3868
|
* Don't use Update Service to modify service add-on groups. Use these dedicated methods instead:
|
|
4006
3869
|
* - **Update add-on group properties**: Call Update Add On Group ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/update-add-on-group?apiView=SDK) | [REST](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/update-add-on-group)).
|
|
4007
|
-
* - **Update add-on display order**: Call Set Add Ons For Group ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/set-add-ons-for-group?apiView=SDK) | [REST](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/set-add-ons-for-group)).
|
|
3870
|
+
* - **Update add-on display order**: Call Set Add Ons For Group ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/set-add-ons-for-group?apiView=SDK) | [REST](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/set-add-ons-for-group)). -->
|
|
4008
3871
|
* @param _id - Service ID.
|
|
4009
3872
|
* @public
|
|
4010
3873
|
* @requiredField _id
|
|
@@ -5036,5 +4899,142 @@ interface ValidateSlugOptions {
|
|
|
5036
4899
|
* @fqn wix.bookings.services.v2.ServicesService.CloneService
|
|
5037
4900
|
*/
|
|
5038
4901
|
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>>;
|
|
4902
|
+
/**
|
|
4903
|
+
* Creates a new add-on group for a service and updates the service's `addOnGroups` array.
|
|
4904
|
+
* @param addOnGroup - Add-on group to create.
|
|
4905
|
+
* @public
|
|
4906
|
+
* @documentationMaturity preview
|
|
4907
|
+
* @requiredField addOnGroup
|
|
4908
|
+
* @requiredField addOnGroup.name
|
|
4909
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
|
|
4910
|
+
* @applicableIdentity APP
|
|
4911
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
|
|
4912
|
+
*/
|
|
4913
|
+
declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
|
|
4914
|
+
interface CreateAddOnGroupOptions {
|
|
4915
|
+
/**
|
|
4916
|
+
* ID of the service to create the add-on group for.
|
|
4917
|
+
* @format GUID
|
|
4918
|
+
*/
|
|
4919
|
+
serviceId?: string | null;
|
|
4920
|
+
}
|
|
4921
|
+
/**
|
|
4922
|
+
* Deletes an add-on group.
|
|
4923
|
+
*
|
|
4924
|
+
*
|
|
4925
|
+
* Deleting the group doesn't delete individual add-ons.
|
|
4926
|
+
* Any add-on not associated with another group isn't available for customers to book.
|
|
4927
|
+
* @param addOnGroupId - ID of the add-on group to delete.
|
|
4928
|
+
* @public
|
|
4929
|
+
* @documentationMaturity preview
|
|
4930
|
+
* @requiredField addOnGroupId
|
|
4931
|
+
* @requiredField options
|
|
4932
|
+
* @requiredField options.serviceId
|
|
4933
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
|
|
4934
|
+
* @applicableIdentity APP
|
|
4935
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
|
|
4936
|
+
*/
|
|
4937
|
+
declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
|
|
4938
|
+
__applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
|
|
4939
|
+
}>;
|
|
4940
|
+
interface DeleteAddOnGroupOptions {
|
|
4941
|
+
/**
|
|
4942
|
+
* ID of the service from which to delete the add-on group.
|
|
4943
|
+
* @format GUID
|
|
4944
|
+
*/
|
|
4945
|
+
serviceId: string | null;
|
|
4946
|
+
}
|
|
4947
|
+
/**
|
|
4948
|
+
* Updates an add-on group.
|
|
4949
|
+
*
|
|
4950
|
+
*
|
|
4951
|
+
* To update only add-on display order, call [Set Add Ons For Group](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/set-add-ons-for-group) instead.
|
|
4952
|
+
* @param addOnGroup - Add-on group to update.
|
|
4953
|
+
* @public
|
|
4954
|
+
* @documentationMaturity preview
|
|
4955
|
+
* @requiredField addOnGroup
|
|
4956
|
+
* @requiredField addOnGroup._id
|
|
4957
|
+
* @requiredField options
|
|
4958
|
+
* @requiredField options.serviceId
|
|
4959
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
|
|
4960
|
+
* @applicableIdentity APP
|
|
4961
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
|
|
4962
|
+
*/
|
|
4963
|
+
declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
|
|
4964
|
+
__applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
|
|
4965
|
+
}>;
|
|
4966
|
+
interface UpdateAddOnGroupOptions {
|
|
4967
|
+
/**
|
|
4968
|
+
* ID of the service that contains the add-on group.
|
|
4969
|
+
* @format GUID
|
|
4970
|
+
*/
|
|
4971
|
+
serviceId: string | null;
|
|
4972
|
+
}
|
|
4973
|
+
/**
|
|
4974
|
+
* Retrieves add-on groups for a service with enriched add-on details.
|
|
4975
|
+
*
|
|
4976
|
+
*
|
|
4977
|
+
* Add-on details are returned based on their display order.
|
|
4978
|
+
*
|
|
4979
|
+
* If you specify `groupIds`, only those groups are returned.
|
|
4980
|
+
* By default, all groups associated with the service are returned.
|
|
4981
|
+
* @param serviceId - ID of the service to retrieve add-on groups for.
|
|
4982
|
+
* @public
|
|
4983
|
+
* @documentationMaturity preview
|
|
4984
|
+
* @requiredField serviceId
|
|
4985
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
|
|
4986
|
+
* @applicableIdentity APP
|
|
4987
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
|
|
4988
|
+
*/
|
|
4989
|
+
declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
|
|
4990
|
+
interface ListAddOnGroupsByServiceIdOptions {
|
|
4991
|
+
/**
|
|
4992
|
+
* List of group IDs to return. By default, all groups are returned.
|
|
4993
|
+
* @format GUID
|
|
4994
|
+
* @maxSize 3
|
|
4995
|
+
*/
|
|
4996
|
+
groupIds?: string[] | null;
|
|
4997
|
+
}
|
|
4998
|
+
/**
|
|
4999
|
+
* Sets the add-ons for a specific group, replacing any existing add-ons in the group.
|
|
5000
|
+
*
|
|
5001
|
+
*
|
|
5002
|
+
* Call this method when you want to:
|
|
5003
|
+
* - Add new add-ons to a group.
|
|
5004
|
+
* - Remove add-ons from a group.
|
|
5005
|
+
* - Reorder existing add-ons for optimal customer presentation.
|
|
5006
|
+
*
|
|
5007
|
+
* The order of add-ons in the request determines their display sequence to customers.
|
|
5008
|
+
* All specified add-ons must already exist before adding them to a group.
|
|
5009
|
+
*
|
|
5010
|
+
* For updating other add-on group properties, for example `name`, `prompt`, or `constraints`, call [Update Add On Group](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/update-add-on-group) instead.
|
|
5011
|
+
* @param serviceId - Service ID containing the group.
|
|
5012
|
+
* @public
|
|
5013
|
+
* @documentationMaturity preview
|
|
5014
|
+
* @requiredField options
|
|
5015
|
+
* @requiredField options.addOnIds
|
|
5016
|
+
* @requiredField options.groupId
|
|
5017
|
+
* @requiredField serviceId
|
|
5018
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
|
|
5019
|
+
* @applicableIdentity APP
|
|
5020
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
|
|
5021
|
+
*/
|
|
5022
|
+
declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
|
|
5023
|
+
__applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
|
|
5024
|
+
}>;
|
|
5025
|
+
interface SetAddOnsForGroupOptions {
|
|
5026
|
+
/**
|
|
5027
|
+
* Group ID to set add-ons for.
|
|
5028
|
+
* @format GUID
|
|
5029
|
+
*/
|
|
5030
|
+
groupId: string | null;
|
|
5031
|
+
/**
|
|
5032
|
+
* IDs of add-ons to set for the group in display order.
|
|
5033
|
+
* @format GUID
|
|
5034
|
+
* @minSize 1
|
|
5035
|
+
* @maxSize 7
|
|
5036
|
+
*/
|
|
5037
|
+
addOnIds: string[] | null;
|
|
5038
|
+
}
|
|
5039
5039
|
|
|
5040
|
-
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, TaxableAddressType as ac, WebhookIdentityType 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 ValidateServiceResponse 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 Upsert as bA, type Delete as bB, type Schema as bC, type SetCustomSlugEvent as bD, type ServicesUrlsChanged as bE, type DomainEvent as bF, type DomainEventBodyOneOf as bG, type EntityCreatedEvent as bH, type RestoreInfo as bI, type EntityUpdatedEvent as bJ, type EntityDeletedEvent as bK, type ActionEvent as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf as bO, type CreateAddOnGroupRequest as bP, type DeleteAddOnGroupRequest as bQ, type DeleteAddOnGroupResponse as bR, type UpdateAddOnGroupRequest as bS, type ListAddOnGroupsByServiceIdRequest as bT, type AddOn as bU, type AddOnAddOnInfoOneOf as bV, type AddOnGroupDetail as bW, type SetAddOnsForGroupRequest as bX, type CreateServiceRequest as bY, type CreateServiceResponse as bZ, type ValidateServiceRequest as b_, type RankingOptions as ba, type CustomOptions as bb, type IntakeFormPolicy as bc, type Schedule as bd, type AvailabilityConstraints as be, type Duration as bf, type StaffMember as bg, type StaffMediaItem as bh, type StaffMediaItemItemOneOf as bi, type StaffMemberDetails as bj, type ResourceGroup as bk, type ResourceIds as bl, type ServiceResource as bm, type ServiceResourceSelectionOneOf as bn, type ResourceType as bo, type Slug as bp, type URLs as bq, type ExtendedFields as br, type SeoSchema as bs, type Keyword as bt, type Tag as bu, type Settings as bv, type AddOnDetails as bw, type TaxableAddress as bx, type ReindexMessage as by, type ReindexMessageActionOneOf as bz, type UpdateAddOnGroupResponse as c, type NestedResultValueResultOneOf as c$, type FieldViolation as c0, type BulkCreateServicesRequest as c1, type BulkServiceResult as c2, type ItemMetadata as c3, type ApplicationError as c4, type BulkActionMetadata as c5, type GetServiceRequest as c6, type GetServiceResponse as c7, type GetServiceAvailabilityConstraintsRequest as c8, type GetServiceAvailabilityConstraintsResponse as c9, type RangeBucket as cA, type IncludeMissingValuesOptions as cB, type ValueAggregation as cC, type ValueAggregationOptionsOneOf as cD, type RangeAggregation as cE, type ScalarAggregation as cF, type DateHistogramAggregation as cG, type NestedAggregationItem as cH, type NestedAggregationItemKindOneOf as cI, type NestedAggregation as cJ, type GroupByAggregation as cK, type GroupByAggregationKindOneOf as cL, type SearchDetails as cM, type CursorPagingMetadata as cN, type AggregationData as cO, type ValueAggregationResult as cP, type RangeAggregationResult as cQ, type NestedAggregationResults as cR, type NestedAggregationResultsResultOneOf as cS, type ValueResults as cT, type RangeResults as cU, type AggregationResultsScalarResult as cV, type NestedValueAggregationResult as cW, type ValueResult as cX, type RangeResult as cY, type ScalarResult as cZ, type NestedResultValue as c_, type ServiceAvailabilityConstraints as ca, type SplitInterval as cb, type UpdateServiceRequest as cc, type UpdateServiceResponse as cd, type BulkUpdateServicesRequest as ce, type MaskedService as cf, type BulkUpdateServicesByFilterRequest as cg, type DeleteServiceRequest as ch, type ParticipantNotification as ci, type DeleteServiceResponse as cj, type BulkDeleteServicesRequest as ck, type BulkDeleteServicesByFilterRequest as cl, type QueryServicesRequest as cm, type QueryV2 as cn, type QueryV2PagingMethodOneOf as co, type Sorting as cp, type Paging as cq, type CursorPaging as cr, type QueryServicesResponse as cs, type PagingMetadataV2 as ct, type Cursors as cu, type SearchServicesRequest as cv, type CursorSearch as cw, type CursorSearchPagingMethodOneOf as cx, type Aggregation as cy, type AggregationKindOneOf as cz, type UpdateAddOnGroupApplicationErrors as d, type ChangeContext as d$, type Results as d0, type DateHistogramResult as d1, type GroupByValueResults as d2, type DateHistogramResults as d3, type NestedResults as d4, type AggregationResults as d5, type AggregationResultsResultOneOf as d6, type QueryPoliciesRequest as d7, type CursorQueryPagingMethodOneOf as d8, type BookingPolicyWithServices as d9, type Category as dA, type Empty as dB, type BenefitNotification as dC, type Benefit as dD, type EntryPass as dE, type Discount as dF, type DiscountDiscountOneOf as dG, type Behavior as dH, type BehaviorBehaviorOneOf as dI, type UserDomainInfoChangedEvent as dJ, type HtmlSitePublished as dK, type Page as dL, type SitePropertiesNotification as dM, type SitePropertiesEvent as dN, type Properties as dO, type Categories as dP, type Locale as dQ, type Address as dR, type AddressHint as dS, type GeoCoordinates as dT, type BusinessSchedule as dU, type TimePeriod as dV, type SpecialHourPeriod as dW, type Multilingual as dX, type SupportedLanguage as dY, type ConsentPolicy as dZ, type Translation as d_, type QueryBookingFormsRequest as da, type BookingForm as db, type FormDetails as dc, type ConnectedService as dd, type CountServicesRequest as de, type QueryLocationsRequest as df, type QueryLocationsFilter as dg, type BusinessLocations as dh, type CustomLocations as di, type CustomerLocations as dj, type QueryCategoriesRequest as dk, type QueryCategoriesFilter as dl, type QueryServicesMultiLanguageRequest as dm, type QueryServicesMultiLanguageResponse as dn, type SetServiceLocationsRequest as dp, type RemovedLocationSessionsAction as dq, type RemovedLocationSessionsActionActionOptionsOneOf as dr, type MoveToNewLocationsOptions as ds, type EnablePricingPlansForServiceRequest as dt, type InvalidPricingPlan as du, type DisablePricingPlansForServiceRequest as dv, type SetCustomSlugRequest as dw, type ValidateSlugRequest as dx, type CloneServiceRequest as dy, type CategoryNotification as dz, type ListAddOnGroupsByServiceIdResponse as e, enablePricingPlansForService as e$, type ChangeContextPayloadOneOf as e0, type PropertiesChange as e1, type SiteCreated as e2, type SiteCloned as e3, type BaseEventMetadata as e4, type EventMetadata as e5, type ServicesQueryResult as e6, type ServiceSearchSpec as e7, type ServiceTypeWithLiterals as e8, type RateTypeWithLiterals as e9, type DayOfWeekWithLiterals as eA, type ResolutionMethodWithLiterals as eB, type CommonSearchWithEntityContext as eC, onServiceCreated as eD, onServiceDeleted as eE, onServiceUpdated as eF, createAddOnGroup as eG, deleteAddOnGroup as eH, updateAddOnGroup as eI, listAddOnGroupsByServiceId as eJ, setAddOnsForGroup as eK, createService as eL, bulkCreateServices as eM, getService as eN, updateService as eO, bulkUpdateServices as eP, bulkUpdateServicesByFilter as eQ, deleteService as eR, bulkDeleteServices as eS, bulkDeleteServicesByFilter as eT, queryServices as eU, queryPolicies as eV, queryBookingForms as eW, countServices as eX, queryLocations as eY, queryCategories as eZ, setServiceLocations as e_, type AddOnPaymentOptionsWithLiterals as ea, type LocationTypeWithLiterals as eb, type RankingOrderWithLiterals as ec, type SortingMethodTypeWithLiterals as ed, type TaxableAddressTypeWithLiterals as ee, type WebhookIdentityTypeWithLiterals as ef, type V2RequestedFieldsWithLiterals as eg, type SortOrderWithLiterals as eh, type SortTypeWithLiterals as ei, type SortDirectionWithLiterals as ej, type MissingValuesWithLiterals as ek, type ScalarTypeWithLiterals as el, type NestedAggregationTypeWithLiterals as em, type IntervalWithLiterals as en, type AggregationTypeWithLiterals as eo, type ModeWithLiterals as ep, type RequestedFieldsWithLiterals as eq, type ActionWithLiterals as er, type InvalidSlugErrorWithLiterals as es, type CloneErrorsWithLiterals as et, type StatusWithLiterals as eu, type CategoryNotificationEventWithLiterals as ev, type BenefitTypeWithLiterals as ew, type EventWithLiterals as ex, type CrudTypeWithLiterals as ey, type PlacementTypeWithLiterals as ez, type SetAddOnsForGroupResponse as f, disablePricingPlansForService as f0, setCustomSlug as f1, validateSlug as f2, cloneService as f3, 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 };
|
|
5040
|
+
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 CancellationPolicy 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 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, TaxableAddressType as ac, WebhookIdentityType 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 UpdateServiceValidationErrors as b, type GetServiceAvailabilityConstraintsRequest 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 Upsert as bA, type Delete as bB, type Schema as bC, type SetCustomSlugEvent as bD, type ServicesUrlsChanged as bE, type DomainEvent as bF, type DomainEventBodyOneOf as bG, type EntityCreatedEvent as bH, type RestoreInfo as bI, type EntityUpdatedEvent as bJ, type EntityDeletedEvent as bK, type ActionEvent as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf 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 RankingOptions as ba, type CustomOptions as bb, type IntakeFormPolicy as bc, type Schedule as bd, type AvailabilityConstraints as be, type Duration as bf, type StaffMember as bg, type StaffMediaItem as bh, type StaffMediaItemItemOneOf as bi, type StaffMemberDetails as bj, type ResourceGroup as bk, type ResourceIds as bl, type ServiceResource as bm, type ServiceResourceSelectionOneOf as bn, type ResourceType as bo, type Slug as bp, type URLs as bq, type ExtendedFields as br, type SeoSchema as bs, type Keyword as bt, type Tag as bu, type Settings as bv, type AddOnDetails as bw, type TaxableAddress as bx, type ReindexMessage as by, type ReindexMessageActionOneOf as bz, type BulkUpdateServicesOptions 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 BulkUpdateServicesResponse as d, type ListAddOnGroupsByServiceIdRequest 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 CreateAddOnGroupRequest as dX, type DeleteAddOnGroupRequest as dY, type DeleteAddOnGroupResponse as dZ, type UpdateAddOnGroupRequest 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 BulkUpdateServicesByFilterOptions as e, createAddOnGroup as e$, type AddOn as e0, type AddOnAddOnInfoOneOf as e1, type AddOnGroupDetail as e2, type SetAddOnsForGroupRequest as e3, type BaseEventMetadata as e4, type EventMetadata as e5, type ServicesQueryResult as e6, type ServiceSearchSpec as e7, type ServiceTypeWithLiterals as e8, type RateTypeWithLiterals as e9, type DayOfWeekWithLiterals as eA, type ResolutionMethodWithLiterals as eB, type CommonSearchWithEntityContext as eC, onServiceCreated as eD, onServiceDeleted as eE, onServiceUpdated as eF, createService as eG, bulkCreateServices as eH, getService as eI, updateService as eJ, bulkUpdateServices as eK, bulkUpdateServicesByFilter as eL, deleteService as eM, bulkDeleteServices as eN, bulkDeleteServicesByFilter as eO, queryServices as eP, queryPolicies as eQ, queryBookingForms as eR, countServices as eS, queryLocations as eT, queryCategories as eU, setServiceLocations as eV, enablePricingPlansForService as eW, disablePricingPlansForService as eX, setCustomSlug as eY, validateSlug as eZ, cloneService as e_, type AddOnPaymentOptionsWithLiterals as ea, type LocationTypeWithLiterals as eb, type RankingOrderWithLiterals as ec, type SortingMethodTypeWithLiterals as ed, type TaxableAddressTypeWithLiterals as ee, type WebhookIdentityTypeWithLiterals as ef, type V2RequestedFieldsWithLiterals as eg, type SortOrderWithLiterals as eh, type SortTypeWithLiterals as ei, type SortDirectionWithLiterals as ej, type MissingValuesWithLiterals as ek, type ScalarTypeWithLiterals as el, type NestedAggregationTypeWithLiterals as em, type IntervalWithLiterals as en, type AggregationTypeWithLiterals as eo, type ModeWithLiterals as ep, type RequestedFieldsWithLiterals as eq, type ActionWithLiterals as er, type InvalidSlugErrorWithLiterals as es, type CloneErrorsWithLiterals as et, type StatusWithLiterals as eu, type CategoryNotificationEventWithLiterals as ev, type BenefitTypeWithLiterals as ew, type EventWithLiterals as ex, type CrudTypeWithLiterals as ey, type PlacementTypeWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, deleteAddOnGroup as f0, updateAddOnGroup as f1, listAddOnGroupsByServiceId as f2, setAddOnsForGroup as f3, 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 };
|