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