Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@deephaven/jsapi-types

Package Overview
Dependencies
Maintainers
7
Versions
322
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deephaven/jsapi-types - npm Package Compare versions

Comparing version 0.59.1-beta.0 to 0.59.1-beta.3

21

dist/dh.types.d.ts

@@ -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 @@ }

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc