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.
Files changed (34) hide show
  1. package/dist/src/auth/dto/login.dto.d.ts +392 -12
  2. package/dist/src/auth/dto/register.dto.d.ts +284 -0
  3. package/dist/src/cuenta/dto/createCuenta.dto.d.ts +369 -0
  4. package/dist/src/cuenta/dto/createCuenta.dto.js +23 -0
  5. package/dist/src/cuenta/dto/cuenta.dto.d.ts +198 -8
  6. package/dist/src/cuenta/dto/cuenta.dto.js +17 -0
  7. package/dist/src/cuenta/dto/getFiltroBase.dto.d.ts +154 -0
  8. package/dist/src/cuenta/dto/getFiltroBase.dto.js +29 -0
  9. package/dist/src/cuenta/dto/updateFiltroBase.dto.d.ts +208 -0
  10. package/dist/src/cuenta/dto/updateFiltroBase.dto.js +28 -0
  11. package/dist/src/etiqueta/dto/etiqueta.dto.d.ts +18 -18
  12. package/dist/src/etiqueta/dto/etiqueta.dto.js +4 -4
  13. package/dist/src/evento/dto/evento.dto.d.ts +126 -0
  14. package/dist/src/evento/dto/evento.dto.js +27 -0
  15. package/dist/src/evento/exports.d.ts +1 -0
  16. package/dist/src/evento/exports.js +18 -0
  17. package/dist/src/exports.d.ts +2 -0
  18. package/dist/src/exports.js +2 -0
  19. package/dist/src/grupo-etiqueta/dto/grupo-etiqueta.dto.d.ts +48 -0
  20. package/dist/src/grupo-etiqueta/dto/grupo-etiqueta.dto.js +27 -0
  21. package/dist/src/grupo-etiqueta/exports.d.ts +1 -0
  22. package/dist/src/grupo-etiqueta/exports.js +18 -0
  23. package/dist/types/index.d.ts +1 -1
  24. package/dist/types/index.js +1 -1
  25. package/dist/types/index.js.map +1 -1
  26. package/dist/types/prisma-schema/edge.js +14 -3
  27. package/dist/types/prisma-schema/index-browser.js +11 -0
  28. package/dist/types/prisma-schema/index.d.ts +1758 -185
  29. package/dist/types/prisma-schema/index.js +14 -3
  30. package/dist/types/prisma-schema/package.json +1 -1
  31. package/dist/types/prisma-schema/schema.prisma +16 -1
  32. package/dist/types/prisma-schema/wasm.js +11 -0
  33. package/dist/types/schema.d.ts +156 -0
  34. package/package.json +7 -5
@@ -5,6 +5,77 @@ export declare const registerSchema: import("zod").ZodObject<Pick<{
5
5
  isAdmin: import("zod").ZodDefault<import("zod").ZodBoolean>;
6
6
  created_at: import("zod").ZodString;
7
7
  updated_at: import("zod").ZodString;
8
+ filtroBase: import("zod").ZodObject<{
9
+ etiquetas: import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
10
+ id: import("zod").ZodString;
11
+ name: import("zod").ZodString;
12
+ groupId: import("zod").ZodString;
13
+ type: import("zod").ZodNativeEnum<{
14
+ PERSONAL: "PERSONAL";
15
+ EVENTO: "EVENTO";
16
+ MODELO: "MODELO";
17
+ TENTATIVA: "TENTATIVA";
18
+ }>;
19
+ created_at: import("zod").ZodString;
20
+ updated_at: import("zod").ZodString;
21
+ }, "id" | "name">, {
22
+ grupo: import("zod").ZodObject<Pick<{
23
+ id: import("zod").ZodString;
24
+ name: import("zod").ZodString;
25
+ color: import("zod").ZodString;
26
+ isExclusive: import("zod").ZodBoolean;
27
+ created_at: import("zod").ZodString;
28
+ updated_at: import("zod").ZodString;
29
+ }, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
30
+ id: string;
31
+ color: string;
32
+ isExclusive: boolean;
33
+ }, {
34
+ id: string;
35
+ color: string;
36
+ isExclusive: boolean;
37
+ }>;
38
+ }>, "strip", import("zod").ZodTypeAny, {
39
+ id: string;
40
+ name: string;
41
+ grupo: {
42
+ id: string;
43
+ color: string;
44
+ isExclusive: boolean;
45
+ };
46
+ }, {
47
+ id: string;
48
+ name: string;
49
+ grupo: {
50
+ id: string;
51
+ color: string;
52
+ isExclusive: boolean;
53
+ };
54
+ }>;
55
+ active: import("zod").ZodBoolean;
56
+ }, "strip", import("zod").ZodTypeAny, {
57
+ etiquetas: {
58
+ id: string;
59
+ name: string;
60
+ grupo: {
61
+ id: string;
62
+ color: string;
63
+ isExclusive: boolean;
64
+ };
65
+ };
66
+ active: boolean;
67
+ }, {
68
+ etiquetas: {
69
+ id: string;
70
+ name: string;
71
+ grupo: {
72
+ id: string;
73
+ color: string;
74
+ isExclusive: boolean;
75
+ };
76
+ };
77
+ active: boolean;
78
+ }>;
8
79
  filtroBaseActivo: import("zod").ZodDefault<import("zod").ZodBoolean>;
9
80
  fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
10
81
  }, "username" | "password" | "isAdmin">, "strip", import("zod").ZodTypeAny, {
@@ -23,6 +94,77 @@ declare const RegisterDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<impor
23
94
  isAdmin: import("zod").ZodDefault<import("zod").ZodBoolean>;
24
95
  created_at: import("zod").ZodString;
25
96
  updated_at: import("zod").ZodString;
97
+ filtroBase: import("zod").ZodObject<{
98
+ etiquetas: import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
99
+ id: import("zod").ZodString;
100
+ name: import("zod").ZodString;
101
+ groupId: import("zod").ZodString;
102
+ type: import("zod").ZodNativeEnum<{
103
+ PERSONAL: "PERSONAL";
104
+ EVENTO: "EVENTO";
105
+ MODELO: "MODELO";
106
+ TENTATIVA: "TENTATIVA";
107
+ }>;
108
+ created_at: import("zod").ZodString;
109
+ updated_at: import("zod").ZodString;
110
+ }, "id" | "name">, {
111
+ grupo: import("zod").ZodObject<Pick<{
112
+ id: import("zod").ZodString;
113
+ name: import("zod").ZodString;
114
+ color: import("zod").ZodString;
115
+ isExclusive: import("zod").ZodBoolean;
116
+ created_at: import("zod").ZodString;
117
+ updated_at: import("zod").ZodString;
118
+ }, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
119
+ id: string;
120
+ color: string;
121
+ isExclusive: boolean;
122
+ }, {
123
+ id: string;
124
+ color: string;
125
+ isExclusive: boolean;
126
+ }>;
127
+ }>, "strip", import("zod").ZodTypeAny, {
128
+ id: string;
129
+ name: string;
130
+ grupo: {
131
+ id: string;
132
+ color: string;
133
+ isExclusive: boolean;
134
+ };
135
+ }, {
136
+ id: string;
137
+ name: string;
138
+ grupo: {
139
+ id: string;
140
+ color: string;
141
+ isExclusive: boolean;
142
+ };
143
+ }>;
144
+ active: import("zod").ZodBoolean;
145
+ }, "strip", import("zod").ZodTypeAny, {
146
+ etiquetas: {
147
+ id: string;
148
+ name: string;
149
+ grupo: {
150
+ id: string;
151
+ color: string;
152
+ isExclusive: boolean;
153
+ };
154
+ };
155
+ active: boolean;
156
+ }, {
157
+ etiquetas: {
158
+ id: string;
159
+ name: string;
160
+ grupo: {
161
+ id: string;
162
+ color: string;
163
+ isExclusive: boolean;
164
+ };
165
+ };
166
+ active: boolean;
167
+ }>;
26
168
  filtroBaseActivo: import("zod").ZodDefault<import("zod").ZodBoolean>;
27
169
  fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
28
170
  }, "username" | "password" | "isAdmin">, "strip", import("zod").ZodTypeAny, {
@@ -43,6 +185,77 @@ export declare const registerResponseSchema: import("zod").ZodObject<Omit<Pick<{
43
185
  isAdmin: import("zod").ZodDefault<import("zod").ZodBoolean>;
44
186
  created_at: import("zod").ZodString;
45
187
  updated_at: import("zod").ZodString;
188
+ filtroBase: import("zod").ZodObject<{
189
+ etiquetas: import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
190
+ id: import("zod").ZodString;
191
+ name: import("zod").ZodString;
192
+ groupId: import("zod").ZodString;
193
+ type: import("zod").ZodNativeEnum<{
194
+ PERSONAL: "PERSONAL";
195
+ EVENTO: "EVENTO";
196
+ MODELO: "MODELO";
197
+ TENTATIVA: "TENTATIVA";
198
+ }>;
199
+ created_at: import("zod").ZodString;
200
+ updated_at: import("zod").ZodString;
201
+ }, "id" | "name">, {
202
+ grupo: import("zod").ZodObject<Pick<{
203
+ id: import("zod").ZodString;
204
+ name: import("zod").ZodString;
205
+ color: import("zod").ZodString;
206
+ isExclusive: import("zod").ZodBoolean;
207
+ created_at: import("zod").ZodString;
208
+ updated_at: import("zod").ZodString;
209
+ }, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
210
+ id: string;
211
+ color: string;
212
+ isExclusive: boolean;
213
+ }, {
214
+ id: string;
215
+ color: string;
216
+ isExclusive: boolean;
217
+ }>;
218
+ }>, "strip", import("zod").ZodTypeAny, {
219
+ id: string;
220
+ name: string;
221
+ grupo: {
222
+ id: string;
223
+ color: string;
224
+ isExclusive: boolean;
225
+ };
226
+ }, {
227
+ id: string;
228
+ name: string;
229
+ grupo: {
230
+ id: string;
231
+ color: string;
232
+ isExclusive: boolean;
233
+ };
234
+ }>;
235
+ active: import("zod").ZodBoolean;
236
+ }, "strip", import("zod").ZodTypeAny, {
237
+ etiquetas: {
238
+ id: string;
239
+ name: string;
240
+ grupo: {
241
+ id: string;
242
+ color: string;
243
+ isExclusive: boolean;
244
+ };
245
+ };
246
+ active: boolean;
247
+ }, {
248
+ etiquetas: {
249
+ id: string;
250
+ name: string;
251
+ grupo: {
252
+ id: string;
253
+ color: string;
254
+ isExclusive: boolean;
255
+ };
256
+ };
257
+ active: boolean;
258
+ }>;
46
259
  filtroBaseActivo: import("zod").ZodDefault<import("zod").ZodBoolean>;
47
260
  fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
48
261
  }, "username" | "password" | "isAdmin">, "password">, "strip", import("zod").ZodTypeAny, {
@@ -59,6 +272,77 @@ declare const RegisterResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStat
59
272
  isAdmin: import("zod").ZodDefault<import("zod").ZodBoolean>;
60
273
  created_at: import("zod").ZodString;
61
274
  updated_at: import("zod").ZodString;
275
+ filtroBase: import("zod").ZodObject<{
276
+ etiquetas: import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
277
+ id: import("zod").ZodString;
278
+ name: import("zod").ZodString;
279
+ groupId: import("zod").ZodString;
280
+ type: import("zod").ZodNativeEnum<{
281
+ PERSONAL: "PERSONAL";
282
+ EVENTO: "EVENTO";
283
+ MODELO: "MODELO";
284
+ TENTATIVA: "TENTATIVA";
285
+ }>;
286
+ created_at: import("zod").ZodString;
287
+ updated_at: import("zod").ZodString;
288
+ }, "id" | "name">, {
289
+ grupo: import("zod").ZodObject<Pick<{
290
+ id: import("zod").ZodString;
291
+ name: import("zod").ZodString;
292
+ color: import("zod").ZodString;
293
+ isExclusive: import("zod").ZodBoolean;
294
+ created_at: import("zod").ZodString;
295
+ updated_at: import("zod").ZodString;
296
+ }, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
297
+ id: string;
298
+ color: string;
299
+ isExclusive: boolean;
300
+ }, {
301
+ id: string;
302
+ color: string;
303
+ isExclusive: boolean;
304
+ }>;
305
+ }>, "strip", import("zod").ZodTypeAny, {
306
+ id: string;
307
+ name: string;
308
+ grupo: {
309
+ id: string;
310
+ color: string;
311
+ isExclusive: boolean;
312
+ };
313
+ }, {
314
+ id: string;
315
+ name: string;
316
+ grupo: {
317
+ id: string;
318
+ color: string;
319
+ isExclusive: boolean;
320
+ };
321
+ }>;
322
+ active: import("zod").ZodBoolean;
323
+ }, "strip", import("zod").ZodTypeAny, {
324
+ etiquetas: {
325
+ id: string;
326
+ name: string;
327
+ grupo: {
328
+ id: string;
329
+ color: string;
330
+ isExclusive: boolean;
331
+ };
332
+ };
333
+ active: boolean;
334
+ }, {
335
+ etiquetas: {
336
+ id: string;
337
+ name: string;
338
+ grupo: {
339
+ id: string;
340
+ color: string;
341
+ isExclusive: boolean;
342
+ };
343
+ };
344
+ active: boolean;
345
+ }>;
62
346
  filtroBaseActivo: import("zod").ZodDefault<import("zod").ZodBoolean>;
63
347
  fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
64
348
  }, "username" | "password" | "isAdmin">, "password">, "strip", import("zod").ZodTypeAny, {
@@ -0,0 +1,369 @@
1
+ export declare const createCuentaSchema: import("zod").ZodObject<Pick<{
2
+ id: import("zod").ZodString;
3
+ username: import("zod").ZodString;
4
+ password: import("zod").ZodString;
5
+ isAdmin: import("zod").ZodDefault<import("zod").ZodBoolean>;
6
+ created_at: import("zod").ZodString;
7
+ updated_at: import("zod").ZodString;
8
+ filtroBase: import("zod").ZodObject<{
9
+ etiquetas: import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
10
+ id: import("zod").ZodString;
11
+ name: import("zod").ZodString;
12
+ groupId: import("zod").ZodString;
13
+ type: import("zod").ZodNativeEnum<{
14
+ PERSONAL: "PERSONAL";
15
+ EVENTO: "EVENTO";
16
+ MODELO: "MODELO";
17
+ TENTATIVA: "TENTATIVA";
18
+ }>;
19
+ created_at: import("zod").ZodString;
20
+ updated_at: import("zod").ZodString;
21
+ }, "id" | "name">, {
22
+ grupo: import("zod").ZodObject<Pick<{
23
+ id: import("zod").ZodString;
24
+ name: import("zod").ZodString;
25
+ color: import("zod").ZodString;
26
+ isExclusive: import("zod").ZodBoolean;
27
+ created_at: import("zod").ZodString;
28
+ updated_at: import("zod").ZodString;
29
+ }, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
30
+ id: string;
31
+ color: string;
32
+ isExclusive: boolean;
33
+ }, {
34
+ id: string;
35
+ color: string;
36
+ isExclusive: boolean;
37
+ }>;
38
+ }>, "strip", import("zod").ZodTypeAny, {
39
+ id: string;
40
+ name: string;
41
+ grupo: {
42
+ id: string;
43
+ color: string;
44
+ isExclusive: boolean;
45
+ };
46
+ }, {
47
+ id: string;
48
+ name: string;
49
+ grupo: {
50
+ id: string;
51
+ color: string;
52
+ isExclusive: boolean;
53
+ };
54
+ }>;
55
+ active: import("zod").ZodBoolean;
56
+ }, "strip", import("zod").ZodTypeAny, {
57
+ etiquetas: {
58
+ id: string;
59
+ name: string;
60
+ grupo: {
61
+ id: string;
62
+ color: string;
63
+ isExclusive: boolean;
64
+ };
65
+ };
66
+ active: boolean;
67
+ }, {
68
+ etiquetas: {
69
+ id: string;
70
+ name: string;
71
+ grupo: {
72
+ id: string;
73
+ color: string;
74
+ isExclusive: boolean;
75
+ };
76
+ };
77
+ active: boolean;
78
+ }>;
79
+ filtroBaseActivo: import("zod").ZodDefault<import("zod").ZodBoolean>;
80
+ fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
81
+ }, "username" | "password" | "isAdmin">, "strip", import("zod").ZodTypeAny, {
82
+ username: string;
83
+ password: string;
84
+ isAdmin: boolean;
85
+ }, {
86
+ username: string;
87
+ password: string;
88
+ isAdmin?: boolean | undefined;
89
+ }>;
90
+ declare const CreateCuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<Pick<{
91
+ id: import("zod").ZodString;
92
+ username: import("zod").ZodString;
93
+ password: import("zod").ZodString;
94
+ isAdmin: import("zod").ZodDefault<import("zod").ZodBoolean>;
95
+ created_at: import("zod").ZodString;
96
+ updated_at: import("zod").ZodString;
97
+ filtroBase: import("zod").ZodObject<{
98
+ etiquetas: import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
99
+ id: import("zod").ZodString;
100
+ name: import("zod").ZodString;
101
+ groupId: import("zod").ZodString;
102
+ type: import("zod").ZodNativeEnum<{
103
+ PERSONAL: "PERSONAL";
104
+ EVENTO: "EVENTO";
105
+ MODELO: "MODELO";
106
+ TENTATIVA: "TENTATIVA";
107
+ }>;
108
+ created_at: import("zod").ZodString;
109
+ updated_at: import("zod").ZodString;
110
+ }, "id" | "name">, {
111
+ grupo: import("zod").ZodObject<Pick<{
112
+ id: import("zod").ZodString;
113
+ name: import("zod").ZodString;
114
+ color: import("zod").ZodString;
115
+ isExclusive: import("zod").ZodBoolean;
116
+ created_at: import("zod").ZodString;
117
+ updated_at: import("zod").ZodString;
118
+ }, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
119
+ id: string;
120
+ color: string;
121
+ isExclusive: boolean;
122
+ }, {
123
+ id: string;
124
+ color: string;
125
+ isExclusive: boolean;
126
+ }>;
127
+ }>, "strip", import("zod").ZodTypeAny, {
128
+ id: string;
129
+ name: string;
130
+ grupo: {
131
+ id: string;
132
+ color: string;
133
+ isExclusive: boolean;
134
+ };
135
+ }, {
136
+ id: string;
137
+ name: string;
138
+ grupo: {
139
+ id: string;
140
+ color: string;
141
+ isExclusive: boolean;
142
+ };
143
+ }>;
144
+ active: import("zod").ZodBoolean;
145
+ }, "strip", import("zod").ZodTypeAny, {
146
+ etiquetas: {
147
+ id: string;
148
+ name: string;
149
+ grupo: {
150
+ id: string;
151
+ color: string;
152
+ isExclusive: boolean;
153
+ };
154
+ };
155
+ active: boolean;
156
+ }, {
157
+ etiquetas: {
158
+ id: string;
159
+ name: string;
160
+ grupo: {
161
+ id: string;
162
+ color: string;
163
+ isExclusive: boolean;
164
+ };
165
+ };
166
+ active: boolean;
167
+ }>;
168
+ filtroBaseActivo: import("zod").ZodDefault<import("zod").ZodBoolean>;
169
+ fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
170
+ }, "username" | "password" | "isAdmin">, "strip", import("zod").ZodTypeAny, {
171
+ username: string;
172
+ password: string;
173
+ isAdmin: boolean;
174
+ }, {
175
+ username: string;
176
+ password: string;
177
+ isAdmin?: boolean | undefined;
178
+ }>>;
179
+ export declare class CreateCuentaDto extends CreateCuentaDto_base {
180
+ }
181
+ export declare const createCuentaResponseSchema: import("zod").ZodObject<Omit<{
182
+ id: import("zod").ZodString;
183
+ username: import("zod").ZodString;
184
+ password: import("zod").ZodString;
185
+ isAdmin: import("zod").ZodDefault<import("zod").ZodBoolean>;
186
+ created_at: import("zod").ZodString;
187
+ updated_at: import("zod").ZodString;
188
+ filtroBase: import("zod").ZodObject<{
189
+ etiquetas: import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
190
+ id: import("zod").ZodString;
191
+ name: import("zod").ZodString;
192
+ groupId: import("zod").ZodString;
193
+ type: import("zod").ZodNativeEnum<{
194
+ PERSONAL: "PERSONAL";
195
+ EVENTO: "EVENTO";
196
+ MODELO: "MODELO";
197
+ TENTATIVA: "TENTATIVA";
198
+ }>;
199
+ created_at: import("zod").ZodString;
200
+ updated_at: import("zod").ZodString;
201
+ }, "id" | "name">, {
202
+ grupo: import("zod").ZodObject<Pick<{
203
+ id: import("zod").ZodString;
204
+ name: import("zod").ZodString;
205
+ color: import("zod").ZodString;
206
+ isExclusive: import("zod").ZodBoolean;
207
+ created_at: import("zod").ZodString;
208
+ updated_at: import("zod").ZodString;
209
+ }, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
210
+ id: string;
211
+ color: string;
212
+ isExclusive: boolean;
213
+ }, {
214
+ id: string;
215
+ color: string;
216
+ isExclusive: boolean;
217
+ }>;
218
+ }>, "strip", import("zod").ZodTypeAny, {
219
+ id: string;
220
+ name: string;
221
+ grupo: {
222
+ id: string;
223
+ color: string;
224
+ isExclusive: boolean;
225
+ };
226
+ }, {
227
+ id: string;
228
+ name: string;
229
+ grupo: {
230
+ id: string;
231
+ color: string;
232
+ isExclusive: boolean;
233
+ };
234
+ }>;
235
+ active: import("zod").ZodBoolean;
236
+ }, "strip", import("zod").ZodTypeAny, {
237
+ etiquetas: {
238
+ id: string;
239
+ name: string;
240
+ grupo: {
241
+ id: string;
242
+ color: string;
243
+ isExclusive: boolean;
244
+ };
245
+ };
246
+ active: boolean;
247
+ }, {
248
+ etiquetas: {
249
+ id: string;
250
+ name: string;
251
+ grupo: {
252
+ id: string;
253
+ color: string;
254
+ isExclusive: boolean;
255
+ };
256
+ };
257
+ active: boolean;
258
+ }>;
259
+ filtroBaseActivo: import("zod").ZodDefault<import("zod").ZodBoolean>;
260
+ fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
261
+ }, "created_at" | "updated_at" | "password" | "filtroBase">, "strip", import("zod").ZodTypeAny, {
262
+ id: string;
263
+ username: string;
264
+ isAdmin: boolean;
265
+ filtroBaseActivo: boolean;
266
+ fcmToken: string[];
267
+ }, {
268
+ id: string;
269
+ username: string;
270
+ isAdmin?: boolean | undefined;
271
+ filtroBaseActivo?: boolean | undefined;
272
+ fcmToken?: string[] | undefined;
273
+ }>;
274
+ declare const CreateCuentaResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<Omit<{
275
+ id: import("zod").ZodString;
276
+ username: import("zod").ZodString;
277
+ password: import("zod").ZodString;
278
+ isAdmin: import("zod").ZodDefault<import("zod").ZodBoolean>;
279
+ created_at: import("zod").ZodString;
280
+ updated_at: import("zod").ZodString;
281
+ filtroBase: import("zod").ZodObject<{
282
+ etiquetas: import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
283
+ id: import("zod").ZodString;
284
+ name: import("zod").ZodString;
285
+ groupId: import("zod").ZodString;
286
+ type: import("zod").ZodNativeEnum<{
287
+ PERSONAL: "PERSONAL";
288
+ EVENTO: "EVENTO";
289
+ MODELO: "MODELO";
290
+ TENTATIVA: "TENTATIVA";
291
+ }>;
292
+ created_at: import("zod").ZodString;
293
+ updated_at: import("zod").ZodString;
294
+ }, "id" | "name">, {
295
+ grupo: import("zod").ZodObject<Pick<{
296
+ id: import("zod").ZodString;
297
+ name: import("zod").ZodString;
298
+ color: import("zod").ZodString;
299
+ isExclusive: import("zod").ZodBoolean;
300
+ created_at: import("zod").ZodString;
301
+ updated_at: import("zod").ZodString;
302
+ }, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
303
+ id: string;
304
+ color: string;
305
+ isExclusive: boolean;
306
+ }, {
307
+ id: string;
308
+ color: string;
309
+ isExclusive: boolean;
310
+ }>;
311
+ }>, "strip", import("zod").ZodTypeAny, {
312
+ id: string;
313
+ name: string;
314
+ grupo: {
315
+ id: string;
316
+ color: string;
317
+ isExclusive: boolean;
318
+ };
319
+ }, {
320
+ id: string;
321
+ name: string;
322
+ grupo: {
323
+ id: string;
324
+ color: string;
325
+ isExclusive: boolean;
326
+ };
327
+ }>;
328
+ active: import("zod").ZodBoolean;
329
+ }, "strip", import("zod").ZodTypeAny, {
330
+ etiquetas: {
331
+ id: string;
332
+ name: string;
333
+ grupo: {
334
+ id: string;
335
+ color: string;
336
+ isExclusive: boolean;
337
+ };
338
+ };
339
+ active: boolean;
340
+ }, {
341
+ etiquetas: {
342
+ id: string;
343
+ name: string;
344
+ grupo: {
345
+ id: string;
346
+ color: string;
347
+ isExclusive: boolean;
348
+ };
349
+ };
350
+ active: boolean;
351
+ }>;
352
+ filtroBaseActivo: import("zod").ZodDefault<import("zod").ZodBoolean>;
353
+ fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
354
+ }, "created_at" | "updated_at" | "password" | "filtroBase">, "strip", import("zod").ZodTypeAny, {
355
+ id: string;
356
+ username: string;
357
+ isAdmin: boolean;
358
+ filtroBaseActivo: boolean;
359
+ fcmToken: string[];
360
+ }, {
361
+ id: string;
362
+ username: string;
363
+ isAdmin?: boolean | undefined;
364
+ filtroBaseActivo?: boolean | undefined;
365
+ fcmToken?: string[] | undefined;
366
+ }>>;
367
+ export declare class CreateCuentaResponseDto extends CreateCuentaResponseDto_base {
368
+ }
369
+ export {};