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