expo-backend-types 0.35.0-EXPO-323-Enviar-mail-ticket.1 → 0.35.0-EXPO-323-Enviar-mail-ticket.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 +10 -0
  9. package/dist/src/i18n/es.js +10 -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/find-by-event-ticket.dto.d.ts +14 -12
  32. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -12
  33. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -12
  34. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  35. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  36. package/dist/types/prisma-schema/edge.js +5 -4
  37. package/dist/types/prisma-schema/index-browser.js +2 -1
  38. package/dist/types/prisma-schema/index.d.ts +2 -1
  39. package/dist/types/prisma-schema/index.js +5 -4
  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 +2 -1
  43. package/dist/types/schema.d.ts +78 -22
  44. package/package.json +3 -2
@@ -8,6 +8,7 @@ export declare const loginMiExpoSchema: z.ZodObject<Pick<{
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
10
  MI_EXPO: "MI_EXPO";
11
+ TICKETS: "TICKETS";
11
12
  }>;
12
13
  isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
13
14
  fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -41,6 +42,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
41
42
  ADMIN: "ADMIN";
42
43
  FORM: "FORM";
43
44
  MI_EXPO: "MI_EXPO";
45
+ TICKETS: "TICKETS";
44
46
  }>>;
45
47
  firstTimeMiExpo: z.ZodBoolean;
46
48
  username: z.ZodNullable<z.ZodString>;
@@ -66,7 +68,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
66
68
  }, "password">, "strip", z.ZodTypeAny, {
67
69
  id: string;
68
70
  username: string | null;
69
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
71
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
70
72
  phoneNumber: string;
71
73
  secondaryPhoneNumber: string | null;
72
74
  fullName: string;
@@ -110,7 +112,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
110
112
  residenceLocationId: string | null;
111
113
  isInTrash: boolean;
112
114
  movedToTrashDate: Date | null;
113
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
115
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
114
116
  }>;
115
117
  backendTokens: z.ZodObject<{
116
118
  accessToken: z.ZodString;
@@ -129,7 +131,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
129
131
  user: {
130
132
  id: string;
131
133
  username: string | null;
132
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
134
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
133
135
  phoneNumber: string;
134
136
  secondaryPhoneNumber: string | null;
135
137
  fullName: string;
@@ -180,7 +182,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
180
182
  residenceLocationId: string | null;
181
183
  isInTrash: boolean;
182
184
  movedToTrashDate: Date | null;
183
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
185
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
184
186
  };
185
187
  backendTokens: {
186
188
  accessToken: string;
@@ -197,6 +199,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
197
199
  ADMIN: "ADMIN";
198
200
  FORM: "FORM";
199
201
  MI_EXPO: "MI_EXPO";
202
+ TICKETS: "TICKETS";
200
203
  }>>;
201
204
  phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
202
205
  secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
@@ -221,7 +224,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
221
224
  }, z.UnknownKeysParam, z.ZodTypeAny, {
222
225
  id: string;
223
226
  username: string | null;
224
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
227
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
225
228
  phoneNumber: string;
226
229
  secondaryPhoneNumber: string | null;
227
230
  fullName: string;
@@ -265,7 +268,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
265
268
  residenceLocationId: string | null;
266
269
  isInTrash: boolean;
267
270
  movedToTrashDate: string | null;
268
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
271
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
269
272
  }>;
270
273
  backendTokens: z.ZodObject<{
271
274
  accessToken: z.ZodString;
@@ -284,7 +287,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
284
287
  user: {
285
288
  id: string;
286
289
  username: string | null;
287
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
290
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
288
291
  phoneNumber: string;
289
292
  secondaryPhoneNumber: string | null;
290
293
  fullName: string;
@@ -335,7 +338,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
335
338
  residenceLocationId: string | null;
336
339
  isInTrash: boolean;
337
340
  movedToTrashDate: string | null;
338
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
341
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
339
342
  };
340
343
  backendTokens: {
341
344
  accessToken: string;
@@ -214,6 +214,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
214
214
  ADMIN: "ADMIN";
215
215
  FORM: "FORM";
216
216
  MI_EXPO: "MI_EXPO";
217
+ TICKETS: "TICKETS";
217
218
  }>>;
218
219
  firstTimeMiExpo: import("zod").ZodBoolean;
219
220
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -239,7 +240,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
239
240
  }, "password">, "strip", import("zod").ZodTypeAny, {
240
241
  id: string;
241
242
  username: string | null;
242
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
243
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
243
244
  phoneNumber: string;
244
245
  secondaryPhoneNumber: string | null;
245
246
  fullName: string;
@@ -283,7 +284,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
283
284
  residenceLocationId: string | null;
284
285
  isInTrash: boolean;
285
286
  movedToTrashDate: Date | null;
286
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
287
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
287
288
  }>;
288
289
  declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
289
290
  id: import("zod").ZodString;
@@ -293,6 +294,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
293
294
  ADMIN: "ADMIN";
294
295
  FORM: "FORM";
295
296
  MI_EXPO: "MI_EXPO";
297
+ TICKETS: "TICKETS";
296
298
  }>>;
297
299
  phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
298
300
  secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
@@ -317,7 +319,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
317
319
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
318
320
  id: string;
319
321
  username: string | null;
320
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
322
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
321
323
  phoneNumber: string;
322
324
  secondaryPhoneNumber: string | null;
323
325
  fullName: string;
@@ -361,7 +363,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
361
363
  residenceLocationId: string | null;
362
364
  isInTrash: boolean;
363
365
  movedToTrashDate: string | null;
364
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
366
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
365
367
  }>>;
366
368
  export declare class UpdateMiExpoMeResponseDto extends UpdateMiExpoMeResponseDto_base {
367
369
  }
@@ -31,6 +31,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
31
31
  ADMIN: "ADMIN";
32
32
  FORM: "FORM";
33
33
  MI_EXPO: "MI_EXPO";
34
+ TICKETS: "TICKETS";
34
35
  }>>;
35
36
  firstTimeMiExpo: z.ZodBoolean;
36
37
  username: z.ZodNullable<z.ZodString>;
@@ -98,7 +99,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
98
99
  id: string;
99
100
  username: string | null;
100
101
  password: string | null;
101
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
102
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
102
103
  phoneNumber: string;
103
104
  secondaryPhoneNumber: string | null;
104
105
  fullName: string;
@@ -167,14 +168,14 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
167
168
  country: string;
168
169
  city: string;
169
170
  } | null;
170
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
171
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
171
172
  }>;
172
173
  }, "strip", z.ZodTypeAny, {
173
174
  profile: {
174
175
  id: string;
175
176
  username: string | null;
176
177
  password: string | null;
177
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
178
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
178
179
  phoneNumber: string;
179
180
  secondaryPhoneNumber: string | null;
180
181
  fullName: string;
@@ -246,7 +247,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
246
247
  country: string;
247
248
  city: string;
248
249
  } | null;
249
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
250
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
250
251
  };
251
252
  success: boolean;
252
253
  }>;
@@ -260,6 +261,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
260
261
  ADMIN: "ADMIN";
261
262
  FORM: "FORM";
262
263
  MI_EXPO: "MI_EXPO";
264
+ TICKETS: "TICKETS";
263
265
  }>>;
264
266
  firstTimeMiExpo: z.ZodBoolean;
265
267
  username: z.ZodNullable<z.ZodString>;
@@ -318,7 +320,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
318
320
  id: string;
319
321
  username: string | null;
320
322
  password: string | null;
321
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
323
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
322
324
  phoneNumber: string;
323
325
  secondaryPhoneNumber: string | null;
324
326
  fullName: string;
@@ -387,14 +389,14 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
387
389
  country: string;
388
390
  city: string;
389
391
  } | null;
390
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
392
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
391
393
  }>;
392
394
  }, z.UnknownKeysParam, z.ZodTypeAny, {
393
395
  profile: {
394
396
  id: string;
395
397
  username: string | null;
396
398
  password: string | null;
397
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
399
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
398
400
  phoneNumber: string;
399
401
  secondaryPhoneNumber: string | null;
400
402
  fullName: string;
@@ -466,7 +468,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
466
468
  country: string;
467
469
  city: string;
468
470
  } | null;
469
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
471
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
470
472
  };
471
473
  success: boolean;
472
474
  }>>;
@@ -8,6 +8,7 @@ export declare const createProfileSchema: z.ZodObject<{
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
10
  MI_EXPO: "MI_EXPO";
11
+ TICKETS: "TICKETS";
11
12
  }>>;
12
13
  firstTimeMiExpo: z.ZodBoolean;
13
14
  username: z.ZodNullable<z.ZodString>;
@@ -442,6 +443,7 @@ declare const similarProfileSchema: z.ZodObject<{
442
443
  ADMIN: "ADMIN";
443
444
  FORM: "FORM";
444
445
  MI_EXPO: "MI_EXPO";
446
+ TICKETS: "TICKETS";
445
447
  }>>;
446
448
  firstTimeMiExpo: z.ZodBoolean;
447
449
  username: z.ZodNullable<z.ZodString>;
@@ -503,6 +505,7 @@ export declare const createProfileResponseSchema: z.ZodObject<{
503
505
  ADMIN: "ADMIN";
504
506
  FORM: "FORM";
505
507
  MI_EXPO: "MI_EXPO";
508
+ TICKETS: "TICKETS";
506
509
  }>>;
507
510
  firstTimeMiExpo: z.ZodBoolean;
508
511
  username: z.ZodNullable<z.ZodString>;
@@ -632,6 +635,7 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
632
635
  ADMIN: "ADMIN";
633
636
  FORM: "FORM";
634
637
  MI_EXPO: "MI_EXPO";
638
+ TICKETS: "TICKETS";
635
639
  }>>;
636
640
  firstTimeMiExpo: z.ZodBoolean;
637
641
  username: z.ZodNullable<z.ZodString>;
@@ -6,6 +6,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
6
6
  ADMIN: "ADMIN";
7
7
  FORM: "FORM";
8
8
  MI_EXPO: "MI_EXPO";
9
+ TICKETS: "TICKETS";
9
10
  }>>;
10
11
  firstTimeMiExpo: import("zod").ZodBoolean;
11
12
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -32,7 +33,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
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" | "MI_EXPO" | "TICKETS";
36
37
  phoneNumber: string;
37
38
  secondaryPhoneNumber: string | null;
38
39
  fullName: string;
@@ -77,7 +78,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
77
78
  residenceLocationId: string | null;
78
79
  isInTrash: boolean;
79
80
  movedToTrashDate: Date | null;
80
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
81
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
81
82
  }>;
82
83
  declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
83
84
  id: import("zod").ZodString;
@@ -87,6 +88,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
87
88
  ADMIN: "ADMIN";
88
89
  FORM: "FORM";
89
90
  MI_EXPO: "MI_EXPO";
91
+ TICKETS: "TICKETS";
90
92
  }>>;
91
93
  firstTimeMiExpo: import("zod").ZodBoolean;
92
94
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -113,7 +115,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
113
115
  id: string;
114
116
  username: string | null;
115
117
  password: string | null;
116
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
118
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
117
119
  phoneNumber: string;
118
120
  secondaryPhoneNumber: string | null;
119
121
  fullName: string;
@@ -158,7 +160,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
158
160
  residenceLocationId: string | null;
159
161
  isInTrash: boolean;
160
162
  movedToTrashDate: string | null;
161
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
163
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
162
164
  }>>;
163
165
  export declare class DeleteProfileResponseDto extends DeleteProfileResponseDto_base {
164
166
  }
@@ -8,6 +8,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
10
  MI_EXPO: "MI_EXPO";
11
+ TICKETS: "TICKETS";
11
12
  }>>;
12
13
  firstTimeMiExpo: z.ZodBoolean;
13
14
  username: z.ZodNullable<z.ZodString>;
@@ -85,7 +86,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
85
86
  id: string;
86
87
  username: string | null;
87
88
  password: string | null;
88
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
89
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
89
90
  phoneNumber: string;
90
91
  secondaryPhoneNumber: string | null;
91
92
  fullName: string;
@@ -154,14 +155,14 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
154
155
  isExclusive: boolean;
155
156
  };
156
157
  }[];
157
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
158
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
158
159
  }>, "many">;
159
160
  }, "strip", z.ZodTypeAny, {
160
161
  profiles: {
161
162
  id: string;
162
163
  username: string | null;
163
164
  password: string | null;
164
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
165
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
165
166
  phoneNumber: string;
166
167
  secondaryPhoneNumber: string | null;
167
168
  fullName: string;
@@ -232,7 +233,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
232
233
  isExclusive: boolean;
233
234
  };
234
235
  }[];
235
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
236
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
236
237
  }[];
237
238
  }>;
238
239
  declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -244,6 +245,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
244
245
  ADMIN: "ADMIN";
245
246
  FORM: "FORM";
246
247
  MI_EXPO: "MI_EXPO";
248
+ TICKETS: "TICKETS";
247
249
  }>>;
248
250
  firstTimeMiExpo: z.ZodBoolean;
249
251
  username: z.ZodNullable<z.ZodString>;
@@ -315,7 +317,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
315
317
  id: string;
316
318
  username: string | null;
317
319
  password: string | null;
318
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
320
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
319
321
  phoneNumber: string;
320
322
  secondaryPhoneNumber: string | null;
321
323
  fullName: string;
@@ -384,14 +386,14 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
384
386
  isExclusive: boolean;
385
387
  };
386
388
  }[];
387
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
389
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
388
390
  }>, "many">;
389
391
  }, z.UnknownKeysParam, z.ZodTypeAny, {
390
392
  profiles: {
391
393
  id: string;
392
394
  username: string | null;
393
395
  password: string | null;
394
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
396
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
395
397
  phoneNumber: string;
396
398
  secondaryPhoneNumber: string | null;
397
399
  fullName: string;
@@ -462,7 +464,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
462
464
  isExclusive: boolean;
463
465
  };
464
466
  }[];
465
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
467
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
466
468
  }[];
467
469
  }>>;
468
470
  export declare class FindAllProfileResponseDto extends FindAllProfileResponseDto_base {
@@ -8,6 +8,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
10
  MI_EXPO: "MI_EXPO";
11
+ TICKETS: "TICKETS";
11
12
  }>>;
12
13
  firstTimeMiExpo: z.ZodBoolean;
13
14
  username: z.ZodNullable<z.ZodString>;
@@ -81,7 +82,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
81
82
  id: string;
82
83
  username: string | null;
83
84
  password: string | null;
84
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
85
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
85
86
  phoneNumber: string;
86
87
  secondaryPhoneNumber: string | null;
87
88
  fullName: string;
@@ -148,14 +149,14 @@ export declare const findByDateRangeSchema: z.ZodObject<{
148
149
  id: string;
149
150
  };
150
151
  }[];
151
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
152
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
152
153
  }>, "many">;
153
154
  }, "strip", z.ZodTypeAny, {
154
155
  profiles: {
155
156
  id: string;
156
157
  username: string | null;
157
158
  password: string | null;
158
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
159
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
159
160
  phoneNumber: string;
160
161
  secondaryPhoneNumber: string | null;
161
162
  fullName: string;
@@ -224,7 +225,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
224
225
  id: string;
225
226
  };
226
227
  }[];
227
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
228
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
228
229
  }[];
229
230
  }>;
230
231
  declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -236,6 +237,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
236
237
  ADMIN: "ADMIN";
237
238
  FORM: "FORM";
238
239
  MI_EXPO: "MI_EXPO";
240
+ TICKETS: "TICKETS";
239
241
  }>>;
240
242
  firstTimeMiExpo: z.ZodBoolean;
241
243
  username: z.ZodNullable<z.ZodString>;
@@ -302,7 +304,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
302
304
  id: string;
303
305
  username: string | null;
304
306
  password: string | null;
305
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
307
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
306
308
  phoneNumber: string;
307
309
  secondaryPhoneNumber: string | null;
308
310
  fullName: string;
@@ -369,14 +371,14 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
369
371
  id: string;
370
372
  };
371
373
  }[];
372
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
374
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
373
375
  }>, "many">;
374
376
  }, z.UnknownKeysParam, z.ZodTypeAny, {
375
377
  profiles: {
376
378
  id: string;
377
379
  username: string | null;
378
380
  password: string | null;
379
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
381
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
380
382
  phoneNumber: string;
381
383
  secondaryPhoneNumber: string | null;
382
384
  fullName: string;
@@ -445,7 +447,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
445
447
  id: string;
446
448
  };
447
449
  }[];
448
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
450
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
449
451
  }[];
450
452
  }>>;
451
453
  export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
@@ -458,6 +460,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
458
460
  ADMIN: "ADMIN";
459
461
  FORM: "FORM";
460
462
  MI_EXPO: "MI_EXPO";
463
+ TICKETS: "TICKETS";
461
464
  }>>;
462
465
  firstTimeMiExpo: z.ZodBoolean;
463
466
  username: z.ZodNullable<z.ZodString>;
@@ -531,7 +534,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
531
534
  id: string;
532
535
  username: string | null;
533
536
  password: string | null;
534
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
537
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
535
538
  phoneNumber: string;
536
539
  secondaryPhoneNumber: string | null;
537
540
  fullName: string;
@@ -598,7 +601,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
598
601
  id: string;
599
602
  };
600
603
  }[];
601
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
604
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
602
605
  }>, "many">>;
603
606
  declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
604
607
  id: z.ZodString;
@@ -608,6 +611,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
608
611
  ADMIN: "ADMIN";
609
612
  FORM: "FORM";
610
613
  MI_EXPO: "MI_EXPO";
614
+ TICKETS: "TICKETS";
611
615
  }>>;
612
616
  firstTimeMiExpo: z.ZodBoolean;
613
617
  username: z.ZodNullable<z.ZodString>;
@@ -681,7 +685,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
681
685
  id: string;
682
686
  username: string | null;
683
687
  password: string | null;
684
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
688
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
685
689
  phoneNumber: string;
686
690
  secondaryPhoneNumber: string | null;
687
691
  fullName: string;
@@ -748,7 +752,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
748
752
  id: string;
749
753
  };
750
754
  }[];
751
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
755
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
752
756
  }>, "many">>>;
753
757
  export declare class FindByDateRangeResponseDto extends FindByDateRangeResponseDto_base {
754
758
  }
@@ -7,6 +7,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
7
7
  ADMIN: "ADMIN";
8
8
  FORM: "FORM";
9
9
  MI_EXPO: "MI_EXPO";
10
+ TICKETS: "TICKETS";
10
11
  }>>;
11
12
  firstTimeMiExpo: z.ZodBoolean;
12
13
  username: z.ZodNullable<z.ZodString>;
@@ -143,7 +144,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
143
144
  }>, "strip", z.ZodTypeAny, {
144
145
  id: string;
145
146
  username: string | null;
146
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
147
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
147
148
  phoneNumber: string;
148
149
  secondaryPhoneNumber: string | null;
149
150
  fullName: string;
@@ -253,7 +254,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
253
254
  country: string;
254
255
  city: string;
255
256
  } | null;
256
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
257
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
257
258
  }>;
258
259
  declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
259
260
  id: z.ZodString;
@@ -263,6 +264,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
263
264
  ADMIN: "ADMIN";
264
265
  FORM: "FORM";
265
266
  MI_EXPO: "MI_EXPO";
267
+ TICKETS: "TICKETS";
266
268
  }>>;
267
269
  phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
268
270
  secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
@@ -393,7 +395,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
393
395
  }, z.UnknownKeysParam, z.ZodTypeAny, {
394
396
  id: string;
395
397
  username: string | null;
396
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
398
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
397
399
  phoneNumber: string;
398
400
  secondaryPhoneNumber: string | null;
399
401
  fullName: string;
@@ -503,7 +505,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
503
505
  country: string;
504
506
  city: string;
505
507
  } | null;
506
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
508
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
507
509
  }>>;
508
510
  export declare class FindByIdProfileResponseDto extends FindByIdProfileResponseDto_base {
509
511
  }
@@ -6,6 +6,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
6
6
  ADMIN: "ADMIN";
7
7
  FORM: "FORM";
8
8
  MI_EXPO: "MI_EXPO";
9
+ TICKETS: "TICKETS";
9
10
  }>>;
10
11
  firstTimeMiExpo: import("zod").ZodBoolean;
11
12
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -32,7 +33,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
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" | "MI_EXPO" | "TICKETS";
36
37
  phoneNumber: string;
37
38
  secondaryPhoneNumber: string | null;
38
39
  fullName: string;
@@ -77,7 +78,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
77
78
  residenceLocationId: string | null;
78
79
  isInTrash: boolean;
79
80
  movedToTrashDate: Date | null;
80
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
81
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
81
82
  }>;
82
83
  declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
83
84
  id: import("zod").ZodString;
@@ -87,6 +88,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
87
88
  ADMIN: "ADMIN";
88
89
  FORM: "FORM";
89
90
  MI_EXPO: "MI_EXPO";
91
+ TICKETS: "TICKETS";
90
92
  }>>;
91
93
  firstTimeMiExpo: import("zod").ZodBoolean;
92
94
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -113,7 +115,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
113
115
  id: string;
114
116
  username: string | null;
115
117
  password: string | null;
116
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
118
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
117
119
  phoneNumber: string;
118
120
  secondaryPhoneNumber: string | null;
119
121
  fullName: string;
@@ -158,7 +160,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
158
160
  residenceLocationId: string | null;
159
161
  isInTrash: boolean;
160
162
  movedToTrashDate: string | null;
161
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
163
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
162
164
  }>>;
163
165
  export declare class FindByPhoneNumberResponseDto extends FindByPhoneNumberResponseDto_base {
164
166
  }