expo-backend-types 0.11.0-EXPO-249-EB-Modelo.1 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +166 -0
  2. package/dist/src/event/dto/create-event.dto.js +33 -0
  3. package/dist/src/event/dto/delete-event.dto.d.ts +71 -0
  4. package/dist/src/event/dto/delete-event.dto.js +10 -0
  5. package/dist/src/event/dto/get-all-event.dto.d.ts +1113 -0
  6. package/dist/src/event/dto/get-all-event.dto.js +26 -0
  7. package/dist/src/event/dto/get-by-id-event.dto.d.ts +548 -0
  8. package/dist/src/event/dto/get-by-id-event.dto.js +25 -0
  9. package/dist/src/event/dto/update-event.dto.d.ts +373 -0
  10. package/dist/src/event/dto/update-event.dto.js +41 -0
  11. package/dist/src/event/exports.d.ts +5 -0
  12. package/dist/src/event/exports.js +5 -0
  13. package/dist/src/event-folder/dto/event-folder.dto.js +3 -1
  14. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +6 -6
  15. package/dist/src/event-folder/dto/get-all-event-folder.dto.js +1 -1
  16. package/dist/src/exports.d.ts +0 -1
  17. package/dist/src/exports.js +0 -1
  18. package/dist/src/i18n/es.d.ts +31 -8
  19. package/dist/src/i18n/es.js +31 -8
  20. package/dist/src/i18n/es.js.map +1 -1
  21. package/dist/src/profile/exports.d.ts +0 -1
  22. package/dist/src/profile/exports.js +0 -1
  23. package/dist/types/prisma-schema/edge.js +2 -2
  24. package/dist/types/prisma-schema/index.js +2 -2
  25. package/dist/types/prisma-schema/package.json +1 -1
  26. package/dist/types/prisma-schema/schema.prisma +1 -1
  27. package/dist/types/schema.d.ts +324 -56
  28. package/package.json +1 -2
  29. package/dist/src/message/dto/message.dto.d.ts +0 -173
  30. package/dist/src/message/dto/message.dto.js +0 -38
  31. package/dist/src/message/exports.d.ts +0 -1
  32. package/dist/src/message/exports.js +0 -18
  33. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +0 -728
  34. package/dist/src/profile/dto/find-with-active-chat.dto.js +0 -26
@@ -1,728 +0,0 @@
1
- import z from 'zod';
2
- export declare const findWithActiveChatResponseSchema: z.ZodObject<{
3
- profiles: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
4
- id: z.ZodString;
5
- shortId: z.ZodNumber;
6
- phoneNumber: z.ZodEffects<z.ZodString, string, string>;
7
- secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
8
- fullName: z.ZodString;
9
- firstName: z.ZodNullable<z.ZodString>;
10
- gender: z.ZodNullable<z.ZodString>;
11
- birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
12
- profilePictureUrl: z.ZodNullable<z.ZodString>;
13
- instagram: z.ZodNullable<z.ZodString>;
14
- mail: z.ZodNullable<z.ZodString>;
15
- dni: z.ZodNullable<z.ZodString>;
16
- alternativeNames: z.ZodArray<z.ZodString, "many">;
17
- birthLocationId: z.ZodNullable<z.ZodString>;
18
- residenceLocationId: z.ZodNullable<z.ZodString>;
19
- isInTrash: z.ZodBoolean;
20
- movedToTrashDate: z.ZodNullable<z.ZodDate>;
21
- created_at: z.ZodDate;
22
- updated_at: z.ZodDate;
23
- }, {
24
- tags: z.ZodArray<z.ZodObject<{
25
- id: z.ZodString;
26
- name: z.ZodString;
27
- groupId: z.ZodString;
28
- type: z.ZodNativeEnum<{
29
- PROFILE: "PROFILE";
30
- EVENT: "EVENT";
31
- PARTICIPANT: "PARTICIPANT";
32
- NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
33
- }>;
34
- created_at: z.ZodDate;
35
- updated_at: z.ZodDate;
36
- }, "strip", z.ZodTypeAny, {
37
- id: string;
38
- name: string;
39
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
40
- created_at: Date;
41
- updated_at: Date;
42
- groupId: string;
43
- }, {
44
- id: string;
45
- name: string;
46
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
47
- created_at: Date;
48
- updated_at: Date;
49
- groupId: string;
50
- }>, "many">;
51
- inChat: z.ZodBoolean;
52
- messages: z.ZodArray<z.ZodObject<Pick<{
53
- id: z.ZodString;
54
- wamId: z.ZodString;
55
- message: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
56
- id: z.ZodString;
57
- from: z.ZodOptional<z.ZodString>;
58
- to: z.ZodOptional<z.ZodString>;
59
- timestamp: z.ZodNumber;
60
- }, {
61
- text: z.ZodObject<{
62
- body: z.ZodString;
63
- }, "strip", z.ZodTypeAny, {
64
- body: string;
65
- }, {
66
- body: string;
67
- }>;
68
- }>, {
69
- type: z.ZodLiteral<"text">;
70
- }>, "strip", z.ZodTypeAny, {
71
- id: string;
72
- type: "text";
73
- timestamp: number;
74
- text: {
75
- body: string;
76
- };
77
- from?: string | undefined;
78
- to?: string | undefined;
79
- }, {
80
- id: string;
81
- type: "text";
82
- timestamp: number;
83
- text: {
84
- body: string;
85
- };
86
- from?: string | undefined;
87
- to?: string | undefined;
88
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
89
- id: z.ZodString;
90
- from: z.ZodOptional<z.ZodString>;
91
- to: z.ZodOptional<z.ZodString>;
92
- timestamp: z.ZodNumber;
93
- }, {
94
- templateName: z.ZodString;
95
- }>, {
96
- type: z.ZodLiteral<"template">;
97
- }>, "strip", z.ZodTypeAny, {
98
- id: string;
99
- type: "template";
100
- timestamp: number;
101
- templateName: string;
102
- from?: string | undefined;
103
- to?: string | undefined;
104
- }, {
105
- id: string;
106
- type: "template";
107
- timestamp: number;
108
- templateName: string;
109
- from?: string | undefined;
110
- to?: string | undefined;
111
- }>]>;
112
- state: z.ZodNativeEnum<{
113
- SENT: "SENT";
114
- RECEIVED: "RECEIVED";
115
- SEEN: "SEEN";
116
- }>;
117
- created_at: z.ZodDate;
118
- updated_at: z.ZodDate;
119
- }, "message" | "created_at" | "state">, "strip", z.ZodTypeAny, {
120
- message: {
121
- id: string;
122
- type: "text";
123
- timestamp: number;
124
- text: {
125
- body: string;
126
- };
127
- from?: string | undefined;
128
- to?: string | undefined;
129
- } | {
130
- id: string;
131
- type: "template";
132
- timestamp: number;
133
- templateName: string;
134
- from?: string | undefined;
135
- to?: string | undefined;
136
- };
137
- created_at: Date;
138
- state: "SENT" | "RECEIVED" | "SEEN";
139
- }, {
140
- message: {
141
- id: string;
142
- type: "text";
143
- timestamp: number;
144
- text: {
145
- body: string;
146
- };
147
- from?: string | undefined;
148
- to?: string | undefined;
149
- } | {
150
- id: string;
151
- type: "template";
152
- timestamp: number;
153
- templateName: string;
154
- from?: string | undefined;
155
- to?: string | undefined;
156
- };
157
- created_at: Date;
158
- state: "SENT" | "RECEIVED" | "SEEN";
159
- }>, "many">;
160
- }>, "strip", z.ZodTypeAny, {
161
- id: string;
162
- phoneNumber: string;
163
- secondaryPhoneNumber: string | null;
164
- fullName: string;
165
- profilePictureUrl: string | null;
166
- created_at: Date;
167
- updated_at: Date;
168
- tags: {
169
- id: string;
170
- name: string;
171
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
172
- created_at: Date;
173
- updated_at: Date;
174
- groupId: string;
175
- }[];
176
- shortId: number;
177
- firstName: string | null;
178
- gender: string | null;
179
- birthDate: Date | null;
180
- instagram: string | null;
181
- mail: string | null;
182
- dni: string | null;
183
- alternativeNames: string[];
184
- birthLocationId: string | null;
185
- residenceLocationId: string | null;
186
- isInTrash: boolean;
187
- movedToTrashDate: Date | null;
188
- inChat: boolean;
189
- messages: {
190
- message: {
191
- id: string;
192
- type: "text";
193
- timestamp: number;
194
- text: {
195
- body: string;
196
- };
197
- from?: string | undefined;
198
- to?: string | undefined;
199
- } | {
200
- id: string;
201
- type: "template";
202
- timestamp: number;
203
- templateName: string;
204
- from?: string | undefined;
205
- to?: string | undefined;
206
- };
207
- created_at: Date;
208
- state: "SENT" | "RECEIVED" | "SEEN";
209
- }[];
210
- }, {
211
- id: string;
212
- phoneNumber: string;
213
- secondaryPhoneNumber: string | null;
214
- fullName: string;
215
- profilePictureUrl: string | null;
216
- created_at: Date;
217
- updated_at: Date;
218
- tags: {
219
- id: string;
220
- name: string;
221
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
222
- created_at: Date;
223
- updated_at: Date;
224
- groupId: string;
225
- }[];
226
- shortId: number;
227
- firstName: string | null;
228
- gender: string | null;
229
- birthDate: string | null;
230
- instagram: string | null;
231
- mail: string | null;
232
- dni: string | null;
233
- alternativeNames: string[];
234
- birthLocationId: string | null;
235
- residenceLocationId: string | null;
236
- isInTrash: boolean;
237
- movedToTrashDate: Date | null;
238
- inChat: boolean;
239
- messages: {
240
- message: {
241
- id: string;
242
- type: "text";
243
- timestamp: number;
244
- text: {
245
- body: string;
246
- };
247
- from?: string | undefined;
248
- to?: string | undefined;
249
- } | {
250
- id: string;
251
- type: "template";
252
- timestamp: number;
253
- templateName: string;
254
- from?: string | undefined;
255
- to?: string | undefined;
256
- };
257
- created_at: Date;
258
- state: "SENT" | "RECEIVED" | "SEEN";
259
- }[];
260
- }>, "many">;
261
- }, "strip", z.ZodTypeAny, {
262
- profiles: {
263
- id: string;
264
- phoneNumber: string;
265
- secondaryPhoneNumber: string | null;
266
- fullName: string;
267
- profilePictureUrl: string | null;
268
- created_at: Date;
269
- updated_at: Date;
270
- tags: {
271
- id: string;
272
- name: string;
273
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
274
- created_at: Date;
275
- updated_at: Date;
276
- groupId: string;
277
- }[];
278
- shortId: number;
279
- firstName: string | null;
280
- gender: string | null;
281
- birthDate: Date | null;
282
- instagram: string | null;
283
- mail: string | null;
284
- dni: string | null;
285
- alternativeNames: string[];
286
- birthLocationId: string | null;
287
- residenceLocationId: string | null;
288
- isInTrash: boolean;
289
- movedToTrashDate: Date | null;
290
- inChat: boolean;
291
- messages: {
292
- message: {
293
- id: string;
294
- type: "text";
295
- timestamp: number;
296
- text: {
297
- body: string;
298
- };
299
- from?: string | undefined;
300
- to?: string | undefined;
301
- } | {
302
- id: string;
303
- type: "template";
304
- timestamp: number;
305
- templateName: string;
306
- from?: string | undefined;
307
- to?: string | undefined;
308
- };
309
- created_at: Date;
310
- state: "SENT" | "RECEIVED" | "SEEN";
311
- }[];
312
- }[];
313
- }, {
314
- profiles: {
315
- id: string;
316
- phoneNumber: string;
317
- secondaryPhoneNumber: string | null;
318
- fullName: string;
319
- profilePictureUrl: string | null;
320
- created_at: Date;
321
- updated_at: Date;
322
- tags: {
323
- id: string;
324
- name: string;
325
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
326
- created_at: Date;
327
- updated_at: Date;
328
- groupId: string;
329
- }[];
330
- shortId: number;
331
- firstName: string | null;
332
- gender: string | null;
333
- birthDate: string | null;
334
- instagram: string | null;
335
- mail: string | null;
336
- dni: string | null;
337
- alternativeNames: string[];
338
- birthLocationId: string | null;
339
- residenceLocationId: string | null;
340
- isInTrash: boolean;
341
- movedToTrashDate: Date | null;
342
- inChat: boolean;
343
- messages: {
344
- message: {
345
- id: string;
346
- type: "text";
347
- timestamp: number;
348
- text: {
349
- body: string;
350
- };
351
- from?: string | undefined;
352
- to?: string | undefined;
353
- } | {
354
- id: string;
355
- type: "template";
356
- timestamp: number;
357
- templateName: string;
358
- from?: string | undefined;
359
- to?: string | undefined;
360
- };
361
- created_at: Date;
362
- state: "SENT" | "RECEIVED" | "SEEN";
363
- }[];
364
- }[];
365
- }>;
366
- declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
367
- profiles: z.ZodArray<z.ZodObject<{
368
- id: z.ZodString;
369
- shortId: z.ZodNumber;
370
- phoneNumber: z.ZodEffects<z.ZodString, string, string>;
371
- secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
372
- fullName: z.ZodString;
373
- firstName: z.ZodNullable<z.ZodString>;
374
- gender: z.ZodNullable<z.ZodString>;
375
- birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
376
- profilePictureUrl: z.ZodNullable<z.ZodString>;
377
- instagram: z.ZodNullable<z.ZodString>;
378
- mail: z.ZodNullable<z.ZodString>;
379
- dni: z.ZodNullable<z.ZodString>;
380
- alternativeNames: z.ZodArray<z.ZodString, "many">;
381
- birthLocationId: z.ZodNullable<z.ZodString>;
382
- residenceLocationId: z.ZodNullable<z.ZodString>;
383
- isInTrash: z.ZodBoolean;
384
- movedToTrashDate: z.ZodNullable<z.ZodString>;
385
- created_at: z.ZodString;
386
- updated_at: z.ZodString;
387
- tags: z.ZodArray<z.ZodObject<{
388
- id: z.ZodString;
389
- name: z.ZodString;
390
- groupId: z.ZodString;
391
- type: z.ZodNativeEnum<{
392
- PROFILE: "PROFILE";
393
- EVENT: "EVENT";
394
- PARTICIPANT: "PARTICIPANT";
395
- NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
396
- }>;
397
- created_at: z.ZodString;
398
- updated_at: z.ZodString;
399
- }, z.UnknownKeysParam, z.ZodTypeAny, {
400
- id: string;
401
- name: string;
402
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
403
- created_at: string;
404
- updated_at: string;
405
- groupId: string;
406
- }, {
407
- id: string;
408
- name: string;
409
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
410
- created_at: string;
411
- updated_at: string;
412
- groupId: string;
413
- }>, "many">;
414
- inChat: z.ZodBoolean;
415
- messages: z.ZodArray<z.ZodObject<{
416
- message: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
417
- id: z.ZodString;
418
- from: z.ZodOptional<z.ZodString>;
419
- to: z.ZodOptional<z.ZodString>;
420
- timestamp: z.ZodNumber;
421
- }, {
422
- text: z.ZodObject<{
423
- body: z.ZodString;
424
- }, "strip", z.ZodTypeAny, {
425
- body: string;
426
- }, {
427
- body: string;
428
- }>;
429
- }>, {
430
- type: z.ZodLiteral<"text">;
431
- }>, "strip", z.ZodTypeAny, {
432
- id: string;
433
- type: "text";
434
- timestamp: number;
435
- text: {
436
- body: string;
437
- };
438
- from?: string | undefined;
439
- to?: string | undefined;
440
- }, {
441
- id: string;
442
- type: "text";
443
- timestamp: number;
444
- text: {
445
- body: string;
446
- };
447
- from?: string | undefined;
448
- to?: string | undefined;
449
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
450
- id: z.ZodString;
451
- from: z.ZodOptional<z.ZodString>;
452
- to: z.ZodOptional<z.ZodString>;
453
- timestamp: z.ZodNumber;
454
- }, {
455
- templateName: z.ZodString;
456
- }>, {
457
- type: z.ZodLiteral<"template">;
458
- }>, "strip", z.ZodTypeAny, {
459
- id: string;
460
- type: "template";
461
- timestamp: number;
462
- templateName: string;
463
- from?: string | undefined;
464
- to?: string | undefined;
465
- }, {
466
- id: string;
467
- type: "template";
468
- timestamp: number;
469
- templateName: string;
470
- from?: string | undefined;
471
- to?: string | undefined;
472
- }>]>;
473
- created_at: z.ZodString;
474
- state: z.ZodNativeEnum<{
475
- SENT: "SENT";
476
- RECEIVED: "RECEIVED";
477
- SEEN: "SEEN";
478
- }>;
479
- }, z.UnknownKeysParam, z.ZodTypeAny, {
480
- message: {
481
- id: string;
482
- type: "text";
483
- timestamp: number;
484
- text: {
485
- body: string;
486
- };
487
- from?: string | undefined;
488
- to?: string | undefined;
489
- } | {
490
- id: string;
491
- type: "template";
492
- timestamp: number;
493
- templateName: string;
494
- from?: string | undefined;
495
- to?: string | undefined;
496
- };
497
- created_at: string;
498
- state: "SENT" | "RECEIVED" | "SEEN";
499
- }, {
500
- message: {
501
- id: string;
502
- type: "text";
503
- timestamp: number;
504
- text: {
505
- body: string;
506
- };
507
- from?: string | undefined;
508
- to?: string | undefined;
509
- } | {
510
- id: string;
511
- type: "template";
512
- timestamp: number;
513
- templateName: string;
514
- from?: string | undefined;
515
- to?: string | undefined;
516
- };
517
- created_at: string;
518
- state: "SENT" | "RECEIVED" | "SEEN";
519
- }>, "many">;
520
- }, z.UnknownKeysParam, z.ZodTypeAny, {
521
- id: string;
522
- phoneNumber: string;
523
- secondaryPhoneNumber: string | null;
524
- fullName: string;
525
- profilePictureUrl: string | null;
526
- created_at: string;
527
- updated_at: string;
528
- tags: {
529
- id: string;
530
- name: string;
531
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
532
- created_at: string;
533
- updated_at: string;
534
- groupId: string;
535
- }[];
536
- shortId: number;
537
- firstName: string | null;
538
- gender: string | null;
539
- birthDate: Date | null;
540
- instagram: string | null;
541
- mail: string | null;
542
- dni: string | null;
543
- alternativeNames: string[];
544
- birthLocationId: string | null;
545
- residenceLocationId: string | null;
546
- isInTrash: boolean;
547
- movedToTrashDate: string | null;
548
- inChat: boolean;
549
- messages: {
550
- message: {
551
- id: string;
552
- type: "text";
553
- timestamp: number;
554
- text: {
555
- body: string;
556
- };
557
- from?: string | undefined;
558
- to?: string | undefined;
559
- } | {
560
- id: string;
561
- type: "template";
562
- timestamp: number;
563
- templateName: string;
564
- from?: string | undefined;
565
- to?: string | undefined;
566
- };
567
- created_at: string;
568
- state: "SENT" | "RECEIVED" | "SEEN";
569
- }[];
570
- }, {
571
- id: string;
572
- phoneNumber: string;
573
- secondaryPhoneNumber: string | null;
574
- fullName: string;
575
- profilePictureUrl: string | null;
576
- created_at: string;
577
- updated_at: string;
578
- tags: {
579
- id: string;
580
- name: string;
581
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
582
- created_at: string;
583
- updated_at: string;
584
- groupId: string;
585
- }[];
586
- shortId: number;
587
- firstName: string | null;
588
- gender: string | null;
589
- birthDate: string | null;
590
- instagram: string | null;
591
- mail: string | null;
592
- dni: string | null;
593
- alternativeNames: string[];
594
- birthLocationId: string | null;
595
- residenceLocationId: string | null;
596
- isInTrash: boolean;
597
- movedToTrashDate: string | null;
598
- inChat: boolean;
599
- messages: {
600
- message: {
601
- id: string;
602
- type: "text";
603
- timestamp: number;
604
- text: {
605
- body: string;
606
- };
607
- from?: string | undefined;
608
- to?: string | undefined;
609
- } | {
610
- id: string;
611
- type: "template";
612
- timestamp: number;
613
- templateName: string;
614
- from?: string | undefined;
615
- to?: string | undefined;
616
- };
617
- created_at: string;
618
- state: "SENT" | "RECEIVED" | "SEEN";
619
- }[];
620
- }>, "many">;
621
- }, z.UnknownKeysParam, z.ZodTypeAny, {
622
- profiles: {
623
- id: string;
624
- phoneNumber: string;
625
- secondaryPhoneNumber: string | null;
626
- fullName: string;
627
- profilePictureUrl: string | null;
628
- created_at: string;
629
- updated_at: string;
630
- tags: {
631
- id: string;
632
- name: string;
633
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
634
- created_at: string;
635
- updated_at: string;
636
- groupId: string;
637
- }[];
638
- shortId: number;
639
- firstName: string | null;
640
- gender: string | null;
641
- birthDate: Date | null;
642
- instagram: string | null;
643
- mail: string | null;
644
- dni: string | null;
645
- alternativeNames: string[];
646
- birthLocationId: string | null;
647
- residenceLocationId: string | null;
648
- isInTrash: boolean;
649
- movedToTrashDate: string | null;
650
- inChat: boolean;
651
- messages: {
652
- message: {
653
- id: string;
654
- type: "text";
655
- timestamp: number;
656
- text: {
657
- body: string;
658
- };
659
- from?: string | undefined;
660
- to?: string | undefined;
661
- } | {
662
- id: string;
663
- type: "template";
664
- timestamp: number;
665
- templateName: string;
666
- from?: string | undefined;
667
- to?: string | undefined;
668
- };
669
- created_at: string;
670
- state: "SENT" | "RECEIVED" | "SEEN";
671
- }[];
672
- }[];
673
- }, {
674
- profiles: {
675
- id: string;
676
- phoneNumber: string;
677
- secondaryPhoneNumber: string | null;
678
- fullName: string;
679
- profilePictureUrl: string | null;
680
- created_at: string;
681
- updated_at: string;
682
- tags: {
683
- id: string;
684
- name: string;
685
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
686
- created_at: string;
687
- updated_at: string;
688
- groupId: string;
689
- }[];
690
- shortId: number;
691
- firstName: string | null;
692
- gender: string | null;
693
- birthDate: string | null;
694
- instagram: string | null;
695
- mail: string | null;
696
- dni: string | null;
697
- alternativeNames: string[];
698
- birthLocationId: string | null;
699
- residenceLocationId: string | null;
700
- isInTrash: boolean;
701
- movedToTrashDate: string | null;
702
- inChat: boolean;
703
- messages: {
704
- message: {
705
- id: string;
706
- type: "text";
707
- timestamp: number;
708
- text: {
709
- body: string;
710
- };
711
- from?: string | undefined;
712
- to?: string | undefined;
713
- } | {
714
- id: string;
715
- type: "template";
716
- timestamp: number;
717
- templateName: string;
718
- from?: string | undefined;
719
- to?: string | undefined;
720
- };
721
- created_at: string;
722
- state: "SENT" | "RECEIVED" | "SEEN";
723
- }[];
724
- }[];
725
- }>>;
726
- export declare class FindWithActiveChatResponseDto extends FindWithActiveChatResponseDto_base {
727
- }
728
- export {};