expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.11 → 0.34.0-EXPO-319-ver-eventos-disponibles.13

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 (45) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -4
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -8
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -4
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -8
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
  8. package/dist/src/i18n/es.d.ts +3 -0
  9. package/dist/src/i18n/es.js +3 -0
  10. package/dist/src/i18n/es.js.map +1 -1
  11. package/dist/src/mi-expo/dto/get-me.dto.d.ts +16 -0
  12. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +20 -0
  13. package/dist/src/mi-expo/dto/login.dto.d.ts +21 -0
  14. package/dist/src/mi-expo/dto/update-me.dto.d.ts +16 -0
  15. package/dist/src/otp/dto/verify-otp.dto.d.ts +20 -0
  16. package/dist/src/profile/dto/create-profile.dto.d.ts +24 -0
  17. package/dist/src/profile/dto/delete-profile.dto.d.ts +16 -0
  18. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
  19. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -0
  20. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +16 -0
  21. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +16 -0
  22. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
  23. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -0
  24. package/dist/src/profile/dto/find-trash.dto.d.ts +6 -0
  25. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
  26. package/dist/src/profile/dto/profile.dto.d.ts +8 -0
  27. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -0
  28. package/dist/src/schema/profile.schema.d.ts +8 -0
  29. package/dist/src/schema/profile.schema.js +2 -0
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -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/types/prisma-schema/edge.js +6 -4
  36. package/dist/types/prisma-schema/index-browser.js +3 -1
  37. package/dist/types/prisma-schema/index.d.ts +66 -2
  38. package/dist/types/prisma-schema/index.js +6 -4
  39. package/dist/types/prisma-schema/package.json +1 -1
  40. package/dist/types/prisma-schema/schema.prisma +3 -0
  41. package/dist/types/prisma-schema/wasm.js +3 -1
  42. package/dist/types/schema.d.ts +30 -76
  43. package/package.json +1 -1
  44. package/dist/src/mi-expo/dto/emit-ticket.dto.d.ts +0 -281
  45. package/dist/src/mi-expo/dto/emit-ticket.dto.js +0 -23
@@ -7,6 +7,7 @@ export declare const loginMiExpoSchema: z.ZodObject<Pick<{
7
7
  USER: "USER";
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
+ MI_EXPO: "MI_EXPO";
10
11
  }>;
11
12
  isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
12
13
  fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -35,6 +36,12 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
35
36
  user: z.ZodObject<Omit<{
36
37
  id: z.ZodString;
37
38
  shortId: z.ZodNumber;
39
+ role: z.ZodDefault<z.ZodNativeEnum<{
40
+ USER: "USER";
41
+ ADMIN: "ADMIN";
42
+ FORM: "FORM";
43
+ MI_EXPO: "MI_EXPO";
44
+ }>>;
38
45
  firstTimeMiExpo: z.ZodBoolean;
39
46
  username: z.ZodNullable<z.ZodString>;
40
47
  password: z.ZodNullable<z.ZodString>;
@@ -59,6 +66,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
59
66
  }, "password">, "strip", z.ZodTypeAny, {
60
67
  id: string;
61
68
  username: string | null;
69
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
62
70
  phoneNumber: string;
63
71
  secondaryPhoneNumber: string | null;
64
72
  fullName: string;
@@ -102,6 +110,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
102
110
  residenceLocationId: string | null;
103
111
  isInTrash: boolean;
104
112
  movedToTrashDate: Date | null;
113
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
105
114
  }>;
106
115
  backendTokens: z.ZodObject<{
107
116
  accessToken: z.ZodString;
@@ -120,6 +129,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
120
129
  user: {
121
130
  id: string;
122
131
  username: string | null;
132
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
123
133
  phoneNumber: string;
124
134
  secondaryPhoneNumber: string | null;
125
135
  fullName: string;
@@ -170,6 +180,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
170
180
  residenceLocationId: string | null;
171
181
  isInTrash: boolean;
172
182
  movedToTrashDate: Date | null;
183
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
173
184
  };
174
185
  backendTokens: {
175
186
  accessToken: string;
@@ -181,6 +192,12 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
181
192
  user: z.ZodObject<{
182
193
  id: z.ZodString;
183
194
  username: z.ZodNullable<z.ZodString>;
195
+ role: z.ZodDefault<z.ZodNativeEnum<{
196
+ USER: "USER";
197
+ ADMIN: "ADMIN";
198
+ FORM: "FORM";
199
+ MI_EXPO: "MI_EXPO";
200
+ }>>;
184
201
  phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
185
202
  secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
186
203
  fullName: z.ZodString;
@@ -204,6 +221,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
204
221
  }, z.UnknownKeysParam, z.ZodTypeAny, {
205
222
  id: string;
206
223
  username: string | null;
224
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
207
225
  phoneNumber: string;
208
226
  secondaryPhoneNumber: string | null;
209
227
  fullName: string;
@@ -247,6 +265,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
247
265
  residenceLocationId: string | null;
248
266
  isInTrash: boolean;
249
267
  movedToTrashDate: string | null;
268
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
250
269
  }>;
251
270
  backendTokens: z.ZodObject<{
252
271
  accessToken: z.ZodString;
@@ -265,6 +284,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
265
284
  user: {
266
285
  id: string;
267
286
  username: string | null;
287
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
268
288
  phoneNumber: string;
269
289
  secondaryPhoneNumber: string | null;
270
290
  fullName: string;
@@ -315,6 +335,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
315
335
  residenceLocationId: string | null;
316
336
  isInTrash: boolean;
317
337
  movedToTrashDate: string | null;
338
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
318
339
  };
319
340
  backendTokens: {
320
341
  accessToken: string;
@@ -209,6 +209,12 @@ export declare class UpdateMiExpoMeDto extends UpdateMiExpoMeDto_base {
209
209
  export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<{
210
210
  id: import("zod").ZodString;
211
211
  shortId: import("zod").ZodNumber;
212
+ role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
213
+ USER: "USER";
214
+ ADMIN: "ADMIN";
215
+ FORM: "FORM";
216
+ MI_EXPO: "MI_EXPO";
217
+ }>>;
212
218
  firstTimeMiExpo: import("zod").ZodBoolean;
213
219
  username: import("zod").ZodNullable<import("zod").ZodString>;
214
220
  password: import("zod").ZodNullable<import("zod").ZodString>;
@@ -233,6 +239,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
233
239
  }, "password">, "strip", import("zod").ZodTypeAny, {
234
240
  id: string;
235
241
  username: string | null;
242
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
236
243
  phoneNumber: string;
237
244
  secondaryPhoneNumber: string | null;
238
245
  fullName: string;
@@ -276,10 +283,17 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
276
283
  residenceLocationId: string | null;
277
284
  isInTrash: boolean;
278
285
  movedToTrashDate: Date | null;
286
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
279
287
  }>;
280
288
  declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
281
289
  id: import("zod").ZodString;
282
290
  username: import("zod").ZodNullable<import("zod").ZodString>;
291
+ role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
292
+ USER: "USER";
293
+ ADMIN: "ADMIN";
294
+ FORM: "FORM";
295
+ MI_EXPO: "MI_EXPO";
296
+ }>>;
283
297
  phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
284
298
  secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
285
299
  fullName: import("zod").ZodString;
@@ -303,6 +317,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
303
317
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
304
318
  id: string;
305
319
  username: string | null;
320
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
306
321
  phoneNumber: string;
307
322
  secondaryPhoneNumber: string | null;
308
323
  fullName: string;
@@ -346,6 +361,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
346
361
  residenceLocationId: string | null;
347
362
  isInTrash: boolean;
348
363
  movedToTrashDate: string | null;
364
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
349
365
  }>>;
350
366
  export declare class UpdateMiExpoMeResponseDto extends UpdateMiExpoMeResponseDto_base {
351
367
  }
@@ -26,6 +26,12 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
26
26
  profile: z.ZodObject<z.objectUtil.extendShape<{
27
27
  id: z.ZodString;
28
28
  shortId: z.ZodNumber;
29
+ role: z.ZodDefault<z.ZodNativeEnum<{
30
+ USER: "USER";
31
+ ADMIN: "ADMIN";
32
+ FORM: "FORM";
33
+ MI_EXPO: "MI_EXPO";
34
+ }>>;
29
35
  firstTimeMiExpo: z.ZodBoolean;
30
36
  username: z.ZodNullable<z.ZodString>;
31
37
  password: z.ZodNullable<z.ZodString>;
@@ -92,6 +98,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
92
98
  id: string;
93
99
  username: string | null;
94
100
  password: string | null;
101
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
95
102
  phoneNumber: string;
96
103
  secondaryPhoneNumber: string | null;
97
104
  fullName: string;
@@ -160,12 +167,14 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
160
167
  country: string;
161
168
  city: string;
162
169
  } | null;
170
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
163
171
  }>;
164
172
  }, "strip", z.ZodTypeAny, {
165
173
  profile: {
166
174
  id: string;
167
175
  username: string | null;
168
176
  password: string | null;
177
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
169
178
  phoneNumber: string;
170
179
  secondaryPhoneNumber: string | null;
171
180
  fullName: string;
@@ -237,6 +246,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
237
246
  country: string;
238
247
  city: string;
239
248
  } | null;
249
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
240
250
  };
241
251
  success: boolean;
242
252
  }>;
@@ -245,6 +255,12 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
245
255
  profile: z.ZodObject<{
246
256
  id: z.ZodString;
247
257
  shortId: z.ZodNumber;
258
+ role: z.ZodDefault<z.ZodNativeEnum<{
259
+ USER: "USER";
260
+ ADMIN: "ADMIN";
261
+ FORM: "FORM";
262
+ MI_EXPO: "MI_EXPO";
263
+ }>>;
248
264
  firstTimeMiExpo: z.ZodBoolean;
249
265
  username: z.ZodNullable<z.ZodString>;
250
266
  password: z.ZodNullable<z.ZodString>;
@@ -302,6 +318,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
302
318
  id: string;
303
319
  username: string | null;
304
320
  password: string | null;
321
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
305
322
  phoneNumber: string;
306
323
  secondaryPhoneNumber: string | null;
307
324
  fullName: string;
@@ -370,12 +387,14 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
370
387
  country: string;
371
388
  city: string;
372
389
  } | null;
390
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
373
391
  }>;
374
392
  }, z.UnknownKeysParam, z.ZodTypeAny, {
375
393
  profile: {
376
394
  id: string;
377
395
  username: string | null;
378
396
  password: string | null;
397
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
379
398
  phoneNumber: string;
380
399
  secondaryPhoneNumber: string | null;
381
400
  fullName: string;
@@ -447,6 +466,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
447
466
  country: string;
448
467
  city: string;
449
468
  } | null;
469
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
450
470
  };
451
471
  success: boolean;
452
472
  }>>;
@@ -3,6 +3,12 @@ export declare const createProfileSchema: z.ZodObject<{
3
3
  profile: z.ZodObject<z.objectUtil.extendShape<Pick<{
4
4
  id: z.ZodString;
5
5
  shortId: z.ZodNumber;
6
+ role: z.ZodDefault<z.ZodNativeEnum<{
7
+ USER: "USER";
8
+ ADMIN: "ADMIN";
9
+ FORM: "FORM";
10
+ MI_EXPO: "MI_EXPO";
11
+ }>>;
6
12
  firstTimeMiExpo: z.ZodBoolean;
7
13
  username: z.ZodNullable<z.ZodString>;
8
14
  password: z.ZodNullable<z.ZodString>;
@@ -431,6 +437,12 @@ declare const similarProfileSchema: z.ZodObject<{
431
437
  profile: z.ZodObject<Pick<{
432
438
  id: z.ZodString;
433
439
  shortId: z.ZodNumber;
440
+ role: z.ZodDefault<z.ZodNativeEnum<{
441
+ USER: "USER";
442
+ ADMIN: "ADMIN";
443
+ FORM: "FORM";
444
+ MI_EXPO: "MI_EXPO";
445
+ }>>;
434
446
  firstTimeMiExpo: z.ZodBoolean;
435
447
  username: z.ZodNullable<z.ZodString>;
436
448
  password: z.ZodNullable<z.ZodString>;
@@ -486,6 +498,12 @@ export declare const createProfileResponseSchema: z.ZodObject<{
486
498
  profile: z.ZodObject<Pick<{
487
499
  id: z.ZodString;
488
500
  shortId: z.ZodNumber;
501
+ role: z.ZodDefault<z.ZodNativeEnum<{
502
+ USER: "USER";
503
+ ADMIN: "ADMIN";
504
+ FORM: "FORM";
505
+ MI_EXPO: "MI_EXPO";
506
+ }>>;
489
507
  firstTimeMiExpo: z.ZodBoolean;
490
508
  username: z.ZodNullable<z.ZodString>;
491
509
  password: z.ZodNullable<z.ZodString>;
@@ -609,6 +627,12 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
609
627
  profile: z.ZodObject<Pick<{
610
628
  id: z.ZodString;
611
629
  shortId: z.ZodNumber;
630
+ role: z.ZodDefault<z.ZodNativeEnum<{
631
+ USER: "USER";
632
+ ADMIN: "ADMIN";
633
+ FORM: "FORM";
634
+ MI_EXPO: "MI_EXPO";
635
+ }>>;
612
636
  firstTimeMiExpo: z.ZodBoolean;
613
637
  username: z.ZodNullable<z.ZodString>;
614
638
  password: z.ZodNullable<z.ZodString>;
@@ -1,6 +1,12 @@
1
1
  export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
2
2
  id: import("zod").ZodString;
3
3
  shortId: import("zod").ZodNumber;
4
+ role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
5
+ USER: "USER";
6
+ ADMIN: "ADMIN";
7
+ FORM: "FORM";
8
+ MI_EXPO: "MI_EXPO";
9
+ }>>;
4
10
  firstTimeMiExpo: import("zod").ZodBoolean;
5
11
  username: import("zod").ZodNullable<import("zod").ZodString>;
6
12
  password: import("zod").ZodNullable<import("zod").ZodString>;
@@ -26,6 +32,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
26
32
  id: string;
27
33
  username: string | null;
28
34
  password: string | null;
35
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
29
36
  phoneNumber: string;
30
37
  secondaryPhoneNumber: string | null;
31
38
  fullName: string;
@@ -70,10 +77,17 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
70
77
  residenceLocationId: string | null;
71
78
  isInTrash: boolean;
72
79
  movedToTrashDate: Date | null;
80
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
73
81
  }>;
74
82
  declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
75
83
  id: import("zod").ZodString;
76
84
  shortId: import("zod").ZodNumber;
85
+ role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
86
+ USER: "USER";
87
+ ADMIN: "ADMIN";
88
+ FORM: "FORM";
89
+ MI_EXPO: "MI_EXPO";
90
+ }>>;
77
91
  firstTimeMiExpo: import("zod").ZodBoolean;
78
92
  username: import("zod").ZodNullable<import("zod").ZodString>;
79
93
  password: import("zod").ZodNullable<import("zod").ZodString>;
@@ -99,6 +113,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
99
113
  id: string;
100
114
  username: string | null;
101
115
  password: string | null;
116
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
102
117
  phoneNumber: string;
103
118
  secondaryPhoneNumber: string | null;
104
119
  fullName: string;
@@ -143,6 +158,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
143
158
  residenceLocationId: string | null;
144
159
  isInTrash: boolean;
145
160
  movedToTrashDate: string | null;
161
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
146
162
  }>>;
147
163
  export declare class DeleteProfileResponseDto extends DeleteProfileResponseDto_base {
148
164
  }
@@ -3,6 +3,12 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
3
3
  profiles: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
4
4
  id: z.ZodString;
5
5
  shortId: z.ZodNumber;
6
+ role: z.ZodDefault<z.ZodNativeEnum<{
7
+ USER: "USER";
8
+ ADMIN: "ADMIN";
9
+ FORM: "FORM";
10
+ MI_EXPO: "MI_EXPO";
11
+ }>>;
6
12
  firstTimeMiExpo: z.ZodBoolean;
7
13
  username: z.ZodNullable<z.ZodString>;
8
14
  password: z.ZodNullable<z.ZodString>;
@@ -79,6 +85,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
79
85
  id: string;
80
86
  username: string | null;
81
87
  password: string | null;
88
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
82
89
  phoneNumber: string;
83
90
  secondaryPhoneNumber: string | null;
84
91
  fullName: string;
@@ -147,12 +154,14 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
147
154
  isExclusive: boolean;
148
155
  };
149
156
  }[];
157
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
150
158
  }>, "many">;
151
159
  }, "strip", z.ZodTypeAny, {
152
160
  profiles: {
153
161
  id: string;
154
162
  username: string | null;
155
163
  password: string | null;
164
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
156
165
  phoneNumber: string;
157
166
  secondaryPhoneNumber: string | null;
158
167
  fullName: string;
@@ -223,12 +232,19 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
223
232
  isExclusive: boolean;
224
233
  };
225
234
  }[];
235
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
226
236
  }[];
227
237
  }>;
228
238
  declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
229
239
  profiles: z.ZodArray<z.ZodObject<{
230
240
  id: z.ZodString;
231
241
  shortId: z.ZodNumber;
242
+ role: z.ZodDefault<z.ZodNativeEnum<{
243
+ USER: "USER";
244
+ ADMIN: "ADMIN";
245
+ FORM: "FORM";
246
+ MI_EXPO: "MI_EXPO";
247
+ }>>;
232
248
  firstTimeMiExpo: z.ZodBoolean;
233
249
  username: z.ZodNullable<z.ZodString>;
234
250
  password: z.ZodNullable<z.ZodString>;
@@ -299,6 +315,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
299
315
  id: string;
300
316
  username: string | null;
301
317
  password: string | null;
318
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
302
319
  phoneNumber: string;
303
320
  secondaryPhoneNumber: string | null;
304
321
  fullName: string;
@@ -367,12 +384,14 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
367
384
  isExclusive: boolean;
368
385
  };
369
386
  }[];
387
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
370
388
  }>, "many">;
371
389
  }, z.UnknownKeysParam, z.ZodTypeAny, {
372
390
  profiles: {
373
391
  id: string;
374
392
  username: string | null;
375
393
  password: string | null;
394
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
376
395
  phoneNumber: string;
377
396
  secondaryPhoneNumber: string | null;
378
397
  fullName: string;
@@ -443,6 +462,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
443
462
  isExclusive: boolean;
444
463
  };
445
464
  }[];
465
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
446
466
  }[];
447
467
  }>>;
448
468
  export declare class FindAllProfileResponseDto extends FindAllProfileResponseDto_base {
@@ -3,6 +3,12 @@ export declare const findByDateRangeSchema: z.ZodObject<{
3
3
  profiles: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
4
4
  id: z.ZodString;
5
5
  shortId: z.ZodNumber;
6
+ role: z.ZodDefault<z.ZodNativeEnum<{
7
+ USER: "USER";
8
+ ADMIN: "ADMIN";
9
+ FORM: "FORM";
10
+ MI_EXPO: "MI_EXPO";
11
+ }>>;
6
12
  firstTimeMiExpo: z.ZodBoolean;
7
13
  username: z.ZodNullable<z.ZodString>;
8
14
  password: z.ZodNullable<z.ZodString>;
@@ -75,6 +81,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
75
81
  id: string;
76
82
  username: string | null;
77
83
  password: string | null;
84
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
78
85
  phoneNumber: string;
79
86
  secondaryPhoneNumber: string | null;
80
87
  fullName: string;
@@ -141,12 +148,14 @@ export declare const findByDateRangeSchema: z.ZodObject<{
141
148
  id: string;
142
149
  };
143
150
  }[];
151
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
144
152
  }>, "many">;
145
153
  }, "strip", z.ZodTypeAny, {
146
154
  profiles: {
147
155
  id: string;
148
156
  username: string | null;
149
157
  password: string | null;
158
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
150
159
  phoneNumber: string;
151
160
  secondaryPhoneNumber: string | null;
152
161
  fullName: string;
@@ -215,12 +224,19 @@ export declare const findByDateRangeSchema: z.ZodObject<{
215
224
  id: string;
216
225
  };
217
226
  }[];
227
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
218
228
  }[];
219
229
  }>;
220
230
  declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
221
231
  profiles: z.ZodArray<z.ZodObject<{
222
232
  id: z.ZodString;
223
233
  shortId: z.ZodNumber;
234
+ role: z.ZodDefault<z.ZodNativeEnum<{
235
+ USER: "USER";
236
+ ADMIN: "ADMIN";
237
+ FORM: "FORM";
238
+ MI_EXPO: "MI_EXPO";
239
+ }>>;
224
240
  firstTimeMiExpo: z.ZodBoolean;
225
241
  username: z.ZodNullable<z.ZodString>;
226
242
  password: z.ZodNullable<z.ZodString>;
@@ -286,6 +302,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
286
302
  id: string;
287
303
  username: string | null;
288
304
  password: string | null;
305
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
289
306
  phoneNumber: string;
290
307
  secondaryPhoneNumber: string | null;
291
308
  fullName: string;
@@ -352,12 +369,14 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
352
369
  id: string;
353
370
  };
354
371
  }[];
372
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
355
373
  }>, "many">;
356
374
  }, z.UnknownKeysParam, z.ZodTypeAny, {
357
375
  profiles: {
358
376
  id: string;
359
377
  username: string | null;
360
378
  password: string | null;
379
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
361
380
  phoneNumber: string;
362
381
  secondaryPhoneNumber: string | null;
363
382
  fullName: string;
@@ -426,6 +445,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
426
445
  id: string;
427
446
  };
428
447
  }[];
448
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
429
449
  }[];
430
450
  }>>;
431
451
  export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
@@ -433,6 +453,12 @@ export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
433
453
  export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
434
454
  id: z.ZodString;
435
455
  shortId: z.ZodNumber;
456
+ role: z.ZodDefault<z.ZodNativeEnum<{
457
+ USER: "USER";
458
+ ADMIN: "ADMIN";
459
+ FORM: "FORM";
460
+ MI_EXPO: "MI_EXPO";
461
+ }>>;
436
462
  firstTimeMiExpo: z.ZodBoolean;
437
463
  username: z.ZodNullable<z.ZodString>;
438
464
  password: z.ZodNullable<z.ZodString>;
@@ -505,6 +531,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
505
531
  id: string;
506
532
  username: string | null;
507
533
  password: string | null;
534
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
508
535
  phoneNumber: string;
509
536
  secondaryPhoneNumber: string | null;
510
537
  fullName: string;
@@ -571,10 +598,17 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
571
598
  id: string;
572
599
  };
573
600
  }[];
601
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
574
602
  }>, "many">>;
575
603
  declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
576
604
  id: z.ZodString;
577
605
  shortId: z.ZodNumber;
606
+ role: z.ZodDefault<z.ZodNativeEnum<{
607
+ USER: "USER";
608
+ ADMIN: "ADMIN";
609
+ FORM: "FORM";
610
+ MI_EXPO: "MI_EXPO";
611
+ }>>;
578
612
  firstTimeMiExpo: z.ZodBoolean;
579
613
  username: z.ZodNullable<z.ZodString>;
580
614
  password: z.ZodNullable<z.ZodString>;
@@ -647,6 +681,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
647
681
  id: string;
648
682
  username: string | null;
649
683
  password: string | null;
684
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
650
685
  phoneNumber: string;
651
686
  secondaryPhoneNumber: string | null;
652
687
  fullName: string;
@@ -713,6 +748,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
713
748
  id: string;
714
749
  };
715
750
  }[];
751
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
716
752
  }>, "many">>>;
717
753
  export declare class FindByDateRangeResponseDto extends FindByDateRangeResponseDto_base {
718
754
  }
@@ -2,6 +2,12 @@ import z from 'zod';
2
2
  export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
3
3
  id: z.ZodString;
4
4
  shortId: z.ZodNumber;
5
+ role: z.ZodDefault<z.ZodNativeEnum<{
6
+ USER: "USER";
7
+ ADMIN: "ADMIN";
8
+ FORM: "FORM";
9
+ MI_EXPO: "MI_EXPO";
10
+ }>>;
5
11
  firstTimeMiExpo: z.ZodBoolean;
6
12
  username: z.ZodNullable<z.ZodString>;
7
13
  password: z.ZodNullable<z.ZodString>;
@@ -137,6 +143,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
137
143
  }>, "strip", z.ZodTypeAny, {
138
144
  id: string;
139
145
  username: string | null;
146
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
140
147
  phoneNumber: string;
141
148
  secondaryPhoneNumber: string | null;
142
149
  fullName: string;
@@ -246,10 +253,17 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
246
253
  country: string;
247
254
  city: string;
248
255
  } | null;
256
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
249
257
  }>;
250
258
  declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
251
259
  id: z.ZodString;
252
260
  username: z.ZodNullable<z.ZodString>;
261
+ role: z.ZodDefault<z.ZodNativeEnum<{
262
+ USER: "USER";
263
+ ADMIN: "ADMIN";
264
+ FORM: "FORM";
265
+ MI_EXPO: "MI_EXPO";
266
+ }>>;
253
267
  phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
254
268
  secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
255
269
  fullName: z.ZodString;
@@ -379,6 +393,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
379
393
  }, z.UnknownKeysParam, z.ZodTypeAny, {
380
394
  id: string;
381
395
  username: string | null;
396
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
382
397
  phoneNumber: string;
383
398
  secondaryPhoneNumber: string | null;
384
399
  fullName: string;
@@ -488,6 +503,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
488
503
  country: string;
489
504
  city: string;
490
505
  } | null;
506
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
491
507
  }>>;
492
508
  export declare class FindByIdProfileResponseDto extends FindByIdProfileResponseDto_base {
493
509
  }
@@ -1,6 +1,12 @@
1
1
  export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
2
2
  id: import("zod").ZodString;
3
3
  shortId: import("zod").ZodNumber;
4
+ role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
5
+ USER: "USER";
6
+ ADMIN: "ADMIN";
7
+ FORM: "FORM";
8
+ MI_EXPO: "MI_EXPO";
9
+ }>>;
4
10
  firstTimeMiExpo: import("zod").ZodBoolean;
5
11
  username: import("zod").ZodNullable<import("zod").ZodString>;
6
12
  password: import("zod").ZodNullable<import("zod").ZodString>;
@@ -26,6 +32,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
26
32
  id: string;
27
33
  username: string | null;
28
34
  password: string | null;
35
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
29
36
  phoneNumber: string;
30
37
  secondaryPhoneNumber: string | null;
31
38
  fullName: string;
@@ -70,10 +77,17 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
70
77
  residenceLocationId: string | null;
71
78
  isInTrash: boolean;
72
79
  movedToTrashDate: Date | null;
80
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
73
81
  }>;
74
82
  declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
75
83
  id: import("zod").ZodString;
76
84
  shortId: import("zod").ZodNumber;
85
+ role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
86
+ USER: "USER";
87
+ ADMIN: "ADMIN";
88
+ FORM: "FORM";
89
+ MI_EXPO: "MI_EXPO";
90
+ }>>;
77
91
  firstTimeMiExpo: import("zod").ZodBoolean;
78
92
  username: import("zod").ZodNullable<import("zod").ZodString>;
79
93
  password: import("zod").ZodNullable<import("zod").ZodString>;
@@ -99,6 +113,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
99
113
  id: string;
100
114
  username: string | null;
101
115
  password: string | null;
116
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
102
117
  phoneNumber: string;
103
118
  secondaryPhoneNumber: string | null;
104
119
  fullName: string;
@@ -143,6 +158,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
143
158
  residenceLocationId: string | null;
144
159
  isInTrash: boolean;
145
160
  movedToTrashDate: string | null;
161
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
146
162
  }>>;
147
163
  export declare class FindByPhoneNumberResponseDto extends FindByPhoneNumberResponseDto_base {
148
164
  }