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

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 -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/mi-expo/dto/get-me.dto.d.ts +6 -4
  9. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -8
  10. package/dist/src/mi-expo/dto/login.dto.d.ts +11 -8
  11. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -4
  12. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -8
  13. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
  14. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -4
  15. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -8
  16. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -12
  17. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -4
  18. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -4
  19. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -8
  20. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -8
  21. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
  22. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -8
  23. package/dist/src/profile/dto/profile.dto.d.ts +3 -2
  24. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -4
  25. package/dist/src/schema/profile.schema.d.ts +3 -2
  26. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -8
  27. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -8
  28. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -12
  29. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -12
  30. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -12
  31. package/dist/types/prisma-schema/edge.js +4 -3
  32. package/dist/types/prisma-schema/index-browser.js +1 -0
  33. package/dist/types/prisma-schema/index.d.ts +1 -0
  34. package/dist/types/prisma-schema/index.js +4 -3
  35. package/dist/types/prisma-schema/package.json +1 -1
  36. package/dist/types/prisma-schema/schema.prisma +1 -0
  37. package/dist/types/prisma-schema/wasm.js +1 -0
  38. package/dist/types/schema.d.ts +22 -22
  39. package/package.json +1 -1
@@ -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 {
@@ -48,6 +48,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
48
48
  USER: "USER";
49
49
  ADMIN: "ADMIN";
50
50
  FORM: "FORM";
51
+ TICKETS: "TICKETS";
51
52
  MI_EXPO: "MI_EXPO";
52
53
  }>>;
53
54
  firstTimeMiExpo: z.ZodBoolean;
@@ -75,7 +76,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
75
76
  id: string;
76
77
  username: string | null;
77
78
  password: string | null;
78
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
79
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
79
80
  phoneNumber: string;
80
81
  secondaryPhoneNumber: string | null;
81
82
  fullName: string;
@@ -120,7 +121,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
120
121
  residenceLocationId: string | null;
121
122
  isInTrash: boolean;
122
123
  movedToTrashDate: Date | null;
123
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
124
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
124
125
  }>>;
125
126
  }>, "strip", z.ZodTypeAny, {
126
127
  event: {
@@ -132,7 +133,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
132
133
  id: string;
133
134
  username: string | null;
134
135
  password: string | null;
135
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
136
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
136
137
  phoneNumber: string;
137
138
  secondaryPhoneNumber: string | null;
138
139
  fullName: string;
@@ -192,7 +193,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
192
193
  residenceLocationId: string | null;
193
194
  isInTrash: boolean;
194
195
  movedToTrashDate: Date | null;
195
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
196
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
196
197
  } | null;
197
198
  id: string;
198
199
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -214,7 +215,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
214
215
  id: string;
215
216
  username: string | null;
216
217
  password: string | null;
217
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
218
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
218
219
  phoneNumber: string;
219
220
  secondaryPhoneNumber: string | null;
220
221
  fullName: string;
@@ -276,7 +277,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
276
277
  residenceLocationId: string | null;
277
278
  isInTrash: boolean;
278
279
  movedToTrashDate: Date | null;
279
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
280
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
280
281
  } | null;
281
282
  id: string;
282
283
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -326,6 +327,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
326
327
  USER: "USER";
327
328
  ADMIN: "ADMIN";
328
329
  FORM: "FORM";
330
+ TICKETS: "TICKETS";
329
331
  MI_EXPO: "MI_EXPO";
330
332
  }>>;
331
333
  firstTimeMiExpo: z.ZodBoolean;
@@ -353,7 +355,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
353
355
  id: string;
354
356
  username: string | null;
355
357
  password: string | null;
356
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
358
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
357
359
  phoneNumber: string;
358
360
  secondaryPhoneNumber: string | null;
359
361
  fullName: string;
@@ -398,7 +400,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
398
400
  residenceLocationId: string | null;
399
401
  isInTrash: boolean;
400
402
  movedToTrashDate: string | null;
401
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
403
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
402
404
  }>>;
403
405
  }, z.UnknownKeysParam, z.ZodTypeAny, {
404
406
  event: {
@@ -410,7 +412,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
410
412
  id: string;
411
413
  username: string | null;
412
414
  password: string | null;
413
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
415
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
414
416
  phoneNumber: string;
415
417
  secondaryPhoneNumber: string | null;
416
418
  fullName: string;
@@ -470,7 +472,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
470
472
  residenceLocationId: string | null;
471
473
  isInTrash: boolean;
472
474
  movedToTrashDate: string | null;
473
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
475
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
474
476
  } | null;
475
477
  id: string;
476
478
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -492,7 +494,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
492
494
  id: string;
493
495
  username: string | null;
494
496
  password: string | null;
495
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
497
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
496
498
  phoneNumber: string;
497
499
  secondaryPhoneNumber: string | null;
498
500
  fullName: string;
@@ -554,7 +556,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
554
556
  residenceLocationId: string | null;
555
557
  isInTrash: boolean;
556
558
  movedToTrashDate: string | null;
557
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
559
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
558
560
  } | null;
559
561
  id: string;
560
562
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -48,6 +48,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
48
48
  USER: "USER";
49
49
  ADMIN: "ADMIN";
50
50
  FORM: "FORM";
51
+ TICKETS: "TICKETS";
51
52
  MI_EXPO: "MI_EXPO";
52
53
  }>>;
53
54
  firstTimeMiExpo: z.ZodBoolean;
@@ -75,7 +76,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
75
76
  id: string;
76
77
  username: string | null;
77
78
  password: string | null;
78
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
79
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
79
80
  phoneNumber: string;
80
81
  secondaryPhoneNumber: string | null;
81
82
  fullName: string;
@@ -120,7 +121,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
120
121
  residenceLocationId: string | null;
121
122
  isInTrash: boolean;
122
123
  movedToTrashDate: Date | null;
123
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
124
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
124
125
  }>>;
125
126
  }>, "strip", z.ZodTypeAny, {
126
127
  event: {
@@ -132,7 +133,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
132
133
  id: string;
133
134
  username: string | null;
134
135
  password: string | null;
135
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
136
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
136
137
  phoneNumber: string;
137
138
  secondaryPhoneNumber: string | null;
138
139
  fullName: string;
@@ -192,7 +193,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
192
193
  residenceLocationId: string | null;
193
194
  isInTrash: boolean;
194
195
  movedToTrashDate: Date | null;
195
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
196
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
196
197
  } | null;
197
198
  id: string;
198
199
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -214,7 +215,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
214
215
  id: string;
215
216
  username: string | null;
216
217
  password: string | null;
217
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
218
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
218
219
  phoneNumber: string;
219
220
  secondaryPhoneNumber: string | null;
220
221
  fullName: string;
@@ -276,7 +277,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
276
277
  residenceLocationId: string | null;
277
278
  isInTrash: boolean;
278
279
  movedToTrashDate: Date | null;
279
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
280
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
280
281
  } | null;
281
282
  id: string;
282
283
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -326,6 +327,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
326
327
  USER: "USER";
327
328
  ADMIN: "ADMIN";
328
329
  FORM: "FORM";
330
+ TICKETS: "TICKETS";
329
331
  MI_EXPO: "MI_EXPO";
330
332
  }>>;
331
333
  firstTimeMiExpo: z.ZodBoolean;
@@ -353,7 +355,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
353
355
  id: string;
354
356
  username: string | null;
355
357
  password: string | null;
356
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
358
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
357
359
  phoneNumber: string;
358
360
  secondaryPhoneNumber: string | null;
359
361
  fullName: string;
@@ -398,7 +400,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
398
400
  residenceLocationId: string | null;
399
401
  isInTrash: boolean;
400
402
  movedToTrashDate: string | null;
401
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
403
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
402
404
  }>>;
403
405
  }, z.UnknownKeysParam, z.ZodTypeAny, {
404
406
  event: {
@@ -410,7 +412,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
410
412
  id: string;
411
413
  username: string | null;
412
414
  password: string | null;
413
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
415
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
414
416
  phoneNumber: string;
415
417
  secondaryPhoneNumber: string | null;
416
418
  fullName: string;
@@ -470,7 +472,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
470
472
  residenceLocationId: string | null;
471
473
  isInTrash: boolean;
472
474
  movedToTrashDate: string | null;
473
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
475
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
474
476
  } | null;
475
477
  id: string;
476
478
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -492,7 +494,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
492
494
  id: string;
493
495
  username: string | null;
494
496
  password: string | null;
495
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
497
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
496
498
  phoneNumber: string;
497
499
  secondaryPhoneNumber: string | null;
498
500
  fullName: string;
@@ -554,7 +556,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
554
556
  residenceLocationId: string | null;
555
557
  isInTrash: boolean;
556
558
  movedToTrashDate: string | null;
557
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
559
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
558
560
  } | null;
559
561
  id: string;
560
562
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";