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