hububb-models 1.0.63 → 1.0.64
Sign up to get free protection for your applications and to get access to all the features.
@@ -7,7 +7,7 @@ export declare const calendarEntrySchema: import("zod").ZodObject<{
|
|
7
7
|
base_price: import("zod").ZodNumber;
|
8
8
|
note: import("zod").ZodNullable<import("zod").ZodString>;
|
9
9
|
reservation_id: import("zod").ZodNullable<import("zod").ZodNumber>;
|
10
|
-
listing_id: import("zod").
|
10
|
+
listing_id: import("zod").ZodString;
|
11
11
|
auto_pricing: import("zod").ZodNumber;
|
12
12
|
}, "strip", import("zod").ZodTypeAny, {
|
13
13
|
id: number;
|
@@ -18,7 +18,7 @@ export declare const calendarEntrySchema: import("zod").ZodObject<{
|
|
18
18
|
base_price: number;
|
19
19
|
note: string | null;
|
20
20
|
reservation_id: number | null;
|
21
|
-
listing_id:
|
21
|
+
listing_id: string;
|
22
22
|
auto_pricing: number;
|
23
23
|
}, {
|
24
24
|
id: number;
|
@@ -29,7 +29,7 @@ export declare const calendarEntrySchema: import("zod").ZodObject<{
|
|
29
29
|
base_price: number;
|
30
30
|
note: string | null;
|
31
31
|
reservation_id: number | null;
|
32
|
-
listing_id:
|
32
|
+
listing_id: string;
|
33
33
|
auto_pricing: number;
|
34
34
|
}>;
|
35
35
|
export declare const calendarSchema: import("zod").ZodArray<import("zod").ZodObject<{
|
@@ -41,7 +41,7 @@ export declare const calendarSchema: import("zod").ZodArray<import("zod").ZodObj
|
|
41
41
|
base_price: import("zod").ZodNumber;
|
42
42
|
note: import("zod").ZodNullable<import("zod").ZodString>;
|
43
43
|
reservation_id: import("zod").ZodNullable<import("zod").ZodNumber>;
|
44
|
-
listing_id: import("zod").
|
44
|
+
listing_id: import("zod").ZodString;
|
45
45
|
auto_pricing: import("zod").ZodNumber;
|
46
46
|
}, "strip", import("zod").ZodTypeAny, {
|
47
47
|
id: number;
|
@@ -52,7 +52,7 @@ export declare const calendarSchema: import("zod").ZodArray<import("zod").ZodObj
|
|
52
52
|
base_price: number;
|
53
53
|
note: string | null;
|
54
54
|
reservation_id: number | null;
|
55
|
-
listing_id:
|
55
|
+
listing_id: string;
|
56
56
|
auto_pricing: number;
|
57
57
|
}, {
|
58
58
|
id: number;
|
@@ -63,6 +63,6 @@ export declare const calendarSchema: import("zod").ZodArray<import("zod").ZodObj
|
|
63
63
|
base_price: number;
|
64
64
|
note: string | null;
|
65
65
|
reservation_id: number | null;
|
66
|
-
listing_id:
|
66
|
+
listing_id: string;
|
67
67
|
auto_pricing: number;
|
68
68
|
}>, "many">;
|
package/dist/schemas/calendar.js
CHANGED
@@ -11,7 +11,7 @@ exports.calendarEntrySchema = (0, zod_1.object)({
|
|
11
11
|
base_price: (0, zod_1.number)(),
|
12
12
|
note: (0, zod_1.string)().nullable(),
|
13
13
|
reservation_id: (0, zod_1.number)().nullable(),
|
14
|
-
listing_id: (0, zod_1.
|
14
|
+
listing_id: (0, zod_1.string)(),
|
15
15
|
auto_pricing: (0, zod_1.number)().int(),
|
16
16
|
});
|
17
17
|
exports.calendarSchema = (0, zod_1.array)(exports.calendarEntrySchema);
|