expo-backend-types 0.36.0 → 0.37.0
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/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 +60 -40
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/i18n/es.d.ts +25 -0
- package/dist/src/i18n/es.js +25 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -32
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +13 -13
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -20
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/schema/profile.schema.d.ts +2 -2
- 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/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- 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 +12 -14
- package/dist/src/ticket/constants.js +355 -267
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +28 -9
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +16 -4
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +28 -8
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +40 -20
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +40 -20
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +40 -20
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +28 -8
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +16 -4
- package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
- package/dist/src/ticket/dto/send-email.dto.js +15 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +16 -4
- package/dist/src/ticket/dto/ticket.dto.js +2 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -8
- package/dist/types/prisma-schema/edge.js +5 -3
- package/dist/types/prisma-schema/index-browser.js +2 -0
- package/dist/types/prisma-schema/index.d.ts +191 -63
- package/dist/types/prisma-schema/index.js +5 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +4 -0
- package/dist/types/prisma-schema/wasm.js +2 -0
- package/dist/types/schema.d.ts +77 -0
- package/package.json +7 -6
@@ -15,6 +15,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
}>;
|
16
16
|
fullName: z.ZodString;
|
17
17
|
mail: z.ZodString;
|
18
|
+
dni: z.ZodString;
|
19
|
+
seat: z.ZodNullable<z.ZodNumber>;
|
18
20
|
created_at: z.ZodDate;
|
19
21
|
updated_at: z.ZodDate;
|
20
22
|
}, {
|
@@ -78,11 +80,13 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
78
80
|
supraEventId: string | null;
|
79
81
|
};
|
80
82
|
id: string;
|
81
|
-
type: "
|
83
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
82
84
|
fullName: string;
|
83
85
|
mail: string;
|
84
86
|
eventId: string;
|
85
87
|
status: "BOOKED" | "PAID" | "FREE";
|
88
|
+
seat: number | null;
|
89
|
+
dni: string;
|
86
90
|
created_at: Date;
|
87
91
|
updated_at: Date;
|
88
92
|
}, {
|
@@ -102,11 +106,13 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
102
106
|
supraEventId: string | null;
|
103
107
|
};
|
104
108
|
id: string;
|
105
|
-
type: "
|
109
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
106
110
|
fullName: string;
|
107
111
|
mail: string;
|
108
112
|
eventId: string;
|
109
113
|
status: "BOOKED" | "PAID" | "FREE";
|
114
|
+
seat: number | null;
|
115
|
+
dni: string;
|
110
116
|
created_at: Date;
|
111
117
|
updated_at: Date;
|
112
118
|
}>, "many">;
|
@@ -128,11 +134,13 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
128
134
|
supraEventId: string | null;
|
129
135
|
};
|
130
136
|
id: string;
|
131
|
-
type: "
|
137
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
132
138
|
fullName: string;
|
133
139
|
mail: string;
|
134
140
|
eventId: string;
|
135
141
|
status: "BOOKED" | "PAID" | "FREE";
|
142
|
+
seat: number | null;
|
143
|
+
dni: string;
|
136
144
|
created_at: Date;
|
137
145
|
updated_at: Date;
|
138
146
|
}[];
|
@@ -154,11 +162,13 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
154
162
|
supraEventId: string | null;
|
155
163
|
};
|
156
164
|
id: string;
|
157
|
-
type: "
|
165
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
158
166
|
fullName: string;
|
159
167
|
mail: string;
|
160
168
|
eventId: string;
|
161
169
|
status: "BOOKED" | "PAID" | "FREE";
|
170
|
+
seat: number | null;
|
171
|
+
dni: string;
|
162
172
|
created_at: Date;
|
163
173
|
updated_at: Date;
|
164
174
|
}[];
|
@@ -179,6 +189,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
179
189
|
}>;
|
180
190
|
fullName: z.ZodString;
|
181
191
|
mail: z.ZodString;
|
192
|
+
dni: z.ZodString;
|
193
|
+
seat: z.ZodNullable<z.ZodNumber>;
|
182
194
|
created_at: z.ZodString;
|
183
195
|
updated_at: z.ZodString;
|
184
196
|
event: z.ZodObject<{
|
@@ -241,11 +253,13 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
241
253
|
supraEventId: string | null;
|
242
254
|
};
|
243
255
|
id: string;
|
244
|
-
type: "
|
256
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
245
257
|
fullName: string;
|
246
258
|
mail: string;
|
247
259
|
eventId: string;
|
248
260
|
status: "BOOKED" | "PAID" | "FREE";
|
261
|
+
seat: number | null;
|
262
|
+
dni: string;
|
249
263
|
created_at: string;
|
250
264
|
updated_at: string;
|
251
265
|
}, {
|
@@ -265,11 +279,13 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
265
279
|
supraEventId: string | null;
|
266
280
|
};
|
267
281
|
id: string;
|
268
|
-
type: "
|
282
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
269
283
|
fullName: string;
|
270
284
|
mail: string;
|
271
285
|
eventId: string;
|
272
286
|
status: "BOOKED" | "PAID" | "FREE";
|
287
|
+
seat: number | null;
|
288
|
+
dni: string;
|
273
289
|
created_at: string;
|
274
290
|
updated_at: string;
|
275
291
|
}>, "many">;
|
@@ -291,11 +307,13 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
291
307
|
supraEventId: string | null;
|
292
308
|
};
|
293
309
|
id: string;
|
294
|
-
type: "
|
310
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
295
311
|
fullName: string;
|
296
312
|
mail: string;
|
297
313
|
eventId: string;
|
298
314
|
status: "BOOKED" | "PAID" | "FREE";
|
315
|
+
seat: number | null;
|
316
|
+
dni: string;
|
299
317
|
created_at: string;
|
300
318
|
updated_at: string;
|
301
319
|
}[];
|
@@ -317,11 +335,13 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
317
335
|
supraEventId: string | null;
|
318
336
|
};
|
319
337
|
id: string;
|
320
|
-
type: "
|
338
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
321
339
|
fullName: string;
|
322
340
|
mail: string;
|
323
341
|
eventId: string;
|
324
342
|
status: "BOOKED" | "PAID" | "FREE";
|
343
|
+
seat: number | null;
|
344
|
+
dni: string;
|
325
345
|
created_at: string;
|
326
346
|
updated_at: string;
|
327
347
|
}[];
|
@@ -13,24 +13,30 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
13
13
|
}>;
|
14
14
|
fullName: import("zod").ZodString;
|
15
15
|
mail: import("zod").ZodString;
|
16
|
+
dni: import("zod").ZodString;
|
17
|
+
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
16
18
|
created_at: import("zod").ZodDate;
|
17
19
|
updated_at: import("zod").ZodDate;
|
18
20
|
}, "strip", import("zod").ZodTypeAny, {
|
19
21
|
id: string;
|
20
|
-
type: "
|
22
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
21
23
|
fullName: string;
|
22
24
|
mail: string;
|
23
25
|
eventId: string;
|
24
26
|
status: "BOOKED" | "PAID" | "FREE";
|
27
|
+
seat: number | null;
|
28
|
+
dni: string;
|
25
29
|
created_at: Date;
|
26
30
|
updated_at: Date;
|
27
31
|
}, {
|
28
32
|
id: string;
|
29
|
-
type: "
|
33
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
30
34
|
fullName: string;
|
31
35
|
mail: string;
|
32
36
|
eventId: string;
|
33
37
|
status: "BOOKED" | "PAID" | "FREE";
|
38
|
+
seat: number | null;
|
39
|
+
dni: string;
|
34
40
|
created_at: Date;
|
35
41
|
updated_at: Date;
|
36
42
|
}>;
|
@@ -49,24 +55,30 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
49
55
|
}>;
|
50
56
|
fullName: import("zod").ZodString;
|
51
57
|
mail: import("zod").ZodString;
|
58
|
+
dni: import("zod").ZodString;
|
59
|
+
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
52
60
|
created_at: import("zod").ZodString;
|
53
61
|
updated_at: import("zod").ZodString;
|
54
62
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
55
63
|
id: string;
|
56
|
-
type: "
|
64
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
57
65
|
fullName: string;
|
58
66
|
mail: string;
|
59
67
|
eventId: string;
|
60
68
|
status: "BOOKED" | "PAID" | "FREE";
|
69
|
+
seat: number | null;
|
70
|
+
dni: string;
|
61
71
|
created_at: string;
|
62
72
|
updated_at: string;
|
63
73
|
}, {
|
64
74
|
id: string;
|
65
|
-
type: "
|
75
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
66
76
|
fullName: string;
|
67
77
|
mail: string;
|
68
78
|
eventId: string;
|
69
79
|
status: "BOOKED" | "PAID" | "FREE";
|
80
|
+
seat: number | null;
|
81
|
+
dni: string;
|
70
82
|
created_at: string;
|
71
83
|
updated_at: string;
|
72
84
|
}>>;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const sendEmailResponseSchema: z.ZodObject<{
|
3
|
+
mailId: z.ZodString;
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
5
|
+
mailId: string;
|
6
|
+
}, {
|
7
|
+
mailId: string;
|
8
|
+
}>;
|
9
|
+
declare const SendEmailResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
10
|
+
mailId: z.ZodString;
|
11
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
12
|
+
mailId: string;
|
13
|
+
}, {
|
14
|
+
mailId: string;
|
15
|
+
}>>;
|
16
|
+
export declare class SendEmailResponseDto extends SendEmailResponseDto_base {
|
17
|
+
}
|
18
|
+
export {};
|
@@ -0,0 +1,15 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.SendEmailResponseDto = exports.sendEmailResponseSchema = void 0;
|
7
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
8
|
+
const zod_1 = __importDefault(require("zod"));
|
9
|
+
exports.sendEmailResponseSchema = zod_1.default.object({
|
10
|
+
mailId: zod_1.default.string(),
|
11
|
+
});
|
12
|
+
class SendEmailResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.sendEmailResponseSchema) {
|
13
|
+
}
|
14
|
+
exports.SendEmailResponseDto = SendEmailResponseDto;
|
15
|
+
//# sourceMappingURL=send-email.dto.js.map
|
@@ -14,24 +14,30 @@ export declare const ticketSchema: z.ZodObject<{
|
|
14
14
|
}>;
|
15
15
|
fullName: z.ZodString;
|
16
16
|
mail: z.ZodString;
|
17
|
+
dni: z.ZodString;
|
18
|
+
seat: z.ZodNullable<z.ZodNumber>;
|
17
19
|
created_at: z.ZodDate;
|
18
20
|
updated_at: z.ZodDate;
|
19
21
|
}, "strip", z.ZodTypeAny, {
|
20
22
|
id: string;
|
21
|
-
type: "
|
23
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
22
24
|
fullName: string;
|
23
25
|
mail: string;
|
24
26
|
eventId: string;
|
25
27
|
status: "BOOKED" | "PAID" | "FREE";
|
28
|
+
seat: number | null;
|
29
|
+
dni: string;
|
26
30
|
created_at: Date;
|
27
31
|
updated_at: Date;
|
28
32
|
}, {
|
29
33
|
id: string;
|
30
|
-
type: "
|
34
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
31
35
|
fullName: string;
|
32
36
|
mail: string;
|
33
37
|
eventId: string;
|
34
38
|
status: "BOOKED" | "PAID" | "FREE";
|
39
|
+
seat: number | null;
|
40
|
+
dni: string;
|
35
41
|
created_at: Date;
|
36
42
|
updated_at: Date;
|
37
43
|
}>;
|
@@ -50,24 +56,30 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
50
56
|
}>;
|
51
57
|
fullName: z.ZodString;
|
52
58
|
mail: z.ZodString;
|
59
|
+
dni: z.ZodString;
|
60
|
+
seat: z.ZodNullable<z.ZodNumber>;
|
53
61
|
created_at: z.ZodString;
|
54
62
|
updated_at: z.ZodString;
|
55
63
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
56
64
|
id: string;
|
57
|
-
type: "
|
65
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
58
66
|
fullName: string;
|
59
67
|
mail: string;
|
60
68
|
eventId: string;
|
61
69
|
status: "BOOKED" | "PAID" | "FREE";
|
70
|
+
seat: number | null;
|
71
|
+
dni: string;
|
62
72
|
created_at: string;
|
63
73
|
updated_at: string;
|
64
74
|
}, {
|
65
75
|
id: string;
|
66
|
-
type: "
|
76
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
67
77
|
fullName: string;
|
68
78
|
mail: string;
|
69
79
|
eventId: string;
|
70
80
|
status: "BOOKED" | "PAID" | "FREE";
|
81
|
+
seat: number | null;
|
82
|
+
dni: string;
|
71
83
|
created_at: string;
|
72
84
|
updated_at: string;
|
73
85
|
}>>;
|
@@ -20,6 +20,8 @@ exports.ticketSchema = zod_1.default.object({
|
|
20
20
|
}),
|
21
21
|
fullName: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.fullName.required')),
|
22
22
|
mail: zod_1.default.string().email((0, translate_1.translate)('model.ticket.mail.email')),
|
23
|
+
dni: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.dni.required')),
|
24
|
+
seat: zod_1.default.number().min(1, (0, translate_1.translate)('model.ticket.seat.required')).nullable(),
|
23
25
|
created_at: zod_1.default.date(),
|
24
26
|
updated_at: zod_1.default.date(),
|
25
27
|
});
|
@@ -12,12 +12,12 @@ export declare const updateTicketSchema: import("zod").ZodObject<{
|
|
12
12
|
FREE: "FREE";
|
13
13
|
}>>;
|
14
14
|
}, "strip", import("zod").ZodTypeAny, {
|
15
|
-
type?: "
|
15
|
+
type?: "STAFF" | "SPECTATOR" | "PARTICIPANT" | undefined;
|
16
16
|
fullName?: string | undefined;
|
17
17
|
mail?: string | undefined;
|
18
18
|
status?: "BOOKED" | "PAID" | "FREE" | undefined;
|
19
19
|
}, {
|
20
|
-
type?: "
|
20
|
+
type?: "STAFF" | "SPECTATOR" | "PARTICIPANT" | undefined;
|
21
21
|
fullName?: string | undefined;
|
22
22
|
mail?: string | undefined;
|
23
23
|
status?: "BOOKED" | "PAID" | "FREE" | undefined;
|
@@ -36,12 +36,12 @@ declare const UpdateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
36
36
|
FREE: "FREE";
|
37
37
|
}>>;
|
38
38
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
39
|
-
type?: "
|
39
|
+
type?: "STAFF" | "SPECTATOR" | "PARTICIPANT" | undefined;
|
40
40
|
fullName?: string | undefined;
|
41
41
|
mail?: string | undefined;
|
42
42
|
status?: "BOOKED" | "PAID" | "FREE" | undefined;
|
43
43
|
}, {
|
44
|
-
type?: "
|
44
|
+
type?: "STAFF" | "SPECTATOR" | "PARTICIPANT" | undefined;
|
45
45
|
fullName?: string | undefined;
|
46
46
|
mail?: string | undefined;
|
47
47
|
status?: "BOOKED" | "PAID" | "FREE" | undefined;
|
@@ -63,24 +63,30 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
63
63
|
}>;
|
64
64
|
fullName: import("zod").ZodString;
|
65
65
|
mail: import("zod").ZodString;
|
66
|
+
dni: import("zod").ZodString;
|
67
|
+
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
66
68
|
created_at: import("zod").ZodDate;
|
67
69
|
updated_at: import("zod").ZodDate;
|
68
70
|
}, "strip", import("zod").ZodTypeAny, {
|
69
71
|
id: string;
|
70
|
-
type: "
|
72
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
71
73
|
fullName: string;
|
72
74
|
mail: string;
|
73
75
|
eventId: string;
|
74
76
|
status: "BOOKED" | "PAID" | "FREE";
|
77
|
+
seat: number | null;
|
78
|
+
dni: string;
|
75
79
|
created_at: Date;
|
76
80
|
updated_at: Date;
|
77
81
|
}, {
|
78
82
|
id: string;
|
79
|
-
type: "
|
83
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
80
84
|
fullName: string;
|
81
85
|
mail: string;
|
82
86
|
eventId: string;
|
83
87
|
status: "BOOKED" | "PAID" | "FREE";
|
88
|
+
seat: number | null;
|
89
|
+
dni: string;
|
84
90
|
created_at: Date;
|
85
91
|
updated_at: Date;
|
86
92
|
}>;
|
@@ -99,24 +105,30 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
99
105
|
}>;
|
100
106
|
fullName: import("zod").ZodString;
|
101
107
|
mail: import("zod").ZodString;
|
108
|
+
dni: import("zod").ZodString;
|
109
|
+
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
102
110
|
created_at: import("zod").ZodString;
|
103
111
|
updated_at: import("zod").ZodString;
|
104
112
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
105
113
|
id: string;
|
106
|
-
type: "
|
114
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
107
115
|
fullName: string;
|
108
116
|
mail: string;
|
109
117
|
eventId: string;
|
110
118
|
status: "BOOKED" | "PAID" | "FREE";
|
119
|
+
seat: number | null;
|
120
|
+
dni: string;
|
111
121
|
created_at: string;
|
112
122
|
updated_at: string;
|
113
123
|
}, {
|
114
124
|
id: string;
|
115
|
-
type: "
|
125
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
116
126
|
fullName: string;
|
117
127
|
mail: string;
|
118
128
|
eventId: string;
|
119
129
|
status: "BOOKED" | "PAID" | "FREE";
|
130
|
+
seat: number | null;
|
131
|
+
dni: string;
|
120
132
|
created_at: string;
|
121
133
|
updated_at: string;
|
122
134
|
}>>;
|