@apibara/protocol 2.0.0-beta.21 → 2.0.0-beta.23
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/dist/index.cjs +2 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
- package/src/client.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -183,6 +183,8 @@ exports.cursorFromBytes = config.cursorFromBytes;
|
|
|
183
183
|
exports.cursorFromProto = config.cursorFromProto;
|
|
184
184
|
exports.cursorToBytes = config.cursorToBytes;
|
|
185
185
|
exports.cursorToProto = config.cursorToProto;
|
|
186
|
+
exports.ClientError = niceGrpc.ClientError;
|
|
187
|
+
exports.Status = niceGrpc.Status;
|
|
186
188
|
exports.GrpcClient = GrpcClient;
|
|
187
189
|
exports.RateGauge = RateGauge;
|
|
188
190
|
exports.StatusRequest = StatusRequest;
|
package/dist/index.mjs
CHANGED
|
@@ -2,6 +2,7 @@ import { s as stream, t as testing, C as Cursor, D as DnaStreamDefinition, S as
|
|
|
2
2
|
export { B as Bytes, a as BytesFromUint8Array, e as CursorFromBytes, n as Data, h as DataFinality, i as Duration, F as Finalize, H as Heartbeat, I as Invalidate, l as StdErr, k as StdOut, o as StreamConfig, j as StreamDataRequest, m as SystemMessage, _ as _Cursor, c as createCursor, g as cursorFromBytes, d as cursorFromProto, f as cursorToBytes, b as cursorToProto } from './shared/protocol.d9596779.mjs';
|
|
3
3
|
import { Schema } from '@effect/schema';
|
|
4
4
|
import { createChannel, createClient as createClient$1 } from 'nice-grpc';
|
|
5
|
+
export { ClientError, Status } from 'nice-grpc';
|
|
5
6
|
import 'protobufjs/minimal.js';
|
|
6
7
|
import assert from 'node:assert';
|
|
7
8
|
import 'effect';
|
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
} from "./status";
|
|
22
22
|
import { type StreamDataRequest, StreamDataResponse } from "./stream";
|
|
23
23
|
|
|
24
|
-
export
|
|
24
|
+
export { ClientError, Status } from "nice-grpc";
|
|
25
25
|
|
|
26
26
|
/** Client call options. */
|
|
27
27
|
export interface ClientCallOptions {
|