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.
Files changed (111) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +2 -115
  2. package/dist/src/event/dto/create-event.dto.js +0 -8
  3. package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
  4. package/dist/src/event/dto/event.dto.d.ts +0 -9
  5. package/dist/src/event/dto/event.dto.js +0 -9
  6. package/dist/src/event/dto/get-all-event.dto.d.ts +160 -424
  7. package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -208
  8. package/dist/src/event/dto/get-by-id-event.dto.js +0 -2
  9. package/dist/src/event/dto/update-event.dto.d.ts +22 -193
  10. package/dist/src/event/dto/update-event.dto.js +0 -9
  11. package/dist/src/event/exports.d.ts +0 -3
  12. package/dist/src/event/exports.js +0 -3
  13. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
  14. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
  15. package/dist/src/exports.d.ts +3 -1
  16. package/dist/src/exports.js +3 -1
  17. package/dist/src/i18n/es.d.ts +20 -24
  18. package/dist/src/i18n/es.js +20 -24
  19. package/dist/src/i18n/es.js.map +1 -1
  20. package/dist/src/image/constants.d.ts +5 -0
  21. package/dist/src/image/constants.js +9 -0
  22. package/dist/src/location/dto/find-all-location.dto.js +2 -2
  23. package/dist/src/location/exports.d.ts +0 -1
  24. package/dist/src/location/exports.js +0 -1
  25. package/dist/src/message/dto/non-read-messages.dto.d.ts +2 -2
  26. package/dist/src/message/dto/non-read-messages.dto.js +2 -2
  27. package/dist/src/message/dto/send-message-to-phone.dto.d.ts +2 -2
  28. package/dist/src/message/dto/send-message-to-phone.dto.js +2 -2
  29. package/dist/src/mi-expo/dto/get-me.dto.d.ts +337 -0
  30. package/dist/src/mi-expo/dto/get-me.dto.js +16 -0
  31. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +311 -0
  32. package/dist/src/mi-expo/dto/login-with-phone.dto.js +29 -0
  33. package/dist/src/mi-expo/dto/login.dto.d.ts +327 -0
  34. package/dist/src/mi-expo/dto/login.dto.js +31 -0
  35. package/dist/src/mi-expo/dto/update-me.dto.d.ts +352 -0
  36. package/dist/src/mi-expo/dto/update-me.dto.js +31 -0
  37. package/dist/src/mi-expo/exports.d.ts +4 -0
  38. package/dist/src/mi-expo/exports.js +21 -0
  39. package/dist/src/otp/constants.d.ts +2 -0
  40. package/dist/src/otp/constants.js +6 -0
  41. package/dist/src/otp/dto/send-otp.dto.d.ts +158 -0
  42. package/dist/src/otp/dto/send-otp.dto.js +35 -0
  43. package/dist/src/otp/dto/verify-otp.dto.d.ts +455 -0
  44. package/dist/src/otp/dto/verify-otp.dto.js +46 -0
  45. package/dist/src/otp/exports.d.ts +2 -0
  46. package/dist/src/otp/exports.js +19 -0
  47. package/dist/src/prisma/constants.d.ts +1 -0
  48. package/dist/src/prisma/constants.js +5 -0
  49. package/dist/src/profile/dto/create-profile.dto.d.ts +48 -14
  50. package/dist/src/profile/dto/create-profile.dto.js +9 -7
  51. package/dist/src/profile/dto/delete-profile.dto.d.ts +30 -6
  52. package/dist/src/profile/dto/delete-profile.dto.js +2 -2
  53. package/dist/src/profile/dto/find-all-profile.dto.d.ts +47 -7
  54. package/dist/src/profile/dto/find-all-profile.dto.js +2 -2
  55. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +75 -11
  56. package/dist/src/profile/dto/find-by-date-range-profile.dto.js +3 -3
  57. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +32 -13
  58. package/dist/src/profile/dto/find-by-id-profile.dto.js +7 -5
  59. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +30 -6
  60. package/dist/src/profile/dto/find-by-phone-number.dto.js +2 -2
  61. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +47 -7
  62. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +2 -2
  63. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +47 -7
  64. package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -2
  65. package/dist/src/profile/dto/find-trash.dto.d.ts +7 -3
  66. package/dist/src/profile/dto/find-trash.dto.js +2 -2
  67. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +47 -7
  68. package/dist/src/profile/dto/find-with-active-chat.dto.js +2 -2
  69. package/dist/src/profile/dto/profile.dto.d.ts +44 -30
  70. package/dist/src/profile/dto/profile.dto.js +6 -63
  71. package/dist/src/profile/dto/update-profile.dto.d.ts +54 -12
  72. package/dist/src/profile/dto/update-profile.dto.js +9 -6
  73. package/dist/src/schema/exports.d.ts +2 -0
  74. package/dist/src/schema/exports.js +19 -0
  75. package/dist/src/{location/dto/location.dto.js → schema/location.schema.js} +2 -2
  76. package/dist/src/schema/profile.schema.d.ts +74 -0
  77. package/dist/src/schema/profile.schema.js +133 -0
  78. package/dist/src/shared/dto-modification/zod-without-dates.d.ts +2 -4
  79. package/dist/src/shared/dto-modification/zod-without-dates.js +8 -0
  80. package/dist/src/shared/dto-modification/zod-without-dates.js.map +1 -1
  81. package/dist/src/tag/dto/massive-allocation.dto.d.ts +47 -7
  82. package/dist/src/tag/dto/massive-allocation.dto.js +3 -3
  83. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +47 -7
  84. package/dist/src/tag/dto/massive-deallocation.dto.js +3 -3
  85. package/dist/src/webhook/constants.d.ts +1 -0
  86. package/dist/src/webhook/constants.js +5 -0
  87. package/dist/types/prisma-schema/edge.js +37 -43
  88. package/dist/types/prisma-schema/index-browser.js +19 -30
  89. package/dist/types/prisma-schema/index.d.ts +6249 -5155
  90. package/dist/types/prisma-schema/index.js +37 -43
  91. package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
  92. package/dist/types/prisma-schema/package.json +8 -2
  93. package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
  94. package/dist/types/prisma-schema/runtime/edge.js +18 -18
  95. package/dist/types/prisma-schema/runtime/index-browser.d.ts +3 -1
  96. package/dist/types/prisma-schema/runtime/index-browser.js +3 -3
  97. package/dist/types/prisma-schema/runtime/library.d.ts +205 -153
  98. package/dist/types/prisma-schema/runtime/library.js +55 -55
  99. package/dist/types/prisma-schema/runtime/react-native.js +26 -26
  100. package/dist/types/prisma-schema/runtime/wasm.js +17 -17
  101. package/dist/types/prisma-schema/schema.prisma +27 -33
  102. package/dist/types/prisma-schema/wasm.js +19 -30
  103. package/dist/types/schema.d.ts +510 -198
  104. package/package.json +32 -38
  105. package/dist/src/event/dto/event-tickets.dto.d.ts +0 -21
  106. package/dist/src/event/dto/event-tickets.dto.js +0 -21
  107. package/dist/src/event/dto/get-active-events.dto.d.ts +0 -247
  108. package/dist/src/event/dto/get-active-events.dto.js +0 -19
  109. package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -43
  110. package/dist/src/event/dto/toggle-active-event.dto.js +0 -6
  111. /package/dist/src/{location/dto/location.dto.d.ts → schema/location.schema.d.ts} +0 -0
@@ -3,193 +3,104 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
3
3
  id: z.ZodString;
4
4
  name: z.ZodString;
5
5
  date: z.ZodDate;
6
- startingDate: z.ZodDate;
7
- endingDate: z.ZodDate;
8
6
  location: z.ZodString;
9
7
  folderId: z.ZodNullable<z.ZodString>;
10
8
  tagAssistedId: z.ZodString;
11
9
  tagConfirmedId: z.ZodString;
12
- active: z.ZodBoolean;
13
10
  supraEventId: z.ZodNullable<z.ZodString>;
14
11
  created_at: z.ZodDate;
15
12
  updated_at: z.ZodDate;
16
- }, "location" | "name" | "date" | "startingDate" | "endingDate" | "folderId">, {
13
+ }, "location" | "name" | "date" | "folderId">, {
17
14
  subEvents: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
18
15
  id: z.ZodString;
19
16
  name: z.ZodString;
20
17
  date: z.ZodDate;
21
- startingDate: z.ZodDate;
22
- endingDate: z.ZodDate;
23
18
  location: z.ZodString;
24
19
  folderId: z.ZodNullable<z.ZodString>;
25
20
  tagAssistedId: z.ZodString;
26
21
  tagConfirmedId: z.ZodString;
27
- active: z.ZodBoolean;
28
22
  supraEventId: z.ZodNullable<z.ZodString>;
29
23
  created_at: z.ZodDate;
30
24
  updated_at: z.ZodDate;
31
- }, "location" | "name" | "date" | "startingDate" | "endingDate">, {
25
+ }, "location" | "name" | "date">, {
32
26
  id: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
33
27
  }>, "strip", z.ZodTypeAny, {
34
28
  location: string;
35
29
  id: string;
36
30
  name: string;
37
31
  date: Date;
38
- startingDate: Date;
39
- endingDate: Date;
40
32
  }, {
41
33
  location: string;
42
34
  id: string;
43
35
  name: string;
44
36
  date: Date;
45
- startingDate: Date;
46
- endingDate: Date;
47
- }>, "many">;
48
- eventTickets: z.ZodArray<z.ZodObject<Omit<{
49
- id: z.ZodString;
50
- amount: z.ZodNumber;
51
- type: z.ZodNativeEnum<{
52
- PARTICIPANT: "PARTICIPANT";
53
- STAFF: "STAFF";
54
- SPECTATOR: "SPECTATOR";
55
- }>;
56
- price: z.ZodNullable<z.ZodNumber>;
57
- }, "id">, "strip", z.ZodTypeAny, {
58
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
59
- amount: number;
60
- price: number | null;
61
- }, {
62
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
63
- amount: number;
64
- price: number | null;
65
37
  }>, "many">;
66
38
  }>, "strip", z.ZodTypeAny, {
67
39
  location: string;
68
40
  name: string;
69
41
  date: Date;
70
- startingDate: Date;
71
- endingDate: Date;
72
- folderId: string | null;
73
42
  subEvents: {
74
43
  location: string;
75
44
  id: string;
76
45
  name: string;
77
46
  date: Date;
78
- startingDate: Date;
79
- endingDate: Date;
80
- }[];
81
- eventTickets: {
82
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
83
- amount: number;
84
- price: number | null;
85
47
  }[];
48
+ folderId: string | null;
86
49
  }, {
87
50
  location: string;
88
51
  name: string;
89
52
  date: Date;
90
- startingDate: Date;
91
- endingDate: Date;
92
- folderId: string | null;
93
53
  subEvents: {
94
54
  location: string;
95
55
  id: string;
96
56
  name: string;
97
57
  date: Date;
98
- startingDate: Date;
99
- endingDate: Date;
100
- }[];
101
- eventTickets: {
102
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
103
- amount: number;
104
- price: number | null;
105
58
  }[];
59
+ folderId: string | null;
106
60
  }>;
107
61
  declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
108
62
  location: z.ZodString;
109
63
  name: z.ZodString;
110
64
  date: z.ZodString;
111
- startingDate: z.ZodString;
112
- endingDate: z.ZodString;
113
65
  folderId: z.ZodNullable<z.ZodString>;
114
66
  subEvents: z.ZodArray<z.ZodObject<{
115
67
  location: z.ZodString;
116
68
  name: z.ZodString;
117
69
  date: z.ZodString;
118
- startingDate: z.ZodString;
119
- endingDate: z.ZodString;
120
70
  id: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
121
71
  }, z.UnknownKeysParam, z.ZodTypeAny, {
122
72
  location: string;
123
73
  id: string;
124
74
  name: string;
125
75
  date: string;
126
- startingDate: string;
127
- endingDate: string;
128
76
  }, {
129
77
  location: string;
130
78
  id: string;
131
79
  name: string;
132
80
  date: string;
133
- startingDate: string;
134
- endingDate: string;
135
- }>, "many">;
136
- eventTickets: z.ZodArray<z.ZodObject<{
137
- type: z.ZodNativeEnum<{
138
- PARTICIPANT: "PARTICIPANT";
139
- STAFF: "STAFF";
140
- SPECTATOR: "SPECTATOR";
141
- }>;
142
- amount: z.ZodNumber;
143
- price: z.ZodNullable<z.ZodNumber>;
144
- }, z.UnknownKeysParam, z.ZodTypeAny, {
145
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
146
- amount: number;
147
- price: number | null;
148
- }, {
149
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
150
- amount: number;
151
- price: number | null;
152
81
  }>, "many">;
153
82
  }, z.UnknownKeysParam, z.ZodTypeAny, {
154
83
  location: string;
155
84
  name: string;
156
85
  date: string;
157
- startingDate: string;
158
- endingDate: string;
159
- folderId: string | null;
160
86
  subEvents: {
161
87
  location: string;
162
88
  id: string;
163
89
  name: string;
164
90
  date: string;
165
- startingDate: string;
166
- endingDate: string;
167
- }[];
168
- eventTickets: {
169
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
170
- amount: number;
171
- price: number | null;
172
91
  }[];
92
+ folderId: string | null;
173
93
  }, {
174
94
  location: string;
175
95
  name: string;
176
96
  date: string;
177
- startingDate: string;
178
- endingDate: string;
179
- folderId: string | null;
180
97
  subEvents: {
181
98
  location: string;
182
99
  id: string;
183
100
  name: string;
184
101
  date: string;
185
- startingDate: string;
186
- endingDate: string;
187
- }[];
188
- eventTickets: {
189
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
190
- amount: number;
191
- price: number | null;
192
102
  }[];
103
+ folderId: string | null;
193
104
  }>>;
194
105
  export declare class UpdateEventDto extends UpdateEventDto_base {
195
106
  }
@@ -197,13 +108,10 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
197
108
  id: z.ZodString;
198
109
  name: z.ZodString;
199
110
  date: z.ZodDate;
200
- startingDate: z.ZodDate;
201
- endingDate: z.ZodDate;
202
111
  location: z.ZodString;
203
112
  folderId: z.ZodNullable<z.ZodString>;
204
113
  tagAssistedId: z.ZodString;
205
114
  tagConfirmedId: z.ZodString;
206
- active: z.ZodBoolean;
207
115
  supraEventId: z.ZodNullable<z.ZodString>;
208
116
  created_at: z.ZodDate;
209
117
  updated_at: z.ZodDate;
@@ -274,46 +182,13 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
274
182
  isExclusive: boolean;
275
183
  };
276
184
  }>;
277
- eventTickets: z.ZodArray<z.ZodObject<{
278
- id: z.ZodString;
279
- amount: z.ZodNumber;
280
- type: z.ZodNativeEnum<{
281
- PARTICIPANT: "PARTICIPANT";
282
- STAFF: "STAFF";
283
- SPECTATOR: "SPECTATOR";
284
- }>;
285
- price: z.ZodNullable<z.ZodNumber>;
286
- }, "strip", z.ZodTypeAny, {
287
- id: string;
288
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
289
- amount: number;
290
- price: number | null;
291
- }, {
292
- id: string;
293
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
294
- amount: number;
295
- price: number | null;
296
- }>, "many">;
297
185
  }>, "strip", z.ZodTypeAny, {
298
186
  location: string;
299
187
  id: string;
300
188
  name: string;
301
189
  date: Date;
302
- startingDate: Date;
303
- endingDate: Date;
304
190
  created_at: Date;
305
191
  updated_at: Date;
306
- active: boolean;
307
- folderId: string | null;
308
- tagAssistedId: string;
309
- tagConfirmedId: string;
310
- supraEventId: string | null;
311
- eventTickets: {
312
- id: string;
313
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
314
- amount: number;
315
- price: number | null;
316
- }[];
317
192
  tagAssisted: {
318
193
  id: string;
319
194
  name: string;
@@ -330,26 +205,17 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
330
205
  isExclusive: boolean;
331
206
  };
332
207
  };
208
+ folderId: string | null;
209
+ tagAssistedId: string;
210
+ tagConfirmedId: string;
211
+ supraEventId: string | null;
333
212
  }, {
334
213
  location: string;
335
214
  id: string;
336
215
  name: string;
337
216
  date: Date;
338
- startingDate: Date;
339
- endingDate: Date;
340
217
  created_at: Date;
341
218
  updated_at: Date;
342
- active: boolean;
343
- folderId: string | null;
344
- tagAssistedId: string;
345
- tagConfirmedId: string;
346
- supraEventId: string | null;
347
- eventTickets: {
348
- id: string;
349
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
350
- amount: number;
351
- price: number | null;
352
- }[];
353
219
  tagAssisted: {
354
220
  id: string;
355
221
  name: string;
@@ -366,18 +232,19 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
366
232
  isExclusive: boolean;
367
233
  };
368
234
  };
235
+ folderId: string | null;
236
+ tagAssistedId: string;
237
+ tagConfirmedId: string;
238
+ supraEventId: string | null;
369
239
  }>;
370
240
  declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
371
241
  id: z.ZodString;
372
242
  name: z.ZodString;
373
243
  date: z.ZodString;
374
- startingDate: z.ZodString;
375
- endingDate: z.ZodString;
376
244
  location: z.ZodString;
377
245
  folderId: z.ZodNullable<z.ZodString>;
378
246
  tagAssistedId: z.ZodString;
379
247
  tagConfirmedId: z.ZodString;
380
- active: z.ZodBoolean;
381
248
  supraEventId: z.ZodNullable<z.ZodString>;
382
249
  created_at: z.ZodString;
383
250
  updated_at: z.ZodString;
@@ -446,46 +313,13 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
446
313
  isExclusive: boolean;
447
314
  };
448
315
  }>;
449
- eventTickets: z.ZodArray<z.ZodObject<{
450
- id: z.ZodString;
451
- amount: z.ZodNumber;
452
- type: z.ZodNativeEnum<{
453
- PARTICIPANT: "PARTICIPANT";
454
- STAFF: "STAFF";
455
- SPECTATOR: "SPECTATOR";
456
- }>;
457
- price: z.ZodNullable<z.ZodNumber>;
458
- }, z.UnknownKeysParam, z.ZodTypeAny, {
459
- id: string;
460
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
461
- amount: number;
462
- price: number | null;
463
- }, {
464
- id: string;
465
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
466
- amount: number;
467
- price: number | null;
468
- }>, "many">;
469
316
  }, z.UnknownKeysParam, z.ZodTypeAny, {
470
317
  location: string;
471
318
  id: string;
472
319
  name: string;
473
320
  date: string;
474
- startingDate: string;
475
- endingDate: string;
476
321
  created_at: string;
477
322
  updated_at: string;
478
- active: boolean;
479
- folderId: string | null;
480
- tagAssistedId: string;
481
- tagConfirmedId: string;
482
- supraEventId: string | null;
483
- eventTickets: {
484
- id: string;
485
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
486
- amount: number;
487
- price: number | null;
488
- }[];
489
323
  tagAssisted: {
490
324
  id: string;
491
325
  name: string;
@@ -502,26 +336,17 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
502
336
  isExclusive: boolean;
503
337
  };
504
338
  };
339
+ folderId: string | null;
340
+ tagAssistedId: string;
341
+ tagConfirmedId: string;
342
+ supraEventId: string | null;
505
343
  }, {
506
344
  location: string;
507
345
  id: string;
508
346
  name: string;
509
347
  date: string;
510
- startingDate: string;
511
- endingDate: string;
512
348
  created_at: string;
513
349
  updated_at: string;
514
- active: boolean;
515
- folderId: string | null;
516
- tagAssistedId: string;
517
- tagConfirmedId: string;
518
- supraEventId: string | null;
519
- eventTickets: {
520
- id: string;
521
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
522
- amount: number;
523
- price: number | null;
524
- }[];
525
350
  tagAssisted: {
526
351
  id: string;
527
352
  name: string;
@@ -538,6 +363,10 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
538
363
  isExclusive: boolean;
539
364
  };
540
365
  };
366
+ folderId: string | null;
367
+ tagAssistedId: string;
368
+ tagConfirmedId: string;
369
+ supraEventId: string | null;
541
370
  }>>;
542
371
  export declare class UpdateEventResponseDto extends UpdateEventResponseDto_base {
543
372
  }
@@ -4,7 +4,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.UpdateEventResponseDto = exports.updateEventResponseSchema = exports.UpdateEventDto = exports.updateEventSchema = void 0;
7
- const event_tickets_dto_1 = require("./event-tickets.dto");
8
7
  const event_dto_1 = require("./event.dto");
9
8
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
10
9
  const tag_group_dto_1 = require("../../tag-group/dto/tag-group.dto");
@@ -16,8 +15,6 @@ exports.updateEventSchema = event_dto_1.eventSchema
16
15
  folderId: true,
17
16
  date: true,
18
17
  location: true,
19
- startingDate: true,
20
- endingDate: true,
21
18
  })
22
19
  .merge(zod_1.default.object({
23
20
  subEvents: zod_1.default.array(event_dto_1.eventSchema
@@ -25,15 +22,10 @@ exports.updateEventSchema = event_dto_1.eventSchema
25
22
  name: true,
26
23
  location: true,
27
24
  date: true,
28
- startingDate: true,
29
- endingDate: true,
30
25
  })
31
26
  .extend({
32
27
  id: event_dto_1.eventSchema.shape.id.or(zod_1.default.literal('')),
33
28
  })),
34
- eventTickets: zod_1.default.array(event_tickets_dto_1.eventTicketsSchema.omit({
35
- id: true,
36
- })),
37
29
  }));
38
30
  class UpdateEventDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateEventSchema) {
39
31
  }
@@ -42,7 +34,6 @@ exports.updateEventResponseSchema = event_dto_1.eventSchema.merge(zod_1.default.
42
34
  tagAssisted: tag_dto_1.tagSchema.merge(zod_1.default.object({
43
35
  group: tag_group_dto_1.tagGroupSchema,
44
36
  })),
45
- eventTickets: zod_1.default.array(event_tickets_dto_1.eventTicketsSchema),
46
37
  }));
47
38
  class UpdateEventResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateEventResponseSchema) {
48
39
  }
@@ -1,9 +1,6 @@
1
1
  export * from './dto/create-event.dto';
2
2
  export * from './dto/delete-event.dto';
3
- export * from './dto/event-tickets.dto';
4
3
  export * from './dto/event.dto';
5
- export * from './dto/get-active-events.dto';
6
4
  export * from './dto/get-all-event.dto';
7
5
  export * from './dto/get-by-id-event.dto';
8
- export * from './dto/toggle-active-event.dto';
9
6
  export * from './dto/update-event.dto';
@@ -16,11 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./dto/create-event.dto"), exports);
18
18
  __exportStar(require("./dto/delete-event.dto"), exports);
19
- __exportStar(require("./dto/event-tickets.dto"), exports);
20
19
  __exportStar(require("./dto/event.dto"), exports);
21
- __exportStar(require("./dto/get-active-events.dto"), exports);
22
20
  __exportStar(require("./dto/get-all-event.dto"), exports);
23
21
  __exportStar(require("./dto/get-by-id-event.dto"), exports);
24
- __exportStar(require("./dto/toggle-active-event.dto"), exports);
25
22
  __exportStar(require("./dto/update-event.dto"), exports);
26
23
  //# sourceMappingURL=exports.js.map
@@ -11,13 +11,10 @@ export declare const getAllEventFolderResponseSchema: 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,11 +23,8 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
26
23
  id: string;
27
24
  name: string;
28
25
  date: Date;
29
- startingDate: Date;
30
- endingDate: Date;
31
26
  created_at: Date;
32
27
  updated_at: Date;
33
- active: boolean;
34
28
  folderId: string | null;
35
29
  tagAssistedId: string;
36
30
  tagConfirmedId: string;
@@ -40,11 +34,8 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
40
34
  id: string;
41
35
  name: string;
42
36
  date: Date;
43
- startingDate: Date;
44
- endingDate: Date;
45
37
  created_at: Date;
46
38
  updated_at: Date;
47
- active: boolean;
48
39
  folderId: string | null;
49
40
  tagAssistedId: string;
50
41
  tagConfirmedId: string;
@@ -61,11 +52,8 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
61
52
  id: string;
62
53
  name: string;
63
54
  date: Date;
64
- startingDate: Date;
65
- endingDate: Date;
66
55
  created_at: Date;
67
56
  updated_at: Date;
68
- active: boolean;
69
57
  folderId: string | null;
70
58
  tagAssistedId: string;
71
59
  tagConfirmedId: string;
@@ -82,11 +70,8 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
82
70
  id: string;
83
71
  name: string;
84
72
  date: Date;
85
- startingDate: Date;
86
- endingDate: Date;
87
73
  created_at: Date;
88
74
  updated_at: Date;
89
- active: boolean;
90
75
  folderId: string | null;
91
76
  tagAssistedId: string;
92
77
  tagConfirmedId: string;
@@ -105,11 +90,8 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
105
90
  id: string;
106
91
  name: string;
107
92
  date: Date;
108
- startingDate: Date;
109
- endingDate: Date;
110
93
  created_at: Date;
111
94
  updated_at: Date;
112
- active: boolean;
113
95
  folderId: string | null;
114
96
  tagAssistedId: string;
115
97
  tagConfirmedId: string;
@@ -128,11 +110,8 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
128
110
  id: string;
129
111
  name: string;
130
112
  date: Date;
131
- startingDate: Date;
132
- endingDate: Date;
133
113
  created_at: Date;
134
114
  updated_at: Date;
135
- active: boolean;
136
115
  folderId: string | null;
137
116
  tagAssistedId: string;
138
117
  tagConfirmedId: string;
@@ -151,13 +130,10 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
151
130
  id: z.ZodString;
152
131
  name: z.ZodString;
153
132
  date: z.ZodString;
154
- startingDate: z.ZodString;
155
- endingDate: z.ZodString;
156
133
  location: z.ZodString;
157
134
  folderId: z.ZodNullable<z.ZodString>;
158
135
  tagAssistedId: z.ZodString;
159
136
  tagConfirmedId: z.ZodString;
160
- active: z.ZodBoolean;
161
137
  supraEventId: z.ZodNullable<z.ZodString>;
162
138
  created_at: z.ZodString;
163
139
  updated_at: z.ZodString;
@@ -166,11 +142,8 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
166
142
  id: string;
167
143
  name: string;
168
144
  date: string;
169
- startingDate: string;
170
- endingDate: string;
171
145
  created_at: string;
172
146
  updated_at: string;
173
- active: boolean;
174
147
  folderId: string | null;
175
148
  tagAssistedId: string;
176
149
  tagConfirmedId: string;
@@ -180,11 +153,8 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
180
153
  id: string;
181
154
  name: string;
182
155
  date: string;
183
- startingDate: string;
184
- endingDate: string;
185
156
  created_at: string;
186
157
  updated_at: string;
187
- active: boolean;
188
158
  folderId: string | null;
189
159
  tagAssistedId: string;
190
160
  tagConfirmedId: string;
@@ -201,11 +171,8 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
201
171
  id: string;
202
172
  name: string;
203
173
  date: string;
204
- startingDate: string;
205
- endingDate: string;
206
174
  created_at: string;
207
175
  updated_at: string;
208
- active: boolean;
209
176
  folderId: string | null;
210
177
  tagAssistedId: string;
211
178
  tagConfirmedId: string;
@@ -222,11 +189,8 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
222
189
  id: string;
223
190
  name: string;
224
191
  date: string;
225
- startingDate: string;
226
- endingDate: string;
227
192
  created_at: string;
228
193
  updated_at: string;
229
- active: boolean;
230
194
  folderId: string | null;
231
195
  tagAssistedId: string;
232
196
  tagConfirmedId: string;
@@ -245,11 +209,8 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
245
209
  id: string;
246
210
  name: string;
247
211
  date: string;
248
- startingDate: string;
249
- endingDate: string;
250
212
  created_at: string;
251
213
  updated_at: string;
252
- active: boolean;
253
214
  folderId: string | null;
254
215
  tagAssistedId: string;
255
216
  tagConfirmedId: string;
@@ -268,11 +229,8 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
268
229
  id: string;
269
230
  name: string;
270
231
  date: string;
271
- startingDate: string;
272
- endingDate: string;
273
232
  created_at: string;
274
233
  updated_at: string;
275
- active: boolean;
276
234
  folderId: string | null;
277
235
  tagAssistedId: string;
278
236
  tagConfirmedId: string;