expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.3

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 (51) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +5 -0
  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 +6 -0
  5. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
  6. package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
  7. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
  8. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
  9. package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
  10. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
  11. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
  12. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
  13. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
  14. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
  15. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
  16. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
  17. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
  18. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
  19. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
  20. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
  21. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
  22. package/dist/src/profile/dto/profile.dto.d.ts +3 -0
  23. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
  24. package/dist/src/schema/profile.schema.d.ts +3 -0
  25. package/dist/src/schema/profile.schema.js +1 -0
  26. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
  27. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
  28. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +7 -0
  29. package/dist/src/ticket/dto/create-ticket.dto.d.ts +7 -0
  30. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
  31. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
  32. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
  33. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
  34. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
  35. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
  36. package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
  37. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
  38. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
  39. package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
  40. package/dist/src/ticket/dto/ticket.dto.js +1 -0
  41. package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
  42. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
  43. package/dist/types/prisma-schema/edge.js +6 -3
  44. package/dist/types/prisma-schema/index-browser.js +3 -0
  45. package/dist/types/prisma-schema/index.d.ts +167 -3
  46. package/dist/types/prisma-schema/index.js +6 -3
  47. package/dist/types/prisma-schema/package.json +1 -1
  48. package/dist/types/prisma-schema/schema.prisma +6 -0
  49. package/dist/types/prisma-schema/wasm.js +3 -0
  50. package/dist/types/schema.d.ts +33 -0
  51. package/package.json +1 -1
@@ -32,6 +32,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
32
32
  scanned: z.ZodBoolean;
33
33
  scannedAt: z.ZodNullable<z.ZodDate>;
34
34
  ticketGroupId: z.ZodNullable<z.ZodString>;
35
+ referralCode: z.ZodNullable<z.ZodString>;
35
36
  created_at: z.ZodDate;
36
37
  updated_at: z.ZodDate;
37
38
  }, "strip", z.ZodTypeAny, {
@@ -44,6 +45,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
44
45
  seat: number | null;
45
46
  created_at: Date;
46
47
  updated_at: Date;
48
+ referralCode: string | null;
47
49
  scanned: boolean;
48
50
  scannedAt: Date | null;
49
51
  ticketGroupId: string | null;
@@ -57,6 +59,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
57
59
  seat: number | null;
58
60
  created_at: Date;
59
61
  updated_at: Date;
62
+ referralCode: string | null;
60
63
  scanned: boolean;
61
64
  scannedAt: Date | null;
62
65
  ticketGroupId: string | null;
@@ -138,6 +141,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
138
141
  seat: number | null;
139
142
  created_at: Date;
140
143
  updated_at: Date;
144
+ referralCode: string | null;
141
145
  scanned: boolean;
142
146
  scannedAt: Date | null;
143
147
  ticketGroupId: string | null;
@@ -183,6 +187,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
183
187
  seat: number | null;
184
188
  created_at: Date;
185
189
  updated_at: Date;
190
+ referralCode: string | null;
186
191
  scanned: boolean;
187
192
  scannedAt: Date | null;
188
193
  ticketGroupId: string | null;
@@ -233,6 +233,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
233
233
  scanned: z.ZodBoolean;
234
234
  scannedAt: z.ZodNullable<z.ZodDate>;
235
235
  ticketGroupId: z.ZodNullable<z.ZodString>;
236
+ referralCode: z.ZodNullable<z.ZodString>;
236
237
  created_at: z.ZodDate;
237
238
  updated_at: z.ZodDate;
238
239
  }, "strip", z.ZodTypeAny, {
@@ -245,6 +246,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
245
246
  seat: number | null;
246
247
  created_at: Date;
247
248
  updated_at: Date;
249
+ referralCode: string | null;
248
250
  scanned: boolean;
249
251
  scannedAt: Date | null;
250
252
  ticketGroupId: string | null;
@@ -258,6 +260,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
258
260
  seat: number | null;
259
261
  created_at: Date;
260
262
  updated_at: Date;
263
+ referralCode: string | null;
261
264
  scanned: boolean;
262
265
  scannedAt: Date | null;
263
266
  ticketGroupId: string | null;
@@ -417,6 +420,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
417
420
  seat: number | null;
418
421
  created_at: Date;
419
422
  updated_at: Date;
423
+ referralCode: string | null;
420
424
  scanned: boolean;
421
425
  scannedAt: Date | null;
422
426
  ticketGroupId: string | null;
@@ -538,6 +542,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
538
542
  seat: number | null;
539
543
  created_at: Date;
540
544
  updated_at: Date;
545
+ referralCode: string | null;
541
546
  scanned: boolean;
542
547
  scannedAt: Date | null;
543
548
  ticketGroupId: string | null;
@@ -871,6 +876,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
871
876
  scanned: z.ZodBoolean;
872
877
  scannedAt: z.ZodNullable<z.ZodString>;
873
878
  ticketGroupId: z.ZodNullable<z.ZodString>;
879
+ referralCode: z.ZodNullable<z.ZodString>;
874
880
  created_at: z.ZodString;
875
881
  updated_at: z.ZodString;
876
882
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -883,6 +889,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
883
889
  seat: number | null;
884
890
  created_at: string;
885
891
  updated_at: string;
892
+ referralCode: string | null;
886
893
  scanned: boolean;
887
894
  scannedAt: string | null;
888
895
  ticketGroupId: string | null;
@@ -896,6 +903,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
896
903
  seat: number | null;
897
904
  created_at: string;
898
905
  updated_at: string;
906
+ referralCode: string | null;
899
907
  scanned: boolean;
900
908
  scannedAt: string | null;
901
909
  ticketGroupId: string | null;
@@ -1053,6 +1061,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1053
1061
  seat: number | null;
1054
1062
  created_at: string;
1055
1063
  updated_at: string;
1064
+ referralCode: string | null;
1056
1065
  scanned: boolean;
1057
1066
  scannedAt: string | null;
1058
1067
  ticketGroupId: string | null;
@@ -1174,6 +1183,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1174
1183
  seat: number | null;
1175
1184
  created_at: string;
1176
1185
  updated_at: string;
1186
+ referralCode: string | null;
1177
1187
  scanned: boolean;
1178
1188
  scannedAt: string | null;
1179
1189
  ticketGroupId: string | null;
@@ -32,6 +32,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
32
32
  scanned: z.ZodBoolean;
33
33
  scannedAt: z.ZodNullable<z.ZodDate>;
34
34
  ticketGroupId: z.ZodNullable<z.ZodString>;
35
+ referralCode: z.ZodNullable<z.ZodString>;
35
36
  created_at: z.ZodDate;
36
37
  updated_at: z.ZodDate;
37
38
  }, "strip", z.ZodTypeAny, {
@@ -44,6 +45,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
44
45
  seat: number | null;
45
46
  created_at: Date;
46
47
  updated_at: Date;
48
+ referralCode: string | null;
47
49
  scanned: boolean;
48
50
  scannedAt: Date | null;
49
51
  ticketGroupId: string | null;
@@ -57,6 +59,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
57
59
  seat: number | null;
58
60
  created_at: Date;
59
61
  updated_at: Date;
62
+ referralCode: string | null;
60
63
  scanned: boolean;
61
64
  scannedAt: Date | null;
62
65
  ticketGroupId: string | null;
@@ -112,6 +115,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
112
115
  seat: number | null;
113
116
  created_at: Date;
114
117
  updated_at: Date;
118
+ referralCode: string | null;
115
119
  scanned: boolean;
116
120
  scannedAt: Date | null;
117
121
  ticketGroupId: string | null;
@@ -149,6 +153,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
149
153
  seat: number | null;
150
154
  created_at: Date;
151
155
  updated_at: Date;
156
+ referralCode: string | null;
152
157
  scanned: boolean;
153
158
  scannedAt: Date | null;
154
159
  ticketGroupId: string | null;
@@ -29,6 +29,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
29
29
  movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
30
30
  created_at: import("zod").ZodDate;
31
31
  updated_at: import("zod").ZodDate;
32
+ referralCode: import("zod").ZodNullable<import("zod").ZodString>;
32
33
  }, "password">, {
33
34
  residenceLocation: import("zod").ZodNullable<import("zod").ZodObject<{
34
35
  id: import("zod").ZodString;
@@ -110,6 +111,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
110
111
  residenceLocationId: string | null;
111
112
  isInTrash: boolean;
112
113
  movedToTrashDate: Date | null;
114
+ referralCode: string | null;
113
115
  birthLocation: {
114
116
  id: string;
115
117
  latitude: number;
@@ -153,6 +155,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
153
155
  residenceLocationId: string | null;
154
156
  isInTrash: boolean;
155
157
  movedToTrashDate: Date | null;
158
+ referralCode: string | null;
156
159
  birthLocation: {
157
160
  id: string;
158
161
  latitude: number;
@@ -205,6 +208,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
205
208
  residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
206
209
  isInTrash: import("zod").ZodBoolean;
207
210
  movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
211
+ referralCode: import("zod").ZodNullable<import("zod").ZodString>;
208
212
  residenceLocation: import("zod").ZodNullable<import("zod").ZodObject<{
209
213
  id: import("zod").ZodString;
210
214
  latitude: import("zod").ZodNumber;
@@ -285,6 +289,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
285
289
  residenceLocationId: string | null;
286
290
  isInTrash: boolean;
287
291
  movedToTrashDate: string | null;
292
+ referralCode: string | null;
288
293
  birthLocation: {
289
294
  id: string;
290
295
  latitude: number;
@@ -328,6 +333,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
328
333
  residenceLocationId: string | null;
329
334
  isInTrash: boolean;
330
335
  movedToTrashDate: string | null;
336
+ referralCode: string | null;
331
337
  birthLocation: {
332
338
  id: string;
333
339
  latitude: number;
@@ -60,6 +60,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
60
60
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
61
61
  created_at: z.ZodDate;
62
62
  updated_at: z.ZodDate;
63
+ referralCode: z.ZodNullable<z.ZodString>;
63
64
  }, "password">, "strip", z.ZodTypeAny, {
64
65
  id: string;
65
66
  username: string | null;
@@ -84,6 +85,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
84
85
  residenceLocationId: string | null;
85
86
  isInTrash: boolean;
86
87
  movedToTrashDate: Date | null;
88
+ referralCode: string | null;
87
89
  }, {
88
90
  id: string;
89
91
  username: string | null;
@@ -107,6 +109,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
107
109
  residenceLocationId: string | null;
108
110
  isInTrash: boolean;
109
111
  movedToTrashDate: Date | null;
112
+ referralCode: string | null;
110
113
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
111
114
  }>;
112
115
  }, "strip", z.ZodTypeAny, {
@@ -134,6 +137,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
134
137
  residenceLocationId: string | null;
135
138
  isInTrash: boolean;
136
139
  movedToTrashDate: Date | null;
140
+ referralCode: string | null;
137
141
  };
138
142
  tokens: {
139
143
  accessToken: string;
@@ -164,6 +168,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
164
168
  residenceLocationId: string | null;
165
169
  isInTrash: boolean;
166
170
  movedToTrashDate: Date | null;
171
+ referralCode: string | null;
167
172
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
168
173
  };
169
174
  tokens: {
@@ -216,6 +221,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
216
221
  residenceLocationId: z.ZodNullable<z.ZodString>;
217
222
  isInTrash: z.ZodBoolean;
218
223
  movedToTrashDate: z.ZodNullable<z.ZodString>;
224
+ referralCode: z.ZodNullable<z.ZodString>;
219
225
  }, z.UnknownKeysParam, z.ZodTypeAny, {
220
226
  id: string;
221
227
  username: string | null;
@@ -240,6 +246,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
240
246
  residenceLocationId: string | null;
241
247
  isInTrash: boolean;
242
248
  movedToTrashDate: string | null;
249
+ referralCode: string | null;
243
250
  }, {
244
251
  id: string;
245
252
  username: string | null;
@@ -263,6 +270,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
263
270
  residenceLocationId: string | null;
264
271
  isInTrash: boolean;
265
272
  movedToTrashDate: string | null;
273
+ referralCode: string | null;
266
274
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
267
275
  }>;
268
276
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -290,6 +298,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
290
298
  residenceLocationId: string | null;
291
299
  isInTrash: boolean;
292
300
  movedToTrashDate: string | null;
301
+ referralCode: string | null;
293
302
  };
294
303
  tokens: {
295
304
  accessToken: string;
@@ -320,6 +329,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
320
329
  residenceLocationId: string | null;
321
330
  isInTrash: boolean;
322
331
  movedToTrashDate: string | null;
332
+ referralCode: string | null;
323
333
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
324
334
  };
325
335
  tokens: {
@@ -65,6 +65,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
65
65
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
66
66
  created_at: z.ZodDate;
67
67
  updated_at: z.ZodDate;
68
+ referralCode: z.ZodNullable<z.ZodString>;
68
69
  }, "password">, "strip", z.ZodTypeAny, {
69
70
  id: string;
70
71
  username: string | null;
@@ -89,6 +90,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
89
90
  residenceLocationId: string | null;
90
91
  isInTrash: boolean;
91
92
  movedToTrashDate: Date | null;
93
+ referralCode: string | null;
92
94
  }, {
93
95
  id: string;
94
96
  username: string | null;
@@ -112,6 +114,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
112
114
  residenceLocationId: string | null;
113
115
  isInTrash: boolean;
114
116
  movedToTrashDate: Date | null;
117
+ referralCode: string | null;
115
118
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
116
119
  }>;
117
120
  backendTokens: z.ZodObject<{
@@ -152,6 +155,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
152
155
  residenceLocationId: string | null;
153
156
  isInTrash: boolean;
154
157
  movedToTrashDate: Date | null;
158
+ referralCode: string | null;
155
159
  };
156
160
  backendTokens: {
157
161
  accessToken: string;
@@ -182,6 +186,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
182
186
  residenceLocationId: string | null;
183
187
  isInTrash: boolean;
184
188
  movedToTrashDate: Date | null;
189
+ referralCode: string | null;
185
190
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
186
191
  };
187
192
  backendTokens: {
@@ -221,6 +226,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
221
226
  residenceLocationId: z.ZodNullable<z.ZodString>;
222
227
  isInTrash: z.ZodBoolean;
223
228
  movedToTrashDate: z.ZodNullable<z.ZodString>;
229
+ referralCode: z.ZodNullable<z.ZodString>;
224
230
  }, z.UnknownKeysParam, z.ZodTypeAny, {
225
231
  id: string;
226
232
  username: string | null;
@@ -245,6 +251,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
245
251
  residenceLocationId: string | null;
246
252
  isInTrash: boolean;
247
253
  movedToTrashDate: string | null;
254
+ referralCode: string | null;
248
255
  }, {
249
256
  id: string;
250
257
  username: string | null;
@@ -268,6 +275,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
268
275
  residenceLocationId: string | null;
269
276
  isInTrash: boolean;
270
277
  movedToTrashDate: string | null;
278
+ referralCode: string | null;
271
279
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
272
280
  }>;
273
281
  backendTokens: z.ZodObject<{
@@ -308,6 +316,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
308
316
  residenceLocationId: string | null;
309
317
  isInTrash: boolean;
310
318
  movedToTrashDate: string | null;
319
+ referralCode: string | null;
311
320
  };
312
321
  backendTokens: {
313
322
  accessToken: string;
@@ -338,6 +347,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
338
347
  residenceLocationId: string | null;
339
348
  isInTrash: boolean;
340
349
  movedToTrashDate: string | null;
350
+ referralCode: string | null;
341
351
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
342
352
  };
343
353
  backendTokens: {
@@ -237,6 +237,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
237
237
  movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
238
238
  created_at: import("zod").ZodDate;
239
239
  updated_at: import("zod").ZodDate;
240
+ referralCode: import("zod").ZodNullable<import("zod").ZodString>;
240
241
  }, "password">, "strip", import("zod").ZodTypeAny, {
241
242
  id: string;
242
243
  username: string | null;
@@ -261,6 +262,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
261
262
  residenceLocationId: string | null;
262
263
  isInTrash: boolean;
263
264
  movedToTrashDate: Date | null;
265
+ referralCode: string | null;
264
266
  }, {
265
267
  id: string;
266
268
  username: string | null;
@@ -284,6 +286,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
284
286
  residenceLocationId: string | null;
285
287
  isInTrash: boolean;
286
288
  movedToTrashDate: Date | null;
289
+ referralCode: string | null;
287
290
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
288
291
  }>;
289
292
  declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -316,6 +319,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
316
319
  residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
317
320
  isInTrash: import("zod").ZodBoolean;
318
321
  movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
322
+ referralCode: import("zod").ZodNullable<import("zod").ZodString>;
319
323
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
320
324
  id: string;
321
325
  username: string | null;
@@ -340,6 +344,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
340
344
  residenceLocationId: string | null;
341
345
  isInTrash: boolean;
342
346
  movedToTrashDate: string | null;
347
+ referralCode: string | null;
343
348
  }, {
344
349
  id: string;
345
350
  username: string | null;
@@ -363,6 +368,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
363
368
  residenceLocationId: string | null;
364
369
  isInTrash: boolean;
365
370
  movedToTrashDate: string | null;
371
+ referralCode: string | null;
366
372
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
367
373
  }>>;
368
374
  export declare class UpdateMiExpoMeResponseDto extends UpdateMiExpoMeResponseDto_base {
@@ -54,6 +54,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
54
54
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
55
55
  created_at: z.ZodDate;
56
56
  updated_at: z.ZodDate;
57
+ referralCode: z.ZodNullable<z.ZodString>;
57
58
  }, {
58
59
  residenceLocation: z.ZodNullable<z.ZodObject<Pick<{
59
60
  id: z.ZodString;
@@ -120,6 +121,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
120
121
  residenceLocationId: string | null;
121
122
  isInTrash: boolean;
122
123
  movedToTrashDate: Date | null;
124
+ referralCode: string | null;
123
125
  birthLocation: {
124
126
  latitude: number;
125
127
  longitude: number;
@@ -156,6 +158,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
156
158
  residenceLocationId: string | null;
157
159
  isInTrash: boolean;
158
160
  movedToTrashDate: Date | null;
161
+ referralCode: string | null;
159
162
  birthLocation: {
160
163
  latitude: number;
161
164
  longitude: number;
@@ -196,6 +199,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
196
199
  residenceLocationId: string | null;
197
200
  isInTrash: boolean;
198
201
  movedToTrashDate: Date | null;
202
+ referralCode: string | null;
199
203
  birthLocation: {
200
204
  latitude: number;
201
205
  longitude: number;
@@ -235,6 +239,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
235
239
  residenceLocationId: string | null;
236
240
  isInTrash: boolean;
237
241
  movedToTrashDate: Date | null;
242
+ referralCode: string | null;
238
243
  birthLocation: {
239
244
  latitude: number;
240
245
  longitude: number;
@@ -284,6 +289,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
284
289
  movedToTrashDate: z.ZodNullable<z.ZodString>;
285
290
  created_at: z.ZodString;
286
291
  updated_at: z.ZodString;
292
+ referralCode: z.ZodNullable<z.ZodString>;
287
293
  residenceLocation: z.ZodNullable<z.ZodObject<{
288
294
  latitude: z.ZodNumber;
289
295
  longitude: z.ZodNumber;
@@ -341,6 +347,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
341
347
  residenceLocationId: string | null;
342
348
  isInTrash: boolean;
343
349
  movedToTrashDate: string | null;
350
+ referralCode: string | null;
344
351
  birthLocation: {
345
352
  latitude: number;
346
353
  longitude: number;
@@ -377,6 +384,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
377
384
  residenceLocationId: string | null;
378
385
  isInTrash: boolean;
379
386
  movedToTrashDate: string | null;
387
+ referralCode: string | null;
380
388
  birthLocation: {
381
389
  latitude: number;
382
390
  longitude: number;
@@ -417,6 +425,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
417
425
  residenceLocationId: string | null;
418
426
  isInTrash: boolean;
419
427
  movedToTrashDate: string | null;
428
+ referralCode: string | null;
420
429
  birthLocation: {
421
430
  latitude: number;
422
431
  longitude: number;
@@ -456,6 +465,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
456
465
  residenceLocationId: string | null;
457
466
  isInTrash: boolean;
458
467
  movedToTrashDate: string | null;
468
+ referralCode: string | null;
459
469
  birthLocation: {
460
470
  latitude: number;
461
471
  longitude: number;
@@ -38,6 +38,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
38
38
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
39
39
  created_at: z.ZodDate;
40
40
  updated_at: z.ZodDate;
41
+ referralCode: z.ZodNullable<z.ZodString>;
41
42
  }, "strip", z.ZodTypeAny, {
42
43
  id: string;
43
44
  username: string | null;
@@ -63,6 +64,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
63
64
  residenceLocationId: string | null;
64
65
  isInTrash: boolean;
65
66
  movedToTrashDate: Date | null;
67
+ referralCode: string | null;
66
68
  }, {
67
69
  id: string;
68
70
  username: string | null;
@@ -87,6 +89,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
87
89
  residenceLocationId: string | null;
88
90
  isInTrash: boolean;
89
91
  movedToTrashDate: Date | null;
92
+ referralCode: string | null;
90
93
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
91
94
  }>>;
92
95
  }>, "strip", z.ZodTypeAny, {
@@ -120,6 +123,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
120
123
  residenceLocationId: string | null;
121
124
  isInTrash: boolean;
122
125
  movedToTrashDate: Date | null;
126
+ referralCode: string | null;
123
127
  } | null;
124
128
  }, {
125
129
  id: string;
@@ -151,6 +155,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
151
155
  residenceLocationId: string | null;
152
156
  isInTrash: boolean;
153
157
  movedToTrashDate: Date | null;
158
+ referralCode: string | null;
154
159
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
155
160
  } | null;
156
161
  }>, "many">;
@@ -186,6 +191,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
186
191
  residenceLocationId: string | null;
187
192
  isInTrash: boolean;
188
193
  movedToTrashDate: Date | null;
194
+ referralCode: string | null;
189
195
  } | null;
190
196
  }[];
191
197
  }, {
@@ -219,6 +225,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
219
225
  residenceLocationId: string | null;
220
226
  isInTrash: boolean;
221
227
  movedToTrashDate: Date | null;
228
+ referralCode: string | null;
222
229
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
223
230
  } | null;
224
231
  }[];
@@ -261,6 +268,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
261
268
  movedToTrashDate: z.ZodNullable<z.ZodString>;
262
269
  created_at: z.ZodString;
263
270
  updated_at: z.ZodString;
271
+ referralCode: z.ZodNullable<z.ZodString>;
264
272
  }, z.UnknownKeysParam, z.ZodTypeAny, {
265
273
  id: string;
266
274
  username: string | null;
@@ -286,6 +294,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
286
294
  residenceLocationId: string | null;
287
295
  isInTrash: boolean;
288
296
  movedToTrashDate: string | null;
297
+ referralCode: string | null;
289
298
  }, {
290
299
  id: string;
291
300
  username: string | null;
@@ -310,6 +319,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
310
319
  residenceLocationId: string | null;
311
320
  isInTrash: boolean;
312
321
  movedToTrashDate: string | null;
322
+ referralCode: string | null;
313
323
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
314
324
  }>>;
315
325
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -343,6 +353,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
343
353
  residenceLocationId: string | null;
344
354
  isInTrash: boolean;
345
355
  movedToTrashDate: string | null;
356
+ referralCode: string | null;
346
357
  } | null;
347
358
  }, {
348
359
  id: string;
@@ -374,6 +385,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
374
385
  residenceLocationId: string | null;
375
386
  isInTrash: boolean;
376
387
  movedToTrashDate: string | null;
388
+ referralCode: string | null;
377
389
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
378
390
  } | null;
379
391
  }>, "many">;
@@ -409,6 +421,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
409
421
  residenceLocationId: string | null;
410
422
  isInTrash: boolean;
411
423
  movedToTrashDate: string | null;
424
+ referralCode: string | null;
412
425
  } | null;
413
426
  }[];
414
427
  }, {
@@ -442,6 +455,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
442
455
  residenceLocationId: string | null;
443
456
  isInTrash: boolean;
444
457
  movedToTrashDate: string | null;
458
+ referralCode: string | null;
445
459
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
446
460
  } | null;
447
461
  }[];