@wix/auto_sdk_bookings_services 1.0.130 → 1.0.131
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-CFIqn_c5.d.ts → bookings-services-v2-service-services.universal-CyRaI-DD.d.ts} +377 -377
- package/build/cjs/index.d.ts +60 -60
- 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 +138 -138
- package/build/cjs/meta.js +200 -200
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-CFIqn_c5.d.mts → bookings-services-v2-service-services.universal-CyRaI-DD.d.mts} +377 -377
- package/build/es/index.d.mts +60 -60
- 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 +138 -138
- package/build/es/meta.mjs +200 -200
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-CFIqn_c5.d.ts → bookings-services-v2-service-services.universal-CyRaI-DD.d.ts} +377 -377
- package/build/internal/cjs/index.d.ts +60 -60
- 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 +138 -138
- package/build/internal/cjs/meta.js +200 -200
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-CFIqn_c5.d.mts → bookings-services-v2-service-services.universal-CyRaI-DD.d.mts} +377 -377
- package/build/internal/es/index.d.mts +60 -60
- 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 +138 -138
- package/build/internal/es/meta.mjs +200 -200
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1440,138 +1440,6 @@ declare enum WebhookIdentityType {
|
|
|
1440
1440
|
}
|
|
1441
1441
|
/** @enumType */
|
|
1442
1442
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1443
|
-
interface CreateAddOnGroupRequest {
|
|
1444
|
-
/** AddOnGroup to create. */
|
|
1445
|
-
addOnGroup: AddOnGroup;
|
|
1446
|
-
/**
|
|
1447
|
-
* ID of the service to create the AddOnGroup for.
|
|
1448
|
-
* @format GUID
|
|
1449
|
-
*/
|
|
1450
|
-
serviceId?: string | null;
|
|
1451
|
-
}
|
|
1452
|
-
interface CreateAddOnGroupResponse {
|
|
1453
|
-
/** Created AddOnGroup. */
|
|
1454
|
-
addOnGroup?: AddOnGroup;
|
|
1455
|
-
}
|
|
1456
|
-
interface DeleteAddOnGroupRequest {
|
|
1457
|
-
/**
|
|
1458
|
-
* ID of the AddOnGroup to delete.
|
|
1459
|
-
* @format GUID
|
|
1460
|
-
*/
|
|
1461
|
-
addOnGroupId: string | null;
|
|
1462
|
-
/**
|
|
1463
|
-
* ID of the service from which to delete the AddOnGroup.
|
|
1464
|
-
* @format GUID
|
|
1465
|
-
*/
|
|
1466
|
-
serviceId: string | null;
|
|
1467
|
-
}
|
|
1468
|
-
interface DeleteAddOnGroupResponse {
|
|
1469
|
-
}
|
|
1470
|
-
interface UpdateAddOnGroupRequest {
|
|
1471
|
-
/** AddOnGroup to update. */
|
|
1472
|
-
addOnGroup: AddOnGroup;
|
|
1473
|
-
/**
|
|
1474
|
-
* ID of the service that contains the AddOnGroup.
|
|
1475
|
-
* @format GUID
|
|
1476
|
-
*/
|
|
1477
|
-
serviceId: string | null;
|
|
1478
|
-
}
|
|
1479
|
-
interface UpdateAddOnGroupResponse {
|
|
1480
|
-
/** Updated AddOnGroup */
|
|
1481
|
-
addOnGroup?: AddOnGroup;
|
|
1482
|
-
}
|
|
1483
|
-
interface ListAddOnGroupsByServiceIdRequest {
|
|
1484
|
-
/**
|
|
1485
|
-
* ID of the service to retrieve AddOnGroups for.
|
|
1486
|
-
* @format GUID
|
|
1487
|
-
*/
|
|
1488
|
-
serviceId: string | null;
|
|
1489
|
-
/**
|
|
1490
|
-
* List of group ids to return. If not provided, all groups are returned.
|
|
1491
|
-
* @format GUID
|
|
1492
|
-
* @maxSize 3
|
|
1493
|
-
*/
|
|
1494
|
-
groupIds?: string[] | null;
|
|
1495
|
-
}
|
|
1496
|
-
interface ListAddOnGroupsByServiceIdResponse {
|
|
1497
|
-
/**
|
|
1498
|
-
* List of group IDs and their linked AddOns.
|
|
1499
|
-
* @maxSize 3
|
|
1500
|
-
*/
|
|
1501
|
-
addOnGroupsDetails?: AddOnGroupDetail[];
|
|
1502
|
-
}
|
|
1503
|
-
interface AddOn extends AddOnAddOnInfoOneOf {
|
|
1504
|
-
/** The AddOn description. */
|
|
1505
|
-
durationInMinutes?: number;
|
|
1506
|
-
/** The AddOn max quantity. */
|
|
1507
|
-
maxQuantity?: number;
|
|
1508
|
-
/**
|
|
1509
|
-
* The AddOn ID.
|
|
1510
|
-
* @format GUID
|
|
1511
|
-
*/
|
|
1512
|
-
addOnId?: string | null;
|
|
1513
|
-
/**
|
|
1514
|
-
* The AddOn name.
|
|
1515
|
-
* @maxLength 100
|
|
1516
|
-
*/
|
|
1517
|
-
name?: string | null;
|
|
1518
|
-
/** The AddOn price. */
|
|
1519
|
-
price?: Money;
|
|
1520
|
-
}
|
|
1521
|
-
/** @oneof */
|
|
1522
|
-
interface AddOnAddOnInfoOneOf {
|
|
1523
|
-
/** The AddOn description. */
|
|
1524
|
-
durationInMinutes?: number;
|
|
1525
|
-
/** The AddOn max quantity. */
|
|
1526
|
-
maxQuantity?: number;
|
|
1527
|
-
}
|
|
1528
|
-
interface AddOnGroupDetail {
|
|
1529
|
-
/**
|
|
1530
|
-
* The group ID.
|
|
1531
|
-
* @format GUID
|
|
1532
|
-
*/
|
|
1533
|
-
groupId?: string | null;
|
|
1534
|
-
/** The group max number of AddOns. */
|
|
1535
|
-
maxNumberOfAddOns?: number | null;
|
|
1536
|
-
/**
|
|
1537
|
-
* The group name.
|
|
1538
|
-
* @maxLength 100
|
|
1539
|
-
*/
|
|
1540
|
-
groupName?: string | null;
|
|
1541
|
-
/**
|
|
1542
|
-
* The AddOns information linked to the group.
|
|
1543
|
-
* @maxSize 7
|
|
1544
|
-
*/
|
|
1545
|
-
addOns?: AddOn[];
|
|
1546
|
-
/**
|
|
1547
|
-
* The group prompt.
|
|
1548
|
-
* @maxLength 200
|
|
1549
|
-
*/
|
|
1550
|
-
prompt?: string | null;
|
|
1551
|
-
}
|
|
1552
|
-
interface SetAddOnsForGroupRequest {
|
|
1553
|
-
/**
|
|
1554
|
-
* The service ID to set AddOns for.
|
|
1555
|
-
* @format GUID
|
|
1556
|
-
*/
|
|
1557
|
-
serviceId: string | null;
|
|
1558
|
-
/**
|
|
1559
|
-
* The group ID to set AddOns for.
|
|
1560
|
-
* @format GUID
|
|
1561
|
-
*/
|
|
1562
|
-
groupId: string | null;
|
|
1563
|
-
/**
|
|
1564
|
-
* The IDs of AddOns to set.
|
|
1565
|
-
* @format GUID
|
|
1566
|
-
* @minSize 1
|
|
1567
|
-
* @maxSize 7
|
|
1568
|
-
*/
|
|
1569
|
-
addOnIds: string[] | null;
|
|
1570
|
-
}
|
|
1571
|
-
interface SetAddOnsForGroupResponse {
|
|
1572
|
-
/** The updated AddOnGroup. */
|
|
1573
|
-
addOnGroup?: AddOnGroup;
|
|
1574
|
-
}
|
|
1575
1443
|
interface CreateServiceRequest {
|
|
1576
1444
|
/** Service to create. */
|
|
1577
1445
|
service: Service;
|
|
@@ -3480,130 +3348,244 @@ interface SiteCloned {
|
|
|
3480
3348
|
/** Origin site id. */
|
|
3481
3349
|
originMetaSiteId?: string;
|
|
3482
3350
|
}
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
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
|
-
|
|
3351
|
+
interface CreateAddOnGroupRequest {
|
|
3352
|
+
/** AddOnGroup to create. */
|
|
3353
|
+
addOnGroup: AddOnGroup;
|
|
3354
|
+
/**
|
|
3355
|
+
* ID of the service to create the AddOnGroup for.
|
|
3356
|
+
* @format GUID
|
|
3357
|
+
*/
|
|
3358
|
+
serviceId?: string | null;
|
|
3359
|
+
}
|
|
3360
|
+
interface CreateAddOnGroupResponse {
|
|
3361
|
+
/** Created AddOnGroup. */
|
|
3362
|
+
addOnGroup?: AddOnGroup;
|
|
3363
|
+
}
|
|
3364
|
+
interface DeleteAddOnGroupRequest {
|
|
3365
|
+
/**
|
|
3366
|
+
* ID of the AddOnGroup to delete.
|
|
3367
|
+
* @format GUID
|
|
3368
|
+
*/
|
|
3369
|
+
addOnGroupId: string | null;
|
|
3370
|
+
/**
|
|
3371
|
+
* ID of the service from which to delete the AddOnGroup.
|
|
3372
|
+
* @format GUID
|
|
3373
|
+
*/
|
|
3374
|
+
serviceId: string | null;
|
|
3375
|
+
}
|
|
3376
|
+
interface DeleteAddOnGroupResponse {
|
|
3377
|
+
}
|
|
3378
|
+
interface UpdateAddOnGroupRequest {
|
|
3379
|
+
/** AddOnGroup to update. */
|
|
3380
|
+
addOnGroup: AddOnGroup;
|
|
3381
|
+
/**
|
|
3382
|
+
* ID of the service that contains the AddOnGroup.
|
|
3383
|
+
* @format GUID
|
|
3384
|
+
*/
|
|
3385
|
+
serviceId: string | null;
|
|
3386
|
+
}
|
|
3387
|
+
interface UpdateAddOnGroupResponse {
|
|
3388
|
+
/** Updated AddOnGroup */
|
|
3389
|
+
addOnGroup?: AddOnGroup;
|
|
3390
|
+
}
|
|
3391
|
+
interface ListAddOnGroupsByServiceIdRequest {
|
|
3392
|
+
/**
|
|
3393
|
+
* ID of the service to retrieve AddOnGroups for.
|
|
3394
|
+
* @format GUID
|
|
3395
|
+
*/
|
|
3396
|
+
serviceId: string | null;
|
|
3397
|
+
/**
|
|
3398
|
+
* List of group ids to return. If not provided, all groups are returned.
|
|
3399
|
+
* @format GUID
|
|
3400
|
+
* @maxSize 3
|
|
3401
|
+
*/
|
|
3402
|
+
groupIds?: string[] | null;
|
|
3403
|
+
}
|
|
3404
|
+
interface ListAddOnGroupsByServiceIdResponse {
|
|
3405
|
+
/**
|
|
3406
|
+
* List of group IDs and their linked AddOns.
|
|
3407
|
+
* @maxSize 3
|
|
3408
|
+
*/
|
|
3409
|
+
addOnGroupsDetails?: AddOnGroupDetail[];
|
|
3410
|
+
}
|
|
3411
|
+
interface AddOn extends AddOnAddOnInfoOneOf {
|
|
3412
|
+
/** The AddOn description. */
|
|
3413
|
+
durationInMinutes?: number;
|
|
3414
|
+
/** The AddOn max quantity. */
|
|
3415
|
+
maxQuantity?: number;
|
|
3416
|
+
/**
|
|
3417
|
+
* The AddOn ID.
|
|
3418
|
+
* @format GUID
|
|
3419
|
+
*/
|
|
3420
|
+
addOnId?: string | null;
|
|
3421
|
+
/**
|
|
3422
|
+
* The AddOn name.
|
|
3423
|
+
* @maxLength 100
|
|
3424
|
+
*/
|
|
3425
|
+
name?: string | null;
|
|
3426
|
+
/** The AddOn price. */
|
|
3427
|
+
price?: Money;
|
|
3428
|
+
}
|
|
3429
|
+
/** @oneof */
|
|
3430
|
+
interface AddOnAddOnInfoOneOf {
|
|
3431
|
+
/** The AddOn description. */
|
|
3432
|
+
durationInMinutes?: number;
|
|
3433
|
+
/** The AddOn max quantity. */
|
|
3434
|
+
maxQuantity?: number;
|
|
3435
|
+
}
|
|
3436
|
+
interface AddOnGroupDetail {
|
|
3437
|
+
/**
|
|
3438
|
+
* The group ID.
|
|
3439
|
+
* @format GUID
|
|
3440
|
+
*/
|
|
3441
|
+
groupId?: string | null;
|
|
3442
|
+
/** The group max number of AddOns. */
|
|
3443
|
+
maxNumberOfAddOns?: number | null;
|
|
3444
|
+
/**
|
|
3445
|
+
* The group name.
|
|
3446
|
+
* @maxLength 100
|
|
3447
|
+
*/
|
|
3448
|
+
groupName?: string | null;
|
|
3449
|
+
/**
|
|
3450
|
+
* The AddOns information linked to the group.
|
|
3451
|
+
* @maxSize 7
|
|
3452
|
+
*/
|
|
3453
|
+
addOns?: AddOn[];
|
|
3454
|
+
/**
|
|
3455
|
+
* The group prompt.
|
|
3456
|
+
* @maxLength 200
|
|
3457
|
+
*/
|
|
3458
|
+
prompt?: string | null;
|
|
3459
|
+
}
|
|
3460
|
+
interface SetAddOnsForGroupRequest {
|
|
3461
|
+
/**
|
|
3462
|
+
* The service ID to set AddOns for.
|
|
3463
|
+
* @format GUID
|
|
3464
|
+
*/
|
|
3465
|
+
serviceId: string | null;
|
|
3466
|
+
/**
|
|
3467
|
+
* The group ID to set AddOns for.
|
|
3468
|
+
* @format GUID
|
|
3469
|
+
*/
|
|
3470
|
+
groupId: string | null;
|
|
3471
|
+
/**
|
|
3472
|
+
* The IDs of AddOns to set.
|
|
3473
|
+
* @format GUID
|
|
3474
|
+
* @minSize 1
|
|
3475
|
+
* @maxSize 7
|
|
3476
|
+
*/
|
|
3477
|
+
addOnIds: string[] | null;
|
|
3478
|
+
}
|
|
3479
|
+
interface SetAddOnsForGroupResponse {
|
|
3480
|
+
/** The updated AddOnGroup. */
|
|
3481
|
+
addOnGroup?: AddOnGroup;
|
|
3482
|
+
}
|
|
3483
|
+
/** @docsIgnore */
|
|
3484
|
+
type CreateServiceValidationErrors = {
|
|
3485
|
+
ruleName?: 'INVALID_FORM';
|
|
3486
|
+
} | {
|
|
3487
|
+
ruleName?: 'INVALID_CATEGORY';
|
|
3488
|
+
} | {
|
|
3489
|
+
ruleName?: 'INVALID_BOOKING_POLICY';
|
|
3490
|
+
} | {
|
|
3491
|
+
ruleName?: 'INVALID_SERVICE_TYPE';
|
|
3492
|
+
} | {
|
|
3493
|
+
ruleName?: 'INVALID_SERVICE_NAME';
|
|
3494
|
+
} | {
|
|
3495
|
+
ruleName?: 'INVALID_ONLINE_BOOKING';
|
|
3496
|
+
} | {
|
|
3497
|
+
ruleName?: 'INVALID_STAFF_MEMBER_IDS';
|
|
3498
|
+
} | {
|
|
3499
|
+
ruleName?: 'PAYMENT_REQUIRED';
|
|
3500
|
+
} | {
|
|
3501
|
+
ruleName?: 'INVALID_PAYMENT_TYPE';
|
|
3502
|
+
} | {
|
|
3503
|
+
ruleName?: 'INVALID_RATE';
|
|
3504
|
+
} | {
|
|
3505
|
+
ruleName?: 'INVALID_PAYMENT_OPTIONS';
|
|
3506
|
+
} | {
|
|
3507
|
+
ruleName?: 'INVALID_BUSINESS_LOCATIONS';
|
|
3508
|
+
} | {
|
|
3509
|
+
ruleName?: 'INVALID_LOCATIONS';
|
|
3510
|
+
} | {
|
|
3511
|
+
ruleName?: 'INVALID_BUSINESS_LOCATION';
|
|
3512
|
+
} | {
|
|
3513
|
+
ruleName?: 'INVALID_CUSTOM_LOCATION';
|
|
3514
|
+
} | {
|
|
3515
|
+
ruleName?: 'INVALID_CUSTOMER_LOCATION';
|
|
3516
|
+
} | {
|
|
3517
|
+
ruleName?: 'INVALID_UNKNOWN_LOCATION';
|
|
3518
|
+
} | {
|
|
3519
|
+
ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
|
|
3520
|
+
} | {
|
|
3521
|
+
ruleName?: 'INVALID_DEFAULT_CAPACITY';
|
|
3522
|
+
} | {
|
|
3523
|
+
ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
|
|
3524
|
+
} | {
|
|
3525
|
+
ruleName?: 'INVALID_SESSION_DURATION';
|
|
3526
|
+
};
|
|
3527
|
+
/** @docsIgnore */
|
|
3528
|
+
type UpdateServiceValidationErrors = {
|
|
3529
|
+
ruleName?: 'INVALID_FORM';
|
|
3530
|
+
} | {
|
|
3531
|
+
ruleName?: 'INVALID_CATEGORY';
|
|
3532
|
+
} | {
|
|
3533
|
+
ruleName?: 'INVALID_BOOKING_POLICY';
|
|
3534
|
+
} | {
|
|
3535
|
+
ruleName?: 'INVALID_SERVICE_TYPE';
|
|
3536
|
+
} | {
|
|
3537
|
+
ruleName?: 'INVALID_SERVICE_NAME';
|
|
3538
|
+
} | {
|
|
3539
|
+
ruleName?: 'INVALID_ONLINE_BOOKING';
|
|
3540
|
+
} | {
|
|
3541
|
+
ruleName?: 'INVALID_STAFF_MEMBER_IDS';
|
|
3542
|
+
} | {
|
|
3543
|
+
ruleName?: 'PAYMENT_REQUIRED';
|
|
3544
|
+
} | {
|
|
3545
|
+
ruleName?: 'INVALID_PAYMENT_TYPE';
|
|
3546
|
+
} | {
|
|
3547
|
+
ruleName?: 'INVALID_RATE';
|
|
3548
|
+
} | {
|
|
3549
|
+
ruleName?: 'INVALID_PAYMENT_OPTIONS';
|
|
3550
|
+
} | {
|
|
3551
|
+
ruleName?: 'INVALID_BUSINESS_LOCATIONS';
|
|
3552
|
+
} | {
|
|
3553
|
+
ruleName?: 'INVALID_LOCATIONS';
|
|
3554
|
+
} | {
|
|
3555
|
+
ruleName?: 'INVALID_BUSINESS_LOCATION';
|
|
3556
|
+
} | {
|
|
3557
|
+
ruleName?: 'INVALID_CUSTOM_LOCATION';
|
|
3558
|
+
} | {
|
|
3559
|
+
ruleName?: 'INVALID_CUSTOMER_LOCATION';
|
|
3560
|
+
} | {
|
|
3561
|
+
ruleName?: 'INVALID_UNKNOWN_LOCATION';
|
|
3562
|
+
} | {
|
|
3563
|
+
ruleName?: 'INVALID_MANUAL_APPROVAL_WITH_PRICING_PLANS';
|
|
3564
|
+
} | {
|
|
3565
|
+
ruleName?: 'INVALID_DEFAULT_CAPACITY';
|
|
3566
|
+
} | {
|
|
3567
|
+
ruleName?: 'INVALID_APPOINTMENT_CAPACITY';
|
|
3568
|
+
} | {
|
|
3569
|
+
ruleName?: 'INVALID_SESSION_DURATION';
|
|
3570
|
+
};
|
|
3571
|
+
/** @docsIgnore */
|
|
3572
|
+
type QueryBookingFormsApplicationErrors = {
|
|
3573
|
+
code?: 'DEFAULT_BOOKING_FORM_NOT_FOUND';
|
|
3574
|
+
description?: string;
|
|
3575
|
+
data?: Record<string, any>;
|
|
3576
|
+
};
|
|
3577
|
+
/** @docsIgnore */
|
|
3578
|
+
type EnablePricingPlansForServiceApplicationErrors = {
|
|
3579
|
+
code?: 'INVALID_PRICING_PLAN';
|
|
3580
|
+
description?: string;
|
|
3581
|
+
data?: InvalidPricingPlan;
|
|
3582
|
+
} | {
|
|
3583
|
+
code?: 'SERVICE_DOES_NOT_SUPPORT_PRICING_PLANS';
|
|
3584
|
+
description?: string;
|
|
3585
|
+
data?: Record<string, any>;
|
|
3586
|
+
};
|
|
3587
|
+
/** @docsIgnore */
|
|
3588
|
+
type DisablePricingPlansForServiceApplicationErrors = {
|
|
3607
3589
|
code?: 'INVALID_PRICING_PLAN';
|
|
3608
3590
|
description?: string;
|
|
3609
3591
|
data?: InvalidPricingPlan;
|
|
@@ -3618,6 +3600,24 @@ type SetCustomSlugApplicationErrors = {
|
|
|
3618
3600
|
type SetCustomSlugValidationErrors = {
|
|
3619
3601
|
ruleName?: 'SLUG_CONTAINS_ILLEGAL_CHARACTERS';
|
|
3620
3602
|
};
|
|
3603
|
+
/** @docsIgnore */
|
|
3604
|
+
type DeleteAddOnGroupApplicationErrors = {
|
|
3605
|
+
code?: 'GROUP_NOT_ON_SERVICE';
|
|
3606
|
+
description?: string;
|
|
3607
|
+
data?: Record<string, any>;
|
|
3608
|
+
};
|
|
3609
|
+
/** @docsIgnore */
|
|
3610
|
+
type UpdateAddOnGroupApplicationErrors = {
|
|
3611
|
+
code?: 'GROUP_NOT_ON_SERVICE';
|
|
3612
|
+
description?: string;
|
|
3613
|
+
data?: Record<string, any>;
|
|
3614
|
+
};
|
|
3615
|
+
/** @docsIgnore */
|
|
3616
|
+
type SetAddOnsForGroupApplicationErrors = {
|
|
3617
|
+
code?: 'ADD_ON_GROUP_NOT_FOUND';
|
|
3618
|
+
description?: string;
|
|
3619
|
+
data?: Record<string, any>;
|
|
3620
|
+
};
|
|
3621
3621
|
interface BaseEventMetadata {
|
|
3622
3622
|
/**
|
|
3623
3623
|
* App instance ID.
|
|
@@ -3740,126 +3740,6 @@ interface ServiceUpdatedEnvelope {
|
|
|
3740
3740
|
* @slug updated
|
|
3741
3741
|
*/
|
|
3742
3742
|
declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => void | Promise<void>): void;
|
|
3743
|
-
/**
|
|
3744
|
-
* Create a new AddOns group.
|
|
3745
|
-
* An AddOns group defines a collection of AddOns that can be linked to a Service,
|
|
3746
|
-
* with constraints such as minimum and maximum selections.
|
|
3747
|
-
* @param addOnGroup - AddOnGroup to create.
|
|
3748
|
-
* @public
|
|
3749
|
-
* @documentationMaturity preview
|
|
3750
|
-
* @requiredField addOnGroup
|
|
3751
|
-
* @requiredField addOnGroup.name
|
|
3752
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
|
|
3753
|
-
* @applicableIdentity APP
|
|
3754
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
|
|
3755
|
-
*/
|
|
3756
|
-
declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
|
|
3757
|
-
interface CreateAddOnGroupOptions {
|
|
3758
|
-
/**
|
|
3759
|
-
* ID of the service to create the AddOnGroup for.
|
|
3760
|
-
* @format GUID
|
|
3761
|
-
*/
|
|
3762
|
-
serviceId?: string | null;
|
|
3763
|
-
}
|
|
3764
|
-
/**
|
|
3765
|
-
* Delete an existing AddOns group.
|
|
3766
|
-
* This will remove the group and unlink all associated AddOns.
|
|
3767
|
-
* @param addOnGroupId - ID of the AddOnGroup to delete.
|
|
3768
|
-
* @public
|
|
3769
|
-
* @documentationMaturity preview
|
|
3770
|
-
* @requiredField addOnGroupId
|
|
3771
|
-
* @requiredField options
|
|
3772
|
-
* @requiredField options.serviceId
|
|
3773
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
|
|
3774
|
-
* @applicableIdentity APP
|
|
3775
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
|
|
3776
|
-
*/
|
|
3777
|
-
declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
|
|
3778
|
-
__applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
|
|
3779
|
-
}>;
|
|
3780
|
-
interface DeleteAddOnGroupOptions {
|
|
3781
|
-
/**
|
|
3782
|
-
* ID of the service from which to delete the AddOnGroup.
|
|
3783
|
-
* @format GUID
|
|
3784
|
-
*/
|
|
3785
|
-
serviceId: string | null;
|
|
3786
|
-
}
|
|
3787
|
-
/**
|
|
3788
|
-
* Update an existing AddOns group.
|
|
3789
|
-
* This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
|
|
3790
|
-
* @param addOnGroup - AddOnGroup to update.
|
|
3791
|
-
* @public
|
|
3792
|
-
* @documentationMaturity preview
|
|
3793
|
-
* @requiredField addOnGroup
|
|
3794
|
-
* @requiredField addOnGroup._id
|
|
3795
|
-
* @requiredField options
|
|
3796
|
-
* @requiredField options.serviceId
|
|
3797
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
|
|
3798
|
-
* @applicableIdentity APP
|
|
3799
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
|
|
3800
|
-
*/
|
|
3801
|
-
declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
|
|
3802
|
-
__applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
|
|
3803
|
-
}>;
|
|
3804
|
-
interface UpdateAddOnGroupOptions {
|
|
3805
|
-
/**
|
|
3806
|
-
* ID of the service that contains the AddOnGroup.
|
|
3807
|
-
* @format GUID
|
|
3808
|
-
*/
|
|
3809
|
-
serviceId: string | null;
|
|
3810
|
-
}
|
|
3811
|
-
/**
|
|
3812
|
-
* Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
|
|
3813
|
-
* If the group_id is specified, only the AddOns for the specified group will be returned,
|
|
3814
|
-
* otherwise all groups will be returned.
|
|
3815
|
-
* @param serviceId - ID of the service to retrieve AddOnGroups for.
|
|
3816
|
-
* @public
|
|
3817
|
-
* @documentationMaturity preview
|
|
3818
|
-
* @requiredField serviceId
|
|
3819
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
|
|
3820
|
-
* @applicableIdentity APP
|
|
3821
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
|
|
3822
|
-
*/
|
|
3823
|
-
declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
|
|
3824
|
-
interface ListAddOnGroupsByServiceIdOptions {
|
|
3825
|
-
/**
|
|
3826
|
-
* List of group ids to return. If not provided, all groups are returned.
|
|
3827
|
-
* @format GUID
|
|
3828
|
-
* @maxSize 3
|
|
3829
|
-
*/
|
|
3830
|
-
groupIds?: string[] | null;
|
|
3831
|
-
}
|
|
3832
|
-
/**
|
|
3833
|
-
* Sets the AddOns for a specific group.
|
|
3834
|
-
* The order of the AddOns in the list will be used to determine their display order.
|
|
3835
|
-
* @param serviceId - The service ID to set AddOns for.
|
|
3836
|
-
* @public
|
|
3837
|
-
* @documentationMaturity preview
|
|
3838
|
-
* @requiredField options
|
|
3839
|
-
* @requiredField options.addOnIds
|
|
3840
|
-
* @requiredField options.groupId
|
|
3841
|
-
* @requiredField serviceId
|
|
3842
|
-
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
|
|
3843
|
-
* @applicableIdentity APP
|
|
3844
|
-
* @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
|
|
3845
|
-
*/
|
|
3846
|
-
declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
|
|
3847
|
-
__applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
|
|
3848
|
-
}>;
|
|
3849
|
-
interface SetAddOnsForGroupOptions {
|
|
3850
|
-
/**
|
|
3851
|
-
* The group ID to set AddOns for.
|
|
3852
|
-
* @format GUID
|
|
3853
|
-
*/
|
|
3854
|
-
groupId: string | null;
|
|
3855
|
-
/**
|
|
3856
|
-
* The IDs of AddOns to set.
|
|
3857
|
-
* @format GUID
|
|
3858
|
-
* @minSize 1
|
|
3859
|
-
* @maxSize 7
|
|
3860
|
-
*/
|
|
3861
|
-
addOnIds: string[] | null;
|
|
3862
|
-
}
|
|
3863
3743
|
/**
|
|
3864
3744
|
* Creates a service.
|
|
3865
3745
|
*
|
|
@@ -4997,5 +4877,125 @@ interface ValidateSlugOptions {
|
|
|
4997
4877
|
* @fqn wix.bookings.services.v2.ServicesService.CloneService
|
|
4998
4878
|
*/
|
|
4999
4879
|
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>>;
|
|
4880
|
+
/**
|
|
4881
|
+
* Create a new AddOns group.
|
|
4882
|
+
* An AddOns group defines a collection of AddOns that can be linked to a Service,
|
|
4883
|
+
* with constraints such as minimum and maximum selections.
|
|
4884
|
+
* @param addOnGroup - AddOnGroup to create.
|
|
4885
|
+
* @public
|
|
4886
|
+
* @documentationMaturity preview
|
|
4887
|
+
* @requiredField addOnGroup
|
|
4888
|
+
* @requiredField addOnGroup.name
|
|
4889
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
|
|
4890
|
+
* @applicableIdentity APP
|
|
4891
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.CreateAddOnGroup
|
|
4892
|
+
*/
|
|
4893
|
+
declare function createAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `name`, 2>, options?: CreateAddOnGroupOptions): Promise<NonNullablePaths<CreateAddOnGroupResponse, `addOnGroup.addOnIds`, 3>>;
|
|
4894
|
+
interface CreateAddOnGroupOptions {
|
|
4895
|
+
/**
|
|
4896
|
+
* ID of the service to create the AddOnGroup for.
|
|
4897
|
+
* @format GUID
|
|
4898
|
+
*/
|
|
4899
|
+
serviceId?: string | null;
|
|
4900
|
+
}
|
|
4901
|
+
/**
|
|
4902
|
+
* Delete an existing AddOns group.
|
|
4903
|
+
* This will remove the group and unlink all associated AddOns.
|
|
4904
|
+
* @param addOnGroupId - ID of the AddOnGroup to delete.
|
|
4905
|
+
* @public
|
|
4906
|
+
* @documentationMaturity preview
|
|
4907
|
+
* @requiredField addOnGroupId
|
|
4908
|
+
* @requiredField options
|
|
4909
|
+
* @requiredField options.serviceId
|
|
4910
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_CREATE
|
|
4911
|
+
* @applicableIdentity APP
|
|
4912
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.DeleteAddOnGroup
|
|
4913
|
+
*/
|
|
4914
|
+
declare function deleteAddOnGroup(addOnGroupId: string, options: NonNullablePaths<DeleteAddOnGroupOptions, `serviceId`, 2>): Promise<void & {
|
|
4915
|
+
__applicationErrorsType?: DeleteAddOnGroupApplicationErrors;
|
|
4916
|
+
}>;
|
|
4917
|
+
interface DeleteAddOnGroupOptions {
|
|
4918
|
+
/**
|
|
4919
|
+
* ID of the service from which to delete the AddOnGroup.
|
|
4920
|
+
* @format GUID
|
|
4921
|
+
*/
|
|
4922
|
+
serviceId: string | null;
|
|
4923
|
+
}
|
|
4924
|
+
/**
|
|
4925
|
+
* Update an existing AddOns group.
|
|
4926
|
+
* This allows modifying group settings such as its name, prompt, constraints, or associated AddOns.
|
|
4927
|
+
* @param addOnGroup - AddOnGroup to update.
|
|
4928
|
+
* @public
|
|
4929
|
+
* @documentationMaturity preview
|
|
4930
|
+
* @requiredField addOnGroup
|
|
4931
|
+
* @requiredField addOnGroup._id
|
|
4932
|
+
* @requiredField options
|
|
4933
|
+
* @requiredField options.serviceId
|
|
4934
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUP_UPDATE
|
|
4935
|
+
* @applicableIdentity APP
|
|
4936
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.UpdateAddOnGroup
|
|
4937
|
+
*/
|
|
4938
|
+
declare function updateAddOnGroup(addOnGroup: NonNullablePaths<AddOnGroup, `_id`, 2>, options: NonNullablePaths<UpdateAddOnGroupOptions, `serviceId`, 2>): Promise<NonNullablePaths<UpdateAddOnGroupResponse, `addOnGroup.addOnIds`, 3> & {
|
|
4939
|
+
__applicationErrorsType?: UpdateAddOnGroupApplicationErrors;
|
|
4940
|
+
}>;
|
|
4941
|
+
interface UpdateAddOnGroupOptions {
|
|
4942
|
+
/**
|
|
4943
|
+
* ID of the service that contains the AddOnGroup.
|
|
4944
|
+
* @format GUID
|
|
4945
|
+
*/
|
|
4946
|
+
serviceId: string | null;
|
|
4947
|
+
}
|
|
4948
|
+
/**
|
|
4949
|
+
* Retrieves a list of AddOnGroups including enriched AddOn details in the correct order.
|
|
4950
|
+
* If the group_id is specified, only the AddOns for the specified group will be returned,
|
|
4951
|
+
* otherwise all groups will be returned.
|
|
4952
|
+
* @param serviceId - ID of the service to retrieve AddOnGroups for.
|
|
4953
|
+
* @public
|
|
4954
|
+
* @documentationMaturity preview
|
|
4955
|
+
* @requiredField serviceId
|
|
4956
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_LIST
|
|
4957
|
+
* @applicableIdentity APP
|
|
4958
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.ListAddOnGroupsByServiceId
|
|
4959
|
+
*/
|
|
4960
|
+
declare function listAddOnGroupsByServiceId(serviceId: string, options?: ListAddOnGroupsByServiceIdOptions): Promise<NonNullablePaths<ListAddOnGroupsByServiceIdResponse, `addOnGroupsDetails`, 2>>;
|
|
4961
|
+
interface ListAddOnGroupsByServiceIdOptions {
|
|
4962
|
+
/**
|
|
4963
|
+
* List of group ids to return. If not provided, all groups are returned.
|
|
4964
|
+
* @format GUID
|
|
4965
|
+
* @maxSize 3
|
|
4966
|
+
*/
|
|
4967
|
+
groupIds?: string[] | null;
|
|
4968
|
+
}
|
|
4969
|
+
/**
|
|
4970
|
+
* Sets the AddOns for a specific group.
|
|
4971
|
+
* The order of the AddOns in the list will be used to determine their display order.
|
|
4972
|
+
* @param serviceId - The service ID to set AddOns for.
|
|
4973
|
+
* @public
|
|
4974
|
+
* @documentationMaturity preview
|
|
4975
|
+
* @requiredField options
|
|
4976
|
+
* @requiredField options.addOnIds
|
|
4977
|
+
* @requiredField options.groupId
|
|
4978
|
+
* @requiredField serviceId
|
|
4979
|
+
* @permissionId BOOKINGS.SERVICES_ADD_ON_GROUPS_SET_ADD_ONS
|
|
4980
|
+
* @applicableIdentity APP
|
|
4981
|
+
* @fqn wix.bookings.services.v2.AddOnGroupsService.SetAddOnsForGroup
|
|
4982
|
+
*/
|
|
4983
|
+
declare function setAddOnsForGroup(serviceId: string, options: NonNullablePaths<SetAddOnsForGroupOptions, `addOnIds` | `groupId`, 2>): Promise<NonNullablePaths<SetAddOnsForGroupResponse, `addOnGroup.addOnIds`, 3> & {
|
|
4984
|
+
__applicationErrorsType?: SetAddOnsForGroupApplicationErrors;
|
|
4985
|
+
}>;
|
|
4986
|
+
interface SetAddOnsForGroupOptions {
|
|
4987
|
+
/**
|
|
4988
|
+
* The group ID to set AddOns for.
|
|
4989
|
+
* @format GUID
|
|
4990
|
+
*/
|
|
4991
|
+
groupId: string | null;
|
|
4992
|
+
/**
|
|
4993
|
+
* The IDs of AddOns to set.
|
|
4994
|
+
* @format GUID
|
|
4995
|
+
* @minSize 1
|
|
4996
|
+
* @maxSize 7
|
|
4997
|
+
*/
|
|
4998
|
+
addOnIds: string[] | null;
|
|
4999
|
+
}
|
|
5000
5000
|
|
|
5001
|
-
export { type SetCustomSlugValidationErrors as $, type AddOnGroup as A, type BulkCreateServicesOptions as B, type CreateAddOnGroupOptions as C, type DeleteAddOnGroupOptions as D, type QueryBookingFormsResponse as E, type QueryBookingFormsApplicationErrors as F, type CountServicesOptions as G, type CountServicesResponse as H, type QueryLocationsOptions as I, type QueryLocationsResponse as J, type QueryCategoriesOptions as K, type ListAddOnGroupsByServiceIdOptions as L, type QueryCategoriesResponse as M, type Location as N, type SetServiceLocationsOptions as O, type SetServiceLocationsResponse as P, type QueryPoliciesResponse as Q, type EnablePricingPlansForServiceResponse as R, type SetAddOnsForGroupOptions as S, type EnablePricingPlansForServiceApplicationErrors as T, type UpdateAddOnGroupOptions as U, type DisablePricingPlansForServiceOptions as V, type DisablePricingPlansForServiceResponse as W, type DisablePricingPlansForServiceApplicationErrors as X, type SetCustomSlugOptions as Y, type SetCustomSlugResponse as Z, type SetCustomSlugApplicationErrors as _, type CreateAddOnGroupResponse as a, type CancellationPolicy as a$, type ValidateSlugOptions as a0, type ValidateSlugResponse as a1, type CloneServiceResponse as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, ServiceType as a6, RateType as a7, AddOnPaymentOptions as a8, LocationType as a9, type Media as aA, type MediaItem as aB, type MediaItemItemOneOf as aC, type V2Category as aD, type Form as aE, type FormSettings as aF, type Payment as aG, type PaymentRateOneOf as aH, type FixedPayment as aI, type Money as aJ, type CustomPayment as aK, type VariedPayment as aL, type PaymentOptions as aM, type OnlineBooking as aN, type Conferencing as aO, type LocationOptionsOneOf as aP, type CommonAddress as aQ, type CommonAddressStreetOneOf as aR, type StreetAddress as aS, type AddressLocation as aT, type BusinessLocationOptions as aU, type CustomLocationOptions as aV, type BookingPolicy as aW, type PolicyDescription as aX, type LimitEarlyBookingPolicy as aY, type LimitLateBookingPolicy as aZ, type BookAfterStartPolicy as a_, RankingOrder as aa, SortingMethodType as ab, 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 FieldViolation as b$, type ReschedulePolicy as b0, type WaitlistPolicy as b1, type ParticipantsPolicy as b2, type ResourcesPolicy as b3, type CancellationFeePolicy as b4, type CancellationWindow as b5, type CancellationWindowFeeOneOf as b6, type SaveCreditCardPolicy as b7, type StaffSortingPolicy as b8, type StaffSortingPolicyOptionsOneOf as b9, type Delete as bA, type Schema as bB, type SetCustomSlugEvent as bC, type ServicesUrlsChanged as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type CreateAddOnGroupRequest as bO, type DeleteAddOnGroupRequest as bP, type DeleteAddOnGroupResponse as bQ, type UpdateAddOnGroupRequest as bR, type ListAddOnGroupsByServiceIdRequest as bS, type AddOn as bT, type AddOnAddOnInfoOneOf as bU, type AddOnGroupDetail as bV, type SetAddOnsForGroupRequest as bW, type CreateServiceRequest as bX, type CreateServiceResponse as bY, type ValidateServiceRequest as bZ, type ValidateServiceResponse as b_, type RankingOptions as ba, type CustomOptions as bb, type Schedule as bc, type AvailabilityConstraints as bd, type Duration as be, type StaffMember as bf, type StaffMediaItem as bg, type StaffMediaItemItemOneOf as bh, type StaffMemberDetails as bi, type ResourceGroup as bj, type ResourceIds as bk, type ServiceResource as bl, type ServiceResourceSelectionOneOf as bm, type ResourceType as bn, type Slug as bo, type URLs as bp, type ExtendedFields as bq, type SeoSchema as br, type Keyword as bs, type Tag as bt, type Settings as bu, type AddOnDetails as bv, type TaxableAddress as bw, type ReindexMessage as bx, type ReindexMessageActionOneOf as by, type Upsert as bz, type UpdateAddOnGroupResponse as c, type Results as c$, type BulkCreateServicesRequest as c0, type BulkServiceResult as c1, type ItemMetadata as c2, type ApplicationError as c3, type BulkActionMetadata as c4, type GetServiceRequest as c5, type GetServiceResponse as c6, type GetServiceAvailabilityConstraintsRequest as c7, type GetServiceAvailabilityConstraintsResponse as c8, type ServiceAvailabilityConstraints as c9, type IncludeMissingValuesOptions as cA, type ValueAggregation as cB, type ValueAggregationOptionsOneOf as cC, type RangeAggregation as cD, type ScalarAggregation as cE, type DateHistogramAggregation as cF, type NestedAggregationItem as cG, type NestedAggregationItemKindOneOf as cH, type NestedAggregation as cI, type GroupByAggregation as cJ, type GroupByAggregationKindOneOf as cK, type SearchDetails as cL, type CursorPagingMetadata as cM, type AggregationData as cN, type ValueAggregationResult as cO, type RangeAggregationResult as cP, type NestedAggregationResults as cQ, type NestedAggregationResultsResultOneOf as cR, type ValueResults as cS, type RangeResults as cT, type AggregationResultsScalarResult as cU, type NestedValueAggregationResult as cV, type ValueResult as cW, type RangeResult as cX, type ScalarResult as cY, type NestedResultValue as cZ, type NestedResultValueResultOneOf as c_, type SplitInterval as ca, type UpdateServiceRequest as cb, type UpdateServiceResponse as cc, type BulkUpdateServicesRequest as cd, type MaskedService as ce, type BulkUpdateServicesByFilterRequest as cf, type DeleteServiceRequest as cg, type ParticipantNotification as ch, type DeleteServiceResponse as ci, type BulkDeleteServicesRequest as cj, type BulkDeleteServicesByFilterRequest as ck, type QueryServicesRequest as cl, type QueryV2 as cm, type QueryV2PagingMethodOneOf as cn, type Sorting as co, type Paging as cp, type CursorPaging as cq, type QueryServicesResponse as cr, type PagingMetadataV2 as cs, type Cursors as ct, type SearchServicesRequest as cu, type CursorSearch as cv, type CursorSearchPagingMethodOneOf as cw, type Aggregation as cx, type AggregationKindOneOf as cy, type RangeBucket as cz, type UpdateAddOnGroupApplicationErrors as d, type ChangeContextPayloadOneOf as d$, type DateHistogramResult as d0, type GroupByValueResults as d1, type DateHistogramResults as d2, type NestedResults as d3, type AggregationResults as d4, type AggregationResultsResultOneOf as d5, type QueryPoliciesRequest as d6, type CursorQueryPagingMethodOneOf as d7, type BookingPolicyWithServices as d8, type QueryBookingFormsRequest as d9, type Empty as dA, type BenefitNotification as dB, type Benefit as dC, type EntryPass as dD, type Discount as dE, type DiscountDiscountOneOf as dF, type Behavior as dG, type BehaviorBehaviorOneOf as dH, type UserDomainInfoChangedEvent as dI, type HtmlSitePublished as dJ, type Page as dK, type SitePropertiesNotification as dL, type SitePropertiesEvent as dM, type Properties as dN, type Categories as dO, type Locale as dP, type Address as dQ, type AddressHint as dR, type GeoCoordinates as dS, type BusinessSchedule as dT, type TimePeriod as dU, type SpecialHourPeriod as dV, type Multilingual as dW, type SupportedLanguage as dX, type ConsentPolicy as dY, type Translation as dZ, type ChangeContext as d_, type BookingForm as da, type FormDetails as db, type ConnectedService as dc, type CountServicesRequest as dd, type QueryLocationsRequest as de, type QueryLocationsFilter as df, type BusinessLocations as dg, type CustomLocations as dh, type CustomerLocations as di, type QueryCategoriesRequest as dj, type QueryCategoriesFilter as dk, type QueryServicesMultiLanguageRequest as dl, type QueryServicesMultiLanguageResponse as dm, type SetServiceLocationsRequest as dn, type RemovedLocationSessionsAction as dp, type RemovedLocationSessionsActionActionOptionsOneOf as dq, type MoveToNewLocationsOptions as dr, type EnablePricingPlansForServiceRequest as ds, type InvalidPricingPlan as dt, type DisablePricingPlansForServiceRequest as du, type SetCustomSlugRequest as dv, type ValidateSlugRequest as dw, type CloneServiceRequest as dx, type CategoryNotification as dy, type Category as dz, type ListAddOnGroupsByServiceIdResponse as e, disablePricingPlansForService as e$, type PropertiesChange as e0, type SiteCreated as e1, type SiteCloned as e2, type BaseEventMetadata as e3, type EventMetadata as e4, type ServicesQueryResult as e5, type ServiceSearchSpec as e6, type ServiceTypeWithLiterals as e7, type RateTypeWithLiterals as e8, type AddOnPaymentOptionsWithLiterals as e9, type ResolutionMethodWithLiterals as eA, type CommonSearchWithEntityContext as eB, onServiceCreated as eC, onServiceDeleted as eD, onServiceUpdated as eE, createAddOnGroup as eF, deleteAddOnGroup as eG, updateAddOnGroup as eH, listAddOnGroupsByServiceId as eI, setAddOnsForGroup as eJ, createService as eK, bulkCreateServices as eL, getService as eM, updateService as eN, bulkUpdateServices as eO, bulkUpdateServicesByFilter as eP, deleteService as eQ, bulkDeleteServices as eR, bulkDeleteServicesByFilter as eS, queryServices as eT, queryPolicies as eU, queryBookingForms as eV, countServices as eW, queryLocations as eX, queryCategories as eY, setServiceLocations as eZ, enablePricingPlansForService as e_, type LocationTypeWithLiterals as ea, type RankingOrderWithLiterals as eb, type SortingMethodTypeWithLiterals as ec, type TaxableAddressTypeWithLiterals as ed, type WebhookIdentityTypeWithLiterals as ee, type V2RequestedFieldsWithLiterals as ef, type SortOrderWithLiterals as eg, type SortTypeWithLiterals as eh, type SortDirectionWithLiterals as ei, type MissingValuesWithLiterals as ej, type ScalarTypeWithLiterals as ek, type NestedAggregationTypeWithLiterals as el, type IntervalWithLiterals as em, type AggregationTypeWithLiterals as en, type ModeWithLiterals as eo, type RequestedFieldsWithLiterals as ep, type ActionWithLiterals as eq, type InvalidSlugErrorWithLiterals as er, type CloneErrorsWithLiterals as es, type StatusWithLiterals as et, type CategoryNotificationEventWithLiterals as eu, type BenefitTypeWithLiterals as ev, type EventWithLiterals as ew, type CrudTypeWithLiterals as ex, type PlacementTypeWithLiterals as ey, type DayOfWeekWithLiterals as ez, type SetAddOnsForGroupResponse as f, setCustomSlug as f0, validateSlug as f1, cloneService as f2, type SetAddOnsForGroupApplicationErrors as g, type Service as h, type CreateServiceValidationErrors as i, type BulkCreateServicesResponse as j, type UpdateService as k, type UpdateServiceValidationErrors as l, type BulkUpdateServicesOptions as m, type BulkUpdateServicesResponse as n, type BulkUpdateServicesByFilterOptions as o, type BulkUpdateServicesByFilterResponse as p, type DeleteServiceOptions as q, type BulkDeleteServicesOptions as r, type BulkDeleteServicesResponse as s, type BulkDeleteServicesByFilterOptions as t, type BulkDeleteServicesByFilterResponse as u, type ServicesQueryBuilder as v, type ServiceSearch as w, type SearchServicesResponse as x, type CursorQuery as y, type QueryBookingFormsOptions as z };
|
|
5001
|
+
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 GetServiceAvailabilityConstraintsResponse 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 Delete as bA, type Schema as bB, type SetCustomSlugEvent as bC, type ServicesUrlsChanged as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type CreateServiceRequest as bO, type CreateServiceResponse as bP, type ValidateServiceRequest as bQ, type ValidateServiceResponse as bR, type FieldViolation as bS, type BulkCreateServicesRequest as bT, type BulkServiceResult as bU, type ItemMetadata as bV, type ApplicationError as bW, type BulkActionMetadata as bX, type GetServiceRequest as bY, type GetServiceResponse as bZ, type GetServiceAvailabilityConstraintsRequest as b_, type RankingOptions as ba, type CustomOptions as bb, type Schedule as bc, type AvailabilityConstraints as bd, type Duration as be, type StaffMember as bf, type StaffMediaItem as bg, type StaffMediaItemItemOneOf as bh, type StaffMemberDetails as bi, type ResourceGroup as bj, type ResourceIds as bk, type ServiceResource as bl, type ServiceResourceSelectionOneOf as bm, type ResourceType as bn, type Slug as bo, type URLs as bp, type ExtendedFields as bq, type SeoSchema as br, type Keyword as bs, type Tag as bt, type Settings as bu, type AddOnDetails as bv, type TaxableAddress as bw, type ReindexMessage as bx, type ReindexMessageActionOneOf as by, type Upsert as bz, type BulkUpdateServicesOptions as c, type BookingPolicyWithServices as c$, type ServiceAvailabilityConstraints as c0, type SplitInterval as c1, type UpdateServiceRequest as c2, type UpdateServiceResponse as c3, type BulkUpdateServicesRequest as c4, type MaskedService as c5, type BulkUpdateServicesByFilterRequest as c6, type DeleteServiceRequest as c7, type ParticipantNotification as c8, type DeleteServiceResponse as c9, type GroupByAggregation as cA, type GroupByAggregationKindOneOf as cB, type SearchDetails as cC, type CursorPagingMetadata as cD, type AggregationData as cE, type ValueAggregationResult as cF, type RangeAggregationResult as cG, type NestedAggregationResults as cH, type NestedAggregationResultsResultOneOf as cI, type ValueResults as cJ, type RangeResults as cK, type AggregationResultsScalarResult as cL, type NestedValueAggregationResult as cM, type ValueResult as cN, type RangeResult as cO, type ScalarResult as cP, type NestedResultValue as cQ, type NestedResultValueResultOneOf as cR, type Results as cS, type DateHistogramResult as cT, type GroupByValueResults as cU, type DateHistogramResults as cV, type NestedResults as cW, type AggregationResults as cX, type AggregationResultsResultOneOf as cY, type QueryPoliciesRequest as cZ, type CursorQueryPagingMethodOneOf as c_, type BulkDeleteServicesRequest as ca, type BulkDeleteServicesByFilterRequest as cb, type QueryServicesRequest as cc, type QueryV2 as cd, type QueryV2PagingMethodOneOf as ce, type Sorting as cf, type Paging as cg, type CursorPaging as ch, type QueryServicesResponse as ci, type PagingMetadataV2 as cj, type Cursors as ck, type SearchServicesRequest as cl, type CursorSearch as cm, type CursorSearchPagingMethodOneOf as cn, type Aggregation as co, type AggregationKindOneOf as cp, type RangeBucket as cq, type IncludeMissingValuesOptions as cr, type ValueAggregation as cs, type ValueAggregationOptionsOneOf as ct, type RangeAggregation as cu, type ScalarAggregation as cv, type DateHistogramAggregation as cw, type NestedAggregationItem as cx, type NestedAggregationItemKindOneOf as cy, type NestedAggregation as cz, type BulkUpdateServicesResponse as d, type AddOn as d$, type QueryBookingFormsRequest as d0, type BookingForm as d1, type FormDetails as d2, type ConnectedService as d3, type CountServicesRequest as d4, type QueryLocationsRequest as d5, type QueryLocationsFilter as d6, type BusinessLocations as d7, type CustomLocations as d8, type CustomerLocations as d9, type HtmlSitePublished as dA, type Page as dB, type SitePropertiesNotification as dC, type SitePropertiesEvent as dD, type Properties as dE, type Categories as dF, type Locale as dG, type Address as dH, type AddressHint as dI, type GeoCoordinates as dJ, type BusinessSchedule as dK, type TimePeriod as dL, type SpecialHourPeriod as dM, type Multilingual as dN, type SupportedLanguage as dO, type ConsentPolicy as dP, type Translation as dQ, type ChangeContext as dR, type ChangeContextPayloadOneOf as dS, type PropertiesChange as dT, type SiteCreated as dU, type SiteCloned as dV, type CreateAddOnGroupRequest as dW, type DeleteAddOnGroupRequest as dX, type DeleteAddOnGroupResponse as dY, type UpdateAddOnGroupRequest as dZ, type ListAddOnGroupsByServiceIdRequest as d_, type QueryCategoriesRequest as da, type QueryCategoriesFilter as db, type QueryServicesMultiLanguageRequest as dc, type QueryServicesMultiLanguageResponse as dd, type SetServiceLocationsRequest as de, type RemovedLocationSessionsAction as df, type RemovedLocationSessionsActionActionOptionsOneOf as dg, type MoveToNewLocationsOptions as dh, type EnablePricingPlansForServiceRequest as di, type InvalidPricingPlan as dj, type DisablePricingPlansForServiceRequest as dk, type SetCustomSlugRequest as dl, type ValidateSlugRequest as dm, type CloneServiceRequest as dn, type CategoryNotification as dp, type Category as dq, type Empty as dr, type BenefitNotification as ds, type Benefit as dt, type EntryPass as du, type Discount as dv, type DiscountDiscountOneOf as dw, type Behavior as dx, type BehaviorBehaviorOneOf as dy, type UserDomainInfoChangedEvent as dz, type BulkUpdateServicesByFilterOptions as e, deleteAddOnGroup as e$, type AddOnAddOnInfoOneOf as e0, type AddOnGroupDetail as e1, type SetAddOnsForGroupRequest as e2, type BaseEventMetadata as e3, type EventMetadata as e4, type ServicesQueryResult as e5, type ServiceSearchSpec as e6, type ServiceTypeWithLiterals as e7, type RateTypeWithLiterals as e8, type AddOnPaymentOptionsWithLiterals as e9, type ResolutionMethodWithLiterals as eA, type CommonSearchWithEntityContext as eB, onServiceCreated as eC, onServiceDeleted as eD, onServiceUpdated as eE, createService as eF, bulkCreateServices as eG, getService as eH, updateService as eI, bulkUpdateServices as eJ, bulkUpdateServicesByFilter as eK, deleteService as eL, bulkDeleteServices as eM, bulkDeleteServicesByFilter as eN, queryServices as eO, queryPolicies as eP, queryBookingForms as eQ, countServices as eR, queryLocations as eS, queryCategories as eT, setServiceLocations as eU, enablePricingPlansForService as eV, disablePricingPlansForService as eW, setCustomSlug as eX, validateSlug as eY, cloneService as eZ, createAddOnGroup as e_, type LocationTypeWithLiterals as ea, type RankingOrderWithLiterals as eb, type SortingMethodTypeWithLiterals as ec, type TaxableAddressTypeWithLiterals as ed, type WebhookIdentityTypeWithLiterals as ee, type V2RequestedFieldsWithLiterals as ef, type SortOrderWithLiterals as eg, type SortTypeWithLiterals as eh, type SortDirectionWithLiterals as ei, type MissingValuesWithLiterals as ej, type ScalarTypeWithLiterals as ek, type NestedAggregationTypeWithLiterals as el, type IntervalWithLiterals as em, type AggregationTypeWithLiterals as en, type ModeWithLiterals as eo, type RequestedFieldsWithLiterals as ep, type ActionWithLiterals as eq, type InvalidSlugErrorWithLiterals as er, type CloneErrorsWithLiterals as es, type StatusWithLiterals as et, type CategoryNotificationEventWithLiterals as eu, type BenefitTypeWithLiterals as ev, type EventWithLiterals as ew, type CrudTypeWithLiterals as ex, type PlacementTypeWithLiterals as ey, type DayOfWeekWithLiterals as ez, type BulkUpdateServicesByFilterResponse as f, updateAddOnGroup as f0, listAddOnGroupsByServiceId as f1, setAddOnsForGroup as f2, 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 };
|