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.
- package/dist/src/account/dto/account.dto.d.ts +6 -4
- package/dist/src/account/dto/create-account.dto.d.ts +12 -8
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
- package/dist/src/account/dto/get-me.dto.d.ts +6 -4
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
- package/dist/src/auth/dto/login.dto.d.ts +11 -8
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
- package/dist/src/i18n/es.d.ts +10 -0
- package/dist/src/i18n/es.js +10 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -4
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -8
- package/dist/src/mi-expo/dto/login.dto.d.ts +11 -8
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -4
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -4
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -8
- package/dist/src/profile/dto/profile.dto.d.ts +3 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -4
- package/dist/src/schema/profile.schema.d.ts +3 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -8
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -12
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -12
- package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
- package/dist/src/ticket/dto/send-email.dto.js +15 -0
- package/dist/types/prisma-schema/edge.js +5 -4
- package/dist/types/prisma-schema/index-browser.js +2 -1
- package/dist/types/prisma-schema/index.d.ts +2 -1
- package/dist/types/prisma-schema/index.js +5 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -0
- package/dist/types/prisma-schema/wasm.js +2 -1
- package/dist/types/schema.d.ts +78 -22
- package/package.json +3 -2
@@ -8,6 +8,7 @@ export declare const findByTagGroupsProfileResponseSchema: 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>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
197
198
|
}[];
|
198
199
|
}>;
|
199
200
|
declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -205,6 +206,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
205
206
|
ADMIN: "ADMIN";
|
206
207
|
FORM: "FORM";
|
207
208
|
MI_EXPO: "MI_EXPO";
|
209
|
+
TICKETS: "TICKETS";
|
208
210
|
}>>;
|
209
211
|
firstTimeMiExpo: z.ZodBoolean;
|
210
212
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
393
395
|
}[];
|
394
396
|
}>>;
|
395
397
|
export declare class FindByTagGroupsProfileResponseDto extends FindByTagGroupsProfileResponseDto_base {
|
@@ -8,6 +8,7 @@ export declare const findByTagsProfileResponseSchema: 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>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
244
245
|
}[];
|
245
246
|
}>;
|
246
247
|
declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -252,6 +253,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
252
253
|
ADMIN: "ADMIN";
|
253
254
|
FORM: "FORM";
|
254
255
|
MI_EXPO: "MI_EXPO";
|
256
|
+
TICKETS: "TICKETS";
|
255
257
|
}>>;
|
256
258
|
firstTimeMiExpo: z.ZodBoolean;
|
257
259
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
483
485
|
}[];
|
484
486
|
}>>;
|
485
487
|
export declare class FindByTagsProfileResponseDto extends FindByTagsProfileResponseDto_base {
|
@@ -8,6 +8,7 @@ export declare const findWithActiveChatResponseSchema: 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>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
394
395
|
}[];
|
395
396
|
}>;
|
396
397
|
declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -402,6 +403,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
402
403
|
ADMIN: "ADMIN";
|
403
404
|
FORM: "FORM";
|
404
405
|
MI_EXPO: "MI_EXPO";
|
406
|
+
TICKETS: "TICKETS";
|
405
407
|
}>>;
|
406
408
|
firstTimeMiExpo: z.ZodBoolean;
|
407
409
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
784
786
|
}[];
|
785
787
|
}>>;
|
786
788
|
export declare class FindWithActiveChatResponseDto extends FindWithActiveChatResponseDto_base {
|
@@ -6,6 +6,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
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 @@ 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
81
82
|
}>>;
|
82
83
|
export declare class ProfileDto extends ProfileDto_base {
|
83
84
|
}
|
@@ -252,6 +252,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
252
252
|
ADMIN: "ADMIN";
|
253
253
|
FORM: "FORM";
|
254
254
|
MI_EXPO: "MI_EXPO";
|
255
|
+
TICKETS: "TICKETS";
|
255
256
|
}>>;
|
256
257
|
firstTimeMiExpo: z.ZodBoolean;
|
257
258
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
327
328
|
}>;
|
328
329
|
declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
329
330
|
id: z.ZodString;
|
@@ -333,6 +334,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
333
334
|
ADMIN: "ADMIN";
|
334
335
|
FORM: "FORM";
|
335
336
|
MI_EXPO: "MI_EXPO";
|
337
|
+
TICKETS: "TICKETS";
|
336
338
|
}>>;
|
337
339
|
firstTimeMiExpo: z.ZodBoolean;
|
338
340
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
408
410
|
}>>;
|
409
411
|
export declare class UpdateProfileResponseDto extends UpdateProfileResponseDto_base {
|
410
412
|
}
|
@@ -7,6 +7,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
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>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
82
83
|
}>;
|
@@ -30,6 +30,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
30
30
|
ADMIN: "ADMIN";
|
31
31
|
FORM: "FORM";
|
32
32
|
MI_EXPO: "MI_EXPO";
|
33
|
+
TICKETS: "TICKETS";
|
33
34
|
}>>;
|
34
35
|
firstTimeMiExpo: z.ZodBoolean;
|
35
36
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
159
160
|
}[];
|
160
161
|
}>;
|
161
162
|
declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -167,6 +168,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
167
168
|
ADMIN: "ADMIN";
|
168
169
|
FORM: "FORM";
|
169
170
|
MI_EXPO: "MI_EXPO";
|
171
|
+
TICKETS: "TICKETS";
|
170
172
|
}>>;
|
171
173
|
firstTimeMiExpo: z.ZodBoolean;
|
172
174
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
296
298
|
}[];
|
297
299
|
}>>;
|
298
300
|
export declare class MassiveAllocationResponseDto extends MassiveAllocationResponseDto_base {
|
@@ -30,6 +30,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
30
30
|
ADMIN: "ADMIN";
|
31
31
|
FORM: "FORM";
|
32
32
|
MI_EXPO: "MI_EXPO";
|
33
|
+
TICKETS: "TICKETS";
|
33
34
|
}>>;
|
34
35
|
firstTimeMiExpo: z.ZodBoolean;
|
35
36
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
159
160
|
}[];
|
160
161
|
}>;
|
161
162
|
declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -167,6 +168,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
167
168
|
ADMIN: "ADMIN";
|
168
169
|
FORM: "FORM";
|
169
170
|
MI_EXPO: "MI_EXPO";
|
171
|
+
TICKETS: "TICKETS";
|
170
172
|
}>>;
|
171
173
|
firstTimeMiExpo: z.ZodBoolean;
|
172
174
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
296
298
|
}[];
|
297
299
|
}>>;
|
298
300
|
export declare class MassiveDeallocationResponseDto extends MassiveDeallocationResponseDto_base {
|
@@ -49,6 +49,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
49
49
|
ADMIN: "ADMIN";
|
50
50
|
FORM: "FORM";
|
51
51
|
MI_EXPO: "MI_EXPO";
|
52
|
+
TICKETS: "TICKETS";
|
52
53
|
}>>;
|
53
54
|
firstTimeMiExpo: z.ZodBoolean;
|
54
55
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
280
281
|
} | null;
|
281
282
|
id: string;
|
282
283
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -327,6 +328,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
327
328
|
ADMIN: "ADMIN";
|
328
329
|
FORM: "FORM";
|
329
330
|
MI_EXPO: "MI_EXPO";
|
331
|
+
TICKETS: "TICKETS";
|
330
332
|
}>>;
|
331
333
|
firstTimeMiExpo: z.ZodBoolean;
|
332
334
|
username: z.ZodNullable<z.ZodString>;
|
@@ -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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
558
560
|
} | null;
|
559
561
|
id: string;
|
560
562
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|