expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.12 → 0.34.0-EXPO-322-ExpoBackend-Rol-de-expoTickets.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/account/dto/account.dto.d.ts +4 -6
- package/dist/src/account/dto/create-account.dto.d.ts +8 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +0 -1
- package/dist/src/account/dto/get-me.dto.d.ts +4 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +4 -6
- package/dist/src/auth/dto/login.dto.d.ts +8 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +0 -1
- package/dist/src/event/dto/get-all-event.dto.d.ts +0 -616
- package/dist/src/event/dto/get-all-event.dto.js +8 -29
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -307
- package/dist/src/event/dto/get-by-id-event.dto.js +0 -4
- package/dist/src/event/dto/update-event.dto.d.ts +0 -6
- package/dist/src/event/dto/update-event.dto.js +0 -1
- package/dist/src/i18n/es.d.ts +0 -13
- package/dist/src/i18n/es.js +0 -13
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +0 -16
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +0 -20
- package/dist/src/mi-expo/dto/login.dto.d.ts +0 -21
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +0 -16
- package/dist/src/mi-expo/exports.d.ts +0 -2
- package/dist/src/mi-expo/exports.js +0 -2
- package/dist/src/otp/dto/verify-otp.dto.d.ts +0 -20
- package/dist/src/profile/dto/create-profile.dto.d.ts +0 -24
- package/dist/src/profile/dto/delete-profile.dto.d.ts +0 -16
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +0 -20
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +0 -36
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +0 -16
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +0 -16
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +0 -20
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +1 -55
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +0 -2
- package/dist/src/profile/dto/find-trash.dto.d.ts +0 -6
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +0 -20
- package/dist/src/profile/dto/profile.dto.d.ts +0 -8
- package/dist/src/profile/dto/update-profile.dto.d.ts +0 -16
- package/dist/src/schema/profile.schema.d.ts +0 -8
- package/dist/src/schema/profile.schema.js +0 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +0 -20
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +0 -20
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +4 -158
- package/dist/src/ticket/dto/create-ticket.dto.js +2 -10
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -370
- package/dist/src/ticket/dto/find-by-event-ticket.dto.js +0 -2
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -370
- package/dist/src/ticket/dto/find-by-id-ticket.dto.js +0 -2
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -370
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +0 -2
- package/dist/src/ticket/exports.d.ts +0 -1
- package/dist/src/ticket/exports.js +0 -1
- package/dist/types/prisma-schema/edge.js +4 -7
- package/dist/types/prisma-schema/index-browser.js +1 -4
- package/dist/types/prisma-schema/index.d.ts +69 -557
- package/dist/types/prisma-schema/index.js +4 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +2 -10
- package/dist/types/prisma-schema/wasm.js +1 -4
- package/dist/types/schema.d.ts +5 -400
- package/package.json +1 -1
- package/dist/src/mi-expo/dto/emit-ticket.dto.d.ts +0 -281
- package/dist/src/mi-expo/dto/emit-ticket.dto.js +0 -23
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -104
- package/dist/src/mi-expo/dto/get-invitations.dto.js +0 -24
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -331
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.js +0 -19
@@ -32,12 +32,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
32
32
|
profile: z.ZodObject<Omit<{
|
33
33
|
id: z.ZodString;
|
34
34
|
shortId: z.ZodNumber;
|
35
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
36
|
-
USER: "USER";
|
37
|
-
ADMIN: "ADMIN";
|
38
|
-
FORM: "FORM";
|
39
|
-
MI_EXPO: "MI_EXPO";
|
40
|
-
}>>;
|
41
35
|
firstTimeMiExpo: z.ZodBoolean;
|
42
36
|
username: z.ZodNullable<z.ZodString>;
|
43
37
|
password: z.ZodNullable<z.ZodString>;
|
@@ -62,7 +56,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
62
56
|
}, "password">, "strip", z.ZodTypeAny, {
|
63
57
|
id: string;
|
64
58
|
username: string | null;
|
65
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
66
59
|
phoneNumber: string;
|
67
60
|
secondaryPhoneNumber: string | null;
|
68
61
|
fullName: string;
|
@@ -106,13 +99,11 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
106
99
|
residenceLocationId: string | null;
|
107
100
|
isInTrash: boolean;
|
108
101
|
movedToTrashDate: Date | null;
|
109
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
110
102
|
}>;
|
111
103
|
}, "strip", z.ZodTypeAny, {
|
112
104
|
profile: {
|
113
105
|
id: string;
|
114
106
|
username: string | null;
|
115
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
116
107
|
phoneNumber: string;
|
117
108
|
secondaryPhoneNumber: string | null;
|
118
109
|
fullName: string;
|
@@ -163,7 +154,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
163
154
|
residenceLocationId: string | null;
|
164
155
|
isInTrash: boolean;
|
165
156
|
movedToTrashDate: Date | null;
|
166
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
167
157
|
};
|
168
158
|
tokens: {
|
169
159
|
accessToken: string;
|
@@ -188,12 +178,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
188
178
|
profile: z.ZodObject<{
|
189
179
|
id: z.ZodString;
|
190
180
|
username: z.ZodNullable<z.ZodString>;
|
191
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
192
|
-
USER: "USER";
|
193
|
-
ADMIN: "ADMIN";
|
194
|
-
FORM: "FORM";
|
195
|
-
MI_EXPO: "MI_EXPO";
|
196
|
-
}>>;
|
197
181
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
198
182
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
199
183
|
fullName: z.ZodString;
|
@@ -217,7 +201,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
217
201
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
218
202
|
id: string;
|
219
203
|
username: string | null;
|
220
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
221
204
|
phoneNumber: string;
|
222
205
|
secondaryPhoneNumber: string | null;
|
223
206
|
fullName: string;
|
@@ -261,13 +244,11 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
261
244
|
residenceLocationId: string | null;
|
262
245
|
isInTrash: boolean;
|
263
246
|
movedToTrashDate: string | null;
|
264
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
265
247
|
}>;
|
266
248
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
267
249
|
profile: {
|
268
250
|
id: string;
|
269
251
|
username: string | null;
|
270
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
271
252
|
phoneNumber: string;
|
272
253
|
secondaryPhoneNumber: string | null;
|
273
254
|
fullName: string;
|
@@ -318,7 +299,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
318
299
|
residenceLocationId: string | null;
|
319
300
|
isInTrash: boolean;
|
320
301
|
movedToTrashDate: string | null;
|
321
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
322
302
|
};
|
323
303
|
tokens: {
|
324
304
|
accessToken: string;
|
@@ -7,7 +7,6 @@ export declare const loginMiExpoSchema: z.ZodObject<Pick<{
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
10
|
}>;
|
12
11
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
13
12
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -36,12 +35,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
36
35
|
user: z.ZodObject<Omit<{
|
37
36
|
id: z.ZodString;
|
38
37
|
shortId: z.ZodNumber;
|
39
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
40
|
-
USER: "USER";
|
41
|
-
ADMIN: "ADMIN";
|
42
|
-
FORM: "FORM";
|
43
|
-
MI_EXPO: "MI_EXPO";
|
44
|
-
}>>;
|
45
38
|
firstTimeMiExpo: z.ZodBoolean;
|
46
39
|
username: z.ZodNullable<z.ZodString>;
|
47
40
|
password: z.ZodNullable<z.ZodString>;
|
@@ -66,7 +59,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
66
59
|
}, "password">, "strip", z.ZodTypeAny, {
|
67
60
|
id: string;
|
68
61
|
username: string | null;
|
69
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
70
62
|
phoneNumber: string;
|
71
63
|
secondaryPhoneNumber: string | null;
|
72
64
|
fullName: string;
|
@@ -110,7 +102,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
110
102
|
residenceLocationId: string | null;
|
111
103
|
isInTrash: boolean;
|
112
104
|
movedToTrashDate: Date | null;
|
113
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
114
105
|
}>;
|
115
106
|
backendTokens: z.ZodObject<{
|
116
107
|
accessToken: z.ZodString;
|
@@ -129,7 +120,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
129
120
|
user: {
|
130
121
|
id: string;
|
131
122
|
username: string | null;
|
132
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
133
123
|
phoneNumber: string;
|
134
124
|
secondaryPhoneNumber: string | null;
|
135
125
|
fullName: string;
|
@@ -180,7 +170,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
180
170
|
residenceLocationId: string | null;
|
181
171
|
isInTrash: boolean;
|
182
172
|
movedToTrashDate: Date | null;
|
183
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
184
173
|
};
|
185
174
|
backendTokens: {
|
186
175
|
accessToken: string;
|
@@ -192,12 +181,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
192
181
|
user: z.ZodObject<{
|
193
182
|
id: z.ZodString;
|
194
183
|
username: z.ZodNullable<z.ZodString>;
|
195
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
196
|
-
USER: "USER";
|
197
|
-
ADMIN: "ADMIN";
|
198
|
-
FORM: "FORM";
|
199
|
-
MI_EXPO: "MI_EXPO";
|
200
|
-
}>>;
|
201
184
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
202
185
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
203
186
|
fullName: z.ZodString;
|
@@ -221,7 +204,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
221
204
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
222
205
|
id: string;
|
223
206
|
username: string | null;
|
224
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
225
207
|
phoneNumber: string;
|
226
208
|
secondaryPhoneNumber: string | null;
|
227
209
|
fullName: string;
|
@@ -265,7 +247,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
265
247
|
residenceLocationId: string | null;
|
266
248
|
isInTrash: boolean;
|
267
249
|
movedToTrashDate: string | null;
|
268
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
269
250
|
}>;
|
270
251
|
backendTokens: z.ZodObject<{
|
271
252
|
accessToken: z.ZodString;
|
@@ -284,7 +265,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
284
265
|
user: {
|
285
266
|
id: string;
|
286
267
|
username: string | null;
|
287
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
288
268
|
phoneNumber: string;
|
289
269
|
secondaryPhoneNumber: string | null;
|
290
270
|
fullName: string;
|
@@ -335,7 +315,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
335
315
|
residenceLocationId: string | null;
|
336
316
|
isInTrash: boolean;
|
337
317
|
movedToTrashDate: string | null;
|
338
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
339
318
|
};
|
340
319
|
backendTokens: {
|
341
320
|
accessToken: string;
|
@@ -209,12 +209,6 @@ export declare class UpdateMiExpoMeDto extends UpdateMiExpoMeDto_base {
|
|
209
209
|
export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<{
|
210
210
|
id: import("zod").ZodString;
|
211
211
|
shortId: import("zod").ZodNumber;
|
212
|
-
role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
|
213
|
-
USER: "USER";
|
214
|
-
ADMIN: "ADMIN";
|
215
|
-
FORM: "FORM";
|
216
|
-
MI_EXPO: "MI_EXPO";
|
217
|
-
}>>;
|
218
212
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
219
213
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
220
214
|
password: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -239,7 +233,6 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
239
233
|
}, "password">, "strip", import("zod").ZodTypeAny, {
|
240
234
|
id: string;
|
241
235
|
username: string | null;
|
242
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
243
236
|
phoneNumber: string;
|
244
237
|
secondaryPhoneNumber: string | null;
|
245
238
|
fullName: string;
|
@@ -283,17 +276,10 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
283
276
|
residenceLocationId: string | null;
|
284
277
|
isInTrash: boolean;
|
285
278
|
movedToTrashDate: Date | null;
|
286
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
287
279
|
}>;
|
288
280
|
declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
289
281
|
id: import("zod").ZodString;
|
290
282
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
291
|
-
role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
|
292
|
-
USER: "USER";
|
293
|
-
ADMIN: "ADMIN";
|
294
|
-
FORM: "FORM";
|
295
|
-
MI_EXPO: "MI_EXPO";
|
296
|
-
}>>;
|
297
283
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
298
284
|
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
299
285
|
fullName: import("zod").ZodString;
|
@@ -317,7 +303,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
317
303
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
318
304
|
id: string;
|
319
305
|
username: string | null;
|
320
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
321
306
|
phoneNumber: string;
|
322
307
|
secondaryPhoneNumber: string | null;
|
323
308
|
fullName: string;
|
@@ -361,7 +346,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
361
346
|
residenceLocationId: string | null;
|
362
347
|
isInTrash: boolean;
|
363
348
|
movedToTrashDate: string | null;
|
364
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
365
349
|
}>>;
|
366
350
|
export declare class UpdateMiExpoMeResponseDto extends UpdateMiExpoMeResponseDto_base {
|
367
351
|
}
|
@@ -14,8 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
__exportStar(require("./dto/emit-ticket.dto"), exports);
|
18
|
-
__exportStar(require("./dto/get-invitations.dto"), exports);
|
19
17
|
__exportStar(require("./dto/get-me.dto"), exports);
|
20
18
|
__exportStar(require("./dto/login-with-phone.dto"), exports);
|
21
19
|
__exportStar(require("./dto/login.dto"), exports);
|
@@ -26,12 +26,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
26
26
|
profile: z.ZodObject<z.objectUtil.extendShape<{
|
27
27
|
id: z.ZodString;
|
28
28
|
shortId: z.ZodNumber;
|
29
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
30
|
-
USER: "USER";
|
31
|
-
ADMIN: "ADMIN";
|
32
|
-
FORM: "FORM";
|
33
|
-
MI_EXPO: "MI_EXPO";
|
34
|
-
}>>;
|
35
29
|
firstTimeMiExpo: z.ZodBoolean;
|
36
30
|
username: z.ZodNullable<z.ZodString>;
|
37
31
|
password: z.ZodNullable<z.ZodString>;
|
@@ -98,7 +92,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
98
92
|
id: string;
|
99
93
|
username: string | null;
|
100
94
|
password: string | null;
|
101
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
102
95
|
phoneNumber: string;
|
103
96
|
secondaryPhoneNumber: string | null;
|
104
97
|
fullName: string;
|
@@ -167,14 +160,12 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
167
160
|
country: string;
|
168
161
|
city: string;
|
169
162
|
} | null;
|
170
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
171
163
|
}>;
|
172
164
|
}, "strip", z.ZodTypeAny, {
|
173
165
|
profile: {
|
174
166
|
id: string;
|
175
167
|
username: string | null;
|
176
168
|
password: string | null;
|
177
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
178
169
|
phoneNumber: string;
|
179
170
|
secondaryPhoneNumber: string | null;
|
180
171
|
fullName: string;
|
@@ -246,7 +237,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
246
237
|
country: string;
|
247
238
|
city: string;
|
248
239
|
} | null;
|
249
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
250
240
|
};
|
251
241
|
success: boolean;
|
252
242
|
}>;
|
@@ -255,12 +245,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
255
245
|
profile: z.ZodObject<{
|
256
246
|
id: z.ZodString;
|
257
247
|
shortId: z.ZodNumber;
|
258
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
259
|
-
USER: "USER";
|
260
|
-
ADMIN: "ADMIN";
|
261
|
-
FORM: "FORM";
|
262
|
-
MI_EXPO: "MI_EXPO";
|
263
|
-
}>>;
|
264
248
|
firstTimeMiExpo: z.ZodBoolean;
|
265
249
|
username: z.ZodNullable<z.ZodString>;
|
266
250
|
password: z.ZodNullable<z.ZodString>;
|
@@ -318,7 +302,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
318
302
|
id: string;
|
319
303
|
username: string | null;
|
320
304
|
password: string | null;
|
321
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
322
305
|
phoneNumber: string;
|
323
306
|
secondaryPhoneNumber: string | null;
|
324
307
|
fullName: string;
|
@@ -387,14 +370,12 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
387
370
|
country: string;
|
388
371
|
city: string;
|
389
372
|
} | null;
|
390
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
391
373
|
}>;
|
392
374
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
393
375
|
profile: {
|
394
376
|
id: string;
|
395
377
|
username: string | null;
|
396
378
|
password: string | null;
|
397
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
398
379
|
phoneNumber: string;
|
399
380
|
secondaryPhoneNumber: string | null;
|
400
381
|
fullName: string;
|
@@ -466,7 +447,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
466
447
|
country: string;
|
467
448
|
city: string;
|
468
449
|
} | null;
|
469
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
470
450
|
};
|
471
451
|
success: boolean;
|
472
452
|
}>>;
|
@@ -3,12 +3,6 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
3
3
|
profile: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
4
4
|
id: z.ZodString;
|
5
5
|
shortId: z.ZodNumber;
|
6
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
7
|
-
USER: "USER";
|
8
|
-
ADMIN: "ADMIN";
|
9
|
-
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
|
-
}>>;
|
12
6
|
firstTimeMiExpo: z.ZodBoolean;
|
13
7
|
username: z.ZodNullable<z.ZodString>;
|
14
8
|
password: z.ZodNullable<z.ZodString>;
|
@@ -437,12 +431,6 @@ declare const similarProfileSchema: z.ZodObject<{
|
|
437
431
|
profile: z.ZodObject<Pick<{
|
438
432
|
id: z.ZodString;
|
439
433
|
shortId: z.ZodNumber;
|
440
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
441
|
-
USER: "USER";
|
442
|
-
ADMIN: "ADMIN";
|
443
|
-
FORM: "FORM";
|
444
|
-
MI_EXPO: "MI_EXPO";
|
445
|
-
}>>;
|
446
434
|
firstTimeMiExpo: z.ZodBoolean;
|
447
435
|
username: z.ZodNullable<z.ZodString>;
|
448
436
|
password: z.ZodNullable<z.ZodString>;
|
@@ -498,12 +486,6 @@ export declare const createProfileResponseSchema: z.ZodObject<{
|
|
498
486
|
profile: z.ZodObject<Pick<{
|
499
487
|
id: z.ZodString;
|
500
488
|
shortId: z.ZodNumber;
|
501
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
502
|
-
USER: "USER";
|
503
|
-
ADMIN: "ADMIN";
|
504
|
-
FORM: "FORM";
|
505
|
-
MI_EXPO: "MI_EXPO";
|
506
|
-
}>>;
|
507
489
|
firstTimeMiExpo: z.ZodBoolean;
|
508
490
|
username: z.ZodNullable<z.ZodString>;
|
509
491
|
password: z.ZodNullable<z.ZodString>;
|
@@ -627,12 +609,6 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
627
609
|
profile: z.ZodObject<Pick<{
|
628
610
|
id: z.ZodString;
|
629
611
|
shortId: z.ZodNumber;
|
630
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
631
|
-
USER: "USER";
|
632
|
-
ADMIN: "ADMIN";
|
633
|
-
FORM: "FORM";
|
634
|
-
MI_EXPO: "MI_EXPO";
|
635
|
-
}>>;
|
636
612
|
firstTimeMiExpo: z.ZodBoolean;
|
637
613
|
username: z.ZodNullable<z.ZodString>;
|
638
614
|
password: z.ZodNullable<z.ZodString>;
|
@@ -1,12 +1,6 @@
|
|
1
1
|
export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
shortId: import("zod").ZodNumber;
|
4
|
-
role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
|
5
|
-
USER: "USER";
|
6
|
-
ADMIN: "ADMIN";
|
7
|
-
FORM: "FORM";
|
8
|
-
MI_EXPO: "MI_EXPO";
|
9
|
-
}>>;
|
10
4
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
11
5
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
12
6
|
password: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -32,7 +26,6 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
32
26
|
id: string;
|
33
27
|
username: string | null;
|
34
28
|
password: string | null;
|
35
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
36
29
|
phoneNumber: string;
|
37
30
|
secondaryPhoneNumber: string | null;
|
38
31
|
fullName: string;
|
@@ -77,17 +70,10 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
77
70
|
residenceLocationId: string | null;
|
78
71
|
isInTrash: boolean;
|
79
72
|
movedToTrashDate: Date | null;
|
80
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
81
73
|
}>;
|
82
74
|
declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
83
75
|
id: import("zod").ZodString;
|
84
76
|
shortId: import("zod").ZodNumber;
|
85
|
-
role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
|
86
|
-
USER: "USER";
|
87
|
-
ADMIN: "ADMIN";
|
88
|
-
FORM: "FORM";
|
89
|
-
MI_EXPO: "MI_EXPO";
|
90
|
-
}>>;
|
91
77
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
92
78
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
93
79
|
password: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -113,7 +99,6 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
113
99
|
id: string;
|
114
100
|
username: string | null;
|
115
101
|
password: string | null;
|
116
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
117
102
|
phoneNumber: string;
|
118
103
|
secondaryPhoneNumber: string | null;
|
119
104
|
fullName: string;
|
@@ -158,7 +143,6 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
158
143
|
residenceLocationId: string | null;
|
159
144
|
isInTrash: boolean;
|
160
145
|
movedToTrashDate: string | null;
|
161
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
162
146
|
}>>;
|
163
147
|
export declare class DeleteProfileResponseDto extends DeleteProfileResponseDto_base {
|
164
148
|
}
|
@@ -3,12 +3,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
3
3
|
profiles: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
4
4
|
id: z.ZodString;
|
5
5
|
shortId: z.ZodNumber;
|
6
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
7
|
-
USER: "USER";
|
8
|
-
ADMIN: "ADMIN";
|
9
|
-
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
|
-
}>>;
|
12
6
|
firstTimeMiExpo: z.ZodBoolean;
|
13
7
|
username: z.ZodNullable<z.ZodString>;
|
14
8
|
password: z.ZodNullable<z.ZodString>;
|
@@ -85,7 +79,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
85
79
|
id: string;
|
86
80
|
username: string | null;
|
87
81
|
password: string | null;
|
88
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
89
82
|
phoneNumber: string;
|
90
83
|
secondaryPhoneNumber: string | null;
|
91
84
|
fullName: string;
|
@@ -154,14 +147,12 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
154
147
|
isExclusive: boolean;
|
155
148
|
};
|
156
149
|
}[];
|
157
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
158
150
|
}>, "many">;
|
159
151
|
}, "strip", z.ZodTypeAny, {
|
160
152
|
profiles: {
|
161
153
|
id: string;
|
162
154
|
username: string | null;
|
163
155
|
password: string | null;
|
164
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
165
156
|
phoneNumber: string;
|
166
157
|
secondaryPhoneNumber: string | null;
|
167
158
|
fullName: string;
|
@@ -232,19 +223,12 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
232
223
|
isExclusive: boolean;
|
233
224
|
};
|
234
225
|
}[];
|
235
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
236
226
|
}[];
|
237
227
|
}>;
|
238
228
|
declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
239
229
|
profiles: z.ZodArray<z.ZodObject<{
|
240
230
|
id: z.ZodString;
|
241
231
|
shortId: z.ZodNumber;
|
242
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
243
|
-
USER: "USER";
|
244
|
-
ADMIN: "ADMIN";
|
245
|
-
FORM: "FORM";
|
246
|
-
MI_EXPO: "MI_EXPO";
|
247
|
-
}>>;
|
248
232
|
firstTimeMiExpo: z.ZodBoolean;
|
249
233
|
username: z.ZodNullable<z.ZodString>;
|
250
234
|
password: z.ZodNullable<z.ZodString>;
|
@@ -315,7 +299,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
315
299
|
id: string;
|
316
300
|
username: string | null;
|
317
301
|
password: string | null;
|
318
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
319
302
|
phoneNumber: string;
|
320
303
|
secondaryPhoneNumber: string | null;
|
321
304
|
fullName: string;
|
@@ -384,14 +367,12 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
384
367
|
isExclusive: boolean;
|
385
368
|
};
|
386
369
|
}[];
|
387
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
388
370
|
}>, "many">;
|
389
371
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
390
372
|
profiles: {
|
391
373
|
id: string;
|
392
374
|
username: string | null;
|
393
375
|
password: string | null;
|
394
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
395
376
|
phoneNumber: string;
|
396
377
|
secondaryPhoneNumber: string | null;
|
397
378
|
fullName: string;
|
@@ -462,7 +443,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
462
443
|
isExclusive: boolean;
|
463
444
|
};
|
464
445
|
}[];
|
465
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
466
446
|
}[];
|
467
447
|
}>>;
|
468
448
|
export declare class FindAllProfileResponseDto extends FindAllProfileResponseDto_base {
|
@@ -3,12 +3,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
3
3
|
profiles: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
4
4
|
id: z.ZodString;
|
5
5
|
shortId: z.ZodNumber;
|
6
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
7
|
-
USER: "USER";
|
8
|
-
ADMIN: "ADMIN";
|
9
|
-
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
|
-
}>>;
|
12
6
|
firstTimeMiExpo: z.ZodBoolean;
|
13
7
|
username: z.ZodNullable<z.ZodString>;
|
14
8
|
password: z.ZodNullable<z.ZodString>;
|
@@ -81,7 +75,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
81
75
|
id: string;
|
82
76
|
username: string | null;
|
83
77
|
password: string | null;
|
84
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
85
78
|
phoneNumber: string;
|
86
79
|
secondaryPhoneNumber: string | null;
|
87
80
|
fullName: string;
|
@@ -148,14 +141,12 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
148
141
|
id: string;
|
149
142
|
};
|
150
143
|
}[];
|
151
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
152
144
|
}>, "many">;
|
153
145
|
}, "strip", z.ZodTypeAny, {
|
154
146
|
profiles: {
|
155
147
|
id: string;
|
156
148
|
username: string | null;
|
157
149
|
password: string | null;
|
158
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
159
150
|
phoneNumber: string;
|
160
151
|
secondaryPhoneNumber: string | null;
|
161
152
|
fullName: string;
|
@@ -224,19 +215,12 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
224
215
|
id: string;
|
225
216
|
};
|
226
217
|
}[];
|
227
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
228
218
|
}[];
|
229
219
|
}>;
|
230
220
|
declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
231
221
|
profiles: z.ZodArray<z.ZodObject<{
|
232
222
|
id: z.ZodString;
|
233
223
|
shortId: z.ZodNumber;
|
234
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
235
|
-
USER: "USER";
|
236
|
-
ADMIN: "ADMIN";
|
237
|
-
FORM: "FORM";
|
238
|
-
MI_EXPO: "MI_EXPO";
|
239
|
-
}>>;
|
240
224
|
firstTimeMiExpo: z.ZodBoolean;
|
241
225
|
username: z.ZodNullable<z.ZodString>;
|
242
226
|
password: z.ZodNullable<z.ZodString>;
|
@@ -302,7 +286,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
302
286
|
id: string;
|
303
287
|
username: string | null;
|
304
288
|
password: string | null;
|
305
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
306
289
|
phoneNumber: string;
|
307
290
|
secondaryPhoneNumber: string | null;
|
308
291
|
fullName: string;
|
@@ -369,14 +352,12 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
369
352
|
id: string;
|
370
353
|
};
|
371
354
|
}[];
|
372
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
373
355
|
}>, "many">;
|
374
356
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
375
357
|
profiles: {
|
376
358
|
id: string;
|
377
359
|
username: string | null;
|
378
360
|
password: string | null;
|
379
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
380
361
|
phoneNumber: string;
|
381
362
|
secondaryPhoneNumber: string | null;
|
382
363
|
fullName: string;
|
@@ -445,7 +426,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
445
426
|
id: string;
|
446
427
|
};
|
447
428
|
}[];
|
448
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
449
429
|
}[];
|
450
430
|
}>>;
|
451
431
|
export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
|
@@ -453,12 +433,6 @@ export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
|
|
453
433
|
export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
454
434
|
id: z.ZodString;
|
455
435
|
shortId: z.ZodNumber;
|
456
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
457
|
-
USER: "USER";
|
458
|
-
ADMIN: "ADMIN";
|
459
|
-
FORM: "FORM";
|
460
|
-
MI_EXPO: "MI_EXPO";
|
461
|
-
}>>;
|
462
436
|
firstTimeMiExpo: z.ZodBoolean;
|
463
437
|
username: z.ZodNullable<z.ZodString>;
|
464
438
|
password: z.ZodNullable<z.ZodString>;
|
@@ -531,7 +505,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
531
505
|
id: string;
|
532
506
|
username: string | null;
|
533
507
|
password: string | null;
|
534
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
535
508
|
phoneNumber: string;
|
536
509
|
secondaryPhoneNumber: string | null;
|
537
510
|
fullName: string;
|
@@ -598,17 +571,10 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
598
571
|
id: string;
|
599
572
|
};
|
600
573
|
}[];
|
601
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
602
574
|
}>, "many">>;
|
603
575
|
declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
604
576
|
id: z.ZodString;
|
605
577
|
shortId: z.ZodNumber;
|
606
|
-
role: z.ZodDefault<z.ZodNativeEnum<{
|
607
|
-
USER: "USER";
|
608
|
-
ADMIN: "ADMIN";
|
609
|
-
FORM: "FORM";
|
610
|
-
MI_EXPO: "MI_EXPO";
|
611
|
-
}>>;
|
612
578
|
firstTimeMiExpo: z.ZodBoolean;
|
613
579
|
username: z.ZodNullable<z.ZodString>;
|
614
580
|
password: z.ZodNullable<z.ZodString>;
|
@@ -681,7 +647,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
681
647
|
id: string;
|
682
648
|
username: string | null;
|
683
649
|
password: string | null;
|
684
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
685
650
|
phoneNumber: string;
|
686
651
|
secondaryPhoneNumber: string | null;
|
687
652
|
fullName: string;
|
@@ -748,7 +713,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
748
713
|
id: string;
|
749
714
|
};
|
750
715
|
}[];
|
751
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
752
716
|
}>, "many">>>;
|
753
717
|
export declare class FindByDateRangeResponseDto extends FindByDateRangeResponseDto_base {
|
754
718
|
}
|