@pipelab/core-node 1.0.1-beta.23
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/.turbo/turbo-build.log +75 -0
- package/CHANGELOG.md +291 -0
- package/LICENSE +110 -0
- package/LICENSE.md +110 -0
- package/README.md +10 -0
- package/dist/index.d.mts +344 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +51852 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +62 -0
- package/src/api.ts +115 -0
- package/src/config.ts +105 -0
- package/src/context.ts +53 -0
- package/src/handler-func.ts +234 -0
- package/src/handlers/agents.ts +32 -0
- package/src/handlers/auth.ts +95 -0
- package/src/handlers/build-history.ts +360 -0
- package/src/handlers/config.ts +109 -0
- package/src/handlers/engine.ts +229 -0
- package/src/handlers/fs.ts +97 -0
- package/src/handlers/history.ts +299 -0
- package/src/handlers/index.ts +41 -0
- package/src/handlers/shell.ts +57 -0
- package/src/handlers/system.ts +18 -0
- package/src/handlers.ts +2 -0
- package/src/heavy.ts +4 -0
- package/src/index.ts +16 -0
- package/src/ipc-core.ts +70 -0
- package/src/migrations.ts +72 -0
- package/src/paths.ts +1 -0
- package/src/plugins-registry.ts +62 -0
- package/src/presets/c3toSteam.ts +272 -0
- package/src/presets/demo.ts +123 -0
- package/src/presets/if.ts +69 -0
- package/src/presets/list.ts +30 -0
- package/src/presets/loop.ts +65 -0
- package/src/presets/moreToCome.ts +32 -0
- package/src/presets/newProject.ts +31 -0
- package/src/presets/preset.model.ts +0 -0
- package/src/presets/test-c3-offline.ts +78 -0
- package/src/presets/test-c3-unzip.ts +124 -0
- package/src/runner.ts +107 -0
- package/src/server.ts +80 -0
- package/src/types/runner.ts +101 -0
- package/src/utils/fs-extras.ts +182 -0
- package/src/utils/remote.ts +381 -0
- package/src/utils/storage.ts +99 -0
- package/src/utils.ts +258 -0
- package/src/websocket-server.ts +288 -0
- package/tsconfig.json +19 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { WebSocket } from "ws";
|
|
3
|
+
import { Action, Agent, BlockCondition, Channels, Condition, End, Event as Event$1, Events, Expression, ExtractInputsFromAction, ExtractInputsFromCondition, ExtractInputsFromEvent, ExtractInputsFromExpression, ExtractInputsFromLoop, HandleListenerRendererSendFn, IpcMessage, Loop, Migrator, RendererChannels, RendererData, RendererEnd, RendererEvents, RendererMessage, RequestId, SetOutputActionFn, SetOutputExpressionFn, SetOutputLoopFn, UpdateStatus, WebSocketConnectionState, WebSocketEvent, WebSocketHandler, WebSocketSendFunction } from "@pipelab/shared";
|
|
4
|
+
import * as execa$1 from "execa";
|
|
5
|
+
import { Options as Options$1, Subprocess } from "execa";
|
|
6
|
+
import * as http$1 from "http";
|
|
7
|
+
import http from "http";
|
|
8
|
+
|
|
9
|
+
//#region src/context.d.ts
|
|
10
|
+
/**
|
|
11
|
+
* Encapsulates the execution context of a Pipelab operation.
|
|
12
|
+
* Must be passed explicitly to all functions that require context.
|
|
13
|
+
*/
|
|
14
|
+
interface PipelabContext {
|
|
15
|
+
readonly isDev: boolean;
|
|
16
|
+
readonly userDataPath: string;
|
|
17
|
+
readonly assetsPath: string;
|
|
18
|
+
}
|
|
19
|
+
declare function createPipelabContext(options?: {
|
|
20
|
+
userDataPath?: string;
|
|
21
|
+
}): PipelabContext;
|
|
22
|
+
//#endregion
|
|
23
|
+
//#region src/websocket-server.d.ts
|
|
24
|
+
interface ConnectedClient {
|
|
25
|
+
id: string;
|
|
26
|
+
name: string;
|
|
27
|
+
ws: WebSocket;
|
|
28
|
+
connectedAt: number;
|
|
29
|
+
}
|
|
30
|
+
declare class WebSocketServer {
|
|
31
|
+
private wss;
|
|
32
|
+
private server;
|
|
33
|
+
private isReady;
|
|
34
|
+
private readyResolve;
|
|
35
|
+
private connectionState;
|
|
36
|
+
private clients;
|
|
37
|
+
private lastBroadcasts;
|
|
38
|
+
start(port?: number, existingServer?: http$1.Server): Promise<void>;
|
|
39
|
+
private handleWebSocketMessage;
|
|
40
|
+
private sendError;
|
|
41
|
+
stop(): Promise<void>;
|
|
42
|
+
waitForReady(): Promise<void>;
|
|
43
|
+
isServerReady(): boolean;
|
|
44
|
+
getConnectionState(): WebSocketConnectionState;
|
|
45
|
+
getAgents(): Agent[];
|
|
46
|
+
getClient(ws: WebSocket): ConnectedClient | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* Broadcasts a message to all connected clients.
|
|
49
|
+
* Useful for push notifications like auth state changes.
|
|
50
|
+
*/
|
|
51
|
+
broadcast<KEY extends Channels>(channel: KEY, data: Events<KEY>): void;
|
|
52
|
+
}
|
|
53
|
+
declare const webSocketServer: WebSocketServer;
|
|
54
|
+
//#endregion
|
|
55
|
+
//#region src/ipc-core.d.ts
|
|
56
|
+
type HandleListenerSendFn<KEY extends Channels> = WebSocketSendFunction<KEY>;
|
|
57
|
+
type WsEvent = WebSocketEvent;
|
|
58
|
+
type HandleListener<KEY extends Channels> = WebSocketHandler<KEY>;
|
|
59
|
+
declare const useAPI: () => {
|
|
60
|
+
handle: <KEY extends Channels>(channel: KEY, listener: WebSocketHandler<KEY>) => {
|
|
61
|
+
channel: KEY;
|
|
62
|
+
listener: WebSocketHandler<KEY>;
|
|
63
|
+
};
|
|
64
|
+
processWebSocketMessage: (ws: WebSocket, channel: string, message: IpcMessage) => any;
|
|
65
|
+
handlers: Record<string, WebSocketHandler<any>>;
|
|
66
|
+
};
|
|
67
|
+
//#endregion
|
|
68
|
+
//#region src/handlers/shell.d.ts
|
|
69
|
+
declare const registerShellHandlers: () => void;
|
|
70
|
+
//#endregion
|
|
71
|
+
//#region src/handlers/fs.d.ts
|
|
72
|
+
declare const registerFsHandlers: () => void;
|
|
73
|
+
//#endregion
|
|
74
|
+
//#region src/handlers/config.d.ts
|
|
75
|
+
declare const registerConfigHandlers: (context: PipelabContext) => void;
|
|
76
|
+
//#endregion
|
|
77
|
+
//#region src/handlers/history.d.ts
|
|
78
|
+
declare const registerHistoryHandlers: (context: PipelabContext) => void;
|
|
79
|
+
//#endregion
|
|
80
|
+
//#region src/handlers/engine.d.ts
|
|
81
|
+
declare const registerEngineHandlers: (context: PipelabContext) => void;
|
|
82
|
+
//#endregion
|
|
83
|
+
//#region src/handlers/agents.d.ts
|
|
84
|
+
declare const registerAgentsHandlers: () => void;
|
|
85
|
+
//#endregion
|
|
86
|
+
//#region src/handlers/index.d.ts
|
|
87
|
+
declare const registerAllHandlers: (options: {
|
|
88
|
+
version: string;
|
|
89
|
+
nodePath?: string;
|
|
90
|
+
pnpmPath?: string;
|
|
91
|
+
}, context: PipelabContext) => Promise<void>;
|
|
92
|
+
//#endregion
|
|
93
|
+
//#region src/config.d.ts
|
|
94
|
+
declare const getMigrator: <T>(name: string) => any;
|
|
95
|
+
declare const setupConfigFile: <T>(name: string, customMigrator?: Migrator<T>, context?: PipelabContext) => Promise<{
|
|
96
|
+
getConfig: () => Promise<any>;
|
|
97
|
+
saveConfig: (json: T) => Promise<void>;
|
|
98
|
+
migrate: (json: any) => Promise<T>;
|
|
99
|
+
}>;
|
|
100
|
+
//#endregion
|
|
101
|
+
//#region src/api.d.ts
|
|
102
|
+
type HandleListenerRenderer<KEY extends RendererChannels> = (event: Electron.IpcMainInvokeEvent, data: {
|
|
103
|
+
value: RendererData<KEY>;
|
|
104
|
+
send: HandleListenerRendererSendFn<KEY>;
|
|
105
|
+
}) => Promise<void>;
|
|
106
|
+
type ListenerMain<KEY extends RendererChannels> = (event: Electron.IpcMainEvent, data: RendererEvents<KEY>) => Promise<void>;
|
|
107
|
+
declare const usePluginAPI: (browserWindow: any) => {
|
|
108
|
+
send: <KEY extends RendererChannels>(channel: KEY, args?: RendererData<KEY>) => void;
|
|
109
|
+
on: <KEY extends RendererChannels>(channel: KEY | string, listener: (event: any, data: RendererEvents<KEY>) => void) => () => void;
|
|
110
|
+
execute: <KEY extends RendererChannels>(channel: KEY, data?: RendererData<KEY>, listener?: ListenerMain<KEY>) => Promise<RendererEnd<KEY>>;
|
|
111
|
+
};
|
|
112
|
+
type UseMainAPI = ReturnType<typeof usePluginAPI>;
|
|
113
|
+
declare function createApiObject(context: PipelabContext): PipelabApi$1;
|
|
114
|
+
//#endregion
|
|
115
|
+
//#region src/handler-func.d.ts
|
|
116
|
+
declare const handleConditionExecute: (nodeId: string, pluginId: string, params: BlockCondition["params"], cwd: string, context: PipelabContext) => Promise<End<"condition:execute">>;
|
|
117
|
+
declare const handleActionExecute: (nodeId: string, pluginId: string, params: Record<string, string>, mainWindow: any | undefined, send: HandleListenerSendFn<"action:execute">, abortSignal: AbortSignal, cwd: string, cachePath: string, context: PipelabContext) => Promise<End<"action:execute">>;
|
|
118
|
+
//#endregion
|
|
119
|
+
//#region src/utils.d.ts
|
|
120
|
+
declare const getFinalPlugins: () => any[];
|
|
121
|
+
declare const executeGraphWithHistory: ({
|
|
122
|
+
graph,
|
|
123
|
+
variables,
|
|
124
|
+
projectName,
|
|
125
|
+
projectPath,
|
|
126
|
+
pipelineId,
|
|
127
|
+
mainWindow,
|
|
128
|
+
onNodeEnter,
|
|
129
|
+
onNodeExit,
|
|
130
|
+
onLog,
|
|
131
|
+
abortSignal,
|
|
132
|
+
cachePath,
|
|
133
|
+
context
|
|
134
|
+
}: {
|
|
135
|
+
graph: any;
|
|
136
|
+
variables: any;
|
|
137
|
+
projectName: string;
|
|
138
|
+
projectPath: string;
|
|
139
|
+
pipelineId: string;
|
|
140
|
+
mainWindow: any;
|
|
141
|
+
onNodeEnter?: (node: any) => void;
|
|
142
|
+
onNodeExit?: (node: any) => void;
|
|
143
|
+
onLog?: (data: any, node: any) => void;
|
|
144
|
+
abortSignal: AbortSignal;
|
|
145
|
+
cachePath: string;
|
|
146
|
+
context: PipelabContext;
|
|
147
|
+
}) => Promise<{
|
|
148
|
+
result: any;
|
|
149
|
+
buildId: string;
|
|
150
|
+
}>;
|
|
151
|
+
//#endregion
|
|
152
|
+
//#region src/plugins-registry.d.ts
|
|
153
|
+
declare const builtInPlugins: (options: {
|
|
154
|
+
nodePath?: string;
|
|
155
|
+
pnpmPath?: string;
|
|
156
|
+
} | undefined, context: PipelabContext) => Promise<any[]>;
|
|
157
|
+
//#endregion
|
|
158
|
+
//#region src/utils/remote.d.ts
|
|
159
|
+
type FetchOptions = {
|
|
160
|
+
installDeps?: boolean;
|
|
161
|
+
nodePath?: string;
|
|
162
|
+
pnpmPath?: string;
|
|
163
|
+
baseDir?: string;
|
|
164
|
+
signal?: AbortSignal;
|
|
165
|
+
};
|
|
166
|
+
/**
|
|
167
|
+
* Robust utility to fetch, cache, and resolve an NPM package.
|
|
168
|
+
* Centralized in core-node to avoid circular dependencies.
|
|
169
|
+
*/
|
|
170
|
+
declare function fetchPackage(packageName: string, versionOrRange: string | undefined, context: PipelabContext, options?: FetchOptions): Promise<{
|
|
171
|
+
packageDir: string;
|
|
172
|
+
resolvedVersion: string;
|
|
173
|
+
isLocal?: boolean;
|
|
174
|
+
entryPoint?: string;
|
|
175
|
+
}>;
|
|
176
|
+
/**
|
|
177
|
+
* Executes a pnpm install in a specific directory with a portable environment.
|
|
178
|
+
*/
|
|
179
|
+
declare function runPnpm(cwd: string, context: PipelabContext, options?: {
|
|
180
|
+
args?: string[];
|
|
181
|
+
extraEnv?: Record<string, string>;
|
|
182
|
+
signal?: AbortSignal;
|
|
183
|
+
}): Promise<execa$1.Result<{
|
|
184
|
+
cwd: string;
|
|
185
|
+
all: true;
|
|
186
|
+
signal: AbortSignal | undefined;
|
|
187
|
+
env: {
|
|
188
|
+
NODE_ENV: string;
|
|
189
|
+
PATH: string | undefined;
|
|
190
|
+
PNPM_HOME: string;
|
|
191
|
+
};
|
|
192
|
+
}>>;
|
|
193
|
+
/**
|
|
194
|
+
* Installs a specific version of Node.js if not already present.
|
|
195
|
+
*/
|
|
196
|
+
declare function ensureNodeJS(version: string, context: PipelabContext): Promise<string>;
|
|
197
|
+
/**
|
|
198
|
+
* Installs the PNPM package from npm if not already present.
|
|
199
|
+
*/
|
|
200
|
+
declare function ensurePNPM(context: PipelabContext, version?: string): Promise<string>;
|
|
201
|
+
declare function fetchPipelabAsset(packageName: string, context: PipelabContext, versionOrRange?: string, options?: FetchOptions): Promise<string>;
|
|
202
|
+
declare function fetchPipelabPlugin(pluginName: string, context: PipelabContext, versionOrRange?: string, options?: FetchOptions): Promise<{
|
|
203
|
+
packageDir: string;
|
|
204
|
+
entryPoint: string;
|
|
205
|
+
isLocal: boolean;
|
|
206
|
+
}>;
|
|
207
|
+
declare function fetchPipelabCli(context: PipelabContext, versionOrRange?: string, options?: FetchOptions): Promise<{
|
|
208
|
+
packageDir: string;
|
|
209
|
+
entryPoint: string;
|
|
210
|
+
isLocal: boolean;
|
|
211
|
+
}>;
|
|
212
|
+
//#endregion
|
|
213
|
+
//#region src/utils/fs-extras.d.ts
|
|
214
|
+
/**
|
|
215
|
+
* Ensures a directory exists and a file is created with default content if missing.
|
|
216
|
+
*/
|
|
217
|
+
declare const ensure: (filesPath: string, defaultContent?: string) => Promise<void>;
|
|
218
|
+
/**
|
|
219
|
+
* Generates a unique temporary folder.
|
|
220
|
+
*/
|
|
221
|
+
declare const generateTempFolder: (base?: string) => Promise<string>;
|
|
222
|
+
/**
|
|
223
|
+
* Extracts a .tar.gz archive.
|
|
224
|
+
*/
|
|
225
|
+
declare function extractTarGz(archivePath: string, destinationDir: string): Promise<void>;
|
|
226
|
+
/**
|
|
227
|
+
* Extracts a .zip archive.
|
|
228
|
+
*/
|
|
229
|
+
declare function extractZip(archivePath: string, destinationDir: string): Promise<void>;
|
|
230
|
+
/**
|
|
231
|
+
* Zips a folder.
|
|
232
|
+
*/
|
|
233
|
+
declare const zipFolder: (from: string, to: string, log?: typeof console.log) => Promise<string>;
|
|
234
|
+
/**
|
|
235
|
+
* Downloads a file with progress tracking.
|
|
236
|
+
*/
|
|
237
|
+
interface DownloadHooks {
|
|
238
|
+
onProgress?: (data: {
|
|
239
|
+
progress: number;
|
|
240
|
+
downloadedSize: number;
|
|
241
|
+
}) => void;
|
|
242
|
+
}
|
|
243
|
+
declare const downloadFile: (url: string, localPath: string, hooks?: DownloadHooks, abortSignal?: AbortSignal) => Promise<void>;
|
|
244
|
+
declare const runWithLiveLogs: (command: string, args: string[], execaOptions: Options$1, log: typeof console.log, hooks?: {
|
|
245
|
+
onStdout?: (data: string, subprocess: Subprocess) => void;
|
|
246
|
+
onStderr?: (data: string, subprocess: Subprocess) => void;
|
|
247
|
+
onExit?: (code: number) => void;
|
|
248
|
+
onCreated?: (subprocess: Subprocess) => void;
|
|
249
|
+
}, abortSignal?: AbortSignal) => Promise<void>;
|
|
250
|
+
//#endregion
|
|
251
|
+
//#region ../../node_modules/electron/electron.d.ts
|
|
252
|
+
declare module 'electron' {
|
|
253
|
+
export = Electron.CrossProcessExports;
|
|
254
|
+
}
|
|
255
|
+
declare module 'electron/main' {
|
|
256
|
+
export = Electron.Main;
|
|
257
|
+
}
|
|
258
|
+
declare module 'electron/common' {
|
|
259
|
+
export = Electron.Common;
|
|
260
|
+
}
|
|
261
|
+
declare module 'electron/renderer' {
|
|
262
|
+
export = Electron.Renderer;
|
|
263
|
+
}
|
|
264
|
+
declare module 'electron/utility' {
|
|
265
|
+
export = Electron.Utility;
|
|
266
|
+
}
|
|
267
|
+
declare module 'original-fs' {
|
|
268
|
+
import * as fs from 'fs';
|
|
269
|
+
export = fs;
|
|
270
|
+
}
|
|
271
|
+
declare module 'node:original-fs' {
|
|
272
|
+
import * as fs from 'fs';
|
|
273
|
+
export = fs;
|
|
274
|
+
}
|
|
275
|
+
//#endregion
|
|
276
|
+
//#region src/types/runner.d.ts
|
|
277
|
+
type RunnerCallbackFnArgument = {
|
|
278
|
+
done: () => void;
|
|
279
|
+
id: string;
|
|
280
|
+
log: (...args: Parameters<(typeof console)["log"]>) => void;
|
|
281
|
+
};
|
|
282
|
+
type ActionRunnerData<ACTION extends Action> = {
|
|
283
|
+
setOutput: SetOutputActionFn<ACTION>;
|
|
284
|
+
inputs: ExtractInputsFromAction<ACTION>;
|
|
285
|
+
setMeta: (callback: (data: ACTION["meta"]) => ACTION["meta"]) => void;
|
|
286
|
+
meta: ACTION["meta"];
|
|
287
|
+
browserWindow: BrowserWindow$1;
|
|
288
|
+
abortSignal: AbortSignal;
|
|
289
|
+
};
|
|
290
|
+
type ActionRunner<ACTION extends Action> = (api: PipelabApi, data: ActionRunnerData<ACTION>) => Promise<void>;
|
|
291
|
+
type ConditionRunnerData<CONDITION extends Condition> = {
|
|
292
|
+
inputs: ExtractInputsFromCondition<CONDITION>;
|
|
293
|
+
setMeta: (callback: (data: CONDITION["meta"]) => CONDITION["meta"]) => void;
|
|
294
|
+
meta: CONDITION["meta"];
|
|
295
|
+
};
|
|
296
|
+
type ConditionRunner<CONDITION extends Condition> = (api: PipelabApi, data: ConditionRunnerData<CONDITION>) => Promise<boolean>;
|
|
297
|
+
type LoopRunnerData<LOOP extends Loop> = {
|
|
298
|
+
setOutput: SetOutputLoopFn<LOOP>;
|
|
299
|
+
inputs: ExtractInputsFromLoop<LOOP>;
|
|
300
|
+
setMeta: (callback: (data: LOOP["meta"]) => LOOP["meta"]) => void;
|
|
301
|
+
meta: LOOP["meta"];
|
|
302
|
+
};
|
|
303
|
+
type LoopRunner<LOOP extends Loop> = (api: PipelabApi, data: LoopRunnerData<LOOP>) => Promise<"step" | "exit">;
|
|
304
|
+
type ExpressionRunnerData<EXPRESSION extends Expression> = {
|
|
305
|
+
setOutput: SetOutputExpressionFn<EXPRESSION>;
|
|
306
|
+
inputs: ExtractInputsFromExpression<EXPRESSION>;
|
|
307
|
+
setMeta: (callback: (data: EXPRESSION["meta"]) => EXPRESSION["meta"]) => void;
|
|
308
|
+
meta: EXPRESSION["meta"];
|
|
309
|
+
};
|
|
310
|
+
type ExpressionRunner<EXPRESSION extends Expression> = (api: PipelabApi, data: ExpressionRunnerData<EXPRESSION>) => Promise<string>;
|
|
311
|
+
type EventRunnerData<EVENT extends Event$1> = {
|
|
312
|
+
inputs: ExtractInputsFromEvent<EVENT>;
|
|
313
|
+
setMeta: (callback: (data: EVENT["meta"]) => EVENT["meta"]) => void;
|
|
314
|
+
meta: EVENT["meta"];
|
|
315
|
+
};
|
|
316
|
+
type EventRunner<EVENT extends Event$1> = (api: PipelabApi, data: EventRunnerData<EVENT>) => Promise<void>;
|
|
317
|
+
type Runner = ActionRunner<any> | LoopRunner<any> | EventRunner<any> | ConditionRunner<any>;
|
|
318
|
+
//#endregion
|
|
319
|
+
//#region src/runner.d.ts
|
|
320
|
+
declare function runPipelineCommand(file: string, options: {
|
|
321
|
+
variables?: string;
|
|
322
|
+
output?: string;
|
|
323
|
+
userData?: string;
|
|
324
|
+
}, version: string, context: PipelabContext): Promise<any>;
|
|
325
|
+
//#endregion
|
|
326
|
+
//#region src/migrations.d.ts
|
|
327
|
+
/**
|
|
328
|
+
* Registers migration handlers for the CLI/Standalone server.
|
|
329
|
+
* This overrides the default handlers from @pipelab/core-node to include
|
|
330
|
+
* pipeline and file repo migrations directly in the backend.
|
|
331
|
+
*/
|
|
332
|
+
declare function registerMigrationHandlers(context: PipelabContext): void;
|
|
333
|
+
//#endregion
|
|
334
|
+
//#region src/server.d.ts
|
|
335
|
+
interface ServeOptions {
|
|
336
|
+
port: string | number;
|
|
337
|
+
userData?: string;
|
|
338
|
+
nodePath?: string;
|
|
339
|
+
pnpmPath?: string;
|
|
340
|
+
}
|
|
341
|
+
declare function serveCommand(options: ServeOptions, version: string, dirname: string, context: PipelabContext): Promise<http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>>;
|
|
342
|
+
//#endregion
|
|
343
|
+
export { type Action, ActionRunner, ActionRunnerData, type Condition, ConditionRunner, ConditionRunnerData, ConnectedClient, DownloadHooks, type Event$1 as Event, EventRunner, EventRunnerData, type Expression, ExpressionRunner, ExpressionRunnerData, type ExtractInputsFromAction, type ExtractInputsFromCondition, type ExtractInputsFromEvent, type ExtractInputsFromExpression, type ExtractInputsFromLoop, FetchOptions, HandleListener, HandleListenerRenderer, type HandleListenerRendererSendFn, HandleListenerSendFn, ListenerMain, type Loop, LoopRunner, LoopRunnerData, PipelabContext, type RendererChannels, type RendererData, type RendererEnd, type RendererEvents, type RendererMessage, type RequestId, Runner, RunnerCallbackFnArgument, ServeOptions, type SetOutputActionFn, type SetOutputExpressionFn, type SetOutputLoopFn, type UpdateStatus, UseMainAPI, WebSocketServer, WsEvent, builtInPlugins, createApiObject, createPipelabContext, downloadFile, ensure, ensureNodeJS, ensurePNPM, executeGraphWithHistory, extractTarGz, extractZip, fetchPackage, fetchPipelabAsset, fetchPipelabCli, fetchPipelabPlugin, generateTempFolder, getFinalPlugins, getMigrator, handleActionExecute, handleConditionExecute, registerAgentsHandlers, registerAllHandlers, registerConfigHandlers, registerEngineHandlers, registerFsHandlers, registerHistoryHandlers, registerMigrationHandlers, registerShellHandlers, runPipelineCommand, runPnpm, runWithLiveLogs, serveCommand, setupConfigFile, useAPI, usePluginAPI, webSocketServer, zipFolder };
|
|
344
|
+
//# sourceMappingURL=index.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":["DOMEvent","Event","GlobalResponse","Response","GlobalRequest","Request","Electron","Params","Type","K","events","EventEmitter","BrowserWindow","WebContents","Certificate","Details","ContinueActivityDetails","Function","AuthenticationResponseDetails","AuthInfo","Record","NotificationResponse","RenderProcessGoneDetails","Session","ConfigureHostResolverOptions","FocusOptions","ApplicationInfoForProtocolReturnValue","Promise","ProcessMetric","FileIconOptions","NativeImage","GPUFeatureStatus","JumpListSettings","LoginItemSettingsOptions","LoginItemSettings","ImportCertificateOptions","MoveToApplicationsFolderOptions","RelaunchOptions","AboutPanelOptionsOptions","JumpListCategory","Settings","ProxyConfig","Task","Menu","CommandLine","Dock","NodeJS","Error","Date","FeedURLOptions","Point","Rectangle","WillResizeDetails","BaseWindowConstructorOptions","BaseWindow","Buffer","AppDetailsOptions","Size","Partial","View","IgnoreMouseEventsOptions","ProgressBarOptions","ThumbarButton","TitleBarOverlayOptions","TouchBar","VisibleOnAllWorkspacesOptions","NodeEventEmitter","TitleBarOverlay","BrowserViewConstructorOptions","AutoResizeOptions","BrowserWindowConstructorOptions","BrowserView","Opts","LoadFileOptions","LoadURLOptions","WebPreferences","CertificatePrincipal","IncomingMessage","ClientRequestConstructorOptions","UploadProgress","ReadBookmark","Data","TraceBufferUsageReturnValue","TraceConfig","TraceCategoriesAndOptions","Cookie","CookiesGetFilter","CookiesSetDetails","CrashReport","CrashReporterStartOptions","Privileges","SourcesOptions","DesktopCapturerSource","CertificateTrustDialogOptions","MessageBoxOptions","MessageBoxReturnValue","MessageBoxSyncOptions","OpenDialogOptions","OpenDialogReturnValue","OpenDialogSyncOptions","SaveDialogOptions","SaveDialogReturnValue","SaveDialogSyncOptions","PermissionRequest","Accelerator","Product","PurchaseProductOpts","Array","IpcMainInvokeEvent","IpcMainEvent","MessagePortMain","WebFrameMain","IpcRendererEvent","MessagePort","IpcRenderer","JumpListItem","InputEvent","MenuItemConstructorOptions","MenuItem","PopupOptions","SharingItem","MessageEvent","MouseInputEvent","CreateFromBitmapOptions","CreateFromBufferOptions","AddRepresentationOptions","BitmapOptions","ResizeOptions","ToBitmapOptions","ToDataURLOptions","ToPNGOptions","EntryAtIndex","RequestInit","ClientRequest","ResolveHostOptions","ResolvedHost","StartLoggingOptions","NotificationConstructorOptions","NotificationAction","UploadRawData","UploadFile","Options","CPUUsage","MemoryInfo","ProductDiscount","ProductSubscriptionPeriod","ProtocolRequest","ProtocolResponse","ReadableStream","CustomScheme","UploadData","ProtocolResponseUploadData","ResolvedEndpoint","Display","MessageDetails","RegistrationCompletedDetails","ServiceWorkerInfo","FromPartitionOptions","FromPathOptions","Extension","FileSystemAccessRestrictedDetails","HidDeviceAddedDetails","HidDeviceRemovedDetails","HidDeviceRevokedDetails","SelectHidDeviceDetails","SerialPort","SelectUsbDeviceDetails","SerialPortRevokedDetails","USBDevice","UsbDeviceRevokedDetails","DownloadItem","ClearCodeCachesOptions","ClearDataOptions","ClearStorageDataOptions","CreateInterruptedDownloadOptions","DownloadURLOptions","EnableNetworkEmulationOptions","LoadExtensionOptions","PreconnectOptions","BluetoothPairingHandlerHandlerDetails","DevicePermissionHandlerHandlerDetails","DisplayMediaRequestHandlerHandlerRequest","Streams","DisplayMediaRequestHandlerOpts","PermissionCheckHandlerHandlerDetails","FilesystemPermissionRequest","MediaAccessPermissionRequest","OpenExternalPermissionRequest","Config","USBProtectedClassesHandlerHandlerDetails","Cookies","NetLog","Protocol","ServiceWorkers","WebRequest","OpenExternalOptions","ShortcutDetails","AnimationSettings","UserDefaultTypes","TouchBarConstructorOptions","TouchBarButton","TouchBarColorPicker","TouchBarGroup","TouchBarLabel","TouchBarPopover","TouchBarScrubber","TouchBarSegmentedControl","TouchBarSlider","TouchBarSpacer","TouchBarOtherItemsProxy","TouchBarButtonConstructorOptions","TouchBarColorPickerConstructorOptions","TouchBarGroupConstructorOptions","TouchBarLabelConstructorOptions","TouchBarPopoverConstructorOptions","TouchBarScrubberConstructorOptions","ScrubberItem","TouchBarSegmentedControlConstructorOptions","SegmentedControlSegment","TouchBarSliderConstructorOptions","TouchBarSpacerConstructorOptions","Payment","KeyboardEvent","DisplayBalloonOptions","TitleOptions","ForkOptions","UtilityProcess","WebContentsAudioStateChangedEventParams","Input","ContextMenuParams","DidCreateWindowDetails","WebContentsDidRedirectNavigationEventParams","WebContentsDidStartNavigationEventParams","Result","FrameCreatedDetails","LoginAuthenticationResponseDetails","BluetoothDevice","WebContentsWillFrameNavigateEventParams","WebContentsWillNavigateEventParams","WebContentsWillRedirectEventParams","AdjustSelectionOptions","CloseOpts","Parameters","WebSource","FindInPageOptions","SharedWorkerInfo","PrinterInfo","WebRTCUDPPortRange","InsertCSSOptions","OpenDevToolsOptions","WebContentsPrintOptions","PrintToPDFOptions","MouseWheelInputEvent","KeyboardInputEvent","UdpPortRange","HandlerDetails","WindowOpenHandlerResponse","Item","Debugger","IpcMain","NavigationHistory","WebContentsViewConstructorOptions","WebFrame","ResourceUsage","Info","Provider","DefaultFontFamily","WebRequestFilter","OnBeforeRedirectListenerDetails","OnBeforeRequestListenerDetails","CallbackResponse","OnBeforeSendHeadersListenerDetails","BeforeSendResponse","OnCompletedListenerDetails","OnErrorOccurredListenerDetails","OnHeadersReceivedListenerDetails","HeadersReceivedResponse","OnResponseStartedListenerDetails","OnSendHeadersListenerDetails","File","LoadCommitEvent","DidFailLoadEvent","DidFrameFinishLoadEvent","PageTitleUpdatedEvent","PageFaviconUpdatedEvent","ConsoleMessageEvent","FoundInPageEvent","WillNavigateEvent","WillFrameNavigateEvent","DidStartNavigationEvent","DidRedirectNavigationEvent","DidNavigateEvent","DidFrameNavigateEvent","DidNavigateInPageEvent","IpcMessageEvent","RenderProcessGoneEvent","PluginCrashedEvent","DidChangeThemeColorEvent","UpdateTargetUrlEvent","DevtoolsOpenUrlEvent","DevtoolsSearchQueryEvent","ContextMenuEvent","HTMLElementEventMap","HTMLElement","EventListenerOrEventListenerObject","WebviewTagPrintOptions","Uint8Array","Referrer","MediaFlags","EditFlags","HIDDevice","PostBody","Env","FoundInPageResult","LaunchItems","AbortSignal","FileFilter","PaymentDiscount","Margins","MemoryUsageDetails","Video","PageRanges","Clipboard","CrashReporter","Shell","BlinkMemoryInfo","HeapStatistics","SystemMemoryInfo","ExtensionInfo","FilePathWithHeaders","MimeTypedBuffer","ProcessMemoryInfo","Transaction","App","AutoUpdater","ContentTracing","DesktopCapturer","Dialog","GlobalShortcut","InAppPurchase","MessageChannelMain","NativeTheme","Net","Notification","PowerMonitor","PowerSaveBlocker","PushNotifications","SafeStorage","Screen","ShareMenu","SystemPreferences","Tray","WebContentsView","ContextBridge","WebUtils","WebviewTag","ParentPort","preventDefault","defaultPrevented","on","event","accessibilitySupportEnabled","listener","off","once","addListener","removeListener","hasVisibleWindows","type","userInfo","window","webContents","url","error","certificate","isTrusted","callback","isMainFrame","details","authenticationResponseDetails","authInfo","username","password","path","exitCode","launchInfo","argv","workingDirectory","additionalData","certificateList","session","addRecentDocument","clearRecentDocuments","configureHostResolver","options","disableDomainBlockingFor3DAPIs","disableHardwareAcceleration","enableSandbox","exit","focus","getApplicationInfoForProtocol","getApplicationNameForProtocol","getAppMetrics","getAppPath","getBadgeCount","getCurrentActivityType","getFileIcon","getGPUFeatureStatus","getGPUInfo","infoType","getJumpListSettings","getLocale","getLocaleCountryCode","getLoginItemSettings","getName","getPath","name","getPreferredSystemLanguages","getSystemLocale","getVersion","hasSingleInstanceLock","hide","importCertificate","result","invalidateCurrentActivity","isAccessibilitySupportEnabled","isDefaultProtocolClient","protocol","args","isEmojiPanelSupported","isHidden","isInApplicationsFolder","isReady","isSecureKeyboardEntryEnabled","isUnityRunning","moveToApplicationsFolder","quit","relaunch","releaseSingleInstanceLock","removeAsDefaultProtocolClient","requestSingleInstanceLock","resignCurrentActivity","resolveProxy","setAboutPanelOptions","setAccessibilitySupportEnabled","enabled","setActivationPolicy","policy","setAppLogsPath","setAppUserModelId","id","setAsDefaultProtocolClient","setBadgeCount","count","setJumpList","categories","setLoginItemSettings","settings","setName","setPath","setProxy","config","setSecureKeyboardEntryEnabled","setUserActivity","webpageURL","setUserTasks","tasks","show","showAboutPanel","showEmojiPanel","startAccessingSecurityScopedResource","bookmarkData","updateCurrentActivity","whenReady","applicationMenu","badgeCount","commandLine","dock","isPackaged","runningUnderARM64Translation","userAgentFallback","releaseNotes","releaseName","releaseDate","updateURL","checkForUpdates","getFeedURL","quitAndInstall","setFeedURL","isAlwaysOnTop","command","rotation","direction","point","newBounds","constructor","fromId","getAllWindows","getFocusedWindow","addTabbedWindow","baseWindow","blur","center","close","closeFilePreview","destroy","flashFrame","flag","getBackgroundColor","getBounds","getChildWindows","getContentBounds","getContentSize","getContentView","getMaximumSize","getMediaSourceId","getMinimumSize","getNativeWindowHandle","getNormalBounds","getOpacity","getParentWindow","getPosition","getRepresentedFilename","getSize","getTitle","getWindowButtonPosition","hasShadow","hookWindowMessage","message","wParam","lParam","invalidateShadow","isClosable","isDestroyed","isDocumentEdited","isEnabled","isFocusable","isFocused","isFullScreen","isFullScreenable","isHiddenInMissionControl","isKiosk","isMaximizable","isMaximized","isMenuBarAutoHide","isMenuBarVisible","isMinimizable","isMinimized","isModal","isMovable","isNormal","isResizable","isSimpleFullScreen","isTabletMode","isVisible","isVisibleOnAllWorkspaces","isWindowMessageHooked","maximize","mergeAllWindows","minimize","moveAbove","mediaSourceId","moveTabToNewWindow","moveTop","previewFile","displayName","removeMenu","restore","selectNextTab","selectPreviousTab","setAlwaysOnTop","level","relativeLevel","setAppDetails","setAspectRatio","aspectRatio","extraSize","setAutoHideCursor","autoHide","setAutoHideMenuBar","setBackgroundColor","backgroundColor","setBackgroundMaterial","material","setBounds","bounds","animate","setClosable","closable","setContentBounds","setContentProtection","enable","setContentSize","width","height","setContentView","view","setDocumentEdited","edited","setEnabled","setFocusable","focusable","setFullScreen","setFullScreenable","fullscreenable","setHasShadow","setHiddenInMissionControl","hidden","setIcon","icon","setIgnoreMouseEvents","ignore","setKiosk","setMaximizable","maximizable","setMaximumSize","setMenu","menu","setMenuBarVisibility","visible","setMinimizable","minimizable","setMinimumSize","setMovable","movable","setOpacity","opacity","setOverlayIcon","overlay","description","setParentWindow","parent","setPosition","x","y","setProgressBar","progress","setRepresentedFilename","filename","setResizable","resizable","setShape","rects","setSheetOffset","offsetY","offsetX","setSimpleFullScreen","setSize","setSkipTaskbar","skip","setThumbarButtons","buttons","setThumbnailClip","region","setThumbnailToolTip","toolTip","setTitle","title","setTitleBarOverlay","setTouchBar","touchBar","setVibrancy","setVisibleOnAllWorkspaces","setWindowButtonPosition","position","setWindowButtonVisibility","showAllTabs","showInactive","toggleTabBar","unhookAllWindowMessages","unhookWindowMessage","unmaximize","accessibleTitle","autoHideMenuBar","contentView","documentEdited","excludedFromShownWindowsMenu","fullScreen","fullScreenable","kiosk","menuBarVisible","representedFilename","shadow","simpleFullScreen","tabbingIdentifier","visibleOnAllWorkspaces","acceptFirstMouse","alwaysOnTop","backgroundMaterial","darkTheme","disableAutoHideCursor","enableLargerThanScreen","frame","fullscreen","hiddenInMissionControl","maxHeight","maxWidth","minHeight","minWidth","modal","roundedCorners","simpleFullscreen","skipTaskbar","thickFrame","titleBarOverlay","titleBarStyle","trafficLightPosition","transparent","useContentSize","vibrancy","visualEffectState","zoomToPageWidth","deviceId","deviceName","setAutoResize","color","explicitSet","fromBrowserView","browserView","fromWebContents","addBrowserView","browserWindow","blurWebView","capturePage","rect","opts","focusOnWebView","getBrowserView","getBrowserViews","loadFile","filePath","loadURL","reload","removeBrowserView","setBrowserView","setTopBrowserView","showDefinitionForSelection","paintWhenInitiallyHidden","webPreferences","data","fingerprint","issuer","issuerCert","issuerName","serialNumber","subject","subjectName","validExpiry","validStart","commonName","country","locality","organizations","organizationUnits","state","statusCode","method","redirectUrl","responseHeaders","response","abort","end","chunk","encoding","followRedirect","getHeader","getUploadProgress","removeHeader","setHeader","value","write","chunkedEncoding","availableFormats","clear","has","format","read","readBookmark","readBuffer","readFindText","readHTML","readImage","readRTF","readText","writeBookmark","writeBuffer","buffer","writeFindText","text","writeHTML","markup","writeImage","image","writeRTF","writeText","appendArgument","appendSwitch","the_switch","getSwitchValue","hasSwitch","removeSwitch","getCategories","getTraceBufferUsage","startRecording","stopRecording","resultFilePath","exposeInIsolatedWorld","worldId","apiKey","api","exposeInMainWorld","domain","expirationDate","hostOnly","httpOnly","sameSite","secure","cookie","cause","removed","flushStore","get","filter","remove","set","cumulativeCPUUsage","idleWakeupsPerSecond","percentCPUUsage","date","addExtraParameter","key","getLastCrashReport","getParameters","getUploadedReports","getUploadToServer","removeExtraParameter","setUploadToServer","uploadToServer","start","privileges","scheme","reason","params","sessionId","attach","protocolVersion","detach","isAttached","sendCommand","commandParams","getSources","appIcon","display_id","thumbnail","showCertificateTrustDialog","showErrorBox","content","showMessageBox","showMessageBoxSync","showOpenDialog","showOpenDialogSync","showSaveDialog","showSaveDialogSync","accelerometerSupport","colorDepth","colorSpace","depthPerComponent","detected","displayFrequency","internal","label","maximumCursorSize","monochrome","nativeOrigin","scaleFactor","size","touchSupport","workArea","workAreaSize","bounce","cancelBounce","downloadFinished","getBadge","getMenu","setBadge","cancel","canResume","getContentDisposition","getCurrentBytesPerSecond","getEndTime","getETag","getFilename","getLastModifiedTime","getMimeType","getPercentComplete","getReceivedBytes","getSaveDialogOptions","getSavePath","getStartTime","getState","getTotalBytes","getURL","getURLChain","hasUserGesture","isPaused","pause","resume","setSaveDialogOptions","setSavePath","savePath","manifest","version","extensions","headers","fileAccessType","isDirectory","isRegistered","accelerator","register","registerAll","accelerators","unregister","unregisterAll","flash_3d","flash_stage3d","flash_stage3d_baseline","gpu_compositing","multiple_raster_threads","native_gpu_memory_buffers","rasterization","video_decode","video_encode","vpx_decode","webgl","webgl2","guid","productId","vendorId","canMakePayments","finishAllTransactions","finishTransactionByDate","getProducts","productIDs","getReceiptURL","purchaseProduct","productID","restoreCompletedTransactions","httpVersion","httpVersionMajor","httpVersionMinor","rawHeaders","statusMessage","modifiers","handle","channel","handleOnce","removeAllListeners","removeHandler","frameId","ports","processId","reply","returnValue","sender","senderFrame","invoke","postMessage","transfer","send","sendSync","sendToHost","items","iconIndex","iconPath","program","altKey","ctrlKey","metaKey","shiftKey","triggeredByAccelerator","keyCode","mediaTypes","securityOrigin","peakWorkingSetSize","privateBytes","workingSetSize","liveSize","buildFromTemplate","template","getApplicationMenu","sendActionToFirstResponder","action","setApplicationMenu","append","menuItem","closePopup","getMenuItemById","insert","pos","popup","checked","click","commandId","registerAccelerator","role","sharingItem","sublabel","submenu","userAccelerator","port1","port2","messageEvent","charset","mimeType","button","clickCount","globalX","globalY","movementX","movementY","accelerationRatioX","accelerationRatioY","canScroll","deltaX","deltaY","hasPreciseScrollingDeltas","wheelTicksX","wheelTicksY","createEmpty","createFromBitmap","createFromBuffer","createFromDataURL","dataURL","createFromNamedImage","imageName","hslShift","createFromPath","createThumbnailFromPath","addRepresentation","crop","getAspectRatio","getBitmap","getNativeHandle","getScaleFactors","isEmpty","isTemplateImage","resize","setTemplateImage","option","toBitmap","toDataURL","toJPEG","quality","toPNG","isMacTemplateImage","inForcedColorsMode","prefersReducedTransparency","shouldUseDarkColors","shouldUseHighContrastColors","shouldUseInvertedColorScheme","themeSource","canGoBack","canGoForward","canGoToOffset","offset","getActiveIndex","getEntryAtIndex","index","goBack","goForward","goToIndex","goToOffset","length","fetch","input","bypassCustomProtocolHandlers","init","isOnline","request","resolveHost","host","online","startLogging","stopLogging","currentlyLogging","isSupported","actions","body","closeButtonText","hasReply","replyPlaceholder","silent","sound","subtitle","timeoutType","toastXml","urgency","actionIdentifier","identifier","userText","externalURL","keyIdentifier","nonce","signature","timestamp","requestingUrl","boundary","contentType","getCurrentThermalState","getSystemIdleState","idleThreshold","getSystemIdleTime","isOnBatteryPower","onBatteryPower","isStarted","stop","isDefault","status","private","residentSet","shared","cpu","creationTime","integrityLevel","memory","pid","sandboxed","serviceName","currencyCode","discounts","downloadContentLengths","downloadContentVersion","formattedPrice","introductoryPrice","isDownloadable","localizedDescription","localizedTitle","price","productIdentifier","subscriptionGroupIdentifier","subscriptionPeriod","numberOfPeriods","paymentMode","priceLocale","numberOfUnits","unit","handler","interceptBufferProtocol","interceptFileProtocol","interceptHttpProtocol","interceptStreamProtocol","interceptStringProtocol","isProtocolHandled","isProtocolIntercepted","isProtocolRegistered","registerBufferProtocol","registerFileProtocol","registerHttpProtocol","registerSchemesAsPrivileged","customSchemes","registerStreamProtocol","registerStringProtocol","unhandle","uninterceptProtocol","unregisterProtocol","referrer","uploadData","mode","pacScript","proxyBypassRules","proxyRules","registerForAPNSNotifications","unregisterForAPNSNotifications","address","family","endpoints","decryptString","encrypted","encryptString","plainText","getSelectedStorageBackend","isEncryptionAvailable","setUsePlainTextEncryption","usePlainText","newDisplay","display","changedMetrics","oldDisplay","dipToScreenPoint","dipToScreenRect","getAllDisplays","getCursorScreenPoint","getDisplayMatching","getDisplayNearestPoint","getPrimaryDisplay","screenToDipPoint","screenToDipRect","deviceInstanceId","portId","portName","usbDriverName","renderProcessId","scope","scriptUrl","messageDetails","getAllRunning","getFromVersionID","versionId","fromPartition","partition","fromPath","defaultSession","extension","preconnectUrl","allowCredentials","portList","port","languageCode","device","item","addWordToSpellCheckerDictionary","word","allowNTLMCredentialsForDomains","domains","clearAuthCache","clearCache","clearCodeCaches","clearData","clearHostResolverCache","clearStorageData","closeAllConnections","createInterruptedDownload","disableNetworkEmulation","downloadURL","enableNetworkEmulation","flushStorageData","forceReloadProxyConfig","getAllExtensions","getBlobData","getCacheSize","getExtension","extensionId","getPreloads","getSpellCheckerLanguages","getStoragePath","getUserAgent","isPersistent","isSpellCheckerEnabled","listWordsInSpellCheckerDictionary","loadExtension","preconnect","removeExtension","removeWordFromSpellCheckerDictionary","setBluetoothPairingHandler","setCertificateVerifyProc","verificationResult","proc","setCodeCachePath","setDevicePermissionHandler","setDisplayMediaRequestHandler","streams","setDownloadPath","setPermissionCheckHandler","permission","requestingOrigin","setPermissionRequestHandler","permissionGranted","setPreloads","preloads","setSpellCheckerDictionaryDownloadURL","setSpellCheckerEnabled","setSpellCheckerLanguages","languages","setSSLConfig","setUSBProtectedClassesHandler","setUserAgent","userAgent","acceptLanguages","availableSpellCheckerLanguages","cookies","netLog","serviceWorkers","spellCheckerEnabled","storagePath","webRequest","filePaths","texts","urls","beep","openExternal","openPath","readShortcutLink","shortcutPath","showItemInFolder","fullPath","trashItem","writeShortcutLink","operation","appUserModelId","cwd","target","toastActivatorClsid","newColor","askForMediaAccess","mediaType","canPromptTouchID","getAccentColor","getAnimationSettings","getColor","getEffectiveAppearance","getMediaAccessStatus","getSystemColor","getUserDefault","isAeroGlassEnabled","isSwipeTrackingFromScrollEventsEnabled","isTrustedAccessibilityClient","prompt","postLocalNotification","postNotification","deliverImmediately","postWorkspaceNotification","promptTouchID","registerDefaults","defaults","removeUserDefault","setUserDefault","subscribeLocalNotification","object","subscribeNotification","subscribeWorkspaceNotification","unsubscribeLocalNotification","unsubscribeNotification","unsubscribeWorkspaceNotification","accessibilityDisplayShouldReduceTransparency","effectiveAppearance","arguments","flags","tooltip","escapeItem","accessibilityLabel","iconPosition","availableColors","selectedColor","textColor","continuous","overlayStyle","selectedStyle","showArrowButtons","segments","segmentStyle","selectedIndex","maxValue","minValue","categoryFilter","traceOptions","enable_argument_filter","excluded_categories","histogram_names","included_categories","included_process_ids","memory_dump_config","recording_mode","trace_buffer_size_in_events","trace_buffer_size_in_kb","errorCode","errorMessage","originalTransactionIdentifier","payment","transactionDate","transactionIdentifier","transactionState","files","closeContextMenu","displayBalloon","getIgnoreDoubleClickEvents","popUpContextMenu","removeBalloon","setContextMenu","setIgnoreDoubleClickEvents","setImage","setPressedImage","setToolTip","blobUUID","bytes","file","modificationTime","deviceClass","deviceProtocol","deviceSubclass","deviceVersionMajor","deviceVersionMinor","deviceVersionSubminor","manufacturerName","productName","usbVersionMajor","usbVersionMinor","usbVersionSubminor","array","boolean","dictionary","double","float","integer","string","fork","modulePath","code","kill","stderr","stdout","addChildView","removeChildView","setVisible","children","fromDevToolsTargetId","targetId","fromFrame","getAllWebContents","getFocusedWebContents","line","sourceId","scale","hotspot","query","errorDescription","validatedURL","frameProcessId","frameRoutingId","httpResponseCode","httpStatusText","isInPlace","inputEvent","favicons","dirtyRect","preferredSize","preloadPath","devices","zoomDirection","addWorkSpace","adjustSelection","beginFrameSubscription","onlyDirty","centerSelection","clearHistory","closeDevTools","copy","copyImageAt","cut","delete","disableDeviceEmulation","enableDeviceEmulation","parameters","endFrameSubscription","executeJavaScript","userGesture","executeJavaScriptInIsolatedWorld","scripts","findInPage","forcefullyCrashRenderer","getAllSharedWorkers","getBackgroundThrottling","getDevToolsTitle","getFrameRate","requestWebContents","getOSProcessId","getPrintersAsync","getProcessId","getType","getWebRTCIPHandlingPolicy","getWebRTCUDPPortRange","getZoomFactor","getZoomLevel","insertCSS","css","insertText","inspectElement","inspectServiceWorker","inspectSharedWorker","inspectSharedWorkerById","workerId","invalidate","isAudioMuted","isBeingCaptured","isCrashed","isCurrentlyAudible","isDevToolsFocused","isDevToolsOpened","isLoading","isLoadingMainFrame","isOffscreen","isPainting","isWaitingForResponse","openDevTools","paste","pasteAndMatchStyle","print","success","failureReason","printToPDF","redo","reloadIgnoringCache","removeInsertedCSS","removeWorkSpace","replace","replaceMisspelling","savePage","saveType","scrollToBottom","scrollToTop","selectAll","sendInputEvent","sendToFrame","setAudioMuted","muted","setBackgroundThrottling","allowed","setDevToolsTitle","setDevToolsWebContents","devToolsWebContents","setFrameRate","fps","setIgnoreMenuShortcuts","setImageAnimationPolicy","setVisualZoomLevelLimits","minimumLevel","maximumLevel","setWebRTCIPHandlingPolicy","setWebRTCUDPPortRange","udpPortRange","setWindowOpenHandler","setZoomFactor","factor","setZoomLevel","startDrag","startPainting","stopFindInPage","stopPainting","takeHeapSnapshot","toggleDevTools","undo","unselect","audioMuted","backgroundThrottling","debugger","frameRate","hostWebContents","ipc","mainFrame","navigationHistory","opener","zoomFactor","zoomLevel","findFrameByName","findFrameByRoutingId","routingId","getFrameForSelector","selector","getResourceUsage","getWordSuggestions","isWordMisspelled","setIsolatedWorldInfo","info","setSpellCheckProvider","language","provider","firstChild","nextSibling","top","frames","framesInSubtree","frameTreeNodeId","origin","osProcessId","visibilityState","additionalArguments","allowRunningInsecureContent","autoplayPolicy","contextIsolation","defaultEncoding","defaultFontFamily","defaultFontSize","defaultMonospaceFontSize","devTools","disableBlinkFeatures","disableDialogs","disableHtmlFullscreenWindowResize","enableBlinkFeatures","enablePreferredSizeMode","enableWebSQL","experimentalFeatures","imageAnimationPolicy","images","javascript","minimumFontSize","navigateOnDragDrop","nodeIntegration","nodeIntegrationInSubFrames","nodeIntegrationInWorker","offscreen","plugins","preload","safeDialogs","safeDialogsMessage","sandbox","scrollBounce","spellcheck","textAreasAreResizable","v8CacheOptions","webSecurity","webviewTag","onBeforeRedirect","onBeforeRequest","onBeforeSendHeaders","beforeSendResponse","onCompleted","onErrorOccurred","onHeadersReceived","headersReceivedResponse","onResponseStarted","onSendHeaders","types","getPathForFile","addEventListener","useCapture","removeEventListener","this","ev","getWebContentsId","allowpopups","disableblinkfeatures","disablewebsecurity","enableblinkfeatures","httpreferrer","nodeintegration","nodeintegrationinsubframes","src","useragent","webpreferences","createWindow","outlivesOpener","overrideBrowserWindowOptions","applicationName","applicationVersion","copyright","credits","authors","website","shouldRenderRichAnimation","scrollAnimationsEnabledBySystem","prefersReducedMotion","appId","appIconPath","appIconIndex","relaunchCommand","relaunchDisplayName","isProxy","realm","horizontal","vertical","requestHeaders","allocated","total","pairingKind","pin","redirectURL","dataTypes","origins","excludeOrigins","avoidClosingConnections","originMatchingMode","storages","quotas","credentials","useSessionCookies","hostname","redirect","referrerPolicy","cache","waitForBeforeUnload","minVersion","maxVersion","disabledCipherSuites","enableBuiltInResolver","secureDnsMode","secureDnsServers","enableAdditionalDnsQueryTypes","linkURL","linkText","pageURL","frameURL","srcURL","hasImageContents","isEditable","selectionText","titleText","altText","suggestedFilename","selectionRect","selectionStartOffset","misspelledWord","dictionarySuggestions","frameCharset","formControlType","spellcheckEnabled","menuSourceType","mediaFlags","editFlags","submitURL","companyName","ignoreSystemCrashHandler","rateLimit","compress","extra","globalExtra","urlChain","lastModified","eTag","startTime","html","rtf","bookmark","standard","serif","sansSerif","monospace","cursive","fantasy","math","deviceType","themeColor","frameName","postBody","disposition","iconType","largeIcon","noSound","respectQuietTime","videoRequested","audioRequested","useSystemPicker","offline","latency","downloadThroughput","uploadThroughput","serverType","forward","findNext","matchCase","steal","env","execArgv","stdio","allowLoadingUnsignedLibraries","respondToAuthRequestsFromMainProcess","features","statusLine","totalHeapSize","totalHeapSizeExecutable","totalPhysicalSize","totalAvailableSize","usedHeapSize","heapSizeLimit","mallocedMemory","peakMallocedMemory","doesZapGarbage","csp","isAutoRepeat","isComposing","shift","control","alt","meta","location","cssOrigin","minItems","removedItems","allowFileAccess","search","hash","httpReferrer","extraHeaders","postData","baseURLForDataURL","openAtLogin","openAsHidden","wasOpenedAtLogin","wasOpenedAsHidden","restoreState","executableWillLaunchAtLogin","launchItems","acceleratorWorksWhenHidden","before","after","beforeGroupContaining","afterGroupContaining","defaultId","signal","detail","checkboxLabel","checkboxChecked","textWidth","cancelId","noLink","normalizeAccessKeys","source","sourceUrl","lineNumber","conflictHandler","conflictType","webContentsId","resourceType","ip","fromCache","activate","defaultPath","buttonLabel","filters","properties","securityScopedBookmarks","canceled","bookmarks","logUsage","stayHidden","stayAwake","screenPosition","screenSize","viewPosition","deviceScaleFactor","viewSize","quantity","applicationUsername","paymentDiscount","embeddingOrigin","positioningItem","sourceType","numSockets","landscape","displayHeaderFooter","printBackground","pageSize","margins","pageRanges","headerTemplate","footerTemplate","preferCSSPageSize","generateTaggedPDF","generateDocumentOutline","bypassCSP","allowServiceWorkers","supportFetchAPI","corsEnabled","stream","codeCache","spellCheck","words","misspeltWords","execPath","validatedCertificate","isIssuedByKnownRoot","queryType","cacheUsage","secureDnsPolicy","cssStyleSheets","xslStyleSheets","fonts","other","confirmed","requestId","activeMatchOrdinal","matches","selectionArea","finalUpdate","nameFieldLabel","showsTagField","deviceList","thumbnailSize","fetchWindowIcons","captureMode","maxFileSize","video","audio","enableLocalEcho","free","swapTotal","swapFree","symbolColor","fontType","change","showCloseButton","select","highlight","highlightedIndex","isSelected","newValue","percentage","min","max","active","started","current","protectedClasses","visibleOnFullScreen","skipTransformProcessType","audible","isSameDocument","initiator","pagesPerSheet","collate","copies","duplexMode","dpi","header","footer","edge","canUndo","canRedo","canCut","canCopy","canPaste","canDelete","canSelectAll","canEditRichly","marginType","bottom","left","right","inError","isMuted","hasAudio","isLooping","isControlsVisible","canToggleControls","canPrint","canSave","canShowPictureInPicture","isShowingPictureInPicture","canRotate","canLoop","from","to","Common","clipboard","crashReporter","nativeImage","shell","Main","app","autoUpdater","contentTracing","desktopCapturer","dialog","globalShortcut","inAppPurchase","ipcMain","nativeTheme","net","powerMonitor","powerSaveBlocker","pushNotifications","safeStorage","screen","systemPreferences","utilityProcess","webFrameMain","Renderer","contextBridge","ipcRenderer","webFrame","webUtils","Utility","CrossProcessExports","parentPort","_0","sideEffect","_1","_2","_3","_4","NodeRequireFunction","moduleName","NodeRequire","_5","fs","_6","Document","createElement","tagName","Process","eventName","crash","getBlinkMemoryInfo","getCPUUsage","getCreationTime","getHeapStatistics","getProcessMemoryInfo","getSystemMemoryInfo","getSystemVersion","hang","setFdLimit","maxDescriptors","chrome","contextId","contextIsolated","defaultApp","electron","mas","noAsar","noDeprecation","resourcesPath","throwDeprecation","traceDeprecation","traceProcessWarnings","windowsStore","ProcessVersions"],"sources":["../src/context.ts","../src/websocket-server.ts","../src/ipc-core.ts","../src/handlers/shell.ts","../src/handlers/fs.ts","../src/handlers/config.ts","../src/handlers/history.ts","../src/handlers/engine.ts","../src/handlers/agents.ts","../src/handlers/index.ts","../src/config.ts","../src/api.ts","../src/handler-func.ts","../src/utils.ts","../src/plugins-registry.ts","../src/utils/remote.ts","../src/utils/fs-extras.ts","../../../node_modules/electron/electron.d.ts","../src/types/runner.ts","../src/runner.ts","../src/migrations.ts","../src/server.ts"],"x_google_ignoreList":[17],"mappings":"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"}
|