hububb-models 1.0.83 → 1.0.84

Sign up to get free protection for your applications and to get access to all the features.
@@ -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",