expo-backend-types 0.3.0-EXPO-246-EB-Etiqueta.1 → 0.3.0-EXPO-246-EB-Etiqueta.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/account/dto/account.dto.d.ts +8 -8
- package/dist/src/account/dto/{createAccount.dto.d.ts → create-account.dto.d.ts} +16 -16
- package/dist/src/account/dto/{createAccount.dto.js → create-account.dto.js} +1 -1
- package/dist/src/account/dto/{getGlobalFilter.dto.d.ts → get-global-filter.dto.d.ts} +8 -8
- package/dist/src/account/dto/{getGlobalFilter.dto.js → get-global-filter.dto.js} +1 -1
- package/dist/src/account/dto/{getMe.dto.d.ts → get-me.dto.d.ts} +8 -8
- package/dist/src/account/dto/{getMe.dto.js → get-me.dto.js} +1 -1
- package/dist/src/account/dto/{updateGlobalFilter.dto.d.ts → update-global-filter.dto.d.ts} +28 -28
- package/dist/src/account/dto/{updateGlobalFilter.dto.js → update-global-filter.dto.js} +1 -1
- package/dist/src/account/exports.d.ts +4 -4
- package/dist/src/account/exports.js +4 -4
- package/dist/src/auth/dto/login.dto.d.ts +16 -16
- package/dist/src/i18n/es.json +27 -0
- package/dist/src/tag/dto/create-tag.dto.d.ts +89 -0
- package/dist/src/tag/dto/create-tag.dto.js +20 -0
- package/dist/src/tag/dto/delete-tag.dto.d.ts +57 -0
- package/dist/src/tag/dto/delete-tag.dto.js +10 -0
- package/dist/src/tag/dto/find-all-grouped-tag.dto.d.ts +282 -0
- package/dist/src/tag/dto/find-all-grouped-tag.dto.js +33 -0
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +208 -0
- package/dist/src/tag/dto/find-all-tag.dto.js +19 -0
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +208 -0
- package/dist/src/tag/dto/find-by-group-tag.dto.js +19 -0
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +136 -0
- package/dist/src/tag/dto/find-one-tag.dto.js +17 -0
- package/dist/src/tag/dto/tag.dto.d.ts +12 -12
- package/dist/src/tag/dto/tag.dto.js +2 -2
- package/dist/src/tag/dto/update-tag.dto.d.ts +79 -0
- package/dist/src/tag/dto/update-tag.dto.js +19 -0
- package/dist/src/tag/exports.d.ts +7 -0
- package/dist/src/tag/exports.js +7 -0
- package/dist/src/tag-group/dto/tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/tag-group.dto.js +2 -2
- package/dist/types/schema.d.ts +355 -6
- package/package.json +2 -2
@@ -20,16 +20,16 @@ export declare const accountSchema: z.ZodObject<{
|
|
20
20
|
PARTICIPANT: "PARTICIPANT";
|
21
21
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
22
22
|
}>;
|
23
|
-
created_at: z.
|
24
|
-
updated_at: z.
|
23
|
+
created_at: z.ZodDate;
|
24
|
+
updated_at: z.ZodDate;
|
25
25
|
}, "id" | "name">, {
|
26
26
|
group: z.ZodObject<Pick<{
|
27
27
|
id: z.ZodString;
|
28
28
|
name: z.ZodString;
|
29
29
|
color: z.ZodString;
|
30
30
|
isExclusive: z.ZodBoolean;
|
31
|
-
created_at: z.
|
32
|
-
updated_at: z.
|
31
|
+
created_at: z.ZodDate;
|
32
|
+
updated_at: z.ZodDate;
|
33
33
|
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
34
34
|
id: string;
|
35
35
|
color: string;
|
@@ -146,16 +146,16 @@ declare const CuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
146
146
|
PARTICIPANT: "PARTICIPANT";
|
147
147
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
148
148
|
}>;
|
149
|
-
created_at: z.
|
150
|
-
updated_at: z.
|
149
|
+
created_at: z.ZodDate;
|
150
|
+
updated_at: z.ZodDate;
|
151
151
|
}, "id" | "name">, {
|
152
152
|
group: z.ZodObject<Pick<{
|
153
153
|
id: z.ZodString;
|
154
154
|
name: z.ZodString;
|
155
155
|
color: z.ZodString;
|
156
156
|
isExclusive: z.ZodBoolean;
|
157
|
-
created_at: z.
|
158
|
-
updated_at: z.
|
157
|
+
created_at: z.ZodDate;
|
158
|
+
updated_at: z.ZodDate;
|
159
159
|
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
160
160
|
id: string;
|
161
161
|
color: string;
|
@@ -19,16 +19,16 @@ export declare const createAccountSchema: import("zod").ZodObject<Pick<{
|
|
19
19
|
PARTICIPANT: "PARTICIPANT";
|
20
20
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
21
21
|
}>;
|
22
|
-
created_at: import("zod").
|
23
|
-
updated_at: import("zod").
|
22
|
+
created_at: import("zod").ZodDate;
|
23
|
+
updated_at: import("zod").ZodDate;
|
24
24
|
}, "id" | "name">, {
|
25
25
|
group: import("zod").ZodObject<Pick<{
|
26
26
|
id: import("zod").ZodString;
|
27
27
|
name: import("zod").ZodString;
|
28
28
|
color: import("zod").ZodString;
|
29
29
|
isExclusive: import("zod").ZodBoolean;
|
30
|
-
created_at: import("zod").
|
31
|
-
updated_at: import("zod").
|
30
|
+
created_at: import("zod").ZodDate;
|
31
|
+
updated_at: import("zod").ZodDate;
|
32
32
|
}, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
|
33
33
|
id: string;
|
34
34
|
color: string;
|
@@ -111,16 +111,16 @@ declare const CreateAccountDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
111
111
|
PARTICIPANT: "PARTICIPANT";
|
112
112
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
113
113
|
}>;
|
114
|
-
created_at: import("zod").
|
115
|
-
updated_at: import("zod").
|
114
|
+
created_at: import("zod").ZodDate;
|
115
|
+
updated_at: import("zod").ZodDate;
|
116
116
|
}, "id" | "name">, {
|
117
117
|
group: import("zod").ZodObject<Pick<{
|
118
118
|
id: import("zod").ZodString;
|
119
119
|
name: import("zod").ZodString;
|
120
120
|
color: import("zod").ZodString;
|
121
121
|
isExclusive: import("zod").ZodBoolean;
|
122
|
-
created_at: import("zod").
|
123
|
-
updated_at: import("zod").
|
122
|
+
created_at: import("zod").ZodDate;
|
123
|
+
updated_at: import("zod").ZodDate;
|
124
124
|
}, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
|
125
125
|
id: string;
|
126
126
|
color: string;
|
@@ -205,16 +205,16 @@ export declare const createAccountResponseSchema: import("zod").ZodObject<Omit<{
|
|
205
205
|
PARTICIPANT: "PARTICIPANT";
|
206
206
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
207
207
|
}>;
|
208
|
-
created_at: import("zod").
|
209
|
-
updated_at: import("zod").
|
208
|
+
created_at: import("zod").ZodDate;
|
209
|
+
updated_at: import("zod").ZodDate;
|
210
210
|
}, "id" | "name">, {
|
211
211
|
group: import("zod").ZodObject<Pick<{
|
212
212
|
id: import("zod").ZodString;
|
213
213
|
name: import("zod").ZodString;
|
214
214
|
color: import("zod").ZodString;
|
215
215
|
isExclusive: import("zod").ZodBoolean;
|
216
|
-
created_at: import("zod").
|
217
|
-
updated_at: import("zod").
|
216
|
+
created_at: import("zod").ZodDate;
|
217
|
+
updated_at: import("zod").ZodDate;
|
218
218
|
}, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
|
219
219
|
id: string;
|
220
220
|
color: string;
|
@@ -301,16 +301,16 @@ declare const CreateAccountResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
301
301
|
PARTICIPANT: "PARTICIPANT";
|
302
302
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
303
303
|
}>;
|
304
|
-
created_at: import("zod").
|
305
|
-
updated_at: import("zod").
|
304
|
+
created_at: import("zod").ZodDate;
|
305
|
+
updated_at: import("zod").ZodDate;
|
306
306
|
}, "id" | "name">, {
|
307
307
|
group: import("zod").ZodObject<Pick<{
|
308
308
|
id: import("zod").ZodString;
|
309
309
|
name: import("zod").ZodString;
|
310
310
|
color: import("zod").ZodString;
|
311
311
|
isExclusive: import("zod").ZodBoolean;
|
312
|
-
created_at: import("zod").
|
313
|
-
updated_at: import("zod").
|
312
|
+
created_at: import("zod").ZodDate;
|
313
|
+
updated_at: import("zod").ZodDate;
|
314
314
|
}, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
|
315
315
|
id: string;
|
316
316
|
color: string;
|
@@ -20,4 +20,4 @@ exports.createAccountResponseSchema = account_dto_1.accountSchema.omit({
|
|
20
20
|
class CreateAccountResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.createAccountResponseSchema) {
|
21
21
|
}
|
22
22
|
exports.CreateAccountResponseDto = CreateAccountResponseDto;
|
23
|
-
//# sourceMappingURL=
|
23
|
+
//# sourceMappingURL=create-account.dto.js.map
|
@@ -11,16 +11,16 @@ export declare const getGlobalFilterResponse: z.ZodObject<{
|
|
11
11
|
PARTICIPANT: "PARTICIPANT";
|
12
12
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
13
13
|
}>;
|
14
|
-
created_at: z.
|
15
|
-
updated_at: z.
|
14
|
+
created_at: z.ZodDate;
|
15
|
+
updated_at: z.ZodDate;
|
16
16
|
}, "id" | "name" | "type">, {
|
17
17
|
group: z.ZodObject<Pick<{
|
18
18
|
id: z.ZodString;
|
19
19
|
name: z.ZodString;
|
20
20
|
color: z.ZodString;
|
21
21
|
isExclusive: z.ZodBoolean;
|
22
|
-
created_at: z.
|
23
|
-
updated_at: z.
|
22
|
+
created_at: z.ZodDate;
|
23
|
+
updated_at: z.ZodDate;
|
24
24
|
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
25
25
|
id: string;
|
26
26
|
color: string;
|
@@ -86,16 +86,16 @@ declare const GetGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
86
86
|
PARTICIPANT: "PARTICIPANT";
|
87
87
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
88
88
|
}>;
|
89
|
-
created_at: z.
|
90
|
-
updated_at: z.
|
89
|
+
created_at: z.ZodDate;
|
90
|
+
updated_at: z.ZodDate;
|
91
91
|
}, "id" | "name" | "type">, {
|
92
92
|
group: z.ZodObject<Pick<{
|
93
93
|
id: z.ZodString;
|
94
94
|
name: z.ZodString;
|
95
95
|
color: z.ZodString;
|
96
96
|
isExclusive: z.ZodBoolean;
|
97
|
-
created_at: z.
|
98
|
-
updated_at: z.
|
97
|
+
created_at: z.ZodDate;
|
98
|
+
updated_at: z.ZodDate;
|
99
99
|
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
100
100
|
id: string;
|
101
101
|
color: string;
|
@@ -27,4 +27,4 @@ exports.getGlobalFilterResponse = zod_1.default.object({
|
|
27
27
|
class GetGlobalFilterResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.getGlobalFilterResponse) {
|
28
28
|
}
|
29
29
|
exports.GetGlobalFilterResponseDto = GetGlobalFilterResponseDto;
|
30
|
-
//# sourceMappingURL=
|
30
|
+
//# sourceMappingURL=get-global-filter.dto.js.map
|
@@ -19,16 +19,16 @@ export declare const getMeResponseSchema: import("zod").ZodObject<Omit<{
|
|
19
19
|
PARTICIPANT: "PARTICIPANT";
|
20
20
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
21
21
|
}>;
|
22
|
-
created_at: import("zod").
|
23
|
-
updated_at: import("zod").
|
22
|
+
created_at: import("zod").ZodDate;
|
23
|
+
updated_at: import("zod").ZodDate;
|
24
24
|
}, "id" | "name">, {
|
25
25
|
group: import("zod").ZodObject<Pick<{
|
26
26
|
id: import("zod").ZodString;
|
27
27
|
name: import("zod").ZodString;
|
28
28
|
color: import("zod").ZodString;
|
29
29
|
isExclusive: import("zod").ZodBoolean;
|
30
|
-
created_at: import("zod").
|
31
|
-
updated_at: import("zod").
|
30
|
+
created_at: import("zod").ZodDate;
|
31
|
+
updated_at: import("zod").ZodDate;
|
32
32
|
}, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
|
33
33
|
id: string;
|
34
34
|
color: string;
|
@@ -143,16 +143,16 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
143
143
|
PARTICIPANT: "PARTICIPANT";
|
144
144
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
145
145
|
}>;
|
146
|
-
created_at: import("zod").
|
147
|
-
updated_at: import("zod").
|
146
|
+
created_at: import("zod").ZodDate;
|
147
|
+
updated_at: import("zod").ZodDate;
|
148
148
|
}, "id" | "name">, {
|
149
149
|
group: import("zod").ZodObject<Pick<{
|
150
150
|
id: import("zod").ZodString;
|
151
151
|
name: import("zod").ZodString;
|
152
152
|
color: import("zod").ZodString;
|
153
153
|
isExclusive: import("zod").ZodBoolean;
|
154
|
-
created_at: import("zod").
|
155
|
-
updated_at: import("zod").
|
154
|
+
created_at: import("zod").ZodDate;
|
155
|
+
updated_at: import("zod").ZodDate;
|
156
156
|
}, "id" | "color" | "isExclusive">, "strip", import("zod").ZodTypeAny, {
|
157
157
|
id: string;
|
158
158
|
color: string;
|
@@ -9,4 +9,4 @@ exports.getMeResponseSchema = account_dto_1.accountSchema.omit({
|
|
9
9
|
class GetMeResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.getMeResponseSchema) {
|
10
10
|
}
|
11
11
|
exports.GetMeResponseDto = GetMeResponseDto;
|
12
|
-
//# sourceMappingURL=
|
12
|
+
//# sourceMappingURL=get-me.dto.js.map
|
@@ -39,21 +39,21 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<{
|
|
39
39
|
PARTICIPANT: "PARTICIPANT";
|
40
40
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
41
41
|
}>;
|
42
|
-
created_at: z.
|
43
|
-
updated_at: z.
|
42
|
+
created_at: z.ZodDate;
|
43
|
+
updated_at: z.ZodDate;
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
45
45
|
id: string;
|
46
46
|
name: string;
|
47
47
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
48
|
-
created_at:
|
49
|
-
updated_at:
|
48
|
+
created_at: Date;
|
49
|
+
updated_at: Date;
|
50
50
|
groupId: string;
|
51
51
|
}, {
|
52
52
|
id: string;
|
53
53
|
name: string;
|
54
54
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
55
|
-
created_at:
|
56
|
-
updated_at:
|
55
|
+
created_at: Date;
|
56
|
+
updated_at: Date;
|
57
57
|
groupId: string;
|
58
58
|
}>, "many">;
|
59
59
|
}, "strip", z.ZodTypeAny, {
|
@@ -62,8 +62,8 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<{
|
|
62
62
|
id: string;
|
63
63
|
name: string;
|
64
64
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
65
|
-
created_at:
|
66
|
-
updated_at:
|
65
|
+
created_at: Date;
|
66
|
+
updated_at: Date;
|
67
67
|
groupId: string;
|
68
68
|
}[];
|
69
69
|
}, {
|
@@ -72,8 +72,8 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<{
|
|
72
72
|
id: string;
|
73
73
|
name: string;
|
74
74
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
75
|
-
created_at:
|
76
|
-
updated_at:
|
75
|
+
created_at: Date;
|
76
|
+
updated_at: Date;
|
77
77
|
groupId: string;
|
78
78
|
}[];
|
79
79
|
}>;
|
@@ -89,8 +89,8 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<{
|
|
89
89
|
id: string;
|
90
90
|
name: string;
|
91
91
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
92
|
-
created_at:
|
93
|
-
updated_at:
|
92
|
+
created_at: Date;
|
93
|
+
updated_at: Date;
|
94
94
|
groupId: string;
|
95
95
|
}[];
|
96
96
|
};
|
@@ -106,8 +106,8 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<{
|
|
106
106
|
id: string;
|
107
107
|
name: string;
|
108
108
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
109
|
-
created_at:
|
110
|
-
updated_at:
|
109
|
+
created_at: Date;
|
110
|
+
updated_at: Date;
|
111
111
|
groupId: string;
|
112
112
|
}[];
|
113
113
|
};
|
@@ -130,21 +130,21 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
130
130
|
PARTICIPANT: "PARTICIPANT";
|
131
131
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
132
132
|
}>;
|
133
|
-
created_at: z.
|
134
|
-
updated_at: z.
|
133
|
+
created_at: z.ZodDate;
|
134
|
+
updated_at: z.ZodDate;
|
135
135
|
}, "strip", z.ZodTypeAny, {
|
136
136
|
id: string;
|
137
137
|
name: string;
|
138
138
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
139
|
-
created_at:
|
140
|
-
updated_at:
|
139
|
+
created_at: Date;
|
140
|
+
updated_at: Date;
|
141
141
|
groupId: string;
|
142
142
|
}, {
|
143
143
|
id: string;
|
144
144
|
name: string;
|
145
145
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
146
|
-
created_at:
|
147
|
-
updated_at:
|
146
|
+
created_at: Date;
|
147
|
+
updated_at: Date;
|
148
148
|
groupId: string;
|
149
149
|
}>, "many">;
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
@@ -153,8 +153,8 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
153
153
|
id: string;
|
154
154
|
name: string;
|
155
155
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
156
|
-
created_at:
|
157
|
-
updated_at:
|
156
|
+
created_at: Date;
|
157
|
+
updated_at: Date;
|
158
158
|
groupId: string;
|
159
159
|
}[];
|
160
160
|
}, {
|
@@ -163,8 +163,8 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
163
163
|
id: string;
|
164
164
|
name: string;
|
165
165
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
166
|
-
created_at:
|
167
|
-
updated_at:
|
166
|
+
created_at: Date;
|
167
|
+
updated_at: Date;
|
168
168
|
groupId: string;
|
169
169
|
}[];
|
170
170
|
}>;
|
@@ -180,8 +180,8 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
180
180
|
id: string;
|
181
181
|
name: string;
|
182
182
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
183
|
-
created_at:
|
184
|
-
updated_at:
|
183
|
+
created_at: Date;
|
184
|
+
updated_at: Date;
|
185
185
|
groupId: string;
|
186
186
|
}[];
|
187
187
|
};
|
@@ -197,8 +197,8 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
197
197
|
id: string;
|
198
198
|
name: string;
|
199
199
|
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
200
|
-
created_at:
|
201
|
-
updated_at:
|
200
|
+
created_at: Date;
|
201
|
+
updated_at: Date;
|
202
202
|
groupId: string;
|
203
203
|
}[];
|
204
204
|
};
|
@@ -26,4 +26,4 @@ exports.updateGlobalFilterResponseSchema = zod_1.z.object({
|
|
26
26
|
class UpdateGlobalFilterResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.updateGlobalFilterResponseSchema) {
|
27
27
|
}
|
28
28
|
exports.UpdateGlobalFilterResponseDto = UpdateGlobalFilterResponseDto;
|
29
|
-
//# sourceMappingURL=
|
29
|
+
//# sourceMappingURL=update-global-filter.dto.js.map
|
@@ -1,5 +1,5 @@
|
|
1
1
|
export * from './dto/account.dto';
|
2
|
-
export * from './dto/
|
3
|
-
export * from './dto/
|
4
|
-
export * from './dto/
|
5
|
-
export * from './dto/
|
2
|
+
export * from './dto/create-account.dto';
|
3
|
+
export * from './dto/get-global-filter.dto';
|
4
|
+
export * from './dto/get-me.dto';
|
5
|
+
export * from './dto/update-global-filter.dto';
|
@@ -15,8 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
17
|
__exportStar(require("./dto/account.dto"), exports);
|
18
|
-
__exportStar(require("./dto/
|
19
|
-
__exportStar(require("./dto/
|
20
|
-
__exportStar(require("./dto/
|
21
|
-
__exportStar(require("./dto/
|
18
|
+
__exportStar(require("./dto/create-account.dto"), exports);
|
19
|
+
__exportStar(require("./dto/get-global-filter.dto"), exports);
|
20
|
+
__exportStar(require("./dto/get-me.dto"), exports);
|
21
|
+
__exportStar(require("./dto/update-global-filter.dto"), exports);
|
22
22
|
//# sourceMappingURL=exports.js.map
|
@@ -20,16 +20,16 @@ export declare const loginSchema: z.ZodObject<Pick<{
|
|
20
20
|
PARTICIPANT: "PARTICIPANT";
|
21
21
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
22
22
|
}>;
|
23
|
-
created_at: z.
|
24
|
-
updated_at: z.
|
23
|
+
created_at: z.ZodDate;
|
24
|
+
updated_at: z.ZodDate;
|
25
25
|
}, "id" | "name">, {
|
26
26
|
group: z.ZodObject<Pick<{
|
27
27
|
id: z.ZodString;
|
28
28
|
name: z.ZodString;
|
29
29
|
color: z.ZodString;
|
30
30
|
isExclusive: z.ZodBoolean;
|
31
|
-
created_at: z.
|
32
|
-
updated_at: z.
|
31
|
+
created_at: z.ZodDate;
|
32
|
+
updated_at: z.ZodDate;
|
33
33
|
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
34
34
|
id: string;
|
35
35
|
color: string;
|
@@ -110,16 +110,16 @@ declare const LoginDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObj
|
|
110
110
|
PARTICIPANT: "PARTICIPANT";
|
111
111
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
112
112
|
}>;
|
113
|
-
created_at: z.
|
114
|
-
updated_at: z.
|
113
|
+
created_at: z.ZodDate;
|
114
|
+
updated_at: z.ZodDate;
|
115
115
|
}, "id" | "name">, {
|
116
116
|
group: z.ZodObject<Pick<{
|
117
117
|
id: z.ZodString;
|
118
118
|
name: z.ZodString;
|
119
119
|
color: z.ZodString;
|
120
120
|
isExclusive: z.ZodBoolean;
|
121
|
-
created_at: z.
|
122
|
-
updated_at: z.
|
121
|
+
created_at: z.ZodDate;
|
122
|
+
updated_at: z.ZodDate;
|
123
123
|
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
124
124
|
id: string;
|
125
125
|
color: string;
|
@@ -203,16 +203,16 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
203
203
|
PARTICIPANT: "PARTICIPANT";
|
204
204
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
205
205
|
}>;
|
206
|
-
created_at: z.
|
207
|
-
updated_at: z.
|
206
|
+
created_at: z.ZodDate;
|
207
|
+
updated_at: z.ZodDate;
|
208
208
|
}, "id" | "name">, {
|
209
209
|
group: z.ZodObject<Pick<{
|
210
210
|
id: z.ZodString;
|
211
211
|
name: z.ZodString;
|
212
212
|
color: z.ZodString;
|
213
213
|
isExclusive: z.ZodBoolean;
|
214
|
-
created_at: z.
|
215
|
-
updated_at: z.
|
214
|
+
created_at: z.ZodDate;
|
215
|
+
updated_at: z.ZodDate;
|
216
216
|
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
217
217
|
id: string;
|
218
218
|
color: string;
|
@@ -391,16 +391,16 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
391
391
|
PARTICIPANT: "PARTICIPANT";
|
392
392
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
393
393
|
}>;
|
394
|
-
created_at: z.
|
395
|
-
updated_at: z.
|
394
|
+
created_at: z.ZodDate;
|
395
|
+
updated_at: z.ZodDate;
|
396
396
|
}, "id" | "name">, {
|
397
397
|
group: z.ZodObject<Pick<{
|
398
398
|
id: z.ZodString;
|
399
399
|
name: z.ZodString;
|
400
400
|
color: z.ZodString;
|
401
401
|
isExclusive: z.ZodBoolean;
|
402
|
-
created_at: z.
|
403
|
-
updated_at: z.
|
402
|
+
created_at: z.ZodDate;
|
403
|
+
updated_at: z.ZodDate;
|
404
404
|
}, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
405
405
|
id: string;
|
406
406
|
color: string;
|
package/dist/src/i18n/es.json
CHANGED
@@ -93,6 +93,33 @@
|
|
93
93
|
"me": {
|
94
94
|
"success": "Cuenta obtenida"
|
95
95
|
}
|
96
|
+
},
|
97
|
+
"tag": {
|
98
|
+
"create": {
|
99
|
+
"success": "Etiqueta creada con éxito"
|
100
|
+
},
|
101
|
+
"find-all": {
|
102
|
+
"success": "Etiquetas obtenidas"
|
103
|
+
},
|
104
|
+
"find-one": {
|
105
|
+
"success": "Etiqueta obtenida",
|
106
|
+
"not-found": "Etiqueta no encontrada"
|
107
|
+
},
|
108
|
+
"update": {
|
109
|
+
"success": "Etiqueta actualizada",
|
110
|
+
"not-found": "Etiqueta no encontrada"
|
111
|
+
},
|
112
|
+
"delete": {
|
113
|
+
"success": "Etiqueta eliminada",
|
114
|
+
"not-found": "Etiqueta no encontrada"
|
115
|
+
},
|
116
|
+
"find-by-group": {
|
117
|
+
"success": "Etiquetas obtenidas",
|
118
|
+
"not-found": "Grupo de etiquetas no encontrado"
|
119
|
+
},
|
120
|
+
"find-all-grouped": {
|
121
|
+
"success": "Etiquetas obtenidas"
|
122
|
+
}
|
96
123
|
}
|
97
124
|
}
|
98
125
|
}
|
@@ -0,0 +1,89 @@
|
|
1
|
+
export declare const createTagSchema: import("zod").ZodObject<Pick<{
|
2
|
+
id: import("zod").ZodString;
|
3
|
+
name: import("zod").ZodString;
|
4
|
+
groupId: import("zod").ZodString;
|
5
|
+
type: import("zod").ZodNativeEnum<{
|
6
|
+
PROFILE: "PROFILE";
|
7
|
+
EVENT: "EVENT";
|
8
|
+
PARTICIPANT: "PARTICIPANT";
|
9
|
+
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
10
|
+
}>;
|
11
|
+
created_at: import("zod").ZodDate;
|
12
|
+
updated_at: import("zod").ZodDate;
|
13
|
+
}, "name" | "groupId">, "strip", import("zod").ZodTypeAny, {
|
14
|
+
name: string;
|
15
|
+
groupId: string;
|
16
|
+
}, {
|
17
|
+
name: string;
|
18
|
+
groupId: string;
|
19
|
+
}>;
|
20
|
+
declare const CreateTagDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<Pick<{
|
21
|
+
id: import("zod").ZodString;
|
22
|
+
name: import("zod").ZodString;
|
23
|
+
groupId: import("zod").ZodString;
|
24
|
+
type: import("zod").ZodNativeEnum<{
|
25
|
+
PROFILE: "PROFILE";
|
26
|
+
EVENT: "EVENT";
|
27
|
+
PARTICIPANT: "PARTICIPANT";
|
28
|
+
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
29
|
+
}>;
|
30
|
+
created_at: import("zod").ZodDate;
|
31
|
+
updated_at: import("zod").ZodDate;
|
32
|
+
}, "name" | "groupId">, "strip", import("zod").ZodTypeAny, {
|
33
|
+
name: string;
|
34
|
+
groupId: string;
|
35
|
+
}, {
|
36
|
+
name: string;
|
37
|
+
groupId: string;
|
38
|
+
}>>;
|
39
|
+
export declare class CreateTagDto extends CreateTagDto_base {
|
40
|
+
}
|
41
|
+
export declare const createTagResponseSchema: import("zod").ZodObject<Omit<{
|
42
|
+
id: import("zod").ZodString;
|
43
|
+
name: import("zod").ZodString;
|
44
|
+
groupId: import("zod").ZodString;
|
45
|
+
type: import("zod").ZodNativeEnum<{
|
46
|
+
PROFILE: "PROFILE";
|
47
|
+
EVENT: "EVENT";
|
48
|
+
PARTICIPANT: "PARTICIPANT";
|
49
|
+
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
50
|
+
}>;
|
51
|
+
created_at: import("zod").ZodDate;
|
52
|
+
updated_at: import("zod").ZodDate;
|
53
|
+
}, "created_at" | "updated_at">, "strip", import("zod").ZodTypeAny, {
|
54
|
+
id: string;
|
55
|
+
name: string;
|
56
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
57
|
+
groupId: string;
|
58
|
+
}, {
|
59
|
+
id: string;
|
60
|
+
name: string;
|
61
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
62
|
+
groupId: string;
|
63
|
+
}>;
|
64
|
+
declare const CreateTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<Omit<{
|
65
|
+
id: import("zod").ZodString;
|
66
|
+
name: import("zod").ZodString;
|
67
|
+
groupId: import("zod").ZodString;
|
68
|
+
type: import("zod").ZodNativeEnum<{
|
69
|
+
PROFILE: "PROFILE";
|
70
|
+
EVENT: "EVENT";
|
71
|
+
PARTICIPANT: "PARTICIPANT";
|
72
|
+
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
73
|
+
}>;
|
74
|
+
created_at: import("zod").ZodDate;
|
75
|
+
updated_at: import("zod").ZodDate;
|
76
|
+
}, "created_at" | "updated_at">, "strip", import("zod").ZodTypeAny, {
|
77
|
+
id: string;
|
78
|
+
name: string;
|
79
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
80
|
+
groupId: string;
|
81
|
+
}, {
|
82
|
+
id: string;
|
83
|
+
name: string;
|
84
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
85
|
+
groupId: string;
|
86
|
+
}>>;
|
87
|
+
export declare class CreateTagResponseDto extends CreateTagResponseDto_base {
|
88
|
+
}
|
89
|
+
export {};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CreateTagResponseDto = exports.createTagResponseSchema = exports.CreateTagDto = exports.createTagSchema = void 0;
|
4
|
+
const tag_dto_1 = require("./tag.dto");
|
5
|
+
const zod_nestjs_1 = require("@anatine/zod-nestjs");
|
6
|
+
exports.createTagSchema = tag_dto_1.tagSchema.pick({
|
7
|
+
name: true,
|
8
|
+
groupId: true,
|
9
|
+
});
|
10
|
+
class CreateTagDto extends (0, zod_nestjs_1.createZodDto)(exports.createTagSchema) {
|
11
|
+
}
|
12
|
+
exports.CreateTagDto = CreateTagDto;
|
13
|
+
exports.createTagResponseSchema = tag_dto_1.tagSchema.omit({
|
14
|
+
created_at: true,
|
15
|
+
updated_at: true,
|
16
|
+
});
|
17
|
+
class CreateTagResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.createTagResponseSchema) {
|
18
|
+
}
|
19
|
+
exports.CreateTagResponseDto = CreateTagResponseDto;
|
20
|
+
//# sourceMappingURL=create-tag.dto.js.map
|