expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.6 → 0.36.0-EXPO-323-Enviar-mail-ticket.7

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 (39) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -6
  9. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -10
  10. package/dist/src/mi-expo/dto/login.dto.d.ts +11 -11
  11. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -6
  12. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -10
  13. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -4
  14. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -6
  15. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -10
  16. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -16
  17. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -6
  18. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -6
  19. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -10
  20. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -10
  21. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  22. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -10
  23. package/dist/src/profile/dto/profile.dto.d.ts +3 -3
  24. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -6
  25. package/dist/src/schema/profile.schema.d.ts +3 -3
  26. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -10
  27. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -10
  28. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -14
  29. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -14
  30. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -14
  31. package/dist/types/prisma-schema/edge.js +5 -5
  32. package/dist/types/prisma-schema/index-browser.js +2 -2
  33. package/dist/types/prisma-schema/index.d.ts +2 -2
  34. package/dist/types/prisma-schema/index.js +5 -5
  35. package/dist/types/prisma-schema/package.json +1 -1
  36. package/dist/types/prisma-schema/schema.prisma +1 -1
  37. package/dist/types/prisma-schema/wasm.js +2 -2
  38. package/dist/types/schema.d.ts +22 -22
  39. package/package.json +1 -1
@@ -7,8 +7,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
7
7
  USER: "USER";
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
- MI_EXPO: "MI_EXPO";
11
10
  TICKETS: "TICKETS";
11
+ MI_EXPO: "MI_EXPO";
12
12
  }>>;
13
13
  firstTimeMiExpo: z.ZodBoolean;
14
14
  username: z.ZodNullable<z.ZodString>;
@@ -63,7 +63,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
63
63
  id: string;
64
64
  username: string | null;
65
65
  password: string | null;
66
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
66
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
67
67
  phoneNumber: string;
68
68
  secondaryPhoneNumber: string | null;
69
69
  fullName: string;
@@ -124,14 +124,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
124
124
  updated_at: Date;
125
125
  groupId: string;
126
126
  }[];
127
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
127
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
128
128
  }>, "many">;
129
129
  }, "strip", z.ZodTypeAny, {
130
130
  profiles: {
131
131
  id: string;
132
132
  username: string | null;
133
133
  password: string | null;
134
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
134
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
135
135
  phoneNumber: string;
136
136
  secondaryPhoneNumber: string | null;
137
137
  fullName: string;
@@ -194,7 +194,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
194
194
  updated_at: Date;
195
195
  groupId: string;
196
196
  }[];
197
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
197
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
198
198
  }[];
199
199
  }>;
200
200
  declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -205,8 +205,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
205
205
  USER: "USER";
206
206
  ADMIN: "ADMIN";
207
207
  FORM: "FORM";
208
- MI_EXPO: "MI_EXPO";
209
208
  TICKETS: "TICKETS";
209
+ MI_EXPO: "MI_EXPO";
210
210
  }>>;
211
211
  firstTimeMiExpo: z.ZodBoolean;
212
212
  username: z.ZodNullable<z.ZodString>;
@@ -260,7 +260,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
260
260
  id: string;
261
261
  username: string | null;
262
262
  password: string | null;
263
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
263
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
264
264
  phoneNumber: string;
265
265
  secondaryPhoneNumber: string | null;
266
266
  fullName: string;
@@ -321,14 +321,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
321
321
  updated_at: string;
322
322
  groupId: string;
323
323
  }[];
324
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
324
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
325
325
  }>, "many">;
326
326
  }, z.UnknownKeysParam, z.ZodTypeAny, {
327
327
  profiles: {
328
328
  id: string;
329
329
  username: string | null;
330
330
  password: string | null;
331
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
331
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
332
332
  phoneNumber: string;
333
333
  secondaryPhoneNumber: string | null;
334
334
  fullName: string;
@@ -391,7 +391,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
391
391
  updated_at: string;
392
392
  groupId: string;
393
393
  }[];
394
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
394
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
395
395
  }[];
396
396
  }>>;
397
397
  export declare class FindByTagGroupsProfileResponseDto extends FindByTagGroupsProfileResponseDto_base {
@@ -7,8 +7,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
7
7
  USER: "USER";
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
- MI_EXPO: "MI_EXPO";
11
10
  TICKETS: "TICKETS";
11
+ MI_EXPO: "MI_EXPO";
12
12
  }>>;
13
13
  firstTimeMiExpo: z.ZodBoolean;
14
14
  username: z.ZodNullable<z.ZodString>;
@@ -90,7 +90,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
90
90
  id: string;
91
91
  username: string | null;
92
92
  password: string | null;
93
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
93
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
94
94
  phoneNumber: string;
95
95
  secondaryPhoneNumber: string | null;
96
96
  fullName: string;
@@ -161,14 +161,14 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
161
161
  isExclusive: boolean;
162
162
  };
163
163
  }[];
164
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
164
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
165
165
  }>, "many">;
166
166
  }, "strip", z.ZodTypeAny, {
167
167
  profiles: {
168
168
  id: string;
169
169
  username: string | null;
170
170
  password: string | null;
171
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
171
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
172
172
  phoneNumber: string;
173
173
  secondaryPhoneNumber: string | null;
174
174
  fullName: string;
@@ -241,7 +241,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
241
241
  isExclusive: boolean;
242
242
  };
243
243
  }[];
244
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
244
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
245
245
  }[];
246
246
  }>;
247
247
  declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -252,8 +252,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
252
252
  USER: "USER";
253
253
  ADMIN: "ADMIN";
254
254
  FORM: "FORM";
255
- MI_EXPO: "MI_EXPO";
256
255
  TICKETS: "TICKETS";
256
+ MI_EXPO: "MI_EXPO";
257
257
  }>>;
258
258
  firstTimeMiExpo: z.ZodBoolean;
259
259
  username: z.ZodNullable<z.ZodString>;
@@ -330,7 +330,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
330
330
  id: string;
331
331
  username: string | null;
332
332
  password: string | null;
333
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
333
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
334
334
  phoneNumber: string;
335
335
  secondaryPhoneNumber: string | null;
336
336
  fullName: string;
@@ -401,14 +401,14 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
401
401
  isExclusive: boolean;
402
402
  };
403
403
  }[];
404
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
404
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
405
405
  }>, "many">;
406
406
  }, z.UnknownKeysParam, z.ZodTypeAny, {
407
407
  profiles: {
408
408
  id: string;
409
409
  username: string | null;
410
410
  password: string | null;
411
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
411
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
412
412
  phoneNumber: string;
413
413
  secondaryPhoneNumber: string | null;
414
414
  fullName: string;
@@ -481,7 +481,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
481
481
  isExclusive: boolean;
482
482
  };
483
483
  }[];
484
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
484
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
485
485
  }[];
486
486
  }>>;
487
487
  export declare class FindByTagsProfileResponseDto extends FindByTagsProfileResponseDto_base {
@@ -7,8 +7,8 @@ export declare const findTrashResponseSchema: z.ZodObject<{
7
7
  USER: "USER";
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
- MI_EXPO: "MI_EXPO";
11
10
  TICKETS: "TICKETS";
11
+ MI_EXPO: "MI_EXPO";
12
12
  }>>;
13
13
  firstTimeMiExpo: z.ZodBoolean;
14
14
  username: z.ZodNullable<z.ZodString>;
@@ -7,8 +7,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
7
7
  USER: "USER";
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
- MI_EXPO: "MI_EXPO";
11
10
  TICKETS: "TICKETS";
11
+ MI_EXPO: "MI_EXPO";
12
12
  }>>;
13
13
  firstTimeMiExpo: z.ZodBoolean;
14
14
  username: z.ZodNullable<z.ZodString>;
@@ -172,7 +172,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
172
172
  id: string;
173
173
  username: string | null;
174
174
  password: string | null;
175
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
175
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
176
176
  phoneNumber: string;
177
177
  secondaryPhoneNumber: string | null;
178
178
  fullName: string;
@@ -277,14 +277,14 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
277
277
  groupId: string;
278
278
  }[];
279
279
  inChat: boolean;
280
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
280
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
281
281
  }>, "many">;
282
282
  }, "strip", z.ZodTypeAny, {
283
283
  profiles: {
284
284
  id: string;
285
285
  username: string | null;
286
286
  password: string | null;
287
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
287
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
288
288
  phoneNumber: string;
289
289
  secondaryPhoneNumber: string | null;
290
290
  fullName: string;
@@ -391,7 +391,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
391
391
  groupId: string;
392
392
  }[];
393
393
  inChat: boolean;
394
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
394
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
395
395
  }[];
396
396
  }>;
397
397
  declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -402,8 +402,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
402
402
  USER: "USER";
403
403
  ADMIN: "ADMIN";
404
404
  FORM: "FORM";
405
- MI_EXPO: "MI_EXPO";
406
405
  TICKETS: "TICKETS";
406
+ MI_EXPO: "MI_EXPO";
407
407
  }>>;
408
408
  firstTimeMiExpo: z.ZodBoolean;
409
409
  username: z.ZodNullable<z.ZodString>;
@@ -563,7 +563,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
563
563
  id: string;
564
564
  username: string | null;
565
565
  password: string | null;
566
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
566
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
567
567
  phoneNumber: string;
568
568
  secondaryPhoneNumber: string | null;
569
569
  fullName: string;
@@ -668,14 +668,14 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
668
668
  groupId: string;
669
669
  }[];
670
670
  inChat: boolean;
671
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
671
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
672
672
  }>, "many">;
673
673
  }, z.UnknownKeysParam, z.ZodTypeAny, {
674
674
  profiles: {
675
675
  id: string;
676
676
  username: string | null;
677
677
  password: string | null;
678
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
678
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
679
679
  phoneNumber: string;
680
680
  secondaryPhoneNumber: string | null;
681
681
  fullName: string;
@@ -782,7 +782,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
782
782
  groupId: string;
783
783
  }[];
784
784
  inChat: boolean;
785
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
785
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
786
786
  }[];
787
787
  }>>;
788
788
  export declare class FindWithActiveChatResponseDto extends FindWithActiveChatResponseDto_base {
@@ -5,8 +5,8 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
5
5
  USER: "USER";
6
6
  ADMIN: "ADMIN";
7
7
  FORM: "FORM";
8
- MI_EXPO: "MI_EXPO";
9
8
  TICKETS: "TICKETS";
9
+ MI_EXPO: "MI_EXPO";
10
10
  }>>;
11
11
  firstTimeMiExpo: import("zod").ZodBoolean;
12
12
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -33,7 +33,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
33
33
  id: string;
34
34
  username: string | null;
35
35
  password: string | null;
36
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
36
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
37
37
  phoneNumber: string;
38
38
  secondaryPhoneNumber: string | null;
39
39
  fullName: string;
@@ -78,7 +78,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
78
78
  residenceLocationId: string | null;
79
79
  isInTrash: boolean;
80
80
  movedToTrashDate: string | null;
81
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
81
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
82
82
  }>>;
83
83
  export declare class ProfileDto extends ProfileDto_base {
84
84
  }
@@ -251,8 +251,8 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
251
251
  USER: "USER";
252
252
  ADMIN: "ADMIN";
253
253
  FORM: "FORM";
254
- MI_EXPO: "MI_EXPO";
255
254
  TICKETS: "TICKETS";
255
+ MI_EXPO: "MI_EXPO";
256
256
  }>>;
257
257
  firstTimeMiExpo: z.ZodBoolean;
258
258
  username: z.ZodNullable<z.ZodString>;
@@ -279,7 +279,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
279
279
  id: string;
280
280
  username: string | null;
281
281
  password: string | null;
282
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
282
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
283
283
  phoneNumber: string;
284
284
  secondaryPhoneNumber: string | null;
285
285
  fullName: string;
@@ -324,7 +324,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
324
324
  residenceLocationId: string | null;
325
325
  isInTrash: boolean;
326
326
  movedToTrashDate: Date | null;
327
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
327
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
328
328
  }>;
329
329
  declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
330
330
  id: z.ZodString;
@@ -333,8 +333,8 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
333
333
  USER: "USER";
334
334
  ADMIN: "ADMIN";
335
335
  FORM: "FORM";
336
- MI_EXPO: "MI_EXPO";
337
336
  TICKETS: "TICKETS";
337
+ MI_EXPO: "MI_EXPO";
338
338
  }>>;
339
339
  firstTimeMiExpo: z.ZodBoolean;
340
340
  username: z.ZodNullable<z.ZodString>;
@@ -361,7 +361,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
361
361
  id: string;
362
362
  username: string | null;
363
363
  password: string | null;
364
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
364
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
365
365
  phoneNumber: string;
366
366
  secondaryPhoneNumber: string | null;
367
367
  fullName: string;
@@ -406,7 +406,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
406
406
  residenceLocationId: string | null;
407
407
  isInTrash: boolean;
408
408
  movedToTrashDate: string | null;
409
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
409
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
410
410
  }>>;
411
411
  export declare class UpdateProfileResponseDto extends UpdateProfileResponseDto_base {
412
412
  }
@@ -6,8 +6,8 @@ export declare const profileSchema: z.ZodObject<{
6
6
  USER: "USER";
7
7
  ADMIN: "ADMIN";
8
8
  FORM: "FORM";
9
- MI_EXPO: "MI_EXPO";
10
9
  TICKETS: "TICKETS";
10
+ MI_EXPO: "MI_EXPO";
11
11
  }>>;
12
12
  firstTimeMiExpo: z.ZodBoolean;
13
13
  username: z.ZodNullable<z.ZodString>;
@@ -34,7 +34,7 @@ export declare const profileSchema: z.ZodObject<{
34
34
  id: string;
35
35
  username: string | null;
36
36
  password: string | null;
37
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
37
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
38
38
  phoneNumber: string;
39
39
  secondaryPhoneNumber: string | null;
40
40
  fullName: string;
@@ -79,5 +79,5 @@ export declare const profileSchema: z.ZodObject<{
79
79
  residenceLocationId: string | null;
80
80
  isInTrash: boolean;
81
81
  movedToTrashDate: Date | null;
82
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
82
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
83
83
  }>;
@@ -29,8 +29,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
29
29
  USER: "USER";
30
30
  ADMIN: "ADMIN";
31
31
  FORM: "FORM";
32
- MI_EXPO: "MI_EXPO";
33
32
  TICKETS: "TICKETS";
33
+ MI_EXPO: "MI_EXPO";
34
34
  }>>;
35
35
  firstTimeMiExpo: z.ZodBoolean;
36
36
  username: z.ZodNullable<z.ZodString>;
@@ -57,7 +57,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
57
57
  id: string;
58
58
  username: string | null;
59
59
  password: string | null;
60
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
60
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
61
61
  phoneNumber: string;
62
62
  secondaryPhoneNumber: string | null;
63
63
  fullName: string;
@@ -102,14 +102,14 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
102
102
  residenceLocationId: string | null;
103
103
  isInTrash: boolean;
104
104
  movedToTrashDate: Date | null;
105
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
105
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
106
106
  }>, "many">;
107
107
  }, "strip", z.ZodTypeAny, {
108
108
  profiles: {
109
109
  id: string;
110
110
  username: string | null;
111
111
  password: string | null;
112
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
112
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
113
113
  phoneNumber: string;
114
114
  secondaryPhoneNumber: string | null;
115
115
  fullName: string;
@@ -156,7 +156,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
156
156
  residenceLocationId: string | null;
157
157
  isInTrash: boolean;
158
158
  movedToTrashDate: Date | null;
159
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
159
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
160
160
  }[];
161
161
  }>;
162
162
  declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -167,8 +167,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
167
167
  USER: "USER";
168
168
  ADMIN: "ADMIN";
169
169
  FORM: "FORM";
170
- MI_EXPO: "MI_EXPO";
171
170
  TICKETS: "TICKETS";
171
+ MI_EXPO: "MI_EXPO";
172
172
  }>>;
173
173
  firstTimeMiExpo: z.ZodBoolean;
174
174
  username: z.ZodNullable<z.ZodString>;
@@ -195,7 +195,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
195
195
  id: string;
196
196
  username: string | null;
197
197
  password: string | null;
198
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
198
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
199
199
  phoneNumber: string;
200
200
  secondaryPhoneNumber: string | null;
201
201
  fullName: string;
@@ -240,14 +240,14 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
240
240
  residenceLocationId: string | null;
241
241
  isInTrash: boolean;
242
242
  movedToTrashDate: string | null;
243
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
243
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
244
244
  }>, "many">;
245
245
  }, z.UnknownKeysParam, z.ZodTypeAny, {
246
246
  profiles: {
247
247
  id: string;
248
248
  username: string | null;
249
249
  password: string | null;
250
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
250
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
251
251
  phoneNumber: string;
252
252
  secondaryPhoneNumber: string | null;
253
253
  fullName: string;
@@ -294,7 +294,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
294
294
  residenceLocationId: string | null;
295
295
  isInTrash: boolean;
296
296
  movedToTrashDate: string | null;
297
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
297
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
298
298
  }[];
299
299
  }>>;
300
300
  export declare class MassiveAllocationResponseDto extends MassiveAllocationResponseDto_base {
@@ -29,8 +29,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
29
29
  USER: "USER";
30
30
  ADMIN: "ADMIN";
31
31
  FORM: "FORM";
32
- MI_EXPO: "MI_EXPO";
33
32
  TICKETS: "TICKETS";
33
+ MI_EXPO: "MI_EXPO";
34
34
  }>>;
35
35
  firstTimeMiExpo: z.ZodBoolean;
36
36
  username: z.ZodNullable<z.ZodString>;
@@ -57,7 +57,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
57
57
  id: string;
58
58
  username: string | null;
59
59
  password: string | null;
60
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
60
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
61
61
  phoneNumber: string;
62
62
  secondaryPhoneNumber: string | null;
63
63
  fullName: string;
@@ -102,14 +102,14 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
102
102
  residenceLocationId: string | null;
103
103
  isInTrash: boolean;
104
104
  movedToTrashDate: Date | null;
105
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
105
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
106
106
  }>, "many">;
107
107
  }, "strip", z.ZodTypeAny, {
108
108
  profiles: {
109
109
  id: string;
110
110
  username: string | null;
111
111
  password: string | null;
112
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
112
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
113
113
  phoneNumber: string;
114
114
  secondaryPhoneNumber: string | null;
115
115
  fullName: string;
@@ -156,7 +156,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
156
156
  residenceLocationId: string | null;
157
157
  isInTrash: boolean;
158
158
  movedToTrashDate: Date | null;
159
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
159
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
160
160
  }[];
161
161
  }>;
162
162
  declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -167,8 +167,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
167
167
  USER: "USER";
168
168
  ADMIN: "ADMIN";
169
169
  FORM: "FORM";
170
- MI_EXPO: "MI_EXPO";
171
170
  TICKETS: "TICKETS";
171
+ MI_EXPO: "MI_EXPO";
172
172
  }>>;
173
173
  firstTimeMiExpo: z.ZodBoolean;
174
174
  username: z.ZodNullable<z.ZodString>;
@@ -195,7 +195,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
195
195
  id: string;
196
196
  username: string | null;
197
197
  password: string | null;
198
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
198
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
199
199
  phoneNumber: string;
200
200
  secondaryPhoneNumber: string | null;
201
201
  fullName: string;
@@ -240,14 +240,14 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
240
240
  residenceLocationId: string | null;
241
241
  isInTrash: boolean;
242
242
  movedToTrashDate: string | null;
243
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
243
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
244
244
  }>, "many">;
245
245
  }, z.UnknownKeysParam, z.ZodTypeAny, {
246
246
  profiles: {
247
247
  id: string;
248
248
  username: string | null;
249
249
  password: string | null;
250
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
250
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
251
251
  phoneNumber: string;
252
252
  secondaryPhoneNumber: string | null;
253
253
  fullName: string;
@@ -294,7 +294,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
294
294
  residenceLocationId: string | null;
295
295
  isInTrash: boolean;
296
296
  movedToTrashDate: string | null;
297
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
297
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
298
298
  }[];
299
299
  }>>;
300
300
  export declare class MassiveDeallocationResponseDto extends MassiveDeallocationResponseDto_base {