@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.
@@ -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<{
@@ -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');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venulog/phasing-engine-schemas",
3
- "version": "0.12.0-alpha.3",
3
+ "version": "0.12.0-alpha.4",
4
4
  "description": "Shared schemas and types for Phasing Engine API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",