2024-06-12 02:42:10 +02:00
|
|
|
// Copyright 2024, Command Line Inc.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2024-09-16 20:59:39 +02:00
|
|
|
// generated by cmd/generate/main-generatets.go
|
2024-06-12 02:42:10 +02:00
|
|
|
|
|
|
|
declare global {
|
2024-06-18 07:38:48 +02:00
|
|
|
|
2024-11-28 01:52:00 +01:00
|
|
|
// wshrpc.ActivityDisplayType
|
2024-11-20 04:41:53 +01:00
|
|
|
type ActivityDisplayType = {
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
dpr: number;
|
|
|
|
internal?: boolean;
|
|
|
|
};
|
|
|
|
|
2024-11-28 01:52:00 +01:00
|
|
|
// wshrpc.ActivityUpdate
|
2024-11-16 01:09:26 +01:00
|
|
|
type ActivityUpdate = {
|
|
|
|
fgminutes?: number;
|
|
|
|
activeminutes?: number;
|
|
|
|
openminutes?: number;
|
|
|
|
numtabs?: number;
|
|
|
|
newtab?: number;
|
|
|
|
numblocks?: number;
|
|
|
|
numwindows?: number;
|
|
|
|
numsshconn?: number;
|
|
|
|
numwslconn?: number;
|
|
|
|
nummagnify?: number;
|
2024-11-21 03:48:46 +01:00
|
|
|
numpanics?: number;
|
2024-11-16 01:09:26 +01:00
|
|
|
startup?: number;
|
|
|
|
shutdown?: number;
|
|
|
|
settabtheme?: number;
|
|
|
|
buildtime?: string;
|
2024-11-20 04:41:53 +01:00
|
|
|
displays?: ActivityDisplayType[];
|
2024-11-16 01:09:26 +01:00
|
|
|
renderers?: {[key: string]: number};
|
2024-11-26 03:07:29 +01:00
|
|
|
blocks?: {[key: string]: number};
|
2024-11-16 01:09:26 +01:00
|
|
|
wshcmds?: {[key: string]: number};
|
|
|
|
conn?: {[key: string]: number};
|
|
|
|
};
|
|
|
|
|
2024-11-09 01:34:50 +01:00
|
|
|
// wshrpc.AiMessageData
|
|
|
|
type AiMessageData = {
|
|
|
|
message?: string;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.Block
|
2024-06-12 02:42:10 +02:00
|
|
|
type Block = WaveObj & {
|
2024-10-24 07:47:29 +02:00
|
|
|
parentoref?: string;
|
2024-06-12 02:42:10 +02:00
|
|
|
runtimeopts?: RuntimeOpts;
|
2024-06-18 07:38:48 +02:00
|
|
|
stickers?: StickerType[];
|
2024-10-24 07:47:29 +02:00
|
|
|
subblockids?: string[];
|
2024-06-12 02:42:10 +02:00
|
|
|
};
|
|
|
|
|
2024-06-24 23:34:31 +02:00
|
|
|
// blockcontroller.BlockControllerRuntimeStatus
|
|
|
|
type BlockControllerRuntimeStatus = {
|
|
|
|
blockid: string;
|
|
|
|
shellprocstatus?: string;
|
2024-09-05 09:21:08 +02:00
|
|
|
shellprocconnname?: string;
|
2024-12-04 23:16:50 +01:00
|
|
|
shellprocexitcode: number;
|
2024-06-24 23:34:31 +02:00
|
|
|
};
|
2024-06-12 22:47:13 +02:00
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.BlockDef
|
2024-06-12 02:42:10 +02:00
|
|
|
type BlockDef = {
|
2024-06-18 07:38:48 +02:00
|
|
|
files?: {[key: string]: FileDef};
|
2024-06-12 02:42:10 +02:00
|
|
|
meta?: MetaType;
|
|
|
|
};
|
|
|
|
|
2024-09-18 08:10:09 +02:00
|
|
|
// wshrpc.BlockInfoData
|
|
|
|
type BlockInfoData = {
|
|
|
|
blockid: string;
|
|
|
|
tabid: string;
|
2024-12-02 19:56:56 +01:00
|
|
|
workspaceid: string;
|
2024-10-24 07:47:29 +02:00
|
|
|
block: Block;
|
2024-12-04 23:16:50 +01:00
|
|
|
files: WaveFile[];
|
2024-09-18 08:10:09 +02:00
|
|
|
};
|
|
|
|
|
2024-06-18 07:38:48 +02:00
|
|
|
// webcmd.BlockInputWSCommand
|
|
|
|
type BlockInputWSCommand = {
|
|
|
|
wscommand: "blockinput";
|
|
|
|
blockid: string;
|
|
|
|
inputdata64: string;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.Client
|
2024-06-12 02:42:10 +02:00
|
|
|
type Client = WaveObj & {
|
2024-06-20 04:10:53 +02:00
|
|
|
windowids: string[];
|
2024-07-30 20:44:19 +02:00
|
|
|
tosagreed?: number;
|
2024-09-26 00:52:12 +02:00
|
|
|
hasoldhistory?: boolean;
|
2024-11-21 03:48:46 +01:00
|
|
|
tempoid?: string;
|
2024-06-12 02:42:10 +02:00
|
|
|
};
|
|
|
|
|
2024-12-02 19:56:56 +01:00
|
|
|
// workspaceservice.CloseTabRtnType
|
2024-10-17 23:34:02 +02:00
|
|
|
type CloseTabRtnType = {
|
|
|
|
closewindow?: boolean;
|
|
|
|
newactivetabid?: string;
|
|
|
|
};
|
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// wshrpc.CommandAppendIJsonData
|
|
|
|
type CommandAppendIJsonData = {
|
|
|
|
zoneid: string;
|
|
|
|
filename: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
data: {[key: string]: any};
|
2024-07-18 00:24:43 +02:00
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// wshrpc.CommandAuthenticateRtnData
|
|
|
|
type CommandAuthenticateRtnData = {
|
|
|
|
routeid: string;
|
2024-10-24 07:43:17 +02:00
|
|
|
authtoken?: string;
|
2024-08-20 23:56:48 +02:00
|
|
|
};
|
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// wshrpc.CommandBlockInputData
|
|
|
|
type CommandBlockInputData = {
|
|
|
|
blockid: string;
|
|
|
|
inputdata64?: string;
|
|
|
|
signame?: string;
|
|
|
|
termsize?: TermSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.CommandBlockSetViewData
|
|
|
|
type CommandBlockSetViewData = {
|
|
|
|
blockid: string;
|
|
|
|
view: string;
|
|
|
|
};
|
|
|
|
|
2024-09-05 09:21:08 +02:00
|
|
|
// wshrpc.CommandControllerResyncData
|
|
|
|
type CommandControllerResyncData = {
|
|
|
|
forcerestart?: boolean;
|
|
|
|
tabid: string;
|
|
|
|
blockid: string;
|
|
|
|
rtopts?: RuntimeOpts;
|
|
|
|
};
|
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// wshrpc.CommandCreateBlockData
|
|
|
|
type CommandCreateBlockData = {
|
2024-06-21 19:23:04 +02:00
|
|
|
tabid: string;
|
2024-06-20 22:03:50 +02:00
|
|
|
blockdef: BlockDef;
|
2024-08-21 05:14:14 +02:00
|
|
|
rtopts?: RuntimeOpts;
|
|
|
|
magnified?: boolean;
|
2024-06-20 22:03:50 +02:00
|
|
|
};
|
|
|
|
|
2024-10-24 07:47:29 +02:00
|
|
|
// wshrpc.CommandCreateSubBlockData
|
|
|
|
type CommandCreateSubBlockData = {
|
|
|
|
parentblockid: string;
|
|
|
|
blockdef: BlockDef;
|
|
|
|
};
|
|
|
|
|
2024-07-19 03:13:59 +02:00
|
|
|
// wshrpc.CommandDeleteBlockData
|
|
|
|
type CommandDeleteBlockData = {
|
|
|
|
blockid: string;
|
|
|
|
};
|
|
|
|
|
2024-10-24 07:43:17 +02:00
|
|
|
// wshrpc.CommandDisposeData
|
|
|
|
type CommandDisposeData = {
|
|
|
|
routeid: string;
|
|
|
|
};
|
|
|
|
|
2024-08-30 20:33:04 +02:00
|
|
|
// wshrpc.CommandEventReadHistoryData
|
|
|
|
type CommandEventReadHistoryData = {
|
|
|
|
event: string;
|
|
|
|
scope: string;
|
|
|
|
maxitems: number;
|
|
|
|
};
|
|
|
|
|
2024-11-20 02:20:47 +01:00
|
|
|
// wshrpc.CommandFileCreateData
|
|
|
|
type CommandFileCreateData = {
|
|
|
|
zoneid: string;
|
|
|
|
filename: string;
|
|
|
|
meta?: {[key: string]: any};
|
|
|
|
opts?: FileOptsType;
|
|
|
|
};
|
|
|
|
|
2024-07-23 22:16:53 +02:00
|
|
|
// wshrpc.CommandFileData
|
|
|
|
type CommandFileData = {
|
|
|
|
zoneid: string;
|
|
|
|
filename: string;
|
|
|
|
data64?: string;
|
2024-11-20 02:20:47 +01:00
|
|
|
at?: CommandFileDataAt;
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.CommandFileDataAt
|
|
|
|
type CommandFileDataAt = {
|
|
|
|
offset: number;
|
|
|
|
size?: number;
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.CommandFileListData
|
|
|
|
type CommandFileListData = {
|
|
|
|
zoneid: string;
|
|
|
|
prefix?: string;
|
|
|
|
all?: boolean;
|
|
|
|
offset?: number;
|
|
|
|
limit?: number;
|
2024-07-23 22:16:53 +02:00
|
|
|
};
|
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// wshrpc.CommandGetMetaData
|
|
|
|
type CommandGetMetaData = {
|
|
|
|
oref: ORef;
|
2024-06-24 23:34:31 +02:00
|
|
|
};
|
2024-06-22 09:41:49 +02:00
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// wshrpc.CommandMessageData
|
|
|
|
type CommandMessageData = {
|
|
|
|
oref: ORef;
|
|
|
|
message: string;
|
|
|
|
};
|
|
|
|
|
2024-08-12 19:58:39 +02:00
|
|
|
// wshrpc.CommandRemoteStreamFileData
|
|
|
|
type CommandRemoteStreamFileData = {
|
|
|
|
path: string;
|
|
|
|
byterange?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.CommandRemoteStreamFileRtnData
|
|
|
|
type CommandRemoteStreamFileRtnData = {
|
2024-08-19 20:02:40 +02:00
|
|
|
fileinfo?: FileInfo[];
|
2024-08-12 19:58:39 +02:00
|
|
|
data64?: string;
|
|
|
|
};
|
|
|
|
|
2024-08-14 03:36:11 +02:00
|
|
|
// wshrpc.CommandRemoteWriteFileData
|
|
|
|
type CommandRemoteWriteFileData = {
|
|
|
|
path: string;
|
|
|
|
data64: string;
|
|
|
|
createmode?: number;
|
|
|
|
};
|
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// wshrpc.CommandResolveIdsData
|
|
|
|
type CommandResolveIdsData = {
|
2024-08-14 01:52:35 +02:00
|
|
|
blockid: string;
|
2024-07-18 00:24:43 +02:00
|
|
|
ids: string[];
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.CommandResolveIdsRtnData
|
|
|
|
type CommandResolveIdsRtnData = {
|
|
|
|
resolvedids: {[key: string]: ORef};
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.CommandSetMetaData
|
|
|
|
type CommandSetMetaData = {
|
|
|
|
oref: ORef;
|
|
|
|
meta: MetaType;
|
|
|
|
};
|
|
|
|
|
2024-11-20 02:20:47 +01:00
|
|
|
// wshrpc.CommandVarData
|
|
|
|
type CommandVarData = {
|
|
|
|
key: string;
|
|
|
|
val?: string;
|
|
|
|
remove?: boolean;
|
|
|
|
zoneid: string;
|
|
|
|
filename: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.CommandVarResponseData
|
|
|
|
type CommandVarResponseData = {
|
|
|
|
key: string;
|
|
|
|
val: string;
|
|
|
|
exists: boolean;
|
|
|
|
};
|
|
|
|
|
2024-10-24 07:47:29 +02:00
|
|
|
// wshrpc.CommandWaitForRouteData
|
|
|
|
type CommandWaitForRouteData = {
|
|
|
|
routeid: string;
|
|
|
|
waitms: number;
|
|
|
|
};
|
|
|
|
|
2024-09-18 08:10:09 +02:00
|
|
|
// wshrpc.CommandWebSelectorData
|
|
|
|
type CommandWebSelectorData = {
|
2024-12-02 19:56:56 +01:00
|
|
|
workspaceid: string;
|
2024-09-18 08:10:09 +02:00
|
|
|
blockid: string;
|
|
|
|
tabid: string;
|
|
|
|
selector: string;
|
|
|
|
opts?: WebSelectorOpts;
|
|
|
|
};
|
|
|
|
|
2024-08-28 03:49:49 +02:00
|
|
|
// wconfig.ConfigError
|
|
|
|
type ConfigError = {
|
|
|
|
file: string;
|
|
|
|
err: string;
|
|
|
|
};
|
|
|
|
|
2024-11-28 01:52:00 +01:00
|
|
|
// wshrpc.ConnKeywords
|
|
|
|
type ConnKeywords = {
|
|
|
|
wshenabled?: boolean;
|
|
|
|
askbeforewshinstall?: boolean;
|
|
|
|
"ssh:user"?: string;
|
|
|
|
"ssh:hostname"?: string;
|
|
|
|
"ssh:port"?: string;
|
|
|
|
"ssh:identityfile"?: string[];
|
|
|
|
"ssh:batchmode"?: boolean;
|
|
|
|
"ssh:pubkeyauthentication"?: boolean;
|
|
|
|
"ssh:passwordauthentication"?: boolean;
|
|
|
|
"ssh:kbdinteractiveauthentication"?: boolean;
|
|
|
|
"ssh:preferredauthentications"?: string[];
|
|
|
|
"ssh:addkeystoagent"?: boolean;
|
|
|
|
"ssh:identityagent"?: string;
|
|
|
|
"ssh:proxyjump"?: string[];
|
|
|
|
"ssh:userknownhostsfile"?: string[];
|
|
|
|
"ssh:globalknownhostsfile"?: string[];
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.ConnRequest
|
|
|
|
type ConnRequest = {
|
|
|
|
host: string;
|
|
|
|
keywords?: ConnKeywords;
|
|
|
|
};
|
|
|
|
|
2024-08-24 03:12:40 +02:00
|
|
|
// wshrpc.ConnStatus
|
|
|
|
type ConnStatus = {
|
|
|
|
status: string;
|
2024-11-28 01:52:00 +01:00
|
|
|
wshenabled: boolean;
|
2024-08-24 03:12:40 +02:00
|
|
|
connection: string;
|
|
|
|
connected: boolean;
|
2024-09-04 07:15:02 +02:00
|
|
|
hasconnected: boolean;
|
2024-09-06 08:09:30 +02:00
|
|
|
activeconnnum: number;
|
2024-08-24 03:12:40 +02:00
|
|
|
error?: string;
|
|
|
|
};
|
|
|
|
|
2024-07-31 23:13:36 +02:00
|
|
|
// wshrpc.CpuDataRequest
|
|
|
|
type CpuDataRequest = {
|
|
|
|
id: string;
|
2024-08-01 09:57:06 +02:00
|
|
|
count: number;
|
2024-07-31 23:13:36 +02:00
|
|
|
};
|
|
|
|
|
2024-10-17 23:50:36 +02:00
|
|
|
// vdom.DomRect
|
|
|
|
type DomRect = {
|
|
|
|
top: number;
|
|
|
|
left: number;
|
|
|
|
right: number;
|
|
|
|
bottom: number;
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.FileDef
|
2024-06-12 02:42:10 +02:00
|
|
|
type FileDef = {
|
|
|
|
content?: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
meta?: {[key: string]: any};
|
2024-06-12 02:42:10 +02:00
|
|
|
};
|
|
|
|
|
2024-08-12 19:58:39 +02:00
|
|
|
// wshrpc.FileInfo
|
2024-06-12 02:42:10 +02:00
|
|
|
type FileInfo = {
|
|
|
|
path: string;
|
2024-09-03 01:48:10 +02:00
|
|
|
dir: string;
|
2024-06-27 21:30:08 +02:00
|
|
|
name: string;
|
2024-06-12 02:42:10 +02:00
|
|
|
notfound?: boolean;
|
|
|
|
size: number;
|
|
|
|
mode: number;
|
2024-06-24 23:34:31 +02:00
|
|
|
modestr: string;
|
2024-06-12 02:42:10 +02:00
|
|
|
modtime: number;
|
|
|
|
isdir?: boolean;
|
|
|
|
mimetype?: string;
|
2024-09-03 01:48:10 +02:00
|
|
|
readonly?: boolean;
|
2024-06-12 02:42:10 +02:00
|
|
|
};
|
|
|
|
|
2024-06-18 07:38:48 +02:00
|
|
|
// filestore.FileOptsType
|
|
|
|
type FileOptsType = {
|
|
|
|
maxsize?: number;
|
|
|
|
circular?: boolean;
|
|
|
|
ijson?: boolean;
|
|
|
|
ijsonbudget?: number;
|
|
|
|
};
|
|
|
|
|
2024-08-28 03:49:49 +02:00
|
|
|
// wconfig.FullConfigType
|
|
|
|
type FullConfigType = {
|
|
|
|
settings: SettingsType;
|
|
|
|
mimetypes: {[key: string]: MimeTypeConfigType};
|
2024-11-28 01:52:00 +01:00
|
|
|
defaultwidgets: {[key: string]: WidgetConfigType};
|
2024-08-28 03:49:49 +02:00
|
|
|
widgets: {[key: string]: WidgetConfigType};
|
|
|
|
presets: {[key: string]: MetaType};
|
|
|
|
termthemes: {[key: string]: TermThemeType};
|
2024-11-28 01:52:00 +01:00
|
|
|
connections: {[key: string]: ConnKeywords};
|
2024-08-28 03:49:49 +02:00
|
|
|
configerrors: ConfigError[];
|
|
|
|
};
|
|
|
|
|
2024-06-12 02:42:10 +02:00
|
|
|
// fileservice.FullFile
|
|
|
|
type FullFile = {
|
|
|
|
info: FileInfo;
|
|
|
|
data64: string;
|
|
|
|
};
|
|
|
|
|
2024-08-27 00:17:37 +02:00
|
|
|
// waveobj.LayoutActionData
|
|
|
|
type LayoutActionData = {
|
|
|
|
actiontype: string;
|
|
|
|
blockid: string;
|
|
|
|
nodesize?: number;
|
|
|
|
indexarr?: number[];
|
2024-08-28 08:16:07 +02:00
|
|
|
focused: boolean;
|
|
|
|
magnified: boolean;
|
2024-08-27 00:17:37 +02:00
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.LayoutState
|
2024-08-15 03:40:41 +02:00
|
|
|
type LayoutState = WaveObj & {
|
|
|
|
rootnode?: any;
|
2024-07-30 19:59:53 +02:00
|
|
|
magnifiednodeid?: string;
|
2024-08-26 20:56:00 +02:00
|
|
|
focusednodeid?: string;
|
2024-08-31 05:20:25 +02:00
|
|
|
leaforder?: LeafOrderEntry[];
|
2024-08-28 03:38:57 +02:00
|
|
|
pendingbackendactions?: LayoutActionData[];
|
2024-06-12 02:42:10 +02:00
|
|
|
};
|
|
|
|
|
2024-08-31 05:20:25 +02:00
|
|
|
// waveobj.LeafOrderEntry
|
|
|
|
type LeafOrderEntry = {
|
|
|
|
nodeid: string;
|
|
|
|
blockid: string;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.MetaTSType
|
2024-07-30 21:33:28 +02:00
|
|
|
type MetaType = {
|
|
|
|
view?: string;
|
|
|
|
controller?: string;
|
|
|
|
file?: string;
|
|
|
|
url?: string;
|
2024-10-08 02:20:18 +02:00
|
|
|
pinnedurl?: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
connection?: string;
|
2024-08-30 22:56:53 +02:00
|
|
|
edit?: boolean;
|
2024-08-20 07:07:35 +02:00
|
|
|
history?: string[];
|
|
|
|
"history:forward"?: string[];
|
2024-08-28 03:49:49 +02:00
|
|
|
"display:name"?: string;
|
|
|
|
"display:order"?: number;
|
2024-07-30 21:33:28 +02:00
|
|
|
icon?: string;
|
|
|
|
"icon:color"?: string;
|
|
|
|
"frame:*"?: boolean;
|
2024-10-10 00:16:35 +02:00
|
|
|
frame?: boolean;
|
2024-07-30 21:33:28 +02:00
|
|
|
"frame:bordercolor"?: string;
|
2024-10-31 20:34:30 +01:00
|
|
|
"frame:activebordercolor"?: string;
|
2024-10-07 07:08:26 +02:00
|
|
|
"frame:title"?: string;
|
|
|
|
"frame:icon"?: string;
|
|
|
|
"frame:text"?: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
"cmd:*"?: boolean;
|
2024-10-10 00:16:35 +02:00
|
|
|
cmd?: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
"cmd:interactive"?: boolean;
|
|
|
|
"cmd:login"?: boolean;
|
|
|
|
"cmd:runonstart"?: boolean;
|
|
|
|
"cmd:clearonstart"?: boolean;
|
2024-12-04 23:16:50 +01:00
|
|
|
"cmd:runonce"?: boolean;
|
|
|
|
"cmd:closeonexit"?: boolean;
|
|
|
|
"cmd:closeonexitforce"?: boolean;
|
|
|
|
"cmd:closeonexitdelay"?: number;
|
2024-07-30 21:33:28 +02:00
|
|
|
"cmd:env"?: {[key: string]: string};
|
|
|
|
"cmd:cwd"?: string;
|
|
|
|
"cmd:nowsh"?: boolean;
|
2024-12-04 23:16:50 +01:00
|
|
|
"cmd:args"?: string[];
|
|
|
|
"cmd:shell"?: boolean;
|
2024-10-10 00:16:35 +02:00
|
|
|
"ai:*"?: boolean;
|
2024-10-13 00:40:14 +02:00
|
|
|
"ai:preset"?: string;
|
2024-10-10 00:16:35 +02:00
|
|
|
"ai:apitype"?: string;
|
|
|
|
"ai:baseurl"?: string;
|
|
|
|
"ai:apitoken"?: string;
|
|
|
|
"ai:name"?: string;
|
|
|
|
"ai:model"?: string;
|
|
|
|
"ai:orgid"?: string;
|
|
|
|
"ai:apiversion"?: string;
|
|
|
|
"ai:maxtokens"?: number;
|
|
|
|
"ai:timeoutms"?: number;
|
2024-10-31 20:34:30 +01:00
|
|
|
"editor:*"?: boolean;
|
2024-12-04 23:16:50 +01:00
|
|
|
"editor:minimapenabled"?: boolean;
|
|
|
|
"editor:stickyscrollenabled"?: boolean;
|
2024-10-31 20:34:30 +01:00
|
|
|
"editor:wordwrap"?: boolean;
|
2024-08-30 20:33:04 +02:00
|
|
|
"graph:*"?: boolean;
|
|
|
|
"graph:numpoints"?: number;
|
|
|
|
"graph:metrics"?: string[];
|
2024-10-18 00:19:13 +02:00
|
|
|
"sysinfo:type"?: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
"bg:*"?: boolean;
|
2024-10-10 00:16:35 +02:00
|
|
|
bg?: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
"bg:opacity"?: number;
|
|
|
|
"bg:blendmode"?: string;
|
2024-10-31 20:34:30 +01:00
|
|
|
"bg:bordercolor"?: string;
|
|
|
|
"bg:activebordercolor"?: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
"term:*"?: boolean;
|
|
|
|
"term:fontsize"?: number;
|
|
|
|
"term:fontfamily"?: string;
|
|
|
|
"term:mode"?: string;
|
|
|
|
"term:theme"?: string;
|
2024-09-27 00:34:52 +02:00
|
|
|
"term:localshellpath"?: string;
|
2024-10-01 06:19:07 +02:00
|
|
|
"term:localshellopts"?: string[];
|
2024-10-07 18:51:23 +02:00
|
|
|
"term:scrollback"?: number;
|
2024-10-24 07:47:29 +02:00
|
|
|
"term:vdomblockid"?: string;
|
2024-11-11 22:11:09 +01:00
|
|
|
"term:vdomtoolbarblockid"?: string;
|
2024-10-17 23:50:36 +02:00
|
|
|
"vdom:*"?: boolean;
|
|
|
|
"vdom:initialized"?: boolean;
|
|
|
|
"vdom:correlationid"?: string;
|
2024-10-24 07:47:29 +02:00
|
|
|
"vdom:route"?: string;
|
|
|
|
"vdom:persist"?: boolean;
|
2024-08-01 09:57:06 +02:00
|
|
|
count?: number;
|
2024-07-30 21:33:28 +02:00
|
|
|
};
|
2024-06-12 02:42:10 +02:00
|
|
|
|
2024-06-12 22:47:13 +02:00
|
|
|
// tsgenmeta.MethodMeta
|
2024-06-12 02:42:10 +02:00
|
|
|
type MethodMeta = {
|
|
|
|
Desc: string;
|
|
|
|
ArgNames: string[];
|
|
|
|
ReturnDesc: string;
|
|
|
|
};
|
|
|
|
|
2024-06-24 23:34:31 +02:00
|
|
|
// wconfig.MimeTypeConfigType
|
|
|
|
type MimeTypeConfigType = {
|
|
|
|
icon: string;
|
2024-06-26 21:14:59 +02:00
|
|
|
color: string;
|
2024-06-24 23:34:31 +02:00
|
|
|
};
|
2024-06-22 09:41:49 +02:00
|
|
|
|
2024-06-12 02:42:10 +02:00
|
|
|
// waveobj.ORef
|
2024-07-18 00:24:43 +02:00
|
|
|
type ORef = string;
|
2024-06-12 02:42:10 +02:00
|
|
|
|
2024-07-26 22:30:11 +02:00
|
|
|
// wshrpc.OpenAIOptsType
|
2024-07-25 11:30:49 +02:00
|
|
|
type OpenAIOptsType = {
|
|
|
|
model: string;
|
2024-10-09 22:36:02 +02:00
|
|
|
apitype?: string;
|
2024-07-25 11:30:49 +02:00
|
|
|
apitoken: string;
|
2024-10-09 22:36:02 +02:00
|
|
|
orgid?: string;
|
|
|
|
apiversion?: string;
|
2024-07-25 11:30:49 +02:00
|
|
|
baseurl?: string;
|
|
|
|
maxtokens?: number;
|
|
|
|
maxchoices?: number;
|
2024-10-09 22:36:02 +02:00
|
|
|
timeoutms?: number;
|
2024-07-25 11:30:49 +02:00
|
|
|
};
|
|
|
|
|
2024-07-26 22:30:11 +02:00
|
|
|
// wshrpc.OpenAIPacketType
|
2024-07-25 11:30:49 +02:00
|
|
|
type OpenAIPacketType = {
|
|
|
|
type: string;
|
|
|
|
model?: string;
|
|
|
|
created?: number;
|
|
|
|
finish_reason?: string;
|
|
|
|
usage?: OpenAIUsageType;
|
|
|
|
index?: number;
|
|
|
|
text?: string;
|
|
|
|
error?: string;
|
|
|
|
};
|
|
|
|
|
2024-07-26 22:30:11 +02:00
|
|
|
// wshrpc.OpenAIPromptMessageType
|
2024-07-25 11:30:49 +02:00
|
|
|
type OpenAIPromptMessageType = {
|
|
|
|
role: string;
|
|
|
|
content: string;
|
|
|
|
name?: string;
|
|
|
|
};
|
|
|
|
|
2024-07-26 22:30:11 +02:00
|
|
|
// wshrpc.OpenAIUsageType
|
2024-07-25 11:30:49 +02:00
|
|
|
type OpenAIUsageType = {
|
|
|
|
prompt_tokens?: number;
|
|
|
|
completion_tokens?: number;
|
|
|
|
total_tokens?: number;
|
|
|
|
};
|
|
|
|
|
2024-07-26 22:30:11 +02:00
|
|
|
// wshrpc.OpenAiStreamRequest
|
2024-07-25 11:30:49 +02:00
|
|
|
type OpenAiStreamRequest = {
|
|
|
|
clientid?: string;
|
|
|
|
opts: OpenAIOptsType;
|
|
|
|
prompt: OpenAIPromptMessageType[];
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.Point
|
2024-06-12 02:42:10 +02:00
|
|
|
type Point = {
|
|
|
|
x: number;
|
|
|
|
y: number;
|
|
|
|
};
|
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// wshutil.RpcMessage
|
|
|
|
type RpcMessage = {
|
|
|
|
command?: string;
|
|
|
|
reqid?: string;
|
|
|
|
resid?: string;
|
|
|
|
timeout?: number;
|
2024-08-14 01:52:35 +02:00
|
|
|
route?: string;
|
2024-10-24 07:43:17 +02:00
|
|
|
authtoken?: string;
|
2024-08-14 01:52:35 +02:00
|
|
|
source?: string;
|
2024-07-18 00:24:43 +02:00
|
|
|
cont?: boolean;
|
2024-07-19 00:56:04 +02:00
|
|
|
cancel?: boolean;
|
2024-07-18 00:24:43 +02:00
|
|
|
error?: string;
|
|
|
|
datatype?: string;
|
|
|
|
data?: any;
|
|
|
|
};
|
|
|
|
|
2024-08-14 01:52:35 +02:00
|
|
|
// wshrpc.RpcOpts
|
|
|
|
type RpcOpts = {
|
|
|
|
timeout?: number;
|
|
|
|
noresponse?: boolean;
|
|
|
|
route?: string;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.RuntimeOpts
|
2024-06-12 02:42:10 +02:00
|
|
|
type RuntimeOpts = {
|
|
|
|
termsize?: TermSize;
|
|
|
|
winsize?: WinSize;
|
|
|
|
};
|
|
|
|
|
2024-06-12 23:18:03 +02:00
|
|
|
// webcmd.SetBlockTermSizeWSCommand
|
|
|
|
type SetBlockTermSizeWSCommand = {
|
|
|
|
wscommand: "setblocktermsize";
|
|
|
|
blockid: string;
|
|
|
|
termsize: TermSize;
|
|
|
|
};
|
|
|
|
|
2024-08-28 03:49:49 +02:00
|
|
|
// wconfig.SettingsType
|
|
|
|
type SettingsType = {
|
|
|
|
"ai:*"?: boolean;
|
2024-10-13 00:40:14 +02:00
|
|
|
"ai:preset"?: string;
|
2024-10-09 22:36:02 +02:00
|
|
|
"ai:apitype"?: string;
|
2024-08-28 03:49:49 +02:00
|
|
|
"ai:baseurl"?: string;
|
|
|
|
"ai:apitoken"?: string;
|
|
|
|
"ai:name"?: string;
|
|
|
|
"ai:model"?: string;
|
2024-10-09 22:36:02 +02:00
|
|
|
"ai:orgid"?: string;
|
|
|
|
"ai:apiversion"?: string;
|
2024-08-28 03:49:49 +02:00
|
|
|
"ai:maxtokens"?: number;
|
|
|
|
"ai:timeoutms"?: number;
|
|
|
|
"term:*"?: boolean;
|
|
|
|
"term:fontsize"?: number;
|
|
|
|
"term:fontfamily"?: string;
|
2024-10-07 23:08:57 +02:00
|
|
|
"term:theme"?: string;
|
2024-08-28 03:49:49 +02:00
|
|
|
"term:disablewebgl"?: boolean;
|
2024-09-27 00:34:52 +02:00
|
|
|
"term:localshellpath"?: string;
|
2024-10-01 06:19:07 +02:00
|
|
|
"term:localshellopts"?: string[];
|
2024-10-07 18:51:23 +02:00
|
|
|
"term:scrollback"?: number;
|
2024-10-14 19:05:38 +02:00
|
|
|
"term:copyonselect"?: boolean;
|
2024-09-04 23:00:29 +02:00
|
|
|
"editor:minimapenabled"?: boolean;
|
2024-09-05 08:08:56 +02:00
|
|
|
"editor:stickyscrollenabled"?: boolean;
|
2024-12-04 23:16:50 +01:00
|
|
|
"editor:wordwrap"?: boolean;
|
2024-08-28 03:49:49 +02:00
|
|
|
"web:*"?: boolean;
|
|
|
|
"web:openlinksinternally"?: boolean;
|
2024-09-20 20:24:37 +02:00
|
|
|
"web:defaulturl"?: string;
|
|
|
|
"web:defaultsearch"?: string;
|
2024-08-28 03:49:49 +02:00
|
|
|
"blockheader:*"?: boolean;
|
|
|
|
"blockheader:showblockids"?: boolean;
|
|
|
|
"autoupdate:*"?: boolean;
|
|
|
|
"autoupdate:enabled"?: boolean;
|
|
|
|
"autoupdate:intervalms"?: number;
|
|
|
|
"autoupdate:installonquit"?: boolean;
|
Add release channels (#385)
## New release flow
1. Run "Bump Version" workflow with the desired version bump and the
prerelease flag set to `true`. This will push a new version bump to the
target branch and create a new git tag.
- See below for more info on how the version bumping works.
2. A new "Build Helper" workflow run will kick off automatically for the
new tag. Once it is complete, test the new build locally by downloading
with the [download
script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh).
3. Release the new build using the [publish
script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh).
This will trigger electron-updater to distribute the package to beta
users.
4. Run "Bump Version" again with a release bump (either `major`,
`minor`, or `patch`) and the prerelease flag set to `false`.
6. Release the new build to all channels using the [publish
script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh).
This will trigger electron-updater to distribute the package to all
users.
## Change Summary
Creates a new "Bump Version" workflow to manage versioning and tag
creation.
Build Helper is now automated.
### Version bumps
Updates the `version.cjs` script so that an argument can be passed to
trigger a version bump. Under the hood, this utilizes NPM's `semver`
package.
If arguments are present, the version will be bumped.
If only a single argument is given, the following are valid inputs:
- `none`: No-op.
- `patch`: Bumps the patch version.
- `minor`: Bumps the minor version.
- `major`: Bumps the major version.
- '1', 'true': Bumps the prerelease version.
If two arguments are given, the first argument must be either `none`,
`patch`, `minor`, or `major`. The second argument must be `1` or `true`
to bump the prerelease version.
### electron-builder
We are now using the release channels support in electron-builder. This
will automatically detect the channel being built based on the package
version to determine which channel update files need to be generated.
See
[here](https://www.electron.build/tutorials/release-using-channels.html)
for more information.
### Github Actions
#### Bump Version
This adds a new "Bump Version" workflow for managing versioning and
queuing new builds. When run, this workflow will bump the version,
create a new tag, and push the changes to the target branch. There is a
new dropdown when queuing the "Bump Version" workflow to select what
kind of version bump to perform. A bump must always be performed when
running a new build to ensure consistency.
I had to create a GitHub App to grant write permissions to our main
branch for the version bump commits. I've made a separate workflow file
to manage the version bump commits, which should help prevent tampering.
Thanks to using the GitHub API directly, I am able to make these commits
signed!
#### Build Helper
Build Helper is now triggered when new tags are created, rather than
being triggered automatically. This ensures we're always creating
artifacts from known checkpoints.
### Settings
Adds a new `autoupdate:channel` configuration to the settings file. If
unset, the default from the artifact will be used (should correspond to
the channel of the artifact when downloaded).
## Future Work
I want to add a release workflow that will automatically copy over the
corresponding version artifacts to the release bucket when a new GitHub
Release is created.
I also want to separate versions into separate subdirectories in the
release bucket so we can clean them up more-easily.
---------
Co-authored-by: wave-builder <builds@commandline.dev>
Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 22:10:35 +02:00
|
|
|
"autoupdate:channel"?: string;
|
2024-10-07 23:08:57 +02:00
|
|
|
"preview:showhiddenfiles"?: boolean;
|
2024-08-28 03:49:49 +02:00
|
|
|
"widget:*"?: boolean;
|
|
|
|
"widget:showhelp"?: boolean;
|
|
|
|
"window:*"?: boolean;
|
|
|
|
"window:transparent"?: boolean;
|
|
|
|
"window:blur"?: boolean;
|
|
|
|
"window:opacity"?: number;
|
|
|
|
"window:bgcolor"?: string;
|
|
|
|
"window:reducedmotion"?: boolean;
|
2024-09-05 20:19:52 +02:00
|
|
|
"window:tilegapsize"?: number;
|
2024-10-10 19:12:42 +02:00
|
|
|
"window:showmenubar"?: boolean;
|
2024-09-25 07:05:38 +02:00
|
|
|
"window:nativetitlebar"?: boolean;
|
2024-09-25 19:08:15 +02:00
|
|
|
"window:disablehardwareacceleration"?: boolean;
|
2024-10-17 23:34:02 +02:00
|
|
|
"window:maxtabcachesize"?: number;
|
2024-11-18 23:41:09 +01:00
|
|
|
"window:magnifiedblockopacity"?: number;
|
|
|
|
"window:magnifiedblocksize"?: number;
|
|
|
|
"window:magnifiedblockblurprimarypx"?: number;
|
|
|
|
"window:magnifiedblockblursecondarypx"?: number;
|
2024-08-28 03:49:49 +02:00
|
|
|
"telemetry:*"?: boolean;
|
|
|
|
"telemetry:enabled"?: boolean;
|
2024-10-11 02:23:27 +02:00
|
|
|
"conn:*"?: boolean;
|
|
|
|
"conn:askbeforewshinstall"?: boolean;
|
2024-11-28 01:52:00 +01:00
|
|
|
"conn:wshenabled"?: boolean;
|
2024-06-20 22:03:50 +02:00
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.StickerClickOptsType
|
2024-06-18 07:38:48 +02:00
|
|
|
type StickerClickOptsType = {
|
|
|
|
sendinput?: string;
|
|
|
|
createblock?: BlockDef;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.StickerDisplayOptsType
|
2024-06-18 07:38:48 +02:00
|
|
|
type StickerDisplayOptsType = {
|
|
|
|
icon: string;
|
|
|
|
imgsrc: string;
|
|
|
|
svgblob?: string;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.StickerType
|
2024-06-18 07:38:48 +02:00
|
|
|
type StickerType = {
|
|
|
|
stickertype: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
style: {[key: string]: any};
|
2024-06-18 07:38:48 +02:00
|
|
|
clickopts?: StickerClickOptsType;
|
|
|
|
display: StickerDisplayOptsType;
|
|
|
|
};
|
|
|
|
|
2024-09-12 03:03:55 +02:00
|
|
|
// wps.SubscriptionRequest
|
2024-07-26 22:30:11 +02:00
|
|
|
type SubscriptionRequest = {
|
|
|
|
event: string;
|
|
|
|
scopes?: string[];
|
|
|
|
allscopes?: boolean;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.Tab
|
2024-06-12 02:42:10 +02:00
|
|
|
type Tab = WaveObj & {
|
|
|
|
name: string;
|
2024-08-15 03:40:41 +02:00
|
|
|
layoutstate: string;
|
2024-06-12 02:42:10 +02:00
|
|
|
blockids: string[];
|
|
|
|
};
|
2024-08-09 03:24:54 +02:00
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.TermSize
|
2024-06-12 02:42:10 +02:00
|
|
|
type TermSize = {
|
|
|
|
rows: number;
|
|
|
|
cols: number;
|
|
|
|
};
|
|
|
|
|
2024-07-25 05:34:22 +02:00
|
|
|
// wconfig.TermThemeType
|
|
|
|
type TermThemeType = {
|
2024-08-30 06:35:22 +02:00
|
|
|
"display:name": string;
|
|
|
|
"display:order": number;
|
2024-07-25 05:34:22 +02:00
|
|
|
black: string;
|
|
|
|
red: string;
|
|
|
|
green: string;
|
|
|
|
yellow: string;
|
|
|
|
blue: string;
|
|
|
|
magenta: string;
|
|
|
|
cyan: string;
|
|
|
|
white: string;
|
|
|
|
brightBlack: string;
|
|
|
|
brightRed: string;
|
|
|
|
brightGreen: string;
|
|
|
|
brightYellow: string;
|
|
|
|
brightBlue: string;
|
|
|
|
brightMagenta: string;
|
|
|
|
brightCyan: string;
|
|
|
|
brightWhite: string;
|
|
|
|
gray: string;
|
|
|
|
cmdtext: string;
|
|
|
|
foreground: string;
|
|
|
|
selectionBackground: string;
|
|
|
|
background: string;
|
2024-10-06 21:42:25 +02:00
|
|
|
cursor: string;
|
2024-07-25 05:34:22 +02:00
|
|
|
};
|
|
|
|
|
2024-08-20 00:01:00 +02:00
|
|
|
// wshrpc.TimeSeriesData
|
|
|
|
type TimeSeriesData = {
|
|
|
|
ts: number;
|
|
|
|
values: {[key: string]: number};
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.UIContext
|
2024-06-12 02:42:10 +02:00
|
|
|
type UIContext = {
|
|
|
|
windowid: string;
|
|
|
|
activetabid: string;
|
|
|
|
};
|
|
|
|
|
2024-07-19 00:21:33 +02:00
|
|
|
// userinput.UserInputRequest
|
|
|
|
type UserInputRequest = {
|
|
|
|
requestid: string;
|
|
|
|
querytext: string;
|
|
|
|
responsetype: string;
|
|
|
|
title: string;
|
|
|
|
markdown: boolean;
|
|
|
|
timeoutms: number;
|
|
|
|
checkboxmsg: string;
|
|
|
|
publictext: boolean;
|
2024-11-28 01:52:00 +01:00
|
|
|
oklabel?: string;
|
|
|
|
cancellabel?: string;
|
2024-07-19 00:21:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// userinput.UserInputResponse
|
|
|
|
type UserInputResponse = {
|
|
|
|
type: string;
|
|
|
|
requestid: string;
|
|
|
|
text?: string;
|
|
|
|
confirm?: boolean;
|
|
|
|
errormsg?: string;
|
|
|
|
checkboxstat?: boolean;
|
|
|
|
};
|
|
|
|
|
2024-10-17 23:50:36 +02:00
|
|
|
// vdom.VDomAsyncInitiationRequest
|
|
|
|
type VDomAsyncInitiationRequest = {
|
|
|
|
type: "asyncinitiationrequest";
|
|
|
|
ts: number;
|
|
|
|
blockid?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomBackendOpts
|
|
|
|
type VDomBackendOpts = {
|
|
|
|
closeonctrlc?: boolean;
|
|
|
|
globalkeyboardevents?: boolean;
|
2024-11-07 09:07:23 +01:00
|
|
|
globalstyles?: boolean;
|
2024-10-17 23:50:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomBackendUpdate
|
|
|
|
type VDomBackendUpdate = {
|
|
|
|
type: "backendupdate";
|
|
|
|
ts: number;
|
|
|
|
blockid: string;
|
|
|
|
opts?: VDomBackendOpts;
|
2024-11-04 21:52:36 +01:00
|
|
|
haswork?: boolean;
|
2024-10-17 23:50:36 +02:00
|
|
|
renderupdates?: VDomRenderUpdate[];
|
2024-11-06 00:52:59 +01:00
|
|
|
transferelems?: VDomTransferElem[];
|
2024-10-17 23:50:36 +02:00
|
|
|
statesync?: VDomStateSync[];
|
|
|
|
refoperations?: VDomRefOperation[];
|
|
|
|
messages?: VDomMessage[];
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomBinding
|
|
|
|
type VDomBinding = {
|
|
|
|
type: "binding";
|
|
|
|
bind: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomCreateContext
|
|
|
|
type VDomCreateContext = {
|
|
|
|
type: "createcontext";
|
|
|
|
ts: number;
|
|
|
|
meta?: MetaType;
|
2024-10-24 07:47:29 +02:00
|
|
|
target?: VDomTarget;
|
2024-10-17 23:50:36 +02:00
|
|
|
persist?: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomElem
|
2024-07-23 22:16:53 +02:00
|
|
|
type VDomElem = {
|
2024-10-17 23:50:36 +02:00
|
|
|
waveid?: string;
|
2024-07-23 22:16:53 +02:00
|
|
|
tag: string;
|
2024-07-30 21:33:28 +02:00
|
|
|
props?: {[key: string]: any};
|
2024-07-23 22:16:53 +02:00
|
|
|
children?: VDomElem[];
|
|
|
|
text?: string;
|
|
|
|
};
|
|
|
|
|
2024-10-17 23:50:36 +02:00
|
|
|
// vdom.VDomEvent
|
|
|
|
type VDomEvent = {
|
|
|
|
waveid: string;
|
2024-10-24 07:47:29 +02:00
|
|
|
eventtype: string;
|
2024-11-04 21:52:36 +01:00
|
|
|
globaleventtype?: string;
|
|
|
|
targetvalue?: string;
|
|
|
|
targetchecked?: boolean;
|
|
|
|
targetname?: string;
|
|
|
|
targetid?: string;
|
|
|
|
keydata?: WaveKeyboardEvent;
|
|
|
|
mousedata?: WavePointerData;
|
2024-10-17 23:50:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomFrontendUpdate
|
|
|
|
type VDomFrontendUpdate = {
|
|
|
|
type: "frontendupdate";
|
|
|
|
ts: number;
|
|
|
|
blockid: string;
|
|
|
|
correlationid?: string;
|
|
|
|
dispose?: boolean;
|
|
|
|
resync?: boolean;
|
|
|
|
rendercontext?: VDomRenderContext;
|
|
|
|
events?: VDomEvent[];
|
|
|
|
statesync?: VDomStateSync[];
|
|
|
|
refupdates?: VDomRefUpdate[];
|
|
|
|
messages?: VDomMessage[];
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomFunc
|
|
|
|
type VDomFunc = {
|
|
|
|
type: "func";
|
|
|
|
stoppropagation?: boolean;
|
|
|
|
preventdefault?: boolean;
|
|
|
|
globalevent?: string;
|
2024-11-04 21:52:36 +01:00
|
|
|
#keys?: string[];
|
2024-10-17 23:50:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomMessage
|
|
|
|
type VDomMessage = {
|
|
|
|
messagetype: string;
|
|
|
|
message: string;
|
|
|
|
stacktrace?: string;
|
|
|
|
params?: any[];
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomRef
|
|
|
|
type VDomRef = {
|
|
|
|
type: "ref";
|
|
|
|
refid: string;
|
|
|
|
trackposition?: boolean;
|
|
|
|
position?: VDomRefPosition;
|
|
|
|
hascurrent?: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomRefOperation
|
|
|
|
type VDomRefOperation = {
|
|
|
|
refid: string;
|
|
|
|
op: string;
|
|
|
|
params?: any[];
|
2024-11-06 08:07:45 +01:00
|
|
|
outputref?: string;
|
2024-10-17 23:50:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomRefPosition
|
|
|
|
type VDomRefPosition = {
|
|
|
|
offsetheight: number;
|
|
|
|
offsetwidth: number;
|
|
|
|
scrollheight: number;
|
|
|
|
scrollwidth: number;
|
|
|
|
scrolltop: number;
|
|
|
|
boundingclientrect: DomRect;
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomRefUpdate
|
|
|
|
type VDomRefUpdate = {
|
|
|
|
refid: string;
|
|
|
|
hascurrent: boolean;
|
|
|
|
position?: VDomRefPosition;
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomRenderContext
|
|
|
|
type VDomRenderContext = {
|
|
|
|
blockid: string;
|
|
|
|
focused: boolean;
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
rootrefid: string;
|
|
|
|
background?: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomRenderUpdate
|
|
|
|
type VDomRenderUpdate = {
|
|
|
|
updatetype: "root"|"append"|"replace"|"remove"|"insert";
|
|
|
|
waveid?: string;
|
2024-11-06 00:52:59 +01:00
|
|
|
vdomwaveid?: string;
|
|
|
|
vdom?: VDomElem;
|
2024-10-17 23:50:36 +02:00
|
|
|
index?: number;
|
2024-07-23 22:16:53 +02:00
|
|
|
};
|
|
|
|
|
2024-10-17 23:50:36 +02:00
|
|
|
// vdom.VDomStateSync
|
|
|
|
type VDomStateSync = {
|
|
|
|
atom: string;
|
|
|
|
value: any;
|
2024-07-23 22:16:53 +02:00
|
|
|
};
|
|
|
|
|
2024-10-24 07:47:29 +02:00
|
|
|
// vdom.VDomTarget
|
|
|
|
type VDomTarget = {
|
|
|
|
newblock?: boolean;
|
|
|
|
magnified?: boolean;
|
2024-11-11 22:11:09 +01:00
|
|
|
toolbar?: VDomTargetToolbar;
|
|
|
|
};
|
|
|
|
|
|
|
|
// vdom.VDomTargetToolbar
|
|
|
|
type VDomTargetToolbar = {
|
|
|
|
toolbar: boolean;
|
|
|
|
height?: string;
|
2024-10-24 07:47:29 +02:00
|
|
|
};
|
|
|
|
|
2024-11-06 00:52:59 +01:00
|
|
|
// vdom.VDomTransferElem
|
|
|
|
type VDomTransferElem = {
|
|
|
|
waveid?: string;
|
|
|
|
tag: string;
|
|
|
|
props?: {[key: string]: any};
|
|
|
|
children?: string[];
|
|
|
|
text?: string;
|
|
|
|
};
|
|
|
|
|
2024-11-02 18:58:13 +01:00
|
|
|
// wshrpc.VDomUrlRequestData
|
|
|
|
type VDomUrlRequestData = {
|
|
|
|
method: string;
|
|
|
|
url: string;
|
|
|
|
headers: {[key: string]: string};
|
|
|
|
body?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.VDomUrlRequestResponse
|
|
|
|
type VDomUrlRequestResponse = {
|
|
|
|
statuscode?: number;
|
|
|
|
headers?: {[key: string]: string};
|
|
|
|
body?: string;
|
|
|
|
};
|
|
|
|
|
2024-06-12 23:18:03 +02:00
|
|
|
type WSCommandType = {
|
|
|
|
wscommand: string;
|
2024-07-18 00:24:43 +02:00
|
|
|
} & ( SetBlockTermSizeWSCommand | BlockInputWSCommand | WSRpcCommand );
|
2024-06-12 23:18:03 +02:00
|
|
|
|
2024-06-12 02:42:10 +02:00
|
|
|
// eventbus.WSEventType
|
|
|
|
type WSEventType = {
|
|
|
|
eventtype: string;
|
|
|
|
oref?: string;
|
|
|
|
data: any;
|
|
|
|
};
|
|
|
|
|
2024-09-12 03:03:55 +02:00
|
|
|
// wps.WSFileEventData
|
2024-06-14 08:54:04 +02:00
|
|
|
type WSFileEventData = {
|
|
|
|
zoneid: string;
|
|
|
|
filename: string;
|
|
|
|
fileop: string;
|
|
|
|
data64: string;
|
|
|
|
};
|
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// webcmd.WSRpcCommand
|
|
|
|
type WSRpcCommand = {
|
|
|
|
wscommand: "rpc";
|
|
|
|
message: RpcMessage;
|
|
|
|
};
|
|
|
|
|
2024-06-20 22:03:50 +02:00
|
|
|
// wconfig.WatcherUpdate
|
|
|
|
type WatcherUpdate = {
|
2024-08-28 03:49:49 +02:00
|
|
|
fullconfig: FullConfigType;
|
2024-06-20 22:03:50 +02:00
|
|
|
};
|
|
|
|
|
2024-09-12 03:03:55 +02:00
|
|
|
// wps.WaveEvent
|
2024-07-26 22:30:11 +02:00
|
|
|
type WaveEvent = {
|
|
|
|
event: string;
|
|
|
|
scopes?: string[];
|
|
|
|
sender?: string;
|
2024-08-30 20:33:04 +02:00
|
|
|
persist?: number;
|
2024-07-26 22:30:11 +02:00
|
|
|
data?: any;
|
|
|
|
};
|
|
|
|
|
2024-06-18 07:38:48 +02:00
|
|
|
// filestore.WaveFile
|
|
|
|
type WaveFile = {
|
|
|
|
zoneid: string;
|
|
|
|
name: string;
|
|
|
|
opts: FileOptsType;
|
|
|
|
createdts: number;
|
|
|
|
size: number;
|
|
|
|
modts: number;
|
2024-07-30 21:33:28 +02:00
|
|
|
meta: {[key: string]: any};
|
2024-06-18 07:38:48 +02:00
|
|
|
};
|
|
|
|
|
2024-11-20 02:20:47 +01:00
|
|
|
// wshrpc.WaveFileInfo
|
|
|
|
type WaveFileInfo = {
|
|
|
|
zoneid: string;
|
|
|
|
name: string;
|
|
|
|
opts?: FileOptsType;
|
|
|
|
size?: number;
|
|
|
|
createdts?: number;
|
|
|
|
modts?: number;
|
|
|
|
meta?: {[key: string]: any};
|
|
|
|
isdir?: boolean;
|
|
|
|
};
|
|
|
|
|
2024-11-01 18:20:15 +01:00
|
|
|
// wshrpc.WaveInfoData
|
|
|
|
type WaveInfoData = {
|
|
|
|
version: string;
|
2024-11-08 23:19:56 +01:00
|
|
|
clientid: string;
|
2024-11-01 18:20:15 +01:00
|
|
|
buildtime: string;
|
|
|
|
configdir: string;
|
|
|
|
datadir: string;
|
|
|
|
};
|
|
|
|
|
2024-11-04 21:52:36 +01:00
|
|
|
// vdom.WaveKeyboardEvent
|
|
|
|
type WaveKeyboardEvent = {
|
|
|
|
type: "keydown"|"keyup"|"keypress"|"unknown";
|
|
|
|
key: string;
|
|
|
|
code: string;
|
|
|
|
repeat?: boolean;
|
|
|
|
location?: number;
|
|
|
|
shift?: boolean;
|
|
|
|
control?: boolean;
|
|
|
|
alt?: boolean;
|
|
|
|
meta?: boolean;
|
|
|
|
cmd?: boolean;
|
|
|
|
option?: boolean;
|
|
|
|
};
|
|
|
|
|
2024-10-08 19:22:17 +02:00
|
|
|
// wshrpc.WaveNotificationOptions
|
|
|
|
type WaveNotificationOptions = {
|
|
|
|
title?: string;
|
|
|
|
body?: string;
|
|
|
|
silent?: boolean;
|
|
|
|
};
|
|
|
|
|
2024-06-12 02:42:10 +02:00
|
|
|
// waveobj.WaveObj
|
|
|
|
type WaveObj = {
|
|
|
|
otype: string;
|
|
|
|
oid: string;
|
|
|
|
version: number;
|
2024-07-30 21:33:28 +02:00
|
|
|
meta: MetaType;
|
2024-06-12 02:42:10 +02:00
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.WaveObjUpdate
|
2024-06-12 02:42:10 +02:00
|
|
|
type WaveObjUpdate = {
|
|
|
|
updatetype: string;
|
|
|
|
otype: string;
|
|
|
|
oid: string;
|
|
|
|
obj?: WaveObj;
|
|
|
|
};
|
|
|
|
|
2024-11-04 21:52:36 +01:00
|
|
|
// vdom.WavePointerData
|
|
|
|
type WavePointerData = {
|
|
|
|
button: number;
|
|
|
|
buttons: number;
|
|
|
|
clientx?: number;
|
|
|
|
clienty?: number;
|
|
|
|
pagex?: number;
|
|
|
|
pagey?: number;
|
|
|
|
screenx?: number;
|
|
|
|
screeny?: number;
|
|
|
|
movementx?: number;
|
|
|
|
movementy?: number;
|
|
|
|
shift?: boolean;
|
|
|
|
control?: boolean;
|
|
|
|
alt?: boolean;
|
|
|
|
meta?: boolean;
|
|
|
|
cmd?: boolean;
|
|
|
|
option?: boolean;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.Window
|
2024-06-20 04:10:53 +02:00
|
|
|
type WaveWindow = WaveObj & {
|
|
|
|
workspaceid: string;
|
2024-10-11 01:12:56 +02:00
|
|
|
isnew?: boolean;
|
2024-06-20 04:10:53 +02:00
|
|
|
pos: Point;
|
|
|
|
winsize: WinSize;
|
|
|
|
lastfocusts: number;
|
|
|
|
};
|
|
|
|
|
2024-06-12 02:42:10 +02:00
|
|
|
// service.WebCallType
|
|
|
|
type WebCallType = {
|
|
|
|
service: string;
|
|
|
|
method: string;
|
|
|
|
uicontext?: UIContext;
|
|
|
|
args: any[];
|
|
|
|
};
|
|
|
|
|
|
|
|
// service.WebReturnType
|
|
|
|
type WebReturnType = {
|
|
|
|
success?: boolean;
|
|
|
|
error?: string;
|
|
|
|
data?: any;
|
|
|
|
updates?: WaveObjUpdate[];
|
|
|
|
};
|
|
|
|
|
2024-09-18 08:10:09 +02:00
|
|
|
// wshrpc.WebSelectorOpts
|
|
|
|
type WebSelectorOpts = {
|
|
|
|
all?: boolean;
|
|
|
|
inner?: boolean;
|
|
|
|
};
|
|
|
|
|
2024-08-28 03:49:49 +02:00
|
|
|
// wconfig.WidgetConfigType
|
|
|
|
type WidgetConfigType = {
|
|
|
|
"display:order"?: number;
|
|
|
|
icon?: string;
|
2024-06-20 22:03:50 +02:00
|
|
|
color?: string;
|
|
|
|
label?: string;
|
|
|
|
description?: string;
|
2024-06-20 08:59:41 +02:00
|
|
|
blockdef: BlockDef;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.WinSize
|
2024-06-12 02:42:10 +02:00
|
|
|
type WinSize = {
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:56:48 +02:00
|
|
|
// waveobj.Workspace
|
2024-06-12 02:42:10 +02:00
|
|
|
type Workspace = WaveObj & {
|
|
|
|
name: string;
|
2024-12-02 19:56:56 +01:00
|
|
|
icon: string;
|
|
|
|
color: string;
|
2024-06-12 02:42:10 +02:00
|
|
|
tabids: string[];
|
2024-12-04 22:34:22 +01:00
|
|
|
pinnedtabids: string[];
|
2024-12-02 19:56:56 +01:00
|
|
|
activetabid: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
// wshrpc.WorkspaceInfoData
|
|
|
|
type WorkspaceInfoData = {
|
|
|
|
windowid: string;
|
|
|
|
workspacedata: Workspace;
|
|
|
|
};
|
|
|
|
|
|
|
|
// waveobj.WorkspaceListEntry
|
|
|
|
type WorkspaceListEntry = {
|
|
|
|
workspaceid: string;
|
|
|
|
windowid: string;
|
2024-06-12 02:42:10 +02:00
|
|
|
};
|
2024-06-18 07:38:48 +02:00
|
|
|
|
2024-07-18 00:24:43 +02:00
|
|
|
// wshrpc.WshServerCommandMeta
|
|
|
|
type WshServerCommandMeta = {
|
|
|
|
commandtype: string;
|
|
|
|
};
|
|
|
|
|
2024-06-12 02:42:10 +02:00
|
|
|
}
|
|
|
|
|
2024-06-27 21:30:08 +02:00
|
|
|
export {}
|