@deephaven-enterprise/jsapi-types 1.20250219.132-beta → 1.20250219.133-beta

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/package.json +1 -1
  2. package/types/Iris.d.ts +14 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven-enterprise/jsapi-types",
3
- "version": "1.20250219.132-beta",
3
+ "version": "1.20250219.133-beta",
4
4
  "description": "Deephaven Enterprise Jsapi Types",
5
5
  "author": "Deephaven Data Labs LLC",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
package/types/Iris.d.ts CHANGED
@@ -638,9 +638,22 @@ export type QueryConstants = {
638
638
  };
639
639
 
640
640
  export interface EnterpriseClientConstructor {
641
- new (websocketUrl: string): EnterpriseClient;
641
+ new (websocketUrl: string, connectOptions?: ConnectOptions): EnterpriseClient;
642
642
  }
643
643
 
644
+ export interface ConnectOptions {
645
+ /**
646
+ * The transport factory to use for creating gRPC streams.
647
+ * <p>
648
+ * Defaults to null, indicating that the JS API should determine the appropriate transport to use.
649
+ */
650
+ transportFactory?: GrpcTransportFactory | null;
651
+ }
652
+
653
+ export type GrpcTransport = DhType.grpc.GrpcTransport;
654
+ export type GrpcTransportFactory = DhType.grpc.GrpcTransportFactory;
655
+ export type GrpcTransportOptions = DhType.grpc.GrpcTransportOptions;
656
+
644
657
  export interface IdeConstructor {
645
658
  new (client: EnterpriseClient): Ide;
646
659
  }