@deephaven-enterprise/jsapi-types 1.20240723.147-beta → 1.20240723.150-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 +2 -2
- package/types/Iris.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven-enterprise/jsapi-types",
|
|
3
|
-
"version": "1.20240723.
|
|
3
|
+
"version": "1.20240723.150-beta",
|
|
4
4
|
"description": "Deephaven Enterprise Jsapi Types",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "2e95218fba68ad8a772d847d942d20abf6cd7274"
|
|
26
26
|
}
|
package/types/Iris.d.ts
CHANGED
|
@@ -85,6 +85,9 @@ export type BaseQueryInfoReadonly = Readonly<
|
|
|
85
85
|
*/
|
|
86
86
|
runningVersion: string;
|
|
87
87
|
serial: string;
|
|
88
|
+
/**
|
|
89
|
+
* @deprecated use `designated.status` instead
|
|
90
|
+
*/
|
|
88
91
|
status: string;
|
|
89
92
|
workerKind: string;
|
|
90
93
|
}
|
|
@@ -495,6 +498,7 @@ export interface IdeConstructor {
|
|
|
495
498
|
export interface Ide {
|
|
496
499
|
createConsole(config: ConsoleConfig): CancelablePromise<IdeConnection>;
|
|
497
500
|
startWorker(config: ConsoleConfig): CancelablePromise<DhcConnectionDetails>;
|
|
501
|
+
getQueryConnection(queryInfo: QueryInfo): Promise<IdeConnection>;
|
|
498
502
|
}
|
|
499
503
|
|
|
500
504
|
export type ConsoleServerAddressType = {
|