@deephaven-enterprise/jsapi-types 2026.1.2-- → 2026.1.4--
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 +17 -20
package/package.json
CHANGED
package/types/Iris.d.ts
CHANGED
|
@@ -90,19 +90,15 @@ export type BaseQueryInfoReadonly = Readonly<
|
|
|
90
90
|
/**
|
|
91
91
|
* @deprecated use `designated.grpcUrl` instead
|
|
92
92
|
*/
|
|
93
|
-
grpcUrl: string;
|
|
93
|
+
grpcUrl: string | null;
|
|
94
94
|
|
|
95
|
-
genericWorkerControl: string;
|
|
95
|
+
genericWorkerControl: string | null;
|
|
96
96
|
/**
|
|
97
97
|
* JSON encoded string of the kubernetes, python and generic controls
|
|
98
98
|
*/
|
|
99
|
-
kubernetesControl: string;
|
|
100
|
-
pythonControl: string;
|
|
99
|
+
kubernetesControl: string | null;
|
|
100
|
+
pythonControl: string | null;
|
|
101
101
|
|
|
102
|
-
/**
|
|
103
|
-
* @deprecated use `designated.runningVersion` instead
|
|
104
|
-
*/
|
|
105
|
-
runningVersion: string;
|
|
106
102
|
serial: string;
|
|
107
103
|
/**
|
|
108
104
|
* @deprecated use `designated.status` instead
|
|
@@ -260,23 +256,24 @@ export interface ReplicaStatus {
|
|
|
260
256
|
errorMessage: string | null;
|
|
261
257
|
shortCauses: string | null;
|
|
262
258
|
envoyPrefix: string | null;
|
|
259
|
+
// TODO should be nullable?;
|
|
263
260
|
grpcUrl: string;
|
|
264
261
|
jsApiUrl: string;
|
|
265
|
-
ideUrl: string;
|
|
262
|
+
ideUrl: string | null;
|
|
266
263
|
runningVersion: string;
|
|
267
264
|
websocketUrl: string | null;
|
|
268
265
|
numberFailures: number;
|
|
269
266
|
workerHost: string | null;
|
|
270
267
|
workerName: string | null;
|
|
271
|
-
communityPort: number
|
|
272
|
-
websocketPort: number
|
|
273
|
-
workerPort: number
|
|
268
|
+
communityPort: number;
|
|
269
|
+
websocketPort: number;
|
|
270
|
+
workerPort: number;
|
|
274
271
|
initStartTime: DhType.DateWrapper | null;
|
|
275
272
|
initEndTime: DhType.DateWrapper | null;
|
|
276
273
|
dispatcherHost: string | null;
|
|
277
|
-
dispatcherPort: number
|
|
274
|
+
dispatcherPort: number;
|
|
278
275
|
processInfoId: string | null;
|
|
279
|
-
lastModifiedByAuthenticated: string
|
|
276
|
+
lastModifiedByAuthenticated: string;
|
|
280
277
|
lastUpdateTime: DhType.DateWrapper | null;
|
|
281
278
|
getObject<T = unknown>(object: DhType.ide.VariableDescriptor): Promise<T>;
|
|
282
279
|
getTable(tableName: string): Promise<DhType.Table>;
|
|
@@ -331,15 +328,15 @@ export interface QueryInfo extends BaseQueryInfoReadonly {
|
|
|
331
328
|
/**
|
|
332
329
|
* @deprecated Use `designated.communityPort` instead
|
|
333
330
|
*/
|
|
334
|
-
communityPort: number
|
|
331
|
+
communityPort: number;
|
|
335
332
|
/**
|
|
336
333
|
* @deprecated Use `designated.websocketPort` instead
|
|
337
334
|
*/
|
|
338
|
-
websocketPort: number
|
|
335
|
+
websocketPort: number;
|
|
339
336
|
/**
|
|
340
337
|
* @deprecated Use `designated.workerPort` instead
|
|
341
338
|
*/
|
|
342
|
-
workerPort: number
|
|
339
|
+
workerPort: number;
|
|
343
340
|
/**
|
|
344
341
|
* @deprecated Use `designated.initStartTime` instead
|
|
345
342
|
*/
|
|
@@ -360,7 +357,7 @@ export interface QueryInfo extends BaseQueryInfoReadonly {
|
|
|
360
357
|
/**
|
|
361
358
|
* @deprecated Use `designated.lastModifiedByAuthenticated` instead
|
|
362
359
|
*/
|
|
363
|
-
lastModifiedByAuthenticated: string
|
|
360
|
+
lastModifiedByAuthenticated: string;
|
|
364
361
|
schedulingStartTime: string | null;
|
|
365
362
|
schedulingEndTime: string | null;
|
|
366
363
|
schedulingTimeZone: string | null;
|
|
@@ -372,7 +369,7 @@ export interface QueryInfo extends BaseQueryInfoReadonly {
|
|
|
372
369
|
getReplicaStatus(slot: number): ReplicaStatus | null;
|
|
373
370
|
|
|
374
371
|
/**
|
|
375
|
-
* @deprecated use `objects` instead
|
|
372
|
+
* @deprecated use `designated.objects` instead
|
|
376
373
|
*/
|
|
377
374
|
tables: readonly string[];
|
|
378
375
|
/**
|
|
@@ -517,7 +514,7 @@ export interface EnterpriseClient {
|
|
|
517
514
|
*/
|
|
518
515
|
saveQueries: (
|
|
519
516
|
queries: readonly PlainEditableQueryInfo[],
|
|
520
|
-
|
|
517
|
+
options: { idMode: 'NEW' | 'KEEP' | 'REPLACE' }
|
|
521
518
|
) => Promise<SaveQueriesResult>;
|
|
522
519
|
getAuthConfigValues(): Promise<string[][]>;
|
|
523
520
|
onConnected(timeout: number): Promise<void>;
|