expo-backend-types 0.3.0-EXPO-245.2 → 0.3.0-EXPO-245.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/auth/dto/login.dto.d.ts +392 -12
- package/dist/src/auth/dto/register.dto.d.ts +284 -0
- package/dist/src/cuenta/dto/createCuenta.dto.d.ts +369 -0
- package/dist/src/cuenta/dto/createCuenta.dto.js +23 -0
- package/dist/src/cuenta/dto/cuenta.dto.d.ts +198 -8
- package/dist/src/cuenta/dto/cuenta.dto.js +17 -0
- package/dist/src/cuenta/dto/getFiltroBase.dto.d.ts +154 -0
- package/dist/src/cuenta/dto/getFiltroBase.dto.js +29 -0
- package/dist/src/cuenta/dto/updateFiltroBase.dto.d.ts +208 -0
- package/dist/src/cuenta/dto/updateFiltroBase.dto.js +28 -0
- package/dist/src/etiqueta/dto/etiqueta.dto.d.ts +18 -18
- package/dist/src/etiqueta/dto/etiqueta.dto.js +4 -4
- package/dist/src/evento/dto/evento.dto.d.ts +126 -0
- package/dist/src/evento/dto/evento.dto.js +27 -0
- package/dist/src/evento/exports.d.ts +1 -0
- package/dist/src/evento/exports.js +18 -0
- package/dist/src/exports.d.ts +2 -0
- package/dist/src/exports.js +2 -0
- package/dist/src/grupo-etiqueta/dto/grupo-etiqueta.dto.d.ts +48 -0
- package/dist/src/grupo-etiqueta/dto/grupo-etiqueta.dto.js +27 -0
- package/dist/src/grupo-etiqueta/exports.d.ts +1 -0
- package/dist/src/grupo-etiqueta/exports.js +18 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.js +1 -1
- package/dist/types/index.js.map +1 -1
- package/dist/types/prisma-schema/edge.js +14 -3
- package/dist/types/prisma-schema/index-browser.js +11 -0
- package/dist/types/prisma-schema/index.d.ts +1758 -185
- package/dist/types/prisma-schema/index.js +14 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +16 -1
- package/dist/types/prisma-schema/wasm.js +11 -0
- package/dist/types/schema.d.ts +156 -0
- package/package.json +7 -5
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CreateCuentaResponseDto = exports.createCuentaResponseSchema = exports.CreateCuentaDto = exports.createCuentaSchema = void 0;
|
4
|
+
const cuenta_dto_1 = require("./cuenta.dto");
|
5
|
+
const zod_nestjs_1 = require("@anatine/zod-nestjs");
|
6
|
+
exports.createCuentaSchema = cuenta_dto_1.cuentaSchema.pick({
|
7
|
+
username: true,
|
8
|
+
password: true,
|
9
|
+
isAdmin: true,
|
10
|
+
});
|
11
|
+
class CreateCuentaDto extends (0, zod_nestjs_1.createZodDto)(exports.createCuentaSchema) {
|
12
|
+
}
|
13
|
+
exports.CreateCuentaDto = CreateCuentaDto;
|
14
|
+
exports.createCuentaResponseSchema = cuenta_dto_1.cuentaSchema.omit({
|
15
|
+
password: true,
|
16
|
+
filtroBase: true,
|
17
|
+
created_at: true,
|
18
|
+
updated_at: true,
|
19
|
+
});
|
20
|
+
class CreateCuentaResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.createCuentaResponseSchema) {
|
21
|
+
}
|
22
|
+
exports.CreateCuentaResponseDto = CreateCuentaResponseDto;
|
23
|
+
//# sourceMappingURL=createCuenta.dto.js.map
|
@@ -6,23 +6,118 @@ export declare const cuentaSchema: z.ZodObject<{
|
|
6
6
|
isAdmin: z.ZodDefault<z.ZodBoolean>;
|
7
7
|
created_at: z.ZodString;
|
8
8
|
updated_at: z.ZodString;
|
9
|
+
filtroBase: z.ZodObject<{
|
10
|
+
etiquetas: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
11
|
+
id: z.ZodString;
|
12
|
+
name: z.ZodString;
|
13
|
+
groupId: z.ZodString;
|
14
|
+
type: z.ZodNativeEnum<{
|
15
|
+
PERSONAL: "PERSONAL";
|
16
|
+
EVENTO: "EVENTO";
|
17
|
+
MODELO: "MODELO";
|
18
|
+
TENTATIVA: "TENTATIVA";
|
19
|
+
}>;
|
20
|
+
created_at: z.ZodString;
|
21
|
+
updated_at: z.ZodString;
|
22
|
+
}, "id" | "name">, {
|
23
|
+
grupo: z.ZodObject<Pick<{
|
24
|
+
id: z.ZodString;
|
25
|
+
name: z.ZodString;
|
26
|
+
color: z.ZodString;
|
27
|
+
isExclusive: z.ZodBoolean;
|
28
|
+
created_at: z.ZodString;
|
29
|
+
updated_at: z.ZodString;
|
30
|
+
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
31
|
+
id: string;
|
32
|
+
color: string;
|
33
|
+
isExclusive: boolean;
|
34
|
+
}, {
|
35
|
+
id: string;
|
36
|
+
color: string;
|
37
|
+
isExclusive: boolean;
|
38
|
+
}>;
|
39
|
+
}>, "strip", z.ZodTypeAny, {
|
40
|
+
id: string;
|
41
|
+
name: string;
|
42
|
+
grupo: {
|
43
|
+
id: string;
|
44
|
+
color: string;
|
45
|
+
isExclusive: boolean;
|
46
|
+
};
|
47
|
+
}, {
|
48
|
+
id: string;
|
49
|
+
name: string;
|
50
|
+
grupo: {
|
51
|
+
id: string;
|
52
|
+
color: string;
|
53
|
+
isExclusive: boolean;
|
54
|
+
};
|
55
|
+
}>;
|
56
|
+
active: z.ZodBoolean;
|
57
|
+
}, "strip", z.ZodTypeAny, {
|
58
|
+
etiquetas: {
|
59
|
+
id: string;
|
60
|
+
name: string;
|
61
|
+
grupo: {
|
62
|
+
id: string;
|
63
|
+
color: string;
|
64
|
+
isExclusive: boolean;
|
65
|
+
};
|
66
|
+
};
|
67
|
+
active: boolean;
|
68
|
+
}, {
|
69
|
+
etiquetas: {
|
70
|
+
id: string;
|
71
|
+
name: string;
|
72
|
+
grupo: {
|
73
|
+
id: string;
|
74
|
+
color: string;
|
75
|
+
isExclusive: boolean;
|
76
|
+
};
|
77
|
+
};
|
78
|
+
active: boolean;
|
79
|
+
}>;
|
9
80
|
filtroBaseActivo: z.ZodDefault<z.ZodBoolean>;
|
10
81
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
11
82
|
}, "strip", z.ZodTypeAny, {
|
12
83
|
id: string;
|
84
|
+
created_at: string;
|
85
|
+
updated_at: string;
|
13
86
|
username: string;
|
14
87
|
password: string;
|
15
88
|
isAdmin: boolean;
|
16
|
-
|
17
|
-
|
89
|
+
filtroBase: {
|
90
|
+
etiquetas: {
|
91
|
+
id: string;
|
92
|
+
name: string;
|
93
|
+
grupo: {
|
94
|
+
id: string;
|
95
|
+
color: string;
|
96
|
+
isExclusive: boolean;
|
97
|
+
};
|
98
|
+
};
|
99
|
+
active: boolean;
|
100
|
+
};
|
18
101
|
filtroBaseActivo: boolean;
|
19
102
|
fcmToken: string[];
|
20
103
|
}, {
|
21
104
|
id: string;
|
22
|
-
username: string;
|
23
|
-
password: string;
|
24
105
|
created_at: string;
|
25
106
|
updated_at: string;
|
107
|
+
username: string;
|
108
|
+
password: string;
|
109
|
+
filtroBase: {
|
110
|
+
etiquetas: {
|
111
|
+
id: string;
|
112
|
+
name: string;
|
113
|
+
grupo: {
|
114
|
+
id: string;
|
115
|
+
color: string;
|
116
|
+
isExclusive: boolean;
|
117
|
+
};
|
118
|
+
};
|
119
|
+
active: boolean;
|
120
|
+
};
|
26
121
|
isAdmin?: boolean | undefined;
|
27
122
|
filtroBaseActivo?: boolean | undefined;
|
28
123
|
fcmToken?: string[] | undefined;
|
@@ -34,23 +129,118 @@ declare const CuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
34
129
|
isAdmin: z.ZodDefault<z.ZodBoolean>;
|
35
130
|
created_at: z.ZodString;
|
36
131
|
updated_at: z.ZodString;
|
132
|
+
filtroBase: z.ZodObject<{
|
133
|
+
etiquetas: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
134
|
+
id: z.ZodString;
|
135
|
+
name: z.ZodString;
|
136
|
+
groupId: z.ZodString;
|
137
|
+
type: z.ZodNativeEnum<{
|
138
|
+
PERSONAL: "PERSONAL";
|
139
|
+
EVENTO: "EVENTO";
|
140
|
+
MODELO: "MODELO";
|
141
|
+
TENTATIVA: "TENTATIVA";
|
142
|
+
}>;
|
143
|
+
created_at: z.ZodString;
|
144
|
+
updated_at: z.ZodString;
|
145
|
+
}, "id" | "name">, {
|
146
|
+
grupo: z.ZodObject<Pick<{
|
147
|
+
id: z.ZodString;
|
148
|
+
name: z.ZodString;
|
149
|
+
color: z.ZodString;
|
150
|
+
isExclusive: z.ZodBoolean;
|
151
|
+
created_at: z.ZodString;
|
152
|
+
updated_at: z.ZodString;
|
153
|
+
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
154
|
+
id: string;
|
155
|
+
color: string;
|
156
|
+
isExclusive: boolean;
|
157
|
+
}, {
|
158
|
+
id: string;
|
159
|
+
color: string;
|
160
|
+
isExclusive: boolean;
|
161
|
+
}>;
|
162
|
+
}>, "strip", z.ZodTypeAny, {
|
163
|
+
id: string;
|
164
|
+
name: string;
|
165
|
+
grupo: {
|
166
|
+
id: string;
|
167
|
+
color: string;
|
168
|
+
isExclusive: boolean;
|
169
|
+
};
|
170
|
+
}, {
|
171
|
+
id: string;
|
172
|
+
name: string;
|
173
|
+
grupo: {
|
174
|
+
id: string;
|
175
|
+
color: string;
|
176
|
+
isExclusive: boolean;
|
177
|
+
};
|
178
|
+
}>;
|
179
|
+
active: z.ZodBoolean;
|
180
|
+
}, "strip", z.ZodTypeAny, {
|
181
|
+
etiquetas: {
|
182
|
+
id: string;
|
183
|
+
name: string;
|
184
|
+
grupo: {
|
185
|
+
id: string;
|
186
|
+
color: string;
|
187
|
+
isExclusive: boolean;
|
188
|
+
};
|
189
|
+
};
|
190
|
+
active: boolean;
|
191
|
+
}, {
|
192
|
+
etiquetas: {
|
193
|
+
id: string;
|
194
|
+
name: string;
|
195
|
+
grupo: {
|
196
|
+
id: string;
|
197
|
+
color: string;
|
198
|
+
isExclusive: boolean;
|
199
|
+
};
|
200
|
+
};
|
201
|
+
active: boolean;
|
202
|
+
}>;
|
37
203
|
filtroBaseActivo: z.ZodDefault<z.ZodBoolean>;
|
38
204
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
39
205
|
}, "strip", z.ZodTypeAny, {
|
40
206
|
id: string;
|
207
|
+
created_at: string;
|
208
|
+
updated_at: string;
|
41
209
|
username: string;
|
42
210
|
password: string;
|
43
211
|
isAdmin: boolean;
|
44
|
-
|
45
|
-
|
212
|
+
filtroBase: {
|
213
|
+
etiquetas: {
|
214
|
+
id: string;
|
215
|
+
name: string;
|
216
|
+
grupo: {
|
217
|
+
id: string;
|
218
|
+
color: string;
|
219
|
+
isExclusive: boolean;
|
220
|
+
};
|
221
|
+
};
|
222
|
+
active: boolean;
|
223
|
+
};
|
46
224
|
filtroBaseActivo: boolean;
|
47
225
|
fcmToken: string[];
|
48
226
|
}, {
|
49
227
|
id: string;
|
50
|
-
username: string;
|
51
|
-
password: string;
|
52
228
|
created_at: string;
|
53
229
|
updated_at: string;
|
230
|
+
username: string;
|
231
|
+
password: string;
|
232
|
+
filtroBase: {
|
233
|
+
etiquetas: {
|
234
|
+
id: string;
|
235
|
+
name: string;
|
236
|
+
grupo: {
|
237
|
+
id: string;
|
238
|
+
color: string;
|
239
|
+
isExclusive: boolean;
|
240
|
+
};
|
241
|
+
};
|
242
|
+
active: boolean;
|
243
|
+
};
|
54
244
|
isAdmin?: boolean | undefined;
|
55
245
|
filtroBaseActivo?: boolean | undefined;
|
56
246
|
fcmToken?: string[] | undefined;
|
@@ -1,6 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.CuentaDto = exports.cuentaSchema = void 0;
|
4
|
+
const etiqueta_dto_1 = require("../../etiqueta/dto/etiqueta.dto");
|
5
|
+
const grupo_etiqueta_dto_1 = require("../../grupo-etiqueta/dto/grupo-etiqueta.dto");
|
4
6
|
const zod_nestjs_1 = require("@anatine/zod-nestjs");
|
5
7
|
const zod_1 = require("zod");
|
6
8
|
exports.cuentaSchema = zod_1.z.object({
|
@@ -22,6 +24,21 @@ exports.cuentaSchema = zod_1.z.object({
|
|
22
24
|
isAdmin: zod_1.z.boolean().default(false),
|
23
25
|
created_at: zod_1.z.string().datetime(),
|
24
26
|
updated_at: zod_1.z.string().datetime(),
|
27
|
+
filtroBase: zod_1.z.object({
|
28
|
+
etiquetas: etiqueta_dto_1.etiquetaSchema
|
29
|
+
.pick({
|
30
|
+
id: true,
|
31
|
+
name: true,
|
32
|
+
})
|
33
|
+
.merge(zod_1.z.object({
|
34
|
+
grupo: grupo_etiqueta_dto_1.grupoEtiquetaSchema.pick({
|
35
|
+
id: true,
|
36
|
+
color: true,
|
37
|
+
isExclusive: true,
|
38
|
+
}),
|
39
|
+
})),
|
40
|
+
active: zod_1.z.boolean(),
|
41
|
+
}),
|
25
42
|
filtroBaseActivo: zod_1.z.boolean().default(false),
|
26
43
|
fcmToken: zod_1.z.array(zod_1.z.string()).default([]),
|
27
44
|
});
|
@@ -0,0 +1,154 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const getFiltroBaseResponse: z.ZodObject<{
|
3
|
+
active: z.ZodBoolean;
|
4
|
+
filtroBase: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
5
|
+
id: z.ZodString;
|
6
|
+
name: z.ZodString;
|
7
|
+
groupId: z.ZodString;
|
8
|
+
type: z.ZodNativeEnum<{
|
9
|
+
PERSONAL: "PERSONAL";
|
10
|
+
EVENTO: "EVENTO";
|
11
|
+
MODELO: "MODELO";
|
12
|
+
TENTATIVA: "TENTATIVA";
|
13
|
+
}>;
|
14
|
+
created_at: z.ZodString;
|
15
|
+
updated_at: z.ZodString;
|
16
|
+
}, "id" | "name" | "type">, {
|
17
|
+
grupo: z.ZodObject<Pick<{
|
18
|
+
id: z.ZodString;
|
19
|
+
name: z.ZodString;
|
20
|
+
color: z.ZodString;
|
21
|
+
isExclusive: z.ZodBoolean;
|
22
|
+
created_at: z.ZodString;
|
23
|
+
updated_at: z.ZodString;
|
24
|
+
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
25
|
+
id: string;
|
26
|
+
color: string;
|
27
|
+
isExclusive: boolean;
|
28
|
+
}, {
|
29
|
+
id: string;
|
30
|
+
color: string;
|
31
|
+
isExclusive: boolean;
|
32
|
+
}>;
|
33
|
+
}>, "strip", z.ZodTypeAny, {
|
34
|
+
id: string;
|
35
|
+
name: string;
|
36
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
37
|
+
grupo: {
|
38
|
+
id: string;
|
39
|
+
color: string;
|
40
|
+
isExclusive: boolean;
|
41
|
+
};
|
42
|
+
}, {
|
43
|
+
id: string;
|
44
|
+
name: string;
|
45
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
46
|
+
grupo: {
|
47
|
+
id: string;
|
48
|
+
color: string;
|
49
|
+
isExclusive: boolean;
|
50
|
+
};
|
51
|
+
}>, "many">;
|
52
|
+
}, "strip", z.ZodTypeAny, {
|
53
|
+
filtroBase: {
|
54
|
+
id: string;
|
55
|
+
name: string;
|
56
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
57
|
+
grupo: {
|
58
|
+
id: string;
|
59
|
+
color: string;
|
60
|
+
isExclusive: boolean;
|
61
|
+
};
|
62
|
+
}[];
|
63
|
+
active: boolean;
|
64
|
+
}, {
|
65
|
+
filtroBase: {
|
66
|
+
id: string;
|
67
|
+
name: string;
|
68
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
69
|
+
grupo: {
|
70
|
+
id: string;
|
71
|
+
color: string;
|
72
|
+
isExclusive: boolean;
|
73
|
+
};
|
74
|
+
}[];
|
75
|
+
active: boolean;
|
76
|
+
}>;
|
77
|
+
declare const GetFiltroBaseResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
78
|
+
active: z.ZodBoolean;
|
79
|
+
filtroBase: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
80
|
+
id: z.ZodString;
|
81
|
+
name: z.ZodString;
|
82
|
+
groupId: z.ZodString;
|
83
|
+
type: z.ZodNativeEnum<{
|
84
|
+
PERSONAL: "PERSONAL";
|
85
|
+
EVENTO: "EVENTO";
|
86
|
+
MODELO: "MODELO";
|
87
|
+
TENTATIVA: "TENTATIVA";
|
88
|
+
}>;
|
89
|
+
created_at: z.ZodString;
|
90
|
+
updated_at: z.ZodString;
|
91
|
+
}, "id" | "name" | "type">, {
|
92
|
+
grupo: z.ZodObject<Pick<{
|
93
|
+
id: z.ZodString;
|
94
|
+
name: z.ZodString;
|
95
|
+
color: z.ZodString;
|
96
|
+
isExclusive: z.ZodBoolean;
|
97
|
+
created_at: z.ZodString;
|
98
|
+
updated_at: z.ZodString;
|
99
|
+
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
100
|
+
id: string;
|
101
|
+
color: string;
|
102
|
+
isExclusive: boolean;
|
103
|
+
}, {
|
104
|
+
id: string;
|
105
|
+
color: string;
|
106
|
+
isExclusive: boolean;
|
107
|
+
}>;
|
108
|
+
}>, "strip", z.ZodTypeAny, {
|
109
|
+
id: string;
|
110
|
+
name: string;
|
111
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
112
|
+
grupo: {
|
113
|
+
id: string;
|
114
|
+
color: string;
|
115
|
+
isExclusive: boolean;
|
116
|
+
};
|
117
|
+
}, {
|
118
|
+
id: string;
|
119
|
+
name: string;
|
120
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
121
|
+
grupo: {
|
122
|
+
id: string;
|
123
|
+
color: string;
|
124
|
+
isExclusive: boolean;
|
125
|
+
};
|
126
|
+
}>, "many">;
|
127
|
+
}, "strip", z.ZodTypeAny, {
|
128
|
+
filtroBase: {
|
129
|
+
id: string;
|
130
|
+
name: string;
|
131
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
132
|
+
grupo: {
|
133
|
+
id: string;
|
134
|
+
color: string;
|
135
|
+
isExclusive: boolean;
|
136
|
+
};
|
137
|
+
}[];
|
138
|
+
active: boolean;
|
139
|
+
}, {
|
140
|
+
filtroBase: {
|
141
|
+
id: string;
|
142
|
+
name: string;
|
143
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
144
|
+
grupo: {
|
145
|
+
id: string;
|
146
|
+
color: string;
|
147
|
+
isExclusive: boolean;
|
148
|
+
};
|
149
|
+
}[];
|
150
|
+
active: boolean;
|
151
|
+
}>>;
|
152
|
+
export declare class GetFiltroBaseResponseDto extends GetFiltroBaseResponseDto_base {
|
153
|
+
}
|
154
|
+
export {};
|
@@ -0,0 +1,29 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.GetFiltroBaseResponseDto = exports.getFiltroBaseResponse = void 0;
|
7
|
+
const exports_1 = require("../../exports");
|
8
|
+
const zod_nestjs_1 = require("@anatine/zod-nestjs");
|
9
|
+
const zod_1 = __importDefault(require("zod"));
|
10
|
+
exports.getFiltroBaseResponse = zod_1.default.object({
|
11
|
+
active: zod_1.default.boolean(),
|
12
|
+
filtroBase: zod_1.default.array(exports_1.etiquetaSchema
|
13
|
+
.pick({
|
14
|
+
id: true,
|
15
|
+
name: true,
|
16
|
+
type: true,
|
17
|
+
})
|
18
|
+
.merge(zod_1.default.object({
|
19
|
+
grupo: exports_1.grupoEtiquetaSchema.pick({
|
20
|
+
id: true,
|
21
|
+
color: true,
|
22
|
+
isExclusive: true,
|
23
|
+
}),
|
24
|
+
}))),
|
25
|
+
});
|
26
|
+
class GetFiltroBaseResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.getFiltroBaseResponse) {
|
27
|
+
}
|
28
|
+
exports.GetFiltroBaseResponseDto = GetFiltroBaseResponseDto;
|
29
|
+
//# sourceMappingURL=getFiltroBase.dto.js.map
|
@@ -0,0 +1,208 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const updateFiltroBaseSchema: z.ZodObject<{
|
3
|
+
active: z.ZodBoolean;
|
4
|
+
etiquetasIds: z.ZodArray<z.ZodString, "many">;
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
6
|
+
active: boolean;
|
7
|
+
etiquetasIds: string[];
|
8
|
+
}, {
|
9
|
+
active: boolean;
|
10
|
+
etiquetasIds: string[];
|
11
|
+
}>;
|
12
|
+
declare const UpdateFiltroBaseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
13
|
+
active: z.ZodBoolean;
|
14
|
+
etiquetasIds: z.ZodArray<z.ZodString, "many">;
|
15
|
+
}, "strip", z.ZodTypeAny, {
|
16
|
+
active: boolean;
|
17
|
+
etiquetasIds: string[];
|
18
|
+
}, {
|
19
|
+
active: boolean;
|
20
|
+
etiquetasIds: string[];
|
21
|
+
}>>;
|
22
|
+
export declare class UpdateFiltroBaseDto extends UpdateFiltroBaseDto_base {
|
23
|
+
}
|
24
|
+
export declare const updateFiltroBaseResponseSchema: z.ZodObject<{
|
25
|
+
id: z.ZodString;
|
26
|
+
nombreUsuario: z.ZodString;
|
27
|
+
esAdmin: z.ZodBoolean;
|
28
|
+
fcmToken: z.ZodNullable<z.ZodString>;
|
29
|
+
filtroBaseActivo: z.ZodBoolean;
|
30
|
+
filtroBase: z.ZodObject<{
|
31
|
+
active: z.ZodBoolean;
|
32
|
+
etiquetas: z.ZodArray<z.ZodObject<{
|
33
|
+
id: z.ZodString;
|
34
|
+
name: z.ZodString;
|
35
|
+
groupId: z.ZodString;
|
36
|
+
type: z.ZodNativeEnum<{
|
37
|
+
PERSONAL: "PERSONAL";
|
38
|
+
EVENTO: "EVENTO";
|
39
|
+
MODELO: "MODELO";
|
40
|
+
TENTATIVA: "TENTATIVA";
|
41
|
+
}>;
|
42
|
+
created_at: z.ZodString;
|
43
|
+
updated_at: z.ZodString;
|
44
|
+
}, "strip", z.ZodTypeAny, {
|
45
|
+
id: string;
|
46
|
+
name: string;
|
47
|
+
groupId: string;
|
48
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
49
|
+
created_at: string;
|
50
|
+
updated_at: string;
|
51
|
+
}, {
|
52
|
+
id: string;
|
53
|
+
name: string;
|
54
|
+
groupId: string;
|
55
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
56
|
+
created_at: string;
|
57
|
+
updated_at: string;
|
58
|
+
}>, "many">;
|
59
|
+
}, "strip", z.ZodTypeAny, {
|
60
|
+
etiquetas: {
|
61
|
+
id: string;
|
62
|
+
name: string;
|
63
|
+
groupId: string;
|
64
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
65
|
+
created_at: string;
|
66
|
+
updated_at: string;
|
67
|
+
}[];
|
68
|
+
active: boolean;
|
69
|
+
}, {
|
70
|
+
etiquetas: {
|
71
|
+
id: string;
|
72
|
+
name: string;
|
73
|
+
groupId: string;
|
74
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
75
|
+
created_at: string;
|
76
|
+
updated_at: string;
|
77
|
+
}[];
|
78
|
+
active: boolean;
|
79
|
+
}>;
|
80
|
+
}, "strip", z.ZodTypeAny, {
|
81
|
+
id: string;
|
82
|
+
filtroBase: {
|
83
|
+
etiquetas: {
|
84
|
+
id: string;
|
85
|
+
name: string;
|
86
|
+
groupId: string;
|
87
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
88
|
+
created_at: string;
|
89
|
+
updated_at: string;
|
90
|
+
}[];
|
91
|
+
active: boolean;
|
92
|
+
};
|
93
|
+
filtroBaseActivo: boolean;
|
94
|
+
fcmToken: string | null;
|
95
|
+
nombreUsuario: string;
|
96
|
+
esAdmin: boolean;
|
97
|
+
}, {
|
98
|
+
id: string;
|
99
|
+
filtroBase: {
|
100
|
+
etiquetas: {
|
101
|
+
id: string;
|
102
|
+
name: string;
|
103
|
+
groupId: string;
|
104
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
105
|
+
created_at: string;
|
106
|
+
updated_at: string;
|
107
|
+
}[];
|
108
|
+
active: boolean;
|
109
|
+
};
|
110
|
+
filtroBaseActivo: boolean;
|
111
|
+
fcmToken: string | null;
|
112
|
+
nombreUsuario: string;
|
113
|
+
esAdmin: boolean;
|
114
|
+
}>;
|
115
|
+
declare const UpdateFiltroBaseResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
116
|
+
id: z.ZodString;
|
117
|
+
nombreUsuario: z.ZodString;
|
118
|
+
esAdmin: z.ZodBoolean;
|
119
|
+
fcmToken: z.ZodNullable<z.ZodString>;
|
120
|
+
filtroBaseActivo: z.ZodBoolean;
|
121
|
+
filtroBase: z.ZodObject<{
|
122
|
+
active: z.ZodBoolean;
|
123
|
+
etiquetas: z.ZodArray<z.ZodObject<{
|
124
|
+
id: z.ZodString;
|
125
|
+
name: z.ZodString;
|
126
|
+
groupId: z.ZodString;
|
127
|
+
type: z.ZodNativeEnum<{
|
128
|
+
PERSONAL: "PERSONAL";
|
129
|
+
EVENTO: "EVENTO";
|
130
|
+
MODELO: "MODELO";
|
131
|
+
TENTATIVA: "TENTATIVA";
|
132
|
+
}>;
|
133
|
+
created_at: z.ZodString;
|
134
|
+
updated_at: z.ZodString;
|
135
|
+
}, "strip", z.ZodTypeAny, {
|
136
|
+
id: string;
|
137
|
+
name: string;
|
138
|
+
groupId: string;
|
139
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
140
|
+
created_at: string;
|
141
|
+
updated_at: string;
|
142
|
+
}, {
|
143
|
+
id: string;
|
144
|
+
name: string;
|
145
|
+
groupId: string;
|
146
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
147
|
+
created_at: string;
|
148
|
+
updated_at: string;
|
149
|
+
}>, "many">;
|
150
|
+
}, "strip", z.ZodTypeAny, {
|
151
|
+
etiquetas: {
|
152
|
+
id: string;
|
153
|
+
name: string;
|
154
|
+
groupId: string;
|
155
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
156
|
+
created_at: string;
|
157
|
+
updated_at: string;
|
158
|
+
}[];
|
159
|
+
active: boolean;
|
160
|
+
}, {
|
161
|
+
etiquetas: {
|
162
|
+
id: string;
|
163
|
+
name: string;
|
164
|
+
groupId: string;
|
165
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
166
|
+
created_at: string;
|
167
|
+
updated_at: string;
|
168
|
+
}[];
|
169
|
+
active: boolean;
|
170
|
+
}>;
|
171
|
+
}, "strip", z.ZodTypeAny, {
|
172
|
+
id: string;
|
173
|
+
filtroBase: {
|
174
|
+
etiquetas: {
|
175
|
+
id: string;
|
176
|
+
name: string;
|
177
|
+
groupId: string;
|
178
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
179
|
+
created_at: string;
|
180
|
+
updated_at: string;
|
181
|
+
}[];
|
182
|
+
active: boolean;
|
183
|
+
};
|
184
|
+
filtroBaseActivo: boolean;
|
185
|
+
fcmToken: string | null;
|
186
|
+
nombreUsuario: string;
|
187
|
+
esAdmin: boolean;
|
188
|
+
}, {
|
189
|
+
id: string;
|
190
|
+
filtroBase: {
|
191
|
+
etiquetas: {
|
192
|
+
id: string;
|
193
|
+
name: string;
|
194
|
+
groupId: string;
|
195
|
+
type: "PERSONAL" | "EVENTO" | "MODELO" | "TENTATIVA";
|
196
|
+
created_at: string;
|
197
|
+
updated_at: string;
|
198
|
+
}[];
|
199
|
+
active: boolean;
|
200
|
+
};
|
201
|
+
filtroBaseActivo: boolean;
|
202
|
+
fcmToken: string | null;
|
203
|
+
nombreUsuario: string;
|
204
|
+
esAdmin: boolean;
|
205
|
+
}>>;
|
206
|
+
export declare class UpdateFiltroBaseResponseDto extends UpdateFiltroBaseResponseDto_base {
|
207
|
+
}
|
208
|
+
export {};
|