@venulog/phasing-engine-schemas 0.7.4 → 0.7.5
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/parkingArea.d.ts +0 -2
- package/dist/parkingArea.js +0 -8
- package/package.json +1 -1
package/dist/parkingArea.d.ts
CHANGED
|
@@ -556,7 +556,6 @@ export declare const getAvailableParkingAreaSlotsQuerySchema: z.ZodObject<{
|
|
|
556
556
|
event_id: z.ZodNumber;
|
|
557
557
|
year: z.ZodCoercedNumber<unknown>;
|
|
558
558
|
month: z.ZodCoercedNumber<unknown>;
|
|
559
|
-
parking_area_id: z.ZodNumber;
|
|
560
559
|
company_role: z.ZodString;
|
|
561
560
|
schedule_type: z.ZodOptional<z.ZodEnum<{
|
|
562
561
|
assembly: "assembly";
|
|
@@ -626,7 +625,6 @@ export declare const getAvailableSlotsBodySchema: z.ZodObject<{
|
|
|
626
625
|
assembly: "assembly";
|
|
627
626
|
dismantling: "dismantling";
|
|
628
627
|
}>>;
|
|
629
|
-
parking_area_id: z.ZodNumber;
|
|
630
628
|
}, z.core.$strip>;
|
|
631
629
|
export declare const availableTimeSlotSchema: z.ZodObject<{
|
|
632
630
|
parking_area_schedule_id: z.ZodNumber;
|
package/dist/parkingArea.js
CHANGED
|
@@ -713,10 +713,6 @@ export const getAvailableParkingAreaSlotsQuerySchema = z
|
|
|
713
713
|
description: 'Month for filtering slots (1-12)',
|
|
714
714
|
example: '6'
|
|
715
715
|
}),
|
|
716
|
-
parking_area_id: z.number().nonnegative().openapi({
|
|
717
|
-
description: 'The ID of the parking area',
|
|
718
|
-
example: '1'
|
|
719
|
-
}),
|
|
720
716
|
company_role: z.string().min(1, 'Company role is required').openapi({
|
|
721
717
|
description: 'Company role to filter schedules by',
|
|
722
718
|
example: 'exhibitor'
|
|
@@ -852,10 +848,6 @@ export const getAvailableSlotsBodySchema = z
|
|
|
852
848
|
schedule_type: z.enum(['assembly', 'dismantling']).optional().openapi({
|
|
853
849
|
description: 'Filter by schedule type',
|
|
854
850
|
example: 'assembly'
|
|
855
|
-
}),
|
|
856
|
-
parking_area_id: z.number().min(1, 'Parking area ID is required').openapi({
|
|
857
|
-
description: 'Parking area ID to check availability for',
|
|
858
|
-
example: 1
|
|
859
851
|
})
|
|
860
852
|
})
|
|
861
853
|
.openapi('GetAvailableSlotsBody');
|