@venulog/phasing-engine-schemas 0.10.0-alpha.0 → 0.10.0-alpha.1

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.
@@ -288,6 +288,7 @@ export declare const createParkingBookingBodySchema: z.ZodObject<{
288
288
  event_id: z.ZodNumber;
289
289
  slot_key: z.ZodString;
290
290
  parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
291
+ pm_token: z.ZodOptional<z.ZodString>;
291
292
  }, z.core.$strip>;
292
293
  export declare const createParkingBookingDataSchema: z.ZodObject<{
293
294
  id: z.ZodNumber;
@@ -312,7 +312,11 @@ export const createParkingBookingBodySchema = z
312
312
  parking_schedule_type: z.enum(ParkingAreaScheduleType).openapi({
313
313
  description: 'Type of parking area schedule',
314
314
  example: 'assembly'
315
- })
315
+ }),
316
+ pm_token: z.string().optional().openapi({
317
+ description: 'Planning management token for additional validation',
318
+ example: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...'
319
+ }),
316
320
  })
317
321
  .openapi('CreateParkingBookingBody');
318
322
  // Response schema
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venulog/phasing-engine-schemas",
3
- "version": "0.10.0-alpha.0",
3
+ "version": "0.10.0-alpha.1",
4
4
  "description": "Shared schemas and types for Phasing Engine API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",