hububb-models 1.1.26 → 1.1.27
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.
@@ -657,6 +657,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
657
657
|
} | undefined;
|
658
658
|
externalId?: string | undefined;
|
659
659
|
apaleoUnitGroupId?: string | undefined;
|
660
|
+
nickname?: string | undefined;
|
660
661
|
city?: string | undefined;
|
661
662
|
guestyId?: string | undefined;
|
662
663
|
accountId?: string | undefined;
|
@@ -718,7 +719,6 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
718
719
|
aptKey?: string | undefined;
|
719
720
|
keyMethod?: "open" | "unlock" | undefined;
|
720
721
|
requestToBook?: boolean | undefined;
|
721
|
-
nickname?: string | undefined;
|
722
722
|
listingType?: "shared" | "parent" | "child" | undefined;
|
723
723
|
parentId?: string | undefined;
|
724
724
|
childIds?: string[] | undefined;
|
@@ -806,6 +806,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
806
806
|
} | undefined;
|
807
807
|
externalId?: string | undefined;
|
808
808
|
apaleoUnitGroupId?: string | undefined;
|
809
|
+
nickname?: string | undefined;
|
809
810
|
city?: string | undefined;
|
810
811
|
guestyId?: string | undefined;
|
811
812
|
accountId?: string | undefined;
|
@@ -867,7 +868,6 @@ export declare const ListingSchema: import("zod").ZodObject<{
|
|
867
868
|
aptKey?: string | undefined;
|
868
869
|
keyMethod?: "open" | "unlock" | undefined;
|
869
870
|
requestToBook?: boolean | undefined;
|
870
|
-
nickname?: string | undefined;
|
871
871
|
listingType?: "shared" | "parent" | "child" | undefined;
|
872
872
|
parentId?: string | undefined;
|
873
873
|
childIds?: string[] | undefined;
|
@@ -1097,6 +1097,7 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1097
1097
|
large?: string | undefined;
|
1098
1098
|
original?: string | undefined;
|
1099
1099
|
}[];
|
1100
|
+
nickname: string;
|
1100
1101
|
propertyType: string;
|
1101
1102
|
roomType: string;
|
1102
1103
|
accommodates: number;
|
@@ -1123,7 +1124,6 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1123
1124
|
securityDepositFee: number;
|
1124
1125
|
cleaningFee: number;
|
1125
1126
|
};
|
1126
|
-
nickname: string;
|
1127
1127
|
source?: string | undefined;
|
1128
1128
|
active?: boolean | undefined;
|
1129
1129
|
externalId?: string | undefined;
|
@@ -1173,6 +1173,7 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1173
1173
|
large?: string | undefined;
|
1174
1174
|
original?: string | undefined;
|
1175
1175
|
}[];
|
1176
|
+
nickname: string;
|
1176
1177
|
propertyType: string;
|
1177
1178
|
roomType: string;
|
1178
1179
|
accommodates: number;
|
@@ -1199,7 +1200,6 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
|
|
1199
1200
|
securityDepositFee: number;
|
1200
1201
|
cleaningFee: number;
|
1201
1202
|
};
|
1202
|
-
nickname: string;
|
1203
1203
|
source?: string | undefined;
|
1204
1204
|
active?: boolean | undefined;
|
1205
1205
|
externalId?: string | undefined;
|
@@ -90,18 +90,21 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
90
90
|
picture: import("zod").ZodString;
|
91
91
|
externalId: import("zod").ZodString;
|
92
92
|
apaleoUnitGroupId: import("zod").ZodString;
|
93
|
+
nickname: import("zod").ZodOptional<import("zod").ZodString>;
|
93
94
|
}, "strip", import("zod").ZodTypeAny, {
|
94
95
|
id: string;
|
95
96
|
picture: string;
|
96
97
|
title: string;
|
97
98
|
externalId: string;
|
98
99
|
apaleoUnitGroupId: string;
|
100
|
+
nickname?: string | undefined;
|
99
101
|
}, {
|
100
102
|
id: string;
|
101
103
|
picture: string;
|
102
104
|
title: string;
|
103
105
|
externalId: string;
|
104
106
|
apaleoUnitGroupId: string;
|
107
|
+
nickname?: string | undefined;
|
105
108
|
}>;
|
106
109
|
timeRanges: import("zod").ZodArray<import("zod").ZodObject<{
|
107
110
|
from: import("zod").ZodString;
|
@@ -120,6 +123,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
120
123
|
title: string;
|
121
124
|
externalId: string;
|
122
125
|
apaleoUnitGroupId: string;
|
126
|
+
nickname?: string | undefined;
|
123
127
|
};
|
124
128
|
timeRanges: {
|
125
129
|
from: string;
|
@@ -132,6 +136,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
132
136
|
title: string;
|
133
137
|
externalId: string;
|
134
138
|
apaleoUnitGroupId: string;
|
139
|
+
nickname?: string | undefined;
|
135
140
|
};
|
136
141
|
timeRanges: {
|
137
142
|
from: string;
|
@@ -190,6 +195,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
190
195
|
title: string;
|
191
196
|
externalId: string;
|
192
197
|
apaleoUnitGroupId: string;
|
198
|
+
nickname?: string | undefined;
|
193
199
|
};
|
194
200
|
timeRanges: {
|
195
201
|
from: string;
|
@@ -248,6 +254,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
248
254
|
title: string;
|
249
255
|
externalId: string;
|
250
256
|
apaleoUnitGroupId: string;
|
257
|
+
nickname?: string | undefined;
|
251
258
|
};
|
252
259
|
timeRanges: {
|
253
260
|
from: string;
|
@@ -33,6 +33,7 @@ const assignedListingSchema = (0, zod_1.object)({
|
|
33
33
|
picture: (0, zod_1.string)(),
|
34
34
|
externalId: (0, zod_1.string)(),
|
35
35
|
apaleoUnitGroupId: (0, zod_1.string)(),
|
36
|
+
nickname: (0, zod_1.optional)((0, zod_1.string)()),
|
36
37
|
}),
|
37
38
|
timeRanges: (0, zod_1.array)((0, zod_1.object)({
|
38
39
|
from: (0, zod_1.string)(),
|
package/dist/schemas/thread.d.ts
CHANGED
@@ -776,18 +776,21 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
776
776
|
picture: import("zod").ZodString;
|
777
777
|
externalId: import("zod").ZodString;
|
778
778
|
apaleoUnitGroupId: import("zod").ZodString;
|
779
|
+
nickname: import("zod").ZodOptional<import("zod").ZodString>;
|
779
780
|
}, "strip", import("zod").ZodTypeAny, {
|
780
781
|
id: string;
|
781
782
|
picture: string;
|
782
783
|
title: string;
|
783
784
|
externalId: string;
|
784
785
|
apaleoUnitGroupId: string;
|
786
|
+
nickname?: string | undefined;
|
785
787
|
}, {
|
786
788
|
id: string;
|
787
789
|
picture: string;
|
788
790
|
title: string;
|
789
791
|
externalId: string;
|
790
792
|
apaleoUnitGroupId: string;
|
793
|
+
nickname?: string | undefined;
|
791
794
|
}>;
|
792
795
|
timeRanges: import("zod").ZodArray<import("zod").ZodObject<{
|
793
796
|
from: import("zod").ZodString;
|
@@ -806,6 +809,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
806
809
|
title: string;
|
807
810
|
externalId: string;
|
808
811
|
apaleoUnitGroupId: string;
|
812
|
+
nickname?: string | undefined;
|
809
813
|
};
|
810
814
|
timeRanges: {
|
811
815
|
from: string;
|
@@ -818,6 +822,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
818
822
|
title: string;
|
819
823
|
externalId: string;
|
820
824
|
apaleoUnitGroupId: string;
|
825
|
+
nickname?: string | undefined;
|
821
826
|
};
|
822
827
|
timeRanges: {
|
823
828
|
from: string;
|