expo-backend-types 0.59.0 → 0.60.0-feat-desfile-12-octubre.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 (99) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +4 -4
  2. package/dist/src/account/dto/create-account.dto.d.ts +13 -13
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +10 -8
  4. package/dist/src/account/dto/get-me.dto.d.ts +26 -22
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +14 -12
  6. package/dist/src/auth/dto/login.dto.d.ts +10 -10
  7. package/dist/src/dynamic-form/dto/find-all-dynamic-form.dto.d.ts +18 -16
  8. package/dist/src/dynamic-form/dto/find-by-id-dynamic-question.dto.d.ts +14 -12
  9. package/dist/src/dynamic-form/dto/submit-dynamic-form.dto.d.ts +4 -4
  10. package/dist/src/event/dto/create-event.dto.d.ts +46 -0
  11. package/dist/src/event/dto/create-event.dto.js +1 -0
  12. package/dist/src/event/dto/event.dto.d.ts +13 -0
  13. package/dist/src/event/dto/event.dto.js +10 -1
  14. package/dist/src/event/dto/get-all-event.dto.d.ts +32 -28
  15. package/dist/src/event/dto/get-all-statistics.dto.d.ts +15 -0
  16. package/dist/src/event/dto/get-by-id-event.dto.d.ts +80 -40
  17. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +15 -0
  18. package/dist/src/event/dto/update-event.dto.d.ts +56 -8
  19. package/dist/src/event/dto/update-event.dto.js +1 -0
  20. package/dist/src/exports.d.ts +1 -0
  21. package/dist/src/exports.js +1 -0
  22. package/dist/src/i18n/es.d.ts +43 -0
  23. package/dist/src/i18n/es.js +43 -0
  24. package/dist/src/i18n/es.js.map +1 -1
  25. package/dist/src/mi-expo/dto/get-me.dto.d.ts +4 -4
  26. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +6 -6
  27. package/dist/src/mi-expo/dto/login.dto.d.ts +6 -6
  28. package/dist/src/mi-expo/dto/update-me-first-time.dto.d.ts +4 -4
  29. package/dist/src/mi-expo/dto/update-me.dto.d.ts +4 -4
  30. package/dist/src/otp/dto/verify-otp.dto.d.ts +4 -4
  31. package/dist/src/production/dto/create-role.dto.d.ts +7 -4
  32. package/dist/src/production/dto/get-all-production.dto.d.ts +6 -6
  33. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +6 -6
  34. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +4 -4
  35. package/dist/src/profile/dto/delete-profile.dto.d.ts +2 -2
  36. package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -16
  37. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +30 -26
  38. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +14 -12
  39. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +2 -2
  40. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -16
  41. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -16
  42. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -16
  43. package/dist/src/profile/dto/profile.dto.d.ts +1 -1
  44. package/dist/src/profile/dto/update-profile.dto.d.ts +2 -2
  45. package/dist/src/role/dto/allocate-participant-role.dto.d.ts +191 -0
  46. package/dist/src/role/dto/allocate-participant-role.dto.js +24 -0
  47. package/dist/src/role/dto/allocate-production-role.dto.d.ts +185 -0
  48. package/dist/src/role/dto/allocate-production-role.dto.js +22 -0
  49. package/dist/src/role/dto/create-role.dto.d.ts +92 -0
  50. package/dist/src/role/dto/create-role.dto.js +16 -0
  51. package/dist/src/role/dto/deallocate-all-role.dto.d.ts +185 -0
  52. package/dist/src/role/dto/deallocate-all-role.dto.js +22 -0
  53. package/dist/src/role/dto/delete-role.dto.d.ts +63 -0
  54. package/dist/src/role/dto/delete-role.dto.js +10 -0
  55. package/dist/src/role/dto/find-all-role.dto.d.ts +63 -0
  56. package/dist/src/role/dto/find-all-role.dto.js +10 -0
  57. package/dist/src/role/dto/update-role.dto.d.ts +92 -0
  58. package/dist/src/role/dto/update-role.dto.js +16 -0
  59. package/dist/src/role/exports.d.ts +7 -0
  60. package/dist/src/role/exports.js +24 -0
  61. package/dist/src/schema/profile.schema.d.ts +1 -1
  62. package/dist/src/tag/dto/create-tag.dto.d.ts +13 -8
  63. package/dist/src/tag/dto/delete-tag.dto.d.ts +6 -4
  64. package/dist/src/tag/dto/find-all-tag.dto.d.ts +10 -8
  65. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +10 -8
  66. package/dist/src/tag/dto/find-one-tag.dto.d.ts +6 -4
  67. package/dist/src/tag/dto/massive-allocation.dto.d.ts +4 -4
  68. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +4 -4
  69. package/dist/src/tag/dto/tag.dto.d.ts +6 -4
  70. package/dist/src/tag/dto/update-tag.dto.d.ts +7 -4
  71. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +14 -12
  72. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +14 -12
  73. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +10 -8
  74. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +49 -1
  75. package/dist/src/ticket/dto/create-many-ticket.dto.js +3 -0
  76. package/dist/src/ticket/dto/create-ticket.dto.d.ts +37 -1
  77. package/dist/src/ticket/dto/create-ticket.dto.js +3 -0
  78. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +18 -0
  79. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +30 -0
  80. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +36 -6
  81. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +36 -6
  82. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +36 -6
  83. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +30 -0
  84. package/dist/src/ticket/dto/find-ticket.dto.d.ts +18 -0
  85. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +15 -0
  86. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +18 -0
  87. package/dist/src/ticket/dto/ticket.dto.d.ts +18 -0
  88. package/dist/src/ticket/dto/ticket.dto.js +4 -0
  89. package/dist/src/ticket/dto/update-ticket.dto.d.ts +18 -0
  90. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  91. package/dist/types/prisma-schema/edge.js +20 -5
  92. package/dist/types/prisma-schema/index-browser.js +17 -2
  93. package/dist/types/prisma-schema/index.d.ts +1871 -4
  94. package/dist/types/prisma-schema/index.js +20 -5
  95. package/dist/types/prisma-schema/package.json +1 -1
  96. package/dist/types/prisma-schema/schema.prisma +30 -0
  97. package/dist/types/prisma-schema/wasm.js +17 -2
  98. package/dist/types/schema.d.ts +515 -27
  99. package/package.json +1 -1
@@ -11,6 +11,9 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
11
11
  fullName: z.ZodString;
12
12
  mail: z.ZodString;
13
13
  dni: z.ZodString;
14
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
15
+ instagrams: z.ZodArray<z.ZodString, "many">;
16
+ whoToWatch: z.ZodNullable<z.ZodString>;
14
17
  seat: z.ZodNullable<z.ZodNumber>;
15
18
  scanned: z.ZodBoolean;
16
19
  scannedAt: z.ZodNullable<z.ZodDate>;
@@ -20,6 +23,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
20
23
  }, "strip", z.ZodTypeAny, {
21
24
  id: string;
22
25
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
26
+ phoneNumber: string;
23
27
  fullName: string;
24
28
  mail: string;
25
29
  eventId: string;
@@ -27,12 +31,15 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
27
31
  seat: number | null;
28
32
  created_at: Date;
29
33
  updated_at: Date;
34
+ instagrams: string[];
35
+ whoToWatch: string | null;
30
36
  scanned: boolean;
31
37
  scannedAt: Date | null;
32
38
  ticketGroupId: string | null;
33
39
  }, {
34
40
  id: string;
35
41
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
42
+ phoneNumber: string;
36
43
  fullName: string;
37
44
  mail: string;
38
45
  eventId: string;
@@ -40,6 +47,8 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
40
47
  seat: number | null;
41
48
  created_at: Date;
42
49
  updated_at: Date;
50
+ instagrams: string[];
51
+ whoToWatch: string | null;
43
52
  scanned: boolean;
44
53
  scannedAt: Date | null;
45
54
  ticketGroupId: string | null;
@@ -48,6 +57,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
48
57
  tickets: {
49
58
  id: string;
50
59
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
60
+ phoneNumber: string;
51
61
  fullName: string;
52
62
  mail: string;
53
63
  eventId: string;
@@ -55,6 +65,8 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
55
65
  seat: number | null;
56
66
  created_at: Date;
57
67
  updated_at: Date;
68
+ instagrams: string[];
69
+ whoToWatch: string | null;
58
70
  scanned: boolean;
59
71
  scannedAt: Date | null;
60
72
  ticketGroupId: string | null;
@@ -63,6 +75,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
63
75
  tickets: {
64
76
  id: string;
65
77
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
78
+ phoneNumber: string;
66
79
  fullName: string;
67
80
  mail: string;
68
81
  eventId: string;
@@ -70,6 +83,8 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
70
83
  seat: number | null;
71
84
  created_at: Date;
72
85
  updated_at: Date;
86
+ instagrams: string[];
87
+ whoToWatch: string | null;
73
88
  scanned: boolean;
74
89
  scannedAt: Date | null;
75
90
  ticketGroupId: string | null;
@@ -32,6 +32,9 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
32
32
  fullName: z.ZodString;
33
33
  mail: z.ZodString;
34
34
  dni: z.ZodString;
35
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
36
+ instagrams: z.ZodArray<z.ZodString, "many">;
37
+ whoToWatch: z.ZodNullable<z.ZodString>;
35
38
  seat: z.ZodNullable<z.ZodNumber>;
36
39
  scanned: z.ZodBoolean;
37
40
  scannedAt: z.ZodNullable<z.ZodDate>;
@@ -41,6 +44,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
41
44
  }, "strip", z.ZodTypeAny, {
42
45
  id: string;
43
46
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
47
+ phoneNumber: string;
44
48
  fullName: string;
45
49
  mail: string;
46
50
  eventId: string;
@@ -48,12 +52,15 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
48
52
  seat: number | null;
49
53
  created_at: Date;
50
54
  updated_at: Date;
55
+ instagrams: string[];
56
+ whoToWatch: string | null;
51
57
  scanned: boolean;
52
58
  scannedAt: Date | null;
53
59
  ticketGroupId: string | null;
54
60
  }, {
55
61
  id: string;
56
62
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
63
+ phoneNumber: string;
57
64
  fullName: string;
58
65
  mail: string;
59
66
  eventId: string;
@@ -61,6 +68,8 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
61
68
  seat: number | null;
62
69
  created_at: Date;
63
70
  updated_at: Date;
71
+ instagrams: string[];
72
+ whoToWatch: string | null;
64
73
  scanned: boolean;
65
74
  scannedAt: Date | null;
66
75
  ticketGroupId: string | null;
@@ -76,6 +85,9 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
76
85
  fullName: z.ZodString;
77
86
  mail: z.ZodString;
78
87
  dni: z.ZodString;
88
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
89
+ instagrams: z.ZodArray<z.ZodString, "many">;
90
+ whoToWatch: z.ZodNullable<z.ZodString>;
79
91
  seat: z.ZodNullable<z.ZodNumber>;
80
92
  scanned: z.ZodBoolean;
81
93
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -85,6 +97,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
85
97
  }, z.UnknownKeysParam, z.ZodTypeAny, {
86
98
  id: string;
87
99
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
100
+ phoneNumber: string;
88
101
  fullName: string;
89
102
  mail: string;
90
103
  eventId: string;
@@ -92,12 +105,15 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
92
105
  seat: number | null;
93
106
  created_at: string;
94
107
  updated_at: string;
108
+ instagrams: string[];
109
+ whoToWatch: string | null;
95
110
  scanned: boolean;
96
111
  scannedAt: string | null;
97
112
  ticketGroupId: string | null;
98
113
  }, {
99
114
  id: string;
100
115
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
116
+ phoneNumber: string;
101
117
  fullName: string;
102
118
  mail: string;
103
119
  eventId: string;
@@ -105,6 +121,8 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
105
121
  seat: number | null;
106
122
  created_at: string;
107
123
  updated_at: string;
124
+ instagrams: string[];
125
+ whoToWatch: string | null;
108
126
  scanned: boolean;
109
127
  scannedAt: string | null;
110
128
  ticketGroupId: string | null;
@@ -10,6 +10,9 @@ export declare const ticketSchema: z.ZodObject<{
10
10
  fullName: z.ZodString;
11
11
  mail: z.ZodString;
12
12
  dni: z.ZodString;
13
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
14
+ instagrams: z.ZodArray<z.ZodString, "many">;
15
+ whoToWatch: z.ZodNullable<z.ZodString>;
13
16
  seat: z.ZodNullable<z.ZodNumber>;
14
17
  scanned: z.ZodBoolean;
15
18
  scannedAt: z.ZodNullable<z.ZodDate>;
@@ -19,6 +22,7 @@ export declare const ticketSchema: z.ZodObject<{
19
22
  }, "strip", z.ZodTypeAny, {
20
23
  id: string;
21
24
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
25
+ phoneNumber: string;
22
26
  fullName: string;
23
27
  mail: string;
24
28
  eventId: string;
@@ -26,12 +30,15 @@ export declare const ticketSchema: z.ZodObject<{
26
30
  seat: number | null;
27
31
  created_at: Date;
28
32
  updated_at: Date;
33
+ instagrams: string[];
34
+ whoToWatch: string | null;
29
35
  scanned: boolean;
30
36
  scannedAt: Date | null;
31
37
  ticketGroupId: string | null;
32
38
  }, {
33
39
  id: string;
34
40
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
41
+ phoneNumber: string;
35
42
  fullName: string;
36
43
  mail: string;
37
44
  eventId: string;
@@ -39,6 +46,8 @@ export declare const ticketSchema: z.ZodObject<{
39
46
  seat: number | null;
40
47
  created_at: Date;
41
48
  updated_at: Date;
49
+ instagrams: string[];
50
+ whoToWatch: string | null;
42
51
  scanned: boolean;
43
52
  scannedAt: Date | null;
44
53
  ticketGroupId: string | null;
@@ -54,6 +63,9 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
54
63
  fullName: z.ZodString;
55
64
  mail: z.ZodString;
56
65
  dni: z.ZodString;
66
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
67
+ instagrams: z.ZodArray<z.ZodString, "many">;
68
+ whoToWatch: z.ZodNullable<z.ZodString>;
57
69
  seat: z.ZodNullable<z.ZodNumber>;
58
70
  scanned: z.ZodBoolean;
59
71
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -63,6 +75,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
63
75
  }, z.UnknownKeysParam, z.ZodTypeAny, {
64
76
  id: string;
65
77
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
78
+ phoneNumber: string;
66
79
  fullName: string;
67
80
  mail: string;
68
81
  eventId: string;
@@ -70,12 +83,15 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
70
83
  seat: number | null;
71
84
  created_at: string;
72
85
  updated_at: string;
86
+ instagrams: string[];
87
+ whoToWatch: string | null;
73
88
  scanned: boolean;
74
89
  scannedAt: string | null;
75
90
  ticketGroupId: string | null;
76
91
  }, {
77
92
  id: string;
78
93
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
94
+ phoneNumber: string;
79
95
  fullName: string;
80
96
  mail: string;
81
97
  eventId: string;
@@ -83,6 +99,8 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
83
99
  seat: number | null;
84
100
  created_at: string;
85
101
  updated_at: string;
102
+ instagrams: string[];
103
+ whoToWatch: string | null;
86
104
  scanned: boolean;
87
105
  scannedAt: string | null;
88
106
  ticketGroupId: string | null;
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.TicketDto = exports.ticketSchema = void 0;
7
7
  const event_dto_1 = require("../../event/dto/event.dto");
8
8
  const translate_1 = require("../../i18n/translate");
9
+ const profile_schema_1 = require("../../schema/profile.schema");
9
10
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
10
11
  const ticket_group_dto_1 = require("../../ticket-group/dto/ticket-group.dto");
11
12
  const zod_1 = __importDefault(require("zod"));
@@ -19,6 +20,9 @@ exports.ticketSchema = zod_1.default.object({
19
20
  fullName: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.fullName.required')),
20
21
  mail: zod_1.default.string().email((0, translate_1.translate)('model.ticket.mail.email')),
21
22
  dni: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.dni.required')),
23
+ phoneNumber: profile_schema_1.profileSchema.shape.phoneNumber,
24
+ instagrams: zod_1.default.array(zod_1.default.string()),
25
+ whoToWatch: zod_1.default.string().nullable(),
22
26
  seat: zod_1.default.number().min(1, (0, translate_1.translate)('model.ticket.seat.required')).nullable(),
23
27
  scanned: zod_1.default.boolean(),
24
28
  scannedAt: zod_1.default.date().nullable(),
@@ -57,6 +57,9 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
57
57
  fullName: import("zod").ZodString;
58
58
  mail: import("zod").ZodString;
59
59
  dni: import("zod").ZodString;
60
+ phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
61
+ instagrams: import("zod").ZodArray<import("zod").ZodString, "many">;
62
+ whoToWatch: import("zod").ZodNullable<import("zod").ZodString>;
60
63
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
61
64
  scanned: import("zod").ZodBoolean;
62
65
  scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
@@ -66,6 +69,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
66
69
  }, "strip", import("zod").ZodTypeAny, {
67
70
  id: string;
68
71
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
72
+ phoneNumber: string;
69
73
  fullName: string;
70
74
  mail: string;
71
75
  eventId: string;
@@ -73,12 +77,15 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
73
77
  seat: number | null;
74
78
  created_at: Date;
75
79
  updated_at: Date;
80
+ instagrams: string[];
81
+ whoToWatch: string | null;
76
82
  scanned: boolean;
77
83
  scannedAt: Date | null;
78
84
  ticketGroupId: string | null;
79
85
  }, {
80
86
  id: string;
81
87
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
88
+ phoneNumber: string;
82
89
  fullName: string;
83
90
  mail: string;
84
91
  eventId: string;
@@ -86,6 +93,8 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
86
93
  seat: number | null;
87
94
  created_at: Date;
88
95
  updated_at: Date;
96
+ instagrams: string[];
97
+ whoToWatch: string | null;
89
98
  scanned: boolean;
90
99
  scannedAt: Date | null;
91
100
  ticketGroupId: string | null;
@@ -101,6 +110,9 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
101
110
  fullName: import("zod").ZodString;
102
111
  mail: import("zod").ZodString;
103
112
  dni: import("zod").ZodString;
113
+ phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
114
+ instagrams: import("zod").ZodArray<import("zod").ZodString, "many">;
115
+ whoToWatch: import("zod").ZodNullable<import("zod").ZodString>;
104
116
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
105
117
  scanned: import("zod").ZodBoolean;
106
118
  scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
@@ -110,6 +122,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
110
122
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
111
123
  id: string;
112
124
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
125
+ phoneNumber: string;
113
126
  fullName: string;
114
127
  mail: string;
115
128
  eventId: string;
@@ -117,12 +130,15 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
117
130
  seat: number | null;
118
131
  created_at: string;
119
132
  updated_at: string;
133
+ instagrams: string[];
134
+ whoToWatch: string | null;
120
135
  scanned: boolean;
121
136
  scannedAt: string | null;
122
137
  ticketGroupId: string | null;
123
138
  }, {
124
139
  id: string;
125
140
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
141
+ phoneNumber: string;
126
142
  fullName: string;
127
143
  mail: string;
128
144
  eventId: string;
@@ -130,6 +146,8 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
130
146
  seat: number | null;
131
147
  created_at: string;
132
148
  updated_at: string;
149
+ instagrams: string[];
150
+ whoToWatch: string | null;
133
151
  scanned: boolean;
134
152
  scannedAt: string | null;
135
153
  ticketGroupId: string | null;
@@ -54,6 +54,9 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
54
54
  fullName: z.ZodString;
55
55
  mail: z.ZodString;
56
56
  dni: z.ZodString;
57
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
58
+ instagrams: z.ZodArray<z.ZodString, "many">;
59
+ whoToWatch: z.ZodNullable<z.ZodString>;
57
60
  seat: z.ZodNullable<z.ZodNumber>;
58
61
  scanned: z.ZodBoolean;
59
62
  scannedAt: z.ZodNullable<z.ZodDate>;
@@ -63,6 +66,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
63
66
  }, "strip", z.ZodTypeAny, {
64
67
  id: string;
65
68
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
69
+ phoneNumber: string;
66
70
  fullName: string;
67
71
  mail: string;
68
72
  eventId: string;
@@ -70,12 +74,15 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
70
74
  seat: number | null;
71
75
  created_at: Date;
72
76
  updated_at: Date;
77
+ instagrams: string[];
78
+ whoToWatch: string | null;
73
79
  scanned: boolean;
74
80
  scannedAt: Date | null;
75
81
  ticketGroupId: string | null;
76
82
  }, {
77
83
  id: string;
78
84
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
85
+ phoneNumber: string;
79
86
  fullName: string;
80
87
  mail: string;
81
88
  eventId: string;
@@ -83,6 +90,8 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
83
90
  seat: number | null;
84
91
  created_at: Date;
85
92
  updated_at: Date;
93
+ instagrams: string[];
94
+ whoToWatch: string | null;
86
95
  scanned: boolean;
87
96
  scannedAt: Date | null;
88
97
  ticketGroupId: string | null;
@@ -168,6 +177,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
168
177
  tickets: {
169
178
  id: string;
170
179
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
180
+ phoneNumber: string;
171
181
  fullName: string;
172
182
  mail: string;
173
183
  eventId: string;
@@ -175,6 +185,8 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
175
185
  seat: number | null;
176
186
  created_at: Date;
177
187
  updated_at: Date;
188
+ instagrams: string[];
189
+ whoToWatch: string | null;
178
190
  scanned: boolean;
179
191
  scannedAt: Date | null;
180
192
  ticketGroupId: string | null;
@@ -208,6 +220,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
208
220
  tickets: {
209
221
  id: string;
210
222
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
223
+ phoneNumber: string;
211
224
  fullName: string;
212
225
  mail: string;
213
226
  eventId: string;
@@ -215,6 +228,8 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
215
228
  seat: number | null;
216
229
  created_at: Date;
217
230
  updated_at: Date;
231
+ instagrams: string[];
232
+ whoToWatch: string | null;
218
233
  scanned: boolean;
219
234
  scannedAt: Date | null;
220
235
  ticketGroupId: string | null;
@@ -243,6 +258,9 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
243
258
  fullName: z.ZodString;
244
259
  mail: z.ZodString;
245
260
  dni: z.ZodString;
261
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
262
+ instagrams: z.ZodArray<z.ZodString, "many">;
263
+ whoToWatch: z.ZodNullable<z.ZodString>;
246
264
  seat: z.ZodNullable<z.ZodNumber>;
247
265
  scanned: z.ZodBoolean;
248
266
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -252,6 +270,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
252
270
  }, z.UnknownKeysParam, z.ZodTypeAny, {
253
271
  id: string;
254
272
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
273
+ phoneNumber: string;
255
274
  fullName: string;
256
275
  mail: string;
257
276
  eventId: string;
@@ -259,12 +278,15 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
259
278
  seat: number | null;
260
279
  created_at: string;
261
280
  updated_at: string;
281
+ instagrams: string[];
282
+ whoToWatch: string | null;
262
283
  scanned: boolean;
263
284
  scannedAt: string | null;
264
285
  ticketGroupId: string | null;
265
286
  }, {
266
287
  id: string;
267
288
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
289
+ phoneNumber: string;
268
290
  fullName: string;
269
291
  mail: string;
270
292
  eventId: string;
@@ -272,6 +294,8 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
272
294
  seat: number | null;
273
295
  created_at: string;
274
296
  updated_at: string;
297
+ instagrams: string[];
298
+ whoToWatch: string | null;
275
299
  scanned: boolean;
276
300
  scannedAt: string | null;
277
301
  ticketGroupId: string | null;
@@ -357,6 +381,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
357
381
  tickets: {
358
382
  id: string;
359
383
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
384
+ phoneNumber: string;
360
385
  fullName: string;
361
386
  mail: string;
362
387
  eventId: string;
@@ -364,6 +389,8 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
364
389
  seat: number | null;
365
390
  created_at: string;
366
391
  updated_at: string;
392
+ instagrams: string[];
393
+ whoToWatch: string | null;
367
394
  scanned: boolean;
368
395
  scannedAt: string | null;
369
396
  ticketGroupId: string | null;
@@ -397,6 +424,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
397
424
  tickets: {
398
425
  id: string;
399
426
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
427
+ phoneNumber: string;
400
428
  fullName: string;
401
429
  mail: string;
402
430
  eventId: string;
@@ -404,6 +432,8 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
404
432
  seat: number | null;
405
433
  created_at: string;
406
434
  updated_at: string;
435
+ instagrams: string[];
436
+ whoToWatch: string | null;
407
437
  scanned: boolean;
408
438
  scannedAt: string | null;
409
439
  ticketGroupId: string | null;