@venulog/phasing-engine-schemas 0.7.6-alpha.0 → 0.8.0-alpha.0
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/camera.d.ts +219 -0
- package/dist/camera.js +227 -0
- package/dist/enums/accessEventType.d.ts +8 -0
- package/dist/enums/accessEventType.js +17 -0
- package/dist/enums/cameraTrigger.d.ts +7 -0
- package/dist/enums/cameraTrigger.js +15 -0
- package/dist/enums/index.d.ts +5 -0
- package/dist/enums/index.js +5 -0
- package/dist/enums/positionSource.d.ts +7 -0
- package/dist/enums/positionSource.js +15 -0
- package/dist/enums/simulationMode.d.ts +11 -0
- package/dist/enums/simulationMode.js +20 -0
- package/dist/enums/vehicleState.d.ts +13 -0
- package/dist/enums/vehicleState.js +37 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +12 -0
- package/dist/parkingArea.d.ts +31 -17
- package/dist/parkingArea.js +76 -26
- package/dist/parkingAreaAccess.d.ts +400 -0
- package/dist/parkingAreaAccess.js +466 -0
- package/dist/parkingAreaLayer.d.ts +354 -0
- package/dist/parkingAreaLayer.js +385 -0
- package/dist/parkingBooking.d.ts +148 -299
- package/dist/parkingBooking.js +83 -225
- package/dist/simulation.d.ts +171 -0
- package/dist/simulation.js +231 -0
- package/dist/vehiclePosition.d.ts +216 -0
- package/dist/vehiclePosition.js +237 -0
- package/package.json +21 -1
package/dist/parkingBooking.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { BookingStatus } from './enums/bookingStatus.js';
|
|
2
2
|
import { z } from './zod.js';
|
|
3
|
+
import { availableTimeSlotV2Schema } from './parkingArea.js';
|
|
3
4
|
import { UnloadingType } from './enums/unloadingType.js';
|
|
5
|
+
import { ParkingAreaScheduleType } from './enums/parkingAreaScheduleType.js';
|
|
4
6
|
export declare const geometrySchema: z.ZodNullable<z.ZodObject<{
|
|
5
7
|
type: z.ZodEnum<{
|
|
6
8
|
Point: "Point";
|
|
@@ -37,46 +39,6 @@ export declare const closeEventParamsSchema: z.ZodObject<{
|
|
|
37
39
|
export declare const closeEventBodySchema: z.ZodObject<{
|
|
38
40
|
reason: z.ZodOptional<z.ZodString>;
|
|
39
41
|
}, z.core.$strip>;
|
|
40
|
-
export declare const parkingBookingSchema: z.ZodObject<{
|
|
41
|
-
id: z.ZodNumber;
|
|
42
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
43
|
-
status: z.ZodEnum<typeof BookingStatus>;
|
|
44
|
-
is_active: z.ZodBoolean;
|
|
45
|
-
created_at: z.ZodString;
|
|
46
|
-
updated_at: z.ZodString;
|
|
47
|
-
created_by: z.ZodNullable<z.ZodString>;
|
|
48
|
-
updated_by: z.ZodNullable<z.ZodString>;
|
|
49
|
-
booking_date: z.ZodNullable<z.ZodString>;
|
|
50
|
-
start_time: z.ZodNullable<z.ZodString>;
|
|
51
|
-
end_time: z.ZodNullable<z.ZodString>;
|
|
52
|
-
company_role: z.ZodNullable<z.ZodString>;
|
|
53
|
-
company: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
54
|
-
vehicle: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
55
|
-
entry_scanned_at: z.ZodNullable<z.ZodString>;
|
|
56
|
-
exit_scanned_at: z.ZodNullable<z.ZodString>;
|
|
57
|
-
parking_area_schedule: z.ZodOptional<z.ZodObject<{
|
|
58
|
-
id: z.ZodNumber;
|
|
59
|
-
date: z.ZodString;
|
|
60
|
-
start_time: z.ZodString;
|
|
61
|
-
end_time: z.ZodString;
|
|
62
|
-
duration: z.ZodNumber;
|
|
63
|
-
parking_area_id: z.ZodNumber;
|
|
64
|
-
parking_area_schedule_type: z.ZodEnum<{
|
|
65
|
-
assembly: import("./index.js").ParkingAreaScheduleType.ASSEMBLY;
|
|
66
|
-
dismantling: import("./index.js").ParkingAreaScheduleType.DISMANTLING;
|
|
67
|
-
}>;
|
|
68
|
-
company_roles: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
69
|
-
vehicle_types: z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
70
|
-
PL: import("./enums/vehicleType.js").VehicleType.PL;
|
|
71
|
-
VUL: import("./enums/vehicleType.js").VehicleType.VUL;
|
|
72
|
-
VL: import("./enums/vehicleType.js").VehicleType.VL;
|
|
73
|
-
}>>>;
|
|
74
|
-
created_at: z.ZodString;
|
|
75
|
-
updated_at: z.ZodString;
|
|
76
|
-
created_by: z.ZodNullable<z.ZodString>;
|
|
77
|
-
updated_by: z.ZodNullable<z.ZodString>;
|
|
78
|
-
}, z.core.$strip>>;
|
|
79
|
-
}, z.core.$strip>;
|
|
80
42
|
export declare const companyDetailsSchema: z.ZodObject<{
|
|
81
43
|
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
82
44
|
stand_number: z.ZodString;
|
|
@@ -91,11 +53,49 @@ export declare const companyDetailsSchema: z.ZodObject<{
|
|
|
91
53
|
transport_company: z.ZodString;
|
|
92
54
|
}, z.core.$strip>;
|
|
93
55
|
export declare const vehicleDetailsSchema: z.ZodObject<{
|
|
94
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
56
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
95
57
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
96
58
|
license_plate: z.ZodString;
|
|
97
59
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
98
60
|
}, z.core.$strip>;
|
|
61
|
+
export declare const parkingBookingSchema: z.ZodObject<{
|
|
62
|
+
id: z.ZodNumber;
|
|
63
|
+
parking_area_schedule_id: z.ZodNumber;
|
|
64
|
+
status: z.ZodEnum<typeof BookingStatus>;
|
|
65
|
+
is_active: z.ZodBoolean;
|
|
66
|
+
created_at: z.ZodString;
|
|
67
|
+
updated_at: z.ZodString;
|
|
68
|
+
created_by: z.ZodNullable<z.ZodString>;
|
|
69
|
+
updated_by: z.ZodNullable<z.ZodString>;
|
|
70
|
+
booking_date: z.ZodNullable<z.ZodString>;
|
|
71
|
+
start_time: z.ZodNullable<z.ZodString>;
|
|
72
|
+
end_time: z.ZodNullable<z.ZodString>;
|
|
73
|
+
company_role: z.ZodNullable<z.ZodString>;
|
|
74
|
+
company: z.ZodObject<{
|
|
75
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
76
|
+
stand_number: z.ZodString;
|
|
77
|
+
company_name: z.ZodString;
|
|
78
|
+
business: z.ZodString;
|
|
79
|
+
departure_city: z.ZodString;
|
|
80
|
+
contact_name: z.ZodString;
|
|
81
|
+
email: z.ZodEmail;
|
|
82
|
+
phone: z.ZodString;
|
|
83
|
+
driver_name: z.ZodString;
|
|
84
|
+
driver_phone: z.ZodString;
|
|
85
|
+
transport_company: z.ZodString;
|
|
86
|
+
}, z.core.$strip>;
|
|
87
|
+
vehicle: z.ZodObject<{
|
|
88
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
89
|
+
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
90
|
+
license_plate: z.ZodString;
|
|
91
|
+
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
92
|
+
}, z.core.$strip>;
|
|
93
|
+
entry_scanned_at: z.ZodNullable<z.ZodString>;
|
|
94
|
+
exit_scanned_at: z.ZodNullable<z.ZodString>;
|
|
95
|
+
parking_spot: z.ZodString;
|
|
96
|
+
door: z.ZodString;
|
|
97
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
98
|
+
}, z.core.$strip>;
|
|
99
99
|
export declare const eventBookingsDataSchema: z.ZodObject<{
|
|
100
100
|
event_id: z.ZodNumber;
|
|
101
101
|
event_code: z.ZodString;
|
|
@@ -113,32 +113,30 @@ export declare const eventBookingsDataSchema: z.ZodObject<{
|
|
|
113
113
|
start_time: z.ZodNullable<z.ZodString>;
|
|
114
114
|
end_time: z.ZodNullable<z.ZodString>;
|
|
115
115
|
company_role: z.ZodNullable<z.ZodString>;
|
|
116
|
-
company: z.
|
|
117
|
-
|
|
116
|
+
company: z.ZodObject<{
|
|
117
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
118
|
+
stand_number: z.ZodString;
|
|
119
|
+
company_name: z.ZodString;
|
|
120
|
+
business: z.ZodString;
|
|
121
|
+
departure_city: z.ZodString;
|
|
122
|
+
contact_name: z.ZodString;
|
|
123
|
+
email: z.ZodEmail;
|
|
124
|
+
phone: z.ZodString;
|
|
125
|
+
driver_name: z.ZodString;
|
|
126
|
+
driver_phone: z.ZodString;
|
|
127
|
+
transport_company: z.ZodString;
|
|
128
|
+
}, z.core.$strip>;
|
|
129
|
+
vehicle: z.ZodObject<{
|
|
130
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
131
|
+
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
132
|
+
license_plate: z.ZodString;
|
|
133
|
+
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
134
|
+
}, z.core.$strip>;
|
|
118
135
|
entry_scanned_at: z.ZodNullable<z.ZodString>;
|
|
119
136
|
exit_scanned_at: z.ZodNullable<z.ZodString>;
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
start_time: z.ZodString;
|
|
124
|
-
end_time: z.ZodString;
|
|
125
|
-
duration: z.ZodNumber;
|
|
126
|
-
parking_area_id: z.ZodNumber;
|
|
127
|
-
parking_area_schedule_type: z.ZodEnum<{
|
|
128
|
-
assembly: import("./index.js").ParkingAreaScheduleType.ASSEMBLY;
|
|
129
|
-
dismantling: import("./index.js").ParkingAreaScheduleType.DISMANTLING;
|
|
130
|
-
}>;
|
|
131
|
-
company_roles: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
132
|
-
vehicle_types: z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
133
|
-
PL: import("./enums/vehicleType.js").VehicleType.PL;
|
|
134
|
-
VUL: import("./enums/vehicleType.js").VehicleType.VUL;
|
|
135
|
-
VL: import("./enums/vehicleType.js").VehicleType.VL;
|
|
136
|
-
}>>>;
|
|
137
|
-
created_at: z.ZodString;
|
|
138
|
-
updated_at: z.ZodString;
|
|
139
|
-
created_by: z.ZodNullable<z.ZodString>;
|
|
140
|
-
updated_by: z.ZodNullable<z.ZodString>;
|
|
141
|
-
}, z.core.$strip>>;
|
|
137
|
+
parking_spot: z.ZodString;
|
|
138
|
+
door: z.ZodString;
|
|
139
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
142
140
|
}, z.core.$strip>>;
|
|
143
141
|
total_count: z.ZodNumber;
|
|
144
142
|
}, z.core.$strip>;
|
|
@@ -161,32 +159,30 @@ export declare const eventBookingsResponseSchema: z.ZodObject<{
|
|
|
161
159
|
start_time: z.ZodNullable<z.ZodString>;
|
|
162
160
|
end_time: z.ZodNullable<z.ZodString>;
|
|
163
161
|
company_role: z.ZodNullable<z.ZodString>;
|
|
164
|
-
company: z.
|
|
165
|
-
|
|
162
|
+
company: z.ZodObject<{
|
|
163
|
+
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
164
|
+
stand_number: z.ZodString;
|
|
165
|
+
company_name: z.ZodString;
|
|
166
|
+
business: z.ZodString;
|
|
167
|
+
departure_city: z.ZodString;
|
|
168
|
+
contact_name: z.ZodString;
|
|
169
|
+
email: z.ZodEmail;
|
|
170
|
+
phone: z.ZodString;
|
|
171
|
+
driver_name: z.ZodString;
|
|
172
|
+
driver_phone: z.ZodString;
|
|
173
|
+
transport_company: z.ZodString;
|
|
174
|
+
}, z.core.$strip>;
|
|
175
|
+
vehicle: z.ZodObject<{
|
|
176
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
177
|
+
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
178
|
+
license_plate: z.ZodString;
|
|
179
|
+
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
180
|
+
}, z.core.$strip>;
|
|
166
181
|
entry_scanned_at: z.ZodNullable<z.ZodString>;
|
|
167
182
|
exit_scanned_at: z.ZodNullable<z.ZodString>;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
start_time: z.ZodString;
|
|
172
|
-
end_time: z.ZodString;
|
|
173
|
-
duration: z.ZodNumber;
|
|
174
|
-
parking_area_id: z.ZodNumber;
|
|
175
|
-
parking_area_schedule_type: z.ZodEnum<{
|
|
176
|
-
assembly: import("./index.js").ParkingAreaScheduleType.ASSEMBLY;
|
|
177
|
-
dismantling: import("./index.js").ParkingAreaScheduleType.DISMANTLING;
|
|
178
|
-
}>;
|
|
179
|
-
company_roles: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
180
|
-
vehicle_types: z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
181
|
-
PL: import("./enums/vehicleType.js").VehicleType.PL;
|
|
182
|
-
VUL: import("./enums/vehicleType.js").VehicleType.VUL;
|
|
183
|
-
VL: import("./enums/vehicleType.js").VehicleType.VL;
|
|
184
|
-
}>>>;
|
|
185
|
-
created_at: z.ZodString;
|
|
186
|
-
updated_at: z.ZodString;
|
|
187
|
-
created_by: z.ZodNullable<z.ZodString>;
|
|
188
|
-
updated_by: z.ZodNullable<z.ZodString>;
|
|
189
|
-
}, z.core.$strip>>;
|
|
183
|
+
parking_spot: z.ZodString;
|
|
184
|
+
door: z.ZodString;
|
|
185
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
190
186
|
}, z.core.$strip>>;
|
|
191
187
|
total_count: z.ZodNumber;
|
|
192
188
|
}, z.core.$strip>;
|
|
@@ -213,7 +209,8 @@ export declare const closeEventResponseSchema: z.ZodObject<{
|
|
|
213
209
|
reason: z.ZodNullable<z.ZodString>;
|
|
214
210
|
}, z.core.$strip>;
|
|
215
211
|
}, z.core.$strip>;
|
|
216
|
-
export declare const
|
|
212
|
+
export declare const confirmAccessBodySchema: z.ZodObject<{
|
|
213
|
+
event_id: z.ZodNumber;
|
|
217
214
|
plate_number: z.ZodOptional<z.ZodObject<{
|
|
218
215
|
url: z.ZodString;
|
|
219
216
|
name: z.ZodString;
|
|
@@ -235,83 +232,37 @@ export declare const confirmAccessResponseSchema: z.ZodObject<{
|
|
|
235
232
|
}, z.core.$strip>;
|
|
236
233
|
}, z.core.$strip>;
|
|
237
234
|
export declare const checkSlotAvailabilityBodySchema: z.ZodObject<{
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
date: z.ZodString;
|
|
246
|
-
start_time: z.ZodString;
|
|
247
|
-
is_available: z.ZodBoolean;
|
|
248
|
-
max_capacity: z.ZodNumber;
|
|
249
|
-
current_bookings: z.ZodNumber;
|
|
250
|
-
confirmed_bookings: z.ZodNumber;
|
|
251
|
-
available_capacity: z.ZodNumber;
|
|
235
|
+
slot_key: z.ZodString;
|
|
236
|
+
event_id: z.ZodNumber;
|
|
237
|
+
year: z.ZodNumber;
|
|
238
|
+
month: z.ZodNumber;
|
|
239
|
+
company_name: z.ZodString;
|
|
240
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
241
|
+
schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
252
242
|
}, z.core.$strip>;
|
|
253
243
|
export declare const checkSlotAvailabilityResponseSchema: z.ZodObject<{
|
|
254
244
|
success: z.ZodBoolean;
|
|
255
245
|
data: z.ZodObject<{
|
|
256
|
-
schedule_id: z.ZodNumber;
|
|
257
246
|
date: z.ZodString;
|
|
258
247
|
start_time: z.ZodString;
|
|
259
|
-
|
|
248
|
+
end_time: z.ZodString;
|
|
249
|
+
duration: z.ZodNumber;
|
|
250
|
+
schedule_type: z.ZodEnum<{
|
|
251
|
+
assembly: "assembly";
|
|
252
|
+
dismantling: "dismantling";
|
|
253
|
+
}>;
|
|
260
254
|
max_capacity: z.ZodNumber;
|
|
261
255
|
current_bookings: z.ZodNumber;
|
|
262
256
|
confirmed_bookings: z.ZodNumber;
|
|
263
257
|
available_capacity: z.ZodNumber;
|
|
258
|
+
is_available: z.ZodBoolean;
|
|
259
|
+
door: z.ZodString;
|
|
260
|
+
parking_spot: z.ZodString;
|
|
261
|
+
entity_name: z.ZodString;
|
|
262
|
+
slot_key: z.ZodString;
|
|
264
263
|
}, z.core.$strip>;
|
|
265
264
|
}, z.core.$strip>;
|
|
266
|
-
export declare const bookingDetailsDataSchema: z.ZodObject<{
|
|
267
|
-
qr_token: z.ZodNullable<z.ZodString>;
|
|
268
|
-
id: z.ZodNumber;
|
|
269
|
-
booking_id: z.ZodNumber;
|
|
270
|
-
status: z.ZodString;
|
|
271
|
-
booking_date: z.ZodString;
|
|
272
|
-
start_time: z.ZodString;
|
|
273
|
-
end_time: z.ZodString;
|
|
274
|
-
company_role: z.ZodNullable<z.ZodString>;
|
|
275
|
-
company: z.ZodObject<{
|
|
276
|
-
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
277
|
-
stand_number: z.ZodString;
|
|
278
|
-
company_name: z.ZodString;
|
|
279
|
-
business: z.ZodString;
|
|
280
|
-
departure_city: z.ZodString;
|
|
281
|
-
contact_name: z.ZodString;
|
|
282
|
-
email: z.ZodEmail;
|
|
283
|
-
phone: z.ZodString;
|
|
284
|
-
driver_name: z.ZodString;
|
|
285
|
-
driver_phone: z.ZodString;
|
|
286
|
-
transport_company: z.ZodString;
|
|
287
|
-
}, z.core.$strip>;
|
|
288
|
-
vehicle: z.ZodObject<{
|
|
289
|
-
vehicle_type: z.ZodEnum<typeof import("./enums/vehicleType.js").VehicleType>;
|
|
290
|
-
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
291
|
-
license_plate: z.ZodString;
|
|
292
|
-
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
293
|
-
}, z.core.$strip>;
|
|
294
|
-
event_id: z.ZodNumber;
|
|
295
|
-
event_name: z.ZodString;
|
|
296
|
-
event_code: z.ZodString;
|
|
297
|
-
venue_id: z.ZodNullable<z.ZodNumber>;
|
|
298
|
-
venue_name: z.ZodNullable<z.ZodString>;
|
|
299
|
-
request_type: z.ZodString;
|
|
300
|
-
duration: z.ZodNumber;
|
|
301
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
302
|
-
banner: z.ZodNullable<z.ZodObject<{
|
|
303
|
-
url: z.ZodURL;
|
|
304
|
-
name: z.ZodOptional<z.ZodString>;
|
|
305
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
306
|
-
bucket: z.ZodOptional<z.ZodString>;
|
|
307
|
-
type: z.ZodOptional<z.ZodString>;
|
|
308
|
-
path: z.ZodOptional<z.ZodString>;
|
|
309
|
-
}, z.core.$strip>>;
|
|
310
|
-
created_at: z.ZodString;
|
|
311
|
-
updated_at: z.ZodString;
|
|
312
|
-
}, z.core.$strip>;
|
|
313
265
|
export declare const createParkingBookingBodySchema: z.ZodObject<{
|
|
314
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
315
266
|
company: z.ZodObject<{
|
|
316
267
|
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
317
268
|
stand_number: z.ZodString;
|
|
@@ -327,17 +278,18 @@ export declare const createParkingBookingBodySchema: z.ZodObject<{
|
|
|
327
278
|
}, z.core.$strip>;
|
|
328
279
|
company_role: z.ZodString;
|
|
329
280
|
vehicle: z.ZodObject<{
|
|
330
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
281
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
331
282
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
332
283
|
license_plate: z.ZodString;
|
|
333
284
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
334
285
|
}, z.core.$strip>;
|
|
335
286
|
booking_date: z.ZodString;
|
|
336
|
-
|
|
287
|
+
event_id: z.ZodNumber;
|
|
288
|
+
slot_key: z.ZodString;
|
|
289
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
337
290
|
}, z.core.$strip>;
|
|
338
291
|
export declare const createParkingBookingDataSchema: z.ZodObject<{
|
|
339
292
|
id: z.ZodNumber;
|
|
340
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
341
293
|
status: z.ZodString;
|
|
342
294
|
company_role: z.ZodString;
|
|
343
295
|
company: z.ZodObject<{
|
|
@@ -354,7 +306,7 @@ export declare const createParkingBookingDataSchema: z.ZodObject<{
|
|
|
354
306
|
transport_company: z.ZodString;
|
|
355
307
|
}, z.core.$strip>;
|
|
356
308
|
vehicle: z.ZodObject<{
|
|
357
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
309
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
358
310
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
359
311
|
license_plate: z.ZodString;
|
|
360
312
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
@@ -362,6 +314,10 @@ export declare const createParkingBookingDataSchema: z.ZodObject<{
|
|
|
362
314
|
booking_date: z.ZodString;
|
|
363
315
|
start_time: z.ZodString;
|
|
364
316
|
end_time: z.ZodString;
|
|
317
|
+
event_id: z.ZodNumber;
|
|
318
|
+
door: z.ZodString;
|
|
319
|
+
parking_spot: z.ZodString;
|
|
320
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
365
321
|
created_at: z.ZodString;
|
|
366
322
|
created_by: z.ZodNullable<z.ZodString>;
|
|
367
323
|
}, z.core.$strip>;
|
|
@@ -370,7 +326,6 @@ export declare const createParkingBookingResponseSchema: z.ZodObject<{
|
|
|
370
326
|
message: z.ZodString;
|
|
371
327
|
data: z.ZodObject<{
|
|
372
328
|
id: z.ZodNumber;
|
|
373
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
374
329
|
status: z.ZodString;
|
|
375
330
|
company_role: z.ZodString;
|
|
376
331
|
company: z.ZodObject<{
|
|
@@ -387,7 +342,7 @@ export declare const createParkingBookingResponseSchema: z.ZodObject<{
|
|
|
387
342
|
transport_company: z.ZodString;
|
|
388
343
|
}, z.core.$strip>;
|
|
389
344
|
vehicle: z.ZodObject<{
|
|
390
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
345
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
391
346
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
392
347
|
license_plate: z.ZodString;
|
|
393
348
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
@@ -395,6 +350,10 @@ export declare const createParkingBookingResponseSchema: z.ZodObject<{
|
|
|
395
350
|
booking_date: z.ZodString;
|
|
396
351
|
start_time: z.ZodString;
|
|
397
352
|
end_time: z.ZodString;
|
|
353
|
+
event_id: z.ZodNumber;
|
|
354
|
+
door: z.ZodString;
|
|
355
|
+
parking_spot: z.ZodString;
|
|
356
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
398
357
|
created_at: z.ZodString;
|
|
399
358
|
created_by: z.ZodNullable<z.ZodString>;
|
|
400
359
|
}, z.core.$strip>;
|
|
@@ -414,7 +373,7 @@ export declare const updateParkingBookingBodySchema: z.ZodObject<{
|
|
|
414
373
|
transport_company: z.ZodString;
|
|
415
374
|
}, z.core.$strip>>;
|
|
416
375
|
vehicle: z.ZodOptional<z.ZodObject<{
|
|
417
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
376
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
418
377
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
419
378
|
license_plate: z.ZodString;
|
|
420
379
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
@@ -438,7 +397,7 @@ export declare const updateParkingBookingDataSchema: z.ZodObject<{
|
|
|
438
397
|
transport_company: z.ZodString;
|
|
439
398
|
}, z.core.$strip>>;
|
|
440
399
|
vehicle: z.ZodNullable<z.ZodObject<{
|
|
441
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
400
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
442
401
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
443
402
|
license_plate: z.ZodString;
|
|
444
403
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
@@ -466,7 +425,7 @@ export declare const updateParkingBookingResponseSchema: z.ZodObject<{
|
|
|
466
425
|
transport_company: z.ZodString;
|
|
467
426
|
}, z.core.$strip>>;
|
|
468
427
|
vehicle: z.ZodNullable<z.ZodObject<{
|
|
469
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
428
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
470
429
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
471
430
|
license_plate: z.ZodString;
|
|
472
431
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
@@ -530,25 +489,23 @@ export declare const parkingBookingWithRelationsSchema: z.ZodObject<{
|
|
|
530
489
|
is_active: z.ZodBoolean;
|
|
531
490
|
created_at: z.ZodString;
|
|
532
491
|
updated_at: z.ZodString;
|
|
533
|
-
|
|
492
|
+
events: z.ZodObject<{
|
|
534
493
|
id: z.ZodNumber;
|
|
535
|
-
|
|
536
|
-
|
|
494
|
+
name: z.ZodString;
|
|
495
|
+
code: z.ZodString;
|
|
496
|
+
venue_id: z.ZodNullable<z.ZodNumber>;
|
|
497
|
+
banner: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
498
|
+
venues: z.ZodNullable<z.ZodObject<{
|
|
537
499
|
id: z.ZodNumber;
|
|
538
500
|
name: z.ZodString;
|
|
539
|
-
|
|
540
|
-
id: z.ZodNumber;
|
|
541
|
-
name: z.ZodString;
|
|
542
|
-
code: z.ZodString;
|
|
543
|
-
venue_id: z.ZodNullable<z.ZodNumber>;
|
|
544
|
-
banner: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
545
|
-
venues: z.ZodNullable<z.ZodObject<{
|
|
546
|
-
id: z.ZodNumber;
|
|
547
|
-
name: z.ZodString;
|
|
548
|
-
}, z.core.$strip>>;
|
|
549
|
-
}, z.core.$strip>;
|
|
550
|
-
}, z.core.$strip>;
|
|
501
|
+
}, z.core.$strip>>;
|
|
551
502
|
}, z.core.$strip>;
|
|
503
|
+
parking_spot: z.ZodString;
|
|
504
|
+
door: z.ZodString;
|
|
505
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
506
|
+
slot_key: z.ZodString;
|
|
507
|
+
entry_scanned_at: z.ZodNullable<z.ZodString>;
|
|
508
|
+
exit_scanned_at: z.ZodNullable<z.ZodString>;
|
|
552
509
|
}, z.core.$strip>;
|
|
553
510
|
export declare const getParkingBookingDetailsParamsSchema: z.ZodObject<{
|
|
554
511
|
bookingId: z.ZodCoercedNumber<unknown>;
|
|
@@ -576,7 +533,7 @@ export declare const parkingBookingDetailsDataSchema: z.ZodObject<{
|
|
|
576
533
|
transport_company: z.ZodString;
|
|
577
534
|
}, z.core.$strip>;
|
|
578
535
|
vehicle: z.ZodObject<{
|
|
579
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
536
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
580
537
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
581
538
|
license_plate: z.ZodString;
|
|
582
539
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
@@ -588,11 +545,6 @@ export declare const parkingBookingDetailsDataSchema: z.ZodObject<{
|
|
|
588
545
|
venue_name: z.ZodNullable<z.ZodString>;
|
|
589
546
|
request_type: z.ZodString;
|
|
590
547
|
duration: z.ZodNumber;
|
|
591
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
592
|
-
parking_area: z.ZodObject<{
|
|
593
|
-
id: z.ZodNumber;
|
|
594
|
-
name: z.ZodString;
|
|
595
|
-
}, z.core.$strip>;
|
|
596
548
|
banner: z.ZodNullable<z.ZodObject<{
|
|
597
549
|
url: z.ZodURL;
|
|
598
550
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -605,6 +557,10 @@ export declare const parkingBookingDetailsDataSchema: z.ZodObject<{
|
|
|
605
557
|
updated_at: z.ZodString;
|
|
606
558
|
entry_scanned_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
607
559
|
exit_scanned_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
560
|
+
slot_key: z.ZodString;
|
|
561
|
+
parking_spot: z.ZodString;
|
|
562
|
+
door: z.ZodString;
|
|
563
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
608
564
|
}, z.core.$strip>;
|
|
609
565
|
export declare const getParkingBookingDetailsResponseSchema: z.ZodObject<{
|
|
610
566
|
success: z.ZodBoolean;
|
|
@@ -631,7 +587,7 @@ export declare const getParkingBookingDetailsResponseSchema: z.ZodObject<{
|
|
|
631
587
|
transport_company: z.ZodString;
|
|
632
588
|
}, z.core.$strip>;
|
|
633
589
|
vehicle: z.ZodObject<{
|
|
634
|
-
vehicle_type: z.ZodEnum<typeof import("./
|
|
590
|
+
vehicle_type: z.ZodEnum<typeof import("./index.js").VehicleType>;
|
|
635
591
|
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
636
592
|
license_plate: z.ZodString;
|
|
637
593
|
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
@@ -643,11 +599,6 @@ export declare const getParkingBookingDetailsResponseSchema: z.ZodObject<{
|
|
|
643
599
|
venue_name: z.ZodNullable<z.ZodString>;
|
|
644
600
|
request_type: z.ZodString;
|
|
645
601
|
duration: z.ZodNumber;
|
|
646
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
647
|
-
parking_area: z.ZodObject<{
|
|
648
|
-
id: z.ZodNumber;
|
|
649
|
-
name: z.ZodString;
|
|
650
|
-
}, z.core.$strip>;
|
|
651
602
|
banner: z.ZodNullable<z.ZodObject<{
|
|
652
603
|
url: z.ZodURL;
|
|
653
604
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -660,114 +611,18 @@ export declare const getParkingBookingDetailsResponseSchema: z.ZodObject<{
|
|
|
660
611
|
updated_at: z.ZodString;
|
|
661
612
|
entry_scanned_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
662
613
|
exit_scanned_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
614
|
+
slot_key: z.ZodString;
|
|
615
|
+
parking_spot: z.ZodString;
|
|
616
|
+
door: z.ZodString;
|
|
617
|
+
parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
|
|
663
618
|
}, z.core.$strip>;
|
|
664
619
|
}, z.core.$strip>;
|
|
665
620
|
export declare const getParkingBookingDetailsByTokenBodySchema: z.ZodObject<{
|
|
666
621
|
access_token: z.ZodString;
|
|
667
622
|
}, z.core.$strip>;
|
|
668
|
-
export declare const getParkingBookingDetailsByTokenResponseSchema: z.ZodObject<{
|
|
669
|
-
success: z.ZodBoolean;
|
|
670
|
-
data: z.ZodObject<{
|
|
671
|
-
qr_token: z.ZodNullable<z.ZodString>;
|
|
672
|
-
id: z.ZodNumber;
|
|
673
|
-
booking_id: z.ZodNumber;
|
|
674
|
-
status: z.ZodString;
|
|
675
|
-
booking_date: z.ZodString;
|
|
676
|
-
start_time: z.ZodString;
|
|
677
|
-
end_time: z.ZodString;
|
|
678
|
-
company_role: z.ZodNullable<z.ZodString>;
|
|
679
|
-
company: z.ZodObject<{
|
|
680
|
-
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
681
|
-
stand_number: z.ZodString;
|
|
682
|
-
company_name: z.ZodString;
|
|
683
|
-
business: z.ZodString;
|
|
684
|
-
departure_city: z.ZodString;
|
|
685
|
-
contact_name: z.ZodString;
|
|
686
|
-
email: z.ZodEmail;
|
|
687
|
-
phone: z.ZodString;
|
|
688
|
-
driver_name: z.ZodString;
|
|
689
|
-
driver_phone: z.ZodString;
|
|
690
|
-
transport_company: z.ZodString;
|
|
691
|
-
}, z.core.$strip>;
|
|
692
|
-
vehicle: z.ZodObject<{
|
|
693
|
-
vehicle_type: z.ZodEnum<typeof import("./enums/vehicleType.js").VehicleType>;
|
|
694
|
-
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
695
|
-
license_plate: z.ZodString;
|
|
696
|
-
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
697
|
-
}, z.core.$strip>;
|
|
698
|
-
event_id: z.ZodNumber;
|
|
699
|
-
event_name: z.ZodString;
|
|
700
|
-
event_code: z.ZodString;
|
|
701
|
-
venue_id: z.ZodNullable<z.ZodNumber>;
|
|
702
|
-
venue_name: z.ZodNullable<z.ZodString>;
|
|
703
|
-
request_type: z.ZodString;
|
|
704
|
-
duration: z.ZodNumber;
|
|
705
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
706
|
-
banner: z.ZodNullable<z.ZodObject<{
|
|
707
|
-
url: z.ZodURL;
|
|
708
|
-
name: z.ZodOptional<z.ZodString>;
|
|
709
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
710
|
-
bucket: z.ZodOptional<z.ZodString>;
|
|
711
|
-
type: z.ZodOptional<z.ZodString>;
|
|
712
|
-
path: z.ZodOptional<z.ZodString>;
|
|
713
|
-
}, z.core.$strip>>;
|
|
714
|
-
created_at: z.ZodString;
|
|
715
|
-
updated_at: z.ZodString;
|
|
716
|
-
}, z.core.$strip>;
|
|
717
|
-
}, z.core.$strip>;
|
|
718
623
|
export declare const getParkingBookingDetailsByQrBodySchema: z.ZodObject<{
|
|
719
624
|
qr_token: z.ZodString;
|
|
720
625
|
}, z.core.$strip>;
|
|
721
|
-
export declare const getParkingBookingDetailsByQrResponseSchema: z.ZodObject<{
|
|
722
|
-
success: z.ZodBoolean;
|
|
723
|
-
data: z.ZodObject<{
|
|
724
|
-
qr_token: z.ZodNullable<z.ZodString>;
|
|
725
|
-
id: z.ZodNumber;
|
|
726
|
-
booking_id: z.ZodNumber;
|
|
727
|
-
status: z.ZodString;
|
|
728
|
-
booking_date: z.ZodString;
|
|
729
|
-
start_time: z.ZodString;
|
|
730
|
-
end_time: z.ZodString;
|
|
731
|
-
company_role: z.ZodNullable<z.ZodString>;
|
|
732
|
-
company: z.ZodObject<{
|
|
733
|
-
hall: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
734
|
-
stand_number: z.ZodString;
|
|
735
|
-
company_name: z.ZodString;
|
|
736
|
-
business: z.ZodString;
|
|
737
|
-
departure_city: z.ZodString;
|
|
738
|
-
contact_name: z.ZodString;
|
|
739
|
-
email: z.ZodEmail;
|
|
740
|
-
phone: z.ZodString;
|
|
741
|
-
driver_name: z.ZodString;
|
|
742
|
-
driver_phone: z.ZodString;
|
|
743
|
-
transport_company: z.ZodString;
|
|
744
|
-
}, z.core.$strip>;
|
|
745
|
-
vehicle: z.ZodObject<{
|
|
746
|
-
vehicle_type: z.ZodEnum<typeof import("./enums/vehicleType.js").VehicleType>;
|
|
747
|
-
unloading_method: z.ZodEnum<typeof UnloadingType>;
|
|
748
|
-
license_plate: z.ZodString;
|
|
749
|
-
trailer_registration: z.ZodOptional<z.ZodString>;
|
|
750
|
-
}, z.core.$strip>;
|
|
751
|
-
event_id: z.ZodNumber;
|
|
752
|
-
event_name: z.ZodString;
|
|
753
|
-
event_code: z.ZodString;
|
|
754
|
-
venue_id: z.ZodNullable<z.ZodNumber>;
|
|
755
|
-
venue_name: z.ZodNullable<z.ZodString>;
|
|
756
|
-
request_type: z.ZodString;
|
|
757
|
-
duration: z.ZodNumber;
|
|
758
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
759
|
-
banner: z.ZodNullable<z.ZodObject<{
|
|
760
|
-
url: z.ZodURL;
|
|
761
|
-
name: z.ZodOptional<z.ZodString>;
|
|
762
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
763
|
-
bucket: z.ZodOptional<z.ZodString>;
|
|
764
|
-
type: z.ZodOptional<z.ZodString>;
|
|
765
|
-
path: z.ZodOptional<z.ZodString>;
|
|
766
|
-
}, z.core.$strip>>;
|
|
767
|
-
created_at: z.ZodString;
|
|
768
|
-
updated_at: z.ZodString;
|
|
769
|
-
}, z.core.$strip>;
|
|
770
|
-
}, z.core.$strip>;
|
|
771
626
|
export declare const exportBookingDataSchema: z.ZodObject<{
|
|
772
627
|
booking_id: z.ZodNumber;
|
|
773
628
|
event_id: z.ZodNumber;
|
|
@@ -822,11 +677,10 @@ export declare const updateBookingTimeParamsSchema: z.ZodObject<{
|
|
|
822
677
|
export declare const updateBookingTimeBodySchema: z.ZodObject<{
|
|
823
678
|
booking_date: z.ZodString;
|
|
824
679
|
start_time: z.ZodString;
|
|
825
|
-
|
|
680
|
+
slot_key: z.ZodString;
|
|
826
681
|
}, z.core.$strip>;
|
|
827
682
|
export declare const updateBookingTimeDataSchema: z.ZodObject<{
|
|
828
683
|
booking_id: z.ZodNumber;
|
|
829
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
830
684
|
booking_date: z.ZodString;
|
|
831
685
|
start_time: z.ZodString;
|
|
832
686
|
end_time: z.ZodString;
|
|
@@ -838,7 +692,6 @@ export declare const updateBookingTimeResponseSchema: z.ZodObject<{
|
|
|
838
692
|
message: z.ZodString;
|
|
839
693
|
data: z.ZodObject<{
|
|
840
694
|
booking_id: z.ZodNumber;
|
|
841
|
-
parking_area_schedule_id: z.ZodNumber;
|
|
842
695
|
booking_date: z.ZodString;
|
|
843
696
|
start_time: z.ZodString;
|
|
844
697
|
end_time: z.ZodString;
|
|
@@ -852,7 +705,7 @@ export type CompanyDetails = z.infer<typeof companyDetailsSchema>;
|
|
|
852
705
|
export type VehicleDetails = z.infer<typeof vehicleDetailsSchema>;
|
|
853
706
|
export type EventBookingsData = z.infer<typeof eventBookingsDataSchema>;
|
|
854
707
|
export type CheckSlotAvailabilityBody = z.infer<typeof checkSlotAvailabilityBodySchema>;
|
|
855
|
-
export type CheckSlotAvailabilityData = z.infer<typeof
|
|
708
|
+
export type CheckSlotAvailabilityData = z.infer<typeof availableTimeSlotV2Schema>;
|
|
856
709
|
export type CheckSlotAvailabilityResponse = z.infer<typeof checkSlotAvailabilityResponseSchema>;
|
|
857
710
|
export type ParkingBookingDetailsData = z.infer<typeof parkingBookingDetailsDataSchema>;
|
|
858
711
|
export type UpdateParkingBookingBody = z.infer<typeof updateParkingBookingBodySchema>;
|
|
@@ -863,7 +716,7 @@ export type CloseEventBody = z.infer<typeof closeEventBodySchema>;
|
|
|
863
716
|
export type CloseEventData = z.infer<typeof closeEventDataSchema>;
|
|
864
717
|
export type CloseEventResponse = z.infer<typeof closeEventResponseSchema>;
|
|
865
718
|
export type EventBookingsResponse = z.infer<typeof eventBookingsResponseSchema>;
|
|
866
|
-
export type
|
|
719
|
+
export type ConfirmVehicleAccessData = z.infer<typeof confirmAccessBodySchema>;
|
|
867
720
|
export type ConfirmBookingParams = z.infer<typeof confirmBookingParamsSchema>;
|
|
868
721
|
export type ConfirmBookingResponse = z.infer<typeof confirmBookingResponseSchema>;
|
|
869
722
|
export type CreateBookingBody = z.infer<typeof createParkingBookingBodySchema>;
|
|
@@ -876,11 +729,7 @@ export type GetBookingDetailsParams = z.infer<typeof getParkingBookingDetailsPar
|
|
|
876
729
|
export type GetBookingDetailsData = z.infer<typeof parkingBookingDetailsDataSchema>;
|
|
877
730
|
export type GetBookingDetailsResponse = z.infer<typeof getParkingBookingDetailsResponseSchema>;
|
|
878
731
|
export type GetBookingDetailsByTokenBody = z.infer<typeof getParkingBookingDetailsByTokenBodySchema>;
|
|
879
|
-
export type GetBookingDetailsByTokenData = z.infer<typeof bookingDetailsDataSchema>;
|
|
880
|
-
export type GetBookingDetailsByTokenResponse = z.infer<typeof getParkingBookingDetailsByTokenResponseSchema>;
|
|
881
732
|
export type GetBookingDetailsByQrBody = z.infer<typeof getParkingBookingDetailsByQrBodySchema>;
|
|
882
|
-
export type GetBookingDetailsByQrData = z.infer<typeof bookingDetailsDataSchema>;
|
|
883
|
-
export type GetBookingDetailsByQrResponse = z.infer<typeof getParkingBookingDetailsByQrResponseSchema>;
|
|
884
733
|
export type ConfirmBookingData = z.infer<typeof confirmBookingDataSchema>;
|
|
885
734
|
export type ConfirmBookingDataResponse = z.infer<typeof confirmBookingResponseSchema>;
|
|
886
735
|
export type ExportBookingData = z.infer<typeof exportBookingDataSchema>;
|