expo-backend-types 0.22.0-EXPO-288-EB-Imagenes.1 → 0.22.0
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/README.md +1 -1
- package/dist/src/csv/dto/csv.dto.d.ts +18 -0
- package/dist/src/csv/dto/csv.dto.js +17 -0
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +23 -0
- package/dist/src/csv/dto/download-all-tables.dto.js +19 -0
- package/dist/src/csv/dto/download-profiles.dto.d.ts +18 -0
- package/dist/src/csv/dto/download-profiles.dto.js +15 -0
- package/dist/src/csv/exports.d.ts +3 -0
- package/dist/src/{image → csv}/exports.js +3 -3
- package/dist/src/event/dto/event.dto.js +1 -1
- package/dist/src/event/dto/get-all-event.dto.d.ts +160 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -48
- package/dist/src/event/dto/update-event.dto.d.ts +20 -20
- package/dist/src/i18n/es.d.ts +18 -20
- package/dist/src/i18n/es.js +18 -20
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/location/dto/find-all-location.dto.d.ts +16 -16
- package/dist/src/message/dto/message.dto.d.ts +2 -2
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +86 -86
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +124 -124
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +52 -52
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +64 -64
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +84 -84
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +72 -72
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/types/prisma-schema/default.d.ts +1 -1
- package/dist/types/prisma-schema/edge.d.ts +1 -1
- package/dist/types/prisma-schema/edge.js +7 -11
- package/dist/types/prisma-schema/index-browser.js +4 -7
- package/dist/types/prisma-schema/index.d.ts +1036 -805
- package/dist/types/prisma-schema/index.js +7 -11
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +1 -14
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -21
- package/dist/types/prisma-schema/runtime/edge.js +18 -21
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +87 -297
- package/dist/types/prisma-schema/runtime/library.js +61 -64
- package/dist/types/prisma-schema/runtime/react-native.js +28 -31
- package/dist/types/prisma-schema/runtime/wasm.js +19 -22
- package/dist/types/prisma-schema/wasm.d.ts +1 -1
- package/dist/types/prisma-schema/wasm.js +4 -7
- package/dist/types/schema.d.ts +32 -42
- package/package.json +7 -5
- package/dist/src/image/dto/delete-image.dto.d.ts +0 -18
- package/dist/src/image/dto/delete-image.dto.js +0 -12
- package/dist/src/image/dto/image.dto.d.ts +0 -24
- package/dist/src/image/dto/image.dto.js +0 -18
- package/dist/src/image/dto/update-image.dto.d.ts +0 -18
- package/dist/src/image/dto/update-image.dto.js +0 -15
- package/dist/src/image/exports.d.ts +0 -3
@@ -94,11 +94,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
94
94
|
date: Date;
|
95
95
|
created_at: Date;
|
96
96
|
updated_at: Date;
|
97
|
-
|
98
|
-
tagAssistedId: string;
|
99
|
-
tagConfirmedId: string;
|
100
|
-
supraEventId: string | null;
|
101
|
-
subEvents: {
|
97
|
+
supraEvent: {
|
102
98
|
location: string;
|
103
99
|
id: string;
|
104
100
|
name: string;
|
@@ -109,8 +105,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
109
105
|
tagAssistedId: string;
|
110
106
|
tagConfirmedId: string;
|
111
107
|
supraEventId: string | null;
|
112
|
-
}
|
113
|
-
|
108
|
+
} | null;
|
109
|
+
subEvents: {
|
114
110
|
location: string;
|
115
111
|
id: string;
|
116
112
|
name: string;
|
@@ -121,7 +117,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
121
117
|
tagAssistedId: string;
|
122
118
|
tagConfirmedId: string;
|
123
119
|
supraEventId: string | null;
|
124
|
-
}
|
120
|
+
}[];
|
121
|
+
folderId: string | null;
|
122
|
+
tagAssistedId: string;
|
123
|
+
tagConfirmedId: string;
|
124
|
+
supraEventId: string | null;
|
125
125
|
}, {
|
126
126
|
location: string;
|
127
127
|
id: string;
|
@@ -129,11 +129,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
129
129
|
date: Date;
|
130
130
|
created_at: Date;
|
131
131
|
updated_at: Date;
|
132
|
-
|
133
|
-
tagAssistedId: string;
|
134
|
-
tagConfirmedId: string;
|
135
|
-
supraEventId: string | null;
|
136
|
-
subEvents: {
|
132
|
+
supraEvent: {
|
137
133
|
location: string;
|
138
134
|
id: string;
|
139
135
|
name: string;
|
@@ -144,8 +140,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
144
140
|
tagAssistedId: string;
|
145
141
|
tagConfirmedId: string;
|
146
142
|
supraEventId: string | null;
|
147
|
-
}
|
148
|
-
|
143
|
+
} | null;
|
144
|
+
subEvents: {
|
149
145
|
location: string;
|
150
146
|
id: string;
|
151
147
|
name: string;
|
@@ -156,7 +152,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
156
152
|
tagAssistedId: string;
|
157
153
|
tagConfirmedId: string;
|
158
154
|
supraEventId: string | null;
|
159
|
-
}
|
155
|
+
}[];
|
156
|
+
folderId: string | null;
|
157
|
+
tagAssistedId: string;
|
158
|
+
tagConfirmedId: string;
|
159
|
+
supraEventId: string | null;
|
160
160
|
}>, "many">;
|
161
161
|
}>, "strip", z.ZodTypeAny, {
|
162
162
|
id: string;
|
@@ -171,11 +171,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
171
171
|
date: Date;
|
172
172
|
created_at: Date;
|
173
173
|
updated_at: Date;
|
174
|
-
|
175
|
-
tagAssistedId: string;
|
176
|
-
tagConfirmedId: string;
|
177
|
-
supraEventId: string | null;
|
178
|
-
subEvents: {
|
174
|
+
supraEvent: {
|
179
175
|
location: string;
|
180
176
|
id: string;
|
181
177
|
name: string;
|
@@ -186,8 +182,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
186
182
|
tagAssistedId: string;
|
187
183
|
tagConfirmedId: string;
|
188
184
|
supraEventId: string | null;
|
189
|
-
}
|
190
|
-
|
185
|
+
} | null;
|
186
|
+
subEvents: {
|
191
187
|
location: string;
|
192
188
|
id: string;
|
193
189
|
name: string;
|
@@ -198,7 +194,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
198
194
|
tagAssistedId: string;
|
199
195
|
tagConfirmedId: string;
|
200
196
|
supraEventId: string | null;
|
201
|
-
}
|
197
|
+
}[];
|
198
|
+
folderId: string | null;
|
199
|
+
tagAssistedId: string;
|
200
|
+
tagConfirmedId: string;
|
201
|
+
supraEventId: string | null;
|
202
202
|
}[];
|
203
203
|
}, {
|
204
204
|
id: string;
|
@@ -213,11 +213,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
213
213
|
date: Date;
|
214
214
|
created_at: Date;
|
215
215
|
updated_at: Date;
|
216
|
-
|
217
|
-
tagAssistedId: string;
|
218
|
-
tagConfirmedId: string;
|
219
|
-
supraEventId: string | null;
|
220
|
-
subEvents: {
|
216
|
+
supraEvent: {
|
221
217
|
location: string;
|
222
218
|
id: string;
|
223
219
|
name: string;
|
@@ -228,8 +224,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
228
224
|
tagAssistedId: string;
|
229
225
|
tagConfirmedId: string;
|
230
226
|
supraEventId: string | null;
|
231
|
-
}
|
232
|
-
|
227
|
+
} | null;
|
228
|
+
subEvents: {
|
233
229
|
location: string;
|
234
230
|
id: string;
|
235
231
|
name: string;
|
@@ -240,7 +236,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
240
236
|
tagAssistedId: string;
|
241
237
|
tagConfirmedId: string;
|
242
238
|
supraEventId: string | null;
|
243
|
-
}
|
239
|
+
}[];
|
240
|
+
folderId: string | null;
|
241
|
+
tagAssistedId: string;
|
242
|
+
tagConfirmedId: string;
|
243
|
+
supraEventId: string | null;
|
244
244
|
}[];
|
245
245
|
}>, "many">;
|
246
246
|
withoutFolder: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
@@ -330,11 +330,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
330
330
|
date: Date;
|
331
331
|
created_at: Date;
|
332
332
|
updated_at: Date;
|
333
|
-
|
334
|
-
tagAssistedId: string;
|
335
|
-
tagConfirmedId: string;
|
336
|
-
supraEventId: string | null;
|
337
|
-
subEvents: {
|
333
|
+
supraEvent: {
|
338
334
|
location: string;
|
339
335
|
id: string;
|
340
336
|
name: string;
|
@@ -345,8 +341,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
345
341
|
tagAssistedId: string;
|
346
342
|
tagConfirmedId: string;
|
347
343
|
supraEventId: string | null;
|
348
|
-
}
|
349
|
-
|
344
|
+
} | null;
|
345
|
+
subEvents: {
|
350
346
|
location: string;
|
351
347
|
id: string;
|
352
348
|
name: string;
|
@@ -357,7 +353,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
357
353
|
tagAssistedId: string;
|
358
354
|
tagConfirmedId: string;
|
359
355
|
supraEventId: string | null;
|
360
|
-
}
|
356
|
+
}[];
|
357
|
+
folderId: string | null;
|
358
|
+
tagAssistedId: string;
|
359
|
+
tagConfirmedId: string;
|
360
|
+
supraEventId: string | null;
|
361
361
|
}, {
|
362
362
|
location: string;
|
363
363
|
id: string;
|
@@ -365,11 +365,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
365
365
|
date: Date;
|
366
366
|
created_at: Date;
|
367
367
|
updated_at: Date;
|
368
|
-
|
369
|
-
tagAssistedId: string;
|
370
|
-
tagConfirmedId: string;
|
371
|
-
supraEventId: string | null;
|
372
|
-
subEvents: {
|
368
|
+
supraEvent: {
|
373
369
|
location: string;
|
374
370
|
id: string;
|
375
371
|
name: string;
|
@@ -380,8 +376,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
380
376
|
tagAssistedId: string;
|
381
377
|
tagConfirmedId: string;
|
382
378
|
supraEventId: string | null;
|
383
|
-
}
|
384
|
-
|
379
|
+
} | null;
|
380
|
+
subEvents: {
|
385
381
|
location: string;
|
386
382
|
id: string;
|
387
383
|
name: string;
|
@@ -392,7 +388,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
392
388
|
tagAssistedId: string;
|
393
389
|
tagConfirmedId: string;
|
394
390
|
supraEventId: string | null;
|
395
|
-
}
|
391
|
+
}[];
|
392
|
+
folderId: string | null;
|
393
|
+
tagAssistedId: string;
|
394
|
+
tagConfirmedId: string;
|
395
|
+
supraEventId: string | null;
|
396
396
|
}>, "many">;
|
397
397
|
}, "strip", z.ZodTypeAny, {
|
398
398
|
folders: {
|
@@ -408,11 +408,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
408
408
|
date: Date;
|
409
409
|
created_at: Date;
|
410
410
|
updated_at: Date;
|
411
|
-
|
412
|
-
tagAssistedId: string;
|
413
|
-
tagConfirmedId: string;
|
414
|
-
supraEventId: string | null;
|
415
|
-
subEvents: {
|
411
|
+
supraEvent: {
|
416
412
|
location: string;
|
417
413
|
id: string;
|
418
414
|
name: string;
|
@@ -423,8 +419,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
423
419
|
tagAssistedId: string;
|
424
420
|
tagConfirmedId: string;
|
425
421
|
supraEventId: string | null;
|
426
|
-
}
|
427
|
-
|
422
|
+
} | null;
|
423
|
+
subEvents: {
|
428
424
|
location: string;
|
429
425
|
id: string;
|
430
426
|
name: string;
|
@@ -435,7 +431,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
435
431
|
tagAssistedId: string;
|
436
432
|
tagConfirmedId: string;
|
437
433
|
supraEventId: string | null;
|
438
|
-
}
|
434
|
+
}[];
|
435
|
+
folderId: string | null;
|
436
|
+
tagAssistedId: string;
|
437
|
+
tagConfirmedId: string;
|
438
|
+
supraEventId: string | null;
|
439
439
|
}[];
|
440
440
|
}[];
|
441
441
|
withoutFolder: {
|
@@ -445,11 +445,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
445
445
|
date: Date;
|
446
446
|
created_at: Date;
|
447
447
|
updated_at: Date;
|
448
|
-
|
449
|
-
tagAssistedId: string;
|
450
|
-
tagConfirmedId: string;
|
451
|
-
supraEventId: string | null;
|
452
|
-
subEvents: {
|
448
|
+
supraEvent: {
|
453
449
|
location: string;
|
454
450
|
id: string;
|
455
451
|
name: string;
|
@@ -460,8 +456,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
460
456
|
tagAssistedId: string;
|
461
457
|
tagConfirmedId: string;
|
462
458
|
supraEventId: string | null;
|
463
|
-
}
|
464
|
-
|
459
|
+
} | null;
|
460
|
+
subEvents: {
|
465
461
|
location: string;
|
466
462
|
id: string;
|
467
463
|
name: string;
|
@@ -472,7 +468,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
472
468
|
tagAssistedId: string;
|
473
469
|
tagConfirmedId: string;
|
474
470
|
supraEventId: string | null;
|
475
|
-
}
|
471
|
+
}[];
|
472
|
+
folderId: string | null;
|
473
|
+
tagAssistedId: string;
|
474
|
+
tagConfirmedId: string;
|
475
|
+
supraEventId: string | null;
|
476
476
|
}[];
|
477
477
|
}, {
|
478
478
|
folders: {
|
@@ -488,11 +488,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
488
488
|
date: Date;
|
489
489
|
created_at: Date;
|
490
490
|
updated_at: Date;
|
491
|
-
|
492
|
-
tagAssistedId: string;
|
493
|
-
tagConfirmedId: string;
|
494
|
-
supraEventId: string | null;
|
495
|
-
subEvents: {
|
491
|
+
supraEvent: {
|
496
492
|
location: string;
|
497
493
|
id: string;
|
498
494
|
name: string;
|
@@ -503,8 +499,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
503
499
|
tagAssistedId: string;
|
504
500
|
tagConfirmedId: string;
|
505
501
|
supraEventId: string | null;
|
506
|
-
}
|
507
|
-
|
502
|
+
} | null;
|
503
|
+
subEvents: {
|
508
504
|
location: string;
|
509
505
|
id: string;
|
510
506
|
name: string;
|
@@ -515,7 +511,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
515
511
|
tagAssistedId: string;
|
516
512
|
tagConfirmedId: string;
|
517
513
|
supraEventId: string | null;
|
518
|
-
}
|
514
|
+
}[];
|
515
|
+
folderId: string | null;
|
516
|
+
tagAssistedId: string;
|
517
|
+
tagConfirmedId: string;
|
518
|
+
supraEventId: string | null;
|
519
519
|
}[];
|
520
520
|
}[];
|
521
521
|
withoutFolder: {
|
@@ -525,11 +525,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
525
525
|
date: Date;
|
526
526
|
created_at: Date;
|
527
527
|
updated_at: Date;
|
528
|
-
|
529
|
-
tagAssistedId: string;
|
530
|
-
tagConfirmedId: string;
|
531
|
-
supraEventId: string | null;
|
532
|
-
subEvents: {
|
528
|
+
supraEvent: {
|
533
529
|
location: string;
|
534
530
|
id: string;
|
535
531
|
name: string;
|
@@ -540,8 +536,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
540
536
|
tagAssistedId: string;
|
541
537
|
tagConfirmedId: string;
|
542
538
|
supraEventId: string | null;
|
543
|
-
}
|
544
|
-
|
539
|
+
} | null;
|
540
|
+
subEvents: {
|
545
541
|
location: string;
|
546
542
|
id: string;
|
547
543
|
name: string;
|
@@ -552,7 +548,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
552
548
|
tagAssistedId: string;
|
553
549
|
tagConfirmedId: string;
|
554
550
|
supraEventId: string | null;
|
555
|
-
}
|
551
|
+
}[];
|
552
|
+
folderId: string | null;
|
553
|
+
tagAssistedId: string;
|
554
|
+
tagConfirmedId: string;
|
555
|
+
supraEventId: string | null;
|
556
556
|
}[];
|
557
557
|
}>;
|
558
558
|
declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -648,11 +648,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
648
648
|
date: string;
|
649
649
|
created_at: string;
|
650
650
|
updated_at: string;
|
651
|
-
|
652
|
-
tagAssistedId: string;
|
653
|
-
tagConfirmedId: string;
|
654
|
-
supraEventId: string | null;
|
655
|
-
subEvents: {
|
651
|
+
supraEvent: {
|
656
652
|
location: string;
|
657
653
|
id: string;
|
658
654
|
name: string;
|
@@ -663,8 +659,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
663
659
|
tagAssistedId: string;
|
664
660
|
tagConfirmedId: string;
|
665
661
|
supraEventId: string | null;
|
666
|
-
}
|
667
|
-
|
662
|
+
} | null;
|
663
|
+
subEvents: {
|
668
664
|
location: string;
|
669
665
|
id: string;
|
670
666
|
name: string;
|
@@ -675,7 +671,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
675
671
|
tagAssistedId: string;
|
676
672
|
tagConfirmedId: string;
|
677
673
|
supraEventId: string | null;
|
678
|
-
}
|
674
|
+
}[];
|
675
|
+
folderId: string | null;
|
676
|
+
tagAssistedId: string;
|
677
|
+
tagConfirmedId: string;
|
678
|
+
supraEventId: string | null;
|
679
679
|
}, {
|
680
680
|
location: string;
|
681
681
|
id: string;
|
@@ -683,11 +683,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
683
683
|
date: string;
|
684
684
|
created_at: string;
|
685
685
|
updated_at: string;
|
686
|
-
|
687
|
-
tagAssistedId: string;
|
688
|
-
tagConfirmedId: string;
|
689
|
-
supraEventId: string | null;
|
690
|
-
subEvents: {
|
686
|
+
supraEvent: {
|
691
687
|
location: string;
|
692
688
|
id: string;
|
693
689
|
name: string;
|
@@ -698,8 +694,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
698
694
|
tagAssistedId: string;
|
699
695
|
tagConfirmedId: string;
|
700
696
|
supraEventId: string | null;
|
701
|
-
}
|
702
|
-
|
697
|
+
} | null;
|
698
|
+
subEvents: {
|
703
699
|
location: string;
|
704
700
|
id: string;
|
705
701
|
name: string;
|
@@ -710,7 +706,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
710
706
|
tagAssistedId: string;
|
711
707
|
tagConfirmedId: string;
|
712
708
|
supraEventId: string | null;
|
713
|
-
}
|
709
|
+
}[];
|
710
|
+
folderId: string | null;
|
711
|
+
tagAssistedId: string;
|
712
|
+
tagConfirmedId: string;
|
713
|
+
supraEventId: string | null;
|
714
714
|
}>, "many">;
|
715
715
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
716
716
|
id: string;
|
@@ -725,11 +725,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
725
725
|
date: string;
|
726
726
|
created_at: string;
|
727
727
|
updated_at: string;
|
728
|
-
|
729
|
-
tagAssistedId: string;
|
730
|
-
tagConfirmedId: string;
|
731
|
-
supraEventId: string | null;
|
732
|
-
subEvents: {
|
728
|
+
supraEvent: {
|
733
729
|
location: string;
|
734
730
|
id: string;
|
735
731
|
name: string;
|
@@ -740,8 +736,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
740
736
|
tagAssistedId: string;
|
741
737
|
tagConfirmedId: string;
|
742
738
|
supraEventId: string | null;
|
743
|
-
}
|
744
|
-
|
739
|
+
} | null;
|
740
|
+
subEvents: {
|
745
741
|
location: string;
|
746
742
|
id: string;
|
747
743
|
name: string;
|
@@ -752,7 +748,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
752
748
|
tagAssistedId: string;
|
753
749
|
tagConfirmedId: string;
|
754
750
|
supraEventId: string | null;
|
755
|
-
}
|
751
|
+
}[];
|
752
|
+
folderId: string | null;
|
753
|
+
tagAssistedId: string;
|
754
|
+
tagConfirmedId: string;
|
755
|
+
supraEventId: string | null;
|
756
756
|
}[];
|
757
757
|
}, {
|
758
758
|
id: string;
|
@@ -767,11 +767,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
767
767
|
date: string;
|
768
768
|
created_at: string;
|
769
769
|
updated_at: string;
|
770
|
-
|
771
|
-
tagAssistedId: string;
|
772
|
-
tagConfirmedId: string;
|
773
|
-
supraEventId: string | null;
|
774
|
-
subEvents: {
|
770
|
+
supraEvent: {
|
775
771
|
location: string;
|
776
772
|
id: string;
|
777
773
|
name: string;
|
@@ -782,8 +778,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
782
778
|
tagAssistedId: string;
|
783
779
|
tagConfirmedId: string;
|
784
780
|
supraEventId: string | null;
|
785
|
-
}
|
786
|
-
|
781
|
+
} | null;
|
782
|
+
subEvents: {
|
787
783
|
location: string;
|
788
784
|
id: string;
|
789
785
|
name: string;
|
@@ -794,7 +790,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
794
790
|
tagAssistedId: string;
|
795
791
|
tagConfirmedId: string;
|
796
792
|
supraEventId: string | null;
|
797
|
-
}
|
793
|
+
}[];
|
794
|
+
folderId: string | null;
|
795
|
+
tagAssistedId: string;
|
796
|
+
tagConfirmedId: string;
|
797
|
+
supraEventId: string | null;
|
798
798
|
}[];
|
799
799
|
}>, "many">;
|
800
800
|
withoutFolder: z.ZodArray<z.ZodObject<{
|
@@ -883,11 +883,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
883
883
|
date: string;
|
884
884
|
created_at: string;
|
885
885
|
updated_at: string;
|
886
|
-
|
887
|
-
tagAssistedId: string;
|
888
|
-
tagConfirmedId: string;
|
889
|
-
supraEventId: string | null;
|
890
|
-
subEvents: {
|
886
|
+
supraEvent: {
|
891
887
|
location: string;
|
892
888
|
id: string;
|
893
889
|
name: string;
|
@@ -898,8 +894,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
898
894
|
tagAssistedId: string;
|
899
895
|
tagConfirmedId: string;
|
900
896
|
supraEventId: string | null;
|
901
|
-
}
|
902
|
-
|
897
|
+
} | null;
|
898
|
+
subEvents: {
|
903
899
|
location: string;
|
904
900
|
id: string;
|
905
901
|
name: string;
|
@@ -910,7 +906,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
910
906
|
tagAssistedId: string;
|
911
907
|
tagConfirmedId: string;
|
912
908
|
supraEventId: string | null;
|
913
|
-
}
|
909
|
+
}[];
|
910
|
+
folderId: string | null;
|
911
|
+
tagAssistedId: string;
|
912
|
+
tagConfirmedId: string;
|
913
|
+
supraEventId: string | null;
|
914
914
|
}, {
|
915
915
|
location: string;
|
916
916
|
id: string;
|
@@ -918,11 +918,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
918
918
|
date: string;
|
919
919
|
created_at: string;
|
920
920
|
updated_at: string;
|
921
|
-
|
922
|
-
tagAssistedId: string;
|
923
|
-
tagConfirmedId: string;
|
924
|
-
supraEventId: string | null;
|
925
|
-
subEvents: {
|
921
|
+
supraEvent: {
|
926
922
|
location: string;
|
927
923
|
id: string;
|
928
924
|
name: string;
|
@@ -933,8 +929,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
933
929
|
tagAssistedId: string;
|
934
930
|
tagConfirmedId: string;
|
935
931
|
supraEventId: string | null;
|
936
|
-
}
|
937
|
-
|
932
|
+
} | null;
|
933
|
+
subEvents: {
|
938
934
|
location: string;
|
939
935
|
id: string;
|
940
936
|
name: string;
|
@@ -945,7 +941,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
945
941
|
tagAssistedId: string;
|
946
942
|
tagConfirmedId: string;
|
947
943
|
supraEventId: string | null;
|
948
|
-
}
|
944
|
+
}[];
|
945
|
+
folderId: string | null;
|
946
|
+
tagAssistedId: string;
|
947
|
+
tagConfirmedId: string;
|
948
|
+
supraEventId: string | null;
|
949
949
|
}>, "many">;
|
950
950
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
951
951
|
folders: {
|
@@ -961,11 +961,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
961
961
|
date: string;
|
962
962
|
created_at: string;
|
963
963
|
updated_at: string;
|
964
|
-
|
965
|
-
tagAssistedId: string;
|
966
|
-
tagConfirmedId: string;
|
967
|
-
supraEventId: string | null;
|
968
|
-
subEvents: {
|
964
|
+
supraEvent: {
|
969
965
|
location: string;
|
970
966
|
id: string;
|
971
967
|
name: string;
|
@@ -976,8 +972,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
976
972
|
tagAssistedId: string;
|
977
973
|
tagConfirmedId: string;
|
978
974
|
supraEventId: string | null;
|
979
|
-
}
|
980
|
-
|
975
|
+
} | null;
|
976
|
+
subEvents: {
|
981
977
|
location: string;
|
982
978
|
id: string;
|
983
979
|
name: string;
|
@@ -988,7 +984,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
988
984
|
tagAssistedId: string;
|
989
985
|
tagConfirmedId: string;
|
990
986
|
supraEventId: string | null;
|
991
|
-
}
|
987
|
+
}[];
|
988
|
+
folderId: string | null;
|
989
|
+
tagAssistedId: string;
|
990
|
+
tagConfirmedId: string;
|
991
|
+
supraEventId: string | null;
|
992
992
|
}[];
|
993
993
|
}[];
|
994
994
|
withoutFolder: {
|
@@ -998,11 +998,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
998
998
|
date: string;
|
999
999
|
created_at: string;
|
1000
1000
|
updated_at: string;
|
1001
|
-
|
1002
|
-
tagAssistedId: string;
|
1003
|
-
tagConfirmedId: string;
|
1004
|
-
supraEventId: string | null;
|
1005
|
-
subEvents: {
|
1001
|
+
supraEvent: {
|
1006
1002
|
location: string;
|
1007
1003
|
id: string;
|
1008
1004
|
name: string;
|
@@ -1013,8 +1009,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1013
1009
|
tagAssistedId: string;
|
1014
1010
|
tagConfirmedId: string;
|
1015
1011
|
supraEventId: string | null;
|
1016
|
-
}
|
1017
|
-
|
1012
|
+
} | null;
|
1013
|
+
subEvents: {
|
1018
1014
|
location: string;
|
1019
1015
|
id: string;
|
1020
1016
|
name: string;
|
@@ -1025,7 +1021,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1025
1021
|
tagAssistedId: string;
|
1026
1022
|
tagConfirmedId: string;
|
1027
1023
|
supraEventId: string | null;
|
1028
|
-
}
|
1024
|
+
}[];
|
1025
|
+
folderId: string | null;
|
1026
|
+
tagAssistedId: string;
|
1027
|
+
tagConfirmedId: string;
|
1028
|
+
supraEventId: string | null;
|
1029
1029
|
}[];
|
1030
1030
|
}, {
|
1031
1031
|
folders: {
|
@@ -1041,11 +1041,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1041
1041
|
date: string;
|
1042
1042
|
created_at: string;
|
1043
1043
|
updated_at: string;
|
1044
|
-
|
1045
|
-
tagAssistedId: string;
|
1046
|
-
tagConfirmedId: string;
|
1047
|
-
supraEventId: string | null;
|
1048
|
-
subEvents: {
|
1044
|
+
supraEvent: {
|
1049
1045
|
location: string;
|
1050
1046
|
id: string;
|
1051
1047
|
name: string;
|
@@ -1056,8 +1052,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1056
1052
|
tagAssistedId: string;
|
1057
1053
|
tagConfirmedId: string;
|
1058
1054
|
supraEventId: string | null;
|
1059
|
-
}
|
1060
|
-
|
1055
|
+
} | null;
|
1056
|
+
subEvents: {
|
1061
1057
|
location: string;
|
1062
1058
|
id: string;
|
1063
1059
|
name: string;
|
@@ -1068,7 +1064,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1068
1064
|
tagAssistedId: string;
|
1069
1065
|
tagConfirmedId: string;
|
1070
1066
|
supraEventId: string | null;
|
1071
|
-
}
|
1067
|
+
}[];
|
1068
|
+
folderId: string | null;
|
1069
|
+
tagAssistedId: string;
|
1070
|
+
tagConfirmedId: string;
|
1071
|
+
supraEventId: string | null;
|
1072
1072
|
}[];
|
1073
1073
|
}[];
|
1074
1074
|
withoutFolder: {
|
@@ -1078,11 +1078,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1078
1078
|
date: string;
|
1079
1079
|
created_at: string;
|
1080
1080
|
updated_at: string;
|
1081
|
-
|
1082
|
-
tagAssistedId: string;
|
1083
|
-
tagConfirmedId: string;
|
1084
|
-
supraEventId: string | null;
|
1085
|
-
subEvents: {
|
1081
|
+
supraEvent: {
|
1086
1082
|
location: string;
|
1087
1083
|
id: string;
|
1088
1084
|
name: string;
|
@@ -1093,8 +1089,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1093
1089
|
tagAssistedId: string;
|
1094
1090
|
tagConfirmedId: string;
|
1095
1091
|
supraEventId: string | null;
|
1096
|
-
}
|
1097
|
-
|
1092
|
+
} | null;
|
1093
|
+
subEvents: {
|
1098
1094
|
location: string;
|
1099
1095
|
id: string;
|
1100
1096
|
name: string;
|
@@ -1105,7 +1101,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1105
1101
|
tagAssistedId: string;
|
1106
1102
|
tagConfirmedId: string;
|
1107
1103
|
supraEventId: string | null;
|
1108
|
-
}
|
1104
|
+
}[];
|
1105
|
+
folderId: string | null;
|
1106
|
+
tagAssistedId: string;
|
1107
|
+
tagConfirmedId: string;
|
1108
|
+
supraEventId: string | null;
|
1109
1109
|
}[];
|
1110
1110
|
}>>;
|
1111
1111
|
export declare class GetAllEventsResponseDto extends GetAllEventsResponseDto_base {
|