expo-backend-types 0.35.0 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.2

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