expo-backend-types 0.4.0-EXPO-248-EB-GrupoEtiqueta.13 → 0.4.0-EXPO-248-EB-GrupoEtiqueta.15
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;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "expo-backend-types",
|
3
|
-
"version": "0.4.0-EXPO-248-EB-GrupoEtiqueta.
|
3
|
+
"version": "0.4.0-EXPO-248-EB-GrupoEtiqueta.15",
|
4
4
|
"description": "",
|
5
5
|
"author": "Expo",
|
6
6
|
"private": false,
|
@@ -16,7 +16,7 @@
|
|
16
16
|
"ci": "npm install && npx prisma generate && npm run generate-ts-schema && npm run build && npx prisma generate && npm run format && npm run lint && npm run check-exports",
|
17
17
|
"build": "nest build",
|
18
18
|
"postinstall": "patch-package",
|
19
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
19
|
+
"format": "prettier --write \"src/**/*.ts\" \"types/**/*.ts\"",
|
20
20
|
"check-format": "prettier --check \"src/**/*.ts\"",
|
21
21
|
"check-exports": "attw --pack .",
|
22
22
|
"local-release": "changeset version && changeset publish",
|