clarifai-web-grpc 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/package.json +9 -3
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [1.1.5](https://github.com/Clarifai/clarifai-web-grpc/compare/v1.1.4...v1.1.5) (2022-01-31)
1
+ ## [1.1.6](https://github.com/Clarifai/clarifai-web-grpc/compare/v1.1.5...v1.1.6) (2022-02-02)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * remove CJS and clean up package resolution ([14b5d31](https://github.com/Clarifai/clarifai-web-grpc/commit/14b5d3128dc87082d1d4c876614a477f299ff0fe))
6
+ * fix typesVersions filesystem shimming ([c52cd53](https://github.com/Clarifai/clarifai-web-grpc/commit/c52cd537a6662e8b724cdd9448dbea01743aaf0d))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clarifai-web-grpc",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "The official Clarifai gRPC-web client",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.js",
@@ -12,8 +12,14 @@
12
12
  },
13
13
  "typesVersions": {
14
14
  "*": {
15
- "*": [
16
- "lib/*"
15
+ "index": [
16
+ "lib/index.d.ts"
17
+ ],
18
+ "resources": [
19
+ "lib/resources.d.ts"
20
+ ],
21
+ "service": [
22
+ "lib/service.d.ts"
17
23
  ]
18
24
  }
19
25
  },