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
@@ -6,6 +6,77 @@ export declare const loginSchema: z.ZodObject<Pick<{
|
|
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
|
}, "username" | "password">, "strip", z.ZodTypeAny, {
|
@@ -22,6 +93,77 @@ declare const LoginDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObj
|
|
22
93
|
isAdmin: z.ZodDefault<z.ZodBoolean>;
|
23
94
|
created_at: z.ZodString;
|
24
95
|
updated_at: z.ZodString;
|
96
|
+
filtroBase: z.ZodObject<{
|
97
|
+
etiquetas: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
98
|
+
id: z.ZodString;
|
99
|
+
name: z.ZodString;
|
100
|
+
groupId: z.ZodString;
|
101
|
+
type: z.ZodNativeEnum<{
|
102
|
+
PERSONAL: "PERSONAL";
|
103
|
+
EVENTO: "EVENTO";
|
104
|
+
MODELO: "MODELO";
|
105
|
+
TENTATIVA: "TENTATIVA";
|
106
|
+
}>;
|
107
|
+
created_at: z.ZodString;
|
108
|
+
updated_at: z.ZodString;
|
109
|
+
}, "id" | "name">, {
|
110
|
+
grupo: z.ZodObject<Pick<{
|
111
|
+
id: z.ZodString;
|
112
|
+
name: z.ZodString;
|
113
|
+
color: z.ZodString;
|
114
|
+
isExclusive: z.ZodBoolean;
|
115
|
+
created_at: z.ZodString;
|
116
|
+
updated_at: z.ZodString;
|
117
|
+
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
118
|
+
id: string;
|
119
|
+
color: string;
|
120
|
+
isExclusive: boolean;
|
121
|
+
}, {
|
122
|
+
id: string;
|
123
|
+
color: string;
|
124
|
+
isExclusive: boolean;
|
125
|
+
}>;
|
126
|
+
}>, "strip", z.ZodTypeAny, {
|
127
|
+
id: string;
|
128
|
+
name: string;
|
129
|
+
grupo: {
|
130
|
+
id: string;
|
131
|
+
color: string;
|
132
|
+
isExclusive: boolean;
|
133
|
+
};
|
134
|
+
}, {
|
135
|
+
id: string;
|
136
|
+
name: string;
|
137
|
+
grupo: {
|
138
|
+
id: string;
|
139
|
+
color: string;
|
140
|
+
isExclusive: boolean;
|
141
|
+
};
|
142
|
+
}>;
|
143
|
+
active: z.ZodBoolean;
|
144
|
+
}, "strip", z.ZodTypeAny, {
|
145
|
+
etiquetas: {
|
146
|
+
id: string;
|
147
|
+
name: string;
|
148
|
+
grupo: {
|
149
|
+
id: string;
|
150
|
+
color: string;
|
151
|
+
isExclusive: boolean;
|
152
|
+
};
|
153
|
+
};
|
154
|
+
active: boolean;
|
155
|
+
}, {
|
156
|
+
etiquetas: {
|
157
|
+
id: string;
|
158
|
+
name: string;
|
159
|
+
grupo: {
|
160
|
+
id: string;
|
161
|
+
color: string;
|
162
|
+
isExclusive: boolean;
|
163
|
+
};
|
164
|
+
};
|
165
|
+
active: boolean;
|
166
|
+
}>;
|
25
167
|
filtroBaseActivo: z.ZodDefault<z.ZodBoolean>;
|
26
168
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
27
169
|
}, "username" | "password">, "strip", z.ZodTypeAny, {
|
@@ -41,21 +183,116 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
41
183
|
isAdmin: z.ZodDefault<z.ZodBoolean>;
|
42
184
|
created_at: z.ZodString;
|
43
185
|
updated_at: z.ZodString;
|
186
|
+
filtroBase: z.ZodObject<{
|
187
|
+
etiquetas: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
188
|
+
id: z.ZodString;
|
189
|
+
name: z.ZodString;
|
190
|
+
groupId: z.ZodString;
|
191
|
+
type: z.ZodNativeEnum<{
|
192
|
+
PERSONAL: "PERSONAL";
|
193
|
+
EVENTO: "EVENTO";
|
194
|
+
MODELO: "MODELO";
|
195
|
+
TENTATIVA: "TENTATIVA";
|
196
|
+
}>;
|
197
|
+
created_at: z.ZodString;
|
198
|
+
updated_at: z.ZodString;
|
199
|
+
}, "id" | "name">, {
|
200
|
+
grupo: z.ZodObject<Pick<{
|
201
|
+
id: z.ZodString;
|
202
|
+
name: z.ZodString;
|
203
|
+
color: z.ZodString;
|
204
|
+
isExclusive: z.ZodBoolean;
|
205
|
+
created_at: z.ZodString;
|
206
|
+
updated_at: z.ZodString;
|
207
|
+
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
208
|
+
id: string;
|
209
|
+
color: string;
|
210
|
+
isExclusive: boolean;
|
211
|
+
}, {
|
212
|
+
id: string;
|
213
|
+
color: string;
|
214
|
+
isExclusive: boolean;
|
215
|
+
}>;
|
216
|
+
}>, "strip", z.ZodTypeAny, {
|
217
|
+
id: string;
|
218
|
+
name: string;
|
219
|
+
grupo: {
|
220
|
+
id: string;
|
221
|
+
color: string;
|
222
|
+
isExclusive: boolean;
|
223
|
+
};
|
224
|
+
}, {
|
225
|
+
id: string;
|
226
|
+
name: string;
|
227
|
+
grupo: {
|
228
|
+
id: string;
|
229
|
+
color: string;
|
230
|
+
isExclusive: boolean;
|
231
|
+
};
|
232
|
+
}>;
|
233
|
+
active: z.ZodBoolean;
|
234
|
+
}, "strip", z.ZodTypeAny, {
|
235
|
+
etiquetas: {
|
236
|
+
id: string;
|
237
|
+
name: string;
|
238
|
+
grupo: {
|
239
|
+
id: string;
|
240
|
+
color: string;
|
241
|
+
isExclusive: boolean;
|
242
|
+
};
|
243
|
+
};
|
244
|
+
active: boolean;
|
245
|
+
}, {
|
246
|
+
etiquetas: {
|
247
|
+
id: string;
|
248
|
+
name: string;
|
249
|
+
grupo: {
|
250
|
+
id: string;
|
251
|
+
color: string;
|
252
|
+
isExclusive: boolean;
|
253
|
+
};
|
254
|
+
};
|
255
|
+
active: boolean;
|
256
|
+
}>;
|
44
257
|
filtroBaseActivo: z.ZodDefault<z.ZodBoolean>;
|
45
258
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
46
259
|
}, "password">, "strip", z.ZodTypeAny, {
|
47
260
|
id: string;
|
48
|
-
username: string;
|
49
|
-
isAdmin: boolean;
|
50
261
|
created_at: string;
|
51
262
|
updated_at: string;
|
263
|
+
username: string;
|
264
|
+
isAdmin: boolean;
|
265
|
+
filtroBase: {
|
266
|
+
etiquetas: {
|
267
|
+
id: string;
|
268
|
+
name: string;
|
269
|
+
grupo: {
|
270
|
+
id: string;
|
271
|
+
color: string;
|
272
|
+
isExclusive: boolean;
|
273
|
+
};
|
274
|
+
};
|
275
|
+
active: boolean;
|
276
|
+
};
|
52
277
|
filtroBaseActivo: boolean;
|
53
278
|
fcmToken: string[];
|
54
279
|
}, {
|
55
280
|
id: string;
|
56
|
-
username: string;
|
57
281
|
created_at: string;
|
58
282
|
updated_at: string;
|
283
|
+
username: string;
|
284
|
+
filtroBase: {
|
285
|
+
etiquetas: {
|
286
|
+
id: string;
|
287
|
+
name: string;
|
288
|
+
grupo: {
|
289
|
+
id: string;
|
290
|
+
color: string;
|
291
|
+
isExclusive: boolean;
|
292
|
+
};
|
293
|
+
};
|
294
|
+
active: boolean;
|
295
|
+
};
|
59
296
|
isAdmin?: boolean | undefined;
|
60
297
|
filtroBaseActivo?: boolean | undefined;
|
61
298
|
fcmToken?: string[] | undefined;
|
@@ -73,10 +310,22 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
73
310
|
}, "strip", z.ZodTypeAny, {
|
74
311
|
user: {
|
75
312
|
id: string;
|
76
|
-
username: string;
|
77
|
-
isAdmin: boolean;
|
78
313
|
created_at: string;
|
79
314
|
updated_at: string;
|
315
|
+
username: string;
|
316
|
+
isAdmin: boolean;
|
317
|
+
filtroBase: {
|
318
|
+
etiquetas: {
|
319
|
+
id: string;
|
320
|
+
name: string;
|
321
|
+
grupo: {
|
322
|
+
id: string;
|
323
|
+
color: string;
|
324
|
+
isExclusive: boolean;
|
325
|
+
};
|
326
|
+
};
|
327
|
+
active: boolean;
|
328
|
+
};
|
80
329
|
filtroBaseActivo: boolean;
|
81
330
|
fcmToken: string[];
|
82
331
|
};
|
@@ -87,9 +336,21 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
87
336
|
}, {
|
88
337
|
user: {
|
89
338
|
id: string;
|
90
|
-
username: string;
|
91
339
|
created_at: string;
|
92
340
|
updated_at: string;
|
341
|
+
username: string;
|
342
|
+
filtroBase: {
|
343
|
+
etiquetas: {
|
344
|
+
id: string;
|
345
|
+
name: string;
|
346
|
+
grupo: {
|
347
|
+
id: string;
|
348
|
+
color: string;
|
349
|
+
isExclusive: boolean;
|
350
|
+
};
|
351
|
+
};
|
352
|
+
active: boolean;
|
353
|
+
};
|
93
354
|
isAdmin?: boolean | undefined;
|
94
355
|
filtroBaseActivo?: boolean | undefined;
|
95
356
|
fcmToken?: string[] | undefined;
|
@@ -107,21 +368,116 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
107
368
|
isAdmin: z.ZodDefault<z.ZodBoolean>;
|
108
369
|
created_at: z.ZodString;
|
109
370
|
updated_at: z.ZodString;
|
371
|
+
filtroBase: z.ZodObject<{
|
372
|
+
etiquetas: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
373
|
+
id: z.ZodString;
|
374
|
+
name: z.ZodString;
|
375
|
+
groupId: z.ZodString;
|
376
|
+
type: z.ZodNativeEnum<{
|
377
|
+
PERSONAL: "PERSONAL";
|
378
|
+
EVENTO: "EVENTO";
|
379
|
+
MODELO: "MODELO";
|
380
|
+
TENTATIVA: "TENTATIVA";
|
381
|
+
}>;
|
382
|
+
created_at: z.ZodString;
|
383
|
+
updated_at: z.ZodString;
|
384
|
+
}, "id" | "name">, {
|
385
|
+
grupo: z.ZodObject<Pick<{
|
386
|
+
id: z.ZodString;
|
387
|
+
name: z.ZodString;
|
388
|
+
color: z.ZodString;
|
389
|
+
isExclusive: z.ZodBoolean;
|
390
|
+
created_at: z.ZodString;
|
391
|
+
updated_at: z.ZodString;
|
392
|
+
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
393
|
+
id: string;
|
394
|
+
color: string;
|
395
|
+
isExclusive: boolean;
|
396
|
+
}, {
|
397
|
+
id: string;
|
398
|
+
color: string;
|
399
|
+
isExclusive: boolean;
|
400
|
+
}>;
|
401
|
+
}>, "strip", z.ZodTypeAny, {
|
402
|
+
id: string;
|
403
|
+
name: string;
|
404
|
+
grupo: {
|
405
|
+
id: string;
|
406
|
+
color: string;
|
407
|
+
isExclusive: boolean;
|
408
|
+
};
|
409
|
+
}, {
|
410
|
+
id: string;
|
411
|
+
name: string;
|
412
|
+
grupo: {
|
413
|
+
id: string;
|
414
|
+
color: string;
|
415
|
+
isExclusive: boolean;
|
416
|
+
};
|
417
|
+
}>;
|
418
|
+
active: z.ZodBoolean;
|
419
|
+
}, "strip", z.ZodTypeAny, {
|
420
|
+
etiquetas: {
|
421
|
+
id: string;
|
422
|
+
name: string;
|
423
|
+
grupo: {
|
424
|
+
id: string;
|
425
|
+
color: string;
|
426
|
+
isExclusive: boolean;
|
427
|
+
};
|
428
|
+
};
|
429
|
+
active: boolean;
|
430
|
+
}, {
|
431
|
+
etiquetas: {
|
432
|
+
id: string;
|
433
|
+
name: string;
|
434
|
+
grupo: {
|
435
|
+
id: string;
|
436
|
+
color: string;
|
437
|
+
isExclusive: boolean;
|
438
|
+
};
|
439
|
+
};
|
440
|
+
active: boolean;
|
441
|
+
}>;
|
110
442
|
filtroBaseActivo: z.ZodDefault<z.ZodBoolean>;
|
111
443
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
112
444
|
}, "password">, "strip", z.ZodTypeAny, {
|
113
445
|
id: string;
|
114
|
-
username: string;
|
115
|
-
isAdmin: boolean;
|
116
446
|
created_at: string;
|
117
447
|
updated_at: string;
|
448
|
+
username: string;
|
449
|
+
isAdmin: boolean;
|
450
|
+
filtroBase: {
|
451
|
+
etiquetas: {
|
452
|
+
id: string;
|
453
|
+
name: string;
|
454
|
+
grupo: {
|
455
|
+
id: string;
|
456
|
+
color: string;
|
457
|
+
isExclusive: boolean;
|
458
|
+
};
|
459
|
+
};
|
460
|
+
active: boolean;
|
461
|
+
};
|
118
462
|
filtroBaseActivo: boolean;
|
119
463
|
fcmToken: string[];
|
120
464
|
}, {
|
121
465
|
id: string;
|
122
|
-
username: string;
|
123
466
|
created_at: string;
|
124
467
|
updated_at: string;
|
468
|
+
username: string;
|
469
|
+
filtroBase: {
|
470
|
+
etiquetas: {
|
471
|
+
id: string;
|
472
|
+
name: string;
|
473
|
+
grupo: {
|
474
|
+
id: string;
|
475
|
+
color: string;
|
476
|
+
isExclusive: boolean;
|
477
|
+
};
|
478
|
+
};
|
479
|
+
active: boolean;
|
480
|
+
};
|
125
481
|
isAdmin?: boolean | undefined;
|
126
482
|
filtroBaseActivo?: boolean | undefined;
|
127
483
|
fcmToken?: string[] | undefined;
|
@@ -139,10 +495,22 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
139
495
|
}, "strip", z.ZodTypeAny, {
|
140
496
|
user: {
|
141
497
|
id: string;
|
142
|
-
username: string;
|
143
|
-
isAdmin: boolean;
|
144
498
|
created_at: string;
|
145
499
|
updated_at: string;
|
500
|
+
username: string;
|
501
|
+
isAdmin: boolean;
|
502
|
+
filtroBase: {
|
503
|
+
etiquetas: {
|
504
|
+
id: string;
|
505
|
+
name: string;
|
506
|
+
grupo: {
|
507
|
+
id: string;
|
508
|
+
color: string;
|
509
|
+
isExclusive: boolean;
|
510
|
+
};
|
511
|
+
};
|
512
|
+
active: boolean;
|
513
|
+
};
|
146
514
|
filtroBaseActivo: boolean;
|
147
515
|
fcmToken: string[];
|
148
516
|
};
|
@@ -153,9 +521,21 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
153
521
|
}, {
|
154
522
|
user: {
|
155
523
|
id: string;
|
156
|
-
username: string;
|
157
524
|
created_at: string;
|
158
525
|
updated_at: string;
|
526
|
+
username: string;
|
527
|
+
filtroBase: {
|
528
|
+
etiquetas: {
|
529
|
+
id: string;
|
530
|
+
name: string;
|
531
|
+
grupo: {
|
532
|
+
id: string;
|
533
|
+
color: string;
|
534
|
+
isExclusive: boolean;
|
535
|
+
};
|
536
|
+
};
|
537
|
+
active: boolean;
|
538
|
+
};
|
159
539
|
isAdmin?: boolean | undefined;
|
160
540
|
filtroBaseActivo?: boolean | undefined;
|
161
541
|
fcmToken?: string[] | undefined;
|