hububb-models 1.0.60 → 1.0.62

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. package/dist/helpers/index.d.ts +3 -0
  2. package/dist/helpers/index.js +6 -0
  3. package/dist/index.d.ts +10 -0
  4. package/dist/index.js +26 -0
  5. package/dist/models/blog.d.ts +3 -0
  6. package/dist/models/blog.js +2 -0
  7. package/dist/models/listing.d.ts +6 -0
  8. package/dist/models/listing.js +2 -0
  9. package/dist/models/reservation.d.ts +3 -0
  10. package/dist/models/reservation.js +2 -0
  11. package/dist/models/thread.d.ts +4 -0
  12. package/dist/models/thread.js +2 -0
  13. package/dist/models/user.d.ts +3 -0
  14. package/dist/models/user.js +2 -0
  15. package/dist/schemas/blog.d.ts +102 -0
  16. package/dist/schemas/blog.js +33 -0
  17. package/dist/schemas/listing.d.ts +758 -0
  18. package/dist/schemas/listing.js +122 -0
  19. package/dist/schemas/reservation.d.ts +148 -0
  20. package/dist/schemas/reservation.js +46 -0
  21. package/dist/schemas/thread.d.ts +779 -0
  22. package/dist/schemas/thread.js +27 -0
  23. package/dist/schemas/user.d.ts +148 -0
  24. package/dist/schemas/user.js +42 -0
  25. package/package.json +17 -8
  26. package/src/index.d.ts +0 -6
  27. package/src/index.js +0 -2
  28. package/src/index.ts +0 -9
  29. package/src/models/blog/blog.d.ts +0 -25
  30. package/src/models/blog/blog.js +0 -2
  31. package/src/models/blog/blog.ts +0 -26
  32. package/src/models/listing/listing.d.ts +0 -117
  33. package/src/models/listing/listing.js +0 -2
  34. package/src/models/listing/listing.ts +0 -121
  35. package/src/models/reservation/reservation.d.ts +0 -39
  36. package/src/models/reservation/reservation.js +0 -2
  37. package/src/models/reservation/reservation.ts +0 -40
  38. package/src/models/thread/message.d.ts +0 -15
  39. package/src/models/thread/message.js +0 -2
  40. package/src/models/thread/message.ts +0 -16
  41. package/src/models/thread/thread.d.ts +0 -12
  42. package/src/models/thread/thread.js +0 -2
  43. package/src/models/thread/thread.ts +0 -13
  44. package/src/models/user/user.d.ts +0 -30
  45. package/src/models/user/user.js +0 -2
  46. package/src/models/user/user.ts +0 -30
  47. package/tsconfig.json +0 -10
@@ -0,0 +1,758 @@
1
+ export declare const AddressSchema: import("zod").ZodObject<{
2
+ full: import("zod").ZodString;
3
+ lng: import("zod").ZodNumber;
4
+ lat: import("zod").ZodNumber;
5
+ street: import("zod").ZodString;
6
+ city: import("zod").ZodString;
7
+ country: import("zod").ZodString;
8
+ state: import("zod").ZodOptional<import("zod").ZodString>;
9
+ zipcode: import("zod").ZodOptional<import("zod").ZodString>;
10
+ }, "strip", import("zod").ZodTypeAny, {
11
+ full: string;
12
+ country: string;
13
+ lng: number;
14
+ lat: number;
15
+ street: string;
16
+ city: string;
17
+ state?: string | undefined;
18
+ zipcode?: string | undefined;
19
+ }, {
20
+ full: string;
21
+ country: string;
22
+ lng: number;
23
+ lat: number;
24
+ street: string;
25
+ city: string;
26
+ state?: string | undefined;
27
+ zipcode?: string | undefined;
28
+ }>;
29
+ export declare const PictureSchema: import("zod").ZodObject<{
30
+ regular: import("zod").ZodOptional<import("zod").ZodString>;
31
+ thumbnail: import("zod").ZodOptional<import("zod").ZodString>;
32
+ large: import("zod").ZodOptional<import("zod").ZodString>;
33
+ caption: import("zod").ZodOptional<import("zod").ZodString>;
34
+ original: import("zod").ZodOptional<import("zod").ZodString>;
35
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
36
+ size: import("zod").ZodOptional<import("zod").ZodNumber>;
37
+ width: import("zod").ZodOptional<import("zod").ZodNumber>;
38
+ }, "strip", import("zod").ZodTypeAny, {
39
+ height?: number | undefined;
40
+ width?: number | undefined;
41
+ caption?: string | undefined;
42
+ size?: number | undefined;
43
+ regular?: string | undefined;
44
+ thumbnail?: string | undefined;
45
+ large?: string | undefined;
46
+ original?: string | undefined;
47
+ }, {
48
+ height?: number | undefined;
49
+ width?: number | undefined;
50
+ caption?: string | undefined;
51
+ size?: number | undefined;
52
+ regular?: string | undefined;
53
+ thumbnail?: string | undefined;
54
+ large?: string | undefined;
55
+ original?: string | undefined;
56
+ }>;
57
+ export declare const DoorSchema: import("zod").ZodObject<{
58
+ id: import("zod").ZodOptional<import("zod").ZodString>;
59
+ method: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"unlock">, import("zod").ZodLiteral<"open">]>>;
60
+ }, "strip", import("zod").ZodTypeAny, {
61
+ id?: string | undefined;
62
+ method?: "open" | "unlock" | undefined;
63
+ }, {
64
+ id?: string | undefined;
65
+ method?: "open" | "unlock" | undefined;
66
+ }>;
67
+ export declare const PaymentProvidersSchema: import("zod").ZodObject<{
68
+ stripe: import("zod").ZodObject<{
69
+ active: import("zod").ZodBoolean;
70
+ status: import("zod").ZodString;
71
+ accountName: import("zod").ZodString;
72
+ defaultCurrency: import("zod").ZodString;
73
+ syncedAt: import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>;
74
+ payload: import("zod").ZodObject<{
75
+ id: import("zod").ZodString;
76
+ livemode: import("zod").ZodBoolean;
77
+ token_type: import("zod").ZodString;
78
+ stripe_publishable_key: import("zod").ZodString;
79
+ stripe_user_id: import("zod").ZodString;
80
+ scope: import("zod").ZodString;
81
+ }, "strip", import("zod").ZodTypeAny, {
82
+ id: string;
83
+ livemode: boolean;
84
+ token_type: string;
85
+ stripe_publishable_key: string;
86
+ stripe_user_id: string;
87
+ scope: string;
88
+ }, {
89
+ id: string;
90
+ livemode: boolean;
91
+ token_type: string;
92
+ stripe_publishable_key: string;
93
+ stripe_user_id: string;
94
+ scope: string;
95
+ }>;
96
+ }, "strip", import("zod").ZodTypeAny, {
97
+ active: boolean;
98
+ status: string;
99
+ accountName: string;
100
+ defaultCurrency: string;
101
+ syncedAt: import("@firebase/firestore").Timestamp;
102
+ payload: {
103
+ id: string;
104
+ livemode: boolean;
105
+ token_type: string;
106
+ stripe_publishable_key: string;
107
+ stripe_user_id: string;
108
+ scope: string;
109
+ };
110
+ }, {
111
+ active: boolean;
112
+ status: string;
113
+ accountName: string;
114
+ defaultCurrency: string;
115
+ syncedAt: import("@firebase/firestore").Timestamp;
116
+ payload: {
117
+ id: string;
118
+ livemode: boolean;
119
+ token_type: string;
120
+ stripe_publishable_key: string;
121
+ stripe_user_id: string;
122
+ scope: string;
123
+ };
124
+ }>;
125
+ }, "strip", import("zod").ZodTypeAny, {
126
+ stripe: {
127
+ active: boolean;
128
+ status: string;
129
+ accountName: string;
130
+ defaultCurrency: string;
131
+ syncedAt: import("@firebase/firestore").Timestamp;
132
+ payload: {
133
+ id: string;
134
+ livemode: boolean;
135
+ token_type: string;
136
+ stripe_publishable_key: string;
137
+ stripe_user_id: string;
138
+ scope: string;
139
+ };
140
+ };
141
+ }, {
142
+ stripe: {
143
+ active: boolean;
144
+ status: string;
145
+ accountName: string;
146
+ defaultCurrency: string;
147
+ syncedAt: import("@firebase/firestore").Timestamp;
148
+ payload: {
149
+ id: string;
150
+ livemode: boolean;
151
+ token_type: string;
152
+ stripe_publishable_key: string;
153
+ stripe_user_id: string;
154
+ scope: string;
155
+ };
156
+ };
157
+ }>;
158
+ export declare const ListingSchema: import("zod").ZodObject<{
159
+ id: import("zod").ZodOptional<import("zod").ZodString>;
160
+ _geo: import("zod").ZodObject<{
161
+ lat: import("zod").ZodNumber;
162
+ lng: import("zod").ZodNumber;
163
+ }, "strip", import("zod").ZodTypeAny, {
164
+ lng: number;
165
+ lat: number;
166
+ }, {
167
+ lng: number;
168
+ lat: number;
169
+ }>;
170
+ guestyId: import("zod").ZodOptional<import("zod").ZodString>;
171
+ accountId: import("zod").ZodOptional<import("zod").ZodString>;
172
+ createdAt: import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>;
173
+ isVirtual: import("zod").ZodOptional<import("zod").ZodBoolean>;
174
+ isListed: import("zod").ZodBoolean;
175
+ title: import("zod").ZodOptional<import("zod").ZodString>;
176
+ propertyType: import("zod").ZodOptional<import("zod").ZodString>;
177
+ roomType: import("zod").ZodOptional<import("zod").ZodString>;
178
+ bedType: import("zod").ZodOptional<import("zod").ZodString>;
179
+ accommodates: import("zod").ZodOptional<import("zod").ZodNumber>;
180
+ bedrooms: import("zod").ZodOptional<import("zod").ZodNumber>;
181
+ bathrooms: import("zod").ZodOptional<import("zod").ZodNumber>;
182
+ bathroomShared: import("zod").ZodOptional<import("zod").ZodNumber>;
183
+ bathroomPrivate: import("zod").ZodOptional<import("zod").ZodNumber>;
184
+ beds: import("zod").ZodOptional<import("zod").ZodNumber>;
185
+ areaSquareFeet: import("zod").ZodOptional<import("zod").ZodNumber>;
186
+ address: import("zod").ZodObject<{
187
+ full: import("zod").ZodString;
188
+ lng: import("zod").ZodNumber;
189
+ lat: import("zod").ZodNumber;
190
+ street: import("zod").ZodString;
191
+ city: import("zod").ZodString;
192
+ country: import("zod").ZodString;
193
+ state: import("zod").ZodOptional<import("zod").ZodString>;
194
+ zipcode: import("zod").ZodOptional<import("zod").ZodString>;
195
+ }, "strip", import("zod").ZodTypeAny, {
196
+ full: string;
197
+ country: string;
198
+ lng: number;
199
+ lat: number;
200
+ street: string;
201
+ city: string;
202
+ state?: string | undefined;
203
+ zipcode?: string | undefined;
204
+ }, {
205
+ full: string;
206
+ country: string;
207
+ lng: number;
208
+ lat: number;
209
+ street: string;
210
+ city: string;
211
+ state?: string | undefined;
212
+ zipcode?: string | undefined;
213
+ }>;
214
+ publishedAddress: import("zod").ZodOptional<import("zod").ZodObject<{
215
+ full: import("zod").ZodString;
216
+ lng: import("zod").ZodNumber;
217
+ lat: import("zod").ZodNumber;
218
+ street: import("zod").ZodString;
219
+ city: import("zod").ZodString;
220
+ country: import("zod").ZodString;
221
+ }, "strip", import("zod").ZodTypeAny, {
222
+ full: string;
223
+ country: string;
224
+ lng: number;
225
+ lat: number;
226
+ street: string;
227
+ city: string;
228
+ }, {
229
+ full: string;
230
+ country: string;
231
+ lng: number;
232
+ lat: number;
233
+ street: string;
234
+ city: string;
235
+ }>>;
236
+ timezone: import("zod").ZodOptional<import("zod").ZodString>;
237
+ defaultCheckInTime: import("zod").ZodOptional<import("zod").ZodString>;
238
+ defaultCheckOutTime: import("zod").ZodOptional<import("zod").ZodString>;
239
+ picture: import("zod").ZodOptional<import("zod").ZodObject<{
240
+ regular: import("zod").ZodOptional<import("zod").ZodString>;
241
+ thumbnail: import("zod").ZodOptional<import("zod").ZodString>;
242
+ large: import("zod").ZodOptional<import("zod").ZodString>;
243
+ caption: import("zod").ZodOptional<import("zod").ZodString>;
244
+ original: import("zod").ZodOptional<import("zod").ZodString>;
245
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
246
+ size: import("zod").ZodOptional<import("zod").ZodNumber>;
247
+ width: import("zod").ZodOptional<import("zod").ZodNumber>;
248
+ }, "strip", import("zod").ZodTypeAny, {
249
+ height?: number | undefined;
250
+ width?: number | undefined;
251
+ caption?: string | undefined;
252
+ size?: number | undefined;
253
+ regular?: string | undefined;
254
+ thumbnail?: string | undefined;
255
+ large?: string | undefined;
256
+ original?: string | undefined;
257
+ }, {
258
+ height?: number | undefined;
259
+ width?: number | undefined;
260
+ caption?: string | undefined;
261
+ size?: number | undefined;
262
+ regular?: string | undefined;
263
+ thumbnail?: string | undefined;
264
+ large?: string | undefined;
265
+ original?: string | undefined;
266
+ }>>;
267
+ pictures: import("zod").ZodArray<import("zod").ZodObject<{
268
+ regular: import("zod").ZodOptional<import("zod").ZodString>;
269
+ thumbnail: import("zod").ZodOptional<import("zod").ZodString>;
270
+ large: import("zod").ZodOptional<import("zod").ZodString>;
271
+ caption: import("zod").ZodOptional<import("zod").ZodString>;
272
+ original: import("zod").ZodOptional<import("zod").ZodString>;
273
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
274
+ size: import("zod").ZodOptional<import("zod").ZodNumber>;
275
+ width: import("zod").ZodOptional<import("zod").ZodNumber>;
276
+ }, "strip", import("zod").ZodTypeAny, {
277
+ height?: number | undefined;
278
+ width?: number | undefined;
279
+ caption?: string | undefined;
280
+ size?: number | undefined;
281
+ regular?: string | undefined;
282
+ thumbnail?: string | undefined;
283
+ large?: string | undefined;
284
+ original?: string | undefined;
285
+ }, {
286
+ height?: number | undefined;
287
+ width?: number | undefined;
288
+ caption?: string | undefined;
289
+ size?: number | undefined;
290
+ regular?: string | undefined;
291
+ thumbnail?: string | undefined;
292
+ large?: string | undefined;
293
+ original?: string | undefined;
294
+ }>, "many">;
295
+ amenities: import("zod").ZodArray<import("zod").ZodString, "many">;
296
+ terms: import("zod").ZodObject<{
297
+ minNights: import("zod").ZodNumber;
298
+ maxNights: import("zod").ZodNumber;
299
+ cancellation: import("zod").ZodString;
300
+ }, "strip", import("zod").ZodTypeAny, {
301
+ minNights: number;
302
+ maxNights: number;
303
+ cancellation: string;
304
+ }, {
305
+ minNights: number;
306
+ maxNights: number;
307
+ cancellation: string;
308
+ }>;
309
+ prices: import("zod").ZodObject<{
310
+ guestsIncludedInRegularFee: import("zod").ZodOptional<import("zod").ZodNumber>;
311
+ extraPersonFee: import("zod").ZodOptional<import("zod").ZodNumber>;
312
+ basePrice: import("zod").ZodNumber;
313
+ basePriceUSD: import("zod").ZodOptional<import("zod").ZodNumber>;
314
+ monthlyPriceFactor: import("zod").ZodOptional<import("zod").ZodNumber>;
315
+ weeklyPriceFactor: import("zod").ZodOptional<import("zod").ZodNumber>;
316
+ weekendBasePrice: import("zod").ZodOptional<import("zod").ZodNumber>;
317
+ securityDepositFee: import("zod").ZodOptional<import("zod").ZodNumber>;
318
+ currency: import("zod").ZodString;
319
+ cleaningFee: import("zod").ZodNumber;
320
+ }, "strip", import("zod").ZodTypeAny, {
321
+ currency: string;
322
+ basePrice: number;
323
+ cleaningFee: number;
324
+ guestsIncludedInRegularFee?: number | undefined;
325
+ extraPersonFee?: number | undefined;
326
+ basePriceUSD?: number | undefined;
327
+ monthlyPriceFactor?: number | undefined;
328
+ weeklyPriceFactor?: number | undefined;
329
+ weekendBasePrice?: number | undefined;
330
+ securityDepositFee?: number | undefined;
331
+ }, {
332
+ currency: string;
333
+ basePrice: number;
334
+ cleaningFee: number;
335
+ guestsIncludedInRegularFee?: number | undefined;
336
+ extraPersonFee?: number | undefined;
337
+ basePriceUSD?: number | undefined;
338
+ monthlyPriceFactor?: number | undefined;
339
+ weeklyPriceFactor?: number | undefined;
340
+ weekendBasePrice?: number | undefined;
341
+ securityDepositFee?: number | undefined;
342
+ }>;
343
+ netIncomeFormula: import("zod").ZodOptional<import("zod").ZodString>;
344
+ commissionFormula: import("zod").ZodOptional<import("zod").ZodString>;
345
+ commissionTaxPrecentage: import("zod").ZodOptional<import("zod").ZodString>;
346
+ paymentProcessing: import("zod").ZodOptional<import("zod").ZodObject<{
347
+ active: import("zod").ZodBoolean;
348
+ paymentProviders: import("zod").ZodObject<{
349
+ stripe: import("zod").ZodObject<{
350
+ active: import("zod").ZodBoolean;
351
+ status: import("zod").ZodString;
352
+ accountName: import("zod").ZodString;
353
+ defaultCurrency: import("zod").ZodString;
354
+ syncedAt: import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>;
355
+ payload: import("zod").ZodObject<{
356
+ id: import("zod").ZodString;
357
+ livemode: import("zod").ZodBoolean;
358
+ token_type: import("zod").ZodString;
359
+ stripe_publishable_key: import("zod").ZodString;
360
+ stripe_user_id: import("zod").ZodString;
361
+ scope: import("zod").ZodString;
362
+ }, "strip", import("zod").ZodTypeAny, {
363
+ id: string;
364
+ livemode: boolean;
365
+ token_type: string;
366
+ stripe_publishable_key: string;
367
+ stripe_user_id: string;
368
+ scope: string;
369
+ }, {
370
+ id: string;
371
+ livemode: boolean;
372
+ token_type: string;
373
+ stripe_publishable_key: string;
374
+ stripe_user_id: string;
375
+ scope: string;
376
+ }>;
377
+ }, "strip", import("zod").ZodTypeAny, {
378
+ active: boolean;
379
+ status: string;
380
+ accountName: string;
381
+ defaultCurrency: string;
382
+ syncedAt: import("@firebase/firestore").Timestamp;
383
+ payload: {
384
+ id: string;
385
+ livemode: boolean;
386
+ token_type: string;
387
+ stripe_publishable_key: string;
388
+ stripe_user_id: string;
389
+ scope: string;
390
+ };
391
+ }, {
392
+ active: boolean;
393
+ status: string;
394
+ accountName: string;
395
+ defaultCurrency: string;
396
+ syncedAt: import("@firebase/firestore").Timestamp;
397
+ payload: {
398
+ id: string;
399
+ livemode: boolean;
400
+ token_type: string;
401
+ stripe_publishable_key: string;
402
+ stripe_user_id: string;
403
+ scope: string;
404
+ };
405
+ }>;
406
+ }, "strip", import("zod").ZodTypeAny, {
407
+ stripe: {
408
+ active: boolean;
409
+ status: string;
410
+ accountName: string;
411
+ defaultCurrency: string;
412
+ syncedAt: import("@firebase/firestore").Timestamp;
413
+ payload: {
414
+ id: string;
415
+ livemode: boolean;
416
+ token_type: string;
417
+ stripe_publishable_key: string;
418
+ stripe_user_id: string;
419
+ scope: string;
420
+ };
421
+ };
422
+ }, {
423
+ stripe: {
424
+ active: boolean;
425
+ status: string;
426
+ accountName: string;
427
+ defaultCurrency: string;
428
+ syncedAt: import("@firebase/firestore").Timestamp;
429
+ payload: {
430
+ id: string;
431
+ livemode: boolean;
432
+ token_type: string;
433
+ stripe_publishable_key: string;
434
+ stripe_user_id: string;
435
+ scope: string;
436
+ };
437
+ };
438
+ }>;
439
+ }, "strip", import("zod").ZodTypeAny, {
440
+ active: boolean;
441
+ paymentProviders: {
442
+ stripe: {
443
+ active: boolean;
444
+ status: string;
445
+ accountName: string;
446
+ defaultCurrency: string;
447
+ syncedAt: import("@firebase/firestore").Timestamp;
448
+ payload: {
449
+ id: string;
450
+ livemode: boolean;
451
+ token_type: string;
452
+ stripe_publishable_key: string;
453
+ stripe_user_id: string;
454
+ scope: string;
455
+ };
456
+ };
457
+ };
458
+ }, {
459
+ active: boolean;
460
+ paymentProviders: {
461
+ stripe: {
462
+ active: boolean;
463
+ status: string;
464
+ accountName: string;
465
+ defaultCurrency: string;
466
+ syncedAt: import("@firebase/firestore").Timestamp;
467
+ payload: {
468
+ id: string;
469
+ livemode: boolean;
470
+ token_type: string;
471
+ stripe_publishable_key: string;
472
+ stripe_user_id: string;
473
+ scope: string;
474
+ };
475
+ };
476
+ };
477
+ }>>;
478
+ active: import("zod").ZodBoolean;
479
+ publicDescription: import("zod").ZodAny;
480
+ frontDoor: import("zod").ZodOptional<import("zod").ZodObject<{
481
+ id: import("zod").ZodOptional<import("zod").ZodString>;
482
+ method: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"unlock">, import("zod").ZodLiteral<"open">]>>;
483
+ }, "strip", import("zod").ZodTypeAny, {
484
+ id?: string | undefined;
485
+ method?: "open" | "unlock" | undefined;
486
+ }, {
487
+ id?: string | undefined;
488
+ method?: "open" | "unlock" | undefined;
489
+ }>>;
490
+ mainDoor: import("zod").ZodOptional<import("zod").ZodObject<{
491
+ id: import("zod").ZodOptional<import("zod").ZodString>;
492
+ method: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"unlock">, import("zod").ZodLiteral<"open">]>>;
493
+ }, "strip", import("zod").ZodTypeAny, {
494
+ id?: string | undefined;
495
+ method?: "open" | "unlock" | undefined;
496
+ }, {
497
+ id?: string | undefined;
498
+ method?: "open" | "unlock" | undefined;
499
+ }>>;
500
+ noAptKey: import("zod").ZodOptional<import("zod").ZodBoolean>;
501
+ aptKey: import("zod").ZodOptional<import("zod").ZodString>;
502
+ keyMethod: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"unlock">, import("zod").ZodLiteral<"open">]>>;
503
+ externalId: import("zod").ZodOptional<import("zod").ZodString>;
504
+ requestToBook: import("zod").ZodOptional<import("zod").ZodBoolean>;
505
+ nickname: import("zod").ZodOptional<import("zod").ZodString>;
506
+ listingType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"parent">, import("zod").ZodLiteral<"child">, import("zod").ZodLiteral<"shared">]>>;
507
+ parentId: import("zod").ZodOptional<import("zod").ZodString>;
508
+ childIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
509
+ city: import("zod").ZodOptional<import("zod").ZodString>;
510
+ }, "strip", import("zod").ZodTypeAny, {
511
+ address: {
512
+ full: string;
513
+ country: string;
514
+ lng: number;
515
+ lat: number;
516
+ street: string;
517
+ city: string;
518
+ state?: string | undefined;
519
+ zipcode?: string | undefined;
520
+ };
521
+ active: boolean;
522
+ createdAt: import("@firebase/firestore").Timestamp;
523
+ pictures: {
524
+ height?: number | undefined;
525
+ width?: number | undefined;
526
+ caption?: string | undefined;
527
+ size?: number | undefined;
528
+ regular?: string | undefined;
529
+ thumbnail?: string | undefined;
530
+ large?: string | undefined;
531
+ original?: string | undefined;
532
+ }[];
533
+ _geo: {
534
+ lng: number;
535
+ lat: number;
536
+ };
537
+ isListed: boolean;
538
+ amenities: string[];
539
+ terms: {
540
+ minNights: number;
541
+ maxNights: number;
542
+ cancellation: string;
543
+ };
544
+ prices: {
545
+ currency: string;
546
+ basePrice: number;
547
+ cleaningFee: number;
548
+ guestsIncludedInRegularFee?: number | undefined;
549
+ extraPersonFee?: number | undefined;
550
+ basePriceUSD?: number | undefined;
551
+ monthlyPriceFactor?: number | undefined;
552
+ weeklyPriceFactor?: number | undefined;
553
+ weekendBasePrice?: number | undefined;
554
+ securityDepositFee?: number | undefined;
555
+ };
556
+ id?: string | undefined;
557
+ picture?: {
558
+ height?: number | undefined;
559
+ width?: number | undefined;
560
+ caption?: string | undefined;
561
+ size?: number | undefined;
562
+ regular?: string | undefined;
563
+ thumbnail?: string | undefined;
564
+ large?: string | undefined;
565
+ original?: string | undefined;
566
+ } | undefined;
567
+ title?: string | undefined;
568
+ externalId?: string | undefined;
569
+ city?: string | undefined;
570
+ guestyId?: string | undefined;
571
+ accountId?: string | undefined;
572
+ isVirtual?: boolean | undefined;
573
+ propertyType?: string | undefined;
574
+ roomType?: string | undefined;
575
+ bedType?: string | undefined;
576
+ accommodates?: number | undefined;
577
+ bedrooms?: number | undefined;
578
+ bathrooms?: number | undefined;
579
+ bathroomShared?: number | undefined;
580
+ bathroomPrivate?: number | undefined;
581
+ beds?: number | undefined;
582
+ areaSquareFeet?: number | undefined;
583
+ publishedAddress?: {
584
+ full: string;
585
+ country: string;
586
+ lng: number;
587
+ lat: number;
588
+ street: string;
589
+ city: string;
590
+ } | undefined;
591
+ timezone?: string | undefined;
592
+ defaultCheckInTime?: string | undefined;
593
+ defaultCheckOutTime?: string | undefined;
594
+ netIncomeFormula?: string | undefined;
595
+ commissionFormula?: string | undefined;
596
+ commissionTaxPrecentage?: string | undefined;
597
+ paymentProcessing?: {
598
+ active: boolean;
599
+ paymentProviders: {
600
+ stripe: {
601
+ active: boolean;
602
+ status: string;
603
+ accountName: string;
604
+ defaultCurrency: string;
605
+ syncedAt: import("@firebase/firestore").Timestamp;
606
+ payload: {
607
+ id: string;
608
+ livemode: boolean;
609
+ token_type: string;
610
+ stripe_publishable_key: string;
611
+ stripe_user_id: string;
612
+ scope: string;
613
+ };
614
+ };
615
+ };
616
+ } | undefined;
617
+ publicDescription?: any;
618
+ frontDoor?: {
619
+ id?: string | undefined;
620
+ method?: "open" | "unlock" | undefined;
621
+ } | undefined;
622
+ mainDoor?: {
623
+ id?: string | undefined;
624
+ method?: "open" | "unlock" | undefined;
625
+ } | undefined;
626
+ noAptKey?: boolean | undefined;
627
+ aptKey?: string | undefined;
628
+ keyMethod?: "open" | "unlock" | undefined;
629
+ requestToBook?: boolean | undefined;
630
+ nickname?: string | undefined;
631
+ listingType?: "shared" | "parent" | "child" | undefined;
632
+ parentId?: string | undefined;
633
+ childIds?: string[] | undefined;
634
+ }, {
635
+ address: {
636
+ full: string;
637
+ country: string;
638
+ lng: number;
639
+ lat: number;
640
+ street: string;
641
+ city: string;
642
+ state?: string | undefined;
643
+ zipcode?: string | undefined;
644
+ };
645
+ active: boolean;
646
+ createdAt: import("@firebase/firestore").Timestamp;
647
+ pictures: {
648
+ height?: number | undefined;
649
+ width?: number | undefined;
650
+ caption?: string | undefined;
651
+ size?: number | undefined;
652
+ regular?: string | undefined;
653
+ thumbnail?: string | undefined;
654
+ large?: string | undefined;
655
+ original?: string | undefined;
656
+ }[];
657
+ _geo: {
658
+ lng: number;
659
+ lat: number;
660
+ };
661
+ isListed: boolean;
662
+ amenities: string[];
663
+ terms: {
664
+ minNights: number;
665
+ maxNights: number;
666
+ cancellation: string;
667
+ };
668
+ prices: {
669
+ currency: string;
670
+ basePrice: number;
671
+ cleaningFee: number;
672
+ guestsIncludedInRegularFee?: number | undefined;
673
+ extraPersonFee?: number | undefined;
674
+ basePriceUSD?: number | undefined;
675
+ monthlyPriceFactor?: number | undefined;
676
+ weeklyPriceFactor?: number | undefined;
677
+ weekendBasePrice?: number | undefined;
678
+ securityDepositFee?: number | undefined;
679
+ };
680
+ id?: string | undefined;
681
+ picture?: {
682
+ height?: number | undefined;
683
+ width?: number | undefined;
684
+ caption?: string | undefined;
685
+ size?: number | undefined;
686
+ regular?: string | undefined;
687
+ thumbnail?: string | undefined;
688
+ large?: string | undefined;
689
+ original?: string | undefined;
690
+ } | undefined;
691
+ title?: string | undefined;
692
+ externalId?: string | undefined;
693
+ city?: string | undefined;
694
+ guestyId?: string | undefined;
695
+ accountId?: string | undefined;
696
+ isVirtual?: boolean | undefined;
697
+ propertyType?: string | undefined;
698
+ roomType?: string | undefined;
699
+ bedType?: string | undefined;
700
+ accommodates?: number | undefined;
701
+ bedrooms?: number | undefined;
702
+ bathrooms?: number | undefined;
703
+ bathroomShared?: number | undefined;
704
+ bathroomPrivate?: number | undefined;
705
+ beds?: number | undefined;
706
+ areaSquareFeet?: number | undefined;
707
+ publishedAddress?: {
708
+ full: string;
709
+ country: string;
710
+ lng: number;
711
+ lat: number;
712
+ street: string;
713
+ city: string;
714
+ } | undefined;
715
+ timezone?: string | undefined;
716
+ defaultCheckInTime?: string | undefined;
717
+ defaultCheckOutTime?: string | undefined;
718
+ netIncomeFormula?: string | undefined;
719
+ commissionFormula?: string | undefined;
720
+ commissionTaxPrecentage?: string | undefined;
721
+ paymentProcessing?: {
722
+ active: boolean;
723
+ paymentProviders: {
724
+ stripe: {
725
+ active: boolean;
726
+ status: string;
727
+ accountName: string;
728
+ defaultCurrency: string;
729
+ syncedAt: import("@firebase/firestore").Timestamp;
730
+ payload: {
731
+ id: string;
732
+ livemode: boolean;
733
+ token_type: string;
734
+ stripe_publishable_key: string;
735
+ stripe_user_id: string;
736
+ scope: string;
737
+ };
738
+ };
739
+ };
740
+ } | undefined;
741
+ publicDescription?: any;
742
+ frontDoor?: {
743
+ id?: string | undefined;
744
+ method?: "open" | "unlock" | undefined;
745
+ } | undefined;
746
+ mainDoor?: {
747
+ id?: string | undefined;
748
+ method?: "open" | "unlock" | undefined;
749
+ } | undefined;
750
+ noAptKey?: boolean | undefined;
751
+ aptKey?: string | undefined;
752
+ keyMethod?: "open" | "unlock" | undefined;
753
+ requestToBook?: boolean | undefined;
754
+ nickname?: string | undefined;
755
+ listingType?: "shared" | "parent" | "child" | undefined;
756
+ parentId?: string | undefined;
757
+ childIds?: string[] | undefined;
758
+ }>;