@deephaven-enterprise/jsapi-types 1.20240723.53-beta-alpha-npm-test.2 → 1.20240723.536-alpha-npm-publish.23386

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 +3 -2
  2. package/types/Iris.d.ts +3 -5
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.536-alpha-npm-publish.23386+75966764aa",
4
4
  "description": "Deephaven Enterprise Jsapi Types",
5
5
  "author": "Deephaven Data Labs LLC",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -21,5 +21,6 @@
21
21
  },
22
22
  "publishConfig": {
23
23
  "access": "public"
24
- }
24
+ },
25
+ "gitHead": "75966764aad5efa8cbcf8358c9034dc8c3572116"
25
26
  }
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.