hububb-models 1.0.110 → 1.0.111
Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,7 @@ export declare const landlordAnalytics: import("zod").ZodObject<{
|
|
5
5
|
averageReservationValue: import("zod").ZodNumber;
|
6
6
|
totalReservations: import("zod").ZodNumber;
|
7
7
|
revenueByMonth: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
|
8
|
-
reservationStatus: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
|
8
|
+
reservationStatus: import("zod").ZodArray<import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>, "many">;
|
9
9
|
occupancyRateByMonth: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
|
10
10
|
currentReservations: import("zod").ZodNumber;
|
11
11
|
upcomingReservations: import("zod").ZodNumber;
|
@@ -16,7 +16,7 @@ export declare const landlordAnalytics: import("zod").ZodObject<{
|
|
16
16
|
averageReservationValue: number;
|
17
17
|
totalReservations: number;
|
18
18
|
revenueByMonth: {};
|
19
|
-
reservationStatus: {};
|
19
|
+
reservationStatus: {}[];
|
20
20
|
occupancyRateByMonth: {};
|
21
21
|
currentReservations: number;
|
22
22
|
upcomingReservations: number;
|
@@ -27,7 +27,7 @@ export declare const landlordAnalytics: import("zod").ZodObject<{
|
|
27
27
|
averageReservationValue: number;
|
28
28
|
totalReservations: number;
|
29
29
|
revenueByMonth: {};
|
30
|
-
reservationStatus: {};
|
30
|
+
reservationStatus: {}[];
|
31
31
|
occupancyRateByMonth: {};
|
32
32
|
currentReservations: number;
|
33
33
|
upcomingReservations: number;
|
package/dist/schemas/landlord.js
CHANGED
@@ -9,7 +9,7 @@ exports.landlordAnalytics = (0, zod_1.object)({
|
|
9
9
|
averageReservationValue: (0, zod_1.number)(),
|
10
10
|
totalReservations: (0, zod_1.number)(),
|
11
11
|
revenueByMonth: (0, zod_1.object)({}),
|
12
|
-
reservationStatus: (0, zod_1.object)({}),
|
12
|
+
reservationStatus: (0, zod_1.array)((0, zod_1.object)({})),
|
13
13
|
occupancyRateByMonth: (0, zod_1.object)({}),
|
14
14
|
currentReservations: (0, zod_1.number)(),
|
15
15
|
upcomingReservations: (0, zod_1.number)(),
|