@deephaven-enterprise/jsapi-types 1.20250801.354-beta → 1.20250801.355-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 +1 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven-enterprise/jsapi-types",
3
- "version": "1.20250801.354-beta",
3
+ "version": "1.20250801.355-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
@@ -283,9 +283,7 @@ export interface ReplicaStatus {
283
283
  data: string;
284
284
  version?: number;
285
285
  }): Promise<void>;
286
- getObject(
287
- object: DhType.ide.VariableDescriptor
288
- ): Promise<DhType.ide.VariableDefinition>;
286
+ getObject<T = unknown>(object: DhType.ide.VariableDescriptor): Promise<T>;
289
287
  getTable(tableName: string): Promise<DhType.Table>;
290
288
  getTreeTable(tableName: string): Promise<DhType.TreeTable>;
291
289
  mergeTables(tables: DhType.Table[]): Promise<DhType.Table>;