@venulog/phasing-engine-schemas 0.13.1 → 0.13.2

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.
@@ -515,6 +515,7 @@ export declare const parkingBookingWithRelationsSchema: z.ZodObject<{
515
515
  banner: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
516
516
  latitude: z.ZodNullable<z.ZodNumber>;
517
517
  longitude: z.ZodNullable<z.ZodNumber>;
518
+ door: z.ZodNullable<z.ZodString>;
518
519
  venues: z.ZodNullable<z.ZodObject<{
519
520
  id: z.ZodNumber;
520
521
  name: z.ZodString;
@@ -522,7 +523,6 @@ export declare const parkingBookingWithRelationsSchema: z.ZodObject<{
522
523
  }, z.core.$strip>>;
523
524
  }, z.core.$strip>;
524
525
  parking_spot: z.ZodString;
525
- door: z.ZodString;
526
526
  parking_schedule_type: z.ZodEnum<typeof ParkingAreaScheduleType>;
527
527
  slot_key: z.ZodNullable<z.ZodString>;
528
528
  entry_scanned_at: z.ZodNullable<z.ZodString>;
@@ -503,6 +503,7 @@ export const parkingBookingWithRelationsSchema = z
503
503
  banner: z.record(z.string(), z.unknown()).nullable(),
504
504
  latitude: z.number().nullable(),
505
505
  longitude: z.number().nullable(),
506
+ door: z.string().nullable(),
506
507
  venues: z
507
508
  .object({
508
509
  id: z.number(),
@@ -512,7 +513,6 @@ export const parkingBookingWithRelationsSchema = z
512
513
  .nullable()
513
514
  }),
514
515
  parking_spot: z.string(),
515
- door: z.string(),
516
516
  parking_schedule_type: z.enum(ParkingAreaScheduleType),
517
517
  slot_key: z.string().nullable(),
518
518
  entry_scanned_at: z.string().nullable(),
@@ -661,7 +661,7 @@ export const parkingBookingDetailsDataSchema = z
661
661
  is_custom_slot: z.boolean().openapi({
662
662
  description: 'Indicates if the booking is for a custom time slot',
663
663
  example: false
664
- })
664
+ }),
665
665
  })
666
666
  .openapi('ParkingBookingDetailsData');
667
667
  export const getParkingBookingDetailsResponseSchema = createSuccessResponseSchema(parkingBookingDetailsDataSchema, 'GetParkingBookingDetailsResponse', 'Booking details with access pass information');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venulog/phasing-engine-schemas",
3
- "version": "0.13.1",
3
+ "version": "0.13.2",
4
4
  "description": "Shared schemas and types for Phasing Engine API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",