expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.9 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.11
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/event/dto/get-all-statistics.dto.d.ts +10 -5
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +5 -5
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/production/dto/get-all-production.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +8 -8
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +9 -2
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +9 -2
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +17 -7
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -1
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +8 -8
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +496 -33
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +7 -1
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +17 -4
- package/package.json +2 -1
@@ -32,6 +32,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
32
32
|
scanned: z.ZodBoolean;
|
33
33
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
34
34
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
35
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
35
36
|
created_at: z.ZodDate;
|
36
37
|
updated_at: z.ZodDate;
|
37
38
|
}, "strip", z.ZodTypeAny, {
|
@@ -44,6 +45,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
44
45
|
seat: number | null;
|
45
46
|
created_at: Date;
|
46
47
|
updated_at: Date;
|
48
|
+
referralCode: string | null;
|
47
49
|
scanned: boolean;
|
48
50
|
scannedAt: Date | null;
|
49
51
|
ticketGroupId: string | null;
|
@@ -57,6 +59,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
57
59
|
seat: number | null;
|
58
60
|
created_at: Date;
|
59
61
|
updated_at: Date;
|
62
|
+
referralCode: string | null;
|
60
63
|
scanned: boolean;
|
61
64
|
scannedAt: Date | null;
|
62
65
|
ticketGroupId: string | null;
|
@@ -100,7 +103,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
100
103
|
FREE: "FREE";
|
101
104
|
}>;
|
102
105
|
eventId: z.ZodString;
|
103
|
-
referralCode: z.
|
106
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
104
107
|
created_at: z.ZodDate;
|
105
108
|
updated_at: z.ZodDate;
|
106
109
|
}, "strip", z.ZodTypeAny, {
|
@@ -110,7 +113,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
110
113
|
amountTickets: number;
|
111
114
|
created_at: Date;
|
112
115
|
updated_at: Date;
|
113
|
-
referralCode
|
116
|
+
referralCode: string | null;
|
114
117
|
}, {
|
115
118
|
id: string;
|
116
119
|
eventId: string;
|
@@ -118,7 +121,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
118
121
|
amountTickets: number;
|
119
122
|
created_at: Date;
|
120
123
|
updated_at: Date;
|
121
|
-
referralCode
|
124
|
+
referralCode: string | null;
|
122
125
|
}>, "many">;
|
123
126
|
}>, "strip", z.ZodTypeAny, {
|
124
127
|
description: string | null;
|
@@ -141,6 +144,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
141
144
|
seat: number | null;
|
142
145
|
created_at: Date;
|
143
146
|
updated_at: Date;
|
147
|
+
referralCode: string | null;
|
144
148
|
scanned: boolean;
|
145
149
|
scannedAt: Date | null;
|
146
150
|
ticketGroupId: string | null;
|
@@ -164,7 +168,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
164
168
|
amountTickets: number;
|
165
169
|
created_at: Date;
|
166
170
|
updated_at: Date;
|
167
|
-
referralCode
|
171
|
+
referralCode: string | null;
|
168
172
|
}[];
|
169
173
|
}, {
|
170
174
|
description: string | null;
|
@@ -187,6 +191,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
187
191
|
seat: number | null;
|
188
192
|
created_at: Date;
|
189
193
|
updated_at: Date;
|
194
|
+
referralCode: string | null;
|
190
195
|
scanned: boolean;
|
191
196
|
scannedAt: Date | null;
|
192
197
|
ticketGroupId: string | null;
|
@@ -210,7 +215,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
210
215
|
amountTickets: number;
|
211
216
|
created_at: Date;
|
212
217
|
updated_at: Date;
|
213
|
-
referralCode
|
218
|
+
referralCode: string | null;
|
214
219
|
}[];
|
215
220
|
}>, "many">;
|
216
221
|
export declare const getAllStatisticsResponseSchema: z.ZodObject<{
|
@@ -233,6 +233,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
233
233
|
scanned: z.ZodBoolean;
|
234
234
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
235
235
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
236
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
236
237
|
created_at: z.ZodDate;
|
237
238
|
updated_at: z.ZodDate;
|
238
239
|
}, "strip", z.ZodTypeAny, {
|
@@ -245,6 +246,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
245
246
|
seat: number | null;
|
246
247
|
created_at: Date;
|
247
248
|
updated_at: Date;
|
249
|
+
referralCode: string | null;
|
248
250
|
scanned: boolean;
|
249
251
|
scannedAt: Date | null;
|
250
252
|
ticketGroupId: string | null;
|
@@ -258,6 +260,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
258
260
|
seat: number | null;
|
259
261
|
created_at: Date;
|
260
262
|
updated_at: Date;
|
263
|
+
referralCode: string | null;
|
261
264
|
scanned: boolean;
|
262
265
|
scannedAt: Date | null;
|
263
266
|
ticketGroupId: string | null;
|
@@ -417,6 +420,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
417
420
|
seat: number | null;
|
418
421
|
created_at: Date;
|
419
422
|
updated_at: Date;
|
423
|
+
referralCode: string | null;
|
420
424
|
scanned: boolean;
|
421
425
|
scannedAt: Date | null;
|
422
426
|
ticketGroupId: string | null;
|
@@ -538,6 +542,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
538
542
|
seat: number | null;
|
539
543
|
created_at: Date;
|
540
544
|
updated_at: Date;
|
545
|
+
referralCode: string | null;
|
541
546
|
scanned: boolean;
|
542
547
|
scannedAt: Date | null;
|
543
548
|
ticketGroupId: string | null;
|
@@ -871,6 +876,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
871
876
|
scanned: z.ZodBoolean;
|
872
877
|
scannedAt: z.ZodNullable<z.ZodString>;
|
873
878
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
879
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
874
880
|
created_at: z.ZodString;
|
875
881
|
updated_at: z.ZodString;
|
876
882
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -883,6 +889,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
883
889
|
seat: number | null;
|
884
890
|
created_at: string;
|
885
891
|
updated_at: string;
|
892
|
+
referralCode: string | null;
|
886
893
|
scanned: boolean;
|
887
894
|
scannedAt: string | null;
|
888
895
|
ticketGroupId: string | null;
|
@@ -896,6 +903,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
896
903
|
seat: number | null;
|
897
904
|
created_at: string;
|
898
905
|
updated_at: string;
|
906
|
+
referralCode: string | null;
|
899
907
|
scanned: boolean;
|
900
908
|
scannedAt: string | null;
|
901
909
|
ticketGroupId: string | null;
|
@@ -1053,6 +1061,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1053
1061
|
seat: number | null;
|
1054
1062
|
created_at: string;
|
1055
1063
|
updated_at: string;
|
1064
|
+
referralCode: string | null;
|
1056
1065
|
scanned: boolean;
|
1057
1066
|
scannedAt: string | null;
|
1058
1067
|
ticketGroupId: string | null;
|
@@ -1174,6 +1183,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1174
1183
|
seat: number | null;
|
1175
1184
|
created_at: string;
|
1176
1185
|
updated_at: string;
|
1186
|
+
referralCode: string | null;
|
1177
1187
|
scanned: boolean;
|
1178
1188
|
scannedAt: string | null;
|
1179
1189
|
ticketGroupId: string | null;
|
@@ -32,6 +32,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
32
32
|
scanned: z.ZodBoolean;
|
33
33
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
34
34
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
35
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
35
36
|
created_at: z.ZodDate;
|
36
37
|
updated_at: z.ZodDate;
|
37
38
|
}, "strip", z.ZodTypeAny, {
|
@@ -44,6 +45,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
44
45
|
seat: number | null;
|
45
46
|
created_at: Date;
|
46
47
|
updated_at: Date;
|
48
|
+
referralCode: string | null;
|
47
49
|
scanned: boolean;
|
48
50
|
scannedAt: Date | null;
|
49
51
|
ticketGroupId: string | null;
|
@@ -57,6 +59,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
57
59
|
seat: number | null;
|
58
60
|
created_at: Date;
|
59
61
|
updated_at: Date;
|
62
|
+
referralCode: string | null;
|
60
63
|
scanned: boolean;
|
61
64
|
scannedAt: Date | null;
|
62
65
|
ticketGroupId: string | null;
|
@@ -112,6 +115,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
112
115
|
seat: number | null;
|
113
116
|
created_at: Date;
|
114
117
|
updated_at: Date;
|
118
|
+
referralCode: string | null;
|
115
119
|
scanned: boolean;
|
116
120
|
scannedAt: Date | null;
|
117
121
|
ticketGroupId: string | null;
|
@@ -149,6 +153,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
149
153
|
seat: number | null;
|
150
154
|
created_at: Date;
|
151
155
|
updated_at: Date;
|
156
|
+
referralCode: string | null;
|
152
157
|
scanned: boolean;
|
153
158
|
scannedAt: Date | null;
|
154
159
|
ticketGroupId: string | null;
|
@@ -99,6 +99,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
99
99
|
dni: string | null;
|
100
100
|
created_at: Date;
|
101
101
|
updated_at: Date;
|
102
|
+
referralCode: string;
|
102
103
|
shortId: number;
|
103
104
|
firstTimeMiExpo: boolean;
|
104
105
|
isPhoneVerified: boolean;
|
@@ -111,7 +112,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
111
112
|
residenceLocationId: string | null;
|
112
113
|
isInTrash: boolean;
|
113
114
|
movedToTrashDate: Date | null;
|
114
|
-
referralCode: string;
|
115
115
|
birthLocation: {
|
116
116
|
id: string;
|
117
117
|
latitude: number;
|
@@ -143,6 +143,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
143
143
|
dni: string | null;
|
144
144
|
created_at: Date;
|
145
145
|
updated_at: Date;
|
146
|
+
referralCode: string;
|
146
147
|
shortId: number;
|
147
148
|
firstTimeMiExpo: boolean;
|
148
149
|
isPhoneVerified: boolean;
|
@@ -155,7 +156,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
155
156
|
residenceLocationId: string | null;
|
156
157
|
isInTrash: boolean;
|
157
158
|
movedToTrashDate: Date | null;
|
158
|
-
referralCode: string;
|
159
159
|
birthLocation: {
|
160
160
|
id: string;
|
161
161
|
latitude: number;
|
@@ -196,6 +196,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
196
196
|
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
197
197
|
created_at: import("zod").ZodString;
|
198
198
|
updated_at: import("zod").ZodString;
|
199
|
+
referralCode: import("zod").ZodString;
|
199
200
|
shortId: import("zod").ZodNumber;
|
200
201
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
201
202
|
isPhoneVerified: import("zod").ZodBoolean;
|
@@ -208,7 +209,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
208
209
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
209
210
|
isInTrash: import("zod").ZodBoolean;
|
210
211
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
211
|
-
referralCode: import("zod").ZodString;
|
212
212
|
residenceLocation: import("zod").ZodNullable<import("zod").ZodObject<{
|
213
213
|
id: import("zod").ZodString;
|
214
214
|
latitude: import("zod").ZodNumber;
|
@@ -277,6 +277,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
277
277
|
dni: string | null;
|
278
278
|
created_at: string;
|
279
279
|
updated_at: string;
|
280
|
+
referralCode: string;
|
280
281
|
shortId: number;
|
281
282
|
firstTimeMiExpo: boolean;
|
282
283
|
isPhoneVerified: boolean;
|
@@ -289,7 +290,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
289
290
|
residenceLocationId: string | null;
|
290
291
|
isInTrash: boolean;
|
291
292
|
movedToTrashDate: string | null;
|
292
|
-
referralCode: string;
|
293
293
|
birthLocation: {
|
294
294
|
id: string;
|
295
295
|
latitude: number;
|
@@ -321,6 +321,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
321
321
|
dni: string | null;
|
322
322
|
created_at: string;
|
323
323
|
updated_at: string;
|
324
|
+
referralCode: string;
|
324
325
|
shortId: number;
|
325
326
|
firstTimeMiExpo: boolean;
|
326
327
|
isPhoneVerified: boolean;
|
@@ -333,7 +334,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
333
334
|
residenceLocationId: string | null;
|
334
335
|
isInTrash: boolean;
|
335
336
|
movedToTrashDate: string | null;
|
336
|
-
referralCode: string;
|
337
337
|
birthLocation: {
|
338
338
|
id: string;
|
339
339
|
latitude: number;
|
@@ -73,6 +73,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
73
73
|
dni: string | null;
|
74
74
|
created_at: Date;
|
75
75
|
updated_at: Date;
|
76
|
+
referralCode: string;
|
76
77
|
shortId: number;
|
77
78
|
firstTimeMiExpo: boolean;
|
78
79
|
isPhoneVerified: boolean;
|
@@ -85,7 +86,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
85
86
|
residenceLocationId: string | null;
|
86
87
|
isInTrash: boolean;
|
87
88
|
movedToTrashDate: Date | null;
|
88
|
-
referralCode: string;
|
89
89
|
}, {
|
90
90
|
id: string;
|
91
91
|
username: string | null;
|
@@ -97,6 +97,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
97
97
|
dni: string | null;
|
98
98
|
created_at: Date;
|
99
99
|
updated_at: Date;
|
100
|
+
referralCode: string;
|
100
101
|
shortId: number;
|
101
102
|
firstTimeMiExpo: boolean;
|
102
103
|
isPhoneVerified: boolean;
|
@@ -109,7 +110,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
109
110
|
residenceLocationId: string | null;
|
110
111
|
isInTrash: boolean;
|
111
112
|
movedToTrashDate: Date | null;
|
112
|
-
referralCode: string;
|
113
113
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
114
114
|
}>;
|
115
115
|
}, "strip", z.ZodTypeAny, {
|
@@ -125,6 +125,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
125
125
|
dni: string | null;
|
126
126
|
created_at: Date;
|
127
127
|
updated_at: Date;
|
128
|
+
referralCode: string;
|
128
129
|
shortId: number;
|
129
130
|
firstTimeMiExpo: boolean;
|
130
131
|
isPhoneVerified: boolean;
|
@@ -137,7 +138,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
137
138
|
residenceLocationId: string | null;
|
138
139
|
isInTrash: boolean;
|
139
140
|
movedToTrashDate: Date | null;
|
140
|
-
referralCode: string;
|
141
141
|
};
|
142
142
|
tokens: {
|
143
143
|
accessToken: string;
|
@@ -156,6 +156,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
156
156
|
dni: string | null;
|
157
157
|
created_at: Date;
|
158
158
|
updated_at: Date;
|
159
|
+
referralCode: string;
|
159
160
|
shortId: number;
|
160
161
|
firstTimeMiExpo: boolean;
|
161
162
|
isPhoneVerified: boolean;
|
@@ -168,7 +169,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
168
169
|
residenceLocationId: string | null;
|
169
170
|
isInTrash: boolean;
|
170
171
|
movedToTrashDate: Date | null;
|
171
|
-
referralCode: string;
|
172
172
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
173
173
|
};
|
174
174
|
tokens: {
|
@@ -209,6 +209,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
209
209
|
dni: z.ZodNullable<z.ZodString>;
|
210
210
|
created_at: z.ZodString;
|
211
211
|
updated_at: z.ZodString;
|
212
|
+
referralCode: z.ZodString;
|
212
213
|
shortId: z.ZodNumber;
|
213
214
|
firstTimeMiExpo: z.ZodBoolean;
|
214
215
|
isPhoneVerified: z.ZodBoolean;
|
@@ -221,7 +222,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
221
222
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
222
223
|
isInTrash: z.ZodBoolean;
|
223
224
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
224
|
-
referralCode: z.ZodString;
|
225
225
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
226
226
|
id: string;
|
227
227
|
username: string | null;
|
@@ -234,6 +234,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
234
234
|
dni: string | null;
|
235
235
|
created_at: string;
|
236
236
|
updated_at: string;
|
237
|
+
referralCode: string;
|
237
238
|
shortId: number;
|
238
239
|
firstTimeMiExpo: boolean;
|
239
240
|
isPhoneVerified: boolean;
|
@@ -246,7 +247,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
246
247
|
residenceLocationId: string | null;
|
247
248
|
isInTrash: boolean;
|
248
249
|
movedToTrashDate: string | null;
|
249
|
-
referralCode: string;
|
250
250
|
}, {
|
251
251
|
id: string;
|
252
252
|
username: string | null;
|
@@ -258,6 +258,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
258
258
|
dni: string | null;
|
259
259
|
created_at: string;
|
260
260
|
updated_at: string;
|
261
|
+
referralCode: string;
|
261
262
|
shortId: number;
|
262
263
|
firstTimeMiExpo: boolean;
|
263
264
|
isPhoneVerified: boolean;
|
@@ -270,7 +271,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
270
271
|
residenceLocationId: string | null;
|
271
272
|
isInTrash: boolean;
|
272
273
|
movedToTrashDate: string | null;
|
273
|
-
referralCode: string;
|
274
274
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
275
275
|
}>;
|
276
276
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -286,6 +286,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
286
286
|
dni: string | null;
|
287
287
|
created_at: string;
|
288
288
|
updated_at: string;
|
289
|
+
referralCode: string;
|
289
290
|
shortId: number;
|
290
291
|
firstTimeMiExpo: boolean;
|
291
292
|
isPhoneVerified: boolean;
|
@@ -298,7 +299,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
298
299
|
residenceLocationId: string | null;
|
299
300
|
isInTrash: boolean;
|
300
301
|
movedToTrashDate: string | null;
|
301
|
-
referralCode: string;
|
302
302
|
};
|
303
303
|
tokens: {
|
304
304
|
accessToken: string;
|
@@ -317,6 +317,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
317
317
|
dni: string | null;
|
318
318
|
created_at: string;
|
319
319
|
updated_at: string;
|
320
|
+
referralCode: string;
|
320
321
|
shortId: number;
|
321
322
|
firstTimeMiExpo: boolean;
|
322
323
|
isPhoneVerified: boolean;
|
@@ -329,7 +330,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
329
330
|
residenceLocationId: string | null;
|
330
331
|
isInTrash: boolean;
|
331
332
|
movedToTrashDate: string | null;
|
332
|
-
referralCode: string;
|
333
333
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
334
334
|
};
|
335
335
|
tokens: {
|
@@ -78,6 +78,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
78
78
|
dni: string | null;
|
79
79
|
created_at: Date;
|
80
80
|
updated_at: Date;
|
81
|
+
referralCode: string;
|
81
82
|
shortId: number;
|
82
83
|
firstTimeMiExpo: boolean;
|
83
84
|
isPhoneVerified: boolean;
|
@@ -90,7 +91,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
90
91
|
residenceLocationId: string | null;
|
91
92
|
isInTrash: boolean;
|
92
93
|
movedToTrashDate: Date | null;
|
93
|
-
referralCode: string;
|
94
94
|
}, {
|
95
95
|
id: string;
|
96
96
|
username: string | null;
|
@@ -102,6 +102,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
102
102
|
dni: string | null;
|
103
103
|
created_at: Date;
|
104
104
|
updated_at: Date;
|
105
|
+
referralCode: string;
|
105
106
|
shortId: number;
|
106
107
|
firstTimeMiExpo: boolean;
|
107
108
|
isPhoneVerified: boolean;
|
@@ -114,7 +115,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
114
115
|
residenceLocationId: string | null;
|
115
116
|
isInTrash: boolean;
|
116
117
|
movedToTrashDate: Date | null;
|
117
|
-
referralCode: string;
|
118
118
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
119
119
|
}>;
|
120
120
|
backendTokens: z.ZodObject<{
|
@@ -143,6 +143,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
143
143
|
dni: string | null;
|
144
144
|
created_at: Date;
|
145
145
|
updated_at: Date;
|
146
|
+
referralCode: string;
|
146
147
|
shortId: number;
|
147
148
|
firstTimeMiExpo: boolean;
|
148
149
|
isPhoneVerified: boolean;
|
@@ -155,7 +156,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
155
156
|
residenceLocationId: string | null;
|
156
157
|
isInTrash: boolean;
|
157
158
|
movedToTrashDate: Date | null;
|
158
|
-
referralCode: string;
|
159
159
|
};
|
160
160
|
backendTokens: {
|
161
161
|
accessToken: string;
|
@@ -174,6 +174,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
174
174
|
dni: string | null;
|
175
175
|
created_at: Date;
|
176
176
|
updated_at: Date;
|
177
|
+
referralCode: string;
|
177
178
|
shortId: number;
|
178
179
|
firstTimeMiExpo: boolean;
|
179
180
|
isPhoneVerified: boolean;
|
@@ -186,7 +187,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
186
187
|
residenceLocationId: string | null;
|
187
188
|
isInTrash: boolean;
|
188
189
|
movedToTrashDate: Date | null;
|
189
|
-
referralCode: string;
|
190
190
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
191
191
|
};
|
192
192
|
backendTokens: {
|
@@ -214,6 +214,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
214
214
|
dni: z.ZodNullable<z.ZodString>;
|
215
215
|
created_at: z.ZodString;
|
216
216
|
updated_at: z.ZodString;
|
217
|
+
referralCode: z.ZodString;
|
217
218
|
shortId: z.ZodNumber;
|
218
219
|
firstTimeMiExpo: z.ZodBoolean;
|
219
220
|
isPhoneVerified: z.ZodBoolean;
|
@@ -226,7 +227,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
226
227
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
227
228
|
isInTrash: z.ZodBoolean;
|
228
229
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
229
|
-
referralCode: z.ZodString;
|
230
230
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
231
231
|
id: string;
|
232
232
|
username: string | null;
|
@@ -239,6 +239,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
239
239
|
dni: string | null;
|
240
240
|
created_at: string;
|
241
241
|
updated_at: string;
|
242
|
+
referralCode: string;
|
242
243
|
shortId: number;
|
243
244
|
firstTimeMiExpo: boolean;
|
244
245
|
isPhoneVerified: boolean;
|
@@ -251,7 +252,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
251
252
|
residenceLocationId: string | null;
|
252
253
|
isInTrash: boolean;
|
253
254
|
movedToTrashDate: string | null;
|
254
|
-
referralCode: string;
|
255
255
|
}, {
|
256
256
|
id: string;
|
257
257
|
username: string | null;
|
@@ -263,6 +263,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
263
263
|
dni: string | null;
|
264
264
|
created_at: string;
|
265
265
|
updated_at: string;
|
266
|
+
referralCode: string;
|
266
267
|
shortId: number;
|
267
268
|
firstTimeMiExpo: boolean;
|
268
269
|
isPhoneVerified: boolean;
|
@@ -275,7 +276,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
275
276
|
residenceLocationId: string | null;
|
276
277
|
isInTrash: boolean;
|
277
278
|
movedToTrashDate: string | null;
|
278
|
-
referralCode: string;
|
279
279
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
280
280
|
}>;
|
281
281
|
backendTokens: z.ZodObject<{
|
@@ -304,6 +304,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
304
304
|
dni: string | null;
|
305
305
|
created_at: string;
|
306
306
|
updated_at: string;
|
307
|
+
referralCode: string;
|
307
308
|
shortId: number;
|
308
309
|
firstTimeMiExpo: boolean;
|
309
310
|
isPhoneVerified: boolean;
|
@@ -316,7 +317,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
316
317
|
residenceLocationId: string | null;
|
317
318
|
isInTrash: boolean;
|
318
319
|
movedToTrashDate: string | null;
|
319
|
-
referralCode: string;
|
320
320
|
};
|
321
321
|
backendTokens: {
|
322
322
|
accessToken: string;
|
@@ -335,6 +335,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
335
335
|
dni: string | null;
|
336
336
|
created_at: string;
|
337
337
|
updated_at: string;
|
338
|
+
referralCode: string;
|
338
339
|
shortId: number;
|
339
340
|
firstTimeMiExpo: boolean;
|
340
341
|
isPhoneVerified: boolean;
|
@@ -347,7 +348,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
347
348
|
residenceLocationId: string | null;
|
348
349
|
isInTrash: boolean;
|
349
350
|
movedToTrashDate: string | null;
|
350
|
-
referralCode: string;
|
351
351
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
352
352
|
};
|
353
353
|
backendTokens: {
|
@@ -250,6 +250,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
250
250
|
dni: string | null;
|
251
251
|
created_at: Date;
|
252
252
|
updated_at: Date;
|
253
|
+
referralCode: string;
|
253
254
|
shortId: number;
|
254
255
|
firstTimeMiExpo: boolean;
|
255
256
|
isPhoneVerified: boolean;
|
@@ -262,7 +263,6 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
262
263
|
residenceLocationId: string | null;
|
263
264
|
isInTrash: boolean;
|
264
265
|
movedToTrashDate: Date | null;
|
265
|
-
referralCode: string;
|
266
266
|
}, {
|
267
267
|
id: string;
|
268
268
|
username: string | null;
|
@@ -274,6 +274,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
274
274
|
dni: string | null;
|
275
275
|
created_at: Date;
|
276
276
|
updated_at: Date;
|
277
|
+
referralCode: string;
|
277
278
|
shortId: number;
|
278
279
|
firstTimeMiExpo: boolean;
|
279
280
|
isPhoneVerified: boolean;
|
@@ -286,7 +287,6 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
286
287
|
residenceLocationId: string | null;
|
287
288
|
isInTrash: boolean;
|
288
289
|
movedToTrashDate: Date | null;
|
289
|
-
referralCode: string;
|
290
290
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
291
291
|
}>;
|
292
292
|
declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -307,6 +307,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
307
307
|
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
308
308
|
created_at: import("zod").ZodString;
|
309
309
|
updated_at: import("zod").ZodString;
|
310
|
+
referralCode: import("zod").ZodString;
|
310
311
|
shortId: import("zod").ZodNumber;
|
311
312
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
312
313
|
isPhoneVerified: import("zod").ZodBoolean;
|
@@ -319,7 +320,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
319
320
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
320
321
|
isInTrash: import("zod").ZodBoolean;
|
321
322
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
322
|
-
referralCode: import("zod").ZodString;
|
323
323
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
324
324
|
id: string;
|
325
325
|
username: string | null;
|
@@ -332,6 +332,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
332
332
|
dni: string | null;
|
333
333
|
created_at: string;
|
334
334
|
updated_at: string;
|
335
|
+
referralCode: string;
|
335
336
|
shortId: number;
|
336
337
|
firstTimeMiExpo: boolean;
|
337
338
|
isPhoneVerified: boolean;
|
@@ -344,7 +345,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
344
345
|
residenceLocationId: string | null;
|
345
346
|
isInTrash: boolean;
|
346
347
|
movedToTrashDate: string | null;
|
347
|
-
referralCode: string;
|
348
348
|
}, {
|
349
349
|
id: string;
|
350
350
|
username: string | null;
|
@@ -356,6 +356,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
356
356
|
dni: string | null;
|
357
357
|
created_at: string;
|
358
358
|
updated_at: string;
|
359
|
+
referralCode: string;
|
359
360
|
shortId: number;
|
360
361
|
firstTimeMiExpo: boolean;
|
361
362
|
isPhoneVerified: boolean;
|
@@ -368,7 +369,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
368
369
|
residenceLocationId: string | null;
|
369
370
|
isInTrash: boolean;
|
370
371
|
movedToTrashDate: string | null;
|
371
|
-
referralCode: string;
|
372
372
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
373
373
|
}>>;
|
374
374
|
export declare class UpdateMiExpoMeResponseDto extends UpdateMiExpoMeResponseDto_base {
|