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