@venulog/phasing-engine-schemas 0.12.0-alpha.3 → 0.12.0-alpha.4
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
CHANGED
|
@@ -421,6 +421,7 @@ export declare const updateParkingBookingDataSchema: z.ZodObject<{
|
|
|
421
421
|
}, z.core.$strip>;
|
|
422
422
|
updated_at: z.ZodString;
|
|
423
423
|
updated_by: z.ZodNullable<z.ZodString>;
|
|
424
|
+
status: z.ZodString;
|
|
424
425
|
}, z.core.$strip>;
|
|
425
426
|
export declare const updateParkingBookingResponseSchema: z.ZodObject<{
|
|
426
427
|
success: z.ZodBoolean;
|
|
@@ -449,6 +450,7 @@ export declare const updateParkingBookingResponseSchema: z.ZodObject<{
|
|
|
449
450
|
}, z.core.$strip>;
|
|
450
451
|
updated_at: z.ZodString;
|
|
451
452
|
updated_by: z.ZodNullable<z.ZodString>;
|
|
453
|
+
status: z.ZodString;
|
|
452
454
|
}, z.core.$strip>;
|
|
453
455
|
}, z.core.$strip>;
|
|
454
456
|
export declare const confirmBookingParamsSchema: z.ZodObject<{
|
package/dist/parkingBooking.js
CHANGED
|
@@ -415,7 +415,8 @@ export const updateParkingBookingDataSchema = z
|
|
|
415
415
|
updated_by: z.string().nullable().openapi({
|
|
416
416
|
description: 'ID of the user who updated the booking',
|
|
417
417
|
example: 'user-123'
|
|
418
|
-
})
|
|
418
|
+
}),
|
|
419
|
+
status: z.string()
|
|
419
420
|
})
|
|
420
421
|
.openapi('UpdateParkingBookingData');
|
|
421
422
|
export const updateParkingBookingResponseSchema = createMessageDataResponseSchema(updateParkingBookingDataSchema, 'UpdateParkingBookingResponse', 'Parking booking updated successfully', 'Details of the updated booking');
|