@deephaven-enterprise/jsapi-types 1.20250219.132-beta → 1.20250219.134-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.
- package/package.json +1 -1
- package/types/Iris.d.ts +14 -1
package/package.json
CHANGED
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
|
}
|