expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.1 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.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.
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 +0 -20
  9. package/dist/src/i18n/es.d.ts +5 -19
  10. package/dist/src/i18n/es.js +5 -19
  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-many-ticket.dto.d.ts +688 -0
  33. package/dist/src/ticket/dto/create-many-ticket.dto.js +57 -0
  34. package/dist/src/ticket/dto/create-ticket.dto.d.ts +1 -25
  35. package/dist/src/ticket/dto/create-ticket.dto.js +0 -2
  36. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -12
  37. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -20
  38. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +26 -46
  39. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +26 -46
  40. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +26 -46
  41. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -20
  42. package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -12
  43. package/dist/src/ticket/dto/ticket.dto.d.ts +0 -12
  44. package/dist/src/ticket/dto/ticket.dto.js +0 -2
  45. package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -12
  46. package/dist/types/prisma-schema/edge.js +5 -7
  47. package/dist/types/prisma-schema/index-browser.js +2 -4
  48. package/dist/types/prisma-schema/index.d.ts +3 -131
  49. package/dist/types/prisma-schema/index.js +5 -7
  50. package/dist/types/prisma-schema/package.json +1 -1
  51. package/dist/types/prisma-schema/schema.prisma +1 -4
  52. package/dist/types/prisma-schema/wasm.js +2 -4
  53. package/dist/types/schema.d.ts +116 -100
  54. package/package.json +2 -2
  55. package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
  56. package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -29,8 +29,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
29
29
  USER: "USER";
30
30
  ADMIN: "ADMIN";
31
31
  FORM: "FORM";
32
- MI_EXPO: "MI_EXPO";
33
32
  TICKETS: "TICKETS";
33
+ MI_EXPO: "MI_EXPO";
34
34
  }>>;
35
35
  firstTimeMiExpo: z.ZodBoolean;
36
36
  username: z.ZodNullable<z.ZodString>;
@@ -57,13 +57,12 @@ 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" | "MI_EXPO" | "TICKETS";
60
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
67
66
  created_at: Date;
68
67
  updated_at: Date;
69
68
  shortId: number;
@@ -73,6 +72,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
73
72
  gender: string | null;
74
73
  birthDate: Date | null;
75
74
  instagram: string | null;
75
+ dni: string | null;
76
76
  alternativeNames: string[];
77
77
  birthLocationId: string | null;
78
78
  residenceLocationId: string | null;
@@ -87,7 +87,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
87
87
  fullName: string;
88
88
  profilePictureUrl: string | null;
89
89
  mail: string | null;
90
- dni: string | null;
91
90
  created_at: Date;
92
91
  updated_at: Date;
93
92
  shortId: number;
@@ -97,25 +96,25 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
97
96
  gender: string | null;
98
97
  birthDate: string | null;
99
98
  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" | "MI_EXPO" | "TICKETS" | undefined;
105
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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" | "MI_EXPO" | "TICKETS";
112
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
119
118
  created_at: Date;
120
119
  updated_at: Date;
121
120
  shortId: number;
@@ -125,6 +124,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
125
124
  gender: string | null;
126
125
  birthDate: Date | null;
127
126
  instagram: string | null;
127
+ dni: string | null;
128
128
  alternativeNames: string[];
129
129
  birthLocationId: string | null;
130
130
  residenceLocationId: string | null;
@@ -141,7 +141,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
141
141
  fullName: string;
142
142
  profilePictureUrl: string | null;
143
143
  mail: string | null;
144
- dni: string | null;
145
144
  created_at: Date;
146
145
  updated_at: Date;
147
146
  shortId: number;
@@ -151,12 +150,13 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
151
150
  gender: string | null;
152
151
  birthDate: string | null;
153
152
  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" | "MI_EXPO" | "TICKETS" | undefined;
159
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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
- MI_EXPO: "MI_EXPO";
171
170
  TICKETS: "TICKETS";
171
+ MI_EXPO: "MI_EXPO";
172
172
  }>>;
173
173
  firstTimeMiExpo: z.ZodBoolean;
174
174
  username: z.ZodNullable<z.ZodString>;
@@ -195,13 +195,12 @@ 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" | "MI_EXPO" | "TICKETS";
198
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
205
204
  created_at: string;
206
205
  updated_at: string;
207
206
  shortId: number;
@@ -211,6 +210,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
211
210
  gender: string | null;
212
211
  birthDate: string | null;
213
212
  instagram: string | null;
213
+ dni: string | null;
214
214
  alternativeNames: string[];
215
215
  birthLocationId: string | null;
216
216
  residenceLocationId: string | null;
@@ -225,7 +225,6 @@ 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;
229
228
  created_at: string;
230
229
  updated_at: string;
231
230
  shortId: number;
@@ -235,25 +234,25 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
235
234
  gender: string | null;
236
235
  birthDate: string | null;
237
236
  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" | "MI_EXPO" | "TICKETS" | undefined;
243
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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" | "MI_EXPO" | "TICKETS";
250
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
257
256
  created_at: string;
258
257
  updated_at: string;
259
258
  shortId: number;
@@ -263,6 +262,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
263
262
  gender: string | null;
264
263
  birthDate: string | null;
265
264
  instagram: string | null;
265
+ dni: string | null;
266
266
  alternativeNames: string[];
267
267
  birthLocationId: string | null;
268
268
  residenceLocationId: string | null;
@@ -279,7 +279,6 @@ 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;
283
282
  created_at: string;
284
283
  updated_at: string;
285
284
  shortId: number;
@@ -289,12 +288,13 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
289
288
  gender: string | null;
290
289
  birthDate: string | null;
291
290
  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" | "MI_EXPO" | "TICKETS" | undefined;
297
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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
- MI_EXPO: "MI_EXPO";
33
32
  TICKETS: "TICKETS";
33
+ MI_EXPO: "MI_EXPO";
34
34
  }>>;
35
35
  firstTimeMiExpo: z.ZodBoolean;
36
36
  username: z.ZodNullable<z.ZodString>;
@@ -57,13 +57,12 @@ 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" | "MI_EXPO" | "TICKETS";
60
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
67
66
  created_at: Date;
68
67
  updated_at: Date;
69
68
  shortId: number;
@@ -73,6 +72,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
73
72
  gender: string | null;
74
73
  birthDate: Date | null;
75
74
  instagram: string | null;
75
+ dni: string | null;
76
76
  alternativeNames: string[];
77
77
  birthLocationId: string | null;
78
78
  residenceLocationId: string | null;
@@ -87,7 +87,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
87
87
  fullName: string;
88
88
  profilePictureUrl: string | null;
89
89
  mail: string | null;
90
- dni: string | null;
91
90
  created_at: Date;
92
91
  updated_at: Date;
93
92
  shortId: number;
@@ -97,25 +96,25 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
97
96
  gender: string | null;
98
97
  birthDate: string | null;
99
98
  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" | "MI_EXPO" | "TICKETS" | undefined;
105
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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" | "MI_EXPO" | "TICKETS";
112
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
119
118
  created_at: Date;
120
119
  updated_at: Date;
121
120
  shortId: number;
@@ -125,6 +124,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
125
124
  gender: string | null;
126
125
  birthDate: Date | null;
127
126
  instagram: string | null;
127
+ dni: string | null;
128
128
  alternativeNames: string[];
129
129
  birthLocationId: string | null;
130
130
  residenceLocationId: string | null;
@@ -141,7 +141,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
141
141
  fullName: string;
142
142
  profilePictureUrl: string | null;
143
143
  mail: string | null;
144
- dni: string | null;
145
144
  created_at: Date;
146
145
  updated_at: Date;
147
146
  shortId: number;
@@ -151,12 +150,13 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
151
150
  gender: string | null;
152
151
  birthDate: string | null;
153
152
  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" | "MI_EXPO" | "TICKETS" | undefined;
159
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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
- MI_EXPO: "MI_EXPO";
171
170
  TICKETS: "TICKETS";
171
+ MI_EXPO: "MI_EXPO";
172
172
  }>>;
173
173
  firstTimeMiExpo: z.ZodBoolean;
174
174
  username: z.ZodNullable<z.ZodString>;
@@ -195,13 +195,12 @@ 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" | "MI_EXPO" | "TICKETS";
198
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
205
204
  created_at: string;
206
205
  updated_at: string;
207
206
  shortId: number;
@@ -211,6 +210,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
211
210
  gender: string | null;
212
211
  birthDate: string | null;
213
212
  instagram: string | null;
213
+ dni: string | null;
214
214
  alternativeNames: string[];
215
215
  birthLocationId: string | null;
216
216
  residenceLocationId: string | null;
@@ -225,7 +225,6 @@ 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;
229
228
  created_at: string;
230
229
  updated_at: string;
231
230
  shortId: number;
@@ -235,25 +234,25 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
235
234
  gender: string | null;
236
235
  birthDate: string | null;
237
236
  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" | "MI_EXPO" | "TICKETS" | undefined;
243
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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" | "MI_EXPO" | "TICKETS";
250
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
257
256
  created_at: string;
258
257
  updated_at: string;
259
258
  shortId: number;
@@ -263,6 +262,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
263
262
  gender: string | null;
264
263
  birthDate: string | null;
265
264
  instagram: string | null;
265
+ dni: string | null;
266
266
  alternativeNames: string[];
267
267
  birthLocationId: string | null;
268
268
  residenceLocationId: string | null;
@@ -279,7 +279,6 @@ 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;
283
282
  created_at: string;
284
283
  updated_at: string;
285
284
  shortId: number;
@@ -289,12 +288,13 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
289
288
  gender: string | null;
290
289
  birthDate: string | null;
291
290
  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" | "MI_EXPO" | "TICKETS" | undefined;
297
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
298
298
  }[];
299
299
  }>>;
300
300
  export declare class MassiveDeallocationResponseDto extends MassiveDeallocationResponseDto_base {