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 +3 -2
- package/src/auth/exports.ts +2 -0
- package/src/cuenta/exports.ts +1 -0
- package/src/exports.ts +2 -0
- package/types/dto.ts +1 -1
package/package.json
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "expo-backend-types",
|
3
|
-
"version": "0.0.
|
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 @@
|
|
1
|
+
export * from './dto/cuenta.dto';
|
package/src/exports.ts
ADDED
package/types/dto.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from '../src/exports';
|
1
|
+
export * from '../src/exports';
|