expo-backend-types 0.31.0-EXPO-311-EB-Modificar-DB-schema.4 → 0.31.0-EXPO-315-Marcelo-Tinelli.4
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 +2 -115
- package/dist/src/event/dto/create-event.dto.js +0 -8
- package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
- package/dist/src/event/dto/event.dto.d.ts +0 -9
- package/dist/src/event/dto/event.dto.js +0 -9
- package/dist/src/event/dto/get-all-event.dto.d.ts +0 -264
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -160
- package/dist/src/event/dto/get-by-id-event.dto.js +0 -2
- package/dist/src/event/dto/update-event.dto.d.ts +2 -173
- package/dist/src/event/dto/update-event.dto.js +0 -9
- package/dist/src/event/exports.d.ts +0 -3
- package/dist/src/event/exports.js +0 -3
- 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/exports.d.ts +3 -0
- package/dist/src/exports.js +3 -0
- package/dist/src/i18n/es.d.ts +59 -20
- package/dist/src/i18n/es.js +59 -20
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/message/dto/template.dto.d.ts +2 -2
- package/dist/src/pdf/dto/find-ticket.dto.d.ts +90 -0
- package/dist/src/pdf/dto/find-ticket.dto.js +20 -0
- package/dist/src/pdf/dto/generate-pdf.dto.d.ts +7 -0
- package/dist/src/pdf/dto/generate-pdf.dto.js +13 -0
- package/dist/src/pdf/exports.d.ts +2 -0
- package/dist/src/pdf/exports.js +19 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +130 -0
- package/dist/src/ticket/dto/create-ticket.dto.js +20 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +73 -0
- package/dist/src/ticket/dto/delete-ticket.dto.js +10 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +196 -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 +196 -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 +196 -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 +196 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +23 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +74 -0
- package/dist/src/ticket/dto/ticket.dto.js +29 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +121 -0
- package/dist/src/ticket/dto/update-ticket.dto.js +21 -0
- package/dist/src/ticket/exports.d.ts +8 -0
- package/dist/src/ticket/exports.js +25 -0
- package/dist/types/prisma-schema/edge.js +26 -23
- package/dist/types/prisma-schema/index-browser.js +23 -20
- package/dist/types/prisma-schema/index.d.ts +1294 -1877
- package/dist/types/prisma-schema/index.js +26 -23
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +32 -29
- package/dist/types/prisma-schema/wasm.js +23 -20
- package/dist/types/schema.d.ts +471 -136
- package/package.json +7 -2
- package/dist/src/event/dto/event-tickets.dto.d.ts +0 -21
- package/dist/src/event/dto/event-tickets.dto.js +0 -21
- package/dist/src/event/dto/get-active-events.dto.d.ts +0 -247
- package/dist/src/event/dto/get-active-events.dto.js +0 -19
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -43
- package/dist/src/event/dto/toggle-active-event.dto.js +0 -6
@@ -10,13 +10,10 @@ export declare const getByIdEventFolderResponseSchema: z.ZodObject<z.objectUtil.
|
|
10
10
|
id: z.ZodString;
|
11
11
|
name: z.ZodString;
|
12
12
|
date: z.ZodDate;
|
13
|
-
startingDate: z.ZodDate;
|
14
|
-
endingDate: z.ZodDate;
|
15
13
|
location: z.ZodString;
|
16
14
|
folderId: z.ZodNullable<z.ZodString>;
|
17
15
|
tagAssistedId: z.ZodString;
|
18
16
|
tagConfirmedId: z.ZodString;
|
19
|
-
active: z.ZodBoolean;
|
20
17
|
supraEventId: z.ZodNullable<z.ZodString>;
|
21
18
|
created_at: z.ZodDate;
|
22
19
|
updated_at: z.ZodDate;
|
@@ -25,11 +22,8 @@ export declare const getByIdEventFolderResponseSchema: z.ZodObject<z.objectUtil.
|
|
25
22
|
id: string;
|
26
23
|
name: string;
|
27
24
|
date: Date;
|
28
|
-
startingDate: Date;
|
29
|
-
endingDate: Date;
|
30
25
|
created_at: Date;
|
31
26
|
updated_at: Date;
|
32
|
-
active: boolean;
|
33
27
|
folderId: string | null;
|
34
28
|
tagAssistedId: string;
|
35
29
|
tagConfirmedId: string;
|
@@ -39,11 +33,8 @@ export declare const getByIdEventFolderResponseSchema: z.ZodObject<z.objectUtil.
|
|
39
33
|
id: string;
|
40
34
|
name: string;
|
41
35
|
date: Date;
|
42
|
-
startingDate: Date;
|
43
|
-
endingDate: Date;
|
44
36
|
created_at: Date;
|
45
37
|
updated_at: Date;
|
46
|
-
active: boolean;
|
47
38
|
folderId: string | null;
|
48
39
|
tagAssistedId: string;
|
49
40
|
tagConfirmedId: string;
|
@@ -60,11 +51,8 @@ export declare const getByIdEventFolderResponseSchema: z.ZodObject<z.objectUtil.
|
|
60
51
|
id: string;
|
61
52
|
name: string;
|
62
53
|
date: Date;
|
63
|
-
startingDate: Date;
|
64
|
-
endingDate: Date;
|
65
54
|
created_at: Date;
|
66
55
|
updated_at: Date;
|
67
|
-
active: boolean;
|
68
56
|
folderId: string | null;
|
69
57
|
tagAssistedId: string;
|
70
58
|
tagConfirmedId: string;
|
@@ -81,11 +69,8 @@ export declare const getByIdEventFolderResponseSchema: z.ZodObject<z.objectUtil.
|
|
81
69
|
id: string;
|
82
70
|
name: string;
|
83
71
|
date: Date;
|
84
|
-
startingDate: Date;
|
85
|
-
endingDate: Date;
|
86
72
|
created_at: Date;
|
87
73
|
updated_at: Date;
|
88
|
-
active: boolean;
|
89
74
|
folderId: string | null;
|
90
75
|
tagAssistedId: string;
|
91
76
|
tagConfirmedId: string;
|
@@ -102,13 +87,10 @@ declare const GetByIdEventFolderResponseDto_base: import("@anatine/zod-nestjs").
|
|
102
87
|
id: z.ZodString;
|
103
88
|
name: z.ZodString;
|
104
89
|
date: z.ZodString;
|
105
|
-
startingDate: z.ZodString;
|
106
|
-
endingDate: z.ZodString;
|
107
90
|
location: z.ZodString;
|
108
91
|
folderId: z.ZodNullable<z.ZodString>;
|
109
92
|
tagAssistedId: z.ZodString;
|
110
93
|
tagConfirmedId: z.ZodString;
|
111
|
-
active: z.ZodBoolean;
|
112
94
|
supraEventId: z.ZodNullable<z.ZodString>;
|
113
95
|
created_at: z.ZodString;
|
114
96
|
updated_at: z.ZodString;
|
@@ -117,11 +99,8 @@ declare const GetByIdEventFolderResponseDto_base: import("@anatine/zod-nestjs").
|
|
117
99
|
id: string;
|
118
100
|
name: string;
|
119
101
|
date: string;
|
120
|
-
startingDate: string;
|
121
|
-
endingDate: string;
|
122
102
|
created_at: string;
|
123
103
|
updated_at: string;
|
124
|
-
active: boolean;
|
125
104
|
folderId: string | null;
|
126
105
|
tagAssistedId: string;
|
127
106
|
tagConfirmedId: string;
|
@@ -131,11 +110,8 @@ declare const GetByIdEventFolderResponseDto_base: import("@anatine/zod-nestjs").
|
|
131
110
|
id: string;
|
132
111
|
name: string;
|
133
112
|
date: string;
|
134
|
-
startingDate: string;
|
135
|
-
endingDate: string;
|
136
113
|
created_at: string;
|
137
114
|
updated_at: string;
|
138
|
-
active: boolean;
|
139
115
|
folderId: string | null;
|
140
116
|
tagAssistedId: string;
|
141
117
|
tagConfirmedId: string;
|
@@ -152,11 +128,8 @@ declare const GetByIdEventFolderResponseDto_base: import("@anatine/zod-nestjs").
|
|
152
128
|
id: string;
|
153
129
|
name: string;
|
154
130
|
date: string;
|
155
|
-
startingDate: string;
|
156
|
-
endingDate: string;
|
157
131
|
created_at: string;
|
158
132
|
updated_at: string;
|
159
|
-
active: boolean;
|
160
133
|
folderId: string | null;
|
161
134
|
tagAssistedId: string;
|
162
135
|
tagConfirmedId: string;
|
@@ -173,11 +146,8 @@ declare const GetByIdEventFolderResponseDto_base: import("@anatine/zod-nestjs").
|
|
173
146
|
id: string;
|
174
147
|
name: string;
|
175
148
|
date: string;
|
176
|
-
startingDate: string;
|
177
|
-
endingDate: string;
|
178
149
|
created_at: string;
|
179
150
|
updated_at: string;
|
180
|
-
active: boolean;
|
181
151
|
folderId: string | null;
|
182
152
|
tagAssistedId: string;
|
183
153
|
tagConfirmedId: string;
|
package/dist/src/exports.d.ts
CHANGED
@@ -2,11 +2,14 @@ export * from './account/exports';
|
|
2
2
|
export * from './auth/exports';
|
3
3
|
export * from './canned-response/exports';
|
4
4
|
export * from './comment/exports';
|
5
|
+
export * from './csv/exports';
|
5
6
|
export * from './event-folder/exports';
|
6
7
|
export * from './event/exports';
|
7
8
|
export * from './location/exports';
|
8
9
|
export * from './message/exports';
|
10
|
+
export * from './pdf/exports';
|
9
11
|
export * from './profile/exports';
|
10
12
|
export * from './shared/dto-modification/zod-without-dates';
|
11
13
|
export * from './tag-group/exports';
|
12
14
|
export * from './tag/exports';
|
15
|
+
export * from './ticket/exports';
|
package/dist/src/exports.js
CHANGED
@@ -18,12 +18,15 @@ __exportStar(require("./account/exports"), exports);
|
|
18
18
|
__exportStar(require("./auth/exports"), exports);
|
19
19
|
__exportStar(require("./canned-response/exports"), exports);
|
20
20
|
__exportStar(require("./comment/exports"), exports);
|
21
|
+
__exportStar(require("./csv/exports"), exports);
|
21
22
|
__exportStar(require("./event-folder/exports"), exports);
|
22
23
|
__exportStar(require("./event/exports"), exports);
|
23
24
|
__exportStar(require("./location/exports"), exports);
|
24
25
|
__exportStar(require("./message/exports"), exports);
|
26
|
+
__exportStar(require("./pdf/exports"), exports);
|
25
27
|
__exportStar(require("./profile/exports"), exports);
|
26
28
|
__exportStar(require("./shared/dto-modification/zod-without-dates"), exports);
|
27
29
|
__exportStar(require("./tag-group/exports"), exports);
|
28
30
|
__exportStar(require("./tag/exports"), exports);
|
31
|
+
__exportStar(require("./ticket/exports"), exports);
|
29
32
|
//# sourceMappingURL=exports.js.map
|
package/dist/src/i18n/es.d.ts
CHANGED
@@ -11,7 +11,7 @@ declare const _default: {
|
|
11
11
|
readonly location: "Ubicación";
|
12
12
|
readonly cannedResponse: "Respuesta enlatada";
|
13
13
|
readonly message: "Mensaje";
|
14
|
-
readonly
|
14
|
+
readonly ticket: "Ticket";
|
15
15
|
};
|
16
16
|
readonly tag: {
|
17
17
|
readonly assisted: "Asistió";
|
@@ -76,14 +76,6 @@ declare const _default: {
|
|
76
76
|
readonly required: "La fecha es requerida";
|
77
77
|
readonly invalid: "La fecha debe ser una fecha válida";
|
78
78
|
};
|
79
|
-
readonly startingDate: {
|
80
|
-
readonly required: "La fecha de inicio es requerida";
|
81
|
-
readonly invalid: "La fecha de inicio debe ser una fecha válida";
|
82
|
-
};
|
83
|
-
readonly endingDate: {
|
84
|
-
readonly required: "La fecha de finalización es requerida";
|
85
|
-
readonly invalid: "La fecha de finalización debe ser una fecha válida";
|
86
|
-
};
|
87
79
|
readonly location: {
|
88
80
|
readonly required: "La ubicación es requerida";
|
89
81
|
};
|
@@ -189,12 +181,24 @@ declare const _default: {
|
|
189
181
|
readonly 'max-length': "Los botones no pueden tener más de 20 caracteres";
|
190
182
|
};
|
191
183
|
};
|
192
|
-
readonly
|
193
|
-
readonly
|
194
|
-
readonly
|
184
|
+
readonly ticket: {
|
185
|
+
readonly id: {
|
186
|
+
readonly uuid: "El ID debe ser un UUID";
|
195
187
|
};
|
196
|
-
readonly
|
197
|
-
readonly
|
188
|
+
readonly eventId: {
|
189
|
+
readonly uuid: "El ID del evento debe ser un UUID";
|
190
|
+
};
|
191
|
+
readonly fullName: {
|
192
|
+
readonly required: "El nombre es requerido";
|
193
|
+
};
|
194
|
+
readonly mail: {
|
195
|
+
readonly email: "El email debe ser un email válido";
|
196
|
+
};
|
197
|
+
readonly type: {
|
198
|
+
readonly invalid: "El tipo de ticket es inválido";
|
199
|
+
};
|
200
|
+
readonly status: {
|
201
|
+
readonly invalid: "El estado del ticket es inválido";
|
198
202
|
};
|
199
203
|
};
|
200
204
|
};
|
@@ -359,7 +363,6 @@ declare const _default: {
|
|
359
363
|
readonly success: "Evento creado con éxito";
|
360
364
|
readonly conflict: "Error en la creación del evento";
|
361
365
|
readonly 'folder-not-found': "Carpeta de evento no encontrada";
|
362
|
-
readonly 'tag-not-found': "Etiqueta no encontrada";
|
363
366
|
};
|
364
367
|
readonly 'get-all': {
|
365
368
|
readonly success: "Eventos obtenidos con éxito";
|
@@ -373,16 +376,22 @@ declare const _default: {
|
|
373
376
|
readonly success: "Evento actualizado con éxito";
|
374
377
|
readonly 'not-found': "Evento no encontrado";
|
375
378
|
readonly 'subevent-not-found': "Subevento no encontrado";
|
376
|
-
readonly 'active-event-not-editable': "Evento activo no editable";
|
377
379
|
};
|
378
380
|
readonly delete: {
|
379
381
|
readonly success: "Evento eliminado con éxito";
|
380
382
|
readonly 'not-found': "Evento no encontrado";
|
381
383
|
};
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
readonly
|
384
|
+
};
|
385
|
+
readonly pdf: {
|
386
|
+
readonly 'generate-pdf': {
|
387
|
+
readonly success: "Ticket generado con éxito";
|
388
|
+
readonly 'not-found': "Ticket no encontrado";
|
389
|
+
};
|
390
|
+
readonly 'find-ticket': {
|
391
|
+
readonly success: "Ticket encontrado con éxito";
|
392
|
+
readonly 'not-found': "Ticket no encontrado";
|
393
|
+
readonly 'invalid-barcode': "Error de formato en el valor del código de barras";
|
394
|
+
readonly error: "Error al descifrar el ID del ticket";
|
386
395
|
};
|
387
396
|
};
|
388
397
|
readonly profile: {
|
@@ -512,6 +521,36 @@ declare const _default: {
|
|
512
521
|
readonly error: "Error al obtener el último mensaje";
|
513
522
|
};
|
514
523
|
};
|
524
|
+
readonly ticket: {
|
525
|
+
readonly create: {
|
526
|
+
readonly success: "Ticket creado con éxito";
|
527
|
+
readonly conflict: "Error en la creación del ticket";
|
528
|
+
};
|
529
|
+
readonly 'find-all': {
|
530
|
+
readonly success: "Tickets obtenidos";
|
531
|
+
};
|
532
|
+
readonly 'find-by-id': {
|
533
|
+
readonly success: "Ticket obtenido";
|
534
|
+
readonly 'not-found': "Ticket no encontrado";
|
535
|
+
};
|
536
|
+
readonly 'find-by-mail': {
|
537
|
+
readonly success: "Tickets por mail obtenidos";
|
538
|
+
readonly 'not-found': "Tickets por mail no encontrados";
|
539
|
+
};
|
540
|
+
readonly 'find-by-event': {
|
541
|
+
readonly success: "Tickets por evento obtenidos";
|
542
|
+
readonly 'not-found': "Tickets por evento no encontrados";
|
543
|
+
};
|
544
|
+
readonly update: {
|
545
|
+
readonly success: "Ticket actualizado";
|
546
|
+
readonly 'not-found': "Ticket no encontrado";
|
547
|
+
readonly conflict: "Error en la actualización del ticket";
|
548
|
+
};
|
549
|
+
readonly delete: {
|
550
|
+
readonly success: "Ticket eliminado";
|
551
|
+
readonly 'not-found': "Ticket no encontrado";
|
552
|
+
};
|
553
|
+
};
|
515
554
|
readonly webhook: {
|
516
555
|
readonly get: {
|
517
556
|
readonly success: "Webhook verificado";
|
package/dist/src/i18n/es.js
CHANGED
@@ -13,7 +13,7 @@ exports.default = {
|
|
13
13
|
location: 'Ubicación',
|
14
14
|
cannedResponse: 'Respuesta enlatada',
|
15
15
|
message: 'Mensaje',
|
16
|
-
|
16
|
+
ticket: 'Ticket',
|
17
17
|
},
|
18
18
|
tag: {
|
19
19
|
assisted: 'Asistió',
|
@@ -78,14 +78,6 @@ exports.default = {
|
|
78
78
|
required: 'La fecha es requerida',
|
79
79
|
invalid: 'La fecha debe ser una fecha válida',
|
80
80
|
},
|
81
|
-
startingDate: {
|
82
|
-
required: 'La fecha de inicio es requerida',
|
83
|
-
invalid: 'La fecha de inicio debe ser una fecha válida',
|
84
|
-
},
|
85
|
-
endingDate: {
|
86
|
-
required: 'La fecha de finalización es requerida',
|
87
|
-
invalid: 'La fecha de finalización debe ser una fecha válida',
|
88
|
-
},
|
89
81
|
location: {
|
90
82
|
required: 'La ubicación es requerida',
|
91
83
|
},
|
@@ -191,12 +183,24 @@ exports.default = {
|
|
191
183
|
'max-length': 'Los botones no pueden tener más de 20 caracteres',
|
192
184
|
},
|
193
185
|
},
|
194
|
-
|
195
|
-
|
196
|
-
|
186
|
+
ticket: {
|
187
|
+
id: {
|
188
|
+
uuid: 'El ID debe ser un UUID',
|
197
189
|
},
|
198
|
-
|
199
|
-
|
190
|
+
eventId: {
|
191
|
+
uuid: 'El ID del evento debe ser un UUID',
|
192
|
+
},
|
193
|
+
fullName: {
|
194
|
+
required: 'El nombre es requerido',
|
195
|
+
},
|
196
|
+
mail: {
|
197
|
+
email: 'El email debe ser un email válido',
|
198
|
+
},
|
199
|
+
type: {
|
200
|
+
invalid: 'El tipo de ticket es inválido',
|
201
|
+
},
|
202
|
+
status: {
|
203
|
+
invalid: 'El estado del ticket es inválido',
|
200
204
|
},
|
201
205
|
},
|
202
206
|
},
|
@@ -361,7 +365,6 @@ exports.default = {
|
|
361
365
|
success: 'Evento creado con éxito',
|
362
366
|
conflict: 'Error en la creación del evento',
|
363
367
|
'folder-not-found': 'Carpeta de evento no encontrada',
|
364
|
-
'tag-not-found': 'Etiqueta no encontrada',
|
365
368
|
},
|
366
369
|
'get-all': {
|
367
370
|
success: 'Eventos obtenidos con éxito',
|
@@ -375,16 +378,22 @@ exports.default = {
|
|
375
378
|
success: 'Evento actualizado con éxito',
|
376
379
|
'not-found': 'Evento no encontrado',
|
377
380
|
'subevent-not-found': 'Subevento no encontrado',
|
378
|
-
'active-event-not-editable': 'Evento activo no editable',
|
379
381
|
},
|
380
382
|
delete: {
|
381
383
|
success: 'Evento eliminado con éxito',
|
382
384
|
'not-found': 'Evento no encontrado',
|
383
385
|
},
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
386
|
+
},
|
387
|
+
pdf: {
|
388
|
+
'generate-pdf': {
|
389
|
+
success: 'Ticket generado con éxito',
|
390
|
+
'not-found': 'Ticket no encontrado',
|
391
|
+
},
|
392
|
+
'find-ticket': {
|
393
|
+
success: 'Ticket encontrado con éxito',
|
394
|
+
'not-found': 'Ticket no encontrado',
|
395
|
+
'invalid-barcode': 'Error de formato en el valor del código de barras',
|
396
|
+
error: 'Error al descifrar el ID del ticket',
|
388
397
|
},
|
389
398
|
},
|
390
399
|
profile: {
|
@@ -514,6 +523,36 @@ exports.default = {
|
|
514
523
|
error: 'Error al obtener el último mensaje',
|
515
524
|
},
|
516
525
|
},
|
526
|
+
ticket: {
|
527
|
+
create: {
|
528
|
+
success: 'Ticket creado con éxito',
|
529
|
+
conflict: 'Error en la creación del ticket',
|
530
|
+
},
|
531
|
+
'find-all': {
|
532
|
+
success: 'Tickets obtenidos',
|
533
|
+
},
|
534
|
+
'find-by-id': {
|
535
|
+
success: 'Ticket obtenido',
|
536
|
+
'not-found': 'Ticket no encontrado',
|
537
|
+
},
|
538
|
+
'find-by-mail': {
|
539
|
+
success: 'Tickets por mail obtenidos',
|
540
|
+
'not-found': 'Tickets por mail no encontrados',
|
541
|
+
},
|
542
|
+
'find-by-event': {
|
543
|
+
success: 'Tickets por evento obtenidos',
|
544
|
+
'not-found': 'Tickets por evento no encontrados',
|
545
|
+
},
|
546
|
+
update: {
|
547
|
+
success: 'Ticket actualizado',
|
548
|
+
'not-found': 'Ticket no encontrado',
|
549
|
+
conflict: 'Error en la actualización del ticket',
|
550
|
+
},
|
551
|
+
delete: {
|
552
|
+
success: 'Ticket eliminado',
|
553
|
+
'not-found': 'Ticket no encontrado',
|
554
|
+
},
|
555
|
+
},
|
517
556
|
webhook: {
|
518
557
|
get: {
|
519
558
|
success: 'Webhook verificado',
|
package/dist/src/i18n/es.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":";;AAAA,kBAAe;IACb,MAAM,EAAE;QACN,KAAK,EAAE;YACL,OAAO,EAAE,QAAQ;YACjB,GAAG,EAAE,UAAU;YACf,QAAQ,EAAE,oBAAoB;YAC9B,KAAK,EAAE,QAAQ;YACf,WAAW,EAAE,oBAAoB;YACjC,OAAO,EAAE,YAAY;YACrB,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,WAAW;YACrB,cAAc,EAAE,oBAAoB;YACpC,OAAO,EAAE,SAAS;YAClB,
|
1
|
+
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":"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"}
|
@@ -113,8 +113,8 @@ export declare const templateSchema: z.ZodObject<{
|
|
113
113
|
id: string;
|
114
114
|
name: string;
|
115
115
|
content: string;
|
116
|
-
buttons: string[];
|
117
116
|
status: "APPROVED" | "PENDING" | "REJECTED";
|
117
|
+
buttons: string[];
|
118
118
|
language: string;
|
119
119
|
components: ({
|
120
120
|
type: "BUTTONS";
|
@@ -132,8 +132,8 @@ export declare const templateSchema: z.ZodObject<{
|
|
132
132
|
id: string;
|
133
133
|
name: string;
|
134
134
|
content: string;
|
135
|
-
buttons: string[];
|
136
135
|
status: "APPROVED" | "PENDING" | "REJECTED";
|
136
|
+
buttons: string[];
|
137
137
|
language: string;
|
138
138
|
components: ({
|
139
139
|
type: "BUTTONS";
|
@@ -0,0 +1,90 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const findTicketSchema: z.ZodObject<{
|
3
|
+
barcode_value: z.ZodString;
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
5
|
+
barcode_value: string;
|
6
|
+
}, {
|
7
|
+
barcode_value: string;
|
8
|
+
}>;
|
9
|
+
declare const FindTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
10
|
+
barcode_value: z.ZodString;
|
11
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
12
|
+
barcode_value: string;
|
13
|
+
}, {
|
14
|
+
barcode_value: string;
|
15
|
+
}>>;
|
16
|
+
export declare class FindTicketDto extends FindTicketDto_base {
|
17
|
+
}
|
18
|
+
export declare const findTicketResponseSchema: z.ZodObject<{
|
19
|
+
id: z.ZodString;
|
20
|
+
eventId: z.ZodString;
|
21
|
+
type: z.ZodNativeEnum<{
|
22
|
+
PARTICIPANT: "PARTICIPANT";
|
23
|
+
SPECTATOR: "SPECTATOR";
|
24
|
+
STAFF: "STAFF";
|
25
|
+
}>;
|
26
|
+
status: z.ZodNativeEnum<{
|
27
|
+
BOOKED: "BOOKED";
|
28
|
+
PAID: "PAID";
|
29
|
+
}>;
|
30
|
+
fullName: z.ZodString;
|
31
|
+
mail: z.ZodString;
|
32
|
+
created_at: z.ZodDate;
|
33
|
+
updated_at: z.ZodDate;
|
34
|
+
}, "strip", z.ZodTypeAny, {
|
35
|
+
id: string;
|
36
|
+
type: "PARTICIPANT" | "SPECTATOR" | "STAFF";
|
37
|
+
fullName: string;
|
38
|
+
mail: string;
|
39
|
+
eventId: string;
|
40
|
+
status: "BOOKED" | "PAID";
|
41
|
+
created_at: Date;
|
42
|
+
updated_at: Date;
|
43
|
+
}, {
|
44
|
+
id: string;
|
45
|
+
type: "PARTICIPANT" | "SPECTATOR" | "STAFF";
|
46
|
+
fullName: string;
|
47
|
+
mail: string;
|
48
|
+
eventId: string;
|
49
|
+
status: "BOOKED" | "PAID";
|
50
|
+
created_at: Date;
|
51
|
+
updated_at: Date;
|
52
|
+
}>;
|
53
|
+
declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
54
|
+
id: z.ZodString;
|
55
|
+
eventId: z.ZodString;
|
56
|
+
type: z.ZodNativeEnum<{
|
57
|
+
PARTICIPANT: "PARTICIPANT";
|
58
|
+
SPECTATOR: "SPECTATOR";
|
59
|
+
STAFF: "STAFF";
|
60
|
+
}>;
|
61
|
+
status: z.ZodNativeEnum<{
|
62
|
+
BOOKED: "BOOKED";
|
63
|
+
PAID: "PAID";
|
64
|
+
}>;
|
65
|
+
fullName: z.ZodString;
|
66
|
+
mail: z.ZodString;
|
67
|
+
created_at: z.ZodString;
|
68
|
+
updated_at: z.ZodString;
|
69
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
70
|
+
id: string;
|
71
|
+
type: "PARTICIPANT" | "SPECTATOR" | "STAFF";
|
72
|
+
fullName: string;
|
73
|
+
mail: string;
|
74
|
+
eventId: string;
|
75
|
+
status: "BOOKED" | "PAID";
|
76
|
+
created_at: string;
|
77
|
+
updated_at: string;
|
78
|
+
}, {
|
79
|
+
id: string;
|
80
|
+
type: "PARTICIPANT" | "SPECTATOR" | "STAFF";
|
81
|
+
fullName: string;
|
82
|
+
mail: string;
|
83
|
+
eventId: string;
|
84
|
+
status: "BOOKED" | "PAID";
|
85
|
+
created_at: string;
|
86
|
+
updated_at: string;
|
87
|
+
}>>;
|
88
|
+
export declare class FindTicketResponseDto extends FindTicketResponseDto_base {
|
89
|
+
}
|
90
|
+
export {};
|
@@ -0,0 +1,20 @@
|
|
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.FindTicketResponseDto = exports.findTicketResponseSchema = exports.FindTicketDto = exports.findTicketSchema = void 0;
|
7
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
8
|
+
const exports_1 = require("../../ticket/exports");
|
9
|
+
const zod_1 = __importDefault(require("zod"));
|
10
|
+
exports.findTicketSchema = zod_1.default.object({
|
11
|
+
barcode_value: zod_1.default.string(),
|
12
|
+
});
|
13
|
+
class FindTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findTicketSchema) {
|
14
|
+
}
|
15
|
+
exports.FindTicketDto = FindTicketDto;
|
16
|
+
exports.findTicketResponseSchema = exports_1.ticketSchema;
|
17
|
+
class FindTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findTicketResponseSchema) {
|
18
|
+
}
|
19
|
+
exports.FindTicketResponseDto = FindTicketResponseDto;
|
20
|
+
//# sourceMappingURL=find-ticket.dto.js.map
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/// <reference types="node" />
|
2
|
+
import z from 'zod';
|
3
|
+
export declare const generatePdfResponseSchema: z.ZodType<Buffer, z.ZodTypeDef, Buffer>;
|
4
|
+
declare const GeneratePdfResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodType<Buffer, z.ZodTypeDef, Buffer>>;
|
5
|
+
export declare class GeneratePdfResponseDto extends GeneratePdfResponseDto_base {
|
6
|
+
}
|
7
|
+
export {};
|
@@ -0,0 +1,13 @@
|
|
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.GeneratePdfResponseDto = exports.generatePdfResponseSchema = 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.generatePdfResponseSchema = zod_1.default.instanceof(Buffer);
|
10
|
+
class GeneratePdfResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.generatePdfResponseSchema) {
|
11
|
+
}
|
12
|
+
exports.GeneratePdfResponseDto = GeneratePdfResponseDto;
|
13
|
+
//# sourceMappingURL=generate-pdf.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/find-ticket.dto"), exports);
|
18
|
+
__exportStar(require("./dto/generate-pdf.dto"), exports);
|
19
|
+
//# sourceMappingURL=exports.js.map
|