hububb-models 1.0.83 → 1.0.84

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.
@@ -1,5 +1,7 @@
1
1
  import { infer, z } from "zod";
2
- import { ReservationSchema, reservationCreateSchema } from "../schemas/reservation";
2
+ import { ReservationSchema, paymentCreateSchema, reservationCreateSchema } from "../schemas/reservation";
3
3
  export type Reservation = z.infer<typeof ReservationSchema>;
4
4
  export interface ReservationCreateSchema extends infer<typeof reservationCreateSchema> {
5
5
  }
6
+ export interface PaymentCreateSchema extends infer<typeof paymentCreateSchema> {
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",