@wix/auto_sdk_bookings_services 1.0.254 → 1.0.256
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-C4INiLoL.d.ts → bookings-services-v2-service-services.universal-CxQEooHC.d.ts} +145 -70
- package/build/cjs/index.d.ts +10 -10
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +123 -58
- package/build/cjs/meta.js +3 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +572 -57
- package/build/cjs/schemas.js +1459 -340
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-C4INiLoL.d.mts → bookings-services-v2-service-services.universal-CxQEooHC.d.mts} +145 -70
- package/build/es/index.d.mts +10 -10
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +123 -58
- package/build/es/meta.mjs +3 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +572 -57
- package/build/es/schemas.mjs +1465 -346
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-DoKhtzZp.d.ts → bookings-services-v2-service-services.universal-BqFU1N2_.d.ts} +108 -101
- package/build/internal/cjs/index.d.ts +10 -10
- 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.map +1 -1
- package/build/internal/cjs/meta.d.ts +123 -58
- package/build/internal/cjs/meta.js +3 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +572 -57
- package/build/internal/cjs/schemas.js +1459 -340
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-DoKhtzZp.d.mts → bookings-services-v2-service-services.universal-BqFU1N2_.d.mts} +108 -101
- package/build/internal/es/index.d.mts +10 -10
- 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.map +1 -1
- package/build/internal/es/meta.d.mts +123 -58
- package/build/internal/es/meta.mjs +3 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +572 -57
- package/build/internal/es/schemas.mjs +1465 -346
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -287,6 +287,27 @@ declare const CreateServiceRequest: z.ZodObject<{
|
|
|
287
287
|
}, z.core.$strip>>>;
|
|
288
288
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
289
289
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
290
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
291
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
292
|
+
HOUR: "HOUR";
|
|
293
|
+
DAY: "DAY";
|
|
294
|
+
}>>;
|
|
295
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
296
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
297
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
298
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
299
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
300
|
+
hourOptions: z.ZodObject<{
|
|
301
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
302
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
303
|
+
}, z.core.$strip>;
|
|
304
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
305
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
306
|
+
dayOptions: z.ZodObject<{
|
|
307
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
308
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
309
|
+
}, z.core.$strip>;
|
|
310
|
+
}, z.core.$strip>]>>>;
|
|
290
311
|
}, z.core.$strip>>;
|
|
291
312
|
}, z.core.$strip>>;
|
|
292
313
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -301,12 +322,18 @@ declare const CreateServiceRequest: z.ZodObject<{
|
|
|
301
322
|
}, z.core.$strip>]>>>;
|
|
302
323
|
}, z.core.$strip>>>;
|
|
303
324
|
}, z.core.$strip>>;
|
|
304
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
325
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
305
326
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
306
327
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
307
328
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
308
329
|
}, z.core.$strip>>;
|
|
309
|
-
}, z.core.$strip
|
|
330
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
331
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
332
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
333
|
+
resourceIds: z.ZodObject<{
|
|
334
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
335
|
+
}, z.core.$strip>;
|
|
336
|
+
}, z.core.$strip>]>>>>;
|
|
310
337
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
311
338
|
name: z.ZodOptional<z.ZodString>;
|
|
312
339
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -363,7 +390,7 @@ declare const CreateServiceRequest: z.ZodObject<{
|
|
|
363
390
|
BILLING: "BILLING";
|
|
364
391
|
}>>;
|
|
365
392
|
}, z.core.$strip>>;
|
|
366
|
-
|
|
393
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
367
394
|
}, z.core.$strip>;
|
|
368
395
|
}, z.core.$strip>;
|
|
369
396
|
declare const CreateServiceResponse: z.ZodObject<{
|
|
@@ -652,6 +679,27 @@ declare const CreateServiceResponse: z.ZodObject<{
|
|
|
652
679
|
}, z.core.$strip>>>;
|
|
653
680
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
654
681
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
682
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
683
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
684
|
+
HOUR: "HOUR";
|
|
685
|
+
DAY: "DAY";
|
|
686
|
+
}>>;
|
|
687
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
688
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
689
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
690
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
691
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
692
|
+
hourOptions: z.ZodObject<{
|
|
693
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
694
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
695
|
+
}, z.core.$strip>;
|
|
696
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
697
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
698
|
+
dayOptions: z.ZodObject<{
|
|
699
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
700
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
701
|
+
}, z.core.$strip>;
|
|
702
|
+
}, z.core.$strip>]>>>;
|
|
655
703
|
}, z.core.$strip>>;
|
|
656
704
|
}, z.core.$strip>>;
|
|
657
705
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -666,12 +714,18 @@ declare const CreateServiceResponse: z.ZodObject<{
|
|
|
666
714
|
}, z.core.$strip>]>>>;
|
|
667
715
|
}, z.core.$strip>>>;
|
|
668
716
|
}, z.core.$strip>>;
|
|
669
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
717
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
670
718
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
671
719
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
672
720
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
673
721
|
}, z.core.$strip>>;
|
|
674
|
-
}, z.core.$strip
|
|
722
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
723
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
724
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
725
|
+
resourceIds: z.ZodObject<{
|
|
726
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
727
|
+
}, z.core.$strip>;
|
|
728
|
+
}, z.core.$strip>]>>>>;
|
|
675
729
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
676
730
|
name: z.ZodOptional<z.ZodString>;
|
|
677
731
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -728,7 +782,7 @@ declare const CreateServiceResponse: z.ZodObject<{
|
|
|
728
782
|
BILLING: "BILLING";
|
|
729
783
|
}>>;
|
|
730
784
|
}, z.core.$strip>>;
|
|
731
|
-
|
|
785
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
732
786
|
}, z.core.$strip>;
|
|
733
787
|
declare const BulkCreateServicesRequest: z.ZodObject<{
|
|
734
788
|
services: z.ZodArray<z.ZodObject<{
|
|
@@ -1017,6 +1071,27 @@ declare const BulkCreateServicesRequest: z.ZodObject<{
|
|
|
1017
1071
|
}, z.core.$strip>>>;
|
|
1018
1072
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1019
1073
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
1074
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
1075
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
1076
|
+
HOUR: "HOUR";
|
|
1077
|
+
DAY: "DAY";
|
|
1078
|
+
}>>;
|
|
1079
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
1080
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
1081
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
1082
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1083
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
1084
|
+
hourOptions: z.ZodObject<{
|
|
1085
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1086
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1087
|
+
}, z.core.$strip>;
|
|
1088
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1089
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
1090
|
+
dayOptions: z.ZodObject<{
|
|
1091
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
1092
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
1093
|
+
}, z.core.$strip>;
|
|
1094
|
+
}, z.core.$strip>]>>>;
|
|
1020
1095
|
}, z.core.$strip>>;
|
|
1021
1096
|
}, z.core.$strip>>;
|
|
1022
1097
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1031,12 +1106,18 @@ declare const BulkCreateServicesRequest: z.ZodObject<{
|
|
|
1031
1106
|
}, z.core.$strip>]>>>;
|
|
1032
1107
|
}, z.core.$strip>>>;
|
|
1033
1108
|
}, z.core.$strip>>;
|
|
1034
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1109
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1035
1110
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
1036
1111
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1037
1112
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1038
1113
|
}, z.core.$strip>>;
|
|
1039
|
-
}, z.core.$strip
|
|
1114
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
1115
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
1116
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1117
|
+
resourceIds: z.ZodObject<{
|
|
1118
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1119
|
+
}, z.core.$strip>;
|
|
1120
|
+
}, z.core.$strip>]>>>>;
|
|
1040
1121
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1041
1122
|
name: z.ZodOptional<z.ZodString>;
|
|
1042
1123
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -1093,7 +1174,7 @@ declare const BulkCreateServicesRequest: z.ZodObject<{
|
|
|
1093
1174
|
BILLING: "BILLING";
|
|
1094
1175
|
}>>;
|
|
1095
1176
|
}, z.core.$strip>>;
|
|
1096
|
-
|
|
1177
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1097
1178
|
}, z.core.$strip>>;
|
|
1098
1179
|
options: z.ZodOptional<z.ZodObject<{
|
|
1099
1180
|
returnEntity: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1397,6 +1478,27 @@ declare const BulkCreateServicesResponse: z.ZodObject<{
|
|
|
1397
1478
|
}, z.core.$strip>>>;
|
|
1398
1479
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1399
1480
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
1481
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
1482
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
1483
|
+
HOUR: "HOUR";
|
|
1484
|
+
DAY: "DAY";
|
|
1485
|
+
}>>;
|
|
1486
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
1487
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
1488
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
1489
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1490
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
1491
|
+
hourOptions: z.ZodObject<{
|
|
1492
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1493
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1494
|
+
}, z.core.$strip>;
|
|
1495
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1496
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
1497
|
+
dayOptions: z.ZodObject<{
|
|
1498
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
1499
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
1500
|
+
}, z.core.$strip>;
|
|
1501
|
+
}, z.core.$strip>]>>>;
|
|
1400
1502
|
}, z.core.$strip>>;
|
|
1401
1503
|
}, z.core.$strip>>;
|
|
1402
1504
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1411,12 +1513,18 @@ declare const BulkCreateServicesResponse: z.ZodObject<{
|
|
|
1411
1513
|
}, z.core.$strip>]>>>;
|
|
1412
1514
|
}, z.core.$strip>>>;
|
|
1413
1515
|
}, z.core.$strip>>;
|
|
1414
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1516
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1415
1517
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
1416
1518
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1417
1519
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1418
1520
|
}, z.core.$strip>>;
|
|
1419
|
-
}, z.core.$strip
|
|
1521
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
1522
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
1523
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1524
|
+
resourceIds: z.ZodObject<{
|
|
1525
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1526
|
+
}, z.core.$strip>;
|
|
1527
|
+
}, z.core.$strip>]>>>>;
|
|
1420
1528
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1421
1529
|
name: z.ZodOptional<z.ZodString>;
|
|
1422
1530
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -1473,7 +1581,7 @@ declare const BulkCreateServicesResponse: z.ZodObject<{
|
|
|
1473
1581
|
BILLING: "BILLING";
|
|
1474
1582
|
}>>;
|
|
1475
1583
|
}, z.core.$strip>>;
|
|
1476
|
-
|
|
1584
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1477
1585
|
}, z.core.$strip>>;
|
|
1478
1586
|
}, z.core.$strip>>>;
|
|
1479
1587
|
bulkActionMetadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -1489,6 +1597,7 @@ declare const GetServiceRequest: z.ZodObject<{
|
|
|
1489
1597
|
STAFF_MEMBER_DETAILS: "STAFF_MEMBER_DETAILS";
|
|
1490
1598
|
RESOURCE_TYPE_DETAILS: "RESOURCE_TYPE_DETAILS";
|
|
1491
1599
|
DISCOUNT_INFO_DETAILS: "DISCOUNT_INFO_DETAILS";
|
|
1600
|
+
RESOURCE_DETAILS: "RESOURCE_DETAILS";
|
|
1492
1601
|
}>>>;
|
|
1493
1602
|
}, z.core.$strip>>;
|
|
1494
1603
|
}, z.core.$strip>;
|
|
@@ -1778,6 +1887,27 @@ declare const GetServiceResponse: z.ZodObject<{
|
|
|
1778
1887
|
}, z.core.$strip>>>;
|
|
1779
1888
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1780
1889
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
1890
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
1891
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
1892
|
+
HOUR: "HOUR";
|
|
1893
|
+
DAY: "DAY";
|
|
1894
|
+
}>>;
|
|
1895
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
1896
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
1897
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
1898
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1899
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
1900
|
+
hourOptions: z.ZodObject<{
|
|
1901
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1902
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
1903
|
+
}, z.core.$strip>;
|
|
1904
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1905
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
1906
|
+
dayOptions: z.ZodObject<{
|
|
1907
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
1908
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
1909
|
+
}, z.core.$strip>;
|
|
1910
|
+
}, z.core.$strip>]>>>;
|
|
1781
1911
|
}, z.core.$strip>>;
|
|
1782
1912
|
}, z.core.$strip>>;
|
|
1783
1913
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1792,12 +1922,18 @@ declare const GetServiceResponse: z.ZodObject<{
|
|
|
1792
1922
|
}, z.core.$strip>]>>>;
|
|
1793
1923
|
}, z.core.$strip>>>;
|
|
1794
1924
|
}, z.core.$strip>>;
|
|
1795
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1925
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1796
1926
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
1797
1927
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1798
1928
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1799
1929
|
}, z.core.$strip>>;
|
|
1800
|
-
}, z.core.$strip
|
|
1930
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
1931
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
1932
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1933
|
+
resourceIds: z.ZodObject<{
|
|
1934
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1935
|
+
}, z.core.$strip>;
|
|
1936
|
+
}, z.core.$strip>]>>>>;
|
|
1801
1937
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1802
1938
|
name: z.ZodOptional<z.ZodString>;
|
|
1803
1939
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -1854,7 +1990,7 @@ declare const GetServiceResponse: z.ZodObject<{
|
|
|
1854
1990
|
BILLING: "BILLING";
|
|
1855
1991
|
}>>;
|
|
1856
1992
|
}, z.core.$strip>>;
|
|
1857
|
-
|
|
1993
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1858
1994
|
}, z.core.$strip>;
|
|
1859
1995
|
declare const UpdateServiceRequest: z.ZodObject<{
|
|
1860
1996
|
_id: z.ZodString;
|
|
@@ -2144,6 +2280,27 @@ declare const UpdateServiceRequest: z.ZodObject<{
|
|
|
2144
2280
|
}, z.core.$strip>>>;
|
|
2145
2281
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
2146
2282
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
2283
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
2284
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
2285
|
+
HOUR: "HOUR";
|
|
2286
|
+
DAY: "DAY";
|
|
2287
|
+
}>>;
|
|
2288
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
2289
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
2290
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
2291
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2292
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
2293
|
+
hourOptions: z.ZodObject<{
|
|
2294
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
2295
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
2296
|
+
}, z.core.$strip>;
|
|
2297
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2298
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
2299
|
+
dayOptions: z.ZodObject<{
|
|
2300
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
2301
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
2302
|
+
}, z.core.$strip>;
|
|
2303
|
+
}, z.core.$strip>]>>>;
|
|
2147
2304
|
}, z.core.$strip>>;
|
|
2148
2305
|
}, z.core.$strip>>;
|
|
2149
2306
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2158,12 +2315,18 @@ declare const UpdateServiceRequest: z.ZodObject<{
|
|
|
2158
2315
|
}, z.core.$strip>]>>>;
|
|
2159
2316
|
}, z.core.$strip>>>;
|
|
2160
2317
|
}, z.core.$strip>>;
|
|
2161
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2318
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2162
2319
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
2163
2320
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2164
2321
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2165
2322
|
}, z.core.$strip>>;
|
|
2166
|
-
}, z.core.$strip
|
|
2323
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
2324
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
2325
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2326
|
+
resourceIds: z.ZodObject<{
|
|
2327
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2328
|
+
}, z.core.$strip>;
|
|
2329
|
+
}, z.core.$strip>]>>>>;
|
|
2167
2330
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2168
2331
|
name: z.ZodOptional<z.ZodString>;
|
|
2169
2332
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -2220,7 +2383,7 @@ declare const UpdateServiceRequest: z.ZodObject<{
|
|
|
2220
2383
|
BILLING: "BILLING";
|
|
2221
2384
|
}>>;
|
|
2222
2385
|
}, z.core.$strip>>;
|
|
2223
|
-
|
|
2386
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2224
2387
|
}, z.core.$strip>;
|
|
2225
2388
|
}, z.core.$strip>;
|
|
2226
2389
|
declare const UpdateServiceResponse: z.ZodObject<{
|
|
@@ -2509,6 +2672,27 @@ declare const UpdateServiceResponse: z.ZodObject<{
|
|
|
2509
2672
|
}, z.core.$strip>>>;
|
|
2510
2673
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
2511
2674
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
2675
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
2676
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
2677
|
+
HOUR: "HOUR";
|
|
2678
|
+
DAY: "DAY";
|
|
2679
|
+
}>>;
|
|
2680
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
2681
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
2682
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
2683
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2684
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
2685
|
+
hourOptions: z.ZodObject<{
|
|
2686
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
2687
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
2688
|
+
}, z.core.$strip>;
|
|
2689
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2690
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
2691
|
+
dayOptions: z.ZodObject<{
|
|
2692
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
2693
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
2694
|
+
}, z.core.$strip>;
|
|
2695
|
+
}, z.core.$strip>]>>>;
|
|
2512
2696
|
}, z.core.$strip>>;
|
|
2513
2697
|
}, z.core.$strip>>;
|
|
2514
2698
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2523,12 +2707,18 @@ declare const UpdateServiceResponse: z.ZodObject<{
|
|
|
2523
2707
|
}, z.core.$strip>]>>>;
|
|
2524
2708
|
}, z.core.$strip>>>;
|
|
2525
2709
|
}, z.core.$strip>>;
|
|
2526
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2710
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2527
2711
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
2528
2712
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2529
2713
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2530
2714
|
}, z.core.$strip>>;
|
|
2531
|
-
}, z.core.$strip
|
|
2715
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
2716
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
2717
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2718
|
+
resourceIds: z.ZodObject<{
|
|
2719
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2720
|
+
}, z.core.$strip>;
|
|
2721
|
+
}, z.core.$strip>]>>>>;
|
|
2532
2722
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2533
2723
|
name: z.ZodOptional<z.ZodString>;
|
|
2534
2724
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -2585,7 +2775,7 @@ declare const UpdateServiceResponse: z.ZodObject<{
|
|
|
2585
2775
|
BILLING: "BILLING";
|
|
2586
2776
|
}>>;
|
|
2587
2777
|
}, z.core.$strip>>;
|
|
2588
|
-
|
|
2778
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2589
2779
|
}, z.core.$strip>;
|
|
2590
2780
|
declare const BulkUpdateServicesRequest: z.ZodObject<{
|
|
2591
2781
|
options: z.ZodOptional<z.ZodObject<{
|
|
@@ -2876,6 +3066,27 @@ declare const BulkUpdateServicesRequest: z.ZodObject<{
|
|
|
2876
3066
|
}, z.core.$strip>>>;
|
|
2877
3067
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
2878
3068
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
3069
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
3070
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
3071
|
+
HOUR: "HOUR";
|
|
3072
|
+
DAY: "DAY";
|
|
3073
|
+
}>>;
|
|
3074
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
3075
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
3076
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
3077
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3078
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
3079
|
+
hourOptions: z.ZodObject<{
|
|
3080
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
3081
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
3082
|
+
}, z.core.$strip>;
|
|
3083
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3084
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
3085
|
+
dayOptions: z.ZodObject<{
|
|
3086
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
3087
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
3088
|
+
}, z.core.$strip>;
|
|
3089
|
+
}, z.core.$strip>]>>>;
|
|
2879
3090
|
}, z.core.$strip>>;
|
|
2880
3091
|
}, z.core.$strip>>;
|
|
2881
3092
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2890,12 +3101,18 @@ declare const BulkUpdateServicesRequest: z.ZodObject<{
|
|
|
2890
3101
|
}, z.core.$strip>]>>>;
|
|
2891
3102
|
}, z.core.$strip>>>;
|
|
2892
3103
|
}, z.core.$strip>>;
|
|
2893
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3104
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2894
3105
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
2895
3106
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2896
3107
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2897
3108
|
}, z.core.$strip>>;
|
|
2898
|
-
}, z.core.$strip
|
|
3109
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
3110
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
3111
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3112
|
+
resourceIds: z.ZodObject<{
|
|
3113
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3114
|
+
}, z.core.$strip>;
|
|
3115
|
+
}, z.core.$strip>]>>>>;
|
|
2899
3116
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2900
3117
|
name: z.ZodOptional<z.ZodString>;
|
|
2901
3118
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -2952,7 +3169,7 @@ declare const BulkUpdateServicesRequest: z.ZodObject<{
|
|
|
2952
3169
|
BILLING: "BILLING";
|
|
2953
3170
|
}>>;
|
|
2954
3171
|
}, z.core.$strip>>;
|
|
2955
|
-
|
|
3172
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2956
3173
|
}, z.core.$strip>;
|
|
2957
3174
|
mask: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2958
3175
|
}, z.core.$strip>>>;
|
|
@@ -3257,6 +3474,27 @@ declare const BulkUpdateServicesResponse: z.ZodObject<{
|
|
|
3257
3474
|
}, z.core.$strip>>>;
|
|
3258
3475
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
3259
3476
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
3477
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
3478
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
3479
|
+
HOUR: "HOUR";
|
|
3480
|
+
DAY: "DAY";
|
|
3481
|
+
}>>;
|
|
3482
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
3483
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
3484
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
3485
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3486
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
3487
|
+
hourOptions: z.ZodObject<{
|
|
3488
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
3489
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
3490
|
+
}, z.core.$strip>;
|
|
3491
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3492
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
3493
|
+
dayOptions: z.ZodObject<{
|
|
3494
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
3495
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
3496
|
+
}, z.core.$strip>;
|
|
3497
|
+
}, z.core.$strip>]>>>;
|
|
3260
3498
|
}, z.core.$strip>>;
|
|
3261
3499
|
}, z.core.$strip>>;
|
|
3262
3500
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3271,12 +3509,18 @@ declare const BulkUpdateServicesResponse: z.ZodObject<{
|
|
|
3271
3509
|
}, z.core.$strip>]>>>;
|
|
3272
3510
|
}, z.core.$strip>>>;
|
|
3273
3511
|
}, z.core.$strip>>;
|
|
3274
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3512
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
3275
3513
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
3276
3514
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3277
3515
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3278
3516
|
}, z.core.$strip>>;
|
|
3279
|
-
}, z.core.$strip
|
|
3517
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
3518
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
3519
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3520
|
+
resourceIds: z.ZodObject<{
|
|
3521
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3522
|
+
}, z.core.$strip>;
|
|
3523
|
+
}, z.core.$strip>]>>>>;
|
|
3280
3524
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3281
3525
|
name: z.ZodOptional<z.ZodString>;
|
|
3282
3526
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -3333,7 +3577,7 @@ declare const BulkUpdateServicesResponse: z.ZodObject<{
|
|
|
3333
3577
|
BILLING: "BILLING";
|
|
3334
3578
|
}>>;
|
|
3335
3579
|
}, z.core.$strip>>;
|
|
3336
|
-
|
|
3580
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3337
3581
|
}, z.core.$strip>>;
|
|
3338
3582
|
}, z.core.$strip>>>;
|
|
3339
3583
|
bulkActionMetadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -3631,6 +3875,27 @@ declare const BulkUpdateServicesByFilterRequest: z.ZodObject<{
|
|
|
3631
3875
|
}, z.core.$strip>>>;
|
|
3632
3876
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
3633
3877
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
3878
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
3879
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
3880
|
+
HOUR: "HOUR";
|
|
3881
|
+
DAY: "DAY";
|
|
3882
|
+
}>>;
|
|
3883
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
3884
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
3885
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
3886
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3887
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
3888
|
+
hourOptions: z.ZodObject<{
|
|
3889
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
3890
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
3891
|
+
}, z.core.$strip>;
|
|
3892
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3893
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
3894
|
+
dayOptions: z.ZodObject<{
|
|
3895
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
3896
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
3897
|
+
}, z.core.$strip>;
|
|
3898
|
+
}, z.core.$strip>]>>>;
|
|
3634
3899
|
}, z.core.$strip>>;
|
|
3635
3900
|
}, z.core.$strip>>;
|
|
3636
3901
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3645,12 +3910,18 @@ declare const BulkUpdateServicesByFilterRequest: z.ZodObject<{
|
|
|
3645
3910
|
}, z.core.$strip>]>>>;
|
|
3646
3911
|
}, z.core.$strip>>>;
|
|
3647
3912
|
}, z.core.$strip>>;
|
|
3648
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3913
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
3649
3914
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
3650
3915
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3651
3916
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3652
3917
|
}, z.core.$strip>>;
|
|
3653
|
-
}, z.core.$strip
|
|
3918
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
3919
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
3920
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3921
|
+
resourceIds: z.ZodObject<{
|
|
3922
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3923
|
+
}, z.core.$strip>;
|
|
3924
|
+
}, z.core.$strip>]>>>>;
|
|
3654
3925
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3655
3926
|
name: z.ZodOptional<z.ZodString>;
|
|
3656
3927
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -3707,7 +3978,7 @@ declare const BulkUpdateServicesByFilterRequest: z.ZodObject<{
|
|
|
3707
3978
|
BILLING: "BILLING";
|
|
3708
3979
|
}>>;
|
|
3709
3980
|
}, z.core.$strip>>;
|
|
3710
|
-
|
|
3981
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3711
3982
|
}, z.core.$strip>;
|
|
3712
3983
|
}, z.core.$strip>;
|
|
3713
3984
|
}, z.core.$strip>;
|
|
@@ -4033,6 +4304,27 @@ declare const BulkDeleteServicesResponse: z.ZodObject<{
|
|
|
4033
4304
|
}, z.core.$strip>>>;
|
|
4034
4305
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
4035
4306
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
4307
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
4308
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
4309
|
+
HOUR: "HOUR";
|
|
4310
|
+
DAY: "DAY";
|
|
4311
|
+
}>>;
|
|
4312
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
4313
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
4314
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
4315
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4316
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
4317
|
+
hourOptions: z.ZodObject<{
|
|
4318
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
4319
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
4320
|
+
}, z.core.$strip>;
|
|
4321
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4322
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
4323
|
+
dayOptions: z.ZodObject<{
|
|
4324
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
4325
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
4326
|
+
}, z.core.$strip>;
|
|
4327
|
+
}, z.core.$strip>]>>>;
|
|
4036
4328
|
}, z.core.$strip>>;
|
|
4037
4329
|
}, z.core.$strip>>;
|
|
4038
4330
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -4047,12 +4339,18 @@ declare const BulkDeleteServicesResponse: z.ZodObject<{
|
|
|
4047
4339
|
}, z.core.$strip>]>>>;
|
|
4048
4340
|
}, z.core.$strip>>>;
|
|
4049
4341
|
}, z.core.$strip>>;
|
|
4050
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4342
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4051
4343
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
4052
4344
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4053
4345
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4054
4346
|
}, z.core.$strip>>;
|
|
4055
|
-
}, z.core.$strip
|
|
4347
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
4348
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
4349
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4350
|
+
resourceIds: z.ZodObject<{
|
|
4351
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4352
|
+
}, z.core.$strip>;
|
|
4353
|
+
}, z.core.$strip>]>>>>;
|
|
4056
4354
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4057
4355
|
name: z.ZodOptional<z.ZodString>;
|
|
4058
4356
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -4109,7 +4407,7 @@ declare const BulkDeleteServicesResponse: z.ZodObject<{
|
|
|
4109
4407
|
BILLING: "BILLING";
|
|
4110
4408
|
}>>;
|
|
4111
4409
|
}, z.core.$strip>>;
|
|
4112
|
-
|
|
4410
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4113
4411
|
}, z.core.$strip>>;
|
|
4114
4412
|
}, z.core.$strip>>>;
|
|
4115
4413
|
bulkActionMetadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -4467,6 +4765,7 @@ declare const QueryServicesRequest: z.ZodObject<{
|
|
|
4467
4765
|
STAFF_MEMBER_DETAILS: "STAFF_MEMBER_DETAILS";
|
|
4468
4766
|
RESOURCE_TYPE_DETAILS: "RESOURCE_TYPE_DETAILS";
|
|
4469
4767
|
DISCOUNT_INFO_DETAILS: "DISCOUNT_INFO_DETAILS";
|
|
4768
|
+
RESOURCE_DETAILS: "RESOURCE_DETAILS";
|
|
4470
4769
|
}>>>;
|
|
4471
4770
|
}, z.core.$strip>>;
|
|
4472
4771
|
}, z.core.$strip>;
|
|
@@ -4757,6 +5056,27 @@ declare const QueryServicesResponse: z.ZodObject<{
|
|
|
4757
5056
|
}, z.core.$strip>>>;
|
|
4758
5057
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
4759
5058
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
5059
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
5060
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
5061
|
+
HOUR: "HOUR";
|
|
5062
|
+
DAY: "DAY";
|
|
5063
|
+
}>>;
|
|
5064
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
5065
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
5066
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
5067
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5068
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
5069
|
+
hourOptions: z.ZodObject<{
|
|
5070
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
5071
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
5072
|
+
}, z.core.$strip>;
|
|
5073
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5074
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
5075
|
+
dayOptions: z.ZodObject<{
|
|
5076
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
5077
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
5078
|
+
}, z.core.$strip>;
|
|
5079
|
+
}, z.core.$strip>]>>>;
|
|
4760
5080
|
}, z.core.$strip>>;
|
|
4761
5081
|
}, z.core.$strip>>;
|
|
4762
5082
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -4771,12 +5091,18 @@ declare const QueryServicesResponse: z.ZodObject<{
|
|
|
4771
5091
|
}, z.core.$strip>]>>>;
|
|
4772
5092
|
}, z.core.$strip>>>;
|
|
4773
5093
|
}, z.core.$strip>>;
|
|
4774
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5094
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4775
5095
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
4776
5096
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4777
5097
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4778
5098
|
}, z.core.$strip>>;
|
|
4779
|
-
}, z.core.$strip
|
|
5099
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
5100
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
5101
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5102
|
+
resourceIds: z.ZodObject<{
|
|
5103
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5104
|
+
}, z.core.$strip>;
|
|
5105
|
+
}, z.core.$strip>]>>>>;
|
|
4780
5106
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4781
5107
|
name: z.ZodOptional<z.ZodString>;
|
|
4782
5108
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -4833,7 +5159,7 @@ declare const QueryServicesResponse: z.ZodObject<{
|
|
|
4833
5159
|
BILLING: "BILLING";
|
|
4834
5160
|
}>>;
|
|
4835
5161
|
}, z.core.$strip>>;
|
|
4836
|
-
|
|
5162
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4837
5163
|
}, z.core.$strip>>>;
|
|
4838
5164
|
pagingMetadata: z.ZodOptional<z.ZodObject<{
|
|
4839
5165
|
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -5525,6 +5851,27 @@ declare const SearchServicesResponse: z.ZodObject<{
|
|
|
5525
5851
|
}, z.core.$strip>>>;
|
|
5526
5852
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
5527
5853
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
5854
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
5855
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
5856
|
+
HOUR: "HOUR";
|
|
5857
|
+
DAY: "DAY";
|
|
5858
|
+
}>>;
|
|
5859
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
5860
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
5861
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
5862
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5863
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
5864
|
+
hourOptions: z.ZodObject<{
|
|
5865
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
5866
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
5867
|
+
}, z.core.$strip>;
|
|
5868
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5869
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
5870
|
+
dayOptions: z.ZodObject<{
|
|
5871
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
5872
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
5873
|
+
}, z.core.$strip>;
|
|
5874
|
+
}, z.core.$strip>]>>>;
|
|
5528
5875
|
}, z.core.$strip>>;
|
|
5529
5876
|
}, z.core.$strip>>;
|
|
5530
5877
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -5539,12 +5886,18 @@ declare const SearchServicesResponse: z.ZodObject<{
|
|
|
5539
5886
|
}, z.core.$strip>]>>>;
|
|
5540
5887
|
}, z.core.$strip>>>;
|
|
5541
5888
|
}, z.core.$strip>>;
|
|
5542
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5889
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
5543
5890
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
5544
5891
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5545
5892
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5546
5893
|
}, z.core.$strip>>;
|
|
5547
|
-
}, z.core.$strip
|
|
5894
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
5895
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
5896
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5897
|
+
resourceIds: z.ZodObject<{
|
|
5898
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5899
|
+
}, z.core.$strip>;
|
|
5900
|
+
}, z.core.$strip>]>>>>;
|
|
5548
5901
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5549
5902
|
name: z.ZodOptional<z.ZodString>;
|
|
5550
5903
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -5601,7 +5954,7 @@ declare const SearchServicesResponse: z.ZodObject<{
|
|
|
5601
5954
|
BILLING: "BILLING";
|
|
5602
5955
|
}>>;
|
|
5603
5956
|
}, z.core.$strip>>;
|
|
5604
|
-
|
|
5957
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5605
5958
|
}, z.core.$strip>>>;
|
|
5606
5959
|
pagingMetadata: z.ZodOptional<z.ZodObject<{
|
|
5607
5960
|
count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -6198,6 +6551,27 @@ declare const QueryPoliciesResponse: z.ZodObject<{
|
|
|
6198
6551
|
}, z.core.$strip>>>;
|
|
6199
6552
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
6200
6553
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
6554
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
6555
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
6556
|
+
HOUR: "HOUR";
|
|
6557
|
+
DAY: "DAY";
|
|
6558
|
+
}>>;
|
|
6559
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
6560
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
6561
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
6562
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6563
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
6564
|
+
hourOptions: z.ZodObject<{
|
|
6565
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
6566
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
6567
|
+
}, z.core.$strip>;
|
|
6568
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6569
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
6570
|
+
dayOptions: z.ZodObject<{
|
|
6571
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
6572
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
6573
|
+
}, z.core.$strip>;
|
|
6574
|
+
}, z.core.$strip>]>>>;
|
|
6201
6575
|
}, z.core.$strip>>;
|
|
6202
6576
|
}, z.core.$strip>>;
|
|
6203
6577
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6212,12 +6586,18 @@ declare const QueryPoliciesResponse: z.ZodObject<{
|
|
|
6212
6586
|
}, z.core.$strip>]>>>;
|
|
6213
6587
|
}, z.core.$strip>>>;
|
|
6214
6588
|
}, z.core.$strip>>;
|
|
6215
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6589
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
6216
6590
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
6217
6591
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6218
6592
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6219
6593
|
}, z.core.$strip>>;
|
|
6220
|
-
}, z.core.$strip
|
|
6594
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
6595
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
6596
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6597
|
+
resourceIds: z.ZodObject<{
|
|
6598
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6599
|
+
}, z.core.$strip>;
|
|
6600
|
+
}, z.core.$strip>]>>>>;
|
|
6221
6601
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6222
6602
|
name: z.ZodOptional<z.ZodString>;
|
|
6223
6603
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -6274,7 +6654,7 @@ declare const QueryPoliciesResponse: z.ZodObject<{
|
|
|
6274
6654
|
BILLING: "BILLING";
|
|
6275
6655
|
}>>;
|
|
6276
6656
|
}, z.core.$strip>>;
|
|
6277
|
-
|
|
6657
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6278
6658
|
}, z.core.$strip>>>;
|
|
6279
6659
|
totalServiceCount: z.ZodOptional<z.ZodNumber>;
|
|
6280
6660
|
}, z.core.$strip>>>;
|
|
@@ -6832,6 +7212,27 @@ declare const SetServiceLocationsResponse: z.ZodObject<{
|
|
|
6832
7212
|
}, z.core.$strip>>>;
|
|
6833
7213
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
6834
7214
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
7215
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
7216
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
7217
|
+
HOUR: "HOUR";
|
|
7218
|
+
DAY: "DAY";
|
|
7219
|
+
}>>;
|
|
7220
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
7221
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
7222
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
7223
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7224
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
7225
|
+
hourOptions: z.ZodObject<{
|
|
7226
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
7227
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
7228
|
+
}, z.core.$strip>;
|
|
7229
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7230
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
7231
|
+
dayOptions: z.ZodObject<{
|
|
7232
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
7233
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
7234
|
+
}, z.core.$strip>;
|
|
7235
|
+
}, z.core.$strip>]>>>;
|
|
6835
7236
|
}, z.core.$strip>>;
|
|
6836
7237
|
}, z.core.$strip>>;
|
|
6837
7238
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6846,12 +7247,18 @@ declare const SetServiceLocationsResponse: z.ZodObject<{
|
|
|
6846
7247
|
}, z.core.$strip>]>>>;
|
|
6847
7248
|
}, z.core.$strip>>>;
|
|
6848
7249
|
}, z.core.$strip>>;
|
|
6849
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7250
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
6850
7251
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
6851
7252
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6852
7253
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6853
7254
|
}, z.core.$strip>>;
|
|
6854
|
-
}, z.core.$strip
|
|
7255
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
7256
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
7257
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7258
|
+
resourceIds: z.ZodObject<{
|
|
7259
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7260
|
+
}, z.core.$strip>;
|
|
7261
|
+
}, z.core.$strip>]>>>>;
|
|
6855
7262
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6856
7263
|
name: z.ZodOptional<z.ZodString>;
|
|
6857
7264
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -6908,7 +7315,7 @@ declare const SetServiceLocationsResponse: z.ZodObject<{
|
|
|
6908
7315
|
BILLING: "BILLING";
|
|
6909
7316
|
}>>;
|
|
6910
7317
|
}, z.core.$strip>>;
|
|
6911
|
-
|
|
7318
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6912
7319
|
}, z.core.$strip>>;
|
|
6913
7320
|
}, z.core.$strip>;
|
|
6914
7321
|
declare const EnablePricingPlansForServiceRequest: z.ZodObject<{
|
|
@@ -7202,6 +7609,27 @@ declare const EnablePricingPlansForServiceResponse: z.ZodObject<{
|
|
|
7202
7609
|
}, z.core.$strip>>>;
|
|
7203
7610
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
7204
7611
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
7612
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
7613
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
7614
|
+
HOUR: "HOUR";
|
|
7615
|
+
DAY: "DAY";
|
|
7616
|
+
}>>;
|
|
7617
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
7618
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
7619
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
7620
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7621
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
7622
|
+
hourOptions: z.ZodObject<{
|
|
7623
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
7624
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
7625
|
+
}, z.core.$strip>;
|
|
7626
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7627
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
7628
|
+
dayOptions: z.ZodObject<{
|
|
7629
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
7630
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
7631
|
+
}, z.core.$strip>;
|
|
7632
|
+
}, z.core.$strip>]>>>;
|
|
7205
7633
|
}, z.core.$strip>>;
|
|
7206
7634
|
}, z.core.$strip>>;
|
|
7207
7635
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -7216,12 +7644,18 @@ declare const EnablePricingPlansForServiceResponse: z.ZodObject<{
|
|
|
7216
7644
|
}, z.core.$strip>]>>>;
|
|
7217
7645
|
}, z.core.$strip>>>;
|
|
7218
7646
|
}, z.core.$strip>>;
|
|
7219
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7647
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
7220
7648
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
7221
7649
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7222
7650
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7223
7651
|
}, z.core.$strip>>;
|
|
7224
|
-
}, z.core.$strip
|
|
7652
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
7653
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
7654
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7655
|
+
resourceIds: z.ZodObject<{
|
|
7656
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7657
|
+
}, z.core.$strip>;
|
|
7658
|
+
}, z.core.$strip>]>>>>;
|
|
7225
7659
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7226
7660
|
name: z.ZodOptional<z.ZodString>;
|
|
7227
7661
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -7278,7 +7712,7 @@ declare const EnablePricingPlansForServiceResponse: z.ZodObject<{
|
|
|
7278
7712
|
BILLING: "BILLING";
|
|
7279
7713
|
}>>;
|
|
7280
7714
|
}, z.core.$strip>>;
|
|
7281
|
-
|
|
7715
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7282
7716
|
}, z.core.$strip>>;
|
|
7283
7717
|
}, z.core.$strip>;
|
|
7284
7718
|
declare const DisablePricingPlansForServiceRequest: z.ZodObject<{
|
|
@@ -7574,6 +8008,27 @@ declare const DisablePricingPlansForServiceResponse: z.ZodObject<{
|
|
|
7574
8008
|
}, z.core.$strip>>>;
|
|
7575
8009
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
7576
8010
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
8011
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
8012
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
8013
|
+
HOUR: "HOUR";
|
|
8014
|
+
DAY: "DAY";
|
|
8015
|
+
}>>;
|
|
8016
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
8017
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
8018
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
8019
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8020
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
8021
|
+
hourOptions: z.ZodObject<{
|
|
8022
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
8023
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
8024
|
+
}, z.core.$strip>;
|
|
8025
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8026
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
8027
|
+
dayOptions: z.ZodObject<{
|
|
8028
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
8029
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
8030
|
+
}, z.core.$strip>;
|
|
8031
|
+
}, z.core.$strip>]>>>;
|
|
7577
8032
|
}, z.core.$strip>>;
|
|
7578
8033
|
}, z.core.$strip>>;
|
|
7579
8034
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -7588,12 +8043,18 @@ declare const DisablePricingPlansForServiceResponse: z.ZodObject<{
|
|
|
7588
8043
|
}, z.core.$strip>]>>>;
|
|
7589
8044
|
}, z.core.$strip>>>;
|
|
7590
8045
|
}, z.core.$strip>>;
|
|
7591
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8046
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
7592
8047
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
7593
8048
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7594
8049
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7595
8050
|
}, z.core.$strip>>;
|
|
7596
|
-
}, z.core.$strip
|
|
8051
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
8052
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
8053
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8054
|
+
resourceIds: z.ZodObject<{
|
|
8055
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8056
|
+
}, z.core.$strip>;
|
|
8057
|
+
}, z.core.$strip>]>>>>;
|
|
7597
8058
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7598
8059
|
name: z.ZodOptional<z.ZodString>;
|
|
7599
8060
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -7650,7 +8111,7 @@ declare const DisablePricingPlansForServiceResponse: z.ZodObject<{
|
|
|
7650
8111
|
BILLING: "BILLING";
|
|
7651
8112
|
}>>;
|
|
7652
8113
|
}, z.core.$strip>>;
|
|
7653
|
-
|
|
8114
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7654
8115
|
}, z.core.$strip>>;
|
|
7655
8116
|
}, z.core.$strip>;
|
|
7656
8117
|
declare const SetCustomSlugRequest: z.ZodObject<{
|
|
@@ -7951,6 +8412,27 @@ declare const SetCustomSlugResponse: z.ZodObject<{
|
|
|
7951
8412
|
}, z.core.$strip>>>;
|
|
7952
8413
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
7953
8414
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
8415
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
8416
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
8417
|
+
HOUR: "HOUR";
|
|
8418
|
+
DAY: "DAY";
|
|
8419
|
+
}>>;
|
|
8420
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
8421
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
8422
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
8423
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8424
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
8425
|
+
hourOptions: z.ZodObject<{
|
|
8426
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
8427
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
8428
|
+
}, z.core.$strip>;
|
|
8429
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8430
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
8431
|
+
dayOptions: z.ZodObject<{
|
|
8432
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
8433
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
8434
|
+
}, z.core.$strip>;
|
|
8435
|
+
}, z.core.$strip>]>>>;
|
|
7954
8436
|
}, z.core.$strip>>;
|
|
7955
8437
|
}, z.core.$strip>>;
|
|
7956
8438
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -7965,12 +8447,18 @@ declare const SetCustomSlugResponse: z.ZodObject<{
|
|
|
7965
8447
|
}, z.core.$strip>]>>>;
|
|
7966
8448
|
}, z.core.$strip>>>;
|
|
7967
8449
|
}, z.core.$strip>>;
|
|
7968
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8450
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
7969
8451
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
7970
8452
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7971
8453
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7972
8454
|
}, z.core.$strip>>;
|
|
7973
|
-
}, z.core.$strip
|
|
8455
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
8456
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
8457
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8458
|
+
resourceIds: z.ZodObject<{
|
|
8459
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8460
|
+
}, z.core.$strip>;
|
|
8461
|
+
}, z.core.$strip>]>>>>;
|
|
7974
8462
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7975
8463
|
name: z.ZodOptional<z.ZodString>;
|
|
7976
8464
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -8027,7 +8515,7 @@ declare const SetCustomSlugResponse: z.ZodObject<{
|
|
|
8027
8515
|
BILLING: "BILLING";
|
|
8028
8516
|
}>>;
|
|
8029
8517
|
}, z.core.$strip>>;
|
|
8030
|
-
|
|
8518
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8031
8519
|
}, z.core.$strip>>;
|
|
8032
8520
|
}, z.core.$strip>;
|
|
8033
8521
|
declare const ValidateSlugRequest: z.ZodObject<{
|
|
@@ -8334,6 +8822,27 @@ declare const CloneServiceResponse: z.ZodObject<{
|
|
|
8334
8822
|
}, z.core.$strip>>>;
|
|
8335
8823
|
sessionDurations: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
8336
8824
|
timeBetweenSessions: z.ZodOptional<z.ZodNumber>;
|
|
8825
|
+
durationRange: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
8826
|
+
unitType: z.ZodOptional<z.ZodEnum<{
|
|
8827
|
+
HOUR: "HOUR";
|
|
8828
|
+
DAY: "DAY";
|
|
8829
|
+
}>>;
|
|
8830
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
8831
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
8832
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
8833
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8834
|
+
dayOptions: z.ZodOptional<z.ZodNever>;
|
|
8835
|
+
hourOptions: z.ZodObject<{
|
|
8836
|
+
minDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
8837
|
+
maxDurationInMinutes: z.ZodOptional<z.ZodNumber>;
|
|
8838
|
+
}, z.core.$strip>;
|
|
8839
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8840
|
+
hourOptions: z.ZodOptional<z.ZodNever>;
|
|
8841
|
+
dayOptions: z.ZodObject<{
|
|
8842
|
+
minDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
8843
|
+
maxDurationInDays: z.ZodOptional<z.ZodNumber>;
|
|
8844
|
+
}, z.core.$strip>;
|
|
8845
|
+
}, z.core.$strip>]>>>;
|
|
8337
8846
|
}, z.core.$strip>>;
|
|
8338
8847
|
}, z.core.$strip>>;
|
|
8339
8848
|
staffMemberIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -8348,12 +8857,18 @@ declare const CloneServiceResponse: z.ZodObject<{
|
|
|
8348
8857
|
}, z.core.$strip>]>>>;
|
|
8349
8858
|
}, z.core.$strip>>>;
|
|
8350
8859
|
}, z.core.$strip>>;
|
|
8351
|
-
serviceResources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8860
|
+
serviceResources: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
8352
8861
|
resourceType: z.ZodOptional<z.ZodObject<{
|
|
8353
8862
|
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8354
8863
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8355
8864
|
}, z.core.$strip>>;
|
|
8356
|
-
}, z.core.$strip
|
|
8865
|
+
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
8866
|
+
resourceIds: z.ZodOptional<z.ZodNever>;
|
|
8867
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8868
|
+
resourceIds: z.ZodObject<{
|
|
8869
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8870
|
+
}, z.core.$strip>;
|
|
8871
|
+
}, z.core.$strip>]>>>>;
|
|
8357
8872
|
supportedSlugs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8358
8873
|
name: z.ZodOptional<z.ZodString>;
|
|
8359
8874
|
custom: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -8410,7 +8925,7 @@ declare const CloneServiceResponse: z.ZodObject<{
|
|
|
8410
8925
|
BILLING: "BILLING";
|
|
8411
8926
|
}>>;
|
|
8412
8927
|
}, z.core.$strip>>;
|
|
8413
|
-
|
|
8928
|
+
primaryResourceType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8414
8929
|
}, z.core.$strip>>;
|
|
8415
8930
|
errors: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8416
8931
|
OPTIONS_AND_VARIANTS: "OPTIONS_AND_VARIANTS";
|