expo-backend-types 0.46.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.2 → 0.46.0-EXPO-339-Testing-y-bugfixing.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/event/dto/create-event.dto.d.ts +24 -77
- package/dist/src/event/dto/create-event.dto.js +2 -14
- 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 +16 -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/toggle-active-event.dto.d.ts +0 -9
- package/dist/src/event/dto/update-event.dto.d.ts +44 -31
- package/dist/src/event/dto/update-event.dto.js +2 -2
- 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 -7
- package/dist/src/i18n/es.js +3 -7
- 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 +0 -66
- package/package.json +1 -1
@@ -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
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
11
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
12
|
-
eventDescription: 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,6 +34,16 @@ 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
49
|
location: string;
|
@@ -45,12 +52,9 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
45
52
|
date: Date;
|
46
53
|
startingDate: Date;
|
47
54
|
endingDate: Date;
|
48
|
-
eventPictureUrl: string | null;
|
49
|
-
eventBannerUrl: string | null;
|
50
55
|
created_at: Date;
|
51
56
|
updated_at: Date;
|
52
57
|
active: boolean;
|
53
|
-
eventDescription: string | null;
|
54
58
|
folderId: string | null;
|
55
59
|
tagAssistedId: string;
|
56
60
|
tagConfirmedId: string;
|
@@ -68,12 +72,9 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
68
72
|
date: Date;
|
69
73
|
startingDate: Date;
|
70
74
|
endingDate: Date;
|
71
|
-
eventPictureUrl: string | null;
|
72
|
-
eventBannerUrl: string | null;
|
73
75
|
created_at: Date;
|
74
76
|
updated_at: Date;
|
75
77
|
active: boolean;
|
76
|
-
eventDescription: string | null;
|
77
78
|
folderId: string | null;
|
78
79
|
tagAssistedId: string;
|
79
80
|
tagConfirmedId: string;
|
@@ -93,12 +94,9 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
93
94
|
date: Date;
|
94
95
|
startingDate: Date;
|
95
96
|
endingDate: Date;
|
96
|
-
eventPictureUrl: string | null;
|
97
|
-
eventBannerUrl: string | null;
|
98
97
|
created_at: Date;
|
99
98
|
updated_at: Date;
|
100
99
|
active: boolean;
|
101
|
-
eventDescription: string | null;
|
102
100
|
folderId: string | null;
|
103
101
|
tagAssistedId: string;
|
104
102
|
tagConfirmedId: string;
|
@@ -118,12 +116,9 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
118
116
|
date: Date;
|
119
117
|
startingDate: Date;
|
120
118
|
endingDate: Date;
|
121
|
-
eventPictureUrl: string | null;
|
122
|
-
eventBannerUrl: string | null;
|
123
119
|
created_at: Date;
|
124
120
|
updated_at: Date;
|
125
121
|
active: boolean;
|
126
|
-
eventDescription: 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
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
148
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
149
|
-
eventDescription: 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;
|
@@ -181,12 +183,9 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
181
183
|
date: string;
|
182
184
|
startingDate: string;
|
183
185
|
endingDate: string;
|
184
|
-
eventPictureUrl: string | null;
|
185
|
-
eventBannerUrl: string | null;
|
186
186
|
created_at: string;
|
187
187
|
updated_at: string;
|
188
188
|
active: boolean;
|
189
|
-
eventDescription: string | null;
|
190
189
|
folderId: string | null;
|
191
190
|
tagAssistedId: string;
|
192
191
|
tagConfirmedId: string;
|
@@ -204,12 +203,9 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
204
203
|
date: string;
|
205
204
|
startingDate: string;
|
206
205
|
endingDate: string;
|
207
|
-
eventPictureUrl: string | null;
|
208
|
-
eventBannerUrl: string | null;
|
209
206
|
created_at: string;
|
210
207
|
updated_at: string;
|
211
208
|
active: boolean;
|
212
|
-
eventDescription: string | null;
|
213
209
|
folderId: string | null;
|
214
210
|
tagAssistedId: string;
|
215
211
|
tagConfirmedId: string;
|
@@ -229,12 +225,9 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
229
225
|
date: string;
|
230
226
|
startingDate: string;
|
231
227
|
endingDate: string;
|
232
|
-
eventPictureUrl: string | null;
|
233
|
-
eventBannerUrl: string | null;
|
234
228
|
created_at: string;
|
235
229
|
updated_at: string;
|
236
230
|
active: boolean;
|
237
|
-
eventDescription: string | null;
|
238
231
|
folderId: string | null;
|
239
232
|
tagAssistedId: string;
|
240
233
|
tagConfirmedId: string;
|
@@ -254,12 +247,9 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
254
247
|
date: string;
|
255
248
|
startingDate: string;
|
256
249
|
endingDate: string;
|
257
|
-
eventPictureUrl: string | null;
|
258
|
-
eventBannerUrl: string | null;
|
259
250
|
created_at: string;
|
260
251
|
updated_at: string;
|
261
252
|
active: boolean;
|
262
|
-
eventDescription: string | null;
|
263
253
|
folderId: string | null;
|
264
254
|
tagAssistedId: string;
|
265
255
|
tagConfirmedId: string;
|