expo-backend-types 0.46.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.2 → 0.46.0-EXPO-339-Testing-y-bugfixing.1
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/dist/src/event/dto/create-event.dto.d.ts +24 -77
- package/dist/src/event/dto/create-event.dto.js +2 -14
- package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
- package/dist/src/event/dto/event-tickets.dto.d.ts +33 -2
- package/dist/src/event/dto/event-tickets.dto.js +17 -8
- package/dist/src/event/dto/event.dto.d.ts +0 -9
- package/dist/src/event/dto/event.dto.js +0 -13
- package/dist/src/event/dto/get-active-events.dto.d.ts +23 -33
- package/dist/src/event/dto/get-all-event.dto.d.ts +48 -272
- package/dist/src/event/dto/get-all-event.dto.js +2 -2
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +23 -99
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -9
- package/dist/src/event/dto/update-event.dto.d.ts +44 -31
- package/dist/src/event/dto/update-event.dto.js +2 -2
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
- package/dist/src/i18n/es.d.ts +1 -7
- package/dist/src/i18n/es.js +3 -7
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -3
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -30
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -30
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -42
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -42
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +0 -30
- package/dist/types/prisma-schema/edge.js +3 -6
- package/dist/types/prisma-schema/index-browser.js +0 -3
- package/dist/types/prisma-schema/index.d.ts +1 -214
- package/dist/types/prisma-schema/index.js +3 -6
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -9
- package/dist/types/prisma-schema/wasm.js +0 -3
- package/dist/types/schema.d.ts +0 -66
- package/package.json +1 -1
@@ -14,9 +14,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
14
14
|
startingDate: z.ZodDate;
|
15
15
|
endingDate: z.ZodDate;
|
16
16
|
location: z.ZodString;
|
17
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
18
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
19
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
20
17
|
folderId: z.ZodNullable<z.ZodString>;
|
21
18
|
tagAssistedId: z.ZodString;
|
22
19
|
tagConfirmedId: z.ZodString;
|
@@ -32,9 +29,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
32
29
|
startingDate: z.ZodDate;
|
33
30
|
endingDate: z.ZodDate;
|
34
31
|
location: z.ZodString;
|
35
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
36
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
37
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
38
32
|
folderId: z.ZodNullable<z.ZodString>;
|
39
33
|
tagAssistedId: z.ZodString;
|
40
34
|
tagConfirmedId: z.ZodString;
|
@@ -49,12 +43,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
49
43
|
date: Date;
|
50
44
|
startingDate: Date;
|
51
45
|
endingDate: Date;
|
52
|
-
eventPictureUrl: string | null;
|
53
|
-
eventBannerUrl: string | null;
|
54
46
|
created_at: Date;
|
55
47
|
updated_at: Date;
|
56
48
|
active: boolean;
|
57
|
-
eventDescription: string | null;
|
58
49
|
folderId: string | null;
|
59
50
|
tagAssistedId: string;
|
60
51
|
tagConfirmedId: string;
|
@@ -66,12 +57,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
66
57
|
date: Date;
|
67
58
|
startingDate: Date;
|
68
59
|
endingDate: Date;
|
69
|
-
eventPictureUrl: string | null;
|
70
|
-
eventBannerUrl: string | null;
|
71
60
|
created_at: Date;
|
72
61
|
updated_at: Date;
|
73
62
|
active: boolean;
|
74
|
-
eventDescription: string | null;
|
75
63
|
folderId: string | null;
|
76
64
|
tagAssistedId: string;
|
77
65
|
tagConfirmedId: string;
|
@@ -84,9 +72,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
84
72
|
startingDate: z.ZodDate;
|
85
73
|
endingDate: z.ZodDate;
|
86
74
|
location: z.ZodString;
|
87
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
88
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
89
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
90
75
|
folderId: z.ZodNullable<z.ZodString>;
|
91
76
|
tagAssistedId: z.ZodString;
|
92
77
|
tagConfirmedId: z.ZodString;
|
@@ -101,12 +86,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
101
86
|
date: Date;
|
102
87
|
startingDate: Date;
|
103
88
|
endingDate: Date;
|
104
|
-
eventPictureUrl: string | null;
|
105
|
-
eventBannerUrl: string | null;
|
106
89
|
created_at: Date;
|
107
90
|
updated_at: Date;
|
108
91
|
active: boolean;
|
109
|
-
eventDescription: string | null;
|
110
92
|
folderId: string | null;
|
111
93
|
tagAssistedId: string;
|
112
94
|
tagConfirmedId: string;
|
@@ -118,12 +100,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
118
100
|
date: Date;
|
119
101
|
startingDate: Date;
|
120
102
|
endingDate: Date;
|
121
|
-
eventPictureUrl: string | null;
|
122
|
-
eventBannerUrl: string | null;
|
123
103
|
created_at: Date;
|
124
104
|
updated_at: Date;
|
125
105
|
active: boolean;
|
126
|
-
eventDescription: string | null;
|
127
106
|
folderId: string | null;
|
128
107
|
tagAssistedId: string;
|
129
108
|
tagConfirmedId: string;
|
@@ -181,7 +160,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
181
160
|
isExclusive: boolean;
|
182
161
|
};
|
183
162
|
}>, "many">;
|
184
|
-
eventTickets: z.ZodArray<z.ZodObject<Pick<{
|
163
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Pick<{
|
185
164
|
id: z.ZodString;
|
186
165
|
amount: z.ZodNullable<z.ZodNumber>;
|
187
166
|
type: z.ZodNativeEnum<{
|
@@ -200,6 +179,16 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
200
179
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
201
180
|
amount: number | null;
|
202
181
|
price: number | null;
|
182
|
+
}>, {
|
183
|
+
id: string;
|
184
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
185
|
+
amount: number | null;
|
186
|
+
price: number | null;
|
187
|
+
}, {
|
188
|
+
id: string;
|
189
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
190
|
+
amount: number | null;
|
191
|
+
price: number | null;
|
203
192
|
}>, "many">;
|
204
193
|
}>, "strip", z.ZodTypeAny, {
|
205
194
|
location: string;
|
@@ -208,8 +197,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
208
197
|
date: Date;
|
209
198
|
startingDate: Date;
|
210
199
|
endingDate: Date;
|
211
|
-
eventPictureUrl: string | null;
|
212
|
-
eventBannerUrl: string | null;
|
213
200
|
created_at: Date;
|
214
201
|
updated_at: Date;
|
215
202
|
active: boolean;
|
@@ -224,7 +211,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
224
211
|
isExclusive: boolean;
|
225
212
|
};
|
226
213
|
}[];
|
227
|
-
eventDescription: string | null;
|
228
214
|
folderId: string | null;
|
229
215
|
tagAssistedId: string;
|
230
216
|
tagConfirmedId: string;
|
@@ -236,12 +222,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
236
222
|
date: Date;
|
237
223
|
startingDate: Date;
|
238
224
|
endingDate: Date;
|
239
|
-
eventPictureUrl: string | null;
|
240
|
-
eventBannerUrl: string | null;
|
241
225
|
created_at: Date;
|
242
226
|
updated_at: Date;
|
243
227
|
active: boolean;
|
244
|
-
eventDescription: string | null;
|
245
228
|
folderId: string | null;
|
246
229
|
tagAssistedId: string;
|
247
230
|
tagConfirmedId: string;
|
@@ -260,12 +243,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
260
243
|
date: Date;
|
261
244
|
startingDate: Date;
|
262
245
|
endingDate: Date;
|
263
|
-
eventPictureUrl: string | null;
|
264
|
-
eventBannerUrl: string | null;
|
265
246
|
created_at: Date;
|
266
247
|
updated_at: Date;
|
267
248
|
active: boolean;
|
268
|
-
eventDescription: string | null;
|
269
249
|
folderId: string | null;
|
270
250
|
tagAssistedId: string;
|
271
251
|
tagConfirmedId: string;
|
@@ -278,8 +258,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
278
258
|
date: Date;
|
279
259
|
startingDate: Date;
|
280
260
|
endingDate: Date;
|
281
|
-
eventPictureUrl: string | null;
|
282
|
-
eventBannerUrl: string | null;
|
283
261
|
created_at: Date;
|
284
262
|
updated_at: Date;
|
285
263
|
active: boolean;
|
@@ -294,7 +272,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
294
272
|
isExclusive: boolean;
|
295
273
|
};
|
296
274
|
}[];
|
297
|
-
eventDescription: string | null;
|
298
275
|
folderId: string | null;
|
299
276
|
tagAssistedId: string;
|
300
277
|
tagConfirmedId: string;
|
@@ -306,12 +283,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
306
283
|
date: Date;
|
307
284
|
startingDate: Date;
|
308
285
|
endingDate: Date;
|
309
|
-
eventPictureUrl: string | null;
|
310
|
-
eventBannerUrl: string | null;
|
311
286
|
created_at: Date;
|
312
287
|
updated_at: Date;
|
313
288
|
active: boolean;
|
314
|
-
eventDescription: string | null;
|
315
289
|
folderId: string | null;
|
316
290
|
tagAssistedId: string;
|
317
291
|
tagConfirmedId: string;
|
@@ -330,12 +304,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
330
304
|
date: Date;
|
331
305
|
startingDate: Date;
|
332
306
|
endingDate: Date;
|
333
|
-
eventPictureUrl: string | null;
|
334
|
-
eventBannerUrl: string | null;
|
335
307
|
created_at: Date;
|
336
308
|
updated_at: Date;
|
337
309
|
active: boolean;
|
338
|
-
eventDescription: string | null;
|
339
310
|
folderId: string | null;
|
340
311
|
tagAssistedId: string;
|
341
312
|
tagConfirmedId: string;
|
@@ -355,8 +326,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
355
326
|
date: Date;
|
356
327
|
startingDate: Date;
|
357
328
|
endingDate: Date;
|
358
|
-
eventPictureUrl: string | null;
|
359
|
-
eventBannerUrl: string | null;
|
360
329
|
created_at: Date;
|
361
330
|
updated_at: Date;
|
362
331
|
active: boolean;
|
@@ -371,7 +340,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
371
340
|
isExclusive: boolean;
|
372
341
|
};
|
373
342
|
}[];
|
374
|
-
eventDescription: string | null;
|
375
343
|
folderId: string | null;
|
376
344
|
tagAssistedId: string;
|
377
345
|
tagConfirmedId: string;
|
@@ -383,12 +351,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
383
351
|
date: Date;
|
384
352
|
startingDate: Date;
|
385
353
|
endingDate: Date;
|
386
|
-
eventPictureUrl: string | null;
|
387
|
-
eventBannerUrl: string | null;
|
388
354
|
created_at: Date;
|
389
355
|
updated_at: Date;
|
390
356
|
active: boolean;
|
391
|
-
eventDescription: string | null;
|
392
357
|
folderId: string | null;
|
393
358
|
tagAssistedId: string;
|
394
359
|
tagConfirmedId: string;
|
@@ -407,12 +372,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
407
372
|
date: Date;
|
408
373
|
startingDate: Date;
|
409
374
|
endingDate: Date;
|
410
|
-
eventPictureUrl: string | null;
|
411
|
-
eventBannerUrl: string | null;
|
412
375
|
created_at: Date;
|
413
376
|
updated_at: Date;
|
414
377
|
active: boolean;
|
415
|
-
eventDescription: string | null;
|
416
378
|
folderId: string | null;
|
417
379
|
tagAssistedId: string;
|
418
380
|
tagConfirmedId: string;
|
@@ -432,8 +394,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
432
394
|
date: Date;
|
433
395
|
startingDate: Date;
|
434
396
|
endingDate: Date;
|
435
|
-
eventPictureUrl: string | null;
|
436
|
-
eventBannerUrl: string | null;
|
437
397
|
created_at: Date;
|
438
398
|
updated_at: Date;
|
439
399
|
active: boolean;
|
@@ -448,7 +408,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
448
408
|
isExclusive: boolean;
|
449
409
|
};
|
450
410
|
}[];
|
451
|
-
eventDescription: string | null;
|
452
411
|
folderId: string | null;
|
453
412
|
tagAssistedId: string;
|
454
413
|
tagConfirmedId: string;
|
@@ -460,12 +419,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
460
419
|
date: Date;
|
461
420
|
startingDate: Date;
|
462
421
|
endingDate: Date;
|
463
|
-
eventPictureUrl: string | null;
|
464
|
-
eventBannerUrl: string | null;
|
465
422
|
created_at: Date;
|
466
423
|
updated_at: Date;
|
467
424
|
active: boolean;
|
468
|
-
eventDescription: string | null;
|
469
425
|
folderId: string | null;
|
470
426
|
tagAssistedId: string;
|
471
427
|
tagConfirmedId: string;
|
@@ -484,12 +440,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
484
440
|
date: Date;
|
485
441
|
startingDate: Date;
|
486
442
|
endingDate: Date;
|
487
|
-
eventPictureUrl: string | null;
|
488
|
-
eventBannerUrl: string | null;
|
489
443
|
created_at: Date;
|
490
444
|
updated_at: Date;
|
491
445
|
active: boolean;
|
492
|
-
eventDescription: string | null;
|
493
446
|
folderId: string | null;
|
494
447
|
tagAssistedId: string;
|
495
448
|
tagConfirmedId: string;
|
@@ -504,9 +457,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
504
457
|
startingDate: z.ZodDate;
|
505
458
|
endingDate: z.ZodDate;
|
506
459
|
location: z.ZodString;
|
507
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
508
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
509
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
510
460
|
folderId: z.ZodNullable<z.ZodString>;
|
511
461
|
tagAssistedId: z.ZodString;
|
512
462
|
tagConfirmedId: z.ZodString;
|
@@ -522,9 +472,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
522
472
|
startingDate: z.ZodDate;
|
523
473
|
endingDate: z.ZodDate;
|
524
474
|
location: z.ZodString;
|
525
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
526
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
527
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
528
475
|
folderId: z.ZodNullable<z.ZodString>;
|
529
476
|
tagAssistedId: z.ZodString;
|
530
477
|
tagConfirmedId: z.ZodString;
|
@@ -539,12 +486,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
539
486
|
date: Date;
|
540
487
|
startingDate: Date;
|
541
488
|
endingDate: Date;
|
542
|
-
eventPictureUrl: string | null;
|
543
|
-
eventBannerUrl: string | null;
|
544
489
|
created_at: Date;
|
545
490
|
updated_at: Date;
|
546
491
|
active: boolean;
|
547
|
-
eventDescription: string | null;
|
548
492
|
folderId: string | null;
|
549
493
|
tagAssistedId: string;
|
550
494
|
tagConfirmedId: string;
|
@@ -556,12 +500,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
556
500
|
date: Date;
|
557
501
|
startingDate: Date;
|
558
502
|
endingDate: Date;
|
559
|
-
eventPictureUrl: string | null;
|
560
|
-
eventBannerUrl: string | null;
|
561
503
|
created_at: Date;
|
562
504
|
updated_at: Date;
|
563
505
|
active: boolean;
|
564
|
-
eventDescription: string | null;
|
565
506
|
folderId: string | null;
|
566
507
|
tagAssistedId: string;
|
567
508
|
tagConfirmedId: string;
|
@@ -574,9 +515,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
574
515
|
startingDate: z.ZodDate;
|
575
516
|
endingDate: z.ZodDate;
|
576
517
|
location: z.ZodString;
|
577
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
578
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
579
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
580
518
|
folderId: z.ZodNullable<z.ZodString>;
|
581
519
|
tagAssistedId: z.ZodString;
|
582
520
|
tagConfirmedId: z.ZodString;
|
@@ -591,12 +529,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
591
529
|
date: Date;
|
592
530
|
startingDate: Date;
|
593
531
|
endingDate: Date;
|
594
|
-
eventPictureUrl: string | null;
|
595
|
-
eventBannerUrl: string | null;
|
596
532
|
created_at: Date;
|
597
533
|
updated_at: Date;
|
598
534
|
active: boolean;
|
599
|
-
eventDescription: string | null;
|
600
535
|
folderId: string | null;
|
601
536
|
tagAssistedId: string;
|
602
537
|
tagConfirmedId: string;
|
@@ -608,12 +543,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
608
543
|
date: Date;
|
609
544
|
startingDate: Date;
|
610
545
|
endingDate: Date;
|
611
|
-
eventPictureUrl: string | null;
|
612
|
-
eventBannerUrl: string | null;
|
613
546
|
created_at: Date;
|
614
547
|
updated_at: Date;
|
615
548
|
active: boolean;
|
616
|
-
eventDescription: string | null;
|
617
549
|
folderId: string | null;
|
618
550
|
tagAssistedId: string;
|
619
551
|
tagConfirmedId: string;
|
@@ -671,7 +603,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
671
603
|
isExclusive: boolean;
|
672
604
|
};
|
673
605
|
}>, "many">;
|
674
|
-
eventTickets: z.ZodArray<z.ZodObject<Pick<{
|
606
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Pick<{
|
675
607
|
id: z.ZodString;
|
676
608
|
amount: z.ZodNullable<z.ZodNumber>;
|
677
609
|
type: z.ZodNativeEnum<{
|
@@ -690,6 +622,16 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
690
622
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
691
623
|
amount: number | null;
|
692
624
|
price: number | null;
|
625
|
+
}>, {
|
626
|
+
id: string;
|
627
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
628
|
+
amount: number | null;
|
629
|
+
price: number | null;
|
630
|
+
}, {
|
631
|
+
id: string;
|
632
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
633
|
+
amount: number | null;
|
634
|
+
price: number | null;
|
693
635
|
}>, "many">;
|
694
636
|
}>, "strip", z.ZodTypeAny, {
|
695
637
|
location: string;
|
@@ -698,8 +640,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
698
640
|
date: Date;
|
699
641
|
startingDate: Date;
|
700
642
|
endingDate: Date;
|
701
|
-
eventPictureUrl: string | null;
|
702
|
-
eventBannerUrl: string | null;
|
703
643
|
created_at: Date;
|
704
644
|
updated_at: Date;
|
705
645
|
active: boolean;
|
@@ -714,7 +654,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
714
654
|
isExclusive: boolean;
|
715
655
|
};
|
716
656
|
}[];
|
717
|
-
eventDescription: string | null;
|
718
657
|
folderId: string | null;
|
719
658
|
tagAssistedId: string;
|
720
659
|
tagConfirmedId: string;
|
@@ -726,12 +665,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
726
665
|
date: Date;
|
727
666
|
startingDate: Date;
|
728
667
|
endingDate: Date;
|
729
|
-
eventPictureUrl: string | null;
|
730
|
-
eventBannerUrl: string | null;
|
731
668
|
created_at: Date;
|
732
669
|
updated_at: Date;
|
733
670
|
active: boolean;
|
734
|
-
eventDescription: string | null;
|
735
671
|
folderId: string | null;
|
736
672
|
tagAssistedId: string;
|
737
673
|
tagConfirmedId: string;
|
@@ -750,12 +686,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
750
686
|
date: Date;
|
751
687
|
startingDate: Date;
|
752
688
|
endingDate: Date;
|
753
|
-
eventPictureUrl: string | null;
|
754
|
-
eventBannerUrl: string | null;
|
755
689
|
created_at: Date;
|
756
690
|
updated_at: Date;
|
757
691
|
active: boolean;
|
758
|
-
eventDescription: string | null;
|
759
692
|
folderId: string | null;
|
760
693
|
tagAssistedId: string;
|
761
694
|
tagConfirmedId: string;
|
@@ -768,8 +701,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
768
701
|
date: Date;
|
769
702
|
startingDate: Date;
|
770
703
|
endingDate: Date;
|
771
|
-
eventPictureUrl: string | null;
|
772
|
-
eventBannerUrl: string | null;
|
773
704
|
created_at: Date;
|
774
705
|
updated_at: Date;
|
775
706
|
active: boolean;
|
@@ -784,7 +715,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
784
715
|
isExclusive: boolean;
|
785
716
|
};
|
786
717
|
}[];
|
787
|
-
eventDescription: string | null;
|
788
718
|
folderId: string | null;
|
789
719
|
tagAssistedId: string;
|
790
720
|
tagConfirmedId: string;
|
@@ -796,12 +726,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
796
726
|
date: Date;
|
797
727
|
startingDate: Date;
|
798
728
|
endingDate: Date;
|
799
|
-
eventPictureUrl: string | null;
|
800
|
-
eventBannerUrl: string | null;
|
801
729
|
created_at: Date;
|
802
730
|
updated_at: Date;
|
803
731
|
active: boolean;
|
804
|
-
eventDescription: string | null;
|
805
732
|
folderId: string | null;
|
806
733
|
tagAssistedId: string;
|
807
734
|
tagConfirmedId: string;
|
@@ -820,12 +747,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
820
747
|
date: Date;
|
821
748
|
startingDate: Date;
|
822
749
|
endingDate: Date;
|
823
|
-
eventPictureUrl: string | null;
|
824
|
-
eventBannerUrl: string | null;
|
825
750
|
created_at: Date;
|
826
751
|
updated_at: Date;
|
827
752
|
active: boolean;
|
828
|
-
eventDescription: string | null;
|
829
753
|
folderId: string | null;
|
830
754
|
tagAssistedId: string;
|
831
755
|
tagConfirmedId: string;
|
@@ -846,8 +770,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
846
770
|
date: Date;
|
847
771
|
startingDate: Date;
|
848
772
|
endingDate: Date;
|
849
|
-
eventPictureUrl: string | null;
|
850
|
-
eventBannerUrl: string | null;
|
851
773
|
created_at: Date;
|
852
774
|
updated_at: Date;
|
853
775
|
active: boolean;
|
@@ -862,7 +784,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
862
784
|
isExclusive: boolean;
|
863
785
|
};
|
864
786
|
}[];
|
865
|
-
eventDescription: string | null;
|
866
787
|
folderId: string | null;
|
867
788
|
tagAssistedId: string;
|
868
789
|
tagConfirmedId: string;
|
@@ -874,12 +795,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
874
795
|
date: Date;
|
875
796
|
startingDate: Date;
|
876
797
|
endingDate: Date;
|
877
|
-
eventPictureUrl: string | null;
|
878
|
-
eventBannerUrl: string | null;
|
879
798
|
created_at: Date;
|
880
799
|
updated_at: Date;
|
881
800
|
active: boolean;
|
882
|
-
eventDescription: string | null;
|
883
801
|
folderId: string | null;
|
884
802
|
tagAssistedId: string;
|
885
803
|
tagConfirmedId: string;
|
@@ -898,12 +816,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
898
816
|
date: Date;
|
899
817
|
startingDate: Date;
|
900
818
|
endingDate: Date;
|
901
|
-
eventPictureUrl: string | null;
|
902
|
-
eventBannerUrl: string | null;
|
903
819
|
created_at: Date;
|
904
820
|
updated_at: Date;
|
905
821
|
active: boolean;
|
906
|
-
eventDescription: string | null;
|
907
822
|
folderId: string | null;
|
908
823
|
tagAssistedId: string;
|
909
824
|
tagConfirmedId: string;
|
@@ -918,8 +833,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
918
833
|
date: Date;
|
919
834
|
startingDate: Date;
|
920
835
|
endingDate: Date;
|
921
|
-
eventPictureUrl: string | null;
|
922
|
-
eventBannerUrl: string | null;
|
923
836
|
created_at: Date;
|
924
837
|
updated_at: Date;
|
925
838
|
active: boolean;
|
@@ -934,7 +847,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
934
847
|
isExclusive: boolean;
|
935
848
|
};
|
936
849
|
}[];
|
937
|
-
eventDescription: string | null;
|
938
850
|
folderId: string | null;
|
939
851
|
tagAssistedId: string;
|
940
852
|
tagConfirmedId: string;
|
@@ -946,12 +858,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
946
858
|
date: Date;
|
947
859
|
startingDate: Date;
|
948
860
|
endingDate: Date;
|
949
|
-
eventPictureUrl: string | null;
|
950
|
-
eventBannerUrl: string | null;
|
951
861
|
created_at: Date;
|
952
862
|
updated_at: Date;
|
953
863
|
active: boolean;
|
954
|
-
eventDescription: string | null;
|
955
864
|
folderId: string | null;
|
956
865
|
tagAssistedId: string;
|
957
866
|
tagConfirmedId: string;
|
@@ -970,12 +879,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
970
879
|
date: Date;
|
971
880
|
startingDate: Date;
|
972
881
|
endingDate: Date;
|
973
|
-
eventPictureUrl: string | null;
|
974
|
-
eventBannerUrl: string | null;
|
975
882
|
created_at: Date;
|
976
883
|
updated_at: Date;
|
977
884
|
active: boolean;
|
978
|
-
eventDescription: string | null;
|
979
885
|
folderId: string | null;
|
980
886
|
tagAssistedId: string;
|
981
887
|
tagConfirmedId: string;
|
@@ -996,8 +902,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
996
902
|
date: Date;
|
997
903
|
startingDate: Date;
|
998
904
|
endingDate: Date;
|
999
|
-
eventPictureUrl: string | null;
|
1000
|
-
eventBannerUrl: string | null;
|
1001
905
|
created_at: Date;
|
1002
906
|
updated_at: Date;
|
1003
907
|
active: boolean;
|
@@ -1012,7 +916,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1012
916
|
isExclusive: boolean;
|
1013
917
|
};
|
1014
918
|
}[];
|
1015
|
-
eventDescription: string | null;
|
1016
919
|
folderId: string | null;
|
1017
920
|
tagAssistedId: string;
|
1018
921
|
tagConfirmedId: string;
|
@@ -1024,12 +927,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1024
927
|
date: Date;
|
1025
928
|
startingDate: Date;
|
1026
929
|
endingDate: Date;
|
1027
|
-
eventPictureUrl: string | null;
|
1028
|
-
eventBannerUrl: string | null;
|
1029
930
|
created_at: Date;
|
1030
931
|
updated_at: Date;
|
1031
932
|
active: boolean;
|
1032
|
-
eventDescription: string | null;
|
1033
933
|
folderId: string | null;
|
1034
934
|
tagAssistedId: string;
|
1035
935
|
tagConfirmedId: string;
|
@@ -1048,12 +948,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1048
948
|
date: Date;
|
1049
949
|
startingDate: Date;
|
1050
950
|
endingDate: Date;
|
1051
|
-
eventPictureUrl: string | null;
|
1052
|
-
eventBannerUrl: string | null;
|
1053
951
|
created_at: Date;
|
1054
952
|
updated_at: Date;
|
1055
953
|
active: boolean;
|
1056
|
-
eventDescription: string | null;
|
1057
954
|
folderId: string | null;
|
1058
955
|
tagAssistedId: string;
|
1059
956
|
tagConfirmedId: string;
|
@@ -1068,8 +965,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1068
965
|
date: Date;
|
1069
966
|
startingDate: Date;
|
1070
967
|
endingDate: Date;
|
1071
|
-
eventPictureUrl: string | null;
|
1072
|
-
eventBannerUrl: string | null;
|
1073
968
|
created_at: Date;
|
1074
969
|
updated_at: Date;
|
1075
970
|
active: boolean;
|
@@ -1084,7 +979,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1084
979
|
isExclusive: boolean;
|
1085
980
|
};
|
1086
981
|
}[];
|
1087
|
-
eventDescription: string | null;
|
1088
982
|
folderId: string | null;
|
1089
983
|
tagAssistedId: string;
|
1090
984
|
tagConfirmedId: string;
|
@@ -1096,12 +990,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1096
990
|
date: Date;
|
1097
991
|
startingDate: Date;
|
1098
992
|
endingDate: Date;
|
1099
|
-
eventPictureUrl: string | null;
|
1100
|
-
eventBannerUrl: string | null;
|
1101
993
|
created_at: Date;
|
1102
994
|
updated_at: Date;
|
1103
995
|
active: boolean;
|
1104
|
-
eventDescription: string | null;
|
1105
996
|
folderId: string | null;
|
1106
997
|
tagAssistedId: string;
|
1107
998
|
tagConfirmedId: string;
|
@@ -1120,12 +1011,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1120
1011
|
date: Date;
|
1121
1012
|
startingDate: Date;
|
1122
1013
|
endingDate: Date;
|
1123
|
-
eventPictureUrl: string | null;
|
1124
|
-
eventBannerUrl: string | null;
|
1125
1014
|
created_at: Date;
|
1126
1015
|
updated_at: Date;
|
1127
1016
|
active: boolean;
|
1128
|
-
eventDescription: string | null;
|
1129
1017
|
folderId: string | null;
|
1130
1018
|
tagAssistedId: string;
|
1131
1019
|
tagConfirmedId: string;
|
@@ -1147,9 +1035,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1147
1035
|
startingDate: z.ZodString;
|
1148
1036
|
endingDate: z.ZodString;
|
1149
1037
|
location: z.ZodString;
|
1150
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1151
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1152
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
1153
1038
|
folderId: z.ZodNullable<z.ZodString>;
|
1154
1039
|
tagAssistedId: z.ZodString;
|
1155
1040
|
tagConfirmedId: z.ZodString;
|
@@ -1164,9 +1049,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1164
1049
|
startingDate: z.ZodString;
|
1165
1050
|
endingDate: z.ZodString;
|
1166
1051
|
location: z.ZodString;
|
1167
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1168
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1169
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
1170
1052
|
folderId: z.ZodNullable<z.ZodString>;
|
1171
1053
|
tagAssistedId: z.ZodString;
|
1172
1054
|
tagConfirmedId: z.ZodString;
|
@@ -1181,12 +1063,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1181
1063
|
date: string;
|
1182
1064
|
startingDate: string;
|
1183
1065
|
endingDate: string;
|
1184
|
-
eventPictureUrl: string | null;
|
1185
|
-
eventBannerUrl: string | null;
|
1186
1066
|
created_at: string;
|
1187
1067
|
updated_at: string;
|
1188
1068
|
active: boolean;
|
1189
|
-
eventDescription: string | null;
|
1190
1069
|
folderId: string | null;
|
1191
1070
|
tagAssistedId: string;
|
1192
1071
|
tagConfirmedId: string;
|
@@ -1198,12 +1077,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1198
1077
|
date: string;
|
1199
1078
|
startingDate: string;
|
1200
1079
|
endingDate: string;
|
1201
|
-
eventPictureUrl: string | null;
|
1202
|
-
eventBannerUrl: string | null;
|
1203
1080
|
created_at: string;
|
1204
1081
|
updated_at: string;
|
1205
1082
|
active: boolean;
|
1206
|
-
eventDescription: string | null;
|
1207
1083
|
folderId: string | null;
|
1208
1084
|
tagAssistedId: string;
|
1209
1085
|
tagConfirmedId: string;
|
@@ -1216,9 +1092,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1216
1092
|
startingDate: z.ZodString;
|
1217
1093
|
endingDate: z.ZodString;
|
1218
1094
|
location: z.ZodString;
|
1219
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1220
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1221
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
1222
1095
|
folderId: z.ZodNullable<z.ZodString>;
|
1223
1096
|
tagAssistedId: z.ZodString;
|
1224
1097
|
tagConfirmedId: z.ZodString;
|
@@ -1233,12 +1106,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1233
1106
|
date: string;
|
1234
1107
|
startingDate: string;
|
1235
1108
|
endingDate: string;
|
1236
|
-
eventPictureUrl: string | null;
|
1237
|
-
eventBannerUrl: string | null;
|
1238
1109
|
created_at: string;
|
1239
1110
|
updated_at: string;
|
1240
1111
|
active: boolean;
|
1241
|
-
eventDescription: string | null;
|
1242
1112
|
folderId: string | null;
|
1243
1113
|
tagAssistedId: string;
|
1244
1114
|
tagConfirmedId: string;
|
@@ -1250,12 +1120,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1250
1120
|
date: string;
|
1251
1121
|
startingDate: string;
|
1252
1122
|
endingDate: string;
|
1253
|
-
eventPictureUrl: string | null;
|
1254
|
-
eventBannerUrl: string | null;
|
1255
1123
|
created_at: string;
|
1256
1124
|
updated_at: string;
|
1257
1125
|
active: boolean;
|
1258
|
-
eventDescription: string | null;
|
1259
1126
|
folderId: string | null;
|
1260
1127
|
tagAssistedId: string;
|
1261
1128
|
tagConfirmedId: string;
|
@@ -1307,16 +1174,26 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1307
1174
|
isExclusive: boolean;
|
1308
1175
|
};
|
1309
1176
|
}>, "many">;
|
1310
|
-
eventTickets: z.ZodArray<z.ZodObject<{
|
1177
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Pick<{
|
1311
1178
|
id: z.ZodString;
|
1179
|
+
amount: z.ZodNullable<z.ZodNumber>;
|
1312
1180
|
type: z.ZodNativeEnum<{
|
1313
1181
|
PARTICIPANT: "PARTICIPANT";
|
1314
1182
|
STAFF: "STAFF";
|
1315
1183
|
SPECTATOR: "SPECTATOR";
|
1316
1184
|
}>;
|
1317
|
-
amount: z.ZodNullable<z.ZodNumber>;
|
1318
1185
|
price: z.ZodNullable<z.ZodNumber>;
|
1319
|
-
},
|
1186
|
+
}, "id" | "type" | "amount" | "price">, "strip", z.ZodTypeAny, {
|
1187
|
+
id: string;
|
1188
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1189
|
+
amount: number | null;
|
1190
|
+
price: number | null;
|
1191
|
+
}, {
|
1192
|
+
id: string;
|
1193
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1194
|
+
amount: number | null;
|
1195
|
+
price: number | null;
|
1196
|
+
}>, {
|
1320
1197
|
id: string;
|
1321
1198
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1322
1199
|
amount: number | null;
|
@@ -1334,8 +1211,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1334
1211
|
date: string;
|
1335
1212
|
startingDate: string;
|
1336
1213
|
endingDate: string;
|
1337
|
-
eventPictureUrl: string | null;
|
1338
|
-
eventBannerUrl: string | null;
|
1339
1214
|
created_at: string;
|
1340
1215
|
updated_at: string;
|
1341
1216
|
active: boolean;
|
@@ -1350,7 +1225,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1350
1225
|
isExclusive: boolean;
|
1351
1226
|
};
|
1352
1227
|
}[];
|
1353
|
-
eventDescription: string | null;
|
1354
1228
|
folderId: string | null;
|
1355
1229
|
tagAssistedId: string;
|
1356
1230
|
tagConfirmedId: string;
|
@@ -1362,12 +1236,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1362
1236
|
date: string;
|
1363
1237
|
startingDate: string;
|
1364
1238
|
endingDate: string;
|
1365
|
-
eventPictureUrl: string | null;
|
1366
|
-
eventBannerUrl: string | null;
|
1367
1239
|
created_at: string;
|
1368
1240
|
updated_at: string;
|
1369
1241
|
active: boolean;
|
1370
|
-
eventDescription: string | null;
|
1371
1242
|
folderId: string | null;
|
1372
1243
|
tagAssistedId: string;
|
1373
1244
|
tagConfirmedId: string;
|
@@ -1386,12 +1257,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1386
1257
|
date: string;
|
1387
1258
|
startingDate: string;
|
1388
1259
|
endingDate: string;
|
1389
|
-
eventPictureUrl: string | null;
|
1390
|
-
eventBannerUrl: string | null;
|
1391
1260
|
created_at: string;
|
1392
1261
|
updated_at: string;
|
1393
1262
|
active: boolean;
|
1394
|
-
eventDescription: string | null;
|
1395
1263
|
folderId: string | null;
|
1396
1264
|
tagAssistedId: string;
|
1397
1265
|
tagConfirmedId: string;
|
@@ -1404,8 +1272,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1404
1272
|
date: string;
|
1405
1273
|
startingDate: string;
|
1406
1274
|
endingDate: string;
|
1407
|
-
eventPictureUrl: string | null;
|
1408
|
-
eventBannerUrl: string | null;
|
1409
1275
|
created_at: string;
|
1410
1276
|
updated_at: string;
|
1411
1277
|
active: boolean;
|
@@ -1420,7 +1286,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1420
1286
|
isExclusive: boolean;
|
1421
1287
|
};
|
1422
1288
|
}[];
|
1423
|
-
eventDescription: string | null;
|
1424
1289
|
folderId: string | null;
|
1425
1290
|
tagAssistedId: string;
|
1426
1291
|
tagConfirmedId: string;
|
@@ -1432,12 +1297,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1432
1297
|
date: string;
|
1433
1298
|
startingDate: string;
|
1434
1299
|
endingDate: string;
|
1435
|
-
eventPictureUrl: string | null;
|
1436
|
-
eventBannerUrl: string | null;
|
1437
1300
|
created_at: string;
|
1438
1301
|
updated_at: string;
|
1439
1302
|
active: boolean;
|
1440
|
-
eventDescription: string | null;
|
1441
1303
|
folderId: string | null;
|
1442
1304
|
tagAssistedId: string;
|
1443
1305
|
tagConfirmedId: string;
|
@@ -1456,12 +1318,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1456
1318
|
date: string;
|
1457
1319
|
startingDate: string;
|
1458
1320
|
endingDate: string;
|
1459
|
-
eventPictureUrl: string | null;
|
1460
|
-
eventBannerUrl: string | null;
|
1461
1321
|
created_at: string;
|
1462
1322
|
updated_at: string;
|
1463
1323
|
active: boolean;
|
1464
|
-
eventDescription: string | null;
|
1465
1324
|
folderId: string | null;
|
1466
1325
|
tagAssistedId: string;
|
1467
1326
|
tagConfirmedId: string;
|
@@ -1481,8 +1340,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1481
1340
|
date: string;
|
1482
1341
|
startingDate: string;
|
1483
1342
|
endingDate: string;
|
1484
|
-
eventPictureUrl: string | null;
|
1485
|
-
eventBannerUrl: string | null;
|
1486
1343
|
created_at: string;
|
1487
1344
|
updated_at: string;
|
1488
1345
|
active: boolean;
|
@@ -1497,7 +1354,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1497
1354
|
isExclusive: boolean;
|
1498
1355
|
};
|
1499
1356
|
}[];
|
1500
|
-
eventDescription: string | null;
|
1501
1357
|
folderId: string | null;
|
1502
1358
|
tagAssistedId: string;
|
1503
1359
|
tagConfirmedId: string;
|
@@ -1509,12 +1365,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1509
1365
|
date: string;
|
1510
1366
|
startingDate: string;
|
1511
1367
|
endingDate: string;
|
1512
|
-
eventPictureUrl: string | null;
|
1513
|
-
eventBannerUrl: string | null;
|
1514
1368
|
created_at: string;
|
1515
1369
|
updated_at: string;
|
1516
1370
|
active: boolean;
|
1517
|
-
eventDescription: string | null;
|
1518
1371
|
folderId: string | null;
|
1519
1372
|
tagAssistedId: string;
|
1520
1373
|
tagConfirmedId: string;
|
@@ -1533,12 +1386,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1533
1386
|
date: string;
|
1534
1387
|
startingDate: string;
|
1535
1388
|
endingDate: string;
|
1536
|
-
eventPictureUrl: string | null;
|
1537
|
-
eventBannerUrl: string | null;
|
1538
1389
|
created_at: string;
|
1539
1390
|
updated_at: string;
|
1540
1391
|
active: boolean;
|
1541
|
-
eventDescription: string | null;
|
1542
1392
|
folderId: string | null;
|
1543
1393
|
tagAssistedId: string;
|
1544
1394
|
tagConfirmedId: string;
|
@@ -1558,8 +1408,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1558
1408
|
date: string;
|
1559
1409
|
startingDate: string;
|
1560
1410
|
endingDate: string;
|
1561
|
-
eventPictureUrl: string | null;
|
1562
|
-
eventBannerUrl: string | null;
|
1563
1411
|
created_at: string;
|
1564
1412
|
updated_at: string;
|
1565
1413
|
active: boolean;
|
@@ -1574,7 +1422,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1574
1422
|
isExclusive: boolean;
|
1575
1423
|
};
|
1576
1424
|
}[];
|
1577
|
-
eventDescription: string | null;
|
1578
1425
|
folderId: string | null;
|
1579
1426
|
tagAssistedId: string;
|
1580
1427
|
tagConfirmedId: string;
|
@@ -1586,12 +1433,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1586
1433
|
date: string;
|
1587
1434
|
startingDate: string;
|
1588
1435
|
endingDate: string;
|
1589
|
-
eventPictureUrl: string | null;
|
1590
|
-
eventBannerUrl: string | null;
|
1591
1436
|
created_at: string;
|
1592
1437
|
updated_at: string;
|
1593
1438
|
active: boolean;
|
1594
|
-
eventDescription: string | null;
|
1595
1439
|
folderId: string | null;
|
1596
1440
|
tagAssistedId: string;
|
1597
1441
|
tagConfirmedId: string;
|
@@ -1610,12 +1454,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1610
1454
|
date: string;
|
1611
1455
|
startingDate: string;
|
1612
1456
|
endingDate: string;
|
1613
|
-
eventPictureUrl: string | null;
|
1614
|
-
eventBannerUrl: string | null;
|
1615
1457
|
created_at: string;
|
1616
1458
|
updated_at: string;
|
1617
1459
|
active: boolean;
|
1618
|
-
eventDescription: string | null;
|
1619
1460
|
folderId: string | null;
|
1620
1461
|
tagAssistedId: string;
|
1621
1462
|
tagConfirmedId: string;
|
@@ -1630,9 +1471,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1630
1471
|
startingDate: z.ZodString;
|
1631
1472
|
endingDate: z.ZodString;
|
1632
1473
|
location: z.ZodString;
|
1633
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1634
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1635
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
1636
1474
|
folderId: z.ZodNullable<z.ZodString>;
|
1637
1475
|
tagAssistedId: z.ZodString;
|
1638
1476
|
tagConfirmedId: z.ZodString;
|
@@ -1647,9 +1485,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1647
1485
|
startingDate: z.ZodString;
|
1648
1486
|
endingDate: z.ZodString;
|
1649
1487
|
location: z.ZodString;
|
1650
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1651
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1652
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
1653
1488
|
folderId: z.ZodNullable<z.ZodString>;
|
1654
1489
|
tagAssistedId: z.ZodString;
|
1655
1490
|
tagConfirmedId: z.ZodString;
|
@@ -1664,12 +1499,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1664
1499
|
date: string;
|
1665
1500
|
startingDate: string;
|
1666
1501
|
endingDate: string;
|
1667
|
-
eventPictureUrl: string | null;
|
1668
|
-
eventBannerUrl: string | null;
|
1669
1502
|
created_at: string;
|
1670
1503
|
updated_at: string;
|
1671
1504
|
active: boolean;
|
1672
|
-
eventDescription: string | null;
|
1673
1505
|
folderId: string | null;
|
1674
1506
|
tagAssistedId: string;
|
1675
1507
|
tagConfirmedId: string;
|
@@ -1681,12 +1513,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1681
1513
|
date: string;
|
1682
1514
|
startingDate: string;
|
1683
1515
|
endingDate: string;
|
1684
|
-
eventPictureUrl: string | null;
|
1685
|
-
eventBannerUrl: string | null;
|
1686
1516
|
created_at: string;
|
1687
1517
|
updated_at: string;
|
1688
1518
|
active: boolean;
|
1689
|
-
eventDescription: string | null;
|
1690
1519
|
folderId: string | null;
|
1691
1520
|
tagAssistedId: string;
|
1692
1521
|
tagConfirmedId: string;
|
@@ -1699,9 +1528,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1699
1528
|
startingDate: z.ZodString;
|
1700
1529
|
endingDate: z.ZodString;
|
1701
1530
|
location: z.ZodString;
|
1702
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1703
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1704
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
1705
1531
|
folderId: z.ZodNullable<z.ZodString>;
|
1706
1532
|
tagAssistedId: z.ZodString;
|
1707
1533
|
tagConfirmedId: z.ZodString;
|
@@ -1716,12 +1542,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1716
1542
|
date: string;
|
1717
1543
|
startingDate: string;
|
1718
1544
|
endingDate: string;
|
1719
|
-
eventPictureUrl: string | null;
|
1720
|
-
eventBannerUrl: string | null;
|
1721
1545
|
created_at: string;
|
1722
1546
|
updated_at: string;
|
1723
1547
|
active: boolean;
|
1724
|
-
eventDescription: string | null;
|
1725
1548
|
folderId: string | null;
|
1726
1549
|
tagAssistedId: string;
|
1727
1550
|
tagConfirmedId: string;
|
@@ -1733,12 +1556,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1733
1556
|
date: string;
|
1734
1557
|
startingDate: string;
|
1735
1558
|
endingDate: string;
|
1736
|
-
eventPictureUrl: string | null;
|
1737
|
-
eventBannerUrl: string | null;
|
1738
1559
|
created_at: string;
|
1739
1560
|
updated_at: string;
|
1740
1561
|
active: boolean;
|
1741
|
-
eventDescription: string | null;
|
1742
1562
|
folderId: string | null;
|
1743
1563
|
tagAssistedId: string;
|
1744
1564
|
tagConfirmedId: string;
|
@@ -1790,16 +1610,26 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1790
1610
|
isExclusive: boolean;
|
1791
1611
|
};
|
1792
1612
|
}>, "many">;
|
1793
|
-
eventTickets: z.ZodArray<z.ZodObject<{
|
1613
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Pick<{
|
1794
1614
|
id: z.ZodString;
|
1615
|
+
amount: z.ZodNullable<z.ZodNumber>;
|
1795
1616
|
type: z.ZodNativeEnum<{
|
1796
1617
|
PARTICIPANT: "PARTICIPANT";
|
1797
1618
|
STAFF: "STAFF";
|
1798
1619
|
SPECTATOR: "SPECTATOR";
|
1799
1620
|
}>;
|
1800
|
-
amount: z.ZodNullable<z.ZodNumber>;
|
1801
1621
|
price: z.ZodNullable<z.ZodNumber>;
|
1802
|
-
},
|
1622
|
+
}, "id" | "type" | "amount" | "price">, "strip", z.ZodTypeAny, {
|
1623
|
+
id: string;
|
1624
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1625
|
+
amount: number | null;
|
1626
|
+
price: number | null;
|
1627
|
+
}, {
|
1628
|
+
id: string;
|
1629
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1630
|
+
amount: number | null;
|
1631
|
+
price: number | null;
|
1632
|
+
}>, {
|
1803
1633
|
id: string;
|
1804
1634
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1805
1635
|
amount: number | null;
|
@@ -1817,8 +1647,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1817
1647
|
date: string;
|
1818
1648
|
startingDate: string;
|
1819
1649
|
endingDate: string;
|
1820
|
-
eventPictureUrl: string | null;
|
1821
|
-
eventBannerUrl: string | null;
|
1822
1650
|
created_at: string;
|
1823
1651
|
updated_at: string;
|
1824
1652
|
active: boolean;
|
@@ -1833,7 +1661,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1833
1661
|
isExclusive: boolean;
|
1834
1662
|
};
|
1835
1663
|
}[];
|
1836
|
-
eventDescription: string | null;
|
1837
1664
|
folderId: string | null;
|
1838
1665
|
tagAssistedId: string;
|
1839
1666
|
tagConfirmedId: string;
|
@@ -1845,12 +1672,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1845
1672
|
date: string;
|
1846
1673
|
startingDate: string;
|
1847
1674
|
endingDate: string;
|
1848
|
-
eventPictureUrl: string | null;
|
1849
|
-
eventBannerUrl: string | null;
|
1850
1675
|
created_at: string;
|
1851
1676
|
updated_at: string;
|
1852
1677
|
active: boolean;
|
1853
|
-
eventDescription: string | null;
|
1854
1678
|
folderId: string | null;
|
1855
1679
|
tagAssistedId: string;
|
1856
1680
|
tagConfirmedId: string;
|
@@ -1869,12 +1693,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1869
1693
|
date: string;
|
1870
1694
|
startingDate: string;
|
1871
1695
|
endingDate: string;
|
1872
|
-
eventPictureUrl: string | null;
|
1873
|
-
eventBannerUrl: string | null;
|
1874
1696
|
created_at: string;
|
1875
1697
|
updated_at: string;
|
1876
1698
|
active: boolean;
|
1877
|
-
eventDescription: string | null;
|
1878
1699
|
folderId: string | null;
|
1879
1700
|
tagAssistedId: string;
|
1880
1701
|
tagConfirmedId: string;
|
@@ -1887,8 +1708,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1887
1708
|
date: string;
|
1888
1709
|
startingDate: string;
|
1889
1710
|
endingDate: string;
|
1890
|
-
eventPictureUrl: string | null;
|
1891
|
-
eventBannerUrl: string | null;
|
1892
1711
|
created_at: string;
|
1893
1712
|
updated_at: string;
|
1894
1713
|
active: boolean;
|
@@ -1903,7 +1722,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1903
1722
|
isExclusive: boolean;
|
1904
1723
|
};
|
1905
1724
|
}[];
|
1906
|
-
eventDescription: string | null;
|
1907
1725
|
folderId: string | null;
|
1908
1726
|
tagAssistedId: string;
|
1909
1727
|
tagConfirmedId: string;
|
@@ -1915,12 +1733,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1915
1733
|
date: string;
|
1916
1734
|
startingDate: string;
|
1917
1735
|
endingDate: string;
|
1918
|
-
eventPictureUrl: string | null;
|
1919
|
-
eventBannerUrl: string | null;
|
1920
1736
|
created_at: string;
|
1921
1737
|
updated_at: string;
|
1922
1738
|
active: boolean;
|
1923
|
-
eventDescription: string | null;
|
1924
1739
|
folderId: string | null;
|
1925
1740
|
tagAssistedId: string;
|
1926
1741
|
tagConfirmedId: string;
|
@@ -1939,12 +1754,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1939
1754
|
date: string;
|
1940
1755
|
startingDate: string;
|
1941
1756
|
endingDate: string;
|
1942
|
-
eventPictureUrl: string | null;
|
1943
|
-
eventBannerUrl: string | null;
|
1944
1757
|
created_at: string;
|
1945
1758
|
updated_at: string;
|
1946
1759
|
active: boolean;
|
1947
|
-
eventDescription: string | null;
|
1948
1760
|
folderId: string | null;
|
1949
1761
|
tagAssistedId: string;
|
1950
1762
|
tagConfirmedId: string;
|
@@ -1965,8 +1777,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1965
1777
|
date: string;
|
1966
1778
|
startingDate: string;
|
1967
1779
|
endingDate: string;
|
1968
|
-
eventPictureUrl: string | null;
|
1969
|
-
eventBannerUrl: string | null;
|
1970
1780
|
created_at: string;
|
1971
1781
|
updated_at: string;
|
1972
1782
|
active: boolean;
|
@@ -1981,7 +1791,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1981
1791
|
isExclusive: boolean;
|
1982
1792
|
};
|
1983
1793
|
}[];
|
1984
|
-
eventDescription: string | null;
|
1985
1794
|
folderId: string | null;
|
1986
1795
|
tagAssistedId: string;
|
1987
1796
|
tagConfirmedId: string;
|
@@ -1993,12 +1802,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1993
1802
|
date: string;
|
1994
1803
|
startingDate: string;
|
1995
1804
|
endingDate: string;
|
1996
|
-
eventPictureUrl: string | null;
|
1997
|
-
eventBannerUrl: string | null;
|
1998
1805
|
created_at: string;
|
1999
1806
|
updated_at: string;
|
2000
1807
|
active: boolean;
|
2001
|
-
eventDescription: string | null;
|
2002
1808
|
folderId: string | null;
|
2003
1809
|
tagAssistedId: string;
|
2004
1810
|
tagConfirmedId: string;
|
@@ -2017,12 +1823,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2017
1823
|
date: string;
|
2018
1824
|
startingDate: string;
|
2019
1825
|
endingDate: string;
|
2020
|
-
eventPictureUrl: string | null;
|
2021
|
-
eventBannerUrl: string | null;
|
2022
1826
|
created_at: string;
|
2023
1827
|
updated_at: string;
|
2024
1828
|
active: boolean;
|
2025
|
-
eventDescription: string | null;
|
2026
1829
|
folderId: string | null;
|
2027
1830
|
tagAssistedId: string;
|
2028
1831
|
tagConfirmedId: string;
|
@@ -2037,8 +1840,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2037
1840
|
date: string;
|
2038
1841
|
startingDate: string;
|
2039
1842
|
endingDate: string;
|
2040
|
-
eventPictureUrl: string | null;
|
2041
|
-
eventBannerUrl: string | null;
|
2042
1843
|
created_at: string;
|
2043
1844
|
updated_at: string;
|
2044
1845
|
active: boolean;
|
@@ -2053,7 +1854,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2053
1854
|
isExclusive: boolean;
|
2054
1855
|
};
|
2055
1856
|
}[];
|
2056
|
-
eventDescription: string | null;
|
2057
1857
|
folderId: string | null;
|
2058
1858
|
tagAssistedId: string;
|
2059
1859
|
tagConfirmedId: string;
|
@@ -2065,12 +1865,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2065
1865
|
date: string;
|
2066
1866
|
startingDate: string;
|
2067
1867
|
endingDate: string;
|
2068
|
-
eventPictureUrl: string | null;
|
2069
|
-
eventBannerUrl: string | null;
|
2070
1868
|
created_at: string;
|
2071
1869
|
updated_at: string;
|
2072
1870
|
active: boolean;
|
2073
|
-
eventDescription: string | null;
|
2074
1871
|
folderId: string | null;
|
2075
1872
|
tagAssistedId: string;
|
2076
1873
|
tagConfirmedId: string;
|
@@ -2089,12 +1886,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2089
1886
|
date: string;
|
2090
1887
|
startingDate: string;
|
2091
1888
|
endingDate: string;
|
2092
|
-
eventPictureUrl: string | null;
|
2093
|
-
eventBannerUrl: string | null;
|
2094
1889
|
created_at: string;
|
2095
1890
|
updated_at: string;
|
2096
1891
|
active: boolean;
|
2097
|
-
eventDescription: string | null;
|
2098
1892
|
folderId: string | null;
|
2099
1893
|
tagAssistedId: string;
|
2100
1894
|
tagConfirmedId: string;
|
@@ -2115,8 +1909,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2115
1909
|
date: string;
|
2116
1910
|
startingDate: string;
|
2117
1911
|
endingDate: string;
|
2118
|
-
eventPictureUrl: string | null;
|
2119
|
-
eventBannerUrl: string | null;
|
2120
1912
|
created_at: string;
|
2121
1913
|
updated_at: string;
|
2122
1914
|
active: boolean;
|
@@ -2131,7 +1923,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2131
1923
|
isExclusive: boolean;
|
2132
1924
|
};
|
2133
1925
|
}[];
|
2134
|
-
eventDescription: string | null;
|
2135
1926
|
folderId: string | null;
|
2136
1927
|
tagAssistedId: string;
|
2137
1928
|
tagConfirmedId: string;
|
@@ -2143,12 +1934,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2143
1934
|
date: string;
|
2144
1935
|
startingDate: string;
|
2145
1936
|
endingDate: string;
|
2146
|
-
eventPictureUrl: string | null;
|
2147
|
-
eventBannerUrl: string | null;
|
2148
1937
|
created_at: string;
|
2149
1938
|
updated_at: string;
|
2150
1939
|
active: boolean;
|
2151
|
-
eventDescription: string | null;
|
2152
1940
|
folderId: string | null;
|
2153
1941
|
tagAssistedId: string;
|
2154
1942
|
tagConfirmedId: string;
|
@@ -2167,12 +1955,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2167
1955
|
date: string;
|
2168
1956
|
startingDate: string;
|
2169
1957
|
endingDate: string;
|
2170
|
-
eventPictureUrl: string | null;
|
2171
|
-
eventBannerUrl: string | null;
|
2172
1958
|
created_at: string;
|
2173
1959
|
updated_at: string;
|
2174
1960
|
active: boolean;
|
2175
|
-
eventDescription: string | null;
|
2176
1961
|
folderId: string | null;
|
2177
1962
|
tagAssistedId: string;
|
2178
1963
|
tagConfirmedId: string;
|
@@ -2187,8 +1972,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2187
1972
|
date: string;
|
2188
1973
|
startingDate: string;
|
2189
1974
|
endingDate: string;
|
2190
|
-
eventPictureUrl: string | null;
|
2191
|
-
eventBannerUrl: string | null;
|
2192
1975
|
created_at: string;
|
2193
1976
|
updated_at: string;
|
2194
1977
|
active: boolean;
|
@@ -2203,7 +1986,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2203
1986
|
isExclusive: boolean;
|
2204
1987
|
};
|
2205
1988
|
}[];
|
2206
|
-
eventDescription: string | null;
|
2207
1989
|
folderId: string | null;
|
2208
1990
|
tagAssistedId: string;
|
2209
1991
|
tagConfirmedId: string;
|
@@ -2215,12 +1997,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2215
1997
|
date: string;
|
2216
1998
|
startingDate: string;
|
2217
1999
|
endingDate: string;
|
2218
|
-
eventPictureUrl: string | null;
|
2219
|
-
eventBannerUrl: string | null;
|
2220
2000
|
created_at: string;
|
2221
2001
|
updated_at: string;
|
2222
2002
|
active: boolean;
|
2223
|
-
eventDescription: string | null;
|
2224
2003
|
folderId: string | null;
|
2225
2004
|
tagAssistedId: string;
|
2226
2005
|
tagConfirmedId: string;
|
@@ -2239,12 +2018,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2239
2018
|
date: string;
|
2240
2019
|
startingDate: string;
|
2241
2020
|
endingDate: string;
|
2242
|
-
eventPictureUrl: string | null;
|
2243
|
-
eventBannerUrl: string | null;
|
2244
2021
|
created_at: string;
|
2245
2022
|
updated_at: string;
|
2246
2023
|
active: boolean;
|
2247
|
-
eventDescription: string | null;
|
2248
2024
|
folderId: string | null;
|
2249
2025
|
tagAssistedId: string;
|
2250
2026
|
tagConfirmedId: string;
|