hububb-models 1.1.18 → 1.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/listing.d.ts +40 -0
- package/dist/schemas/listing.js +8 -0
- package/package.json +1 -1
@@ -537,18 +537,42 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
537
537
|
checkInInstructions: import("zod").ZodOptional<import("zod").ZodString>;
|
538
538
|
checkOutInstructions: import("zod").ZodOptional<import("zod").ZodString>;
|
539
539
|
checkInAgent: import("zod").ZodOptional<import("zod").ZodString>;
|
540
|
+
checkInMethod: import("zod").ZodOptional<import("zod").ZodString>;
|
541
|
+
rubbishCollection: import("zod").ZodOptional<import("zod").ZodString>;
|
542
|
+
noSmokingFee: import("zod").ZodOptional<import("zod").ZodNumber>;
|
543
|
+
noPartyingFee: import("zod").ZodOptional<import("zod").ZodNumber>;
|
544
|
+
noAnnouncedGuestsFee: import("zod").ZodOptional<import("zod").ZodNumber>;
|
545
|
+
houseManual: import("zod").ZodOptional<import("zod").ZodString>;
|
546
|
+
communalCleanSchedule: import("zod").ZodOptional<import("zod").ZodString>;
|
547
|
+
parkingSpace: import("zod").ZodOptional<import("zod").ZodString>;
|
540
548
|
}, "strip", import("zod").ZodTypeAny, {
|
541
549
|
wifiName?: string | undefined;
|
542
550
|
wifiPassword?: string | undefined;
|
543
551
|
checkInInstructions?: string | undefined;
|
544
552
|
checkOutInstructions?: string | undefined;
|
545
553
|
checkInAgent?: string | undefined;
|
554
|
+
checkInMethod?: string | undefined;
|
555
|
+
rubbishCollection?: string | undefined;
|
556
|
+
noSmokingFee?: number | undefined;
|
557
|
+
noPartyingFee?: number | undefined;
|
558
|
+
noAnnouncedGuestsFee?: number | undefined;
|
559
|
+
houseManual?: string | undefined;
|
560
|
+
communalCleanSchedule?: string | undefined;
|
561
|
+
parkingSpace?: string | undefined;
|
546
562
|
}, {
|
547
563
|
wifiName?: string | undefined;
|
548
564
|
wifiPassword?: string | undefined;
|
549
565
|
checkInInstructions?: string | undefined;
|
550
566
|
checkOutInstructions?: string | undefined;
|
551
567
|
checkInAgent?: string | undefined;
|
568
|
+
checkInMethod?: string | undefined;
|
569
|
+
rubbishCollection?: string | undefined;
|
570
|
+
noSmokingFee?: number | undefined;
|
571
|
+
noPartyingFee?: number | undefined;
|
572
|
+
noAnnouncedGuestsFee?: number | undefined;
|
573
|
+
houseManual?: string | undefined;
|
574
|
+
communalCleanSchedule?: string | undefined;
|
575
|
+
parkingSpace?: string | undefined;
|
552
576
|
}>>;
|
553
577
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
554
578
|
channexPropertyId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -622,6 +646,14 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
622
646
|
checkInInstructions?: string | undefined;
|
623
647
|
checkOutInstructions?: string | undefined;
|
624
648
|
checkInAgent?: string | undefined;
|
649
|
+
checkInMethod?: string | undefined;
|
650
|
+
rubbishCollection?: string | undefined;
|
651
|
+
noSmokingFee?: number | undefined;
|
652
|
+
noPartyingFee?: number | undefined;
|
653
|
+
noAnnouncedGuestsFee?: number | undefined;
|
654
|
+
houseManual?: string | undefined;
|
655
|
+
communalCleanSchedule?: string | undefined;
|
656
|
+
parkingSpace?: string | undefined;
|
625
657
|
} | undefined;
|
626
658
|
externalId?: string | undefined;
|
627
659
|
city?: string | undefined;
|
@@ -763,6 +795,14 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
763
795
|
checkInInstructions?: string | undefined;
|
764
796
|
checkOutInstructions?: string | undefined;
|
765
797
|
checkInAgent?: string | undefined;
|
798
|
+
checkInMethod?: string | undefined;
|
799
|
+
rubbishCollection?: string | undefined;
|
800
|
+
noSmokingFee?: number | undefined;
|
801
|
+
noPartyingFee?: number | undefined;
|
802
|
+
noAnnouncedGuestsFee?: number | undefined;
|
803
|
+
houseManual?: string | undefined;
|
804
|
+
communalCleanSchedule?: string | undefined;
|
805
|
+
parkingSpace?: string | undefined;
|
766
806
|
} | undefined;
|
767
807
|
externalId?: string | undefined;
|
768
808
|
city?: string | undefined;
|
package/dist/schemas/listing.js
CHANGED
@@ -131,6 +131,14 @@ exports.ListingSchema = (0, zod_1.object)({
|
|
131
131
|
checkInInstructions: (0, zod_1.optional)((0, zod_1.string)()),
|
132
132
|
checkOutInstructions: (0, zod_1.optional)((0, zod_1.string)()),
|
133
133
|
checkInAgent: (0, zod_1.optional)((0, zod_1.string)()),
|
134
|
+
checkInMethod: (0, zod_1.optional)((0, zod_1.string)()),
|
135
|
+
rubbishCollection: (0, zod_1.optional)((0, zod_1.string)()),
|
136
|
+
noSmokingFee: (0, zod_1.optional)((0, zod_1.number)()),
|
137
|
+
noPartyingFee: (0, zod_1.optional)((0, zod_1.number)()),
|
138
|
+
noAnnouncedGuestsFee: (0, zod_1.optional)((0, zod_1.number)()),
|
139
|
+
houseManual: (0, zod_1.optional)((0, zod_1.string)()),
|
140
|
+
communalCleanSchedule: (0, zod_1.optional)((0, zod_1.string)()),
|
141
|
+
parkingSpace: (0, zod_1.optional)((0, zod_1.string)()),
|
134
142
|
})),
|
135
143
|
source: (0, zod_1.optional)((0, zod_1.string)()),
|
136
144
|
channexPropertyId: (0, zod_1.optional)((0, zod_1.string)()),
|