clarifai-web-grpc 1.0.1 → 1.0.2

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [1.0.1](https://github.com/Clarifai/clarifai-web-grpc/compare/v1.0.0...v1.0.1) (2022-01-05)
1
+ ## [1.0.2](https://github.com/Clarifai/clarifai-web-grpc/compare/v1.0.1...v1.0.2) (2022-01-05)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * re-export grpc-web error type for ease-of-use ([faf6d1a](https://github.com/Clarifai/clarifai-web-grpc/commit/faf6d1a573c943d0158013519ef0885a260e39e3))
6
+ * re-export more convenience types from grpc-web ([0b7b7df](https://github.com/Clarifai/clarifai-web-grpc/commit/0b7b7df06010d31c9c88d50a04accaf340e07a2f))
package/dist/index.d.ts CHANGED
@@ -3,4 +3,4 @@ export declare class ClarifaiStub {
3
3
  static grpc(hostname?: string): V2Client;
4
4
  }
5
5
  export { V2Client };
6
- export { Error } from 'grpc-web';
6
+ export { Error, Metadata, ClientReadableStream } from 'grpc-web';
package/dist/index.js CHANGED
@@ -5,3 +5,4 @@ export class ClarifaiStub {
5
5
  }
6
6
  }
7
7
  export { V2Client };
8
+ export { ClientReadableStream } from 'grpc-web';
package/index.ts CHANGED
@@ -8,4 +8,4 @@ export class ClarifaiStub {
8
8
 
9
9
  export { V2Client }
10
10
 
11
- export { Error } from 'grpc-web'
11
+ export { Error, Metadata, ClientReadableStream } from 'grpc-web'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clarifai-web-grpc",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "The official Clarifai gRPC-web client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",