expo-backend-types 0.34.0 → 0.35.0

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 (67) 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/event/dto/create-event.dto.d.ts +10 -10
  9. package/dist/src/event/dto/event-tickets.dto.d.ts +3 -3
  10. package/dist/src/event/dto/event-tickets.dto.js +5 -2
  11. package/dist/src/event/dto/get-active-events.dto.d.ts +14 -14
  12. package/dist/src/event/dto/get-all-event.dto.d.ts +616 -0
  13. package/dist/src/event/dto/get-all-event.dto.js +29 -8
  14. package/dist/src/event/dto/get-by-id-event.dto.d.ts +317 -10
  15. package/dist/src/event/dto/get-by-id-event.dto.js +4 -0
  16. package/dist/src/event/dto/update-event.dto.d.ts +26 -20
  17. package/dist/src/event/dto/update-event.dto.js +1 -0
  18. package/dist/src/i18n/es.d.ts +14 -0
  19. package/dist/src/i18n/es.js +14 -0
  20. package/dist/src/i18n/es.js.map +1 -1
  21. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +104 -0
  22. package/dist/src/mi-expo/dto/get-invitations.dto.js +24 -0
  23. package/dist/src/mi-expo/dto/get-me.dto.d.ts +16 -0
  24. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +20 -0
  25. package/dist/src/mi-expo/dto/login.dto.d.ts +21 -0
  26. package/dist/src/mi-expo/dto/update-me.dto.d.ts +16 -0
  27. package/dist/src/mi-expo/exports.d.ts +1 -0
  28. package/dist/src/mi-expo/exports.js +1 -0
  29. package/dist/src/otp/dto/verify-otp.dto.d.ts +20 -0
  30. package/dist/src/profile/dto/create-profile.dto.d.ts +24 -0
  31. package/dist/src/profile/dto/delete-profile.dto.d.ts +16 -0
  32. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
  33. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -0
  34. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +16 -0
  35. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +16 -0
  36. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
  37. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +55 -1
  38. package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -0
  39. package/dist/src/profile/dto/find-trash.dto.d.ts +6 -0
  40. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
  41. package/dist/src/profile/dto/profile.dto.d.ts +8 -0
  42. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -0
  43. package/dist/src/schema/profile.schema.d.ts +8 -0
  44. package/dist/src/schema/profile.schema.js +2 -0
  45. package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
  46. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
  47. package/dist/src/ticket/dto/create-ticket.dto.d.ts +158 -4
  48. package/dist/src/ticket/dto/create-ticket.dto.js +10 -2
  49. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +370 -0
  50. package/dist/src/ticket/dto/find-by-event-ticket.dto.js +2 -0
  51. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +370 -0
  52. package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -0
  53. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +370 -0
  54. package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +2 -0
  55. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +331 -0
  56. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.js +19 -0
  57. package/dist/src/ticket/exports.d.ts +1 -0
  58. package/dist/src/ticket/exports.js +1 -0
  59. package/dist/types/prisma-schema/edge.js +7 -4
  60. package/dist/types/prisma-schema/index-browser.js +4 -1
  61. package/dist/types/prisma-schema/index.d.ts +629 -90
  62. package/dist/types/prisma-schema/index.js +7 -4
  63. package/dist/types/prisma-schema/package.json +1 -1
  64. package/dist/types/prisma-schema/schema.prisma +11 -3
  65. package/dist/types/prisma-schema/wasm.js +4 -1
  66. package/dist/types/schema.d.ts +342 -10
  67. package/package.json +1 -1
@@ -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
  }
@@ -3,6 +3,12 @@ export declare const findByTagGroupsProfileResponseSchema: 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>;
@@ -56,6 +62,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
56
62
  id: string;
57
63
  username: string | null;
58
64
  password: string | null;
65
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
59
66
  phoneNumber: string;
60
67
  secondaryPhoneNumber: string | null;
61
68
  fullName: string;
@@ -116,12 +123,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
116
123
  updated_at: Date;
117
124
  groupId: string;
118
125
  }[];
126
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
119
127
  }>, "many">;
120
128
  }, "strip", z.ZodTypeAny, {
121
129
  profiles: {
122
130
  id: string;
123
131
  username: string | null;
124
132
  password: string | null;
133
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
125
134
  phoneNumber: string;
126
135
  secondaryPhoneNumber: string | null;
127
136
  fullName: string;
@@ -184,12 +193,19 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
184
193
  updated_at: Date;
185
194
  groupId: string;
186
195
  }[];
196
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
187
197
  }[];
188
198
  }>;
189
199
  declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
190
200
  profiles: z.ZodArray<z.ZodObject<{
191
201
  id: z.ZodString;
192
202
  shortId: z.ZodNumber;
203
+ role: z.ZodDefault<z.ZodNativeEnum<{
204
+ USER: "USER";
205
+ ADMIN: "ADMIN";
206
+ FORM: "FORM";
207
+ MI_EXPO: "MI_EXPO";
208
+ }>>;
193
209
  firstTimeMiExpo: z.ZodBoolean;
194
210
  username: z.ZodNullable<z.ZodString>;
195
211
  password: z.ZodNullable<z.ZodString>;
@@ -242,6 +258,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
242
258
  id: string;
243
259
  username: string | null;
244
260
  password: string | null;
261
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
245
262
  phoneNumber: string;
246
263
  secondaryPhoneNumber: string | null;
247
264
  fullName: string;
@@ -302,12 +319,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
302
319
  updated_at: string;
303
320
  groupId: string;
304
321
  }[];
322
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
305
323
  }>, "many">;
306
324
  }, z.UnknownKeysParam, z.ZodTypeAny, {
307
325
  profiles: {
308
326
  id: string;
309
327
  username: string | null;
310
328
  password: string | null;
329
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
311
330
  phoneNumber: string;
312
331
  secondaryPhoneNumber: string | null;
313
332
  fullName: string;
@@ -370,6 +389,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
370
389
  updated_at: string;
371
390
  groupId: string;
372
391
  }[];
392
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
373
393
  }[];
374
394
  }>>;
375
395
  export declare class FindByTagGroupsProfileResponseDto extends FindByTagGroupsProfileResponseDto_base {