expo-backend-types 0.0.45 → 0.0.47

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,2 @@
1
1
  export * from './schema';
2
2
  export * from './prisma-schema';
3
- export * from './dto';
@@ -16,5 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./schema"), exports);
18
18
  __exportStar(require("./prisma-schema"), exports);
19
- __exportStar(require("./dto"), exports);
20
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,kDAAgC;AAChC,wCAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,kDAAgC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
@@ -15,7 +15,7 @@
15
15
  "build": "nest build",
16
16
  "format": "prettier --write \"src/**/*.ts\"",
17
17
  "check-format": "prettier --check \"src/**/*.ts\"",
18
- "check-exports": "attw --pack .",
18
+ "check-exports": "attw --pack . --ignore-rules no-resolution",
19
19
  "local-release": "changeset version && changeset publish",
20
20
  "commit-schema": "git add ./types/schema.d.ts swagger.yaml && git commit -m \"Update schema\"",
21
21
  "start": "nest start",
@@ -82,13 +82,19 @@
82
82
  "tsconfig-paths": "^4.2.0",
83
83
  "typescript": "^5.4.5"
84
84
  },
85
- "main": "./dist/types/index.d.ts",
85
+ "main": "./dist/types/index.ts",
86
86
  "exports": {
87
87
  ".": {
88
88
  "import": "./dist/types/index.js",
89
89
  "require": "./dist/types/index.js",
90
90
  "default": "./dist/types/index.js",
91
91
  "types": "./dist/types/index.d.ts"
92
+ },
93
+ "./dto": {
94
+ "import": "./dist/types/dto.js",
95
+ "require": "./dist/types/dto.js",
96
+ "default": "./dist/types/dto.js",
97
+ "types": "./dist/types/dto.d.ts"
92
98
  }
93
99
  },
94
100
  "lint-staged": {