expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5 → 0.36.0-EXPO-323-Enviar-mail-ticket.3
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 -6
- package/dist/src/account/dto/create-account.dto.d.ts +12 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
- package/dist/src/account/dto/get-me.dto.d.ts +6 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
- package/dist/src/auth/dto/login.dto.d.ts +11 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
- package/dist/src/i18n/es.d.ts +19 -5
- package/dist/src/i18n/es.js +19 -5
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
- package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
- package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
- package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
- package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
- package/dist/src/schema/profile.schema.d.ts +5 -5
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
- package/dist/src/ticket/constants.d.ts +95 -14
- package/dist/src/ticket/constants.js +254 -222
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +25 -1
- package/dist/src/ticket/dto/create-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
- 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/src/ticket/dto/ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/ticket.dto.js +2 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
- package/dist/types/prisma-schema/edge.js +7 -5
- package/dist/types/prisma-schema/index-browser.js +4 -2
- package/dist/types/prisma-schema/index.d.ts +193 -65
- package/dist/types/prisma-schema/index.js +7 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +5 -1
- package/dist/types/prisma-schema/wasm.js +4 -2
- package/dist/types/schema.d.ts +100 -116
- package/package.json +6 -6
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -688
- package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -57
@@ -7,8 +7,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
TICKETS: "TICKETS";
|
11
10
|
MI_EXPO: "MI_EXPO";
|
11
|
+
TICKETS: "TICKETS";
|
12
12
|
}>>;
|
13
13
|
firstTimeMiExpo: z.ZodBoolean;
|
14
14
|
username: z.ZodNullable<z.ZodString>;
|
@@ -172,12 +172,13 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
172
172
|
id: string;
|
173
173
|
username: string | null;
|
174
174
|
password: string | null;
|
175
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
175
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
176
176
|
phoneNumber: string;
|
177
177
|
secondaryPhoneNumber: string | null;
|
178
178
|
fullName: string;
|
179
179
|
profilePictureUrl: string | null;
|
180
180
|
mail: string | null;
|
181
|
+
dni: string | null;
|
181
182
|
created_at: Date;
|
182
183
|
updated_at: Date;
|
183
184
|
shortId: number;
|
@@ -187,7 +188,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
187
188
|
gender: string | null;
|
188
189
|
birthDate: Date | null;
|
189
190
|
instagram: string | null;
|
190
|
-
dni: string | null;
|
191
191
|
alternativeNames: string[];
|
192
192
|
birthLocationId: string | null;
|
193
193
|
residenceLocationId: string | null;
|
@@ -232,6 +232,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
232
232
|
fullName: string;
|
233
233
|
profilePictureUrl: string | null;
|
234
234
|
mail: string | null;
|
235
|
+
dni: string | null;
|
235
236
|
created_at: Date;
|
236
237
|
updated_at: Date;
|
237
238
|
shortId: number;
|
@@ -241,7 +242,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
241
242
|
gender: string | null;
|
242
243
|
birthDate: string | null;
|
243
244
|
instagram: string | null;
|
244
|
-
dni: string | null;
|
245
245
|
alternativeNames: string[];
|
246
246
|
birthLocationId: string | null;
|
247
247
|
residenceLocationId: string | null;
|
@@ -277,19 +277,20 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
277
277
|
groupId: string;
|
278
278
|
}[];
|
279
279
|
inChat: boolean;
|
280
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
280
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
281
281
|
}>, "many">;
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
283
283
|
profiles: {
|
284
284
|
id: string;
|
285
285
|
username: string | null;
|
286
286
|
password: string | null;
|
287
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
287
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
288
288
|
phoneNumber: string;
|
289
289
|
secondaryPhoneNumber: string | null;
|
290
290
|
fullName: string;
|
291
291
|
profilePictureUrl: string | null;
|
292
292
|
mail: string | null;
|
293
|
+
dni: string | null;
|
293
294
|
created_at: Date;
|
294
295
|
updated_at: Date;
|
295
296
|
shortId: number;
|
@@ -299,7 +300,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
299
300
|
gender: string | null;
|
300
301
|
birthDate: Date | null;
|
301
302
|
instagram: string | null;
|
302
|
-
dni: string | null;
|
303
303
|
alternativeNames: string[];
|
304
304
|
birthLocationId: string | null;
|
305
305
|
residenceLocationId: string | null;
|
@@ -346,6 +346,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
346
346
|
fullName: string;
|
347
347
|
profilePictureUrl: string | null;
|
348
348
|
mail: string | null;
|
349
|
+
dni: string | null;
|
349
350
|
created_at: Date;
|
350
351
|
updated_at: Date;
|
351
352
|
shortId: number;
|
@@ -355,7 +356,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
355
356
|
gender: string | null;
|
356
357
|
birthDate: string | null;
|
357
358
|
instagram: string | null;
|
358
|
-
dni: string | null;
|
359
359
|
alternativeNames: string[];
|
360
360
|
birthLocationId: string | null;
|
361
361
|
residenceLocationId: string | null;
|
@@ -391,7 +391,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
391
391
|
groupId: string;
|
392
392
|
}[];
|
393
393
|
inChat: boolean;
|
394
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
394
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
395
395
|
}[];
|
396
396
|
}>;
|
397
397
|
declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -402,8 +402,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
402
402
|
USER: "USER";
|
403
403
|
ADMIN: "ADMIN";
|
404
404
|
FORM: "FORM";
|
405
|
-
TICKETS: "TICKETS";
|
406
405
|
MI_EXPO: "MI_EXPO";
|
406
|
+
TICKETS: "TICKETS";
|
407
407
|
}>>;
|
408
408
|
firstTimeMiExpo: z.ZodBoolean;
|
409
409
|
username: z.ZodNullable<z.ZodString>;
|
@@ -563,12 +563,13 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
563
563
|
id: string;
|
564
564
|
username: string | null;
|
565
565
|
password: string | null;
|
566
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
566
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
567
567
|
phoneNumber: string;
|
568
568
|
secondaryPhoneNumber: string | null;
|
569
569
|
fullName: string;
|
570
570
|
profilePictureUrl: string | null;
|
571
571
|
mail: string | null;
|
572
|
+
dni: string | null;
|
572
573
|
created_at: string;
|
573
574
|
updated_at: string;
|
574
575
|
shortId: number;
|
@@ -578,7 +579,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
578
579
|
gender: string | null;
|
579
580
|
birthDate: string | null;
|
580
581
|
instagram: string | null;
|
581
|
-
dni: string | null;
|
582
582
|
alternativeNames: string[];
|
583
583
|
birthLocationId: string | null;
|
584
584
|
residenceLocationId: string | null;
|
@@ -623,6 +623,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
623
623
|
fullName: string;
|
624
624
|
profilePictureUrl: string | null;
|
625
625
|
mail: string | null;
|
626
|
+
dni: string | null;
|
626
627
|
created_at: string;
|
627
628
|
updated_at: string;
|
628
629
|
shortId: number;
|
@@ -632,7 +633,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
632
633
|
gender: string | null;
|
633
634
|
birthDate: string | null;
|
634
635
|
instagram: string | null;
|
635
|
-
dni: string | null;
|
636
636
|
alternativeNames: string[];
|
637
637
|
birthLocationId: string | null;
|
638
638
|
residenceLocationId: string | null;
|
@@ -668,19 +668,20 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
668
668
|
groupId: string;
|
669
669
|
}[];
|
670
670
|
inChat: boolean;
|
671
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
671
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
672
672
|
}>, "many">;
|
673
673
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
674
674
|
profiles: {
|
675
675
|
id: string;
|
676
676
|
username: string | null;
|
677
677
|
password: string | null;
|
678
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
678
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
679
679
|
phoneNumber: string;
|
680
680
|
secondaryPhoneNumber: string | null;
|
681
681
|
fullName: string;
|
682
682
|
profilePictureUrl: string | null;
|
683
683
|
mail: string | null;
|
684
|
+
dni: string | null;
|
684
685
|
created_at: string;
|
685
686
|
updated_at: string;
|
686
687
|
shortId: number;
|
@@ -690,7 +691,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
690
691
|
gender: string | null;
|
691
692
|
birthDate: string | null;
|
692
693
|
instagram: string | null;
|
693
|
-
dni: string | null;
|
694
694
|
alternativeNames: string[];
|
695
695
|
birthLocationId: string | null;
|
696
696
|
residenceLocationId: string | null;
|
@@ -737,6 +737,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
737
737
|
fullName: string;
|
738
738
|
profilePictureUrl: string | null;
|
739
739
|
mail: string | null;
|
740
|
+
dni: string | null;
|
740
741
|
created_at: string;
|
741
742
|
updated_at: string;
|
742
743
|
shortId: number;
|
@@ -746,7 +747,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
746
747
|
gender: string | null;
|
747
748
|
birthDate: string | null;
|
748
749
|
instagram: string | null;
|
749
|
-
dni: string | null;
|
750
750
|
alternativeNames: string[];
|
751
751
|
birthLocationId: string | null;
|
752
752
|
residenceLocationId: string | null;
|
@@ -782,7 +782,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
782
782
|
groupId: string;
|
783
783
|
}[];
|
784
784
|
inChat: boolean;
|
785
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
785
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
786
786
|
}[];
|
787
787
|
}>>;
|
788
788
|
export declare class FindWithActiveChatResponseDto extends FindWithActiveChatResponseDto_base {
|
@@ -5,8 +5,8 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
5
5
|
USER: "USER";
|
6
6
|
ADMIN: "ADMIN";
|
7
7
|
FORM: "FORM";
|
8
|
-
TICKETS: "TICKETS";
|
9
8
|
MI_EXPO: "MI_EXPO";
|
9
|
+
TICKETS: "TICKETS";
|
10
10
|
}>>;
|
11
11
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
12
12
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -33,12 +33,13 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
33
33
|
id: string;
|
34
34
|
username: string | null;
|
35
35
|
password: string | null;
|
36
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
36
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
37
37
|
phoneNumber: string;
|
38
38
|
secondaryPhoneNumber: string | null;
|
39
39
|
fullName: string;
|
40
40
|
profilePictureUrl: string | null;
|
41
41
|
mail: string | null;
|
42
|
+
dni: string | null;
|
42
43
|
created_at: string;
|
43
44
|
updated_at: string;
|
44
45
|
shortId: number;
|
@@ -48,7 +49,6 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
48
49
|
gender: string | null;
|
49
50
|
birthDate: string | null;
|
50
51
|
instagram: string | null;
|
51
|
-
dni: string | null;
|
52
52
|
alternativeNames: string[];
|
53
53
|
birthLocationId: string | null;
|
54
54
|
residenceLocationId: string | null;
|
@@ -63,6 +63,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
63
63
|
fullName: string;
|
64
64
|
profilePictureUrl: string | null;
|
65
65
|
mail: string | null;
|
66
|
+
dni: string | null;
|
66
67
|
created_at: string;
|
67
68
|
updated_at: string;
|
68
69
|
shortId: number;
|
@@ -72,13 +73,12 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
72
73
|
gender: string | null;
|
73
74
|
birthDate: string | null;
|
74
75
|
instagram: string | null;
|
75
|
-
dni: string | null;
|
76
76
|
alternativeNames: string[];
|
77
77
|
birthLocationId: string | null;
|
78
78
|
residenceLocationId: string | null;
|
79
79
|
isInTrash: boolean;
|
80
80
|
movedToTrashDate: string | null;
|
81
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
81
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
82
82
|
}>>;
|
83
83
|
export declare class ProfileDto extends ProfileDto_base {
|
84
84
|
}
|
@@ -7,11 +7,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
7
7
|
fullName: z.ZodOptional<z.ZodString>;
|
8
8
|
profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9
9
|
mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10
|
+
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10
11
|
firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
|
11
12
|
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12
13
|
birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>>;
|
13
14
|
instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14
|
-
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15
15
|
alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
16
16
|
isInTrash: z.ZodOptional<z.ZodBoolean>;
|
17
17
|
movedToTrashDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
@@ -69,11 +69,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
69
69
|
fullName?: string | undefined;
|
70
70
|
profilePictureUrl?: string | null | undefined;
|
71
71
|
mail?: string | null | undefined;
|
72
|
+
dni?: string | null | undefined;
|
72
73
|
firstTimeMiExpo?: boolean | undefined;
|
73
74
|
gender?: string | null | undefined;
|
74
75
|
birthDate?: Date | null | undefined;
|
75
76
|
instagram?: string | null | undefined;
|
76
|
-
dni?: string | null | undefined;
|
77
77
|
alternativeNames?: string[] | undefined;
|
78
78
|
isInTrash?: boolean | undefined;
|
79
79
|
movedToTrashDate?: Date | null | undefined;
|
@@ -100,11 +100,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
100
100
|
fullName?: string | undefined;
|
101
101
|
profilePictureUrl?: string | null | undefined;
|
102
102
|
mail?: string | null | undefined;
|
103
|
+
dni?: string | null | undefined;
|
103
104
|
firstTimeMiExpo?: boolean | undefined;
|
104
105
|
gender?: string | null | undefined;
|
105
106
|
birthDate?: string | null | undefined;
|
106
107
|
instagram?: string | null | undefined;
|
107
|
-
dni?: string | null | undefined;
|
108
108
|
alternativeNames?: string[] | undefined;
|
109
109
|
isInTrash?: boolean | undefined;
|
110
110
|
movedToTrashDate?: Date | null | undefined;
|
@@ -132,11 +132,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
132
132
|
fullName: z.ZodOptional<z.ZodString>;
|
133
133
|
profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
134
134
|
mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
135
|
+
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
135
136
|
firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
|
136
137
|
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
137
138
|
birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>>;
|
138
139
|
instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
139
|
-
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
140
140
|
alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
141
141
|
isInTrash: z.ZodOptional<z.ZodBoolean>;
|
142
142
|
movedToTrashDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -187,11 +187,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
187
187
|
fullName?: string | undefined;
|
188
188
|
profilePictureUrl?: string | null | undefined;
|
189
189
|
mail?: string | null | undefined;
|
190
|
+
dni?: string | null | undefined;
|
190
191
|
firstTimeMiExpo?: boolean | undefined;
|
191
192
|
gender?: string | null | undefined;
|
192
193
|
birthDate?: string | null | undefined;
|
193
194
|
instagram?: string | null | undefined;
|
194
|
-
dni?: string | null | undefined;
|
195
195
|
alternativeNames?: string[] | undefined;
|
196
196
|
isInTrash?: boolean | undefined;
|
197
197
|
movedToTrashDate?: string | null | undefined;
|
@@ -218,11 +218,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
218
218
|
fullName?: string | undefined;
|
219
219
|
profilePictureUrl?: string | null | undefined;
|
220
220
|
mail?: string | null | undefined;
|
221
|
+
dni?: string | null | undefined;
|
221
222
|
firstTimeMiExpo?: boolean | undefined;
|
222
223
|
gender?: string | null | undefined;
|
223
224
|
birthDate?: string | null | undefined;
|
224
225
|
instagram?: string | null | undefined;
|
225
|
-
dni?: string | null | undefined;
|
226
226
|
alternativeNames?: string[] | undefined;
|
227
227
|
isInTrash?: boolean | undefined;
|
228
228
|
movedToTrashDate?: string | null | undefined;
|
@@ -251,8 +251,8 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
251
251
|
USER: "USER";
|
252
252
|
ADMIN: "ADMIN";
|
253
253
|
FORM: "FORM";
|
254
|
-
TICKETS: "TICKETS";
|
255
254
|
MI_EXPO: "MI_EXPO";
|
255
|
+
TICKETS: "TICKETS";
|
256
256
|
}>>;
|
257
257
|
firstTimeMiExpo: z.ZodBoolean;
|
258
258
|
username: z.ZodNullable<z.ZodString>;
|
@@ -279,12 +279,13 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
279
279
|
id: string;
|
280
280
|
username: string | null;
|
281
281
|
password: string | null;
|
282
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
282
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
283
283
|
phoneNumber: string;
|
284
284
|
secondaryPhoneNumber: string | null;
|
285
285
|
fullName: string;
|
286
286
|
profilePictureUrl: string | null;
|
287
287
|
mail: string | null;
|
288
|
+
dni: string | null;
|
288
289
|
created_at: Date;
|
289
290
|
updated_at: Date;
|
290
291
|
shortId: number;
|
@@ -294,7 +295,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
294
295
|
gender: string | null;
|
295
296
|
birthDate: Date | null;
|
296
297
|
instagram: string | null;
|
297
|
-
dni: string | null;
|
298
298
|
alternativeNames: string[];
|
299
299
|
birthLocationId: string | null;
|
300
300
|
residenceLocationId: string | null;
|
@@ -309,6 +309,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
309
309
|
fullName: string;
|
310
310
|
profilePictureUrl: string | null;
|
311
311
|
mail: string | null;
|
312
|
+
dni: string | null;
|
312
313
|
created_at: Date;
|
313
314
|
updated_at: Date;
|
314
315
|
shortId: number;
|
@@ -318,13 +319,12 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
318
319
|
gender: string | null;
|
319
320
|
birthDate: string | null;
|
320
321
|
instagram: string | null;
|
321
|
-
dni: string | null;
|
322
322
|
alternativeNames: string[];
|
323
323
|
birthLocationId: string | null;
|
324
324
|
residenceLocationId: string | null;
|
325
325
|
isInTrash: boolean;
|
326
326
|
movedToTrashDate: Date | null;
|
327
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
327
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
328
328
|
}>;
|
329
329
|
declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
330
330
|
id: z.ZodString;
|
@@ -333,8 +333,8 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
333
333
|
USER: "USER";
|
334
334
|
ADMIN: "ADMIN";
|
335
335
|
FORM: "FORM";
|
336
|
-
TICKETS: "TICKETS";
|
337
336
|
MI_EXPO: "MI_EXPO";
|
337
|
+
TICKETS: "TICKETS";
|
338
338
|
}>>;
|
339
339
|
firstTimeMiExpo: z.ZodBoolean;
|
340
340
|
username: z.ZodNullable<z.ZodString>;
|
@@ -361,12 +361,13 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
361
361
|
id: string;
|
362
362
|
username: string | null;
|
363
363
|
password: string | null;
|
364
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
364
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
365
365
|
phoneNumber: string;
|
366
366
|
secondaryPhoneNumber: string | null;
|
367
367
|
fullName: string;
|
368
368
|
profilePictureUrl: string | null;
|
369
369
|
mail: string | null;
|
370
|
+
dni: string | null;
|
370
371
|
created_at: string;
|
371
372
|
updated_at: string;
|
372
373
|
shortId: number;
|
@@ -376,7 +377,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
376
377
|
gender: string | null;
|
377
378
|
birthDate: string | null;
|
378
379
|
instagram: string | null;
|
379
|
-
dni: string | null;
|
380
380
|
alternativeNames: string[];
|
381
381
|
birthLocationId: string | null;
|
382
382
|
residenceLocationId: string | null;
|
@@ -391,6 +391,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
391
391
|
fullName: string;
|
392
392
|
profilePictureUrl: string | null;
|
393
393
|
mail: string | null;
|
394
|
+
dni: string | null;
|
394
395
|
created_at: string;
|
395
396
|
updated_at: string;
|
396
397
|
shortId: number;
|
@@ -400,13 +401,12 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
400
401
|
gender: string | null;
|
401
402
|
birthDate: string | null;
|
402
403
|
instagram: string | null;
|
403
|
-
dni: string | null;
|
404
404
|
alternativeNames: string[];
|
405
405
|
birthLocationId: string | null;
|
406
406
|
residenceLocationId: string | null;
|
407
407
|
isInTrash: boolean;
|
408
408
|
movedToTrashDate: string | null;
|
409
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
409
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
410
410
|
}>>;
|
411
411
|
export declare class UpdateProfileResponseDto extends UpdateProfileResponseDto_base {
|
412
412
|
}
|
@@ -6,8 +6,8 @@ export declare const profileSchema: z.ZodObject<{
|
|
6
6
|
USER: "USER";
|
7
7
|
ADMIN: "ADMIN";
|
8
8
|
FORM: "FORM";
|
9
|
-
TICKETS: "TICKETS";
|
10
9
|
MI_EXPO: "MI_EXPO";
|
10
|
+
TICKETS: "TICKETS";
|
11
11
|
}>>;
|
12
12
|
firstTimeMiExpo: z.ZodBoolean;
|
13
13
|
username: z.ZodNullable<z.ZodString>;
|
@@ -34,12 +34,13 @@ export declare const profileSchema: z.ZodObject<{
|
|
34
34
|
id: string;
|
35
35
|
username: string | null;
|
36
36
|
password: string | null;
|
37
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
37
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
38
38
|
phoneNumber: string;
|
39
39
|
secondaryPhoneNumber: string | null;
|
40
40
|
fullName: string;
|
41
41
|
profilePictureUrl: string | null;
|
42
42
|
mail: string | null;
|
43
|
+
dni: string | null;
|
43
44
|
created_at: Date;
|
44
45
|
updated_at: Date;
|
45
46
|
shortId: number;
|
@@ -49,7 +50,6 @@ export declare const profileSchema: z.ZodObject<{
|
|
49
50
|
gender: string | null;
|
50
51
|
birthDate: Date | null;
|
51
52
|
instagram: string | null;
|
52
|
-
dni: string | null;
|
53
53
|
alternativeNames: string[];
|
54
54
|
birthLocationId: string | null;
|
55
55
|
residenceLocationId: string | null;
|
@@ -64,6 +64,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
64
64
|
fullName: string;
|
65
65
|
profilePictureUrl: string | null;
|
66
66
|
mail: string | null;
|
67
|
+
dni: string | null;
|
67
68
|
created_at: Date;
|
68
69
|
updated_at: Date;
|
69
70
|
shortId: number;
|
@@ -73,11 +74,10 @@ export declare const profileSchema: z.ZodObject<{
|
|
73
74
|
gender: string | null;
|
74
75
|
birthDate: string | null;
|
75
76
|
instagram: string | null;
|
76
|
-
dni: string | null;
|
77
77
|
alternativeNames: string[];
|
78
78
|
birthLocationId: string | null;
|
79
79
|
residenceLocationId: string | null;
|
80
80
|
isInTrash: boolean;
|
81
81
|
movedToTrashDate: Date | null;
|
82
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
82
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
83
83
|
}>;
|