@wix/auto_sdk_bookings_services 1.0.246 → 1.0.248
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-e-XkT__j.d.ts → bookings-services-v2-service-services.universal-BOoQPLMx.d.ts} +12 -5
- package/build/cjs/index.d.ts +2 -2
- 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 +12 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +132 -44
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/{bookings-services-v2-service-services.universal-e-XkT__j.d.mts → bookings-services-v2-service-services.universal-BOoQPLMx.d.mts} +12 -5
- package/build/es/index.d.mts +2 -2
- 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 +12 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +132 -44
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-D5elCd1K.d.ts → bookings-services-v2-service-services.universal-CN7kgeCg.d.ts} +14 -5
- package/build/internal/cjs/index.d.ts +2 -2
- 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 +12 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +132 -44
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-D5elCd1K.d.mts → bookings-services-v2-service-services.universal-CN7kgeCg.d.mts} +14 -5
- package/build/internal/es/index.d.mts +2 -2
- 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 +12 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +132 -44
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -363,7 +363,9 @@ var CreateServiceRequest = z.object({
|
|
|
363
363
|
}).describe("Business location address.").optional(),
|
|
364
364
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
365
365
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
366
|
-
}).describe(
|
|
366
|
+
}).describe(
|
|
367
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
368
|
+
)
|
|
367
369
|
}),
|
|
368
370
|
z.object({
|
|
369
371
|
business: z.never().optional(),
|
|
@@ -379,7 +381,9 @@ var CreateServiceRequest = z.object({
|
|
|
379
381
|
postalCode: z.string().optional().nullable(),
|
|
380
382
|
addressLine1: z.string().optional().nullable()
|
|
381
383
|
}).describe("Address of the custom location.").optional()
|
|
382
|
-
}).describe(
|
|
384
|
+
}).describe(
|
|
385
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
386
|
+
)
|
|
383
387
|
})
|
|
384
388
|
])
|
|
385
389
|
)
|
|
@@ -1094,7 +1098,9 @@ var CreateServiceResponse = z.object({
|
|
|
1094
1098
|
}).describe("Business location address.").optional(),
|
|
1095
1099
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
1096
1100
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
1097
|
-
}).describe(
|
|
1101
|
+
}).describe(
|
|
1102
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
1103
|
+
)
|
|
1098
1104
|
}),
|
|
1099
1105
|
z.object({
|
|
1100
1106
|
business: z.never().optional(),
|
|
@@ -1110,7 +1116,9 @@ var CreateServiceResponse = z.object({
|
|
|
1110
1116
|
postalCode: z.string().optional().nullable(),
|
|
1111
1117
|
addressLine1: z.string().optional().nullable()
|
|
1112
1118
|
}).describe("Address of the custom location.").optional()
|
|
1113
|
-
}).describe(
|
|
1119
|
+
}).describe(
|
|
1120
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
1121
|
+
)
|
|
1114
1122
|
})
|
|
1115
1123
|
])
|
|
1116
1124
|
)
|
|
@@ -1820,7 +1828,9 @@ var BulkCreateServicesRequest = z.object({
|
|
|
1820
1828
|
}).describe("Business location address.").optional(),
|
|
1821
1829
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
1822
1830
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
1823
|
-
}).describe(
|
|
1831
|
+
}).describe(
|
|
1832
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
1833
|
+
)
|
|
1824
1834
|
}),
|
|
1825
1835
|
z.object({
|
|
1826
1836
|
business: z.never().optional(),
|
|
@@ -1836,7 +1846,9 @@ var BulkCreateServicesRequest = z.object({
|
|
|
1836
1846
|
postalCode: z.string().optional().nullable(),
|
|
1837
1847
|
addressLine1: z.string().optional().nullable()
|
|
1838
1848
|
}).describe("Address of the custom location.").optional()
|
|
1839
|
-
}).describe(
|
|
1849
|
+
}).describe(
|
|
1850
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
1851
|
+
)
|
|
1840
1852
|
})
|
|
1841
1853
|
])
|
|
1842
1854
|
)
|
|
@@ -2593,7 +2605,9 @@ var BulkCreateServicesResponse = z.object({
|
|
|
2593
2605
|
}).describe("Business location address.").optional(),
|
|
2594
2606
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
2595
2607
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
2596
|
-
}).describe(
|
|
2608
|
+
}).describe(
|
|
2609
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
2610
|
+
)
|
|
2597
2611
|
}),
|
|
2598
2612
|
z.object({
|
|
2599
2613
|
business: z.never().optional(),
|
|
@@ -2609,7 +2623,9 @@ var BulkCreateServicesResponse = z.object({
|
|
|
2609
2623
|
postalCode: z.string().optional().nullable(),
|
|
2610
2624
|
addressLine1: z.string().optional().nullable()
|
|
2611
2625
|
}).describe("Address of the custom location.").optional()
|
|
2612
|
-
}).describe(
|
|
2626
|
+
}).describe(
|
|
2627
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
2628
|
+
)
|
|
2613
2629
|
})
|
|
2614
2630
|
])
|
|
2615
2631
|
)
|
|
@@ -3350,7 +3366,9 @@ var GetServiceResponse = z.object({
|
|
|
3350
3366
|
}).describe("Business location address.").optional(),
|
|
3351
3367
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
3352
3368
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
3353
|
-
}).describe(
|
|
3369
|
+
}).describe(
|
|
3370
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
3371
|
+
)
|
|
3354
3372
|
}),
|
|
3355
3373
|
z.object({
|
|
3356
3374
|
business: z.never().optional(),
|
|
@@ -3366,7 +3384,9 @@ var GetServiceResponse = z.object({
|
|
|
3366
3384
|
postalCode: z.string().optional().nullable(),
|
|
3367
3385
|
addressLine1: z.string().optional().nullable()
|
|
3368
3386
|
}).describe("Address of the custom location.").optional()
|
|
3369
|
-
}).describe(
|
|
3387
|
+
}).describe(
|
|
3388
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
3389
|
+
)
|
|
3370
3390
|
})
|
|
3371
3391
|
])
|
|
3372
3392
|
)
|
|
@@ -4075,7 +4095,9 @@ var UpdateServiceRequest = z.object({
|
|
|
4075
4095
|
}).describe("Business location address.").optional(),
|
|
4076
4096
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
4077
4097
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
4078
|
-
}).describe(
|
|
4098
|
+
}).describe(
|
|
4099
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
4100
|
+
)
|
|
4079
4101
|
}),
|
|
4080
4102
|
z.object({
|
|
4081
4103
|
business: z.never().optional(),
|
|
@@ -4091,7 +4113,9 @@ var UpdateServiceRequest = z.object({
|
|
|
4091
4113
|
postalCode: z.string().optional().nullable(),
|
|
4092
4114
|
addressLine1: z.string().optional().nullable()
|
|
4093
4115
|
}).describe("Address of the custom location.").optional()
|
|
4094
|
-
}).describe(
|
|
4116
|
+
}).describe(
|
|
4117
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
4118
|
+
)
|
|
4095
4119
|
})
|
|
4096
4120
|
])
|
|
4097
4121
|
)
|
|
@@ -4806,7 +4830,9 @@ var UpdateServiceResponse = z.object({
|
|
|
4806
4830
|
}).describe("Business location address.").optional(),
|
|
4807
4831
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
4808
4832
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
4809
|
-
}).describe(
|
|
4833
|
+
}).describe(
|
|
4834
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
4835
|
+
)
|
|
4810
4836
|
}),
|
|
4811
4837
|
z.object({
|
|
4812
4838
|
business: z.never().optional(),
|
|
@@ -4822,7 +4848,9 @@ var UpdateServiceResponse = z.object({
|
|
|
4822
4848
|
postalCode: z.string().optional().nullable(),
|
|
4823
4849
|
addressLine1: z.string().optional().nullable()
|
|
4824
4850
|
}).describe("Address of the custom location.").optional()
|
|
4825
|
-
}).describe(
|
|
4851
|
+
}).describe(
|
|
4852
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
4853
|
+
)
|
|
4826
4854
|
})
|
|
4827
4855
|
])
|
|
4828
4856
|
)
|
|
@@ -5546,7 +5574,9 @@ var BulkUpdateServicesRequest = z.object({
|
|
|
5546
5574
|
}).describe("Business location address.").optional(),
|
|
5547
5575
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
5548
5576
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
5549
|
-
}).describe(
|
|
5577
|
+
}).describe(
|
|
5578
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
5579
|
+
)
|
|
5550
5580
|
}),
|
|
5551
5581
|
z.object({
|
|
5552
5582
|
business: z.never().optional(),
|
|
@@ -5562,7 +5592,9 @@ var BulkUpdateServicesRequest = z.object({
|
|
|
5562
5592
|
postalCode: z.string().optional().nullable(),
|
|
5563
5593
|
addressLine1: z.string().optional().nullable()
|
|
5564
5594
|
}).describe("Address of the custom location.").optional()
|
|
5565
|
-
}).describe(
|
|
5595
|
+
}).describe(
|
|
5596
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
5597
|
+
)
|
|
5566
5598
|
})
|
|
5567
5599
|
])
|
|
5568
5600
|
)
|
|
@@ -6328,7 +6360,9 @@ var BulkUpdateServicesResponse = z.object({
|
|
|
6328
6360
|
}).describe("Business location address.").optional(),
|
|
6329
6361
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
6330
6362
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
6331
|
-
}).describe(
|
|
6363
|
+
}).describe(
|
|
6364
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
6365
|
+
)
|
|
6332
6366
|
}),
|
|
6333
6367
|
z.object({
|
|
6334
6368
|
business: z.never().optional(),
|
|
@@ -6344,7 +6378,9 @@ var BulkUpdateServicesResponse = z.object({
|
|
|
6344
6378
|
postalCode: z.string().optional().nullable(),
|
|
6345
6379
|
addressLine1: z.string().optional().nullable()
|
|
6346
6380
|
}).describe("Address of the custom location.").optional()
|
|
6347
|
-
}).describe(
|
|
6381
|
+
}).describe(
|
|
6382
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
6383
|
+
)
|
|
6348
6384
|
})
|
|
6349
6385
|
])
|
|
6350
6386
|
)
|
|
@@ -7073,7 +7109,9 @@ var BulkUpdateServicesByFilterRequest = z.object({
|
|
|
7073
7109
|
}).describe("Business location address.").optional(),
|
|
7074
7110
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
7075
7111
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
7076
|
-
}).describe(
|
|
7112
|
+
}).describe(
|
|
7113
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
7114
|
+
)
|
|
7077
7115
|
}),
|
|
7078
7116
|
z.object({
|
|
7079
7117
|
business: z.never().optional(),
|
|
@@ -7089,7 +7127,9 @@ var BulkUpdateServicesByFilterRequest = z.object({
|
|
|
7089
7127
|
postalCode: z.string().optional().nullable(),
|
|
7090
7128
|
addressLine1: z.string().optional().nullable()
|
|
7091
7129
|
}).describe("Address of the custom location.").optional()
|
|
7092
|
-
}).describe(
|
|
7130
|
+
}).describe(
|
|
7131
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
7132
|
+
)
|
|
7093
7133
|
})
|
|
7094
7134
|
])
|
|
7095
7135
|
)
|
|
@@ -7893,7 +7933,9 @@ var BulkDeleteServicesResponse = z.object({
|
|
|
7893
7933
|
}).describe("Business location address.").optional(),
|
|
7894
7934
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
7895
7935
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
7896
|
-
}).describe(
|
|
7936
|
+
}).describe(
|
|
7937
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
7938
|
+
)
|
|
7897
7939
|
}),
|
|
7898
7940
|
z.object({
|
|
7899
7941
|
business: z.never().optional(),
|
|
@@ -7909,7 +7951,9 @@ var BulkDeleteServicesResponse = z.object({
|
|
|
7909
7951
|
postalCode: z.string().optional().nullable(),
|
|
7910
7952
|
addressLine1: z.string().optional().nullable()
|
|
7911
7953
|
}).describe("Address of the custom location.").optional()
|
|
7912
|
-
}).describe(
|
|
7954
|
+
}).describe(
|
|
7955
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
7956
|
+
)
|
|
7913
7957
|
})
|
|
7914
7958
|
])
|
|
7915
7959
|
)
|
|
@@ -9009,7 +9053,9 @@ var QueryServicesResponse = z.object({
|
|
|
9009
9053
|
}).describe("Business location address.").optional(),
|
|
9010
9054
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
9011
9055
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
9012
|
-
}).describe(
|
|
9056
|
+
}).describe(
|
|
9057
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
9058
|
+
)
|
|
9013
9059
|
}),
|
|
9014
9060
|
z.object({
|
|
9015
9061
|
business: z.never().optional(),
|
|
@@ -9025,7 +9071,9 @@ var QueryServicesResponse = z.object({
|
|
|
9025
9071
|
postalCode: z.string().optional().nullable(),
|
|
9026
9072
|
addressLine1: z.string().optional().nullable()
|
|
9027
9073
|
}).describe("Address of the custom location.").optional()
|
|
9028
|
-
}).describe(
|
|
9074
|
+
}).describe(
|
|
9075
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
9076
|
+
)
|
|
9029
9077
|
})
|
|
9030
9078
|
])
|
|
9031
9079
|
)
|
|
@@ -10162,7 +10210,9 @@ var SearchServicesResponse = z.object({
|
|
|
10162
10210
|
}).describe("Business location address.").optional(),
|
|
10163
10211
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
10164
10212
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
10165
|
-
}).describe(
|
|
10213
|
+
}).describe(
|
|
10214
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
10215
|
+
)
|
|
10166
10216
|
}),
|
|
10167
10217
|
z.object({
|
|
10168
10218
|
business: z.never().optional(),
|
|
@@ -10178,7 +10228,9 @@ var SearchServicesResponse = z.object({
|
|
|
10178
10228
|
postalCode: z.string().optional().nullable(),
|
|
10179
10229
|
addressLine1: z.string().optional().nullable()
|
|
10180
10230
|
}).describe("Address of the custom location.").optional()
|
|
10181
|
-
}).describe(
|
|
10231
|
+
}).describe(
|
|
10232
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
10233
|
+
)
|
|
10182
10234
|
})
|
|
10183
10235
|
])
|
|
10184
10236
|
)
|
|
@@ -11396,7 +11448,9 @@ var QueryPoliciesResponse = z.object({
|
|
|
11396
11448
|
}).describe("Business location address.").optional(),
|
|
11397
11449
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
11398
11450
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
11399
|
-
}).describe(
|
|
11451
|
+
}).describe(
|
|
11452
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
11453
|
+
)
|
|
11400
11454
|
}),
|
|
11401
11455
|
z.object({
|
|
11402
11456
|
business: z.never().optional(),
|
|
@@ -11412,7 +11466,9 @@ var QueryPoliciesResponse = z.object({
|
|
|
11412
11466
|
postalCode: z.string().optional().nullable(),
|
|
11413
11467
|
addressLine1: z.string().optional().nullable()
|
|
11414
11468
|
}).describe("Address of the custom location.").optional()
|
|
11415
|
-
}).describe(
|
|
11469
|
+
}).describe(
|
|
11470
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
11471
|
+
)
|
|
11416
11472
|
})
|
|
11417
11473
|
])
|
|
11418
11474
|
)
|
|
@@ -11954,7 +12010,9 @@ var QueryLocationsResponse = z.object({
|
|
|
11954
12010
|
}).describe("Business location address.").optional(),
|
|
11955
12011
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
11956
12012
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
11957
|
-
}).describe(
|
|
12013
|
+
}).describe(
|
|
12014
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
12015
|
+
)
|
|
11958
12016
|
}),
|
|
11959
12017
|
z.object({
|
|
11960
12018
|
business: z.never().optional(),
|
|
@@ -11970,7 +12028,9 @@ var QueryLocationsResponse = z.object({
|
|
|
11970
12028
|
postalCode: z.string().optional().nullable(),
|
|
11971
12029
|
addressLine1: z.string().optional().nullable()
|
|
11972
12030
|
}).describe("Address of the custom location.").optional()
|
|
11973
|
-
}).describe(
|
|
12031
|
+
}).describe(
|
|
12032
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
12033
|
+
)
|
|
11974
12034
|
})
|
|
11975
12035
|
])
|
|
11976
12036
|
)
|
|
@@ -12064,7 +12124,9 @@ var SetServiceLocationsRequest = z.object({
|
|
|
12064
12124
|
}).describe("Business location address.").optional(),
|
|
12065
12125
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
12066
12126
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
12067
|
-
}).describe(
|
|
12127
|
+
}).describe(
|
|
12128
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
12129
|
+
)
|
|
12068
12130
|
}),
|
|
12069
12131
|
z.object({
|
|
12070
12132
|
business: z.never().optional(),
|
|
@@ -12080,7 +12142,9 @@ var SetServiceLocationsRequest = z.object({
|
|
|
12080
12142
|
postalCode: z.string().optional().nullable(),
|
|
12081
12143
|
addressLine1: z.string().optional().nullable()
|
|
12082
12144
|
}).describe("Address of the custom location.").optional()
|
|
12083
|
-
}).describe(
|
|
12145
|
+
}).describe(
|
|
12146
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
12147
|
+
)
|
|
12084
12148
|
})
|
|
12085
12149
|
])
|
|
12086
12150
|
)
|
|
@@ -12137,7 +12201,9 @@ var SetServiceLocationsRequest = z.object({
|
|
|
12137
12201
|
}).describe("Business location address.").optional(),
|
|
12138
12202
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
12139
12203
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
12140
|
-
}).describe(
|
|
12204
|
+
}).describe(
|
|
12205
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
12206
|
+
)
|
|
12141
12207
|
}),
|
|
12142
12208
|
z.object({
|
|
12143
12209
|
business: z.never().optional(),
|
|
@@ -12153,7 +12219,9 @@ var SetServiceLocationsRequest = z.object({
|
|
|
12153
12219
|
postalCode: z.string().optional().nullable(),
|
|
12154
12220
|
addressLine1: z.string().optional().nullable()
|
|
12155
12221
|
}).describe("Address of the custom location.").optional()
|
|
12156
|
-
}).describe(
|
|
12222
|
+
}).describe(
|
|
12223
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
12224
|
+
)
|
|
12157
12225
|
})
|
|
12158
12226
|
])
|
|
12159
12227
|
).describe(
|
|
@@ -12548,7 +12616,9 @@ var SetServiceLocationsResponse = z.object({
|
|
|
12548
12616
|
}).describe("Business location address.").optional(),
|
|
12549
12617
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
12550
12618
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
12551
|
-
}).describe(
|
|
12619
|
+
}).describe(
|
|
12620
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
12621
|
+
)
|
|
12552
12622
|
}),
|
|
12553
12623
|
z.object({
|
|
12554
12624
|
business: z.never().optional(),
|
|
@@ -12564,7 +12634,9 @@ var SetServiceLocationsResponse = z.object({
|
|
|
12564
12634
|
postalCode: z.string().optional().nullable(),
|
|
12565
12635
|
addressLine1: z.string().optional().nullable()
|
|
12566
12636
|
}).describe("Address of the custom location.").optional()
|
|
12567
|
-
}).describe(
|
|
12637
|
+
}).describe(
|
|
12638
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
12639
|
+
)
|
|
12568
12640
|
})
|
|
12569
12641
|
])
|
|
12570
12642
|
)
|
|
@@ -13289,7 +13361,9 @@ var EnablePricingPlansForServiceResponse = z.object({
|
|
|
13289
13361
|
}).describe("Business location address.").optional(),
|
|
13290
13362
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
13291
13363
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
13292
|
-
}).describe(
|
|
13364
|
+
}).describe(
|
|
13365
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
13366
|
+
)
|
|
13293
13367
|
}),
|
|
13294
13368
|
z.object({
|
|
13295
13369
|
business: z.never().optional(),
|
|
@@ -13305,7 +13379,9 @@ var EnablePricingPlansForServiceResponse = z.object({
|
|
|
13305
13379
|
postalCode: z.string().optional().nullable(),
|
|
13306
13380
|
addressLine1: z.string().optional().nullable()
|
|
13307
13381
|
}).describe("Address of the custom location.").optional()
|
|
13308
|
-
}).describe(
|
|
13382
|
+
}).describe(
|
|
13383
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
13384
|
+
)
|
|
13309
13385
|
})
|
|
13310
13386
|
])
|
|
13311
13387
|
)
|
|
@@ -14030,7 +14106,9 @@ var DisablePricingPlansForServiceResponse = z.object({
|
|
|
14030
14106
|
}).describe("Business location address.").optional(),
|
|
14031
14107
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
14032
14108
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
14033
|
-
}).describe(
|
|
14109
|
+
}).describe(
|
|
14110
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
14111
|
+
)
|
|
14034
14112
|
}),
|
|
14035
14113
|
z.object({
|
|
14036
14114
|
business: z.never().optional(),
|
|
@@ -14046,7 +14124,9 @@ var DisablePricingPlansForServiceResponse = z.object({
|
|
|
14046
14124
|
postalCode: z.string().optional().nullable(),
|
|
14047
14125
|
addressLine1: z.string().optional().nullable()
|
|
14048
14126
|
}).describe("Address of the custom location.").optional()
|
|
14049
|
-
}).describe(
|
|
14127
|
+
}).describe(
|
|
14128
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
14129
|
+
)
|
|
14050
14130
|
})
|
|
14051
14131
|
])
|
|
14052
14132
|
)
|
|
@@ -14782,7 +14862,9 @@ var SetCustomSlugResponse = z.object({
|
|
|
14782
14862
|
}).describe("Business location address.").optional(),
|
|
14783
14863
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
14784
14864
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
14785
|
-
}).describe(
|
|
14865
|
+
}).describe(
|
|
14866
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
14867
|
+
)
|
|
14786
14868
|
}),
|
|
14787
14869
|
z.object({
|
|
14788
14870
|
business: z.never().optional(),
|
|
@@ -14798,7 +14880,9 @@ var SetCustomSlugResponse = z.object({
|
|
|
14798
14880
|
postalCode: z.string().optional().nullable(),
|
|
14799
14881
|
addressLine1: z.string().optional().nullable()
|
|
14800
14882
|
}).describe("Address of the custom location.").optional()
|
|
14801
|
-
}).describe(
|
|
14883
|
+
}).describe(
|
|
14884
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
14885
|
+
)
|
|
14802
14886
|
})
|
|
14803
14887
|
])
|
|
14804
14888
|
)
|
|
@@ -15536,7 +15620,9 @@ var CloneServiceResponse = z.object({
|
|
|
15536
15620
|
}).describe("Business location address.").optional(),
|
|
15537
15621
|
email: z.string().describe("Business location email.").email().optional().nullable(),
|
|
15538
15622
|
phone: z.string().describe("Business location phone.").optional().nullable()
|
|
15539
|
-
}).describe(
|
|
15623
|
+
}).describe(
|
|
15624
|
+
"Information about business locations. Required when `type` is `BUSINESS`."
|
|
15625
|
+
)
|
|
15540
15626
|
}),
|
|
15541
15627
|
z.object({
|
|
15542
15628
|
business: z.never().optional(),
|
|
@@ -15552,7 +15638,9 @@ var CloneServiceResponse = z.object({
|
|
|
15552
15638
|
postalCode: z.string().optional().nullable(),
|
|
15553
15639
|
addressLine1: z.string().optional().nullable()
|
|
15554
15640
|
}).describe("Address of the custom location.").optional()
|
|
15555
|
-
}).describe(
|
|
15641
|
+
}).describe(
|
|
15642
|
+
"Information about custom locations. Required when `type` is `CUSTOM`."
|
|
15643
|
+
)
|
|
15556
15644
|
})
|
|
15557
15645
|
])
|
|
15558
15646
|
)
|