expo-backend-types 0.33.0-EXPO-308-auth.1 → 0.33.0-EXPO-308-auth.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 +115 -2
- package/dist/src/event/dto/create-event.dto.js +8 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/event-tickets.dto.d.ts +21 -0
- package/dist/src/event/dto/event-tickets.dto.js +21 -0
- package/dist/src/event/dto/event.dto.d.ts +9 -0
- package/dist/src/event/dto/event.dto.js +9 -0
- package/dist/src/event/dto/get-active-events.dto.d.ts +247 -0
- package/dist/src/event/dto/get-active-events.dto.js +19 -0
- package/dist/src/event/dto/get-all-event.dto.d.ts +424 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +208 -48
- package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +43 -0
- package/dist/src/event/dto/toggle-active-event.dto.js +6 -0
- package/dist/src/event/dto/update-event.dto.d.ts +193 -22
- package/dist/src/event/dto/update-event.dto.js +9 -0
- package/dist/src/event/exports.d.ts +3 -0
- package/dist/src/event/exports.js +3 -0
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
- package/dist/src/exports.d.ts +2 -0
- package/dist/src/exports.js +2 -0
- package/dist/src/i18n/es.d.ts +88 -0
- package/dist/src/i18n/es.js +88 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/message/dto/template.dto.d.ts +2 -2
- package/dist/src/ticket/constants.d.ts +16 -0
- package/dist/src/ticket/constants.js +272 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +134 -0
- package/dist/src/ticket/dto/create-ticket.dto.js +20 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +75 -0
- package/dist/src/ticket/dto/delete-ticket.dto.js +10 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +201 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.js +23 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +201 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.js +23 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +201 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.js +20 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +201 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +23 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +75 -0
- package/dist/src/ticket/dto/find-ticket.dto.js +10 -0
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +7 -0
- package/dist/src/ticket/dto/generate-pdf.dto.js +13 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +76 -0
- package/dist/src/ticket/dto/ticket.dto.js +29 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +125 -0
- package/dist/src/ticket/dto/update-ticket.dto.js +21 -0
- package/dist/src/ticket/exports.d.ts +10 -0
- package/dist/src/ticket/exports.js +27 -0
- package/dist/types/prisma-schema/edge.js +42 -4
- package/dist/types/prisma-schema/index-browser.js +39 -1
- package/dist/types/prisma-schema/index.d.ts +4552 -366
- package/dist/types/prisma-schema/index.js +42 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +57 -5
- package/dist/types/prisma-schema/wasm.js +39 -1
- package/dist/types/schema.d.ts +734 -12
- package/package.json +13 -3
@@ -0,0 +1,272 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TICKET_TEMPLATE = exports.TICKET_INPUTS = void 0;
|
4
|
+
const common_1 = require("@pdfme/common");
|
5
|
+
exports.TICKET_INPUTS = {
|
6
|
+
footer: 'Este ticket es personal e intransferible.',
|
7
|
+
title: 'ENTRADA',
|
8
|
+
event_section: 'EVENTO:',
|
9
|
+
date_label: 'Fecha:',
|
10
|
+
time_label: 'Hora:',
|
11
|
+
location_label: 'Lugar:',
|
12
|
+
attendee_section: 'ASISTENTE:',
|
13
|
+
name_label: 'Nombre:',
|
14
|
+
email_label: 'Email:',
|
15
|
+
ticket_section: 'DETALLES DEL TICKET:',
|
16
|
+
type_label: 'Tipo:',
|
17
|
+
status_label: 'Estado:',
|
18
|
+
};
|
19
|
+
exports.TICKET_TEMPLATE = {
|
20
|
+
basePdf: common_1.BLANK_PDF,
|
21
|
+
schemas: [
|
22
|
+
[
|
23
|
+
{
|
24
|
+
name: 'event_name',
|
25
|
+
type: 'text',
|
26
|
+
position: { x: 30, y: 30 },
|
27
|
+
width: 180,
|
28
|
+
height: 20,
|
29
|
+
fontSize: 14,
|
30
|
+
fontWeight: 'bold',
|
31
|
+
},
|
32
|
+
{
|
33
|
+
name: 'event_date',
|
34
|
+
type: 'text',
|
35
|
+
position: { x: 100, y: 60 },
|
36
|
+
width: 180,
|
37
|
+
height: 10,
|
38
|
+
fontSize: 10,
|
39
|
+
},
|
40
|
+
{
|
41
|
+
name: 'event_time',
|
42
|
+
type: 'text',
|
43
|
+
position: { x: 100, y: 75 },
|
44
|
+
width: 180,
|
45
|
+
height: 10,
|
46
|
+
fontSize: 10,
|
47
|
+
},
|
48
|
+
{
|
49
|
+
name: 'event_location',
|
50
|
+
type: 'text',
|
51
|
+
position: { x: 100, y: 90 },
|
52
|
+
width: 180,
|
53
|
+
height: 10,
|
54
|
+
fontSize: 10,
|
55
|
+
},
|
56
|
+
{
|
57
|
+
name: 'fullName_ticket',
|
58
|
+
type: 'text',
|
59
|
+
position: { x: 100, y: 120 },
|
60
|
+
width: 180,
|
61
|
+
height: 10,
|
62
|
+
fontSize: 10,
|
63
|
+
},
|
64
|
+
{
|
65
|
+
name: 'mail_ticket',
|
66
|
+
type: 'text',
|
67
|
+
position: { x: 100, y: 135 },
|
68
|
+
width: 180,
|
69
|
+
height: 10,
|
70
|
+
fontSize: 10,
|
71
|
+
},
|
72
|
+
{
|
73
|
+
name: 'ticket_type',
|
74
|
+
type: 'text',
|
75
|
+
position: { x: 100, y: 165 },
|
76
|
+
width: 180,
|
77
|
+
height: 10,
|
78
|
+
fontSize: 10,
|
79
|
+
},
|
80
|
+
{
|
81
|
+
name: 'ticket_status',
|
82
|
+
type: 'text',
|
83
|
+
position: { x: 100, y: 180 },
|
84
|
+
width: 180,
|
85
|
+
height: 10,
|
86
|
+
fontSize: 10,
|
87
|
+
},
|
88
|
+
{
|
89
|
+
name: 'ticket_id',
|
90
|
+
type: 'text',
|
91
|
+
position: { x: 100, y: 195 },
|
92
|
+
width: 180,
|
93
|
+
height: 10,
|
94
|
+
fontSize: 8,
|
95
|
+
},
|
96
|
+
{
|
97
|
+
name: 'title',
|
98
|
+
type: 'text',
|
99
|
+
position: { x: 0, y: 15 },
|
100
|
+
content: 'ENTRADA',
|
101
|
+
width: 210,
|
102
|
+
height: 15,
|
103
|
+
fontSize: 16,
|
104
|
+
fontWeight: 'bold',
|
105
|
+
alignment: 'center',
|
106
|
+
value: 'ENTRADA',
|
107
|
+
},
|
108
|
+
{
|
109
|
+
name: 'event_section',
|
110
|
+
type: 'text',
|
111
|
+
position: { x: 30, y: 50 },
|
112
|
+
content: 'EVENTO:',
|
113
|
+
width: 150,
|
114
|
+
height: 10,
|
115
|
+
fontSize: 12,
|
116
|
+
fontWeight: 'bold',
|
117
|
+
value: 'EVENTO:',
|
118
|
+
},
|
119
|
+
{
|
120
|
+
name: 'date_label',
|
121
|
+
type: 'text',
|
122
|
+
position: { x: 30, y: 65 },
|
123
|
+
content: 'Fecha:',
|
124
|
+
width: 60,
|
125
|
+
height: 10,
|
126
|
+
fontSize: 10,
|
127
|
+
fontWeight: 'bold',
|
128
|
+
value: 'Fecha:',
|
129
|
+
},
|
130
|
+
{
|
131
|
+
name: 'time_label',
|
132
|
+
type: 'text',
|
133
|
+
position: { x: 30, y: 80 },
|
134
|
+
content: 'Hora:',
|
135
|
+
width: 60,
|
136
|
+
height: 10,
|
137
|
+
fontSize: 10,
|
138
|
+
fontWeight: 'bold',
|
139
|
+
value: 'Hora:',
|
140
|
+
},
|
141
|
+
{
|
142
|
+
name: 'location_label',
|
143
|
+
type: 'text',
|
144
|
+
position: { x: 30, y: 95 },
|
145
|
+
content: 'Lugar:',
|
146
|
+
width: 60,
|
147
|
+
height: 10,
|
148
|
+
fontSize: 10,
|
149
|
+
fontWeight: 'bold',
|
150
|
+
value: 'Lugar:',
|
151
|
+
},
|
152
|
+
{
|
153
|
+
name: 'attendee_section',
|
154
|
+
type: 'text',
|
155
|
+
position: { x: 30, y: 105 },
|
156
|
+
content: 'ASISTENTE:',
|
157
|
+
width: 150,
|
158
|
+
height: 10,
|
159
|
+
fontSize: 12,
|
160
|
+
fontWeight: 'bold',
|
161
|
+
value: 'ASISTENTE:',
|
162
|
+
},
|
163
|
+
{
|
164
|
+
name: 'name_label',
|
165
|
+
type: 'text',
|
166
|
+
position: { x: 30, y: 120 },
|
167
|
+
content: 'Nombre:',
|
168
|
+
width: 60,
|
169
|
+
height: 10,
|
170
|
+
fontSize: 10,
|
171
|
+
fontWeight: 'bold',
|
172
|
+
value: 'Nombre:',
|
173
|
+
},
|
174
|
+
{
|
175
|
+
name: 'email_label',
|
176
|
+
type: 'text',
|
177
|
+
position: { x: 30, y: 135 },
|
178
|
+
content: 'Email:',
|
179
|
+
width: 60,
|
180
|
+
height: 10,
|
181
|
+
fontSize: 10,
|
182
|
+
fontWeight: 'bold',
|
183
|
+
value: 'Email:',
|
184
|
+
},
|
185
|
+
{
|
186
|
+
name: 'ticket_section',
|
187
|
+
type: 'text',
|
188
|
+
position: { x: 30, y: 150 },
|
189
|
+
content: 'DETALLES DEL TICKET:',
|
190
|
+
width: 150,
|
191
|
+
height: 10,
|
192
|
+
fontSize: 12,
|
193
|
+
fontWeight: 'bold',
|
194
|
+
value: 'DETALLES DEL TICKET:',
|
195
|
+
},
|
196
|
+
{
|
197
|
+
name: 'type_label',
|
198
|
+
type: 'text',
|
199
|
+
position: { x: 30, y: 165 },
|
200
|
+
content: 'Tipo:',
|
201
|
+
width: 60,
|
202
|
+
height: 10,
|
203
|
+
fontSize: 10,
|
204
|
+
fontWeight: 'bold',
|
205
|
+
value: 'Tipo:',
|
206
|
+
},
|
207
|
+
{
|
208
|
+
name: 'status_label',
|
209
|
+
type: 'text',
|
210
|
+
position: { x: 30, y: 180 },
|
211
|
+
content: 'Estado:',
|
212
|
+
width: 60,
|
213
|
+
height: 10,
|
214
|
+
fontSize: 10,
|
215
|
+
fontWeight: 'bold',
|
216
|
+
value: 'Estado:',
|
217
|
+
},
|
218
|
+
{
|
219
|
+
name: 'footer',
|
220
|
+
type: 'text',
|
221
|
+
position: { x: 0, y: 220 },
|
222
|
+
content: 'Este ticket es personal e intransferible.',
|
223
|
+
width: 210,
|
224
|
+
height: 10,
|
225
|
+
fontSize: 8,
|
226
|
+
alignment: 'center',
|
227
|
+
value: 'Este ticket es personal e intransferible.',
|
228
|
+
},
|
229
|
+
{
|
230
|
+
name: 'separator1',
|
231
|
+
type: 'line',
|
232
|
+
position: { x: 30, y: 60 },
|
233
|
+
width: 150,
|
234
|
+
height: 0,
|
235
|
+
borderColor: '#000000',
|
236
|
+
borderWidth: 1,
|
237
|
+
},
|
238
|
+
{
|
239
|
+
name: 'separator2',
|
240
|
+
type: 'line',
|
241
|
+
position: { x: 30, y: 115 },
|
242
|
+
width: 150,
|
243
|
+
height: 0,
|
244
|
+
borderColor: '#000000',
|
245
|
+
borderWidth: 1,
|
246
|
+
},
|
247
|
+
{
|
248
|
+
name: 'separator3',
|
249
|
+
type: 'line',
|
250
|
+
position: { x: 30, y: 160 },
|
251
|
+
width: 150,
|
252
|
+
height: 0,
|
253
|
+
borderColor: '#000000',
|
254
|
+
borderWidth: 1,
|
255
|
+
},
|
256
|
+
{
|
257
|
+
name: 'ticket_barcode',
|
258
|
+
type: 'code128',
|
259
|
+
position: { x: 30, y: 240 },
|
260
|
+
width: 150,
|
261
|
+
height: 30,
|
262
|
+
options: {
|
263
|
+
displayValue: false,
|
264
|
+
},
|
265
|
+
readOnly: false,
|
266
|
+
includetext: false,
|
267
|
+
},
|
268
|
+
],
|
269
|
+
],
|
270
|
+
pdfmeVersion: '4.0.0',
|
271
|
+
};
|
272
|
+
//# sourceMappingURL=constants.js.map
|
@@ -0,0 +1,134 @@
|
|
1
|
+
export declare const createTicketSchema: import("zod").ZodObject<Pick<{
|
2
|
+
id: import("zod").ZodString;
|
3
|
+
eventId: import("zod").ZodString;
|
4
|
+
type: import("zod").ZodNativeEnum<{
|
5
|
+
PARTICIPANT: "PARTICIPANT";
|
6
|
+
STAFF: "STAFF";
|
7
|
+
SPECTATOR: "SPECTATOR";
|
8
|
+
}>;
|
9
|
+
status: import("zod").ZodNativeEnum<{
|
10
|
+
BOOKED: "BOOKED";
|
11
|
+
PAID: "PAID";
|
12
|
+
FREE: "FREE";
|
13
|
+
}>;
|
14
|
+
fullName: import("zod").ZodString;
|
15
|
+
mail: import("zod").ZodString;
|
16
|
+
created_at: import("zod").ZodDate;
|
17
|
+
updated_at: import("zod").ZodDate;
|
18
|
+
}, "type" | "fullName" | "mail" | "eventId" | "status">, "strip", import("zod").ZodTypeAny, {
|
19
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
20
|
+
fullName: string;
|
21
|
+
mail: string;
|
22
|
+
eventId: string;
|
23
|
+
status: "BOOKED" | "PAID" | "FREE";
|
24
|
+
}, {
|
25
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
26
|
+
fullName: string;
|
27
|
+
mail: string;
|
28
|
+
eventId: string;
|
29
|
+
status: "BOOKED" | "PAID" | "FREE";
|
30
|
+
}>;
|
31
|
+
declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
32
|
+
type: import("zod").ZodNativeEnum<{
|
33
|
+
PARTICIPANT: "PARTICIPANT";
|
34
|
+
STAFF: "STAFF";
|
35
|
+
SPECTATOR: "SPECTATOR";
|
36
|
+
}>;
|
37
|
+
fullName: import("zod").ZodString;
|
38
|
+
mail: import("zod").ZodString;
|
39
|
+
eventId: import("zod").ZodString;
|
40
|
+
status: import("zod").ZodNativeEnum<{
|
41
|
+
BOOKED: "BOOKED";
|
42
|
+
PAID: "PAID";
|
43
|
+
FREE: "FREE";
|
44
|
+
}>;
|
45
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
46
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
47
|
+
fullName: string;
|
48
|
+
mail: string;
|
49
|
+
eventId: string;
|
50
|
+
status: "BOOKED" | "PAID" | "FREE";
|
51
|
+
}, {
|
52
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
53
|
+
fullName: string;
|
54
|
+
mail: string;
|
55
|
+
eventId: string;
|
56
|
+
status: "BOOKED" | "PAID" | "FREE";
|
57
|
+
}>>;
|
58
|
+
export declare class CreateTicketDto extends CreateTicketDto_base {
|
59
|
+
}
|
60
|
+
export declare const createTicketResponseSchema: import("zod").ZodObject<{
|
61
|
+
id: import("zod").ZodString;
|
62
|
+
eventId: import("zod").ZodString;
|
63
|
+
type: import("zod").ZodNativeEnum<{
|
64
|
+
PARTICIPANT: "PARTICIPANT";
|
65
|
+
STAFF: "STAFF";
|
66
|
+
SPECTATOR: "SPECTATOR";
|
67
|
+
}>;
|
68
|
+
status: import("zod").ZodNativeEnum<{
|
69
|
+
BOOKED: "BOOKED";
|
70
|
+
PAID: "PAID";
|
71
|
+
FREE: "FREE";
|
72
|
+
}>;
|
73
|
+
fullName: import("zod").ZodString;
|
74
|
+
mail: import("zod").ZodString;
|
75
|
+
created_at: import("zod").ZodDate;
|
76
|
+
updated_at: import("zod").ZodDate;
|
77
|
+
}, "strip", import("zod").ZodTypeAny, {
|
78
|
+
id: string;
|
79
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
80
|
+
fullName: string;
|
81
|
+
mail: string;
|
82
|
+
eventId: string;
|
83
|
+
status: "BOOKED" | "PAID" | "FREE";
|
84
|
+
created_at: Date;
|
85
|
+
updated_at: Date;
|
86
|
+
}, {
|
87
|
+
id: string;
|
88
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
89
|
+
fullName: string;
|
90
|
+
mail: string;
|
91
|
+
eventId: string;
|
92
|
+
status: "BOOKED" | "PAID" | "FREE";
|
93
|
+
created_at: Date;
|
94
|
+
updated_at: Date;
|
95
|
+
}>;
|
96
|
+
declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
97
|
+
id: import("zod").ZodString;
|
98
|
+
eventId: import("zod").ZodString;
|
99
|
+
type: import("zod").ZodNativeEnum<{
|
100
|
+
PARTICIPANT: "PARTICIPANT";
|
101
|
+
STAFF: "STAFF";
|
102
|
+
SPECTATOR: "SPECTATOR";
|
103
|
+
}>;
|
104
|
+
status: import("zod").ZodNativeEnum<{
|
105
|
+
BOOKED: "BOOKED";
|
106
|
+
PAID: "PAID";
|
107
|
+
FREE: "FREE";
|
108
|
+
}>;
|
109
|
+
fullName: import("zod").ZodString;
|
110
|
+
mail: import("zod").ZodString;
|
111
|
+
created_at: import("zod").ZodString;
|
112
|
+
updated_at: import("zod").ZodString;
|
113
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
114
|
+
id: string;
|
115
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
116
|
+
fullName: string;
|
117
|
+
mail: string;
|
118
|
+
eventId: string;
|
119
|
+
status: "BOOKED" | "PAID" | "FREE";
|
120
|
+
created_at: string;
|
121
|
+
updated_at: string;
|
122
|
+
}, {
|
123
|
+
id: string;
|
124
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
125
|
+
fullName: string;
|
126
|
+
mail: string;
|
127
|
+
eventId: string;
|
128
|
+
status: "BOOKED" | "PAID" | "FREE";
|
129
|
+
created_at: string;
|
130
|
+
updated_at: string;
|
131
|
+
}>>;
|
132
|
+
export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
|
133
|
+
}
|
134
|
+
export {};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CreateTicketResponseDto = exports.createTicketResponseSchema = exports.CreateTicketDto = exports.createTicketSchema = void 0;
|
4
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
5
|
+
const ticket_dto_1 = require("./ticket.dto");
|
6
|
+
exports.createTicketSchema = ticket_dto_1.ticketSchema.pick({
|
7
|
+
eventId: true,
|
8
|
+
type: true,
|
9
|
+
status: true,
|
10
|
+
fullName: true,
|
11
|
+
mail: true,
|
12
|
+
});
|
13
|
+
class CreateTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createTicketSchema) {
|
14
|
+
}
|
15
|
+
exports.CreateTicketDto = CreateTicketDto;
|
16
|
+
exports.createTicketResponseSchema = ticket_dto_1.ticketSchema;
|
17
|
+
class CreateTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createTicketResponseSchema) {
|
18
|
+
}
|
19
|
+
exports.CreateTicketResponseDto = CreateTicketResponseDto;
|
20
|
+
//# sourceMappingURL=create-ticket.dto.js.map
|
@@ -0,0 +1,75 @@
|
|
1
|
+
export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
2
|
+
id: import("zod").ZodString;
|
3
|
+
eventId: import("zod").ZodString;
|
4
|
+
type: import("zod").ZodNativeEnum<{
|
5
|
+
PARTICIPANT: "PARTICIPANT";
|
6
|
+
STAFF: "STAFF";
|
7
|
+
SPECTATOR: "SPECTATOR";
|
8
|
+
}>;
|
9
|
+
status: import("zod").ZodNativeEnum<{
|
10
|
+
BOOKED: "BOOKED";
|
11
|
+
PAID: "PAID";
|
12
|
+
FREE: "FREE";
|
13
|
+
}>;
|
14
|
+
fullName: import("zod").ZodString;
|
15
|
+
mail: import("zod").ZodString;
|
16
|
+
created_at: import("zod").ZodDate;
|
17
|
+
updated_at: import("zod").ZodDate;
|
18
|
+
}, "strip", import("zod").ZodTypeAny, {
|
19
|
+
id: string;
|
20
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
21
|
+
fullName: string;
|
22
|
+
mail: string;
|
23
|
+
eventId: string;
|
24
|
+
status: "BOOKED" | "PAID" | "FREE";
|
25
|
+
created_at: Date;
|
26
|
+
updated_at: Date;
|
27
|
+
}, {
|
28
|
+
id: string;
|
29
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
30
|
+
fullName: string;
|
31
|
+
mail: string;
|
32
|
+
eventId: string;
|
33
|
+
status: "BOOKED" | "PAID" | "FREE";
|
34
|
+
created_at: Date;
|
35
|
+
updated_at: Date;
|
36
|
+
}>;
|
37
|
+
declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
38
|
+
id: import("zod").ZodString;
|
39
|
+
eventId: import("zod").ZodString;
|
40
|
+
type: import("zod").ZodNativeEnum<{
|
41
|
+
PARTICIPANT: "PARTICIPANT";
|
42
|
+
STAFF: "STAFF";
|
43
|
+
SPECTATOR: "SPECTATOR";
|
44
|
+
}>;
|
45
|
+
status: import("zod").ZodNativeEnum<{
|
46
|
+
BOOKED: "BOOKED";
|
47
|
+
PAID: "PAID";
|
48
|
+
FREE: "FREE";
|
49
|
+
}>;
|
50
|
+
fullName: import("zod").ZodString;
|
51
|
+
mail: import("zod").ZodString;
|
52
|
+
created_at: import("zod").ZodString;
|
53
|
+
updated_at: import("zod").ZodString;
|
54
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
55
|
+
id: string;
|
56
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
57
|
+
fullName: string;
|
58
|
+
mail: string;
|
59
|
+
eventId: string;
|
60
|
+
status: "BOOKED" | "PAID" | "FREE";
|
61
|
+
created_at: string;
|
62
|
+
updated_at: string;
|
63
|
+
}, {
|
64
|
+
id: string;
|
65
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
66
|
+
fullName: string;
|
67
|
+
mail: string;
|
68
|
+
eventId: string;
|
69
|
+
status: "BOOKED" | "PAID" | "FREE";
|
70
|
+
created_at: string;
|
71
|
+
updated_at: string;
|
72
|
+
}>>;
|
73
|
+
export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
|
74
|
+
}
|
75
|
+
export {};
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DeleteTicketResponseDto = exports.deleteTicketResponseSchema = void 0;
|
4
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
5
|
+
const ticket_dto_1 = require("./ticket.dto");
|
6
|
+
exports.deleteTicketResponseSchema = ticket_dto_1.ticketSchema;
|
7
|
+
class DeleteTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.deleteTicketResponseSchema) {
|
8
|
+
}
|
9
|
+
exports.DeleteTicketResponseDto = DeleteTicketResponseDto;
|
10
|
+
//# sourceMappingURL=delete-ticket.dto.js.map
|