@pipelab/core-node 1.0.0-beta.2 → 1.0.0-beta.21
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/.oxfmtrc.json +1 -1
- package/CHANGELOG.md +164 -0
- package/dist/config-Bi0ORcTK.mjs +2 -0
- package/dist/config-CFgGRD9U.mjs +265 -0
- package/dist/config-CFgGRD9U.mjs.map +1 -0
- package/dist/index.d.mts +74 -53
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1705 -576
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -5
- package/scratch/simulate-updates.ts +120 -0
- package/src/config.test.ts +232 -0
- package/src/config.ts +111 -50
- package/src/context.ts +117 -5
- package/src/handler-func.ts +2 -77
- package/src/handlers/build-history.ts +60 -90
- package/src/handlers/config.ts +265 -55
- package/src/handlers/engine.ts +32 -35
- package/src/handlers/history.ts +0 -40
- package/src/handlers/index.ts +4 -0
- package/src/handlers/migration.ts +621 -0
- package/src/handlers/plugins.ts +305 -0
- package/src/handlers/system.ts +7 -2
- package/src/index.ts +9 -2
- package/src/plugins-registry.ts +280 -38
- package/src/presets/c3toSteam.ts +13 -7
- package/src/presets/demo.ts +9 -9
- package/src/presets/list.ts +0 -6
- package/src/presets/moreToCome.ts +3 -2
- package/src/presets/newProject.ts +3 -2
- package/src/presets/test-c3-offline.ts +15 -6
- package/src/presets/test-c3-unzip.ts +19 -8
- package/src/runner.ts +2 -8
- package/src/server.ts +45 -4
- package/src/types/runner.ts +2 -30
- package/src/utils/fs-extras.ts +6 -24
- package/src/utils/github.test.ts +211 -0
- package/src/utils/github.ts +90 -10
- package/src/utils/remote.test.ts +209 -0
- package/src/utils/remote.ts +325 -87
- package/src/utils/storage.ts +2 -1
- package/src/utils.ts +20 -24
- package/src/migrations.ts +0 -72
- package/src/presets/if.ts +0 -69
- package/src/presets/loop.ts +0 -65
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
import { SandboxFolder } from "@pipelab/constants";
|
|
2
3
|
import { WebSocket } from "ws";
|
|
3
|
-
import { Action, Agent,
|
|
4
|
+
import { Action, Agent, BuildHistoryEntry, Channels, End, Event as Event$1, Events, Expression, ExtractInputsFromAction, ExtractInputsFromEvent, ExtractInputsFromExpression, HandleListenerRendererSendFn, IBuildHistoryStorage, IpcMessage, RendererChannels, RendererData, RendererEnd, RendererEvents, RendererMessage, RequestId, SetOutputActionFn, SetOutputExpressionFn, UpdateStatus, Variable, WebSocketConnectionState, WebSocketEvent, WebSocketHandler, WebSocketSendFunction } from "@pipelab/shared";
|
|
4
5
|
import * as execa$1 from "execa";
|
|
5
6
|
import { Options as Options$1, Subprocess } from "execa";
|
|
6
7
|
import * as http$1 from "http";
|
|
@@ -8,17 +9,45 @@ import http from "http";
|
|
|
8
9
|
|
|
9
10
|
//#region src/context.d.ts
|
|
10
11
|
declare const isDev: boolean;
|
|
11
|
-
|
|
12
|
+
type PipelabEnv = "dev" | "beta" | "prod";
|
|
13
|
+
declare const getDefaultUserDataPath: (env?: PipelabEnv) => string;
|
|
12
14
|
declare const projectRoot: string | null;
|
|
15
|
+
declare const CacheFolder: {
|
|
16
|
+
readonly Actions: "actions";
|
|
17
|
+
readonly Pipelines: "pipelines";
|
|
18
|
+
readonly Pacote: "pacote";
|
|
19
|
+
};
|
|
20
|
+
type CacheFolderType = (typeof CacheFolder)[keyof typeof CacheFolder];
|
|
13
21
|
interface PipelabContextOptions {
|
|
14
22
|
userDataPath: string;
|
|
23
|
+
releaseTag?: string;
|
|
15
24
|
}
|
|
16
25
|
declare class PipelabContext {
|
|
17
26
|
readonly userDataPath: string;
|
|
27
|
+
readonly releaseTag: string;
|
|
18
28
|
constructor(options: PipelabContextOptions);
|
|
19
29
|
getPackagesPath(...subpaths: string[]): string;
|
|
20
30
|
getThirdPartyPath(...subpaths: string[]): string;
|
|
21
31
|
getConfigPath(...subpaths: string[]): string;
|
|
32
|
+
getSettingsPath(): string;
|
|
33
|
+
getConnectionsPath(): string;
|
|
34
|
+
getProjectsPath(): string;
|
|
35
|
+
private _cachedSettings;
|
|
36
|
+
private _cachedSettingsTime;
|
|
37
|
+
private getSettings;
|
|
38
|
+
getTempPath(...subpaths: string[]): string;
|
|
39
|
+
createTempFolder(prefix?: string): Promise<string>;
|
|
40
|
+
getCachePath(): string;
|
|
41
|
+
getCachePath(folder: CacheFolderType, ...subpaths: string[]): string;
|
|
42
|
+
getPnpmPath(...subpaths: string[]): string;
|
|
43
|
+
getBuildHistoryPath(...subpaths: string[]): string;
|
|
44
|
+
getNodePath(version?: any): string;
|
|
45
|
+
getPnpmBinPath(version?: any): string;
|
|
46
|
+
getSandboxFolders(): Array<{
|
|
47
|
+
name: SandboxFolder;
|
|
48
|
+
label: string;
|
|
49
|
+
path: string;
|
|
50
|
+
}>;
|
|
22
51
|
}
|
|
23
52
|
//#endregion
|
|
24
53
|
//#region src/websocket-server.d.ts
|
|
@@ -94,7 +123,6 @@ declare class BuildHistoryStorage implements IBuildHistoryStorage {
|
|
|
94
123
|
private ensureStoragePath;
|
|
95
124
|
private loadPipelineHistory;
|
|
96
125
|
private savePipelineHistory;
|
|
97
|
-
applyRetentionPolicy(): Promise<void>;
|
|
98
126
|
save(entry: BuildHistoryEntry): Promise<void>;
|
|
99
127
|
get(id: string, pipelineId?: string): Promise<BuildHistoryEntry | undefined>;
|
|
100
128
|
getAll(): Promise<BuildHistoryEntry[]>;
|
|
@@ -110,18 +138,19 @@ declare class BuildHistoryStorage implements IBuildHistoryStorage {
|
|
|
110
138
|
newestEntry?: number;
|
|
111
139
|
numberOfPipelines: number;
|
|
112
140
|
userDataPath: string;
|
|
113
|
-
retentionPolicy: {
|
|
114
|
-
enabled: boolean;
|
|
115
|
-
maxEntries: number;
|
|
116
|
-
maxAge: number;
|
|
117
|
-
};
|
|
118
141
|
disk: {
|
|
119
142
|
total: number;
|
|
120
143
|
free: number;
|
|
121
144
|
pipelab: number;
|
|
145
|
+
folders: Array<{
|
|
146
|
+
name: SandboxFolder;
|
|
147
|
+
label: string;
|
|
148
|
+
size: number;
|
|
149
|
+
}>;
|
|
122
150
|
};
|
|
123
151
|
}>;
|
|
124
152
|
private getAllPipelineFiles;
|
|
153
|
+
private parsePipelineIdFromFilename;
|
|
125
154
|
}
|
|
126
155
|
//#endregion
|
|
127
156
|
//#region src/handlers/index.d.ts
|
|
@@ -131,14 +160,28 @@ declare const registerAllHandlers: (options: {
|
|
|
131
160
|
}) => Promise<void>;
|
|
132
161
|
//#endregion
|
|
133
162
|
//#region src/config.d.ts
|
|
134
|
-
declare const
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
setConfig: (config:
|
|
140
|
-
getConfig: () => Promise<
|
|
163
|
+
declare const setupSettingsConfigFile: (context: PipelabContext) => Promise<{
|
|
164
|
+
setConfig: (config: AppConfig) => Promise<boolean>;
|
|
165
|
+
getConfig: () => Promise<AppConfig>;
|
|
166
|
+
}>;
|
|
167
|
+
declare const setupConnectionsConfigFile: (context: PipelabContext) => Promise<{
|
|
168
|
+
setConfig: (config: ConnectionsConfig) => Promise<boolean>;
|
|
169
|
+
getConfig: () => Promise<ConnectionsConfig>;
|
|
170
|
+
}>;
|
|
171
|
+
declare const setupProjectsConfigFile: (context: PipelabContext) => Promise<{
|
|
172
|
+
setConfig: (config: FileRepo) => Promise<boolean>;
|
|
173
|
+
getConfig: () => Promise<FileRepo>;
|
|
141
174
|
}>;
|
|
175
|
+
declare const setupPipelineConfigFileByName: (name: string, context: PipelabContext) => Promise<{
|
|
176
|
+
setConfig: (config: SavedFile) => Promise<boolean>;
|
|
177
|
+
getConfig: () => Promise<SavedFile>;
|
|
178
|
+
}>;
|
|
179
|
+
declare const setupPipelineConfigFileByPath: (absolutePath: string, context: PipelabContext) => Promise<{
|
|
180
|
+
setConfig: (config: SavedFile) => Promise<boolean>;
|
|
181
|
+
getConfig: () => Promise<SavedFile>;
|
|
182
|
+
}>;
|
|
183
|
+
declare const deletePipelineConfigFileByName: (name: string, context: PipelabContext) => Promise<void>;
|
|
184
|
+
declare const deletePipelineConfigFileByPath: (absolutePath: string, context: PipelabContext) => Promise<void>;
|
|
142
185
|
//#endregion
|
|
143
186
|
//#region src/api.d.ts
|
|
144
187
|
type HandleListenerRenderer<KEY extends RendererChannels> = (event: Electron.IpcMainInvokeEvent, data: {
|
|
@@ -154,7 +197,6 @@ declare const usePluginAPI: (browserWindow: any) => {
|
|
|
154
197
|
type UseMainAPI = ReturnType<typeof usePluginAPI>;
|
|
155
198
|
//#endregion
|
|
156
199
|
//#region src/handler-func.d.ts
|
|
157
|
-
declare const handleConditionExecute: (nodeId: string, pluginId: string, params: BlockCondition["params"], cwd: string, context: PipelabContext) => Promise<End<"condition:execute">>;
|
|
158
200
|
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">>;
|
|
159
201
|
//#endregion
|
|
160
202
|
//#region src/utils.d.ts
|
|
@@ -194,13 +236,21 @@ declare const executeGraphWithHistory: ({
|
|
|
194
236
|
declare const loadPipelabPlugin: (id: string, options: {
|
|
195
237
|
context: PipelabContext;
|
|
196
238
|
}) => Promise<any>;
|
|
239
|
+
declare const loadCustomPlugin: (packageName: string, version: string, options: {
|
|
240
|
+
context: PipelabContext;
|
|
241
|
+
}) => Promise<any>;
|
|
242
|
+
declare function findInstalledPlugins(packagesDir: string): Promise<Array<{
|
|
243
|
+
name: string;
|
|
244
|
+
version: string;
|
|
245
|
+
packageDir: string;
|
|
246
|
+
description: string;
|
|
247
|
+
}>>;
|
|
197
248
|
declare const builtInPlugins: (options: {
|
|
198
249
|
context: PipelabContext;
|
|
199
|
-
}) => Promise<
|
|
250
|
+
}) => Promise<void>;
|
|
200
251
|
//#endregion
|
|
201
252
|
//#region src/utils/remote.d.ts
|
|
202
|
-
declare
|
|
203
|
-
declare const DEFAULT_PNPM_VERSION = "10.12.0";
|
|
253
|
+
declare function isOnline(): Promise<boolean>;
|
|
204
254
|
type FetchOptions = {
|
|
205
255
|
installDeps?: boolean;
|
|
206
256
|
signal?: AbortSignal;
|
|
@@ -238,11 +288,11 @@ declare function runPnpm(cwd: string, options: {
|
|
|
238
288
|
/**
|
|
239
289
|
* Installs a specific version of Node.js if not already present.
|
|
240
290
|
*/
|
|
241
|
-
declare function ensureNodeJS(context: PipelabContext, version?:
|
|
291
|
+
declare function ensureNodeJS(context: PipelabContext, version?: any): Promise<string>;
|
|
242
292
|
/**
|
|
243
293
|
* Installs the PNPM package from npm if not already present.
|
|
244
294
|
*/
|
|
245
|
-
declare function ensurePNPM(context: PipelabContext, version?:
|
|
295
|
+
declare function ensurePNPM(context: PipelabContext, version?: any): Promise<string>;
|
|
246
296
|
declare function fetchPipelabAsset(packageName: string, versionOrRange: string, options: FetchOptions): Promise<string>;
|
|
247
297
|
declare function fetchPipelabPlugin(pluginName: string, versionOrRange: string, options: FetchOptions): Promise<{
|
|
248
298
|
packageDir: string;
|
|
@@ -260,10 +310,6 @@ declare function fetchPipelabCli(versionOrRange: string, options: FetchOptions):
|
|
|
260
310
|
* Ensures a directory exists and a file is created with default content if missing.
|
|
261
311
|
*/
|
|
262
312
|
declare const ensure: (filesPath: string, defaultContent?: string) => Promise<void>;
|
|
263
|
-
/**
|
|
264
|
-
* Generates a unique temporary folder.
|
|
265
|
-
*/
|
|
266
|
-
declare const generateTempFolder: (base?: string) => Promise<string>;
|
|
267
313
|
/**
|
|
268
314
|
* Extracts a .tar.gz archive.
|
|
269
315
|
*/
|
|
@@ -334,7 +380,7 @@ type ActionRunnerData<ACTION extends Action> = {
|
|
|
334
380
|
inputs: ExtractInputsFromAction<ACTION>;
|
|
335
381
|
setMeta: (callback: (data: ACTION["meta"]) => ACTION["meta"]) => void;
|
|
336
382
|
meta: ACTION["meta"];
|
|
337
|
-
cwd: string;
|
|
383
|
+
cwd: string; /** @deprecated Use `context` instead to resolve sandboxed folders and binary paths. */
|
|
338
384
|
paths: {
|
|
339
385
|
cache: string;
|
|
340
386
|
pnpm: string;
|
|
@@ -348,23 +394,6 @@ type ActionRunnerData<ACTION extends Action> = {
|
|
|
348
394
|
context: PipelabContext;
|
|
349
395
|
};
|
|
350
396
|
type ActionRunner<ACTION extends Action> = (data: ActionRunnerData<ACTION>) => Promise<void>;
|
|
351
|
-
type ConditionRunner<CONDITION extends Condition> = (data: {
|
|
352
|
-
log: typeof console.log;
|
|
353
|
-
inputs: ExtractInputsFromCondition<CONDITION>;
|
|
354
|
-
setMeta: (callback: (data: CONDITION["meta"]) => CONDITION["meta"]) => void;
|
|
355
|
-
meta: CONDITION["meta"];
|
|
356
|
-
cwd: string;
|
|
357
|
-
context: PipelabContext;
|
|
358
|
-
}) => Promise<boolean>;
|
|
359
|
-
type LoopRunner<LOOP extends Loop> = (data: {
|
|
360
|
-
log: typeof console.log;
|
|
361
|
-
setOutput: SetOutputLoopFn<LOOP>;
|
|
362
|
-
inputs: ExtractInputsFromLoop<LOOP>;
|
|
363
|
-
setMeta: (callback: (data: LOOP["meta"]) => LOOP["meta"]) => void;
|
|
364
|
-
meta: LOOP["meta"];
|
|
365
|
-
cwd: string;
|
|
366
|
-
context: PipelabContext;
|
|
367
|
-
}) => Promise<"step" | "exit">;
|
|
368
397
|
type ExpressionRunner<EXPRESSION extends Expression> = (data: {
|
|
369
398
|
log: typeof console.log;
|
|
370
399
|
setOutput: SetOutputExpressionFn<EXPRESSION>;
|
|
@@ -382,7 +411,7 @@ type EventRunner<EVENT extends Event$1> = (data: {
|
|
|
382
411
|
cwd: string;
|
|
383
412
|
context: PipelabContext;
|
|
384
413
|
}) => Promise<void>;
|
|
385
|
-
type Runner = ActionRunner<any> |
|
|
414
|
+
type Runner = ActionRunner<any> | EventRunner<any>;
|
|
386
415
|
//#endregion
|
|
387
416
|
//#region src/runner.d.ts
|
|
388
417
|
interface RunOptions {
|
|
@@ -393,14 +422,6 @@ interface RunOptions {
|
|
|
393
422
|
}
|
|
394
423
|
declare function runPipelineCommand(file: string, options: RunOptions, version: string): Promise<any>;
|
|
395
424
|
//#endregion
|
|
396
|
-
//#region src/migrations.d.ts
|
|
397
|
-
/**
|
|
398
|
-
* Registers migration handlers for the CLI/Standalone server.
|
|
399
|
-
* This overrides the default handlers from @pipelab/core-node to include
|
|
400
|
-
* pipeline and file repo migrations directly in the backend.
|
|
401
|
-
*/
|
|
402
|
-
declare function registerMigrationHandlers(context: PipelabContext): void;
|
|
403
|
-
//#endregion
|
|
404
425
|
//#region src/server.d.ts
|
|
405
426
|
interface ServeOptions {
|
|
406
427
|
port: string | number;
|
|
@@ -443,5 +464,5 @@ declare function fetchLatestPackageRelease(packageName: string, options?: FetchR
|
|
|
443
464
|
*/
|
|
444
465
|
declare function fetchLatestDesktopRelease(options?: FetchReleaseOptions): Promise<GitHubRelease | null>;
|
|
445
466
|
//#endregion
|
|
446
|
-
export { type Action, ActionRunner, ActionRunnerData, BuildHistoryStorage,
|
|
467
|
+
export { type Action, ActionRunner, ActionRunnerData, BuildHistoryStorage, CacheFolder, CacheFolderType, ConnectedClient, DownloadHooks, type Event$1 as Event, EventRunner, type Expression, ExpressionRunner, type ExtractInputsFromAction, type ExtractInputsFromEvent, type ExtractInputsFromExpression, FetchOptions, FetchReleaseOptions, GitHubRelease, HandleListener, HandleListenerRenderer, type HandleListenerRendererSendFn, HandleListenerSendFn, ListenerMain, PipelabContext, PipelabContextOptions, PipelabEnv, type RendererChannels, type RendererData, type RendererEnd, type RendererEvents, type RendererMessage, type RequestId, RunOptions, Runner, RunnerCallbackFnArgument, ServeOptions, type SetOutputActionFn, type SetOutputExpressionFn, type UpdateStatus, UseMainAPI, WebSocketServer, WsEvent, builtInPlugins, deletePipelineConfigFileByName, deletePipelineConfigFileByPath, downloadFile, ensure, ensureNodeJS, ensurePNPM, executeGraphWithHistory, extractTarGz, extractZip, fetchLatestDesktopRelease, fetchLatestPackageRelease, fetchPackage, fetchPackageReleases, fetchPipelabAsset, fetchPipelabCli, fetchPipelabPlugin, findInstalledPlugins, getDefaultUserDataPath, getFinalPlugins, getFolderSize, handleActionExecute, isDev, isOnline, loadCustomPlugin, loadPipelabPlugin, projectRoot, registerAgentsHandlers, registerAllHandlers, registerConfigHandlers, registerEngineHandlers, registerFsHandlers, registerHistoryHandlers, registerShellHandlers, runPipelineCommand, runPnpm, runWithLiveLogs, sendStartupProgress, sendStartupReady, serveCommand, setupConnectionsConfigFile, setupPipelineConfigFileByName, setupPipelineConfigFileByPath, setupProjectsConfigFile, setupSettingsConfigFile, useAPI, usePluginAPI, webSocketServer, zipFolder };
|
|
447
468
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +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/build-history.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","../src/utils/github.ts"],"x_google_ignoreList":[18],"mappings":"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"}
|
|
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/build-history.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/server.ts","../src/utils/github.ts"],"x_google_ignoreList":[18],"mappings":"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"}
|