hububb-models 1.0.69 → 1.0.71
Sign up to get free protection for your applications and to get access to all the features.
@@ -241,6 +241,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
241
241
|
amount: number;
|
242
242
|
};
|
243
243
|
}>;
|
244
|
+
externalCode: import("zod").ZodOptional<import("zod").ZodString>;
|
244
245
|
}, "strip", import("zod").ZodTypeAny, {
|
245
246
|
id: string;
|
246
247
|
status: string;
|
@@ -328,6 +329,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
328
329
|
amount: number;
|
329
330
|
};
|
330
331
|
} | undefined;
|
332
|
+
externalCode?: string | undefined;
|
331
333
|
}, {
|
332
334
|
id: string;
|
333
335
|
status: string;
|
@@ -415,5 +417,6 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
415
417
|
amount: number;
|
416
418
|
};
|
417
419
|
} | undefined;
|
420
|
+
externalCode?: string | undefined;
|
418
421
|
}>;
|
419
422
|
export { apaleoReservationSchema };
|
@@ -80,5 +80,6 @@ const apaleoReservationSchema = (0, zod_1.object)({
|
|
80
80
|
taxDetails: (0, zod_1.array)(taxDetailSchema),
|
81
81
|
hasCityTax: (0, zod_1.boolean)(),
|
82
82
|
payableAmount: payableAmountSchema,
|
83
|
+
externalCode: (0, zod_1.string)().optional(),
|
83
84
|
});
|
84
85
|
exports.apaleoReservationSchema = apaleoReservationSchema;
|
@@ -2,6 +2,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
createdAt: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
|
4
4
|
externalId: import("zod").ZodOptional<import("zod").ZodString>;
|
5
|
+
channexId: import("zod").ZodOptional<import("zod").ZodString>;
|
5
6
|
checkIn: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
|
6
7
|
checkOut: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
|
7
8
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -85,6 +86,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
85
86
|
status?: string | undefined;
|
86
87
|
createdAt?: import("@firebase/firestore").Timestamp | undefined;
|
87
88
|
externalId?: string | undefined;
|
89
|
+
channexId?: string | undefined;
|
88
90
|
checkIn?: import("@firebase/firestore").Timestamp | undefined;
|
89
91
|
checkOut?: import("@firebase/firestore").Timestamp | undefined;
|
90
92
|
statusDescription?: string | undefined;
|
@@ -122,6 +124,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
122
124
|
status?: string | undefined;
|
123
125
|
createdAt?: import("@firebase/firestore").Timestamp | undefined;
|
124
126
|
externalId?: string | undefined;
|
127
|
+
channexId?: string | undefined;
|
125
128
|
checkIn?: import("@firebase/firestore").Timestamp | undefined;
|
126
129
|
checkOut?: import("@firebase/firestore").Timestamp | undefined;
|
127
130
|
statusDescription?: string | undefined;
|
@@ -28,6 +28,7 @@ exports.ReservationSchema = (0, zod_1.object)({
|
|
28
28
|
id: (0, zod_1.string)(),
|
29
29
|
createdAt: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
30
30
|
externalId: (0, zod_1.optional)((0, zod_1.string)()),
|
31
|
+
channexId: (0, zod_1.optional)((0, zod_1.string)()),
|
31
32
|
checkIn: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
32
33
|
checkOut: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
33
34
|
status: (0, zod_1.optional)((0, zod_1.string)()),
|