hububb-models 1.0.113 → 1.0.114
Sign up to get free protection for your applications and to get access to all the features.
@@ -14,6 +14,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
14
14
|
email: import("zod").ZodOptional<import("zod").ZodString>;
|
15
15
|
ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
16
16
|
phone: import("zod").ZodOptional<import("zod").ZodString>;
|
17
|
+
avatarUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
17
18
|
}, "strip", import("zod").ZodTypeAny, {
|
18
19
|
id?: string | undefined;
|
19
20
|
email?: string | undefined;
|
@@ -21,6 +22,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
21
22
|
fullName?: string | undefined;
|
22
23
|
externalId?: string | undefined;
|
23
24
|
ids?: string[] | undefined;
|
25
|
+
avatarUrl?: string | undefined;
|
24
26
|
}, {
|
25
27
|
id?: string | undefined;
|
26
28
|
email?: string | undefined;
|
@@ -28,6 +30,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
28
30
|
fullName?: string | undefined;
|
29
31
|
externalId?: string | undefined;
|
30
32
|
ids?: string[] | undefined;
|
33
|
+
avatarUrl?: string | undefined;
|
31
34
|
}>>;
|
32
35
|
listing: import("zod").ZodOptional<import("zod").ZodObject<{
|
33
36
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -102,6 +105,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
102
105
|
fullName?: string | undefined;
|
103
106
|
externalId?: string | undefined;
|
104
107
|
ids?: string[] | undefined;
|
108
|
+
avatarUrl?: string | undefined;
|
105
109
|
} | undefined;
|
106
110
|
klevio?: {
|
107
111
|
keyId?: string | undefined;
|
@@ -143,6 +147,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
143
147
|
fullName?: string | undefined;
|
144
148
|
externalId?: string | undefined;
|
145
149
|
ids?: string[] | undefined;
|
150
|
+
avatarUrl?: string | undefined;
|
146
151
|
} | undefined;
|
147
152
|
klevio?: {
|
148
153
|
keyId?: string | undefined;
|
@@ -10,6 +10,7 @@ const GuestSchema = (0, zod_1.object)({
|
|
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
12
|
phone: (0, zod_1.optional)((0, zod_1.string)()),
|
13
|
+
avatarUrl: (0, zod_1.optional)((0, zod_1.string)()),
|
13
14
|
});
|
14
15
|
const ListingSchema = (0, zod_1.object)({
|
15
16
|
id: (0, zod_1.optional)((0, zod_1.string)()),
|