@venulog/phasing-engine-schemas 0.7.0-alpha.2 → 0.7.0-alpha.3
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/dist/parkingBooking.d.ts +12 -12
- package/dist/parkingBooking.js +1 -1
- package/package.json +1 -1
package/dist/parkingBooking.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ export declare const parkingBookingSchema: z.ZodObject<{
|
|
|
76
76
|
}, z.core.$strip>>;
|
|
77
77
|
}, z.core.$strip>;
|
|
78
78
|
export declare const companyDetailsSchema: z.ZodObject<{
|
|
79
|
-
hall: z.ZodString
|
|
79
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
80
80
|
stand_number: z.ZodString;
|
|
81
81
|
company_name: z.ZodString;
|
|
82
82
|
business: z.ZodString;
|
|
@@ -257,7 +257,7 @@ export declare const bookingDetailsDataSchema: z.ZodObject<{
|
|
|
257
257
|
end_time: z.ZodString;
|
|
258
258
|
company_role: z.ZodNullable<z.ZodString>;
|
|
259
259
|
company: z.ZodObject<{
|
|
260
|
-
hall: z.ZodString
|
|
260
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
261
261
|
stand_number: z.ZodString;
|
|
262
262
|
company_name: z.ZodString;
|
|
263
263
|
business: z.ZodString;
|
|
@@ -297,7 +297,7 @@ export declare const bookingDetailsDataSchema: z.ZodObject<{
|
|
|
297
297
|
export declare const createParkingBookingBodySchema: z.ZodObject<{
|
|
298
298
|
parking_area_schedule_id: z.ZodNumber;
|
|
299
299
|
company: z.ZodObject<{
|
|
300
|
-
hall: z.ZodString
|
|
300
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
301
301
|
stand_number: z.ZodString;
|
|
302
302
|
company_name: z.ZodString;
|
|
303
303
|
business: z.ZodString;
|
|
@@ -325,7 +325,7 @@ export declare const createParkingBookingDataSchema: z.ZodObject<{
|
|
|
325
325
|
status: z.ZodString;
|
|
326
326
|
company_role: z.ZodString;
|
|
327
327
|
company: z.ZodObject<{
|
|
328
|
-
hall: z.ZodString
|
|
328
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
329
329
|
stand_number: z.ZodString;
|
|
330
330
|
company_name: z.ZodString;
|
|
331
331
|
business: z.ZodString;
|
|
@@ -358,7 +358,7 @@ export declare const createParkingBookingResponseSchema: z.ZodObject<{
|
|
|
358
358
|
status: z.ZodString;
|
|
359
359
|
company_role: z.ZodString;
|
|
360
360
|
company: z.ZodObject<{
|
|
361
|
-
hall: z.ZodString
|
|
361
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
362
362
|
stand_number: z.ZodString;
|
|
363
363
|
company_name: z.ZodString;
|
|
364
364
|
business: z.ZodString;
|
|
@@ -385,7 +385,7 @@ export declare const createParkingBookingResponseSchema: z.ZodObject<{
|
|
|
385
385
|
}, z.core.$strip>;
|
|
386
386
|
export declare const updateParkingBookingBodySchema: z.ZodObject<{
|
|
387
387
|
company: z.ZodOptional<z.ZodObject<{
|
|
388
|
-
hall: z.ZodString
|
|
388
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
389
389
|
stand_number: z.ZodString;
|
|
390
390
|
company_name: z.ZodString;
|
|
391
391
|
business: z.ZodString;
|
|
@@ -409,7 +409,7 @@ export declare const updateParkingBookingDataSchema: z.ZodObject<{
|
|
|
409
409
|
booking_id: z.ZodNumber;
|
|
410
410
|
qr_token: z.ZodString;
|
|
411
411
|
company: z.ZodNullable<z.ZodObject<{
|
|
412
|
-
hall: z.ZodString
|
|
412
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
413
413
|
stand_number: z.ZodString;
|
|
414
414
|
company_name: z.ZodString;
|
|
415
415
|
business: z.ZodString;
|
|
@@ -437,7 +437,7 @@ export declare const updateParkingBookingResponseSchema: z.ZodObject<{
|
|
|
437
437
|
booking_id: z.ZodNumber;
|
|
438
438
|
qr_token: z.ZodString;
|
|
439
439
|
company: z.ZodNullable<z.ZodObject<{
|
|
440
|
-
hall: z.ZodString
|
|
440
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
441
441
|
stand_number: z.ZodString;
|
|
442
442
|
company_name: z.ZodString;
|
|
443
443
|
business: z.ZodString;
|
|
@@ -547,7 +547,7 @@ export declare const parkingBookingDetailsDataSchema: z.ZodObject<{
|
|
|
547
547
|
end_time: z.ZodString;
|
|
548
548
|
company_role: z.ZodNullable<z.ZodString>;
|
|
549
549
|
company: z.ZodObject<{
|
|
550
|
-
hall: z.ZodString
|
|
550
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
551
551
|
stand_number: z.ZodString;
|
|
552
552
|
company_name: z.ZodString;
|
|
553
553
|
business: z.ZodString;
|
|
@@ -600,7 +600,7 @@ export declare const getParkingBookingDetailsResponseSchema: z.ZodObject<{
|
|
|
600
600
|
end_time: z.ZodString;
|
|
601
601
|
company_role: z.ZodNullable<z.ZodString>;
|
|
602
602
|
company: z.ZodObject<{
|
|
603
|
-
hall: z.ZodString
|
|
603
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
604
604
|
stand_number: z.ZodString;
|
|
605
605
|
company_name: z.ZodString;
|
|
606
606
|
business: z.ZodString;
|
|
@@ -657,7 +657,7 @@ export declare const getParkingBookingDetailsByTokenResponseSchema: z.ZodObject<
|
|
|
657
657
|
end_time: z.ZodString;
|
|
658
658
|
company_role: z.ZodNullable<z.ZodString>;
|
|
659
659
|
company: z.ZodObject<{
|
|
660
|
-
hall: z.ZodString
|
|
660
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
661
661
|
stand_number: z.ZodString;
|
|
662
662
|
company_name: z.ZodString;
|
|
663
663
|
business: z.ZodString;
|
|
@@ -710,7 +710,7 @@ export declare const getParkingBookingDetailsByQrResponseSchema: z.ZodObject<{
|
|
|
710
710
|
end_time: z.ZodString;
|
|
711
711
|
company_role: z.ZodNullable<z.ZodString>;
|
|
712
712
|
company: z.ZodObject<{
|
|
713
|
-
hall: z.ZodString
|
|
713
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
714
714
|
stand_number: z.ZodString;
|
|
715
715
|
company_name: z.ZodString;
|
|
716
716
|
business: z.ZodString;
|
package/dist/parkingBooking.js
CHANGED
|
@@ -104,7 +104,7 @@ export const parkingBookingSchema = z.object({
|
|
|
104
104
|
});
|
|
105
105
|
export const companyDetailsSchema = z
|
|
106
106
|
.object({
|
|
107
|
-
hall: z.string().
|
|
107
|
+
hall: z.string().optional().nullable().openapi({
|
|
108
108
|
description: 'Hall location',
|
|
109
109
|
example: 'Hall 1'
|
|
110
110
|
}),
|