@deephaven/jsapi-types
Advanced tools
Comparing version 0.59.1-beta.0 to 0.59.1-beta.3
@@ -135,3 +135,4 @@ export default dh; | ||
getTreeTable: (name: string) => Promise<TreeTable>; | ||
getObject: ((definition: VariableDefinition<typeof VariableType.TABLE>) => Promise<Table>) & ((definition: VariableDefinition<typeof VariableType.FIGURE>) => Promise<Figure>) & ((definition: VariableDefinition<typeof VariableType.TREETABLE>) => Promise<TreeTable>) & ((definition: VariableDefinition<typeof VariableType.HIERARCHICALTABLE>) => Promise<TreeTable>) & ((definition: VariableDefinition) => Promise<unknown>); | ||
getPartitionedTable: (name: string) => Promise<PartitionedTable>; | ||
getObject: ((definition: VariableDefinition<typeof VariableType.TABLE>) => Promise<Table>) & ((definition: VariableDefinition<typeof VariableType.FIGURE>) => Promise<Figure>) & ((definition: VariableDefinition<typeof VariableType.TREETABLE>) => Promise<TreeTable>) & ((definition: VariableDefinition<typeof VariableType.HIERARCHICALTABLE>) => Promise<TreeTable>) & ((definition: VariableDefinition<typeof VariableType.PARTITIONEDTABLE>) => Promise<PartitionedTable>) & ((definition: VariableDefinition) => Promise<unknown>); | ||
onLogMessage: (logHandler: (logItem: LogItem) => void) => () => void; | ||
@@ -725,2 +726,8 @@ runCode: (code: string) => Promise<CommandResult>; | ||
} | ||
export interface PartitionedTableStatic { | ||
readonly EVENT_KEYADDED: string; | ||
readonly EVENT_DISCONNECT: string; | ||
readonly EVENT_RECONNECT: string; | ||
readonly EVENT_RECONNECTFAILED: string; | ||
} | ||
export interface TreeTableStatic { | ||
@@ -749,2 +756,12 @@ readonly EVENT_UPDATED: string; | ||
} | ||
export interface PartitionedTable extends Evented, PartitionedTableStatic { | ||
readonly size: number; | ||
readonly columns: Column[]; | ||
readonly keyColumns: Column[]; | ||
getTable: (key: unknown) => Promise<Table>; | ||
getMergedTable: () => Promise<Table>; | ||
getKeys: () => Set<object>; | ||
getKeyTable: () => Promise<Table>; | ||
close: () => void; | ||
} | ||
export interface TreeTable extends TableTemplate<TreeTable>, TreeTableStatic { | ||
@@ -833,3 +850,3 @@ readonly isIncludeConstituents: boolean; | ||
disconnected: () => void; | ||
getObject: ((definition: VariableDefinition<typeof VariableType.TABLE>) => Promise<Table>) & ((definition: VariableDefinition<typeof VariableType.FIGURE>) => Promise<Figure>) & ((definition: VariableDefinition<typeof VariableType.TREETABLE>) => Promise<TreeTable>) & ((definition: VariableDefinition<typeof VariableType.HIERARCHICALTABLE>) => Promise<TreeTable>) & ((definition: VariableDefinition) => Promise<unknown>); | ||
getObject: ((definition: VariableDefinition<typeof VariableType.TABLE>) => Promise<Table>) & ((definition: VariableDefinition<typeof VariableType.FIGURE>) => Promise<Figure>) & ((definition: VariableDefinition<typeof VariableType.TREETABLE>) => Promise<TreeTable>) & ((definition: VariableDefinition<typeof VariableType.HIERARCHICALTABLE>) => Promise<TreeTable>) & ((definition: VariableDefinition<typeof VariableType.PARTITIONEDTABLE>) => Promise<PartitionedTable>) & ((definition: VariableDefinition) => Promise<unknown>); | ||
subscribeToFieldUpdates: (param: (changes: VariableChanges) => void) => () => void; | ||
@@ -836,0 +853,0 @@ } |
{ | ||
"name": "@deephaven/jsapi-types", | ||
"version": "0.59.1-beta.0+9d2fcaeb", | ||
"version": "0.59.1-beta.3+e8b9f121", | ||
"description": "Deephaven JSAPI Types", | ||
@@ -30,3 +30,3 @@ "author": "Deephaven Data Labs LLC", | ||
}, | ||
"gitHead": "9d2fcaeb5b6ffd624df9eab1cfea6ce0a183a803" | ||
"gitHead": "e8b9f121afaeb2c3dd6484a05ca1966a1d769260" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
110929
953