expo-backend-types 0.48.0 → 0.49.0-EXPO-345-ExpoBackend-Agregar-los-nuevos-requerimientos-a-las-rutas.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.
Files changed (49) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +72 -23
  2. package/dist/src/event/dto/create-event.dto.js +7 -1
  3. package/dist/src/event/dto/delete-banner-event.dto.d.ts +18 -0
  4. package/dist/src/event/dto/delete-banner-event.dto.js +12 -0
  5. package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
  6. package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +18 -0
  7. package/dist/src/event/dto/delete-main-picture-event.dto.js +12 -0
  8. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -33
  9. package/dist/src/event/dto/event-tickets.dto.js +8 -18
  10. package/dist/src/event/dto/event.dto.d.ts +9 -0
  11. package/dist/src/event/dto/event.dto.js +13 -0
  12. package/dist/src/event/dto/get-active-events.dto.d.ts +33 -23
  13. package/dist/src/event/dto/get-all-event.dto.d.ts +272 -48
  14. package/dist/src/event/dto/get-all-event.dto.js +2 -2
  15. package/dist/src/event/dto/get-by-id-event.dto.d.ts +99 -23
  16. package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
  17. package/dist/src/event/dto/update-banner-event.dto.d.ts +33 -0
  18. package/dist/src/event/dto/update-banner-event.dto.js +18 -0
  19. package/dist/src/event/dto/update-event.dto.d.ts +75 -46
  20. package/dist/src/event/dto/update-event.dto.js +8 -2
  21. package/dist/src/event/dto/update-main-picture-event.dto.d.ts +33 -0
  22. package/dist/src/event/dto/update-main-picture-event.dto.js +18 -0
  23. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
  24. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
  25. package/dist/src/i18n/es.d.ts +7 -1
  26. package/dist/src/i18n/es.js +7 -3
  27. package/dist/src/i18n/es.js.map +1 -1
  28. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
  29. package/dist/src/profile/dto/delete-image-profile.dto.d.ts +18 -0
  30. package/dist/src/profile/dto/delete-image-profile.dto.js +12 -0
  31. package/dist/src/profile/dto/update-image-profile.dto.d.ts +33 -0
  32. package/dist/src/profile/dto/update-image-profile.dto.js +18 -0
  33. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
  34. package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
  35. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
  36. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
  37. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
  38. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
  39. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
  40. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  41. package/dist/types/prisma-schema/edge.js +6 -3
  42. package/dist/types/prisma-schema/index-browser.js +3 -0
  43. package/dist/types/prisma-schema/index.d.ts +214 -1
  44. package/dist/types/prisma-schema/index.js +6 -3
  45. package/dist/types/prisma-schema/package.json +1 -1
  46. package/dist/types/prisma-schema/schema.prisma +9 -6
  47. package/dist/types/prisma-schema/wasm.js +3 -0
  48. package/dist/types/schema.d.ts +383 -63
  49. package/package.json +1 -2
@@ -7,6 +7,9 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
7
7
  startingDate: z.ZodDate;
8
8
  endingDate: z.ZodDate;
9
9
  location: z.ZodString;
10
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
11
+ bannerUrl: z.ZodNullable<z.ZodString>;
12
+ description: z.ZodNullable<z.ZodString>;
10
13
  folderId: z.ZodNullable<z.ZodString>;
11
14
  tagAssistedId: z.ZodString;
12
15
  tagConfirmedId: z.ZodString;
@@ -15,7 +18,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
15
18
  created_at: z.ZodDate;
16
19
  updated_at: z.ZodDate;
17
20
  }, {
18
- eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
21
+ eventTickets: z.ZodArray<z.ZodObject<{
19
22
  id: z.ZodString;
20
23
  amount: z.ZodNullable<z.ZodNumber>;
21
24
  type: z.ZodNativeEnum<{
@@ -34,18 +37,9 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
34
37
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
35
38
  amount: number | null;
36
39
  price: number | null;
37
- }>, {
38
- id: string;
39
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
40
- amount: number | null;
41
- price: number | null;
42
- }, {
43
- id: string;
44
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
45
- amount: number | null;
46
- price: number | null;
47
40
  }>, "many">;
48
41
  }>, "strip", z.ZodTypeAny, {
42
+ description: string | null;
49
43
  location: string;
50
44
  id: string;
51
45
  name: string;
@@ -55,6 +49,8 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
55
49
  created_at: Date;
56
50
  updated_at: Date;
57
51
  active: boolean;
52
+ mainPictureUrl: string | null;
53
+ bannerUrl: string | null;
58
54
  folderId: string | null;
59
55
  tagAssistedId: string;
60
56
  tagConfirmedId: string;
@@ -66,6 +62,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
66
62
  price: number | null;
67
63
  }[];
68
64
  }, {
65
+ description: string | null;
69
66
  location: string;
70
67
  id: string;
71
68
  name: string;
@@ -75,6 +72,8 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
75
72
  created_at: Date;
76
73
  updated_at: Date;
77
74
  active: boolean;
75
+ mainPictureUrl: string | null;
76
+ bannerUrl: string | null;
78
77
  folderId: string | null;
79
78
  tagAssistedId: string;
80
79
  tagConfirmedId: string;
@@ -88,6 +87,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
88
87
  }>, "many">;
89
88
  }, "strip", z.ZodTypeAny, {
90
89
  events: {
90
+ description: string | null;
91
91
  location: string;
92
92
  id: string;
93
93
  name: string;
@@ -97,6 +97,8 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
97
97
  created_at: Date;
98
98
  updated_at: Date;
99
99
  active: boolean;
100
+ mainPictureUrl: string | null;
101
+ bannerUrl: string | null;
100
102
  folderId: string | null;
101
103
  tagAssistedId: string;
102
104
  tagConfirmedId: string;
@@ -110,6 +112,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
110
112
  }[];
111
113
  }, {
112
114
  events: {
115
+ description: string | null;
113
116
  location: string;
114
117
  id: string;
115
118
  name: string;
@@ -119,6 +122,8 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
119
122
  created_at: Date;
120
123
  updated_at: Date;
121
124
  active: boolean;
125
+ mainPictureUrl: string | null;
126
+ bannerUrl: string | null;
122
127
  folderId: string | null;
123
128
  tagAssistedId: string;
124
129
  tagConfirmedId: string;
@@ -139,6 +144,9 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
139
144
  startingDate: z.ZodString;
140
145
  endingDate: z.ZodString;
141
146
  location: z.ZodString;
147
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
148
+ bannerUrl: z.ZodNullable<z.ZodString>;
149
+ description: z.ZodNullable<z.ZodString>;
142
150
  folderId: z.ZodNullable<z.ZodString>;
143
151
  tagAssistedId: z.ZodString;
144
152
  tagConfirmedId: z.ZodString;
@@ -146,7 +154,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
146
154
  supraEventId: z.ZodNullable<z.ZodString>;
147
155
  created_at: z.ZodString;
148
156
  updated_at: z.ZodString;
149
- eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
157
+ eventTickets: z.ZodArray<z.ZodObject<{
150
158
  id: z.ZodString;
151
159
  amount: z.ZodNullable<z.ZodNumber>;
152
160
  type: z.ZodNativeEnum<{
@@ -155,17 +163,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
155
163
  SPECTATOR: "SPECTATOR";
156
164
  }>;
157
165
  price: z.ZodNullable<z.ZodNumber>;
158
- }, "strip", z.ZodTypeAny, {
159
- id: string;
160
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
161
- amount: number | null;
162
- price: number | null;
163
- }, {
164
- id: string;
165
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
166
- amount: number | null;
167
- price: number | null;
168
- }>, {
166
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
169
167
  id: string;
170
168
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
171
169
  amount: number | null;
@@ -177,6 +175,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
177
175
  price: number | null;
178
176
  }>, "many">;
179
177
  }, z.UnknownKeysParam, z.ZodTypeAny, {
178
+ description: string | null;
180
179
  location: string;
181
180
  id: string;
182
181
  name: string;
@@ -186,6 +185,8 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
186
185
  created_at: string;
187
186
  updated_at: string;
188
187
  active: boolean;
188
+ mainPictureUrl: string | null;
189
+ bannerUrl: string | null;
189
190
  folderId: string | null;
190
191
  tagAssistedId: string;
191
192
  tagConfirmedId: string;
@@ -197,6 +198,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
197
198
  price: number | null;
198
199
  }[];
199
200
  }, {
201
+ description: string | null;
200
202
  location: string;
201
203
  id: string;
202
204
  name: string;
@@ -206,6 +208,8 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
206
208
  created_at: string;
207
209
  updated_at: string;
208
210
  active: boolean;
211
+ mainPictureUrl: string | null;
212
+ bannerUrl: string | null;
209
213
  folderId: string | null;
210
214
  tagAssistedId: string;
211
215
  tagConfirmedId: string;
@@ -219,6 +223,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
219
223
  }>, "many">;
220
224
  }, z.UnknownKeysParam, z.ZodTypeAny, {
221
225
  events: {
226
+ description: string | null;
222
227
  location: string;
223
228
  id: string;
224
229
  name: string;
@@ -228,6 +233,8 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
228
233
  created_at: string;
229
234
  updated_at: string;
230
235
  active: boolean;
236
+ mainPictureUrl: string | null;
237
+ bannerUrl: string | null;
231
238
  folderId: string | null;
232
239
  tagAssistedId: string;
233
240
  tagConfirmedId: string;
@@ -241,6 +248,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
241
248
  }[];
242
249
  }, {
243
250
  events: {
251
+ description: string | null;
244
252
  location: string;
245
253
  id: string;
246
254
  name: string;
@@ -250,6 +258,8 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
250
258
  created_at: string;
251
259
  updated_at: string;
252
260
  active: boolean;
261
+ mainPictureUrl: string | null;
262
+ bannerUrl: string | null;
253
263
  folderId: string | null;
254
264
  tagAssistedId: string;
255
265
  tagConfirmedId: string;