expo-backend-types 0.39.0 → 0.40.0-EXPO-330-ExpoBackend-MercadoPago.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.
Files changed (47) hide show
  1. package/dist/src/csv/dto/download-all-tables.dto.d.ts +0 -1
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
  3. package/dist/src/exports.d.ts +1 -0
  4. package/dist/src/exports.js +1 -0
  5. package/dist/src/i18n/es.d.ts +8 -0
  6. package/dist/src/i18n/es.js +54 -143
  7. package/dist/src/i18n/es.js.map +1 -1
  8. package/dist/src/i18n/translate.js +2 -2
  9. package/dist/src/i18n/translate.js.map +1 -1
  10. package/dist/src/image/dto/update-image.dto.d.ts +0 -1
  11. package/dist/src/mercadopago/dto/create-preference-mercadopago.dto.d.ts +74 -0
  12. package/dist/src/mercadopago/dto/create-preference-mercadopago.dto.js +21 -0
  13. package/dist/src/mercadopago/dto/webhook-mercadopago.dto.d.ts +80 -0
  14. package/dist/src/mercadopago/dto/webhook-mercadopago.dto.js +24 -0
  15. package/dist/src/mercadopago/exports.d.ts +2 -0
  16. package/dist/src/mercadopago/exports.js +19 -0
  17. package/dist/src/schema/profile.schema.js +17 -7
  18. package/dist/src/shared/dto-modification/create-zod-dto-without-date.js +1 -2
  19. package/dist/src/shared/dto-modification/create-zod-dto-without-date.js.map +1 -1
  20. package/dist/src/ticket/constants.js +1 -2
  21. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +28 -0
  22. package/dist/src/ticket/dto/create-ticket.dto.d.ts +14 -0
  23. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
  24. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
  25. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +20 -0
  26. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +20 -0
  27. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +20 -0
  28. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
  29. package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
  30. package/dist/src/ticket/dto/generate-pdf.dto.d.ts +0 -1
  31. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +34 -0
  32. package/dist/src/ticket/dto/scan-ticket.dto.js +21 -0
  33. package/dist/src/ticket/dto/ticket.dto.d.ts +12 -0
  34. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  35. package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
  36. package/dist/src/ticket/exports.d.ts +1 -0
  37. package/dist/src/ticket/exports.js +1 -0
  38. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +20 -0
  39. package/dist/types/prisma-schema/edge.js +5 -3
  40. package/dist/types/prisma-schema/index-browser.js +2 -0
  41. package/dist/types/prisma-schema/index.d.ts +97 -1
  42. package/dist/types/prisma-schema/index.js +5 -3
  43. package/dist/types/prisma-schema/package.json +1 -1
  44. package/dist/types/prisma-schema/schema.prisma +3 -1
  45. package/dist/types/prisma-schema/wasm.js +2 -0
  46. package/dist/types/schema.d.ts +85 -0
  47. package/package.json +15 -15
@@ -0,0 +1,80 @@
1
+ import z from 'zod';
2
+ export declare const webhookSchema: z.ZodObject<{
3
+ data: z.ZodObject<{
4
+ id: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ id: string;
7
+ }, {
8
+ id: string;
9
+ }>;
10
+ action: z.ZodString;
11
+ api_version: z.ZodString;
12
+ date_created: z.ZodString;
13
+ id: z.ZodString;
14
+ live_mode: z.ZodBoolean;
15
+ type: z.ZodString;
16
+ user_id: z.ZodNumber;
17
+ }, "strip", z.ZodTypeAny, {
18
+ id: string;
19
+ type: string;
20
+ data: {
21
+ id: string;
22
+ };
23
+ action: string;
24
+ api_version: string;
25
+ date_created: string;
26
+ live_mode: boolean;
27
+ user_id: number;
28
+ }, {
29
+ id: string;
30
+ type: string;
31
+ data: {
32
+ id: string;
33
+ };
34
+ action: string;
35
+ api_version: string;
36
+ date_created: string;
37
+ live_mode: boolean;
38
+ user_id: number;
39
+ }>;
40
+ declare const WebhookDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
41
+ data: z.ZodObject<{
42
+ id: z.ZodString;
43
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
44
+ id: string;
45
+ }, {
46
+ id: string;
47
+ }>;
48
+ action: z.ZodString;
49
+ api_version: z.ZodString;
50
+ date_created: z.ZodString;
51
+ id: z.ZodString;
52
+ live_mode: z.ZodBoolean;
53
+ type: z.ZodString;
54
+ user_id: z.ZodNumber;
55
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
56
+ id: string;
57
+ type: string;
58
+ data: {
59
+ id: string;
60
+ };
61
+ action: string;
62
+ api_version: string;
63
+ date_created: string;
64
+ live_mode: boolean;
65
+ user_id: number;
66
+ }, {
67
+ id: string;
68
+ type: string;
69
+ data: {
70
+ id: string;
71
+ };
72
+ action: string;
73
+ api_version: string;
74
+ date_created: string;
75
+ live_mode: boolean;
76
+ user_id: number;
77
+ }>>;
78
+ export declare class WebhookDto extends WebhookDto_base {
79
+ }
80
+ export {};
@@ -0,0 +1,24 @@
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.WebhookDto = exports.webhookSchema = 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.webhookSchema = zod_1.default.object({
10
+ data: zod_1.default.object({
11
+ id: zod_1.default.string(),
12
+ }),
13
+ action: zod_1.default.string(),
14
+ api_version: zod_1.default.string(),
15
+ date_created: zod_1.default.string(),
16
+ id: zod_1.default.string(),
17
+ live_mode: zod_1.default.boolean(),
18
+ type: zod_1.default.string(),
19
+ user_id: zod_1.default.number(),
20
+ });
21
+ class WebhookDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.webhookSchema) {
22
+ }
23
+ exports.WebhookDto = WebhookDto;
24
+ //# sourceMappingURL=webhook-mercadopago.dto.js.map
@@ -0,0 +1,2 @@
1
+ export * from './dto/create-preference-mercadopago.dto';
2
+ export * from './dto/webhook-mercadopago.dto';
@@ -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/create-preference-mercadopago.dto"), exports);
18
+ __exportStar(require("./dto/webhook-mercadopago.dto"), exports);
19
+ //# sourceMappingURL=exports.js.map
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -1,10 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createZodDtoWithoutDate = void 0;
3
+ exports.createZodDtoWithoutDate = createZodDtoWithoutDate;
4
4
  const zod_without_dates_1 = require("./zod-without-dates");
5
5
  const zod_nestjs_1 = require("@anatine/zod-nestjs");
6
6
  function createZodDtoWithoutDate(schema) {
7
7
  return (0, zod_nestjs_1.createZodDto)((0, zod_without_dates_1.replaceDatesWithStrings)(schema));
8
8
  }
9
- exports.createZodDtoWithoutDate = createZodDtoWithoutDate;
10
9
  //# sourceMappingURL=create-zod-dto-without-date.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-zod-dto-without-date.js","sourceRoot":"","sources":["../../../../src/shared/dto-modification/create-zod-dto-without-date.ts"],"names":[],"mappings":";;;AAAA,2DAGqD;AACrD,oDAAiE;AAGjE,SAAgB,uBAAuB,CACrC,MAAS;IAET,OAAO,IAAA,yBAAY,EAAC,IAAA,2CAAuB,EAAC,MAAM,CAAC,CAElD,CAAC;AACJ,CAAC;AAND,0DAMC"}
1
+ {"version":3,"file":"create-zod-dto-without-date.js","sourceRoot":"","sources":["../../../../src/shared/dto-modification/create-zod-dto-without-date.ts"],"names":[],"mappings":";;AAOA,0DAMC;AAbD,2DAGqD;AACrD,oDAAiE;AAGjE,SAAgB,uBAAuB,CACrC,MAAS;IAET,OAAO,IAAA,yBAAY,EAAC,IAAA,2CAAuB,EAAC,MAAM,CAAC,CAElD,CAAC;AACJ,CAAC"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.generateTicketTemplate = void 0;
3
+ exports.generateTicketTemplate = generateTicketTemplate;
4
4
  const translate_1 = require("../i18n/translate");
5
5
  const types_1 = require("../../types");
6
6
  function generateTicketTemplate(ticketType) {
@@ -356,5 +356,4 @@ function generateTicketTemplate(ticketType) {
356
356
  pdfmeVersion: '5.3.13',
357
357
  };
358
358
  }
359
- exports.generateTicketTemplate = generateTicketTemplate;
360
359
  //# sourceMappingURL=constants.js.map
@@ -12,6 +12,8 @@ export declare const createManyTicketSchema: z.ZodObject<{
12
12
  mail: z.ZodString;
13
13
  dni: z.ZodString;
14
14
  seat: z.ZodNullable<z.ZodNumber>;
15
+ scanned: z.ZodBoolean;
16
+ scannedAt: z.ZodNullable<z.ZodDate>;
15
17
  ticketGroupId: z.ZodNullable<z.ZodString>;
16
18
  created_at: z.ZodDate;
17
19
  updated_at: z.ZodDate;
@@ -130,6 +132,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
130
132
  mail: z.ZodString;
131
133
  dni: z.ZodString;
132
134
  seat: z.ZodNullable<z.ZodNumber>;
135
+ scanned: z.ZodBoolean;
136
+ scannedAt: z.ZodNullable<z.ZodDate>;
133
137
  ticketGroupId: z.ZodNullable<z.ZodString>;
134
138
  created_at: z.ZodDate;
135
139
  updated_at: z.ZodDate;
@@ -202,6 +206,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
202
206
  seat: number | null;
203
207
  created_at: Date;
204
208
  updated_at: Date;
209
+ scanned: boolean;
210
+ scannedAt: Date | null;
205
211
  ticketGroupId: string | null;
206
212
  }, {
207
213
  event: {
@@ -228,6 +234,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
228
234
  seat: number | null;
229
235
  created_at: Date;
230
236
  updated_at: Date;
237
+ scanned: boolean;
238
+ scannedAt: Date | null;
231
239
  ticketGroupId: string | null;
232
240
  }>, "many">;
233
241
  export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
@@ -243,6 +251,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
243
251
  mail: z.ZodString;
244
252
  dni: z.ZodString;
245
253
  seat: z.ZodNullable<z.ZodNumber>;
254
+ scanned: z.ZodBoolean;
255
+ scannedAt: z.ZodNullable<z.ZodDate>;
246
256
  ticketGroupId: z.ZodNullable<z.ZodString>;
247
257
  created_at: z.ZodDate;
248
258
  updated_at: z.ZodDate;
@@ -315,6 +325,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
315
325
  seat: number | null;
316
326
  created_at: Date;
317
327
  updated_at: Date;
328
+ scanned: boolean;
329
+ scannedAt: Date | null;
318
330
  ticketGroupId: string | null;
319
331
  }, {
320
332
  event: {
@@ -341,6 +353,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
341
353
  seat: number | null;
342
354
  created_at: Date;
343
355
  updated_at: Date;
356
+ scanned: boolean;
357
+ scannedAt: Date | null;
344
358
  ticketGroupId: string | null;
345
359
  }>, "many">;
346
360
  pdfs: z.ZodArray<z.ZodObject<{
@@ -379,6 +393,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
379
393
  seat: number | null;
380
394
  created_at: Date;
381
395
  updated_at: Date;
396
+ scanned: boolean;
397
+ scannedAt: Date | null;
382
398
  ticketGroupId: string | null;
383
399
  }[];
384
400
  pdfs: {
@@ -411,6 +427,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
411
427
  seat: number | null;
412
428
  created_at: Date;
413
429
  updated_at: Date;
430
+ scanned: boolean;
431
+ scannedAt: Date | null;
414
432
  ticketGroupId: string | null;
415
433
  }[];
416
434
  pdfs: {
@@ -431,6 +449,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
431
449
  mail: z.ZodString;
432
450
  dni: z.ZodString;
433
451
  seat: z.ZodNullable<z.ZodNumber>;
452
+ scanned: z.ZodBoolean;
453
+ scannedAt: z.ZodNullable<z.ZodString>;
434
454
  ticketGroupId: z.ZodNullable<z.ZodString>;
435
455
  created_at: z.ZodString;
436
456
  updated_at: z.ZodString;
@@ -502,6 +522,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
502
522
  seat: number | null;
503
523
  created_at: string;
504
524
  updated_at: string;
525
+ scanned: boolean;
526
+ scannedAt: string | null;
505
527
  ticketGroupId: string | null;
506
528
  }, {
507
529
  event: {
@@ -528,6 +550,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
528
550
  seat: number | null;
529
551
  created_at: string;
530
552
  updated_at: string;
553
+ scanned: boolean;
554
+ scannedAt: string | null;
531
555
  ticketGroupId: string | null;
532
556
  }>, "many">;
533
557
  pdfs: z.ZodArray<z.ZodObject<{
@@ -566,6 +590,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
566
590
  seat: number | null;
567
591
  created_at: string;
568
592
  updated_at: string;
593
+ scanned: boolean;
594
+ scannedAt: string | null;
569
595
  ticketGroupId: string | null;
570
596
  }[];
571
597
  pdfs: {
@@ -598,6 +624,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
598
624
  seat: number | null;
599
625
  created_at: string;
600
626
  updated_at: string;
627
+ scanned: boolean;
628
+ scannedAt: string | null;
601
629
  ticketGroupId: string | null;
602
630
  }[];
603
631
  pdfs: {
@@ -10,6 +10,8 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
10
10
  mail: import("zod").ZodString;
11
11
  dni: import("zod").ZodString;
12
12
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
13
+ scanned: import("zod").ZodBoolean;
14
+ scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
13
15
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
14
16
  created_at: import("zod").ZodDate;
15
17
  updated_at: import("zod").ZodDate;
@@ -76,6 +78,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
76
78
  mail: import("zod").ZodString;
77
79
  dni: import("zod").ZodString;
78
80
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
81
+ scanned: import("zod").ZodBoolean;
82
+ scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
79
83
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
80
84
  created_at: import("zod").ZodDate;
81
85
  updated_at: import("zod").ZodDate;
@@ -148,6 +152,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
148
152
  seat: number | null;
149
153
  created_at: Date;
150
154
  updated_at: Date;
155
+ scanned: boolean;
156
+ scannedAt: Date | null;
151
157
  ticketGroupId: string | null;
152
158
  }, {
153
159
  event: {
@@ -174,6 +180,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
174
180
  seat: number | null;
175
181
  created_at: Date;
176
182
  updated_at: Date;
183
+ scanned: boolean;
184
+ scannedAt: Date | null;
177
185
  ticketGroupId: string | null;
178
186
  }>;
179
187
  declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -188,6 +196,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
188
196
  mail: import("zod").ZodString;
189
197
  dni: import("zod").ZodString;
190
198
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
199
+ scanned: import("zod").ZodBoolean;
200
+ scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
191
201
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
192
202
  created_at: import("zod").ZodString;
193
203
  updated_at: import("zod").ZodString;
@@ -259,6 +269,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
259
269
  seat: number | null;
260
270
  created_at: string;
261
271
  updated_at: string;
272
+ scanned: boolean;
273
+ scannedAt: string | null;
262
274
  ticketGroupId: string | null;
263
275
  }, {
264
276
  event: {
@@ -285,6 +297,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
285
297
  seat: number | null;
286
298
  created_at: string;
287
299
  updated_at: string;
300
+ scanned: boolean;
301
+ scannedAt: string | null;
288
302
  ticketGroupId: string | null;
289
303
  }>>;
290
304
  export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
@@ -10,6 +10,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
10
10
  mail: import("zod").ZodString;
11
11
  dni: import("zod").ZodString;
12
12
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
13
+ scanned: import("zod").ZodBoolean;
14
+ scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
13
15
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
14
16
  created_at: import("zod").ZodDate;
15
17
  updated_at: import("zod").ZodDate;
@@ -23,6 +25,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
23
25
  seat: number | null;
24
26
  created_at: Date;
25
27
  updated_at: Date;
28
+ scanned: boolean;
29
+ scannedAt: Date | null;
26
30
  ticketGroupId: string | null;
27
31
  }, {
28
32
  id: string;
@@ -34,6 +38,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
34
38
  seat: number | null;
35
39
  created_at: Date;
36
40
  updated_at: Date;
41
+ scanned: boolean;
42
+ scannedAt: Date | null;
37
43
  ticketGroupId: string | null;
38
44
  }>;
39
45
  declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -48,6 +54,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
48
54
  mail: import("zod").ZodString;
49
55
  dni: import("zod").ZodString;
50
56
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
57
+ scanned: import("zod").ZodBoolean;
58
+ scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
51
59
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
52
60
  created_at: import("zod").ZodString;
53
61
  updated_at: import("zod").ZodString;
@@ -61,6 +69,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
61
69
  seat: number | null;
62
70
  created_at: string;
63
71
  updated_at: string;
72
+ scanned: boolean;
73
+ scannedAt: string | null;
64
74
  ticketGroupId: string | null;
65
75
  }, {
66
76
  id: string;
@@ -72,6 +82,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
72
82
  seat: number | null;
73
83
  created_at: string;
74
84
  updated_at: string;
85
+ scanned: boolean;
86
+ scannedAt: string | null;
75
87
  ticketGroupId: string | null;
76
88
  }>>;
77
89
  export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
@@ -12,6 +12,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
12
12
  mail: z.ZodString;
13
13
  dni: z.ZodString;
14
14
  seat: z.ZodNullable<z.ZodNumber>;
15
+ scanned: z.ZodBoolean;
16
+ scannedAt: z.ZodNullable<z.ZodDate>;
15
17
  ticketGroupId: z.ZodNullable<z.ZodString>;
16
18
  created_at: z.ZodDate;
17
19
  updated_at: z.ZodDate;
@@ -54,6 +56,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
54
56
  seat: number | null;
55
57
  created_at: Date;
56
58
  updated_at: Date;
59
+ scanned: boolean;
60
+ scannedAt: Date | null;
57
61
  ticketGroupId: string | null;
58
62
  }, {
59
63
  event: {
@@ -70,6 +74,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
70
74
  seat: number | null;
71
75
  created_at: Date;
72
76
  updated_at: Date;
77
+ scanned: boolean;
78
+ scannedAt: Date | null;
73
79
  ticketGroupId: string | null;
74
80
  }>, "many">;
75
81
  }, "strip", z.ZodTypeAny, {
@@ -88,6 +94,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
88
94
  seat: number | null;
89
95
  created_at: Date;
90
96
  updated_at: Date;
97
+ scanned: boolean;
98
+ scannedAt: Date | null;
91
99
  ticketGroupId: string | null;
92
100
  }[];
93
101
  }, {
@@ -106,6 +114,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
106
114
  seat: number | null;
107
115
  created_at: Date;
108
116
  updated_at: Date;
117
+ scanned: boolean;
118
+ scannedAt: Date | null;
109
119
  ticketGroupId: string | null;
110
120
  }[];
111
121
  }>;
@@ -122,6 +132,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
122
132
  mail: z.ZodString;
123
133
  dni: z.ZodString;
124
134
  seat: z.ZodNullable<z.ZodNumber>;
135
+ scanned: z.ZodBoolean;
136
+ scannedAt: z.ZodNullable<z.ZodString>;
125
137
  ticketGroupId: z.ZodNullable<z.ZodString>;
126
138
  created_at: z.ZodString;
127
139
  updated_at: z.ZodString;
@@ -153,6 +165,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
153
165
  seat: number | null;
154
166
  created_at: string;
155
167
  updated_at: string;
168
+ scanned: boolean;
169
+ scannedAt: string | null;
156
170
  ticketGroupId: string | null;
157
171
  }, {
158
172
  event: {
@@ -169,6 +183,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
169
183
  seat: number | null;
170
184
  created_at: string;
171
185
  updated_at: string;
186
+ scanned: boolean;
187
+ scannedAt: string | null;
172
188
  ticketGroupId: string | null;
173
189
  }>, "many">;
174
190
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -187,6 +203,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
187
203
  seat: number | null;
188
204
  created_at: string;
189
205
  updated_at: string;
206
+ scanned: boolean;
207
+ scannedAt: string | null;
190
208
  ticketGroupId: string | null;
191
209
  }[];
192
210
  }, {
@@ -205,6 +223,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
205
223
  seat: number | null;
206
224
  created_at: string;
207
225
  updated_at: string;
226
+ scanned: boolean;
227
+ scannedAt: string | null;
208
228
  ticketGroupId: string | null;
209
229
  }[];
210
230
  }>>;
@@ -12,6 +12,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
12
12
  mail: z.ZodString;
13
13
  dni: z.ZodString;
14
14
  seat: z.ZodNullable<z.ZodNumber>;
15
+ scanned: z.ZodBoolean;
16
+ scannedAt: z.ZodNullable<z.ZodDate>;
15
17
  ticketGroupId: z.ZodNullable<z.ZodString>;
16
18
  created_at: z.ZodDate;
17
19
  updated_at: z.ZodDate;
@@ -162,6 +164,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
162
164
  seat: number | null;
163
165
  created_at: Date;
164
166
  updated_at: Date;
167
+ scanned: boolean;
168
+ scannedAt: Date | null;
165
169
  ticketGroupId: string | null;
166
170
  }, {
167
171
  event: {
@@ -204,6 +208,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
204
208
  seat: number | null;
205
209
  created_at: Date;
206
210
  updated_at: Date;
211
+ scanned: boolean;
212
+ scannedAt: Date | null;
207
213
  ticketGroupId: string | null;
208
214
  }>, "many">;
209
215
  }, "strip", z.ZodTypeAny, {
@@ -248,6 +254,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
248
254
  seat: number | null;
249
255
  created_at: Date;
250
256
  updated_at: Date;
257
+ scanned: boolean;
258
+ scannedAt: Date | null;
251
259
  ticketGroupId: string | null;
252
260
  }[];
253
261
  }, {
@@ -292,6 +300,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
292
300
  seat: number | null;
293
301
  created_at: Date;
294
302
  updated_at: Date;
303
+ scanned: boolean;
304
+ scannedAt: Date | null;
295
305
  ticketGroupId: string | null;
296
306
  }[];
297
307
  }>;
@@ -308,6 +318,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
308
318
  mail: z.ZodString;
309
319
  dni: z.ZodString;
310
320
  seat: z.ZodNullable<z.ZodNumber>;
321
+ scanned: z.ZodBoolean;
322
+ scannedAt: z.ZodNullable<z.ZodString>;
311
323
  ticketGroupId: z.ZodNullable<z.ZodString>;
312
324
  created_at: z.ZodString;
313
325
  updated_at: z.ZodString;
@@ -447,6 +459,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
447
459
  seat: number | null;
448
460
  created_at: string;
449
461
  updated_at: string;
462
+ scanned: boolean;
463
+ scannedAt: string | null;
450
464
  ticketGroupId: string | null;
451
465
  }, {
452
466
  event: {
@@ -489,6 +503,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
489
503
  seat: number | null;
490
504
  created_at: string;
491
505
  updated_at: string;
506
+ scanned: boolean;
507
+ scannedAt: string | null;
492
508
  ticketGroupId: string | null;
493
509
  }>, "many">;
494
510
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -533,6 +549,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
533
549
  seat: number | null;
534
550
  created_at: string;
535
551
  updated_at: string;
552
+ scanned: boolean;
553
+ scannedAt: string | null;
536
554
  ticketGroupId: string | null;
537
555
  }[];
538
556
  }, {
@@ -577,6 +595,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
577
595
  seat: number | null;
578
596
  created_at: string;
579
597
  updated_at: string;
598
+ scanned: boolean;
599
+ scannedAt: string | null;
580
600
  ticketGroupId: string | null;
581
601
  }[];
582
602
  }>>;