expo-backend-types 0.60.0-feat-desfile-12-octubre.5 → 0.60.0-feat-desfile-12-octubre.7
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/expo-tickets-producer-login/dto/[N]expo-tickets-producer-login.dto.d.ts +46 -0
- package/dist/src/expo-tickets-producer-login/dto/[N]expo-tickets-producer-login.dto.js +20 -0
- package/dist/src/expo-tickets-producer-login/dto/[N]get-event-tickets.dto.d.ts +335 -0
- package/dist/src/expo-tickets-producer-login/dto/[N]get-event-tickets.dto.js +29 -0
- package/dist/src/expo-tickets-producer-login/exports.d.ts +2 -0
- package/dist/src/expo-tickets-producer-login/exports.js +19 -0
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/types/schema.d.ts +58 -3
- package/package.json +1 -1
@@ -0,0 +1,46 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const loginProducerSchema: z.ZodObject<{
|
3
|
+
mail: z.ZodString;
|
4
|
+
password: z.ZodString;
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
6
|
+
password: string;
|
7
|
+
mail: string;
|
8
|
+
}, {
|
9
|
+
password: string;
|
10
|
+
mail: string;
|
11
|
+
}>;
|
12
|
+
declare const LoginProducerDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
13
|
+
mail: z.ZodString;
|
14
|
+
password: z.ZodString;
|
15
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
16
|
+
password: string;
|
17
|
+
mail: string;
|
18
|
+
}, {
|
19
|
+
password: string;
|
20
|
+
mail: string;
|
21
|
+
}>>;
|
22
|
+
export declare class LoginProducerDto extends LoginProducerDto_base {
|
23
|
+
}
|
24
|
+
export declare const loginProducerResponseSchema: z.ZodObject<{
|
25
|
+
success: z.ZodBoolean;
|
26
|
+
message: z.ZodString;
|
27
|
+
}, "strip", z.ZodTypeAny, {
|
28
|
+
message: string;
|
29
|
+
success: boolean;
|
30
|
+
}, {
|
31
|
+
message: string;
|
32
|
+
success: boolean;
|
33
|
+
}>;
|
34
|
+
declare const LoginProducerResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
35
|
+
success: z.ZodBoolean;
|
36
|
+
message: z.ZodString;
|
37
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
38
|
+
message: string;
|
39
|
+
success: boolean;
|
40
|
+
}, {
|
41
|
+
message: string;
|
42
|
+
success: boolean;
|
43
|
+
}>>;
|
44
|
+
export declare class LoginProducerResponseDto extends LoginProducerResponseDto_base {
|
45
|
+
}
|
46
|
+
export {};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.LoginProducerResponseDto = exports.loginProducerResponseSchema = exports.LoginProducerDto = exports.loginProducerSchema = void 0;
|
4
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
5
|
+
const zod_1 = require("zod");
|
6
|
+
exports.loginProducerSchema = zod_1.z.object({
|
7
|
+
mail: zod_1.z.string().email(),
|
8
|
+
password: zod_1.z.string(),
|
9
|
+
});
|
10
|
+
class LoginProducerDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.loginProducerSchema) {
|
11
|
+
}
|
12
|
+
exports.LoginProducerDto = LoginProducerDto;
|
13
|
+
exports.loginProducerResponseSchema = zod_1.z.object({
|
14
|
+
success: zod_1.z.boolean(),
|
15
|
+
message: zod_1.z.string(),
|
16
|
+
});
|
17
|
+
class LoginProducerResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.loginProducerResponseSchema) {
|
18
|
+
}
|
19
|
+
exports.LoginProducerResponseDto = LoginProducerResponseDto;
|
20
|
+
//# sourceMappingURL=%5BN%5Dexpo-tickets-producer-login.dto.js.map
|
@@ -0,0 +1,335 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const getEventTicketsLoginProducerResponseSchema: z.ZodObject<{
|
3
|
+
email: z.ZodString;
|
4
|
+
password: z.ZodString;
|
5
|
+
event: z.ZodObject<z.objectUtil.extendShape<{
|
6
|
+
id: z.ZodString;
|
7
|
+
name: z.ZodString;
|
8
|
+
date: z.ZodDate;
|
9
|
+
startingDate: z.ZodDate;
|
10
|
+
endingDate: z.ZodDate;
|
11
|
+
location: z.ZodString;
|
12
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
13
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
14
|
+
description: z.ZodNullable<z.ZodString>;
|
15
|
+
folderId: z.ZodNullable<z.ZodString>;
|
16
|
+
tagAssistedId: z.ZodString;
|
17
|
+
tagConfirmedId: z.ZodString;
|
18
|
+
active: z.ZodBoolean;
|
19
|
+
supraEventId: z.ZodNullable<z.ZodString>;
|
20
|
+
created_at: z.ZodDate;
|
21
|
+
updated_at: z.ZodDate;
|
22
|
+
}, {
|
23
|
+
tickets: z.ZodArray<z.ZodObject<Pick<{
|
24
|
+
id: z.ZodString;
|
25
|
+
eventId: z.ZodString;
|
26
|
+
type: z.ZodNativeEnum<{
|
27
|
+
PARTICIPANT: "PARTICIPANT";
|
28
|
+
STAFF: "STAFF";
|
29
|
+
SPECTATOR: "SPECTATOR";
|
30
|
+
}>;
|
31
|
+
fullName: z.ZodString;
|
32
|
+
mail: z.ZodString;
|
33
|
+
dni: z.ZodString;
|
34
|
+
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
35
|
+
instagrams: z.ZodArray<z.ZodString, "many">;
|
36
|
+
whoToWatch: z.ZodNullable<z.ZodString>;
|
37
|
+
seat: z.ZodNullable<z.ZodNumber>;
|
38
|
+
scanned: z.ZodBoolean;
|
39
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
40
|
+
ticketGroupId: z.ZodNullable<z.ZodString>;
|
41
|
+
created_at: z.ZodDate;
|
42
|
+
updated_at: z.ZodDate;
|
43
|
+
}, "id" | "phoneNumber" | "fullName" | "mail" | "dni" | "instagrams" | "whoToWatch">, "strip", z.ZodTypeAny, {
|
44
|
+
id: string;
|
45
|
+
phoneNumber: string;
|
46
|
+
fullName: string;
|
47
|
+
mail: string;
|
48
|
+
dni: string;
|
49
|
+
instagrams: string[];
|
50
|
+
whoToWatch: string | null;
|
51
|
+
}, {
|
52
|
+
id: string;
|
53
|
+
phoneNumber: string;
|
54
|
+
fullName: string;
|
55
|
+
mail: string;
|
56
|
+
dni: string;
|
57
|
+
instagrams: string[];
|
58
|
+
whoToWatch: string | null;
|
59
|
+
}>, "many">;
|
60
|
+
}>, "strip", z.ZodTypeAny, {
|
61
|
+
description: string | null;
|
62
|
+
location: string;
|
63
|
+
id: string;
|
64
|
+
name: string;
|
65
|
+
date: Date;
|
66
|
+
startingDate: Date;
|
67
|
+
endingDate: Date;
|
68
|
+
created_at: Date;
|
69
|
+
updated_at: Date;
|
70
|
+
active: boolean;
|
71
|
+
tickets: {
|
72
|
+
id: string;
|
73
|
+
phoneNumber: string;
|
74
|
+
fullName: string;
|
75
|
+
mail: string;
|
76
|
+
dni: string;
|
77
|
+
instagrams: string[];
|
78
|
+
whoToWatch: string | null;
|
79
|
+
}[];
|
80
|
+
mainPictureUrl: string | null;
|
81
|
+
bannerUrl: string | null;
|
82
|
+
folderId: string | null;
|
83
|
+
tagAssistedId: string;
|
84
|
+
tagConfirmedId: string;
|
85
|
+
supraEventId: string | null;
|
86
|
+
}, {
|
87
|
+
description: string | null;
|
88
|
+
location: string;
|
89
|
+
id: string;
|
90
|
+
name: string;
|
91
|
+
date: Date;
|
92
|
+
startingDate: Date;
|
93
|
+
endingDate: Date;
|
94
|
+
created_at: Date;
|
95
|
+
updated_at: Date;
|
96
|
+
active: boolean;
|
97
|
+
tickets: {
|
98
|
+
id: string;
|
99
|
+
phoneNumber: string;
|
100
|
+
fullName: string;
|
101
|
+
mail: string;
|
102
|
+
dni: string;
|
103
|
+
instagrams: string[];
|
104
|
+
whoToWatch: string | null;
|
105
|
+
}[];
|
106
|
+
mainPictureUrl: string | null;
|
107
|
+
bannerUrl: string | null;
|
108
|
+
folderId: string | null;
|
109
|
+
tagAssistedId: string;
|
110
|
+
tagConfirmedId: string;
|
111
|
+
supraEventId: string | null;
|
112
|
+
}>;
|
113
|
+
}, "strip", z.ZodTypeAny, {
|
114
|
+
event: {
|
115
|
+
description: string | null;
|
116
|
+
location: string;
|
117
|
+
id: string;
|
118
|
+
name: string;
|
119
|
+
date: Date;
|
120
|
+
startingDate: Date;
|
121
|
+
endingDate: Date;
|
122
|
+
created_at: Date;
|
123
|
+
updated_at: Date;
|
124
|
+
active: boolean;
|
125
|
+
tickets: {
|
126
|
+
id: string;
|
127
|
+
phoneNumber: string;
|
128
|
+
fullName: string;
|
129
|
+
mail: string;
|
130
|
+
dni: string;
|
131
|
+
instagrams: string[];
|
132
|
+
whoToWatch: string | null;
|
133
|
+
}[];
|
134
|
+
mainPictureUrl: string | null;
|
135
|
+
bannerUrl: string | null;
|
136
|
+
folderId: string | null;
|
137
|
+
tagAssistedId: string;
|
138
|
+
tagConfirmedId: string;
|
139
|
+
supraEventId: string | null;
|
140
|
+
};
|
141
|
+
email: string;
|
142
|
+
password: string;
|
143
|
+
}, {
|
144
|
+
event: {
|
145
|
+
description: string | null;
|
146
|
+
location: string;
|
147
|
+
id: string;
|
148
|
+
name: string;
|
149
|
+
date: Date;
|
150
|
+
startingDate: Date;
|
151
|
+
endingDate: Date;
|
152
|
+
created_at: Date;
|
153
|
+
updated_at: Date;
|
154
|
+
active: boolean;
|
155
|
+
tickets: {
|
156
|
+
id: string;
|
157
|
+
phoneNumber: string;
|
158
|
+
fullName: string;
|
159
|
+
mail: string;
|
160
|
+
dni: string;
|
161
|
+
instagrams: string[];
|
162
|
+
whoToWatch: string | null;
|
163
|
+
}[];
|
164
|
+
mainPictureUrl: string | null;
|
165
|
+
bannerUrl: string | null;
|
166
|
+
folderId: string | null;
|
167
|
+
tagAssistedId: string;
|
168
|
+
tagConfirmedId: string;
|
169
|
+
supraEventId: string | null;
|
170
|
+
};
|
171
|
+
email: string;
|
172
|
+
password: string;
|
173
|
+
}>;
|
174
|
+
declare const GetEventTicketsLoginProducerResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
175
|
+
email: z.ZodString;
|
176
|
+
password: z.ZodString;
|
177
|
+
event: z.ZodObject<{
|
178
|
+
id: z.ZodString;
|
179
|
+
name: z.ZodString;
|
180
|
+
date: z.ZodString;
|
181
|
+
startingDate: z.ZodString;
|
182
|
+
endingDate: z.ZodString;
|
183
|
+
location: z.ZodString;
|
184
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
185
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
186
|
+
description: z.ZodNullable<z.ZodString>;
|
187
|
+
folderId: z.ZodNullable<z.ZodString>;
|
188
|
+
tagAssistedId: z.ZodString;
|
189
|
+
tagConfirmedId: z.ZodString;
|
190
|
+
active: z.ZodBoolean;
|
191
|
+
supraEventId: z.ZodNullable<z.ZodString>;
|
192
|
+
created_at: z.ZodString;
|
193
|
+
updated_at: z.ZodString;
|
194
|
+
tickets: z.ZodArray<z.ZodObject<{
|
195
|
+
id: z.ZodString;
|
196
|
+
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
197
|
+
fullName: z.ZodString;
|
198
|
+
mail: z.ZodString;
|
199
|
+
dni: z.ZodString;
|
200
|
+
instagrams: z.ZodArray<z.ZodString, "many">;
|
201
|
+
whoToWatch: z.ZodNullable<z.ZodString>;
|
202
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
203
|
+
id: string;
|
204
|
+
phoneNumber: string;
|
205
|
+
fullName: string;
|
206
|
+
mail: string;
|
207
|
+
dni: string;
|
208
|
+
instagrams: string[];
|
209
|
+
whoToWatch: string | null;
|
210
|
+
}, {
|
211
|
+
id: string;
|
212
|
+
phoneNumber: string;
|
213
|
+
fullName: string;
|
214
|
+
mail: string;
|
215
|
+
dni: string;
|
216
|
+
instagrams: string[];
|
217
|
+
whoToWatch: string | null;
|
218
|
+
}>, "many">;
|
219
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
220
|
+
description: string | null;
|
221
|
+
location: string;
|
222
|
+
id: string;
|
223
|
+
name: string;
|
224
|
+
date: string;
|
225
|
+
startingDate: string;
|
226
|
+
endingDate: string;
|
227
|
+
created_at: string;
|
228
|
+
updated_at: string;
|
229
|
+
active: boolean;
|
230
|
+
tickets: {
|
231
|
+
id: string;
|
232
|
+
phoneNumber: string;
|
233
|
+
fullName: string;
|
234
|
+
mail: string;
|
235
|
+
dni: string;
|
236
|
+
instagrams: string[];
|
237
|
+
whoToWatch: string | null;
|
238
|
+
}[];
|
239
|
+
mainPictureUrl: string | null;
|
240
|
+
bannerUrl: string | null;
|
241
|
+
folderId: string | null;
|
242
|
+
tagAssistedId: string;
|
243
|
+
tagConfirmedId: string;
|
244
|
+
supraEventId: string | null;
|
245
|
+
}, {
|
246
|
+
description: string | null;
|
247
|
+
location: string;
|
248
|
+
id: string;
|
249
|
+
name: string;
|
250
|
+
date: string;
|
251
|
+
startingDate: string;
|
252
|
+
endingDate: string;
|
253
|
+
created_at: string;
|
254
|
+
updated_at: string;
|
255
|
+
active: boolean;
|
256
|
+
tickets: {
|
257
|
+
id: string;
|
258
|
+
phoneNumber: string;
|
259
|
+
fullName: string;
|
260
|
+
mail: string;
|
261
|
+
dni: string;
|
262
|
+
instagrams: string[];
|
263
|
+
whoToWatch: string | null;
|
264
|
+
}[];
|
265
|
+
mainPictureUrl: string | null;
|
266
|
+
bannerUrl: string | null;
|
267
|
+
folderId: string | null;
|
268
|
+
tagAssistedId: string;
|
269
|
+
tagConfirmedId: string;
|
270
|
+
supraEventId: string | null;
|
271
|
+
}>;
|
272
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
273
|
+
event: {
|
274
|
+
description: string | null;
|
275
|
+
location: string;
|
276
|
+
id: string;
|
277
|
+
name: string;
|
278
|
+
date: string;
|
279
|
+
startingDate: string;
|
280
|
+
endingDate: string;
|
281
|
+
created_at: string;
|
282
|
+
updated_at: string;
|
283
|
+
active: boolean;
|
284
|
+
tickets: {
|
285
|
+
id: string;
|
286
|
+
phoneNumber: string;
|
287
|
+
fullName: string;
|
288
|
+
mail: string;
|
289
|
+
dni: string;
|
290
|
+
instagrams: string[];
|
291
|
+
whoToWatch: string | null;
|
292
|
+
}[];
|
293
|
+
mainPictureUrl: string | null;
|
294
|
+
bannerUrl: string | null;
|
295
|
+
folderId: string | null;
|
296
|
+
tagAssistedId: string;
|
297
|
+
tagConfirmedId: string;
|
298
|
+
supraEventId: string | null;
|
299
|
+
};
|
300
|
+
email: string;
|
301
|
+
password: string;
|
302
|
+
}, {
|
303
|
+
event: {
|
304
|
+
description: string | null;
|
305
|
+
location: string;
|
306
|
+
id: string;
|
307
|
+
name: string;
|
308
|
+
date: string;
|
309
|
+
startingDate: string;
|
310
|
+
endingDate: string;
|
311
|
+
created_at: string;
|
312
|
+
updated_at: string;
|
313
|
+
active: boolean;
|
314
|
+
tickets: {
|
315
|
+
id: string;
|
316
|
+
phoneNumber: string;
|
317
|
+
fullName: string;
|
318
|
+
mail: string;
|
319
|
+
dni: string;
|
320
|
+
instagrams: string[];
|
321
|
+
whoToWatch: string | null;
|
322
|
+
}[];
|
323
|
+
mainPictureUrl: string | null;
|
324
|
+
bannerUrl: string | null;
|
325
|
+
folderId: string | null;
|
326
|
+
tagAssistedId: string;
|
327
|
+
tagConfirmedId: string;
|
328
|
+
supraEventId: string | null;
|
329
|
+
};
|
330
|
+
email: string;
|
331
|
+
password: string;
|
332
|
+
}>>;
|
333
|
+
export declare class GetEventTicketsLoginProducerResponseDto extends GetEventTicketsLoginProducerResponseDto_base {
|
334
|
+
}
|
335
|
+
export {};
|
@@ -0,0 +1,29 @@
|
|
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.GetEventTicketsLoginProducerResponseDto = exports.getEventTicketsLoginProducerResponseSchema = void 0;
|
7
|
+
const event_dto_1 = require("../../event/dto/event.dto");
|
8
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
9
|
+
const ticket_dto_1 = require("../../ticket/dto/ticket.dto");
|
10
|
+
const zod_1 = __importDefault(require("zod"));
|
11
|
+
exports.getEventTicketsLoginProducerResponseSchema = zod_1.default.object({
|
12
|
+
email: zod_1.default.string().email(),
|
13
|
+
password: zod_1.default.string(),
|
14
|
+
event: event_dto_1.eventSchema.extend({
|
15
|
+
tickets: zod_1.default.array(ticket_dto_1.ticketSchema.pick({
|
16
|
+
id: true,
|
17
|
+
dni: true,
|
18
|
+
fullName: true,
|
19
|
+
mail: true,
|
20
|
+
phoneNumber: true,
|
21
|
+
whoToWatch: true,
|
22
|
+
instagrams: true,
|
23
|
+
})),
|
24
|
+
}),
|
25
|
+
});
|
26
|
+
class GetEventTicketsLoginProducerResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getEventTicketsLoginProducerResponseSchema) {
|
27
|
+
}
|
28
|
+
exports.GetEventTicketsLoginProducerResponseDto = GetEventTicketsLoginProducerResponseDto;
|
29
|
+
//# sourceMappingURL=%5BN%5Dget-event-tickets.dto.js.map
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./dto/[N]expo-tickets-producer-login.dto"), exports);
|
18
|
+
__exportStar(require("./dto/[N]get-event-tickets.dto"), exports);
|
19
|
+
//# sourceMappingURL=exports.js.map
|
package/dist/src/exports.d.ts
CHANGED
package/dist/src/exports.js
CHANGED
@@ -34,4 +34,5 @@ __exportStar(require("./tag-group/exports"), exports);
|
|
34
34
|
__exportStar(require("./tag/exports"), exports);
|
35
35
|
__exportStar(require("./ticket-group/exports"), exports);
|
36
36
|
__exportStar(require("./ticket/exports"), exports);
|
37
|
+
__exportStar(require("./expo-tickets-producer-login/exports"), exports);
|
37
38
|
//# sourceMappingURL=exports.js.map
|
package/dist/types/schema.d.ts
CHANGED
@@ -4173,6 +4173,41 @@ export interface components {
|
|
4173
4173
|
mail: string;
|
4174
4174
|
password: string;
|
4175
4175
|
};
|
4176
|
+
LoginProducerResponseDto: {
|
4177
|
+
success: boolean;
|
4178
|
+
message: string;
|
4179
|
+
};
|
4180
|
+
GetEventTicketsLoginProducerResponseDto: {
|
4181
|
+
email: string;
|
4182
|
+
password: string;
|
4183
|
+
event: {
|
4184
|
+
id: string;
|
4185
|
+
name: string;
|
4186
|
+
date: string;
|
4187
|
+
startingDate: string;
|
4188
|
+
endingDate: string;
|
4189
|
+
location: string;
|
4190
|
+
mainPictureUrl: string | null;
|
4191
|
+
bannerUrl: string | null;
|
4192
|
+
description: string | null;
|
4193
|
+
folderId: string | null;
|
4194
|
+
tagAssistedId: string;
|
4195
|
+
tagConfirmedId: string;
|
4196
|
+
active: boolean;
|
4197
|
+
supraEventId: string | null;
|
4198
|
+
created_at: string;
|
4199
|
+
updated_at: string;
|
4200
|
+
tickets: {
|
4201
|
+
id: string;
|
4202
|
+
dni: string;
|
4203
|
+
fullName: string;
|
4204
|
+
mail: string;
|
4205
|
+
phoneNumber: string;
|
4206
|
+
whoToWatch: string | null;
|
4207
|
+
instagrams: string[];
|
4208
|
+
}[];
|
4209
|
+
};
|
4210
|
+
};
|
4176
4211
|
};
|
4177
4212
|
responses: never;
|
4178
4213
|
parameters: never;
|
@@ -7588,11 +7623,21 @@ export interface operations {
|
|
7588
7623
|
};
|
7589
7624
|
};
|
7590
7625
|
responses: {
|
7591
|
-
|
7626
|
+
200: {
|
7592
7627
|
headers: {
|
7593
7628
|
[name: string]: unknown;
|
7594
7629
|
};
|
7595
|
-
content
|
7630
|
+
content: {
|
7631
|
+
"application/json": components["schemas"]["LoginProducerResponseDto"];
|
7632
|
+
};
|
7633
|
+
};
|
7634
|
+
401: {
|
7635
|
+
headers: {
|
7636
|
+
[name: string]: unknown;
|
7637
|
+
};
|
7638
|
+
content: {
|
7639
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7640
|
+
};
|
7596
7641
|
};
|
7597
7642
|
};
|
7598
7643
|
};
|
@@ -7613,7 +7658,17 @@ export interface operations {
|
|
7613
7658
|
headers: {
|
7614
7659
|
[name: string]: unknown;
|
7615
7660
|
};
|
7616
|
-
content
|
7661
|
+
content: {
|
7662
|
+
"application/json": components["schemas"]["GetEventTicketsLoginProducerResponseDto"];
|
7663
|
+
};
|
7664
|
+
};
|
7665
|
+
401: {
|
7666
|
+
headers: {
|
7667
|
+
[name: string]: unknown;
|
7668
|
+
};
|
7669
|
+
content: {
|
7670
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7671
|
+
};
|
7617
7672
|
};
|
7618
7673
|
};
|
7619
7674
|
};
|