expo-backend-types 0.4.0-EXPO-248-EB-GrupoEtiqueta.14 → 0.4.0-EXPO-248-EB-GrupoEtiqueta.16
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types/schema.d.ts +5 -1
- package/package.json +2 -2
package/dist/types/schema.d.ts
CHANGED
@@ -231,7 +231,11 @@ export interface components {
|
|
231
231
|
expiresIn?: number;
|
232
232
|
};
|
233
233
|
};
|
234
|
-
ErrorDto:
|
234
|
+
ErrorDto: {
|
235
|
+
message: string[];
|
236
|
+
statusCode: number;
|
237
|
+
error: string;
|
238
|
+
};
|
235
239
|
RefreshResponseDto: {
|
236
240
|
refreshToken: string;
|
237
241
|
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.16",
|
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",
|