expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.2 → 0.36.0-EXPO-323-Enviar-mail-ticket.1

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 (56) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
  9. package/dist/src/i18n/es.d.ts +19 -5
  10. package/dist/src/i18n/es.js +19 -5
  11. package/dist/src/i18n/es.js.map +1 -1
  12. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  13. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  14. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  15. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  16. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  17. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  18. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
  20. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
  21. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
  22. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  23. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
  24. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
  25. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
  27. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  28. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  29. package/dist/src/schema/profile.schema.d.ts +5 -5
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  32. package/dist/src/ticket/dto/create-ticket.dto.d.ts +25 -1
  33. package/dist/src/ticket/dto/create-ticket.dto.js +2 -0
  34. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
  35. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
  36. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +46 -26
  37. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +46 -26
  38. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +46 -26
  39. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
  40. package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
  41. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  42. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  43. package/dist/src/ticket/dto/ticket.dto.d.ts +12 -0
  44. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  45. package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
  46. package/dist/types/prisma-schema/edge.js +7 -5
  47. package/dist/types/prisma-schema/index-browser.js +4 -2
  48. package/dist/types/prisma-schema/index.d.ts +131 -3
  49. package/dist/types/prisma-schema/index.js +7 -5
  50. package/dist/types/prisma-schema/package.json +1 -1
  51. package/dist/types/prisma-schema/schema.prisma +4 -1
  52. package/dist/types/prisma-schema/wasm.js +4 -2
  53. package/dist/types/schema.d.ts +100 -110
  54. package/package.json +3 -2
  55. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -288
  56. package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -31
@@ -29,8 +29,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
29
29
  USER: "USER";
30
30
  ADMIN: "ADMIN";
31
31
  FORM: "FORM";
32
- TICKETS: "TICKETS";
33
32
  MI_EXPO: "MI_EXPO";
33
+ TICKETS: "TICKETS";
34
34
  }>>;
35
35
  firstTimeMiExpo: z.ZodBoolean;
36
36
  username: z.ZodNullable<z.ZodString>;
@@ -57,12 +57,13 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
57
57
  id: string;
58
58
  username: string | null;
59
59
  password: string | null;
60
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
60
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
61
61
  phoneNumber: string;
62
62
  secondaryPhoneNumber: string | null;
63
63
  fullName: string;
64
64
  profilePictureUrl: string | null;
65
65
  mail: string | null;
66
+ dni: string | null;
66
67
  created_at: Date;
67
68
  updated_at: Date;
68
69
  shortId: number;
@@ -72,7 +73,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
72
73
  gender: string | null;
73
74
  birthDate: Date | null;
74
75
  instagram: string | null;
75
- dni: string | null;
76
76
  alternativeNames: string[];
77
77
  birthLocationId: string | null;
78
78
  residenceLocationId: string | null;
@@ -87,6 +87,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
87
87
  fullName: string;
88
88
  profilePictureUrl: string | null;
89
89
  mail: string | null;
90
+ dni: string | null;
90
91
  created_at: Date;
91
92
  updated_at: Date;
92
93
  shortId: number;
@@ -96,25 +97,25 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
96
97
  gender: string | null;
97
98
  birthDate: string | null;
98
99
  instagram: string | null;
99
- dni: string | null;
100
100
  alternativeNames: string[];
101
101
  birthLocationId: string | null;
102
102
  residenceLocationId: string | null;
103
103
  isInTrash: boolean;
104
104
  movedToTrashDate: Date | null;
105
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
105
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
106
106
  }>, "many">;
107
107
  }, "strip", z.ZodTypeAny, {
108
108
  profiles: {
109
109
  id: string;
110
110
  username: string | null;
111
111
  password: string | null;
112
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
112
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
113
113
  phoneNumber: string;
114
114
  secondaryPhoneNumber: string | null;
115
115
  fullName: string;
116
116
  profilePictureUrl: string | null;
117
117
  mail: string | null;
118
+ dni: string | null;
118
119
  created_at: Date;
119
120
  updated_at: Date;
120
121
  shortId: number;
@@ -124,7 +125,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
124
125
  gender: string | null;
125
126
  birthDate: Date | null;
126
127
  instagram: string | null;
127
- dni: string | null;
128
128
  alternativeNames: string[];
129
129
  birthLocationId: string | null;
130
130
  residenceLocationId: string | null;
@@ -141,6 +141,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
141
141
  fullName: string;
142
142
  profilePictureUrl: string | null;
143
143
  mail: string | null;
144
+ dni: string | null;
144
145
  created_at: Date;
145
146
  updated_at: Date;
146
147
  shortId: number;
@@ -150,13 +151,12 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
150
151
  gender: string | null;
151
152
  birthDate: string | null;
152
153
  instagram: string | null;
153
- dni: string | null;
154
154
  alternativeNames: string[];
155
155
  birthLocationId: string | null;
156
156
  residenceLocationId: string | null;
157
157
  isInTrash: boolean;
158
158
  movedToTrashDate: Date | null;
159
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
159
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
160
160
  }[];
161
161
  }>;
162
162
  declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -167,8 +167,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
167
167
  USER: "USER";
168
168
  ADMIN: "ADMIN";
169
169
  FORM: "FORM";
170
- TICKETS: "TICKETS";
171
170
  MI_EXPO: "MI_EXPO";
171
+ TICKETS: "TICKETS";
172
172
  }>>;
173
173
  firstTimeMiExpo: z.ZodBoolean;
174
174
  username: z.ZodNullable<z.ZodString>;
@@ -195,12 +195,13 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
195
195
  id: string;
196
196
  username: string | null;
197
197
  password: string | null;
198
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
198
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
199
199
  phoneNumber: string;
200
200
  secondaryPhoneNumber: string | null;
201
201
  fullName: string;
202
202
  profilePictureUrl: string | null;
203
203
  mail: string | null;
204
+ dni: string | null;
204
205
  created_at: string;
205
206
  updated_at: string;
206
207
  shortId: number;
@@ -210,7 +211,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
210
211
  gender: string | null;
211
212
  birthDate: string | null;
212
213
  instagram: string | null;
213
- dni: string | null;
214
214
  alternativeNames: string[];
215
215
  birthLocationId: string | null;
216
216
  residenceLocationId: string | null;
@@ -225,6 +225,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
225
225
  fullName: string;
226
226
  profilePictureUrl: string | null;
227
227
  mail: string | null;
228
+ dni: string | null;
228
229
  created_at: string;
229
230
  updated_at: string;
230
231
  shortId: number;
@@ -234,25 +235,25 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
234
235
  gender: string | null;
235
236
  birthDate: string | null;
236
237
  instagram: string | null;
237
- dni: string | null;
238
238
  alternativeNames: string[];
239
239
  birthLocationId: string | null;
240
240
  residenceLocationId: string | null;
241
241
  isInTrash: boolean;
242
242
  movedToTrashDate: string | null;
243
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
243
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
244
244
  }>, "many">;
245
245
  }, z.UnknownKeysParam, z.ZodTypeAny, {
246
246
  profiles: {
247
247
  id: string;
248
248
  username: string | null;
249
249
  password: string | null;
250
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
250
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
251
251
  phoneNumber: string;
252
252
  secondaryPhoneNumber: string | null;
253
253
  fullName: string;
254
254
  profilePictureUrl: string | null;
255
255
  mail: string | null;
256
+ dni: string | null;
256
257
  created_at: string;
257
258
  updated_at: string;
258
259
  shortId: number;
@@ -262,7 +263,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
262
263
  gender: string | null;
263
264
  birthDate: string | null;
264
265
  instagram: string | null;
265
- dni: string | null;
266
266
  alternativeNames: string[];
267
267
  birthLocationId: string | null;
268
268
  residenceLocationId: string | null;
@@ -279,6 +279,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
279
279
  fullName: string;
280
280
  profilePictureUrl: string | null;
281
281
  mail: string | null;
282
+ dni: string | null;
282
283
  created_at: string;
283
284
  updated_at: string;
284
285
  shortId: number;
@@ -288,13 +289,12 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
288
289
  gender: string | null;
289
290
  birthDate: string | null;
290
291
  instagram: string | null;
291
- dni: string | null;
292
292
  alternativeNames: string[];
293
293
  birthLocationId: string | null;
294
294
  residenceLocationId: string | null;
295
295
  isInTrash: boolean;
296
296
  movedToTrashDate: string | null;
297
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
297
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
298
298
  }[];
299
299
  }>>;
300
300
  export declare class MassiveAllocationResponseDto extends MassiveAllocationResponseDto_base {
@@ -29,8 +29,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
29
29
  USER: "USER";
30
30
  ADMIN: "ADMIN";
31
31
  FORM: "FORM";
32
- TICKETS: "TICKETS";
33
32
  MI_EXPO: "MI_EXPO";
33
+ TICKETS: "TICKETS";
34
34
  }>>;
35
35
  firstTimeMiExpo: z.ZodBoolean;
36
36
  username: z.ZodNullable<z.ZodString>;
@@ -57,12 +57,13 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
57
57
  id: string;
58
58
  username: string | null;
59
59
  password: string | null;
60
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
60
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
61
61
  phoneNumber: string;
62
62
  secondaryPhoneNumber: string | null;
63
63
  fullName: string;
64
64
  profilePictureUrl: string | null;
65
65
  mail: string | null;
66
+ dni: string | null;
66
67
  created_at: Date;
67
68
  updated_at: Date;
68
69
  shortId: number;
@@ -72,7 +73,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
72
73
  gender: string | null;
73
74
  birthDate: Date | null;
74
75
  instagram: string | null;
75
- dni: string | null;
76
76
  alternativeNames: string[];
77
77
  birthLocationId: string | null;
78
78
  residenceLocationId: string | null;
@@ -87,6 +87,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
87
87
  fullName: string;
88
88
  profilePictureUrl: string | null;
89
89
  mail: string | null;
90
+ dni: string | null;
90
91
  created_at: Date;
91
92
  updated_at: Date;
92
93
  shortId: number;
@@ -96,25 +97,25 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
96
97
  gender: string | null;
97
98
  birthDate: string | null;
98
99
  instagram: string | null;
99
- dni: string | null;
100
100
  alternativeNames: string[];
101
101
  birthLocationId: string | null;
102
102
  residenceLocationId: string | null;
103
103
  isInTrash: boolean;
104
104
  movedToTrashDate: Date | null;
105
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
105
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
106
106
  }>, "many">;
107
107
  }, "strip", z.ZodTypeAny, {
108
108
  profiles: {
109
109
  id: string;
110
110
  username: string | null;
111
111
  password: string | null;
112
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
112
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
113
113
  phoneNumber: string;
114
114
  secondaryPhoneNumber: string | null;
115
115
  fullName: string;
116
116
  profilePictureUrl: string | null;
117
117
  mail: string | null;
118
+ dni: string | null;
118
119
  created_at: Date;
119
120
  updated_at: Date;
120
121
  shortId: number;
@@ -124,7 +125,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
124
125
  gender: string | null;
125
126
  birthDate: Date | null;
126
127
  instagram: string | null;
127
- dni: string | null;
128
128
  alternativeNames: string[];
129
129
  birthLocationId: string | null;
130
130
  residenceLocationId: string | null;
@@ -141,6 +141,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
141
141
  fullName: string;
142
142
  profilePictureUrl: string | null;
143
143
  mail: string | null;
144
+ dni: string | null;
144
145
  created_at: Date;
145
146
  updated_at: Date;
146
147
  shortId: number;
@@ -150,13 +151,12 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
150
151
  gender: string | null;
151
152
  birthDate: string | null;
152
153
  instagram: string | null;
153
- dni: string | null;
154
154
  alternativeNames: string[];
155
155
  birthLocationId: string | null;
156
156
  residenceLocationId: string | null;
157
157
  isInTrash: boolean;
158
158
  movedToTrashDate: Date | null;
159
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
159
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
160
160
  }[];
161
161
  }>;
162
162
  declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -167,8 +167,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
167
167
  USER: "USER";
168
168
  ADMIN: "ADMIN";
169
169
  FORM: "FORM";
170
- TICKETS: "TICKETS";
171
170
  MI_EXPO: "MI_EXPO";
171
+ TICKETS: "TICKETS";
172
172
  }>>;
173
173
  firstTimeMiExpo: z.ZodBoolean;
174
174
  username: z.ZodNullable<z.ZodString>;
@@ -195,12 +195,13 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
195
195
  id: string;
196
196
  username: string | null;
197
197
  password: string | null;
198
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
198
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
199
199
  phoneNumber: string;
200
200
  secondaryPhoneNumber: string | null;
201
201
  fullName: string;
202
202
  profilePictureUrl: string | null;
203
203
  mail: string | null;
204
+ dni: string | null;
204
205
  created_at: string;
205
206
  updated_at: string;
206
207
  shortId: number;
@@ -210,7 +211,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
210
211
  gender: string | null;
211
212
  birthDate: string | null;
212
213
  instagram: string | null;
213
- dni: string | null;
214
214
  alternativeNames: string[];
215
215
  birthLocationId: string | null;
216
216
  residenceLocationId: string | null;
@@ -225,6 +225,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
225
225
  fullName: string;
226
226
  profilePictureUrl: string | null;
227
227
  mail: string | null;
228
+ dni: string | null;
228
229
  created_at: string;
229
230
  updated_at: string;
230
231
  shortId: number;
@@ -234,25 +235,25 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
234
235
  gender: string | null;
235
236
  birthDate: string | null;
236
237
  instagram: string | null;
237
- dni: string | null;
238
238
  alternativeNames: string[];
239
239
  birthLocationId: string | null;
240
240
  residenceLocationId: string | null;
241
241
  isInTrash: boolean;
242
242
  movedToTrashDate: string | null;
243
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
243
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
244
244
  }>, "many">;
245
245
  }, z.UnknownKeysParam, z.ZodTypeAny, {
246
246
  profiles: {
247
247
  id: string;
248
248
  username: string | null;
249
249
  password: string | null;
250
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
250
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
251
251
  phoneNumber: string;
252
252
  secondaryPhoneNumber: string | null;
253
253
  fullName: string;
254
254
  profilePictureUrl: string | null;
255
255
  mail: string | null;
256
+ dni: string | null;
256
257
  created_at: string;
257
258
  updated_at: string;
258
259
  shortId: number;
@@ -262,7 +263,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
262
263
  gender: string | null;
263
264
  birthDate: string | null;
264
265
  instagram: string | null;
265
- dni: string | null;
266
266
  alternativeNames: string[];
267
267
  birthLocationId: string | null;
268
268
  residenceLocationId: string | null;
@@ -279,6 +279,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
279
279
  fullName: string;
280
280
  profilePictureUrl: string | null;
281
281
  mail: string | null;
282
+ dni: string | null;
282
283
  created_at: string;
283
284
  updated_at: string;
284
285
  shortId: number;
@@ -288,13 +289,12 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
288
289
  gender: string | null;
289
290
  birthDate: string | null;
290
291
  instagram: string | null;
291
- dni: string | null;
292
292
  alternativeNames: string[];
293
293
  birthLocationId: string | null;
294
294
  residenceLocationId: string | null;
295
295
  isInTrash: boolean;
296
296
  movedToTrashDate: string | null;
297
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
297
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
298
298
  }[];
299
299
  }>>;
300
300
  export declare class MassiveDeallocationResponseDto extends MassiveDeallocationResponseDto_base {
@@ -13,9 +13,11 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
13
13
  }>;
14
14
  fullName: import("zod").ZodString;
15
15
  mail: import("zod").ZodString;
16
+ dni: import("zod").ZodString;
17
+ seat: import("zod").ZodNumber;
16
18
  created_at: import("zod").ZodDate;
17
19
  updated_at: import("zod").ZodDate;
18
- }, "type" | "fullName" | "mail" | "eventId" | "status">, {
20
+ }, "type" | "fullName" | "mail" | "eventId" | "status" | "seat" | "dni">, {
19
21
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
20
22
  }>, "strip", import("zod").ZodTypeAny, {
21
23
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -23,6 +25,8 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
23
25
  mail: string;
24
26
  eventId: string;
25
27
  status: "BOOKED" | "PAID" | "FREE";
28
+ seat: number;
29
+ dni: string;
26
30
  profileId?: string | undefined;
27
31
  }, {
28
32
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -30,6 +34,8 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
30
34
  mail: string;
31
35
  eventId: string;
32
36
  status: "BOOKED" | "PAID" | "FREE";
37
+ seat: number;
38
+ dni: string;
33
39
  profileId?: string | undefined;
34
40
  }>;
35
41
  declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -46,6 +52,8 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
46
52
  PAID: "PAID";
47
53
  FREE: "FREE";
48
54
  }>;
55
+ seat: import("zod").ZodNumber;
56
+ dni: import("zod").ZodString;
49
57
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
50
58
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
51
59
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -53,6 +61,8 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
53
61
  mail: string;
54
62
  eventId: string;
55
63
  status: "BOOKED" | "PAID" | "FREE";
64
+ seat: number;
65
+ dni: string;
56
66
  profileId?: string | undefined;
57
67
  }, {
58
68
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -60,6 +70,8 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
60
70
  mail: string;
61
71
  eventId: string;
62
72
  status: "BOOKED" | "PAID" | "FREE";
73
+ seat: number;
74
+ dni: string;
63
75
  profileId?: string | undefined;
64
76
  }>>;
65
77
  export declare class CreateTicketDto extends CreateTicketDto_base {
@@ -79,6 +91,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
79
91
  }>;
80
92
  fullName: import("zod").ZodString;
81
93
  mail: import("zod").ZodString;
94
+ dni: import("zod").ZodString;
95
+ seat: import("zod").ZodNumber;
82
96
  created_at: import("zod").ZodDate;
83
97
  updated_at: import("zod").ZodDate;
84
98
  }, {
@@ -147,6 +161,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
147
161
  mail: string;
148
162
  eventId: string;
149
163
  status: "BOOKED" | "PAID" | "FREE";
164
+ seat: number;
165
+ dni: string;
150
166
  created_at: Date;
151
167
  updated_at: Date;
152
168
  }, {
@@ -171,6 +187,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
171
187
  mail: string;
172
188
  eventId: string;
173
189
  status: "BOOKED" | "PAID" | "FREE";
190
+ seat: number;
191
+ dni: string;
174
192
  created_at: Date;
175
193
  updated_at: Date;
176
194
  }>;
@@ -189,6 +207,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
189
207
  }>;
190
208
  fullName: import("zod").ZodString;
191
209
  mail: import("zod").ZodString;
210
+ dni: import("zod").ZodString;
211
+ seat: import("zod").ZodNumber;
192
212
  created_at: import("zod").ZodString;
193
213
  updated_at: import("zod").ZodString;
194
214
  event: import("zod").ZodObject<{
@@ -256,6 +276,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
256
276
  mail: string;
257
277
  eventId: string;
258
278
  status: "BOOKED" | "PAID" | "FREE";
279
+ seat: number;
280
+ dni: string;
259
281
  created_at: string;
260
282
  updated_at: string;
261
283
  }, {
@@ -280,6 +302,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
280
302
  mail: string;
281
303
  eventId: string;
282
304
  status: "BOOKED" | "PAID" | "FREE";
305
+ seat: number;
306
+ dni: string;
283
307
  created_at: string;
284
308
  updated_at: string;
285
309
  }>>;
@@ -12,6 +12,8 @@ exports.createTicketSchema = ticket_dto_1.ticketSchema
12
12
  status: true,
13
13
  fullName: true,
14
14
  mail: true,
15
+ dni: true,
16
+ seat: true,
15
17
  })
16
18
  .extend({
17
19
  profileId: profile_schema_1.profileSchema.shape.id.optional(),
@@ -13,6 +13,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
13
13
  }>;
14
14
  fullName: import("zod").ZodString;
15
15
  mail: import("zod").ZodString;
16
+ dni: import("zod").ZodString;
17
+ seat: import("zod").ZodNumber;
16
18
  created_at: import("zod").ZodDate;
17
19
  updated_at: import("zod").ZodDate;
18
20
  }, "strip", import("zod").ZodTypeAny, {
@@ -22,6 +24,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
22
24
  mail: string;
23
25
  eventId: string;
24
26
  status: "BOOKED" | "PAID" | "FREE";
27
+ seat: number;
28
+ dni: string;
25
29
  created_at: Date;
26
30
  updated_at: Date;
27
31
  }, {
@@ -31,6 +35,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
31
35
  mail: string;
32
36
  eventId: string;
33
37
  status: "BOOKED" | "PAID" | "FREE";
38
+ seat: number;
39
+ dni: string;
34
40
  created_at: Date;
35
41
  updated_at: Date;
36
42
  }>;
@@ -49,6 +55,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
49
55
  }>;
50
56
  fullName: import("zod").ZodString;
51
57
  mail: import("zod").ZodString;
58
+ dni: import("zod").ZodString;
59
+ seat: import("zod").ZodNumber;
52
60
  created_at: import("zod").ZodString;
53
61
  updated_at: import("zod").ZodString;
54
62
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
@@ -58,6 +66,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
58
66
  mail: string;
59
67
  eventId: string;
60
68
  status: "BOOKED" | "PAID" | "FREE";
69
+ seat: number;
70
+ dni: string;
61
71
  created_at: string;
62
72
  updated_at: string;
63
73
  }, {
@@ -67,6 +77,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
67
77
  mail: string;
68
78
  eventId: string;
69
79
  status: "BOOKED" | "PAID" | "FREE";
80
+ seat: number;
81
+ dni: string;
70
82
  created_at: string;
71
83
  updated_at: string;
72
84
  }>>;
@@ -15,6 +15,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
15
15
  }>;
16
16
  fullName: z.ZodString;
17
17
  mail: z.ZodString;
18
+ dni: z.ZodString;
19
+ seat: z.ZodNumber;
18
20
  created_at: z.ZodDate;
19
21
  updated_at: z.ZodDate;
20
22
  }, {
@@ -53,6 +55,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
53
55
  mail: string;
54
56
  eventId: string;
55
57
  status: "BOOKED" | "PAID" | "FREE";
58
+ seat: number;
59
+ dni: string;
56
60
  created_at: Date;
57
61
  updated_at: Date;
58
62
  }, {
@@ -67,6 +71,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
67
71
  mail: string;
68
72
  eventId: string;
69
73
  status: "BOOKED" | "PAID" | "FREE";
74
+ seat: number;
75
+ dni: string;
70
76
  created_at: Date;
71
77
  updated_at: Date;
72
78
  }>, "many">;
@@ -83,6 +89,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
83
89
  mail: string;
84
90
  eventId: string;
85
91
  status: "BOOKED" | "PAID" | "FREE";
92
+ seat: number;
93
+ dni: string;
86
94
  created_at: Date;
87
95
  updated_at: Date;
88
96
  }[];
@@ -99,6 +107,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
99
107
  mail: string;
100
108
  eventId: string;
101
109
  status: "BOOKED" | "PAID" | "FREE";
110
+ seat: number;
111
+ dni: string;
102
112
  created_at: Date;
103
113
  updated_at: Date;
104
114
  }[];
@@ -119,6 +129,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
119
129
  }>;
120
130
  fullName: z.ZodString;
121
131
  mail: z.ZodString;
132
+ dni: z.ZodString;
133
+ seat: z.ZodNumber;
122
134
  created_at: z.ZodString;
123
135
  updated_at: z.ZodString;
124
136
  event: z.ZodObject<{
@@ -146,6 +158,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
146
158
  mail: string;
147
159
  eventId: string;
148
160
  status: "BOOKED" | "PAID" | "FREE";
161
+ seat: number;
162
+ dni: string;
149
163
  created_at: string;
150
164
  updated_at: string;
151
165
  }, {
@@ -160,6 +174,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
160
174
  mail: string;
161
175
  eventId: string;
162
176
  status: "BOOKED" | "PAID" | "FREE";
177
+ seat: number;
178
+ dni: string;
163
179
  created_at: string;
164
180
  updated_at: string;
165
181
  }>, "many">;
@@ -176,6 +192,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
176
192
  mail: string;
177
193
  eventId: string;
178
194
  status: "BOOKED" | "PAID" | "FREE";
195
+ seat: number;
196
+ dni: string;
179
197
  created_at: string;
180
198
  updated_at: string;
181
199
  }[];
@@ -192,6 +210,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
192
210
  mail: string;
193
211
  eventId: string;
194
212
  status: "BOOKED" | "PAID" | "FREE";
213
+ seat: number;
214
+ dni: string;
195
215
  created_at: string;
196
216
  updated_at: string;
197
217
  }[];