expo-backend-types 0.0.35 → 0.0.36

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
7
7
  "license": "UNLICENSED",
8
8
  "files": [
9
9
  "types",
10
- "src/**/*.dto.ts"
10
+ "src/**/*.dto.ts",
11
+ "src/**/exports.ts"
11
12
  ],
12
13
  "scripts": {
13
14
  "ci": "npm run build && npm run generate-ts-schema && npm run check-format && npm run lint && npm run check-exports",
@@ -0,0 +1,2 @@
1
+ export * from './dto/login.dto';
2
+ export * from './dto/register.dto';
@@ -0,0 +1 @@
1
+ export * from './dto/cuenta.dto';
package/src/exports.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './auth/exports';
2
+ export * from './cuenta/exports';
package/types/dto.ts CHANGED
@@ -1 +1 @@
1
- export * from '../src/exports';
1
+ export * from '../src/exports';