hububb-models 1.0.95 → 1.0.96

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,16 +13,19 @@ export declare const ReservationSchema: import("zod").ZodObject<{
13
13
  fullName: import("zod").ZodOptional<import("zod").ZodString>;
14
14
  email: import("zod").ZodOptional<import("zod").ZodString>;
15
15
  ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
16
+ phone: import("zod").ZodOptional<import("zod").ZodString>;
16
17
  }, "strip", import("zod").ZodTypeAny, {
17
18
  id?: string | undefined;
18
19
  email?: string | undefined;
19
20
  fullName?: string | undefined;
21
+ phone?: string | undefined;
20
22
  externalId?: string | undefined;
21
23
  ids?: string[] | undefined;
22
24
  }, {
23
25
  id?: string | undefined;
24
26
  email?: string | undefined;
25
27
  fullName?: string | undefined;
28
+ phone?: string | undefined;
26
29
  externalId?: string | undefined;
27
30
  ids?: string[] | undefined;
28
31
  }>>;
@@ -94,6 +97,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
94
97
  id?: string | undefined;
95
98
  email?: string | undefined;
96
99
  fullName?: string | undefined;
100
+ phone?: string | undefined;
97
101
  externalId?: string | undefined;
98
102
  ids?: string[] | undefined;
99
103
  } | undefined;
@@ -132,6 +136,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
132
136
  id?: string | undefined;
133
137
  email?: string | undefined;
134
138
  fullName?: string | undefined;
139
+ phone?: string | undefined;
135
140
  externalId?: string | undefined;
136
141
  ids?: string[] | undefined;
137
142
  } | undefined;
@@ -9,6 +9,7 @@ const GuestSchema = (0, zod_1.object)({
9
9
  fullName: (0, zod_1.optional)((0, zod_1.string)()),
10
10
  email: (0, zod_1.optional)((0, zod_1.string)()),
11
11
  ids: (0, zod_1.optional)((0, zod_1.array)((0, zod_1.string)())),
12
+ phone: (0, zod_1.optional)((0, zod_1.string)()),
12
13
  });
13
14
  const ListingSchema = (0, zod_1.object)({
14
15
  id: (0, zod_1.optional)((0, zod_1.string)()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",