expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.9 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.11

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 (53) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +10 -5
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
  3. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
  4. package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
  5. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
  6. package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
  7. package/dist/src/mi-expo/dto/update-me.dto.d.ts +5 -5
  8. package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
  9. package/dist/src/production/dto/get-all-production.dto.d.ts +12 -12
  10. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +12 -12
  11. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +8 -8
  12. package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
  13. package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
  14. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
  15. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
  16. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
  17. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
  18. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
  19. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
  20. package/dist/src/profile/dto/profile.dto.d.ts +2 -2
  21. package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
  22. package/dist/src/schema/profile.schema.d.ts +2 -2
  23. package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
  24. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
  25. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +9 -2
  26. package/dist/src/ticket/dto/create-ticket.dto.d.ts +9 -2
  27. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
  28. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
  29. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +22 -12
  30. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
  31. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
  32. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
  33. package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
  34. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
  35. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
  36. package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
  37. package/dist/src/ticket/dto/ticket.dto.js +1 -0
  38. package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
  39. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +17 -7
  40. package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -6
  41. package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -6
  42. package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -6
  43. package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -1
  44. package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +8 -8
  45. package/dist/types/prisma-schema/edge.js +4 -3
  46. package/dist/types/prisma-schema/index-browser.js +1 -0
  47. package/dist/types/prisma-schema/index.d.ts +496 -33
  48. package/dist/types/prisma-schema/index.js +4 -3
  49. package/dist/types/prisma-schema/package.json +1 -1
  50. package/dist/types/prisma-schema/schema.prisma +7 -1
  51. package/dist/types/prisma-schema/wasm.js +1 -0
  52. package/dist/types/schema.d.ts +17 -4
  53. package/package.json +2 -1
@@ -109,6 +109,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
109
109
  dni: string | null;
110
110
  created_at: Date;
111
111
  updated_at: Date;
112
+ referralCode: string;
112
113
  shortId: number;
113
114
  firstTimeMiExpo: boolean;
114
115
  isPhoneVerified: boolean;
@@ -121,7 +122,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
121
122
  residenceLocationId: string | null;
122
123
  isInTrash: boolean;
123
124
  movedToTrashDate: Date | null;
124
- referralCode: string;
125
125
  birthLocation: {
126
126
  latitude: number;
127
127
  longitude: number;
@@ -146,6 +146,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
146
146
  dni: string | null;
147
147
  created_at: Date;
148
148
  updated_at: Date;
149
+ referralCode: string;
149
150
  shortId: number;
150
151
  firstTimeMiExpo: boolean;
151
152
  isPhoneVerified: boolean;
@@ -158,7 +159,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
158
159
  residenceLocationId: string | null;
159
160
  isInTrash: boolean;
160
161
  movedToTrashDate: Date | null;
161
- referralCode: string;
162
162
  birthLocation: {
163
163
  latitude: number;
164
164
  longitude: number;
@@ -187,6 +187,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
187
187
  dni: string | null;
188
188
  created_at: Date;
189
189
  updated_at: Date;
190
+ referralCode: string;
190
191
  shortId: number;
191
192
  firstTimeMiExpo: boolean;
192
193
  isPhoneVerified: boolean;
@@ -199,7 +200,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
199
200
  residenceLocationId: string | null;
200
201
  isInTrash: boolean;
201
202
  movedToTrashDate: Date | null;
202
- referralCode: string;
203
203
  birthLocation: {
204
204
  latitude: number;
205
205
  longitude: number;
@@ -227,6 +227,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
227
227
  dni: string | null;
228
228
  created_at: Date;
229
229
  updated_at: Date;
230
+ referralCode: string;
230
231
  shortId: number;
231
232
  firstTimeMiExpo: boolean;
232
233
  isPhoneVerified: boolean;
@@ -239,7 +240,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
239
240
  residenceLocationId: string | null;
240
241
  isInTrash: boolean;
241
242
  movedToTrashDate: Date | null;
242
- referralCode: string;
243
243
  birthLocation: {
244
244
  latitude: number;
245
245
  longitude: number;
@@ -335,6 +335,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
335
335
  dni: string | null;
336
336
  created_at: string;
337
337
  updated_at: string;
338
+ referralCode: string;
338
339
  shortId: number;
339
340
  firstTimeMiExpo: boolean;
340
341
  isPhoneVerified: boolean;
@@ -347,7 +348,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
347
348
  residenceLocationId: string | null;
348
349
  isInTrash: boolean;
349
350
  movedToTrashDate: string | null;
350
- referralCode: string;
351
351
  birthLocation: {
352
352
  latitude: number;
353
353
  longitude: number;
@@ -372,6 +372,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
372
372
  dni: string | null;
373
373
  created_at: string;
374
374
  updated_at: string;
375
+ referralCode: string;
375
376
  shortId: number;
376
377
  firstTimeMiExpo: boolean;
377
378
  isPhoneVerified: boolean;
@@ -384,7 +385,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
384
385
  residenceLocationId: string | null;
385
386
  isInTrash: boolean;
386
387
  movedToTrashDate: string | null;
387
- referralCode: string;
388
388
  birthLocation: {
389
389
  latitude: number;
390
390
  longitude: number;
@@ -413,6 +413,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
413
413
  dni: string | null;
414
414
  created_at: string;
415
415
  updated_at: string;
416
+ referralCode: string;
416
417
  shortId: number;
417
418
  firstTimeMiExpo: boolean;
418
419
  isPhoneVerified: boolean;
@@ -425,7 +426,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
425
426
  residenceLocationId: string | null;
426
427
  isInTrash: boolean;
427
428
  movedToTrashDate: string | null;
428
- referralCode: string;
429
429
  birthLocation: {
430
430
  latitude: number;
431
431
  longitude: number;
@@ -453,6 +453,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
453
453
  dni: string | null;
454
454
  created_at: string;
455
455
  updated_at: string;
456
+ referralCode: string;
456
457
  shortId: number;
457
458
  firstTimeMiExpo: boolean;
458
459
  isPhoneVerified: boolean;
@@ -465,7 +466,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
465
466
  residenceLocationId: string | null;
466
467
  isInTrash: boolean;
467
468
  movedToTrashDate: string | null;
468
- referralCode: string;
469
469
  birthLocation: {
470
470
  latitude: number;
471
471
  longitude: number;
@@ -52,6 +52,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
52
52
  dni: string | null;
53
53
  created_at: Date;
54
54
  updated_at: Date;
55
+ referralCode: string;
55
56
  shortId: number;
56
57
  firstTimeMiExpo: boolean;
57
58
  isPhoneVerified: boolean;
@@ -64,7 +65,6 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
64
65
  residenceLocationId: string | null;
65
66
  isInTrash: boolean;
66
67
  movedToTrashDate: Date | null;
67
- referralCode: string;
68
68
  }, {
69
69
  id: string;
70
70
  username: string | null;
@@ -77,6 +77,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
77
77
  dni: string | null;
78
78
  created_at: Date;
79
79
  updated_at: Date;
80
+ referralCode: string;
80
81
  shortId: number;
81
82
  firstTimeMiExpo: boolean;
82
83
  isPhoneVerified: boolean;
@@ -89,7 +90,6 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
89
90
  residenceLocationId: string | null;
90
91
  isInTrash: boolean;
91
92
  movedToTrashDate: Date | null;
92
- referralCode: string;
93
93
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
94
94
  }>>;
95
95
  }>, "strip", z.ZodTypeAny, {
@@ -111,6 +111,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
111
111
  dni: string | null;
112
112
  created_at: Date;
113
113
  updated_at: Date;
114
+ referralCode: string;
114
115
  shortId: number;
115
116
  firstTimeMiExpo: boolean;
116
117
  isPhoneVerified: boolean;
@@ -123,7 +124,6 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
123
124
  residenceLocationId: string | null;
124
125
  isInTrash: boolean;
125
126
  movedToTrashDate: Date | null;
126
- referralCode: string;
127
127
  } | null;
128
128
  }, {
129
129
  id: string;
@@ -143,6 +143,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
143
143
  dni: string | null;
144
144
  created_at: Date;
145
145
  updated_at: Date;
146
+ referralCode: string;
146
147
  shortId: number;
147
148
  firstTimeMiExpo: boolean;
148
149
  isPhoneVerified: boolean;
@@ -155,7 +156,6 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
155
156
  residenceLocationId: string | null;
156
157
  isInTrash: boolean;
157
158
  movedToTrashDate: Date | null;
158
- referralCode: string;
159
159
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
160
160
  } | null;
161
161
  }>, "many">;
@@ -179,6 +179,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
179
179
  dni: string | null;
180
180
  created_at: Date;
181
181
  updated_at: Date;
182
+ referralCode: string;
182
183
  shortId: number;
183
184
  firstTimeMiExpo: boolean;
184
185
  isPhoneVerified: boolean;
@@ -191,7 +192,6 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
191
192
  residenceLocationId: string | null;
192
193
  isInTrash: boolean;
193
194
  movedToTrashDate: Date | null;
194
- referralCode: string;
195
195
  } | null;
196
196
  }[];
197
197
  }, {
@@ -213,6 +213,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
213
213
  dni: string | null;
214
214
  created_at: Date;
215
215
  updated_at: Date;
216
+ referralCode: string;
216
217
  shortId: number;
217
218
  firstTimeMiExpo: boolean;
218
219
  isPhoneVerified: boolean;
@@ -225,7 +226,6 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
225
226
  residenceLocationId: string | null;
226
227
  isInTrash: boolean;
227
228
  movedToTrashDate: Date | null;
228
- referralCode: string;
229
229
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
230
230
  } | null;
231
231
  }[];
@@ -282,6 +282,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
282
282
  dni: string | null;
283
283
  created_at: string;
284
284
  updated_at: string;
285
+ referralCode: string;
285
286
  shortId: number;
286
287
  firstTimeMiExpo: boolean;
287
288
  isPhoneVerified: boolean;
@@ -294,7 +295,6 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
294
295
  residenceLocationId: string | null;
295
296
  isInTrash: boolean;
296
297
  movedToTrashDate: string | null;
297
- referralCode: string;
298
298
  }, {
299
299
  id: string;
300
300
  username: string | null;
@@ -307,6 +307,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
307
307
  dni: string | null;
308
308
  created_at: string;
309
309
  updated_at: string;
310
+ referralCode: string;
310
311
  shortId: number;
311
312
  firstTimeMiExpo: boolean;
312
313
  isPhoneVerified: boolean;
@@ -319,7 +320,6 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
319
320
  residenceLocationId: string | null;
320
321
  isInTrash: boolean;
321
322
  movedToTrashDate: string | null;
322
- referralCode: string;
323
323
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
324
324
  }>>;
325
325
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -341,6 +341,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
341
341
  dni: string | null;
342
342
  created_at: string;
343
343
  updated_at: string;
344
+ referralCode: string;
344
345
  shortId: number;
345
346
  firstTimeMiExpo: boolean;
346
347
  isPhoneVerified: boolean;
@@ -353,7 +354,6 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
353
354
  residenceLocationId: string | null;
354
355
  isInTrash: boolean;
355
356
  movedToTrashDate: string | null;
356
- referralCode: string;
357
357
  } | null;
358
358
  }, {
359
359
  id: string;
@@ -373,6 +373,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
373
373
  dni: string | null;
374
374
  created_at: string;
375
375
  updated_at: string;
376
+ referralCode: string;
376
377
  shortId: number;
377
378
  firstTimeMiExpo: boolean;
378
379
  isPhoneVerified: boolean;
@@ -385,7 +386,6 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
385
386
  residenceLocationId: string | null;
386
387
  isInTrash: boolean;
387
388
  movedToTrashDate: string | null;
388
- referralCode: string;
389
389
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
390
390
  } | null;
391
391
  }>, "many">;
@@ -409,6 +409,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
409
409
  dni: string | null;
410
410
  created_at: string;
411
411
  updated_at: string;
412
+ referralCode: string;
412
413
  shortId: number;
413
414
  firstTimeMiExpo: boolean;
414
415
  isPhoneVerified: boolean;
@@ -421,7 +422,6 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
421
422
  residenceLocationId: string | null;
422
423
  isInTrash: boolean;
423
424
  movedToTrashDate: string | null;
424
- referralCode: string;
425
425
  } | null;
426
426
  }[];
427
427
  }, {
@@ -443,6 +443,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
443
443
  dni: string | null;
444
444
  created_at: string;
445
445
  updated_at: string;
446
+ referralCode: string;
446
447
  shortId: number;
447
448
  firstTimeMiExpo: boolean;
448
449
  isPhoneVerified: boolean;
@@ -455,7 +456,6 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
455
456
  residenceLocationId: string | null;
456
457
  isInTrash: boolean;
457
458
  movedToTrashDate: string | null;
458
- referralCode: string;
459
459
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
460
460
  } | null;
461
461
  }[];
@@ -76,6 +76,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
76
76
  dni: string | null;
77
77
  created_at: Date;
78
78
  updated_at: Date;
79
+ referralCode: string;
79
80
  shortId: number;
80
81
  firstTimeMiExpo: boolean;
81
82
  isPhoneVerified: boolean;
@@ -88,7 +89,6 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
88
89
  residenceLocationId: string | null;
89
90
  isInTrash: boolean;
90
91
  movedToTrashDate: Date | null;
91
- referralCode: string;
92
92
  }, {
93
93
  id: string;
94
94
  username: string | null;
@@ -101,6 +101,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
101
101
  dni: string | null;
102
102
  created_at: Date;
103
103
  updated_at: Date;
104
+ referralCode: string;
104
105
  shortId: number;
105
106
  firstTimeMiExpo: boolean;
106
107
  isPhoneVerified: boolean;
@@ -113,7 +114,6 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
113
114
  residenceLocationId: string | null;
114
115
  isInTrash: boolean;
115
116
  movedToTrashDate: Date | null;
116
- referralCode: string;
117
117
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
118
118
  }>;
119
119
  }>, "strip", z.ZodTypeAny, {
@@ -130,6 +130,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
130
130
  dni: string | null;
131
131
  created_at: Date;
132
132
  updated_at: Date;
133
+ referralCode: string;
133
134
  shortId: number;
134
135
  firstTimeMiExpo: boolean;
135
136
  isPhoneVerified: boolean;
@@ -142,7 +143,6 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
142
143
  residenceLocationId: string | null;
143
144
  isInTrash: boolean;
144
145
  movedToTrashDate: Date | null;
145
- referralCode: string;
146
146
  };
147
147
  production: {
148
148
  id: string;
@@ -170,6 +170,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
170
170
  dni: string | null;
171
171
  created_at: Date;
172
172
  updated_at: Date;
173
+ referralCode: string;
173
174
  shortId: number;
174
175
  firstTimeMiExpo: boolean;
175
176
  isPhoneVerified: boolean;
@@ -182,7 +183,6 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
182
183
  residenceLocationId: string | null;
183
184
  isInTrash: boolean;
184
185
  movedToTrashDate: Date | null;
185
- referralCode: string;
186
186
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
187
187
  };
188
188
  production: {
@@ -214,6 +214,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
214
214
  dni: string | null;
215
215
  created_at: Date;
216
216
  updated_at: Date;
217
+ referralCode: string;
217
218
  shortId: number;
218
219
  firstTimeMiExpo: boolean;
219
220
  isPhoneVerified: boolean;
@@ -226,7 +227,6 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
226
227
  residenceLocationId: string | null;
227
228
  isInTrash: boolean;
228
229
  movedToTrashDate: Date | null;
229
- referralCode: string;
230
230
  };
231
231
  production: {
232
232
  id: string;
@@ -256,6 +256,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
256
256
  dni: string | null;
257
257
  created_at: Date;
258
258
  updated_at: Date;
259
+ referralCode: string;
259
260
  shortId: number;
260
261
  firstTimeMiExpo: boolean;
261
262
  isPhoneVerified: boolean;
@@ -268,7 +269,6 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
268
269
  residenceLocationId: string | null;
269
270
  isInTrash: boolean;
270
271
  movedToTrashDate: Date | null;
271
- referralCode: string;
272
272
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
273
273
  };
274
274
  production: {
@@ -362,6 +362,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
362
362
  dni: string | null;
363
363
  created_at: string;
364
364
  updated_at: string;
365
+ referralCode: string;
365
366
  shortId: number;
366
367
  firstTimeMiExpo: boolean;
367
368
  isPhoneVerified: boolean;
@@ -374,7 +375,6 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
374
375
  residenceLocationId: string | null;
375
376
  isInTrash: boolean;
376
377
  movedToTrashDate: string | null;
377
- referralCode: string;
378
378
  }, {
379
379
  id: string;
380
380
  username: string | null;
@@ -387,6 +387,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
387
387
  dni: string | null;
388
388
  created_at: string;
389
389
  updated_at: string;
390
+ referralCode: string;
390
391
  shortId: number;
391
392
  firstTimeMiExpo: boolean;
392
393
  isPhoneVerified: boolean;
@@ -399,7 +400,6 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
399
400
  residenceLocationId: string | null;
400
401
  isInTrash: boolean;
401
402
  movedToTrashDate: string | null;
402
- referralCode: string;
403
403
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
404
404
  }>;
405
405
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -416,6 +416,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
416
416
  dni: string | null;
417
417
  created_at: string;
418
418
  updated_at: string;
419
+ referralCode: string;
419
420
  shortId: number;
420
421
  firstTimeMiExpo: boolean;
421
422
  isPhoneVerified: boolean;
@@ -428,7 +429,6 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
428
429
  residenceLocationId: string | null;
429
430
  isInTrash: boolean;
430
431
  movedToTrashDate: string | null;
431
- referralCode: string;
432
432
  };
433
433
  production: {
434
434
  id: string;
@@ -456,6 +456,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
456
456
  dni: string | null;
457
457
  created_at: string;
458
458
  updated_at: string;
459
+ referralCode: string;
459
460
  shortId: number;
460
461
  firstTimeMiExpo: boolean;
461
462
  isPhoneVerified: boolean;
@@ -468,7 +469,6 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
468
469
  residenceLocationId: string | null;
469
470
  isInTrash: boolean;
470
471
  movedToTrashDate: string | null;
471
- referralCode: string;
472
472
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
473
473
  };
474
474
  production: {
@@ -500,6 +500,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
500
500
  dni: string | null;
501
501
  created_at: string;
502
502
  updated_at: string;
503
+ referralCode: string;
503
504
  shortId: number;
504
505
  firstTimeMiExpo: boolean;
505
506
  isPhoneVerified: boolean;
@@ -512,7 +513,6 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
512
513
  residenceLocationId: string | null;
513
514
  isInTrash: boolean;
514
515
  movedToTrashDate: string | null;
515
- referralCode: string;
516
516
  };
517
517
  production: {
518
518
  id: string;
@@ -542,6 +542,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
542
542
  dni: string | null;
543
543
  created_at: string;
544
544
  updated_at: string;
545
+ referralCode: string;
545
546
  shortId: number;
546
547
  firstTimeMiExpo: boolean;
547
548
  isPhoneVerified: boolean;
@@ -554,7 +555,6 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
554
555
  residenceLocationId: string | null;
555
556
  isInTrash: boolean;
556
557
  movedToTrashDate: string | null;
557
- referralCode: string;
558
558
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
559
559
  };
560
560
  production: {
@@ -74,6 +74,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
74
74
  dni: string | null;
75
75
  created_at: Date;
76
76
  updated_at: Date;
77
+ referralCode: string;
77
78
  shortId: number;
78
79
  firstTimeMiExpo: boolean;
79
80
  isPhoneVerified: boolean;
@@ -86,7 +87,6 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
86
87
  residenceLocationId: string | null;
87
88
  isInTrash: boolean;
88
89
  movedToTrashDate: Date | null;
89
- referralCode: string;
90
90
  }, {
91
91
  id: string;
92
92
  username: string | null;
@@ -99,6 +99,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
99
99
  dni: string | null;
100
100
  created_at: Date;
101
101
  updated_at: Date;
102
+ referralCode: string;
102
103
  shortId: number;
103
104
  firstTimeMiExpo: boolean;
104
105
  isPhoneVerified: boolean;
@@ -111,7 +112,6 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
111
112
  residenceLocationId: string | null;
112
113
  isInTrash: boolean;
113
114
  movedToTrashDate: Date | null;
114
- referralCode: string;
115
115
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
116
116
  }>;
117
117
  }>, "strip", import("zod").ZodTypeAny, {
@@ -128,6 +128,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
128
128
  dni: string | null;
129
129
  created_at: Date;
130
130
  updated_at: Date;
131
+ referralCode: string;
131
132
  shortId: number;
132
133
  firstTimeMiExpo: boolean;
133
134
  isPhoneVerified: boolean;
@@ -140,7 +141,6 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
140
141
  residenceLocationId: string | null;
141
142
  isInTrash: boolean;
142
143
  movedToTrashDate: Date | null;
143
- referralCode: string;
144
144
  };
145
145
  production: {
146
146
  id: string;
@@ -168,6 +168,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
168
168
  dni: string | null;
169
169
  created_at: Date;
170
170
  updated_at: Date;
171
+ referralCode: string;
171
172
  shortId: number;
172
173
  firstTimeMiExpo: boolean;
173
174
  isPhoneVerified: boolean;
@@ -180,7 +181,6 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
180
181
  residenceLocationId: string | null;
181
182
  isInTrash: boolean;
182
183
  movedToTrashDate: Date | null;
183
- referralCode: string;
184
184
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
185
185
  };
186
186
  production: {
@@ -272,6 +272,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
272
272
  dni: string | null;
273
273
  created_at: string;
274
274
  updated_at: string;
275
+ referralCode: string;
275
276
  shortId: number;
276
277
  firstTimeMiExpo: boolean;
277
278
  isPhoneVerified: boolean;
@@ -284,7 +285,6 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
284
285
  residenceLocationId: string | null;
285
286
  isInTrash: boolean;
286
287
  movedToTrashDate: string | null;
287
- referralCode: string;
288
288
  }, {
289
289
  id: string;
290
290
  username: string | null;
@@ -297,6 +297,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
297
297
  dni: string | null;
298
298
  created_at: string;
299
299
  updated_at: string;
300
+ referralCode: string;
300
301
  shortId: number;
301
302
  firstTimeMiExpo: boolean;
302
303
  isPhoneVerified: boolean;
@@ -309,7 +310,6 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
309
310
  residenceLocationId: string | null;
310
311
  isInTrash: boolean;
311
312
  movedToTrashDate: string | null;
312
- referralCode: string;
313
313
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
314
314
  }>;
315
315
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
@@ -326,6 +326,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
326
326
  dni: string | null;
327
327
  created_at: string;
328
328
  updated_at: string;
329
+ referralCode: string;
329
330
  shortId: number;
330
331
  firstTimeMiExpo: boolean;
331
332
  isPhoneVerified: boolean;
@@ -338,7 +339,6 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
338
339
  residenceLocationId: string | null;
339
340
  isInTrash: boolean;
340
341
  movedToTrashDate: string | null;
341
- referralCode: string;
342
342
  };
343
343
  production: {
344
344
  id: string;
@@ -366,6 +366,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
366
366
  dni: string | null;
367
367
  created_at: string;
368
368
  updated_at: string;
369
+ referralCode: string;
369
370
  shortId: number;
370
371
  firstTimeMiExpo: boolean;
371
372
  isPhoneVerified: boolean;
@@ -378,7 +379,6 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
378
379
  residenceLocationId: string | null;
379
380
  isInTrash: boolean;
380
381
  movedToTrashDate: string | null;
381
- referralCode: string;
382
382
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
383
383
  };
384
384
  production: {
@@ -43,6 +43,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
43
43
  dni: string | null;
44
44
  created_at: Date;
45
45
  updated_at: Date;
46
+ referralCode: string;
46
47
  shortId: number;
47
48
  firstTimeMiExpo: boolean;
48
49
  isPhoneVerified: boolean;
@@ -55,7 +56,6 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
55
56
  residenceLocationId: string | null;
56
57
  isInTrash: boolean;
57
58
  movedToTrashDate: Date | null;
58
- referralCode: string;
59
59
  }, {
60
60
  id: string;
61
61
  username: string | null;
@@ -68,6 +68,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
68
68
  dni: string | null;
69
69
  created_at: Date;
70
70
  updated_at: Date;
71
+ referralCode: string;
71
72
  shortId: number;
72
73
  firstTimeMiExpo: boolean;
73
74
  isPhoneVerified: boolean;
@@ -80,7 +81,6 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
80
81
  residenceLocationId: string | null;
81
82
  isInTrash: boolean;
82
83
  movedToTrashDate: Date | null;
83
- referralCode: string;
84
84
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
85
85
  }>;
86
86
  declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -128,6 +128,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
128
128
  dni: string | null;
129
129
  created_at: string;
130
130
  updated_at: string;
131
+ referralCode: string;
131
132
  shortId: number;
132
133
  firstTimeMiExpo: boolean;
133
134
  isPhoneVerified: boolean;
@@ -140,7 +141,6 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
140
141
  residenceLocationId: string | null;
141
142
  isInTrash: boolean;
142
143
  movedToTrashDate: string | null;
143
- referralCode: string;
144
144
  }, {
145
145
  id: string;
146
146
  username: string | null;
@@ -153,6 +153,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
153
153
  dni: string | null;
154
154
  created_at: string;
155
155
  updated_at: string;
156
+ referralCode: string;
156
157
  shortId: number;
157
158
  firstTimeMiExpo: boolean;
158
159
  isPhoneVerified: boolean;
@@ -165,7 +166,6 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
165
166
  residenceLocationId: string | null;
166
167
  isInTrash: boolean;
167
168
  movedToTrashDate: string | null;
168
- referralCode: string;
169
169
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
170
170
  }>>;
171
171
  export declare class DeleteProfileResponseDto extends DeleteProfileResponseDto_base {