expo-backend-types 0.37.0-EXPO-327-EB-Escanear-entrada.3 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5
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/account/dto/get-global-filter.dto.d.ts +8 -8
- package/dist/src/account/dto/get-me.dto.d.ts +16 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +3 -2
- package/dist/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
- package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -88
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +35 -28
- package/dist/src/i18n/es.js +201 -79
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/i18n/translate.js +2 -2
- package/dist/src/i18n/translate.js.map +1 -1
- package/dist/src/image/dto/update-image.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +12 -12
- package/dist/src/schema/profile.schema.js +7 -17
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js +2 -1
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js.map +1 -1
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
- package/dist/src/ticket/constants.d.ts +14 -12
- package/dist/src/ticket/constants.js +248 -354
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +596 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +50 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -58
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -1
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +3 -2
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/ticket.dto.js +2 -6
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +26 -54
- package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
- package/dist/src/ticket/exports.d.ts +0 -1
- package/dist/src/ticket/exports.js +0 -1
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +356 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +32 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +20 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
- package/dist/src/ticket-group/exports.d.ts +5 -0
- package/dist/src/ticket-group/exports.js +22 -0
- package/dist/types/prisma-schema/edge.js +21 -14
- package/dist/types/prisma-schema/index-browser.js +16 -9
- package/dist/types/prisma-schema/index.d.ts +2464 -653
- package/dist/types/prisma-schema/index.js +21 -14
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +2 -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 +2 -2
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +105 -123
- package/dist/types/prisma-schema/runtime/library.js +56 -56
- package/dist/types/prisma-schema/runtime/react-native.js +25 -25
- package/dist/types/prisma-schema/runtime/wasm.js +19 -19
- package/dist/types/prisma-schema/schema.prisma +23 -9
- package/dist/types/prisma-schema/wasm.js +16 -9
- package/dist/types/schema.d.ts +266 -59
- package/package.json +19 -18
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +0 -34
- package/dist/src/ticket/dto/scan-ticket.dto.js +0 -21
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -6,36 +6,29 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
6
6
|
STAFF: "STAFF";
|
7
7
|
SPECTATOR: "SPECTATOR";
|
8
8
|
}>;
|
9
|
-
status: import("zod").ZodNativeEnum<{
|
10
|
-
BOOKED: "BOOKED";
|
11
|
-
PAID: "PAID";
|
12
|
-
FREE: "FREE";
|
13
|
-
}>;
|
14
9
|
fullName: import("zod").ZodString;
|
15
10
|
mail: import("zod").ZodString;
|
16
11
|
dni: import("zod").ZodString;
|
17
|
-
|
18
|
-
scanned: import("zod").ZodBoolean;
|
19
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12
|
+
ticketGroupId: import("zod").ZodString;
|
20
13
|
created_at: import("zod").ZodDate;
|
21
14
|
updated_at: import("zod").ZodDate;
|
22
|
-
}, "type" | "fullName" | "mail" | "eventId" | "
|
15
|
+
}, "type" | "fullName" | "mail" | "eventId" | "dni" | "ticketGroupId">, {
|
23
16
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
24
17
|
}>, "strip", import("zod").ZodTypeAny, {
|
25
|
-
type: "
|
18
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
26
19
|
fullName: string;
|
27
20
|
mail: string;
|
28
21
|
eventId: string;
|
29
|
-
status: "BOOKED" | "PAID" | "FREE";
|
30
22
|
dni: string;
|
23
|
+
ticketGroupId: string;
|
31
24
|
profileId?: string | undefined;
|
32
25
|
}, {
|
33
|
-
type: "
|
26
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
34
27
|
fullName: string;
|
35
28
|
mail: string;
|
36
29
|
eventId: string;
|
37
|
-
status: "BOOKED" | "PAID" | "FREE";
|
38
30
|
dni: string;
|
31
|
+
ticketGroupId: string;
|
39
32
|
profileId?: string | undefined;
|
40
33
|
}>;
|
41
34
|
declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -47,28 +40,24 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
47
40
|
fullName: import("zod").ZodString;
|
48
41
|
mail: import("zod").ZodString;
|
49
42
|
eventId: import("zod").ZodString;
|
50
|
-
status: import("zod").ZodNativeEnum<{
|
51
|
-
BOOKED: "BOOKED";
|
52
|
-
PAID: "PAID";
|
53
|
-
FREE: "FREE";
|
54
|
-
}>;
|
55
43
|
dni: import("zod").ZodString;
|
44
|
+
ticketGroupId: import("zod").ZodString;
|
56
45
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
57
46
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
58
|
-
type: "
|
47
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
59
48
|
fullName: string;
|
60
49
|
mail: string;
|
61
50
|
eventId: string;
|
62
|
-
status: "BOOKED" | "PAID" | "FREE";
|
63
51
|
dni: string;
|
52
|
+
ticketGroupId: string;
|
64
53
|
profileId?: string | undefined;
|
65
54
|
}, {
|
66
|
-
type: "
|
55
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
67
56
|
fullName: string;
|
68
57
|
mail: string;
|
69
58
|
eventId: string;
|
70
|
-
status: "BOOKED" | "PAID" | "FREE";
|
71
59
|
dni: string;
|
60
|
+
ticketGroupId: string;
|
72
61
|
profileId?: string | undefined;
|
73
62
|
}>>;
|
74
63
|
export declare class CreateTicketDto extends CreateTicketDto_base {
|
@@ -81,17 +70,10 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
81
70
|
STAFF: "STAFF";
|
82
71
|
SPECTATOR: "SPECTATOR";
|
83
72
|
}>;
|
84
|
-
status: import("zod").ZodNativeEnum<{
|
85
|
-
BOOKED: "BOOKED";
|
86
|
-
PAID: "PAID";
|
87
|
-
FREE: "FREE";
|
88
|
-
}>;
|
89
73
|
fullName: import("zod").ZodString;
|
90
74
|
mail: import("zod").ZodString;
|
91
75
|
dni: import("zod").ZodString;
|
92
|
-
|
93
|
-
scanned: import("zod").ZodBoolean;
|
94
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
76
|
+
ticketGroupId: import("zod").ZodString;
|
95
77
|
created_at: import("zod").ZodDate;
|
96
78
|
updated_at: import("zod").ZodDate;
|
97
79
|
}, {
|
@@ -155,17 +137,14 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
155
137
|
supraEventId: string | null;
|
156
138
|
};
|
157
139
|
id: string;
|
158
|
-
type: "
|
140
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
159
141
|
fullName: string;
|
160
142
|
mail: string;
|
161
143
|
eventId: string;
|
162
|
-
status: "BOOKED" | "PAID" | "FREE";
|
163
|
-
seat: number | null;
|
164
144
|
dni: string;
|
165
145
|
created_at: Date;
|
166
146
|
updated_at: Date;
|
167
|
-
|
168
|
-
scannedAt: Date | null;
|
147
|
+
ticketGroupId: string;
|
169
148
|
}, {
|
170
149
|
event: {
|
171
150
|
location: string;
|
@@ -183,17 +162,14 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
183
162
|
supraEventId: string | null;
|
184
163
|
};
|
185
164
|
id: string;
|
186
|
-
type: "
|
165
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
187
166
|
fullName: string;
|
188
167
|
mail: string;
|
189
168
|
eventId: string;
|
190
|
-
status: "BOOKED" | "PAID" | "FREE";
|
191
|
-
seat: number | null;
|
192
169
|
dni: string;
|
193
170
|
created_at: Date;
|
194
171
|
updated_at: Date;
|
195
|
-
|
196
|
-
scannedAt: Date | null;
|
172
|
+
ticketGroupId: string;
|
197
173
|
}>;
|
198
174
|
declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
199
175
|
id: import("zod").ZodString;
|
@@ -203,17 +179,10 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
203
179
|
STAFF: "STAFF";
|
204
180
|
SPECTATOR: "SPECTATOR";
|
205
181
|
}>;
|
206
|
-
status: import("zod").ZodNativeEnum<{
|
207
|
-
BOOKED: "BOOKED";
|
208
|
-
PAID: "PAID";
|
209
|
-
FREE: "FREE";
|
210
|
-
}>;
|
211
182
|
fullName: import("zod").ZodString;
|
212
183
|
mail: import("zod").ZodString;
|
213
184
|
dni: import("zod").ZodString;
|
214
|
-
|
215
|
-
scanned: import("zod").ZodBoolean;
|
216
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
185
|
+
ticketGroupId: import("zod").ZodString;
|
217
186
|
created_at: import("zod").ZodString;
|
218
187
|
updated_at: import("zod").ZodString;
|
219
188
|
event: import("zod").ZodObject<{
|
@@ -276,17 +245,14 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
276
245
|
supraEventId: string | null;
|
277
246
|
};
|
278
247
|
id: string;
|
279
|
-
type: "
|
248
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
280
249
|
fullName: string;
|
281
250
|
mail: string;
|
282
251
|
eventId: string;
|
283
|
-
status: "BOOKED" | "PAID" | "FREE";
|
284
|
-
seat: number | null;
|
285
252
|
dni: string;
|
286
253
|
created_at: string;
|
287
254
|
updated_at: string;
|
288
|
-
|
289
|
-
scannedAt: string | null;
|
255
|
+
ticketGroupId: string;
|
290
256
|
}, {
|
291
257
|
event: {
|
292
258
|
location: string;
|
@@ -304,17 +270,14 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
304
270
|
supraEventId: string | null;
|
305
271
|
};
|
306
272
|
id: string;
|
307
|
-
type: "
|
273
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
308
274
|
fullName: string;
|
309
275
|
mail: string;
|
310
276
|
eventId: string;
|
311
|
-
status: "BOOKED" | "PAID" | "FREE";
|
312
|
-
seat: number | null;
|
313
277
|
dni: string;
|
314
278
|
created_at: string;
|
315
279
|
updated_at: string;
|
316
|
-
|
317
|
-
scannedAt: string | null;
|
280
|
+
ticketGroupId: string;
|
318
281
|
}>>;
|
319
282
|
export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
|
320
283
|
}
|
@@ -9,10 +9,10 @@ exports.createTicketSchema = ticket_dto_1.ticketSchema
|
|
9
9
|
.pick({
|
10
10
|
eventId: true,
|
11
11
|
type: true,
|
12
|
-
status: true,
|
13
12
|
fullName: true,
|
14
13
|
mail: true,
|
15
14
|
dni: true,
|
15
|
+
ticketGroupId: true,
|
16
16
|
})
|
17
17
|
.extend({
|
18
18
|
profileId: profile_schema_1.profileSchema.shape.id.optional(),
|
@@ -6,45 +6,32 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
6
6
|
STAFF: "STAFF";
|
7
7
|
SPECTATOR: "SPECTATOR";
|
8
8
|
}>;
|
9
|
-
status: import("zod").ZodNativeEnum<{
|
10
|
-
BOOKED: "BOOKED";
|
11
|
-
PAID: "PAID";
|
12
|
-
FREE: "FREE";
|
13
|
-
}>;
|
14
9
|
fullName: import("zod").ZodString;
|
15
10
|
mail: import("zod").ZodString;
|
16
11
|
dni: import("zod").ZodString;
|
17
|
-
|
18
|
-
scanned: import("zod").ZodBoolean;
|
19
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12
|
+
ticketGroupId: import("zod").ZodString;
|
20
13
|
created_at: import("zod").ZodDate;
|
21
14
|
updated_at: import("zod").ZodDate;
|
22
15
|
}, "strip", import("zod").ZodTypeAny, {
|
23
16
|
id: string;
|
24
|
-
type: "
|
17
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
25
18
|
fullName: string;
|
26
19
|
mail: string;
|
27
20
|
eventId: string;
|
28
|
-
status: "BOOKED" | "PAID" | "FREE";
|
29
|
-
seat: number | null;
|
30
21
|
dni: string;
|
31
22
|
created_at: Date;
|
32
23
|
updated_at: Date;
|
33
|
-
|
34
|
-
scannedAt: Date | null;
|
24
|
+
ticketGroupId: string;
|
35
25
|
}, {
|
36
26
|
id: string;
|
37
|
-
type: "
|
27
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
38
28
|
fullName: string;
|
39
29
|
mail: string;
|
40
30
|
eventId: string;
|
41
|
-
status: "BOOKED" | "PAID" | "FREE";
|
42
|
-
seat: number | null;
|
43
31
|
dni: string;
|
44
32
|
created_at: Date;
|
45
33
|
updated_at: Date;
|
46
|
-
|
47
|
-
scannedAt: Date | null;
|
34
|
+
ticketGroupId: string;
|
48
35
|
}>;
|
49
36
|
declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
50
37
|
id: import("zod").ZodString;
|
@@ -54,45 +41,32 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
54
41
|
STAFF: "STAFF";
|
55
42
|
SPECTATOR: "SPECTATOR";
|
56
43
|
}>;
|
57
|
-
status: import("zod").ZodNativeEnum<{
|
58
|
-
BOOKED: "BOOKED";
|
59
|
-
PAID: "PAID";
|
60
|
-
FREE: "FREE";
|
61
|
-
}>;
|
62
44
|
fullName: import("zod").ZodString;
|
63
45
|
mail: import("zod").ZodString;
|
64
46
|
dni: import("zod").ZodString;
|
65
|
-
|
66
|
-
scanned: import("zod").ZodBoolean;
|
67
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
47
|
+
ticketGroupId: import("zod").ZodString;
|
68
48
|
created_at: import("zod").ZodString;
|
69
49
|
updated_at: import("zod").ZodString;
|
70
50
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
71
51
|
id: string;
|
72
|
-
type: "
|
52
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
73
53
|
fullName: string;
|
74
54
|
mail: string;
|
75
55
|
eventId: string;
|
76
|
-
status: "BOOKED" | "PAID" | "FREE";
|
77
|
-
seat: number | null;
|
78
56
|
dni: string;
|
79
57
|
created_at: string;
|
80
58
|
updated_at: string;
|
81
|
-
|
82
|
-
scannedAt: string | null;
|
59
|
+
ticketGroupId: string;
|
83
60
|
}, {
|
84
61
|
id: string;
|
85
|
-
type: "
|
62
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
86
63
|
fullName: string;
|
87
64
|
mail: string;
|
88
65
|
eventId: string;
|
89
|
-
status: "BOOKED" | "PAID" | "FREE";
|
90
|
-
seat: number | null;
|
91
66
|
dni: string;
|
92
67
|
created_at: string;
|
93
68
|
updated_at: string;
|
94
|
-
|
95
|
-
scannedAt: string | null;
|
69
|
+
ticketGroupId: string;
|
96
70
|
}>>;
|
97
71
|
export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
|
98
72
|
}
|
@@ -8,17 +8,10 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
8
8
|
STAFF: "STAFF";
|
9
9
|
SPECTATOR: "SPECTATOR";
|
10
10
|
}>;
|
11
|
-
status: z.ZodNativeEnum<{
|
12
|
-
BOOKED: "BOOKED";
|
13
|
-
PAID: "PAID";
|
14
|
-
FREE: "FREE";
|
15
|
-
}>;
|
16
11
|
fullName: z.ZodString;
|
17
12
|
mail: z.ZodString;
|
18
13
|
dni: z.ZodString;
|
19
|
-
|
20
|
-
scanned: z.ZodBoolean;
|
21
|
-
scannedAt: z.ZodNullable<z.ZodDate>;
|
14
|
+
ticketGroupId: z.ZodString;
|
22
15
|
created_at: z.ZodDate;
|
23
16
|
updated_at: z.ZodDate;
|
24
17
|
}, {
|
@@ -52,17 +45,14 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
52
45
|
date: Date;
|
53
46
|
};
|
54
47
|
id: string;
|
55
|
-
type: "
|
48
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
56
49
|
fullName: string;
|
57
50
|
mail: string;
|
58
51
|
eventId: string;
|
59
|
-
status: "BOOKED" | "PAID" | "FREE";
|
60
|
-
seat: number | null;
|
61
52
|
dni: string;
|
62
53
|
created_at: Date;
|
63
54
|
updated_at: Date;
|
64
|
-
|
65
|
-
scannedAt: Date | null;
|
55
|
+
ticketGroupId: string;
|
66
56
|
}, {
|
67
57
|
event: {
|
68
58
|
location: string;
|
@@ -70,17 +60,14 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
70
60
|
date: Date;
|
71
61
|
};
|
72
62
|
id: string;
|
73
|
-
type: "
|
63
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
74
64
|
fullName: string;
|
75
65
|
mail: string;
|
76
66
|
eventId: string;
|
77
|
-
status: "BOOKED" | "PAID" | "FREE";
|
78
|
-
seat: number | null;
|
79
67
|
dni: string;
|
80
68
|
created_at: Date;
|
81
69
|
updated_at: Date;
|
82
|
-
|
83
|
-
scannedAt: Date | null;
|
70
|
+
ticketGroupId: string;
|
84
71
|
}>, "many">;
|
85
72
|
}, "strip", z.ZodTypeAny, {
|
86
73
|
tickets: {
|
@@ -90,17 +77,14 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
90
77
|
date: Date;
|
91
78
|
};
|
92
79
|
id: string;
|
93
|
-
type: "
|
80
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
94
81
|
fullName: string;
|
95
82
|
mail: string;
|
96
83
|
eventId: string;
|
97
|
-
status: "BOOKED" | "PAID" | "FREE";
|
98
|
-
seat: number | null;
|
99
84
|
dni: string;
|
100
85
|
created_at: Date;
|
101
86
|
updated_at: Date;
|
102
|
-
|
103
|
-
scannedAt: Date | null;
|
87
|
+
ticketGroupId: string;
|
104
88
|
}[];
|
105
89
|
}, {
|
106
90
|
tickets: {
|
@@ -110,17 +94,14 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
110
94
|
date: Date;
|
111
95
|
};
|
112
96
|
id: string;
|
113
|
-
type: "
|
97
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
114
98
|
fullName: string;
|
115
99
|
mail: string;
|
116
100
|
eventId: string;
|
117
|
-
status: "BOOKED" | "PAID" | "FREE";
|
118
|
-
seat: number | null;
|
119
101
|
dni: string;
|
120
102
|
created_at: Date;
|
121
103
|
updated_at: Date;
|
122
|
-
|
123
|
-
scannedAt: Date | null;
|
104
|
+
ticketGroupId: string;
|
124
105
|
}[];
|
125
106
|
}>;
|
126
107
|
declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -132,17 +113,10 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
132
113
|
STAFF: "STAFF";
|
133
114
|
SPECTATOR: "SPECTATOR";
|
134
115
|
}>;
|
135
|
-
status: z.ZodNativeEnum<{
|
136
|
-
BOOKED: "BOOKED";
|
137
|
-
PAID: "PAID";
|
138
|
-
FREE: "FREE";
|
139
|
-
}>;
|
140
116
|
fullName: z.ZodString;
|
141
117
|
mail: z.ZodString;
|
142
118
|
dni: z.ZodString;
|
143
|
-
|
144
|
-
scanned: z.ZodBoolean;
|
145
|
-
scannedAt: z.ZodNullable<z.ZodString>;
|
119
|
+
ticketGroupId: z.ZodString;
|
146
120
|
created_at: z.ZodString;
|
147
121
|
updated_at: z.ZodString;
|
148
122
|
event: z.ZodObject<{
|
@@ -165,17 +139,14 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
165
139
|
date: string;
|
166
140
|
};
|
167
141
|
id: string;
|
168
|
-
type: "
|
142
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
169
143
|
fullName: string;
|
170
144
|
mail: string;
|
171
145
|
eventId: string;
|
172
|
-
status: "BOOKED" | "PAID" | "FREE";
|
173
|
-
seat: number | null;
|
174
146
|
dni: string;
|
175
147
|
created_at: string;
|
176
148
|
updated_at: string;
|
177
|
-
|
178
|
-
scannedAt: string | null;
|
149
|
+
ticketGroupId: string;
|
179
150
|
}, {
|
180
151
|
event: {
|
181
152
|
location: string;
|
@@ -183,17 +154,14 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
183
154
|
date: string;
|
184
155
|
};
|
185
156
|
id: string;
|
186
|
-
type: "
|
157
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
187
158
|
fullName: string;
|
188
159
|
mail: string;
|
189
160
|
eventId: string;
|
190
|
-
status: "BOOKED" | "PAID" | "FREE";
|
191
|
-
seat: number | null;
|
192
161
|
dni: string;
|
193
162
|
created_at: string;
|
194
163
|
updated_at: string;
|
195
|
-
|
196
|
-
scannedAt: string | null;
|
164
|
+
ticketGroupId: string;
|
197
165
|
}>, "many">;
|
198
166
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
199
167
|
tickets: {
|
@@ -203,17 +171,14 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
203
171
|
date: string;
|
204
172
|
};
|
205
173
|
id: string;
|
206
|
-
type: "
|
174
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
207
175
|
fullName: string;
|
208
176
|
mail: string;
|
209
177
|
eventId: string;
|
210
|
-
status: "BOOKED" | "PAID" | "FREE";
|
211
|
-
seat: number | null;
|
212
178
|
dni: string;
|
213
179
|
created_at: string;
|
214
180
|
updated_at: string;
|
215
|
-
|
216
|
-
scannedAt: string | null;
|
181
|
+
ticketGroupId: string;
|
217
182
|
}[];
|
218
183
|
}, {
|
219
184
|
tickets: {
|
@@ -223,17 +188,14 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
223
188
|
date: string;
|
224
189
|
};
|
225
190
|
id: string;
|
226
|
-
type: "
|
191
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
227
192
|
fullName: string;
|
228
193
|
mail: string;
|
229
194
|
eventId: string;
|
230
|
-
status: "BOOKED" | "PAID" | "FREE";
|
231
|
-
seat: number | null;
|
232
195
|
dni: string;
|
233
196
|
created_at: string;
|
234
197
|
updated_at: string;
|
235
|
-
|
236
|
-
scannedAt: string | null;
|
198
|
+
ticketGroupId: string;
|
237
199
|
}[];
|
238
200
|
}>>;
|
239
201
|
export declare class FindAllTicketsResponseDto extends FindAllTicketsResponseDto_base {
|