expo-backend-types 0.33.0-EXPO-308-auth.1 → 0.33.0-EXPO-308-auth.2
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 +115 -2
- package/dist/src/event/dto/create-event.dto.js +8 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/event-tickets.dto.d.ts +21 -0
- package/dist/src/event/dto/event-tickets.dto.js +21 -0
- package/dist/src/event/dto/event.dto.d.ts +9 -0
- package/dist/src/event/dto/event.dto.js +9 -0
- package/dist/src/event/dto/get-active-events.dto.d.ts +247 -0
- package/dist/src/event/dto/get-active-events.dto.js +19 -0
- package/dist/src/event/dto/get-all-event.dto.d.ts +424 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +208 -48
- package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +43 -0
- package/dist/src/event/dto/toggle-active-event.dto.js +6 -0
- package/dist/src/event/dto/update-event.dto.d.ts +193 -22
- package/dist/src/event/dto/update-event.dto.js +9 -0
- package/dist/src/event/exports.d.ts +3 -0
- package/dist/src/event/exports.js +3 -0
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
- package/dist/src/exports.d.ts +2 -0
- package/dist/src/exports.js +2 -0
- package/dist/src/i18n/es.d.ts +88 -0
- package/dist/src/i18n/es.js +88 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/message/dto/template.dto.d.ts +2 -2
- package/dist/src/ticket/constants.d.ts +16 -0
- package/dist/src/ticket/constants.js +272 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +134 -0
- package/dist/src/ticket/dto/create-ticket.dto.js +20 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +75 -0
- package/dist/src/ticket/dto/delete-ticket.dto.js +10 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +201 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.js +23 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +201 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.js +23 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +201 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.js +20 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +201 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +23 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +75 -0
- package/dist/src/ticket/dto/find-ticket.dto.js +10 -0
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +7 -0
- package/dist/src/ticket/dto/generate-pdf.dto.js +13 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +76 -0
- package/dist/src/ticket/dto/ticket.dto.js +29 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +125 -0
- package/dist/src/ticket/dto/update-ticket.dto.js +21 -0
- package/dist/src/ticket/exports.d.ts +10 -0
- package/dist/src/ticket/exports.js +27 -0
- package/dist/types/prisma-schema/edge.js +42 -4
- package/dist/types/prisma-schema/index-browser.js +39 -1
- package/dist/types/prisma-schema/index.d.ts +4552 -366
- package/dist/types/prisma-schema/index.js +42 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +57 -5
- package/dist/types/prisma-schema/wasm.js +39 -1
- package/dist/types/schema.d.ts +734 -12
- package/package.json +13 -3
@@ -11,10 +11,13 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
11
11
|
id: z.ZodString;
|
12
12
|
name: z.ZodString;
|
13
13
|
date: z.ZodDate;
|
14
|
+
startingDate: z.ZodDate;
|
15
|
+
endingDate: z.ZodDate;
|
14
16
|
location: z.ZodString;
|
15
17
|
folderId: z.ZodNullable<z.ZodString>;
|
16
18
|
tagAssistedId: z.ZodString;
|
17
19
|
tagConfirmedId: z.ZodString;
|
20
|
+
active: z.ZodBoolean;
|
18
21
|
supraEventId: z.ZodNullable<z.ZodString>;
|
19
22
|
created_at: z.ZodDate;
|
20
23
|
updated_at: z.ZodDate;
|
@@ -23,10 +26,13 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
23
26
|
id: z.ZodString;
|
24
27
|
name: z.ZodString;
|
25
28
|
date: z.ZodDate;
|
29
|
+
startingDate: z.ZodDate;
|
30
|
+
endingDate: z.ZodDate;
|
26
31
|
location: z.ZodString;
|
27
32
|
folderId: z.ZodNullable<z.ZodString>;
|
28
33
|
tagAssistedId: z.ZodString;
|
29
34
|
tagConfirmedId: z.ZodString;
|
35
|
+
active: z.ZodBoolean;
|
30
36
|
supraEventId: z.ZodNullable<z.ZodString>;
|
31
37
|
created_at: z.ZodDate;
|
32
38
|
updated_at: z.ZodDate;
|
@@ -35,8 +41,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
35
41
|
id: string;
|
36
42
|
name: string;
|
37
43
|
date: Date;
|
44
|
+
startingDate: Date;
|
45
|
+
endingDate: Date;
|
38
46
|
created_at: Date;
|
39
47
|
updated_at: Date;
|
48
|
+
active: boolean;
|
40
49
|
folderId: string | null;
|
41
50
|
tagAssistedId: string;
|
42
51
|
tagConfirmedId: string;
|
@@ -46,8 +55,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
46
55
|
id: string;
|
47
56
|
name: string;
|
48
57
|
date: Date;
|
58
|
+
startingDate: Date;
|
59
|
+
endingDate: Date;
|
49
60
|
created_at: Date;
|
50
61
|
updated_at: Date;
|
62
|
+
active: boolean;
|
51
63
|
folderId: string | null;
|
52
64
|
tagAssistedId: string;
|
53
65
|
tagConfirmedId: string;
|
@@ -57,10 +69,13 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
57
69
|
id: z.ZodString;
|
58
70
|
name: z.ZodString;
|
59
71
|
date: z.ZodDate;
|
72
|
+
startingDate: z.ZodDate;
|
73
|
+
endingDate: z.ZodDate;
|
60
74
|
location: z.ZodString;
|
61
75
|
folderId: z.ZodNullable<z.ZodString>;
|
62
76
|
tagAssistedId: z.ZodString;
|
63
77
|
tagConfirmedId: z.ZodString;
|
78
|
+
active: z.ZodBoolean;
|
64
79
|
supraEventId: z.ZodNullable<z.ZodString>;
|
65
80
|
created_at: z.ZodDate;
|
66
81
|
updated_at: z.ZodDate;
|
@@ -69,8 +84,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
69
84
|
id: string;
|
70
85
|
name: string;
|
71
86
|
date: Date;
|
87
|
+
startingDate: Date;
|
88
|
+
endingDate: Date;
|
72
89
|
created_at: Date;
|
73
90
|
updated_at: Date;
|
91
|
+
active: boolean;
|
74
92
|
folderId: string | null;
|
75
93
|
tagAssistedId: string;
|
76
94
|
tagConfirmedId: string;
|
@@ -80,8 +98,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
80
98
|
id: string;
|
81
99
|
name: string;
|
82
100
|
date: Date;
|
101
|
+
startingDate: Date;
|
102
|
+
endingDate: Date;
|
83
103
|
created_at: Date;
|
84
104
|
updated_at: Date;
|
105
|
+
active: boolean;
|
85
106
|
folderId: string | null;
|
86
107
|
tagAssistedId: string;
|
87
108
|
tagConfirmedId: string;
|
@@ -92,71 +113,89 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
92
113
|
id: string;
|
93
114
|
name: string;
|
94
115
|
date: Date;
|
116
|
+
startingDate: Date;
|
117
|
+
endingDate: Date;
|
95
118
|
created_at: Date;
|
96
119
|
updated_at: Date;
|
97
|
-
|
120
|
+
active: boolean;
|
121
|
+
folderId: string | null;
|
122
|
+
tagAssistedId: string;
|
123
|
+
tagConfirmedId: string;
|
124
|
+
supraEventId: string | null;
|
125
|
+
subEvents: {
|
98
126
|
location: string;
|
99
127
|
id: string;
|
100
128
|
name: string;
|
101
129
|
date: Date;
|
130
|
+
startingDate: Date;
|
131
|
+
endingDate: Date;
|
102
132
|
created_at: Date;
|
103
133
|
updated_at: Date;
|
134
|
+
active: boolean;
|
104
135
|
folderId: string | null;
|
105
136
|
tagAssistedId: string;
|
106
137
|
tagConfirmedId: string;
|
107
138
|
supraEventId: string | null;
|
108
|
-
}
|
109
|
-
|
139
|
+
}[];
|
140
|
+
supraEvent: {
|
110
141
|
location: string;
|
111
142
|
id: string;
|
112
143
|
name: string;
|
113
144
|
date: Date;
|
145
|
+
startingDate: Date;
|
146
|
+
endingDate: Date;
|
114
147
|
created_at: Date;
|
115
148
|
updated_at: Date;
|
149
|
+
active: boolean;
|
116
150
|
folderId: string | null;
|
117
151
|
tagAssistedId: string;
|
118
152
|
tagConfirmedId: string;
|
119
153
|
supraEventId: string | null;
|
120
|
-
}
|
121
|
-
folderId: string | null;
|
122
|
-
tagAssistedId: string;
|
123
|
-
tagConfirmedId: string;
|
124
|
-
supraEventId: string | null;
|
154
|
+
} | null;
|
125
155
|
}, {
|
126
156
|
location: string;
|
127
157
|
id: string;
|
128
158
|
name: string;
|
129
159
|
date: Date;
|
160
|
+
startingDate: Date;
|
161
|
+
endingDate: Date;
|
130
162
|
created_at: Date;
|
131
163
|
updated_at: Date;
|
132
|
-
|
164
|
+
active: boolean;
|
165
|
+
folderId: string | null;
|
166
|
+
tagAssistedId: string;
|
167
|
+
tagConfirmedId: string;
|
168
|
+
supraEventId: string | null;
|
169
|
+
subEvents: {
|
133
170
|
location: string;
|
134
171
|
id: string;
|
135
172
|
name: string;
|
136
173
|
date: Date;
|
174
|
+
startingDate: Date;
|
175
|
+
endingDate: Date;
|
137
176
|
created_at: Date;
|
138
177
|
updated_at: Date;
|
178
|
+
active: boolean;
|
139
179
|
folderId: string | null;
|
140
180
|
tagAssistedId: string;
|
141
181
|
tagConfirmedId: string;
|
142
182
|
supraEventId: string | null;
|
143
|
-
}
|
144
|
-
|
183
|
+
}[];
|
184
|
+
supraEvent: {
|
145
185
|
location: string;
|
146
186
|
id: string;
|
147
187
|
name: string;
|
148
188
|
date: Date;
|
189
|
+
startingDate: Date;
|
190
|
+
endingDate: Date;
|
149
191
|
created_at: Date;
|
150
192
|
updated_at: Date;
|
193
|
+
active: boolean;
|
151
194
|
folderId: string | null;
|
152
195
|
tagAssistedId: string;
|
153
196
|
tagConfirmedId: string;
|
154
197
|
supraEventId: string | null;
|
155
|
-
}
|
156
|
-
folderId: string | null;
|
157
|
-
tagAssistedId: string;
|
158
|
-
tagConfirmedId: string;
|
159
|
-
supraEventId: string | null;
|
198
|
+
} | null;
|
160
199
|
}>, "many">;
|
161
200
|
}>, "strip", z.ZodTypeAny, {
|
162
201
|
id: string;
|
@@ -169,36 +208,45 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
169
208
|
id: string;
|
170
209
|
name: string;
|
171
210
|
date: Date;
|
211
|
+
startingDate: Date;
|
212
|
+
endingDate: Date;
|
172
213
|
created_at: Date;
|
173
214
|
updated_at: Date;
|
174
|
-
|
215
|
+
active: boolean;
|
216
|
+
folderId: string | null;
|
217
|
+
tagAssistedId: string;
|
218
|
+
tagConfirmedId: string;
|
219
|
+
supraEventId: string | null;
|
220
|
+
subEvents: {
|
175
221
|
location: string;
|
176
222
|
id: string;
|
177
223
|
name: string;
|
178
224
|
date: Date;
|
225
|
+
startingDate: Date;
|
226
|
+
endingDate: Date;
|
179
227
|
created_at: Date;
|
180
228
|
updated_at: Date;
|
229
|
+
active: boolean;
|
181
230
|
folderId: string | null;
|
182
231
|
tagAssistedId: string;
|
183
232
|
tagConfirmedId: string;
|
184
233
|
supraEventId: string | null;
|
185
|
-
}
|
186
|
-
|
234
|
+
}[];
|
235
|
+
supraEvent: {
|
187
236
|
location: string;
|
188
237
|
id: string;
|
189
238
|
name: string;
|
190
239
|
date: Date;
|
240
|
+
startingDate: Date;
|
241
|
+
endingDate: Date;
|
191
242
|
created_at: Date;
|
192
243
|
updated_at: Date;
|
244
|
+
active: boolean;
|
193
245
|
folderId: string | null;
|
194
246
|
tagAssistedId: string;
|
195
247
|
tagConfirmedId: string;
|
196
248
|
supraEventId: string | null;
|
197
|
-
}
|
198
|
-
folderId: string | null;
|
199
|
-
tagAssistedId: string;
|
200
|
-
tagConfirmedId: string;
|
201
|
-
supraEventId: string | null;
|
249
|
+
} | null;
|
202
250
|
}[];
|
203
251
|
}, {
|
204
252
|
id: string;
|
@@ -211,46 +259,58 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
211
259
|
id: string;
|
212
260
|
name: string;
|
213
261
|
date: Date;
|
262
|
+
startingDate: Date;
|
263
|
+
endingDate: Date;
|
214
264
|
created_at: Date;
|
215
265
|
updated_at: Date;
|
216
|
-
|
266
|
+
active: boolean;
|
267
|
+
folderId: string | null;
|
268
|
+
tagAssistedId: string;
|
269
|
+
tagConfirmedId: string;
|
270
|
+
supraEventId: string | null;
|
271
|
+
subEvents: {
|
217
272
|
location: string;
|
218
273
|
id: string;
|
219
274
|
name: string;
|
220
275
|
date: Date;
|
276
|
+
startingDate: Date;
|
277
|
+
endingDate: Date;
|
221
278
|
created_at: Date;
|
222
279
|
updated_at: Date;
|
280
|
+
active: boolean;
|
223
281
|
folderId: string | null;
|
224
282
|
tagAssistedId: string;
|
225
283
|
tagConfirmedId: string;
|
226
284
|
supraEventId: string | null;
|
227
|
-
}
|
228
|
-
|
285
|
+
}[];
|
286
|
+
supraEvent: {
|
229
287
|
location: string;
|
230
288
|
id: string;
|
231
289
|
name: string;
|
232
290
|
date: Date;
|
291
|
+
startingDate: Date;
|
292
|
+
endingDate: Date;
|
233
293
|
created_at: Date;
|
234
294
|
updated_at: Date;
|
295
|
+
active: boolean;
|
235
296
|
folderId: string | null;
|
236
297
|
tagAssistedId: string;
|
237
298
|
tagConfirmedId: string;
|
238
299
|
supraEventId: string | null;
|
239
|
-
}
|
240
|
-
folderId: string | null;
|
241
|
-
tagAssistedId: string;
|
242
|
-
tagConfirmedId: string;
|
243
|
-
supraEventId: string | null;
|
300
|
+
} | null;
|
244
301
|
}[];
|
245
302
|
}>, "many">;
|
246
303
|
withoutFolder: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
247
304
|
id: z.ZodString;
|
248
305
|
name: z.ZodString;
|
249
306
|
date: z.ZodDate;
|
307
|
+
startingDate: z.ZodDate;
|
308
|
+
endingDate: z.ZodDate;
|
250
309
|
location: z.ZodString;
|
251
310
|
folderId: z.ZodNullable<z.ZodString>;
|
252
311
|
tagAssistedId: z.ZodString;
|
253
312
|
tagConfirmedId: z.ZodString;
|
313
|
+
active: z.ZodBoolean;
|
254
314
|
supraEventId: z.ZodNullable<z.ZodString>;
|
255
315
|
created_at: z.ZodDate;
|
256
316
|
updated_at: z.ZodDate;
|
@@ -259,10 +319,13 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
259
319
|
id: z.ZodString;
|
260
320
|
name: z.ZodString;
|
261
321
|
date: z.ZodDate;
|
322
|
+
startingDate: z.ZodDate;
|
323
|
+
endingDate: z.ZodDate;
|
262
324
|
location: z.ZodString;
|
263
325
|
folderId: z.ZodNullable<z.ZodString>;
|
264
326
|
tagAssistedId: z.ZodString;
|
265
327
|
tagConfirmedId: z.ZodString;
|
328
|
+
active: z.ZodBoolean;
|
266
329
|
supraEventId: z.ZodNullable<z.ZodString>;
|
267
330
|
created_at: z.ZodDate;
|
268
331
|
updated_at: z.ZodDate;
|
@@ -271,8 +334,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
271
334
|
id: string;
|
272
335
|
name: string;
|
273
336
|
date: Date;
|
337
|
+
startingDate: Date;
|
338
|
+
endingDate: Date;
|
274
339
|
created_at: Date;
|
275
340
|
updated_at: Date;
|
341
|
+
active: boolean;
|
276
342
|
folderId: string | null;
|
277
343
|
tagAssistedId: string;
|
278
344
|
tagConfirmedId: string;
|
@@ -282,8 +348,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
282
348
|
id: string;
|
283
349
|
name: string;
|
284
350
|
date: Date;
|
351
|
+
startingDate: Date;
|
352
|
+
endingDate: Date;
|
285
353
|
created_at: Date;
|
286
354
|
updated_at: Date;
|
355
|
+
active: boolean;
|
287
356
|
folderId: string | null;
|
288
357
|
tagAssistedId: string;
|
289
358
|
tagConfirmedId: string;
|
@@ -293,10 +362,13 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
293
362
|
id: z.ZodString;
|
294
363
|
name: z.ZodString;
|
295
364
|
date: z.ZodDate;
|
365
|
+
startingDate: z.ZodDate;
|
366
|
+
endingDate: z.ZodDate;
|
296
367
|
location: z.ZodString;
|
297
368
|
folderId: z.ZodNullable<z.ZodString>;
|
298
369
|
tagAssistedId: z.ZodString;
|
299
370
|
tagConfirmedId: z.ZodString;
|
371
|
+
active: z.ZodBoolean;
|
300
372
|
supraEventId: z.ZodNullable<z.ZodString>;
|
301
373
|
created_at: z.ZodDate;
|
302
374
|
updated_at: z.ZodDate;
|
@@ -305,8 +377,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
305
377
|
id: string;
|
306
378
|
name: string;
|
307
379
|
date: Date;
|
380
|
+
startingDate: Date;
|
381
|
+
endingDate: Date;
|
308
382
|
created_at: Date;
|
309
383
|
updated_at: Date;
|
384
|
+
active: boolean;
|
310
385
|
folderId: string | null;
|
311
386
|
tagAssistedId: string;
|
312
387
|
tagConfirmedId: string;
|
@@ -316,8 +391,11 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
316
391
|
id: string;
|
317
392
|
name: string;
|
318
393
|
date: Date;
|
394
|
+
startingDate: Date;
|
395
|
+
endingDate: Date;
|
319
396
|
created_at: Date;
|
320
397
|
updated_at: Date;
|
398
|
+
active: boolean;
|
321
399
|
folderId: string | null;
|
322
400
|
tagAssistedId: string;
|
323
401
|
tagConfirmedId: string;
|
@@ -328,71 +406,89 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
328
406
|
id: string;
|
329
407
|
name: string;
|
330
408
|
date: Date;
|
409
|
+
startingDate: Date;
|
410
|
+
endingDate: Date;
|
331
411
|
created_at: Date;
|
332
412
|
updated_at: Date;
|
333
|
-
|
413
|
+
active: boolean;
|
414
|
+
folderId: string | null;
|
415
|
+
tagAssistedId: string;
|
416
|
+
tagConfirmedId: string;
|
417
|
+
supraEventId: string | null;
|
418
|
+
subEvents: {
|
334
419
|
location: string;
|
335
420
|
id: string;
|
336
421
|
name: string;
|
337
422
|
date: Date;
|
423
|
+
startingDate: Date;
|
424
|
+
endingDate: Date;
|
338
425
|
created_at: Date;
|
339
426
|
updated_at: Date;
|
427
|
+
active: boolean;
|
340
428
|
folderId: string | null;
|
341
429
|
tagAssistedId: string;
|
342
430
|
tagConfirmedId: string;
|
343
431
|
supraEventId: string | null;
|
344
|
-
}
|
345
|
-
|
432
|
+
}[];
|
433
|
+
supraEvent: {
|
346
434
|
location: string;
|
347
435
|
id: string;
|
348
436
|
name: string;
|
349
437
|
date: Date;
|
438
|
+
startingDate: Date;
|
439
|
+
endingDate: Date;
|
350
440
|
created_at: Date;
|
351
441
|
updated_at: Date;
|
442
|
+
active: boolean;
|
352
443
|
folderId: string | null;
|
353
444
|
tagAssistedId: string;
|
354
445
|
tagConfirmedId: string;
|
355
446
|
supraEventId: string | null;
|
356
|
-
}
|
357
|
-
folderId: string | null;
|
358
|
-
tagAssistedId: string;
|
359
|
-
tagConfirmedId: string;
|
360
|
-
supraEventId: string | null;
|
447
|
+
} | null;
|
361
448
|
}, {
|
362
449
|
location: string;
|
363
450
|
id: string;
|
364
451
|
name: string;
|
365
452
|
date: Date;
|
453
|
+
startingDate: Date;
|
454
|
+
endingDate: Date;
|
366
455
|
created_at: Date;
|
367
456
|
updated_at: Date;
|
368
|
-
|
457
|
+
active: boolean;
|
458
|
+
folderId: string | null;
|
459
|
+
tagAssistedId: string;
|
460
|
+
tagConfirmedId: string;
|
461
|
+
supraEventId: string | null;
|
462
|
+
subEvents: {
|
369
463
|
location: string;
|
370
464
|
id: string;
|
371
465
|
name: string;
|
372
466
|
date: Date;
|
467
|
+
startingDate: Date;
|
468
|
+
endingDate: Date;
|
373
469
|
created_at: Date;
|
374
470
|
updated_at: Date;
|
471
|
+
active: boolean;
|
375
472
|
folderId: string | null;
|
376
473
|
tagAssistedId: string;
|
377
474
|
tagConfirmedId: string;
|
378
475
|
supraEventId: string | null;
|
379
|
-
}
|
380
|
-
|
476
|
+
}[];
|
477
|
+
supraEvent: {
|
381
478
|
location: string;
|
382
479
|
id: string;
|
383
480
|
name: string;
|
384
481
|
date: Date;
|
482
|
+
startingDate: Date;
|
483
|
+
endingDate: Date;
|
385
484
|
created_at: Date;
|
386
485
|
updated_at: Date;
|
486
|
+
active: boolean;
|
387
487
|
folderId: string | null;
|
388
488
|
tagAssistedId: string;
|
389
489
|
tagConfirmedId: string;
|
390
490
|
supraEventId: string | null;
|
391
|
-
}
|
392
|
-
folderId: string | null;
|
393
|
-
tagAssistedId: string;
|
394
|
-
tagConfirmedId: string;
|
395
|
-
supraEventId: string | null;
|
491
|
+
} | null;
|
396
492
|
}>, "many">;
|
397
493
|
}, "strip", z.ZodTypeAny, {
|
398
494
|
folders: {
|
@@ -406,36 +502,45 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
406
502
|
id: string;
|
407
503
|
name: string;
|
408
504
|
date: Date;
|
505
|
+
startingDate: Date;
|
506
|
+
endingDate: Date;
|
409
507
|
created_at: Date;
|
410
508
|
updated_at: Date;
|
411
|
-
|
509
|
+
active: boolean;
|
510
|
+
folderId: string | null;
|
511
|
+
tagAssistedId: string;
|
512
|
+
tagConfirmedId: string;
|
513
|
+
supraEventId: string | null;
|
514
|
+
subEvents: {
|
412
515
|
location: string;
|
413
516
|
id: string;
|
414
517
|
name: string;
|
415
518
|
date: Date;
|
519
|
+
startingDate: Date;
|
520
|
+
endingDate: Date;
|
416
521
|
created_at: Date;
|
417
522
|
updated_at: Date;
|
523
|
+
active: boolean;
|
418
524
|
folderId: string | null;
|
419
525
|
tagAssistedId: string;
|
420
526
|
tagConfirmedId: string;
|
421
527
|
supraEventId: string | null;
|
422
|
-
}
|
423
|
-
|
528
|
+
}[];
|
529
|
+
supraEvent: {
|
424
530
|
location: string;
|
425
531
|
id: string;
|
426
532
|
name: string;
|
427
533
|
date: Date;
|
534
|
+
startingDate: Date;
|
535
|
+
endingDate: Date;
|
428
536
|
created_at: Date;
|
429
537
|
updated_at: Date;
|
538
|
+
active: boolean;
|
430
539
|
folderId: string | null;
|
431
540
|
tagAssistedId: string;
|
432
541
|
tagConfirmedId: string;
|
433
542
|
supraEventId: string | null;
|
434
|
-
}
|
435
|
-
folderId: string | null;
|
436
|
-
tagAssistedId: string;
|
437
|
-
tagConfirmedId: string;
|
438
|
-
supraEventId: string | null;
|
543
|
+
} | null;
|
439
544
|
}[];
|
440
545
|
}[];
|
441
546
|
withoutFolder: {
|
@@ -443,36 +548,45 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
443
548
|
id: string;
|
444
549
|
name: string;
|
445
550
|
date: Date;
|
551
|
+
startingDate: Date;
|
552
|
+
endingDate: Date;
|
446
553
|
created_at: Date;
|
447
554
|
updated_at: Date;
|
448
|
-
|
555
|
+
active: boolean;
|
556
|
+
folderId: string | null;
|
557
|
+
tagAssistedId: string;
|
558
|
+
tagConfirmedId: string;
|
559
|
+
supraEventId: string | null;
|
560
|
+
subEvents: {
|
449
561
|
location: string;
|
450
562
|
id: string;
|
451
563
|
name: string;
|
452
564
|
date: Date;
|
565
|
+
startingDate: Date;
|
566
|
+
endingDate: Date;
|
453
567
|
created_at: Date;
|
454
568
|
updated_at: Date;
|
569
|
+
active: boolean;
|
455
570
|
folderId: string | null;
|
456
571
|
tagAssistedId: string;
|
457
572
|
tagConfirmedId: string;
|
458
573
|
supraEventId: string | null;
|
459
|
-
}
|
460
|
-
|
574
|
+
}[];
|
575
|
+
supraEvent: {
|
461
576
|
location: string;
|
462
577
|
id: string;
|
463
578
|
name: string;
|
464
579
|
date: Date;
|
580
|
+
startingDate: Date;
|
581
|
+
endingDate: Date;
|
465
582
|
created_at: Date;
|
466
583
|
updated_at: Date;
|
584
|
+
active: boolean;
|
467
585
|
folderId: string | null;
|
468
586
|
tagAssistedId: string;
|
469
587
|
tagConfirmedId: string;
|
470
588
|
supraEventId: string | null;
|
471
|
-
}
|
472
|
-
folderId: string | null;
|
473
|
-
tagAssistedId: string;
|
474
|
-
tagConfirmedId: string;
|
475
|
-
supraEventId: string | null;
|
589
|
+
} | null;
|
476
590
|
}[];
|
477
591
|
}, {
|
478
592
|
folders: {
|
@@ -486,36 +600,45 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
486
600
|
id: string;
|
487
601
|
name: string;
|
488
602
|
date: Date;
|
603
|
+
startingDate: Date;
|
604
|
+
endingDate: Date;
|
489
605
|
created_at: Date;
|
490
606
|
updated_at: Date;
|
491
|
-
|
607
|
+
active: boolean;
|
608
|
+
folderId: string | null;
|
609
|
+
tagAssistedId: string;
|
610
|
+
tagConfirmedId: string;
|
611
|
+
supraEventId: string | null;
|
612
|
+
subEvents: {
|
492
613
|
location: string;
|
493
614
|
id: string;
|
494
615
|
name: string;
|
495
616
|
date: Date;
|
617
|
+
startingDate: Date;
|
618
|
+
endingDate: Date;
|
496
619
|
created_at: Date;
|
497
620
|
updated_at: Date;
|
621
|
+
active: boolean;
|
498
622
|
folderId: string | null;
|
499
623
|
tagAssistedId: string;
|
500
624
|
tagConfirmedId: string;
|
501
625
|
supraEventId: string | null;
|
502
|
-
}
|
503
|
-
|
626
|
+
}[];
|
627
|
+
supraEvent: {
|
504
628
|
location: string;
|
505
629
|
id: string;
|
506
630
|
name: string;
|
507
631
|
date: Date;
|
632
|
+
startingDate: Date;
|
633
|
+
endingDate: Date;
|
508
634
|
created_at: Date;
|
509
635
|
updated_at: Date;
|
636
|
+
active: boolean;
|
510
637
|
folderId: string | null;
|
511
638
|
tagAssistedId: string;
|
512
639
|
tagConfirmedId: string;
|
513
640
|
supraEventId: string | null;
|
514
|
-
}
|
515
|
-
folderId: string | null;
|
516
|
-
tagAssistedId: string;
|
517
|
-
tagConfirmedId: string;
|
518
|
-
supraEventId: string | null;
|
641
|
+
} | null;
|
519
642
|
}[];
|
520
643
|
}[];
|
521
644
|
withoutFolder: {
|
@@ -523,36 +646,45 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
523
646
|
id: string;
|
524
647
|
name: string;
|
525
648
|
date: Date;
|
649
|
+
startingDate: Date;
|
650
|
+
endingDate: Date;
|
526
651
|
created_at: Date;
|
527
652
|
updated_at: Date;
|
528
|
-
|
653
|
+
active: boolean;
|
654
|
+
folderId: string | null;
|
655
|
+
tagAssistedId: string;
|
656
|
+
tagConfirmedId: string;
|
657
|
+
supraEventId: string | null;
|
658
|
+
subEvents: {
|
529
659
|
location: string;
|
530
660
|
id: string;
|
531
661
|
name: string;
|
532
662
|
date: Date;
|
663
|
+
startingDate: Date;
|
664
|
+
endingDate: Date;
|
533
665
|
created_at: Date;
|
534
666
|
updated_at: Date;
|
667
|
+
active: boolean;
|
535
668
|
folderId: string | null;
|
536
669
|
tagAssistedId: string;
|
537
670
|
tagConfirmedId: string;
|
538
671
|
supraEventId: string | null;
|
539
|
-
}
|
540
|
-
|
672
|
+
}[];
|
673
|
+
supraEvent: {
|
541
674
|
location: string;
|
542
675
|
id: string;
|
543
676
|
name: string;
|
544
677
|
date: Date;
|
678
|
+
startingDate: Date;
|
679
|
+
endingDate: Date;
|
545
680
|
created_at: Date;
|
546
681
|
updated_at: Date;
|
682
|
+
active: boolean;
|
547
683
|
folderId: string | null;
|
548
684
|
tagAssistedId: string;
|
549
685
|
tagConfirmedId: string;
|
550
686
|
supraEventId: string | null;
|
551
|
-
}
|
552
|
-
folderId: string | null;
|
553
|
-
tagAssistedId: string;
|
554
|
-
tagConfirmedId: string;
|
555
|
-
supraEventId: string | null;
|
687
|
+
} | null;
|
556
688
|
}[];
|
557
689
|
}>;
|
558
690
|
declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -566,10 +698,13 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
566
698
|
id: z.ZodString;
|
567
699
|
name: z.ZodString;
|
568
700
|
date: z.ZodString;
|
701
|
+
startingDate: z.ZodString;
|
702
|
+
endingDate: z.ZodString;
|
569
703
|
location: z.ZodString;
|
570
704
|
folderId: z.ZodNullable<z.ZodString>;
|
571
705
|
tagAssistedId: z.ZodString;
|
572
706
|
tagConfirmedId: z.ZodString;
|
707
|
+
active: z.ZodBoolean;
|
573
708
|
supraEventId: z.ZodNullable<z.ZodString>;
|
574
709
|
created_at: z.ZodString;
|
575
710
|
updated_at: z.ZodString;
|
@@ -577,10 +712,13 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
577
712
|
id: z.ZodString;
|
578
713
|
name: z.ZodString;
|
579
714
|
date: z.ZodString;
|
715
|
+
startingDate: z.ZodString;
|
716
|
+
endingDate: z.ZodString;
|
580
717
|
location: z.ZodString;
|
581
718
|
folderId: z.ZodNullable<z.ZodString>;
|
582
719
|
tagAssistedId: z.ZodString;
|
583
720
|
tagConfirmedId: z.ZodString;
|
721
|
+
active: z.ZodBoolean;
|
584
722
|
supraEventId: z.ZodNullable<z.ZodString>;
|
585
723
|
created_at: z.ZodString;
|
586
724
|
updated_at: z.ZodString;
|
@@ -589,8 +727,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
589
727
|
id: string;
|
590
728
|
name: string;
|
591
729
|
date: string;
|
730
|
+
startingDate: string;
|
731
|
+
endingDate: string;
|
592
732
|
created_at: string;
|
593
733
|
updated_at: string;
|
734
|
+
active: boolean;
|
594
735
|
folderId: string | null;
|
595
736
|
tagAssistedId: string;
|
596
737
|
tagConfirmedId: string;
|
@@ -600,8 +741,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
600
741
|
id: string;
|
601
742
|
name: string;
|
602
743
|
date: string;
|
744
|
+
startingDate: string;
|
745
|
+
endingDate: string;
|
603
746
|
created_at: string;
|
604
747
|
updated_at: string;
|
748
|
+
active: boolean;
|
605
749
|
folderId: string | null;
|
606
750
|
tagAssistedId: string;
|
607
751
|
tagConfirmedId: string;
|
@@ -611,10 +755,13 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
611
755
|
id: z.ZodString;
|
612
756
|
name: z.ZodString;
|
613
757
|
date: z.ZodString;
|
758
|
+
startingDate: z.ZodString;
|
759
|
+
endingDate: z.ZodString;
|
614
760
|
location: z.ZodString;
|
615
761
|
folderId: z.ZodNullable<z.ZodString>;
|
616
762
|
tagAssistedId: z.ZodString;
|
617
763
|
tagConfirmedId: z.ZodString;
|
764
|
+
active: z.ZodBoolean;
|
618
765
|
supraEventId: z.ZodNullable<z.ZodString>;
|
619
766
|
created_at: z.ZodString;
|
620
767
|
updated_at: z.ZodString;
|
@@ -623,8 +770,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
623
770
|
id: string;
|
624
771
|
name: string;
|
625
772
|
date: string;
|
773
|
+
startingDate: string;
|
774
|
+
endingDate: string;
|
626
775
|
created_at: string;
|
627
776
|
updated_at: string;
|
777
|
+
active: boolean;
|
628
778
|
folderId: string | null;
|
629
779
|
tagAssistedId: string;
|
630
780
|
tagConfirmedId: string;
|
@@ -634,8 +784,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
634
784
|
id: string;
|
635
785
|
name: string;
|
636
786
|
date: string;
|
787
|
+
startingDate: string;
|
788
|
+
endingDate: string;
|
637
789
|
created_at: string;
|
638
790
|
updated_at: string;
|
791
|
+
active: boolean;
|
639
792
|
folderId: string | null;
|
640
793
|
tagAssistedId: string;
|
641
794
|
tagConfirmedId: string;
|
@@ -646,71 +799,89 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
646
799
|
id: string;
|
647
800
|
name: string;
|
648
801
|
date: string;
|
802
|
+
startingDate: string;
|
803
|
+
endingDate: string;
|
649
804
|
created_at: string;
|
650
805
|
updated_at: string;
|
651
|
-
|
806
|
+
active: boolean;
|
807
|
+
folderId: string | null;
|
808
|
+
tagAssistedId: string;
|
809
|
+
tagConfirmedId: string;
|
810
|
+
supraEventId: string | null;
|
811
|
+
subEvents: {
|
652
812
|
location: string;
|
653
813
|
id: string;
|
654
814
|
name: string;
|
655
815
|
date: string;
|
816
|
+
startingDate: string;
|
817
|
+
endingDate: string;
|
656
818
|
created_at: string;
|
657
819
|
updated_at: string;
|
820
|
+
active: boolean;
|
658
821
|
folderId: string | null;
|
659
822
|
tagAssistedId: string;
|
660
823
|
tagConfirmedId: string;
|
661
824
|
supraEventId: string | null;
|
662
|
-
}
|
663
|
-
|
825
|
+
}[];
|
826
|
+
supraEvent: {
|
664
827
|
location: string;
|
665
828
|
id: string;
|
666
829
|
name: string;
|
667
830
|
date: string;
|
831
|
+
startingDate: string;
|
832
|
+
endingDate: string;
|
668
833
|
created_at: string;
|
669
834
|
updated_at: string;
|
835
|
+
active: boolean;
|
670
836
|
folderId: string | null;
|
671
837
|
tagAssistedId: string;
|
672
838
|
tagConfirmedId: string;
|
673
839
|
supraEventId: string | null;
|
674
|
-
}
|
675
|
-
folderId: string | null;
|
676
|
-
tagAssistedId: string;
|
677
|
-
tagConfirmedId: string;
|
678
|
-
supraEventId: string | null;
|
840
|
+
} | null;
|
679
841
|
}, {
|
680
842
|
location: string;
|
681
843
|
id: string;
|
682
844
|
name: string;
|
683
845
|
date: string;
|
846
|
+
startingDate: string;
|
847
|
+
endingDate: string;
|
684
848
|
created_at: string;
|
685
849
|
updated_at: string;
|
686
|
-
|
850
|
+
active: boolean;
|
851
|
+
folderId: string | null;
|
852
|
+
tagAssistedId: string;
|
853
|
+
tagConfirmedId: string;
|
854
|
+
supraEventId: string | null;
|
855
|
+
subEvents: {
|
687
856
|
location: string;
|
688
857
|
id: string;
|
689
858
|
name: string;
|
690
859
|
date: string;
|
860
|
+
startingDate: string;
|
861
|
+
endingDate: string;
|
691
862
|
created_at: string;
|
692
863
|
updated_at: string;
|
864
|
+
active: boolean;
|
693
865
|
folderId: string | null;
|
694
866
|
tagAssistedId: string;
|
695
867
|
tagConfirmedId: string;
|
696
868
|
supraEventId: string | null;
|
697
|
-
}
|
698
|
-
|
869
|
+
}[];
|
870
|
+
supraEvent: {
|
699
871
|
location: string;
|
700
872
|
id: string;
|
701
873
|
name: string;
|
702
874
|
date: string;
|
875
|
+
startingDate: string;
|
876
|
+
endingDate: string;
|
703
877
|
created_at: string;
|
704
878
|
updated_at: string;
|
879
|
+
active: boolean;
|
705
880
|
folderId: string | null;
|
706
881
|
tagAssistedId: string;
|
707
882
|
tagConfirmedId: string;
|
708
883
|
supraEventId: string | null;
|
709
|
-
}
|
710
|
-
folderId: string | null;
|
711
|
-
tagAssistedId: string;
|
712
|
-
tagConfirmedId: string;
|
713
|
-
supraEventId: string | null;
|
884
|
+
} | null;
|
714
885
|
}>, "many">;
|
715
886
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
716
887
|
id: string;
|
@@ -723,36 +894,45 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
723
894
|
id: string;
|
724
895
|
name: string;
|
725
896
|
date: string;
|
897
|
+
startingDate: string;
|
898
|
+
endingDate: string;
|
726
899
|
created_at: string;
|
727
900
|
updated_at: string;
|
728
|
-
|
901
|
+
active: boolean;
|
902
|
+
folderId: string | null;
|
903
|
+
tagAssistedId: string;
|
904
|
+
tagConfirmedId: string;
|
905
|
+
supraEventId: string | null;
|
906
|
+
subEvents: {
|
729
907
|
location: string;
|
730
908
|
id: string;
|
731
909
|
name: string;
|
732
910
|
date: string;
|
911
|
+
startingDate: string;
|
912
|
+
endingDate: string;
|
733
913
|
created_at: string;
|
734
914
|
updated_at: string;
|
915
|
+
active: boolean;
|
735
916
|
folderId: string | null;
|
736
917
|
tagAssistedId: string;
|
737
918
|
tagConfirmedId: string;
|
738
919
|
supraEventId: string | null;
|
739
|
-
}
|
740
|
-
|
920
|
+
}[];
|
921
|
+
supraEvent: {
|
741
922
|
location: string;
|
742
923
|
id: string;
|
743
924
|
name: string;
|
744
925
|
date: string;
|
926
|
+
startingDate: string;
|
927
|
+
endingDate: string;
|
745
928
|
created_at: string;
|
746
929
|
updated_at: string;
|
930
|
+
active: boolean;
|
747
931
|
folderId: string | null;
|
748
932
|
tagAssistedId: string;
|
749
933
|
tagConfirmedId: string;
|
750
934
|
supraEventId: string | null;
|
751
|
-
}
|
752
|
-
folderId: string | null;
|
753
|
-
tagAssistedId: string;
|
754
|
-
tagConfirmedId: string;
|
755
|
-
supraEventId: string | null;
|
935
|
+
} | null;
|
756
936
|
}[];
|
757
937
|
}, {
|
758
938
|
id: string;
|
@@ -765,46 +945,58 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
765
945
|
id: string;
|
766
946
|
name: string;
|
767
947
|
date: string;
|
948
|
+
startingDate: string;
|
949
|
+
endingDate: string;
|
768
950
|
created_at: string;
|
769
951
|
updated_at: string;
|
770
|
-
|
952
|
+
active: boolean;
|
953
|
+
folderId: string | null;
|
954
|
+
tagAssistedId: string;
|
955
|
+
tagConfirmedId: string;
|
956
|
+
supraEventId: string | null;
|
957
|
+
subEvents: {
|
771
958
|
location: string;
|
772
959
|
id: string;
|
773
960
|
name: string;
|
774
961
|
date: string;
|
962
|
+
startingDate: string;
|
963
|
+
endingDate: string;
|
775
964
|
created_at: string;
|
776
965
|
updated_at: string;
|
966
|
+
active: boolean;
|
777
967
|
folderId: string | null;
|
778
968
|
tagAssistedId: string;
|
779
969
|
tagConfirmedId: string;
|
780
970
|
supraEventId: string | null;
|
781
|
-
}
|
782
|
-
|
971
|
+
}[];
|
972
|
+
supraEvent: {
|
783
973
|
location: string;
|
784
974
|
id: string;
|
785
975
|
name: string;
|
786
976
|
date: string;
|
977
|
+
startingDate: string;
|
978
|
+
endingDate: string;
|
787
979
|
created_at: string;
|
788
980
|
updated_at: string;
|
981
|
+
active: boolean;
|
789
982
|
folderId: string | null;
|
790
983
|
tagAssistedId: string;
|
791
984
|
tagConfirmedId: string;
|
792
985
|
supraEventId: string | null;
|
793
|
-
}
|
794
|
-
folderId: string | null;
|
795
|
-
tagAssistedId: string;
|
796
|
-
tagConfirmedId: string;
|
797
|
-
supraEventId: string | null;
|
986
|
+
} | null;
|
798
987
|
}[];
|
799
988
|
}>, "many">;
|
800
989
|
withoutFolder: z.ZodArray<z.ZodObject<{
|
801
990
|
id: z.ZodString;
|
802
991
|
name: z.ZodString;
|
803
992
|
date: z.ZodString;
|
993
|
+
startingDate: z.ZodString;
|
994
|
+
endingDate: z.ZodString;
|
804
995
|
location: z.ZodString;
|
805
996
|
folderId: z.ZodNullable<z.ZodString>;
|
806
997
|
tagAssistedId: z.ZodString;
|
807
998
|
tagConfirmedId: z.ZodString;
|
999
|
+
active: z.ZodBoolean;
|
808
1000
|
supraEventId: z.ZodNullable<z.ZodString>;
|
809
1001
|
created_at: z.ZodString;
|
810
1002
|
updated_at: z.ZodString;
|
@@ -812,10 +1004,13 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
812
1004
|
id: z.ZodString;
|
813
1005
|
name: z.ZodString;
|
814
1006
|
date: z.ZodString;
|
1007
|
+
startingDate: z.ZodString;
|
1008
|
+
endingDate: z.ZodString;
|
815
1009
|
location: z.ZodString;
|
816
1010
|
folderId: z.ZodNullable<z.ZodString>;
|
817
1011
|
tagAssistedId: z.ZodString;
|
818
1012
|
tagConfirmedId: z.ZodString;
|
1013
|
+
active: z.ZodBoolean;
|
819
1014
|
supraEventId: z.ZodNullable<z.ZodString>;
|
820
1015
|
created_at: z.ZodString;
|
821
1016
|
updated_at: z.ZodString;
|
@@ -824,8 +1019,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
824
1019
|
id: string;
|
825
1020
|
name: string;
|
826
1021
|
date: string;
|
1022
|
+
startingDate: string;
|
1023
|
+
endingDate: string;
|
827
1024
|
created_at: string;
|
828
1025
|
updated_at: string;
|
1026
|
+
active: boolean;
|
829
1027
|
folderId: string | null;
|
830
1028
|
tagAssistedId: string;
|
831
1029
|
tagConfirmedId: string;
|
@@ -835,8 +1033,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
835
1033
|
id: string;
|
836
1034
|
name: string;
|
837
1035
|
date: string;
|
1036
|
+
startingDate: string;
|
1037
|
+
endingDate: string;
|
838
1038
|
created_at: string;
|
839
1039
|
updated_at: string;
|
1040
|
+
active: boolean;
|
840
1041
|
folderId: string | null;
|
841
1042
|
tagAssistedId: string;
|
842
1043
|
tagConfirmedId: string;
|
@@ -846,10 +1047,13 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
846
1047
|
id: z.ZodString;
|
847
1048
|
name: z.ZodString;
|
848
1049
|
date: z.ZodString;
|
1050
|
+
startingDate: z.ZodString;
|
1051
|
+
endingDate: z.ZodString;
|
849
1052
|
location: z.ZodString;
|
850
1053
|
folderId: z.ZodNullable<z.ZodString>;
|
851
1054
|
tagAssistedId: z.ZodString;
|
852
1055
|
tagConfirmedId: z.ZodString;
|
1056
|
+
active: z.ZodBoolean;
|
853
1057
|
supraEventId: z.ZodNullable<z.ZodString>;
|
854
1058
|
created_at: z.ZodString;
|
855
1059
|
updated_at: z.ZodString;
|
@@ -858,8 +1062,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
858
1062
|
id: string;
|
859
1063
|
name: string;
|
860
1064
|
date: string;
|
1065
|
+
startingDate: string;
|
1066
|
+
endingDate: string;
|
861
1067
|
created_at: string;
|
862
1068
|
updated_at: string;
|
1069
|
+
active: boolean;
|
863
1070
|
folderId: string | null;
|
864
1071
|
tagAssistedId: string;
|
865
1072
|
tagConfirmedId: string;
|
@@ -869,8 +1076,11 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
869
1076
|
id: string;
|
870
1077
|
name: string;
|
871
1078
|
date: string;
|
1079
|
+
startingDate: string;
|
1080
|
+
endingDate: string;
|
872
1081
|
created_at: string;
|
873
1082
|
updated_at: string;
|
1083
|
+
active: boolean;
|
874
1084
|
folderId: string | null;
|
875
1085
|
tagAssistedId: string;
|
876
1086
|
tagConfirmedId: string;
|
@@ -881,71 +1091,89 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
881
1091
|
id: string;
|
882
1092
|
name: string;
|
883
1093
|
date: string;
|
1094
|
+
startingDate: string;
|
1095
|
+
endingDate: string;
|
884
1096
|
created_at: string;
|
885
1097
|
updated_at: string;
|
886
|
-
|
1098
|
+
active: boolean;
|
1099
|
+
folderId: string | null;
|
1100
|
+
tagAssistedId: string;
|
1101
|
+
tagConfirmedId: string;
|
1102
|
+
supraEventId: string | null;
|
1103
|
+
subEvents: {
|
887
1104
|
location: string;
|
888
1105
|
id: string;
|
889
1106
|
name: string;
|
890
1107
|
date: string;
|
1108
|
+
startingDate: string;
|
1109
|
+
endingDate: string;
|
891
1110
|
created_at: string;
|
892
1111
|
updated_at: string;
|
1112
|
+
active: boolean;
|
893
1113
|
folderId: string | null;
|
894
1114
|
tagAssistedId: string;
|
895
1115
|
tagConfirmedId: string;
|
896
1116
|
supraEventId: string | null;
|
897
|
-
}
|
898
|
-
|
1117
|
+
}[];
|
1118
|
+
supraEvent: {
|
899
1119
|
location: string;
|
900
1120
|
id: string;
|
901
1121
|
name: string;
|
902
1122
|
date: string;
|
1123
|
+
startingDate: string;
|
1124
|
+
endingDate: string;
|
903
1125
|
created_at: string;
|
904
1126
|
updated_at: string;
|
1127
|
+
active: boolean;
|
905
1128
|
folderId: string | null;
|
906
1129
|
tagAssistedId: string;
|
907
1130
|
tagConfirmedId: string;
|
908
1131
|
supraEventId: string | null;
|
909
|
-
}
|
910
|
-
folderId: string | null;
|
911
|
-
tagAssistedId: string;
|
912
|
-
tagConfirmedId: string;
|
913
|
-
supraEventId: string | null;
|
1132
|
+
} | null;
|
914
1133
|
}, {
|
915
1134
|
location: string;
|
916
1135
|
id: string;
|
917
1136
|
name: string;
|
918
1137
|
date: string;
|
1138
|
+
startingDate: string;
|
1139
|
+
endingDate: string;
|
919
1140
|
created_at: string;
|
920
1141
|
updated_at: string;
|
921
|
-
|
1142
|
+
active: boolean;
|
1143
|
+
folderId: string | null;
|
1144
|
+
tagAssistedId: string;
|
1145
|
+
tagConfirmedId: string;
|
1146
|
+
supraEventId: string | null;
|
1147
|
+
subEvents: {
|
922
1148
|
location: string;
|
923
1149
|
id: string;
|
924
1150
|
name: string;
|
925
1151
|
date: string;
|
1152
|
+
startingDate: string;
|
1153
|
+
endingDate: string;
|
926
1154
|
created_at: string;
|
927
1155
|
updated_at: string;
|
1156
|
+
active: boolean;
|
928
1157
|
folderId: string | null;
|
929
1158
|
tagAssistedId: string;
|
930
1159
|
tagConfirmedId: string;
|
931
1160
|
supraEventId: string | null;
|
932
|
-
}
|
933
|
-
|
1161
|
+
}[];
|
1162
|
+
supraEvent: {
|
934
1163
|
location: string;
|
935
1164
|
id: string;
|
936
1165
|
name: string;
|
937
1166
|
date: string;
|
1167
|
+
startingDate: string;
|
1168
|
+
endingDate: string;
|
938
1169
|
created_at: string;
|
939
1170
|
updated_at: string;
|
1171
|
+
active: boolean;
|
940
1172
|
folderId: string | null;
|
941
1173
|
tagAssistedId: string;
|
942
1174
|
tagConfirmedId: string;
|
943
1175
|
supraEventId: string | null;
|
944
|
-
}
|
945
|
-
folderId: string | null;
|
946
|
-
tagAssistedId: string;
|
947
|
-
tagConfirmedId: string;
|
948
|
-
supraEventId: string | null;
|
1176
|
+
} | null;
|
949
1177
|
}>, "many">;
|
950
1178
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
951
1179
|
folders: {
|
@@ -959,36 +1187,45 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
959
1187
|
id: string;
|
960
1188
|
name: string;
|
961
1189
|
date: string;
|
1190
|
+
startingDate: string;
|
1191
|
+
endingDate: string;
|
962
1192
|
created_at: string;
|
963
1193
|
updated_at: string;
|
964
|
-
|
1194
|
+
active: boolean;
|
1195
|
+
folderId: string | null;
|
1196
|
+
tagAssistedId: string;
|
1197
|
+
tagConfirmedId: string;
|
1198
|
+
supraEventId: string | null;
|
1199
|
+
subEvents: {
|
965
1200
|
location: string;
|
966
1201
|
id: string;
|
967
1202
|
name: string;
|
968
1203
|
date: string;
|
1204
|
+
startingDate: string;
|
1205
|
+
endingDate: string;
|
969
1206
|
created_at: string;
|
970
1207
|
updated_at: string;
|
1208
|
+
active: boolean;
|
971
1209
|
folderId: string | null;
|
972
1210
|
tagAssistedId: string;
|
973
1211
|
tagConfirmedId: string;
|
974
1212
|
supraEventId: string | null;
|
975
|
-
}
|
976
|
-
|
1213
|
+
}[];
|
1214
|
+
supraEvent: {
|
977
1215
|
location: string;
|
978
1216
|
id: string;
|
979
1217
|
name: string;
|
980
1218
|
date: string;
|
1219
|
+
startingDate: string;
|
1220
|
+
endingDate: string;
|
981
1221
|
created_at: string;
|
982
1222
|
updated_at: string;
|
1223
|
+
active: boolean;
|
983
1224
|
folderId: string | null;
|
984
1225
|
tagAssistedId: string;
|
985
1226
|
tagConfirmedId: string;
|
986
1227
|
supraEventId: string | null;
|
987
|
-
}
|
988
|
-
folderId: string | null;
|
989
|
-
tagAssistedId: string;
|
990
|
-
tagConfirmedId: string;
|
991
|
-
supraEventId: string | null;
|
1228
|
+
} | null;
|
992
1229
|
}[];
|
993
1230
|
}[];
|
994
1231
|
withoutFolder: {
|
@@ -996,36 +1233,45 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
996
1233
|
id: string;
|
997
1234
|
name: string;
|
998
1235
|
date: string;
|
1236
|
+
startingDate: string;
|
1237
|
+
endingDate: string;
|
999
1238
|
created_at: string;
|
1000
1239
|
updated_at: string;
|
1001
|
-
|
1240
|
+
active: boolean;
|
1241
|
+
folderId: string | null;
|
1242
|
+
tagAssistedId: string;
|
1243
|
+
tagConfirmedId: string;
|
1244
|
+
supraEventId: string | null;
|
1245
|
+
subEvents: {
|
1002
1246
|
location: string;
|
1003
1247
|
id: string;
|
1004
1248
|
name: string;
|
1005
1249
|
date: string;
|
1250
|
+
startingDate: string;
|
1251
|
+
endingDate: string;
|
1006
1252
|
created_at: string;
|
1007
1253
|
updated_at: string;
|
1254
|
+
active: boolean;
|
1008
1255
|
folderId: string | null;
|
1009
1256
|
tagAssistedId: string;
|
1010
1257
|
tagConfirmedId: string;
|
1011
1258
|
supraEventId: string | null;
|
1012
|
-
}
|
1013
|
-
|
1259
|
+
}[];
|
1260
|
+
supraEvent: {
|
1014
1261
|
location: string;
|
1015
1262
|
id: string;
|
1016
1263
|
name: string;
|
1017
1264
|
date: string;
|
1265
|
+
startingDate: string;
|
1266
|
+
endingDate: string;
|
1018
1267
|
created_at: string;
|
1019
1268
|
updated_at: string;
|
1269
|
+
active: boolean;
|
1020
1270
|
folderId: string | null;
|
1021
1271
|
tagAssistedId: string;
|
1022
1272
|
tagConfirmedId: string;
|
1023
1273
|
supraEventId: string | null;
|
1024
|
-
}
|
1025
|
-
folderId: string | null;
|
1026
|
-
tagAssistedId: string;
|
1027
|
-
tagConfirmedId: string;
|
1028
|
-
supraEventId: string | null;
|
1274
|
+
} | null;
|
1029
1275
|
}[];
|
1030
1276
|
}, {
|
1031
1277
|
folders: {
|
@@ -1039,36 +1285,45 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1039
1285
|
id: string;
|
1040
1286
|
name: string;
|
1041
1287
|
date: string;
|
1288
|
+
startingDate: string;
|
1289
|
+
endingDate: string;
|
1042
1290
|
created_at: string;
|
1043
1291
|
updated_at: string;
|
1044
|
-
|
1292
|
+
active: boolean;
|
1293
|
+
folderId: string | null;
|
1294
|
+
tagAssistedId: string;
|
1295
|
+
tagConfirmedId: string;
|
1296
|
+
supraEventId: string | null;
|
1297
|
+
subEvents: {
|
1045
1298
|
location: string;
|
1046
1299
|
id: string;
|
1047
1300
|
name: string;
|
1048
1301
|
date: string;
|
1302
|
+
startingDate: string;
|
1303
|
+
endingDate: string;
|
1049
1304
|
created_at: string;
|
1050
1305
|
updated_at: string;
|
1306
|
+
active: boolean;
|
1051
1307
|
folderId: string | null;
|
1052
1308
|
tagAssistedId: string;
|
1053
1309
|
tagConfirmedId: string;
|
1054
1310
|
supraEventId: string | null;
|
1055
|
-
}
|
1056
|
-
|
1311
|
+
}[];
|
1312
|
+
supraEvent: {
|
1057
1313
|
location: string;
|
1058
1314
|
id: string;
|
1059
1315
|
name: string;
|
1060
1316
|
date: string;
|
1317
|
+
startingDate: string;
|
1318
|
+
endingDate: string;
|
1061
1319
|
created_at: string;
|
1062
1320
|
updated_at: string;
|
1321
|
+
active: boolean;
|
1063
1322
|
folderId: string | null;
|
1064
1323
|
tagAssistedId: string;
|
1065
1324
|
tagConfirmedId: string;
|
1066
1325
|
supraEventId: string | null;
|
1067
|
-
}
|
1068
|
-
folderId: string | null;
|
1069
|
-
tagAssistedId: string;
|
1070
|
-
tagConfirmedId: string;
|
1071
|
-
supraEventId: string | null;
|
1326
|
+
} | null;
|
1072
1327
|
}[];
|
1073
1328
|
}[];
|
1074
1329
|
withoutFolder: {
|
@@ -1076,36 +1331,45 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1076
1331
|
id: string;
|
1077
1332
|
name: string;
|
1078
1333
|
date: string;
|
1334
|
+
startingDate: string;
|
1335
|
+
endingDate: string;
|
1079
1336
|
created_at: string;
|
1080
1337
|
updated_at: string;
|
1081
|
-
|
1338
|
+
active: boolean;
|
1339
|
+
folderId: string | null;
|
1340
|
+
tagAssistedId: string;
|
1341
|
+
tagConfirmedId: string;
|
1342
|
+
supraEventId: string | null;
|
1343
|
+
subEvents: {
|
1082
1344
|
location: string;
|
1083
1345
|
id: string;
|
1084
1346
|
name: string;
|
1085
1347
|
date: string;
|
1348
|
+
startingDate: string;
|
1349
|
+
endingDate: string;
|
1086
1350
|
created_at: string;
|
1087
1351
|
updated_at: string;
|
1352
|
+
active: boolean;
|
1088
1353
|
folderId: string | null;
|
1089
1354
|
tagAssistedId: string;
|
1090
1355
|
tagConfirmedId: string;
|
1091
1356
|
supraEventId: string | null;
|
1092
|
-
}
|
1093
|
-
|
1357
|
+
}[];
|
1358
|
+
supraEvent: {
|
1094
1359
|
location: string;
|
1095
1360
|
id: string;
|
1096
1361
|
name: string;
|
1097
1362
|
date: string;
|
1363
|
+
startingDate: string;
|
1364
|
+
endingDate: string;
|
1098
1365
|
created_at: string;
|
1099
1366
|
updated_at: string;
|
1367
|
+
active: boolean;
|
1100
1368
|
folderId: string | null;
|
1101
1369
|
tagAssistedId: string;
|
1102
1370
|
tagConfirmedId: string;
|
1103
1371
|
supraEventId: string | null;
|
1104
|
-
}
|
1105
|
-
folderId: string | null;
|
1106
|
-
tagAssistedId: string;
|
1107
|
-
tagConfirmedId: string;
|
1108
|
-
supraEventId: string | null;
|
1372
|
+
} | null;
|
1109
1373
|
}[];
|
1110
1374
|
}>>;
|
1111
1375
|
export declare class GetAllEventsResponseDto extends GetAllEventsResponseDto_base {
|