clarifai-web-grpc 1.1.3 → 1.1.4

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 -3
  2. package/package.json +7 -1
package/CHANGELOG.md CHANGED
@@ -1,7 +1,6 @@
1
- ## [1.1.3](https://github.com/Clarifai/clarifai-web-grpc/compare/v1.1.2...v1.1.3) (2022-01-28)
1
+ ## [1.1.4](https://github.com/Clarifai/clarifai-web-grpc/compare/v1.1.3...v1.1.4) (2022-01-28)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * fix the paths in the lint cmd ([31e58c8](https://github.com/Clarifai/clarifai-web-grpc/commit/31e58c876dbc7414637b9608c42d3217be34a366))
7
- * move stuff to src, split dist/esm to lib for easier entry references ([a41e660](https://github.com/Clarifai/clarifai-web-grpc/commit/a41e660324233900339579696f97e8330bad4b31))
6
+ * improve exports ([74ec444](https://github.com/Clarifai/clarifai-web-grpc/commit/74ec444367c61c26a4ab9fd884cb295bbb124bf6))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clarifai-web-grpc",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "The official Clarifai gRPC-web client",
5
5
  "main": "dist/index.js",
6
6
  "module": "lib/index.js",
@@ -17,6 +17,12 @@
17
17
  "./service": {
18
18
  "import": "./lib/service.js",
19
19
  "require": "./dist/service.js"
20
+ },
21
+ "./lib/resources": {
22
+ "import": "./lib/resources.js"
23
+ },
24
+ "./lib/service": {
25
+ "import": "./lib/service.js"
20
26
  }
21
27
  },
22
28
  "repository": "https://github.com/Clarifai/clarifai-web-grpc",