@venulog/phasing-engine-schemas 0.15.4-alpha.0 → 0.15.4-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.
package/dist/parkingBooking.d.ts
CHANGED
|
@@ -889,6 +889,7 @@ export declare const exportBookingDataSchema: z.ZodObject<{
|
|
|
889
889
|
parking_schedule_type: z.ZodNullable<z.ZodString>;
|
|
890
890
|
slot_key: z.ZodNullable<z.ZodString>;
|
|
891
891
|
is_custom_slot: z.ZodNullable<z.ZodBoolean>;
|
|
892
|
+
is_fast_track_access: z.ZodNullable<z.ZodBoolean>;
|
|
892
893
|
company_hall: z.ZodNullable<z.ZodString>;
|
|
893
894
|
company_stand_number: z.ZodNullable<z.ZodString>;
|
|
894
895
|
company_name: z.ZodNullable<z.ZodString>;
|
|
@@ -933,6 +934,7 @@ export declare const exportBookingsDataSchema: z.ZodObject<{
|
|
|
933
934
|
parking_schedule_type: z.ZodNullable<z.ZodString>;
|
|
934
935
|
slot_key: z.ZodNullable<z.ZodString>;
|
|
935
936
|
is_custom_slot: z.ZodNullable<z.ZodBoolean>;
|
|
937
|
+
is_fast_track_access: z.ZodNullable<z.ZodBoolean>;
|
|
936
938
|
company_hall: z.ZodNullable<z.ZodString>;
|
|
937
939
|
company_stand_number: z.ZodNullable<z.ZodString>;
|
|
938
940
|
company_name: z.ZodNullable<z.ZodString>;
|
|
@@ -978,6 +980,7 @@ export declare const exportBookingsResponseSchema: z.ZodObject<{
|
|
|
978
980
|
parking_schedule_type: z.ZodNullable<z.ZodString>;
|
|
979
981
|
slot_key: z.ZodNullable<z.ZodString>;
|
|
980
982
|
is_custom_slot: z.ZodNullable<z.ZodBoolean>;
|
|
983
|
+
is_fast_track_access: z.ZodNullable<z.ZodBoolean>;
|
|
981
984
|
company_hall: z.ZodNullable<z.ZodString>;
|
|
982
985
|
company_stand_number: z.ZodNullable<z.ZodString>;
|
|
983
986
|
company_name: z.ZodNullable<z.ZodString>;
|
package/dist/parkingBooking.js
CHANGED
|
@@ -896,6 +896,10 @@ export const exportBookingDataSchema = z
|
|
|
896
896
|
description: 'Whether the booking uses a custom time slot',
|
|
897
897
|
example: false
|
|
898
898
|
}),
|
|
899
|
+
is_fast_track_access: z.boolean().nullable().openapi({
|
|
900
|
+
description: 'Whether the booking has fast track access',
|
|
901
|
+
example: false
|
|
902
|
+
}),
|
|
899
903
|
// Flattened company fields
|
|
900
904
|
company_hall: z.string().nullable().openapi({
|
|
901
905
|
description: 'Hall location',
|