expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.6 → 0.36.0-EXPO-323-Enviar-mail-ticket.7
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/mi-expo/dto/get-me.dto.d.ts +6 -6
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -10
- package/dist/src/mi-expo/dto/login.dto.d.ts +11 -11
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -6
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -10
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -16
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -10
- package/dist/src/profile/dto/profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -6
- package/dist/src/schema/profile.schema.d.ts +3 -3
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -10
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -10
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -14
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -14
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -14
- package/dist/types/prisma-schema/edge.js +5 -5
- package/dist/types/prisma-schema/index-browser.js +2 -2
- package/dist/types/prisma-schema/index.d.ts +2 -2
- package/dist/types/prisma-schema/index.js +5 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -1
- package/dist/types/prisma-schema/wasm.js +2 -2
- package/dist/types/schema.d.ts +22 -22
- package/package.json +1 -1
@@ -7,8 +7,8 @@ export declare const accountSchema: z.ZodObject<{
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
10
|
TICKETS: "TICKETS";
|
11
|
+
MI_EXPO: "MI_EXPO";
|
12
12
|
}>;
|
13
13
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
14
14
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -18,7 +18,7 @@ export declare const accountSchema: z.ZodObject<{
|
|
18
18
|
id: string;
|
19
19
|
username: string;
|
20
20
|
password: string;
|
21
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
21
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
22
22
|
isGlobalFilterActive: boolean;
|
23
23
|
fcmToken: string[];
|
24
24
|
created_at: Date;
|
@@ -27,7 +27,7 @@ export declare const accountSchema: z.ZodObject<{
|
|
27
27
|
id: string;
|
28
28
|
username: string;
|
29
29
|
password: string;
|
30
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
30
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
31
31
|
created_at: Date;
|
32
32
|
updated_at: Date;
|
33
33
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -41,8 +41,8 @@ declare const CuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
41
41
|
USER: "USER";
|
42
42
|
ADMIN: "ADMIN";
|
43
43
|
FORM: "FORM";
|
44
|
-
MI_EXPO: "MI_EXPO";
|
45
44
|
TICKETS: "TICKETS";
|
45
|
+
MI_EXPO: "MI_EXPO";
|
46
46
|
}>;
|
47
47
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
48
48
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -52,7 +52,7 @@ declare const CuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
52
52
|
id: string;
|
53
53
|
username: string;
|
54
54
|
password: string;
|
55
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
55
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
56
56
|
isGlobalFilterActive: boolean;
|
57
57
|
fcmToken: string[];
|
58
58
|
created_at: string;
|
@@ -61,7 +61,7 @@ declare const CuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
61
61
|
id: string;
|
62
62
|
username: string;
|
63
63
|
password: string;
|
64
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
64
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
65
65
|
created_at: string;
|
66
66
|
updated_at: string;
|
67
67
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -6,8 +6,8 @@ export declare const createAccountSchema: import("zod").ZodObject<Pick<{
|
|
6
6
|
USER: "USER";
|
7
7
|
ADMIN: "ADMIN";
|
8
8
|
FORM: "FORM";
|
9
|
-
MI_EXPO: "MI_EXPO";
|
10
9
|
TICKETS: "TICKETS";
|
10
|
+
MI_EXPO: "MI_EXPO";
|
11
11
|
}>;
|
12
12
|
isGlobalFilterActive: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
13
13
|
fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
@@ -16,11 +16,11 @@ export declare const createAccountSchema: import("zod").ZodObject<Pick<{
|
|
16
16
|
}, "username" | "password" | "role">, "strip", import("zod").ZodTypeAny, {
|
17
17
|
username: string;
|
18
18
|
password: string;
|
19
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
19
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
20
20
|
}, {
|
21
21
|
username: string;
|
22
22
|
password: string;
|
23
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
23
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
24
24
|
}>;
|
25
25
|
declare const CreateAccountDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
26
26
|
username: import("zod").ZodString;
|
@@ -29,17 +29,17 @@ declare const CreateAccountDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
29
29
|
USER: "USER";
|
30
30
|
ADMIN: "ADMIN";
|
31
31
|
FORM: "FORM";
|
32
|
-
MI_EXPO: "MI_EXPO";
|
33
32
|
TICKETS: "TICKETS";
|
33
|
+
MI_EXPO: "MI_EXPO";
|
34
34
|
}>;
|
35
35
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
36
36
|
username: string;
|
37
37
|
password: string;
|
38
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
38
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
39
39
|
}, {
|
40
40
|
username: string;
|
41
41
|
password: string;
|
42
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
42
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
43
43
|
}>>;
|
44
44
|
export declare class CreateAccountDto extends CreateAccountDto_base {
|
45
45
|
}
|
@@ -51,8 +51,8 @@ export declare const createAccountResponseSchema: import("zod").ZodObject<Omit<{
|
|
51
51
|
USER: "USER";
|
52
52
|
ADMIN: "ADMIN";
|
53
53
|
FORM: "FORM";
|
54
|
-
MI_EXPO: "MI_EXPO";
|
55
54
|
TICKETS: "TICKETS";
|
55
|
+
MI_EXPO: "MI_EXPO";
|
56
56
|
}>;
|
57
57
|
isGlobalFilterActive: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
58
58
|
fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
@@ -61,13 +61,13 @@ export declare const createAccountResponseSchema: import("zod").ZodObject<Omit<{
|
|
61
61
|
}, "password" | "created_at" | "updated_at">, "strip", import("zod").ZodTypeAny, {
|
62
62
|
id: string;
|
63
63
|
username: string;
|
64
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
64
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
65
65
|
isGlobalFilterActive: boolean;
|
66
66
|
fcmToken: string[];
|
67
67
|
}, {
|
68
68
|
id: string;
|
69
69
|
username: string;
|
70
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
70
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
71
71
|
isGlobalFilterActive?: boolean | undefined;
|
72
72
|
fcmToken?: string[] | undefined;
|
73
73
|
}>;
|
@@ -78,21 +78,21 @@ declare const CreateAccountResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
78
78
|
USER: "USER";
|
79
79
|
ADMIN: "ADMIN";
|
80
80
|
FORM: "FORM";
|
81
|
-
MI_EXPO: "MI_EXPO";
|
82
81
|
TICKETS: "TICKETS";
|
82
|
+
MI_EXPO: "MI_EXPO";
|
83
83
|
}>;
|
84
84
|
isGlobalFilterActive: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
85
85
|
fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
86
86
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
87
87
|
id: string;
|
88
88
|
username: string;
|
89
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
89
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
90
90
|
isGlobalFilterActive: boolean;
|
91
91
|
fcmToken: string[];
|
92
92
|
}, {
|
93
93
|
id: string;
|
94
94
|
username: string;
|
95
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
95
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
96
96
|
isGlobalFilterActive?: boolean | undefined;
|
97
97
|
fcmToken?: string[] | undefined;
|
98
98
|
}>>;
|
@@ -7,8 +7,8 @@ export declare const getGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
10
|
TICKETS: "TICKETS";
|
11
|
+
MI_EXPO: "MI_EXPO";
|
12
12
|
}>;
|
13
13
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
14
14
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -7,8 +7,8 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
10
|
TICKETS: "TICKETS";
|
11
|
+
MI_EXPO: "MI_EXPO";
|
12
12
|
}>;
|
13
13
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
14
14
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -93,7 +93,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
93
93
|
}>, "strip", z.ZodTypeAny, {
|
94
94
|
id: string;
|
95
95
|
username: string;
|
96
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
96
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
97
97
|
isGlobalFilterActive: boolean;
|
98
98
|
fcmToken: string[];
|
99
99
|
created_at: Date;
|
@@ -119,7 +119,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
119
119
|
}, {
|
120
120
|
id: string;
|
121
121
|
username: string;
|
122
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
122
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
123
123
|
created_at: Date;
|
124
124
|
updated_at: Date;
|
125
125
|
globalFilter: {
|
@@ -150,8 +150,8 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
150
150
|
USER: "USER";
|
151
151
|
ADMIN: "ADMIN";
|
152
152
|
FORM: "FORM";
|
153
|
-
MI_EXPO: "MI_EXPO";
|
154
153
|
TICKETS: "TICKETS";
|
154
|
+
MI_EXPO: "MI_EXPO";
|
155
155
|
}>;
|
156
156
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
157
157
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -228,7 +228,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
228
228
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
229
229
|
id: string;
|
230
230
|
username: string;
|
231
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
231
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
232
232
|
isGlobalFilterActive: boolean;
|
233
233
|
fcmToken: string[];
|
234
234
|
created_at: string;
|
@@ -254,7 +254,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
254
254
|
}, {
|
255
255
|
id: string;
|
256
256
|
username: string;
|
257
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
257
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
258
258
|
created_at: string;
|
259
259
|
updated_at: string;
|
260
260
|
globalFilter: {
|
@@ -29,8 +29,8 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
29
29
|
USER: "USER";
|
30
30
|
ADMIN: "ADMIN";
|
31
31
|
FORM: "FORM";
|
32
|
-
MI_EXPO: "MI_EXPO";
|
33
32
|
TICKETS: "TICKETS";
|
33
|
+
MI_EXPO: "MI_EXPO";
|
34
34
|
}>;
|
35
35
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
36
36
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -68,7 +68,7 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
68
68
|
id: string;
|
69
69
|
username: string;
|
70
70
|
password: string;
|
71
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
71
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
72
72
|
isGlobalFilterActive: boolean;
|
73
73
|
fcmToken: string[];
|
74
74
|
created_at: Date;
|
@@ -85,7 +85,7 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
85
85
|
id: string;
|
86
86
|
username: string;
|
87
87
|
password: string;
|
88
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
88
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
89
89
|
created_at: Date;
|
90
90
|
updated_at: Date;
|
91
91
|
globalFilter: {
|
@@ -107,8 +107,8 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
107
107
|
USER: "USER";
|
108
108
|
ADMIN: "ADMIN";
|
109
109
|
FORM: "FORM";
|
110
|
-
MI_EXPO: "MI_EXPO";
|
111
110
|
TICKETS: "TICKETS";
|
111
|
+
MI_EXPO: "MI_EXPO";
|
112
112
|
}>;
|
113
113
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
114
114
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -145,7 +145,7 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
145
145
|
id: string;
|
146
146
|
username: string;
|
147
147
|
password: string;
|
148
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
148
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
149
149
|
isGlobalFilterActive: boolean;
|
150
150
|
fcmToken: string[];
|
151
151
|
created_at: string;
|
@@ -162,7 +162,7 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
162
162
|
id: string;
|
163
163
|
username: string;
|
164
164
|
password: string;
|
165
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
165
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
166
166
|
created_at: string;
|
167
167
|
updated_at: string;
|
168
168
|
globalFilter: {
|
@@ -7,8 +7,8 @@ export declare const loginSchema: z.ZodObject<Pick<{
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
10
|
TICKETS: "TICKETS";
|
11
|
+
MI_EXPO: "MI_EXPO";
|
12
12
|
}>;
|
13
13
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
14
14
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -42,8 +42,8 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
42
42
|
USER: "USER";
|
43
43
|
ADMIN: "ADMIN";
|
44
44
|
FORM: "FORM";
|
45
|
-
MI_EXPO: "MI_EXPO";
|
46
45
|
TICKETS: "TICKETS";
|
46
|
+
MI_EXPO: "MI_EXPO";
|
47
47
|
}>;
|
48
48
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
49
49
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -52,7 +52,7 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
52
52
|
}, "password">, "strip", z.ZodTypeAny, {
|
53
53
|
id: string;
|
54
54
|
username: string;
|
55
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
55
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
56
56
|
isGlobalFilterActive: boolean;
|
57
57
|
fcmToken: string[];
|
58
58
|
created_at: Date;
|
@@ -60,7 +60,7 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
60
60
|
}, {
|
61
61
|
id: string;
|
62
62
|
username: string;
|
63
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
63
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
64
64
|
created_at: Date;
|
65
65
|
updated_at: Date;
|
66
66
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -83,7 +83,7 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
83
83
|
user: {
|
84
84
|
id: string;
|
85
85
|
username: string;
|
86
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
86
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
87
87
|
isGlobalFilterActive: boolean;
|
88
88
|
fcmToken: string[];
|
89
89
|
created_at: Date;
|
@@ -98,7 +98,7 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
98
98
|
user: {
|
99
99
|
id: string;
|
100
100
|
username: string;
|
101
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
101
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
102
102
|
created_at: Date;
|
103
103
|
updated_at: Date;
|
104
104
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -118,8 +118,8 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
118
118
|
USER: "USER";
|
119
119
|
ADMIN: "ADMIN";
|
120
120
|
FORM: "FORM";
|
121
|
-
MI_EXPO: "MI_EXPO";
|
122
121
|
TICKETS: "TICKETS";
|
122
|
+
MI_EXPO: "MI_EXPO";
|
123
123
|
}>;
|
124
124
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
125
125
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -128,7 +128,7 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
128
128
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
129
129
|
id: string;
|
130
130
|
username: string;
|
131
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
131
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
132
132
|
isGlobalFilterActive: boolean;
|
133
133
|
fcmToken: string[];
|
134
134
|
created_at: string;
|
@@ -136,7 +136,7 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
136
136
|
}, {
|
137
137
|
id: string;
|
138
138
|
username: string;
|
139
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
139
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
140
140
|
created_at: string;
|
141
141
|
updated_at: string;
|
142
142
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -159,7 +159,7 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
159
159
|
user: {
|
160
160
|
id: string;
|
161
161
|
username: string;
|
162
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
162
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
163
163
|
isGlobalFilterActive: boolean;
|
164
164
|
fcmToken: string[];
|
165
165
|
created_at: string;
|
@@ -174,7 +174,7 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
174
174
|
user: {
|
175
175
|
id: string;
|
176
176
|
username: string;
|
177
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
177
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
178
178
|
created_at: string;
|
179
179
|
updated_at: string;
|
180
180
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -20,8 +20,8 @@ export declare const getByProfileCommentResponseSchema: z.ZodObject<{
|
|
20
20
|
USER: "USER";
|
21
21
|
ADMIN: "ADMIN";
|
22
22
|
FORM: "FORM";
|
23
|
-
MI_EXPO: "MI_EXPO";
|
24
23
|
TICKETS: "TICKETS";
|
24
|
+
MI_EXPO: "MI_EXPO";
|
25
25
|
}>;
|
26
26
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
27
27
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -5,8 +5,8 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
5
5
|
USER: "USER";
|
6
6
|
ADMIN: "ADMIN";
|
7
7
|
FORM: "FORM";
|
8
|
-
MI_EXPO: "MI_EXPO";
|
9
8
|
TICKETS: "TICKETS";
|
9
|
+
MI_EXPO: "MI_EXPO";
|
10
10
|
}>>;
|
11
11
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
12
12
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -89,7 +89,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
89
89
|
}>, "strip", import("zod").ZodTypeAny, {
|
90
90
|
id: string;
|
91
91
|
username: string | null;
|
92
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
92
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
93
93
|
phoneNumber: string;
|
94
94
|
secondaryPhoneNumber: string | null;
|
95
95
|
fullName: string;
|
@@ -173,7 +173,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
173
173
|
country: string;
|
174
174
|
city: string;
|
175
175
|
} | null;
|
176
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
176
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
177
177
|
}>;
|
178
178
|
declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
179
179
|
id: import("zod").ZodString;
|
@@ -182,8 +182,8 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
182
182
|
USER: "USER";
|
183
183
|
ADMIN: "ADMIN";
|
184
184
|
FORM: "FORM";
|
185
|
-
MI_EXPO: "MI_EXPO";
|
186
185
|
TICKETS: "TICKETS";
|
186
|
+
MI_EXPO: "MI_EXPO";
|
187
187
|
}>>;
|
188
188
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
189
189
|
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
@@ -264,7 +264,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
264
264
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
265
265
|
id: string;
|
266
266
|
username: string | null;
|
267
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
267
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
268
268
|
phoneNumber: string;
|
269
269
|
secondaryPhoneNumber: string | null;
|
270
270
|
fullName: string;
|
@@ -348,7 +348,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
348
348
|
country: string;
|
349
349
|
city: string;
|
350
350
|
} | null;
|
351
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
351
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
352
352
|
}>>;
|
353
353
|
export declare class GetMiExpoMeResponseDto extends GetMiExpoMeResponseDto_base {
|
354
354
|
}
|
@@ -36,8 +36,8 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
36
36
|
USER: "USER";
|
37
37
|
ADMIN: "ADMIN";
|
38
38
|
FORM: "FORM";
|
39
|
-
MI_EXPO: "MI_EXPO";
|
40
39
|
TICKETS: "TICKETS";
|
40
|
+
MI_EXPO: "MI_EXPO";
|
41
41
|
}>>;
|
42
42
|
firstTimeMiExpo: z.ZodBoolean;
|
43
43
|
username: z.ZodNullable<z.ZodString>;
|
@@ -63,7 +63,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
63
63
|
}, "password">, "strip", z.ZodTypeAny, {
|
64
64
|
id: string;
|
65
65
|
username: string | null;
|
66
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
66
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
67
67
|
phoneNumber: string;
|
68
68
|
secondaryPhoneNumber: string | null;
|
69
69
|
fullName: string;
|
@@ -107,13 +107,13 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
107
107
|
residenceLocationId: string | null;
|
108
108
|
isInTrash: boolean;
|
109
109
|
movedToTrashDate: Date | null;
|
110
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
110
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
111
111
|
}>;
|
112
112
|
}, "strip", z.ZodTypeAny, {
|
113
113
|
profile: {
|
114
114
|
id: string;
|
115
115
|
username: string | null;
|
116
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
116
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
117
117
|
phoneNumber: string;
|
118
118
|
secondaryPhoneNumber: string | null;
|
119
119
|
fullName: string;
|
@@ -164,7 +164,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
164
164
|
residenceLocationId: string | null;
|
165
165
|
isInTrash: boolean;
|
166
166
|
movedToTrashDate: Date | null;
|
167
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
167
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
168
168
|
};
|
169
169
|
tokens: {
|
170
170
|
accessToken: string;
|
@@ -193,8 +193,8 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
193
193
|
USER: "USER";
|
194
194
|
ADMIN: "ADMIN";
|
195
195
|
FORM: "FORM";
|
196
|
-
MI_EXPO: "MI_EXPO";
|
197
196
|
TICKETS: "TICKETS";
|
197
|
+
MI_EXPO: "MI_EXPO";
|
198
198
|
}>>;
|
199
199
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
200
200
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
@@ -219,7 +219,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
219
219
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
220
220
|
id: string;
|
221
221
|
username: string | null;
|
222
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
222
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
223
223
|
phoneNumber: string;
|
224
224
|
secondaryPhoneNumber: string | null;
|
225
225
|
fullName: string;
|
@@ -263,13 +263,13 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
263
263
|
residenceLocationId: string | null;
|
264
264
|
isInTrash: boolean;
|
265
265
|
movedToTrashDate: string | null;
|
266
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
266
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
267
267
|
}>;
|
268
268
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
269
269
|
profile: {
|
270
270
|
id: string;
|
271
271
|
username: string | null;
|
272
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
272
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
273
273
|
phoneNumber: string;
|
274
274
|
secondaryPhoneNumber: string | null;
|
275
275
|
fullName: string;
|
@@ -320,7 +320,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
320
320
|
residenceLocationId: string | null;
|
321
321
|
isInTrash: boolean;
|
322
322
|
movedToTrashDate: string | null;
|
323
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
323
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
324
324
|
};
|
325
325
|
tokens: {
|
326
326
|
accessToken: string;
|
@@ -7,8 +7,8 @@ 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
|
TICKETS: "TICKETS";
|
11
|
+
MI_EXPO: "MI_EXPO";
|
12
12
|
}>;
|
13
13
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
14
14
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -41,8 +41,8 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
41
41
|
USER: "USER";
|
42
42
|
ADMIN: "ADMIN";
|
43
43
|
FORM: "FORM";
|
44
|
-
MI_EXPO: "MI_EXPO";
|
45
44
|
TICKETS: "TICKETS";
|
45
|
+
MI_EXPO: "MI_EXPO";
|
46
46
|
}>>;
|
47
47
|
firstTimeMiExpo: z.ZodBoolean;
|
48
48
|
username: z.ZodNullable<z.ZodString>;
|
@@ -68,7 +68,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
68
68
|
}, "password">, "strip", z.ZodTypeAny, {
|
69
69
|
id: string;
|
70
70
|
username: string | null;
|
71
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
71
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
72
72
|
phoneNumber: string;
|
73
73
|
secondaryPhoneNumber: string | null;
|
74
74
|
fullName: string;
|
@@ -112,7 +112,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
112
112
|
residenceLocationId: string | null;
|
113
113
|
isInTrash: boolean;
|
114
114
|
movedToTrashDate: Date | null;
|
115
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
115
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
116
116
|
}>;
|
117
117
|
backendTokens: z.ZodObject<{
|
118
118
|
accessToken: z.ZodString;
|
@@ -131,7 +131,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
131
131
|
user: {
|
132
132
|
id: string;
|
133
133
|
username: string | null;
|
134
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
134
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
135
135
|
phoneNumber: string;
|
136
136
|
secondaryPhoneNumber: string | null;
|
137
137
|
fullName: string;
|
@@ -182,7 +182,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
182
182
|
residenceLocationId: string | null;
|
183
183
|
isInTrash: boolean;
|
184
184
|
movedToTrashDate: Date | null;
|
185
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
185
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
186
186
|
};
|
187
187
|
backendTokens: {
|
188
188
|
accessToken: string;
|
@@ -198,8 +198,8 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
198
198
|
USER: "USER";
|
199
199
|
ADMIN: "ADMIN";
|
200
200
|
FORM: "FORM";
|
201
|
-
MI_EXPO: "MI_EXPO";
|
202
201
|
TICKETS: "TICKETS";
|
202
|
+
MI_EXPO: "MI_EXPO";
|
203
203
|
}>>;
|
204
204
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
205
205
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
@@ -224,7 +224,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
224
224
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
225
225
|
id: string;
|
226
226
|
username: string | null;
|
227
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
227
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
228
228
|
phoneNumber: string;
|
229
229
|
secondaryPhoneNumber: string | null;
|
230
230
|
fullName: string;
|
@@ -268,7 +268,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
268
268
|
residenceLocationId: string | null;
|
269
269
|
isInTrash: boolean;
|
270
270
|
movedToTrashDate: string | null;
|
271
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
271
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
272
272
|
}>;
|
273
273
|
backendTokens: z.ZodObject<{
|
274
274
|
accessToken: z.ZodString;
|
@@ -287,7 +287,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
287
287
|
user: {
|
288
288
|
id: string;
|
289
289
|
username: string | null;
|
290
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
290
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
291
291
|
phoneNumber: string;
|
292
292
|
secondaryPhoneNumber: string | null;
|
293
293
|
fullName: string;
|
@@ -338,7 +338,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
338
338
|
residenceLocationId: string | null;
|
339
339
|
isInTrash: boolean;
|
340
340
|
movedToTrashDate: string | null;
|
341
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
341
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
342
342
|
};
|
343
343
|
backendTokens: {
|
344
344
|
accessToken: string;
|