expo-backend-types 0.4.0-EXPO-248-EB-GrupoEtiqueta.13 → 0.4.0-EXPO-248-EB-GrupoEtiqueta.14
Sign up to get free protection for your applications and to get access to all the features.
@@ -13,7 +13,9 @@ exports.tagGroupSchema = zod_1.z.object({
|
|
13
13
|
}),
|
14
14
|
color: zod_1.z
|
15
15
|
.string()
|
16
|
-
.length(7
|
16
|
+
.length(7, {
|
17
|
+
message: (0, translate_1.translate)('model.tagGroup.color.invalid'),
|
18
|
+
})
|
17
19
|
.startsWith('#', {
|
18
20
|
message: (0, translate_1.translate)('model.tagGroup.color.invalid'),
|
19
21
|
})
|
package/dist/types/schema.d.ts
CHANGED
@@ -231,11 +231,7 @@ export interface components {
|
|
231
231
|
expiresIn?: number;
|
232
232
|
};
|
233
233
|
};
|
234
|
-
ErrorDto:
|
235
|
-
message: string;
|
236
|
-
statusCode: number;
|
237
|
-
error: string;
|
238
|
-
};
|
234
|
+
ErrorDto: Record<string, never>;
|
239
235
|
RefreshResponseDto: {
|
240
236
|
refreshToken: string;
|
241
237
|
accessToken: string;
|