@deephaven-enterprise/jsapi-types 1.20240723.53-beta-alpha-npm-test.2 → 1.20240723.62-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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven-enterprise/jsapi-types",
3
- "version": "1.20240723.53-beta-alpha-npm-test.2",
3
+ "version": "1.20240723.62-beta",
4
4
  "description": "Deephaven Enterprise Jsapi Types",
5
5
  "author": "Deephaven Data Labs LLC",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -80,7 +80,7 @@ export type QueryVariableDescriptor = dh.ide.VariableDescriptor & {
80
80
  */
81
81
  export type LegacyQueryVariableDescriptor = {
82
82
  querySerial: string;
83
- query: string;
83
+ query?: string;
84
84
  };
85
85
 
86
86
  /** In some cases such as a console panel, we may not have a descriptor but still want to fetch the deferred API. */
package/types/Iris.d.ts CHANGED
@@ -27,7 +27,7 @@ export interface TreeTable extends DhType.TreeTable {
27
27
  restoreExpandedState: (state: string) => void;
28
28
  }
29
29
 
30
- export interface BaseQueryInfo {
30
+ export type BaseQueryInfo = {
31
31
  adminGroups: readonly string[];
32
32
 
33
33
  dataMemoryRatio: number;
@@ -51,14 +51,14 @@ export interface BaseQueryInfo {
51
51
 
52
52
  timeout: number;
53
53
  type: string;
54
- typeSpecificFields: Record<string, { value: unknown }> | null;
54
+ typeSpecificFields: TypeSpecificFields | null;
55
55
  viewerGroups: readonly string[];
56
56
 
57
57
  replicaCount: number;
58
58
  spareCount: number;
59
59
  assignmentPolicy: string | null;
60
60
  assignmentPolicyParams: string | null;
61
- }
61
+ };
62
62
 
63
63
  export type BaseQueryInfoReadonly = Readonly<
64
64
  BaseQueryInfo & {
@@ -96,10 +96,8 @@ export type TypeSpecificFields<T extends string = string> = Record<
96
96
  >;
97
97
 
98
98
  export type EditableQueryInfo = BaseQueryInfo & {
99
- enableGcLogs: boolean;
100
99
  scriptCode: string;
101
100
  serial: string | null;
102
- typeSpecificFields: TypeSpecificFields | null;
103
101
 
104
102
  /**
105
103
  * Store the Kubernetes, Python, and Generic Worker Control values as string.