@overwolf/ow-electron 22.3.2 → 22.3.3

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/electron-api.json CHANGED
@@ -4,8 +4,8 @@
4
4
  "description": "> Control your application's event lifecycle.\n\nProcess: Main\n\nThe following example shows how to quit the application when the last window is closed:",
5
5
  "slug": "app",
6
6
  "websiteUrl": "https://electronjs.org/docs/api/app",
7
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/app.md",
8
- "version": "22.3.0",
7
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/app.md",
8
+ "version": "22.3.3",
9
9
  "type": "Module",
10
10
  "process": {
11
11
  "main": true,
@@ -2094,7 +2094,7 @@
2094
2094
  },
2095
2095
  {
2096
2096
  "name": "open-url",
2097
- "description": "Emitted when the user wants to open a URL with the application. Your application's `Info.plist` file must define the URL scheme within the `CFBundleURLTypes` key, and set `NSPrincipalClass` to `AtomApplication`.\n\nYou should call `event.preventDefault()` if you want to handle this event.\n\nAs with the `open-file` event, be sure to register a listener for the `open-url` event early in your application startup to detect if the the application being is being opened to handle a URL. If you register the listener in response to a `ready` event, you'll miss URLs that trigger the launch of your application.",
2097
+ "description": "Emitted when the user wants to open a URL with the application. Your application's `Info.plist` file must define the URL scheme within the `CFBundleURLTypes` key, and set `NSPrincipalClass` to `AtomApplication`.\n\nAs with the `open-file` event, be sure to register a listener for the `open-url` event early in your application startup to detect if the the application being is being opened to handle a URL. If you register the listener in response to a `ready` event, you'll miss URLs that trigger the launch of your application.",
2098
2098
  "parameters": [
2099
2099
  {
2100
2100
  "name": "event",
@@ -3025,8 +3025,8 @@
3025
3025
  "description": "> Enable apps to automatically update themselves.\n\nProcess: Main\n\n**See also: A detailed guide about how to implement updates in your application.**\n\n`autoUpdater` is an EventEmitter.\n\n### Platform Notices\n\nCurrently, only macOS and Windows are supported. There is no built-in support for auto-updater on Linux, so it is recommended to use the distribution's package manager to update your app.\n\nIn addition, there are some subtle differences on each platform:\n\n### macOS\n\nOn macOS, the `autoUpdater` module is built upon Squirrel.Mac, meaning you don't need any special setup to make it work. For server-side requirements, you can read Server Support. Note that App Transport Security (ATS) applies to all requests made as part of the update process. Apps that need to disable ATS can add the `NSAllowsArbitraryLoads` key to their app's plist.\n\n**Note:** Your application must be signed for automatic updates on macOS. This is a requirement of `Squirrel.Mac`.\n\n### Windows\n\nOn Windows, you have to install your app into a user's machine before you can use the `autoUpdater`, so it is recommended that you use the electron-winstaller, Electron Forge or the grunt-electron-installer package to generate a Windows installer.\n\nWhen using electron-winstaller or Electron Forge make sure you do not try to update your app the first time it runs (Also see this issue for more info). It's also recommended to use electron-squirrel-startup to get desktop shortcuts for your app.\n\nThe installer generated with Squirrel will create a shortcut icon with an Application User Model ID in the format of `com.squirrel.PACKAGE_ID.YOUR_EXE_WITHOUT_DOT_EXE`, examples are `com.squirrel.slack.Slack` and `com.squirrel.code.Code`. You have to use the same ID for your app with `app.setAppUserModelId` API, otherwise Windows will not be able to pin your app properly in task bar.\n\nLike Squirrel.Mac, Windows can host updates on S3 or any other static file host. You can read the documents of Squirrel.Windows to get more details about how Squirrel.Windows works.",
3026
3026
  "slug": "auto-updater",
3027
3027
  "websiteUrl": "https://electronjs.org/docs/api/auto-updater",
3028
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/auto-updater.md",
3029
- "version": "22.3.0",
3028
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/auto-updater.md",
3029
+ "version": "22.3.3",
3030
3030
  "type": "Module",
3031
3031
  "process": {
3032
3032
  "main": true,
@@ -3235,8 +3235,8 @@
3235
3235
  "description": "A `BrowserView` can be used to embed additional web content into a `BrowserWindow`. It is like a child window, except that it is positioned relative to its owning window. It is meant to be an alternative to the `webview` tag.\n\n### Class: BrowserView\n\n> Create and control views.\n\nProcess: Main\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n### Example\n\n```\n// In the main process.\nconst { app, BrowserView, BrowserWindow } = require('electron')\n\napp.whenReady().then(() => {\n const win = new BrowserWindow({ width: 800, height: 600 })\n\n const view = new BrowserView()\n win.setBrowserView(view)\n view.setBounds({ x: 0, y: 0, width: 300, height: 300 })\n view.webContents.loadURL('https://electronjs.org')\n})\n```",
3236
3236
  "slug": "browser-view",
3237
3237
  "websiteUrl": "https://electronjs.org/docs/api/browser-view",
3238
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/browser-view.md",
3239
- "version": "22.3.0",
3238
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/browser-view.md",
3239
+ "version": "22.3.3",
3240
3240
  "type": "Class",
3241
3241
  "process": {
3242
3242
  "main": true,
@@ -3397,8 +3397,8 @@
3397
3397
  "description": "> Create and control browser windows.\n\nProcess: Main\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n### Window customization\n\nThe `BrowserWindow` class exposes various ways to modify the look and behavior of your app's windows. For more details, see the Window Customization tutorial.\n\n### Showing the window gracefully\n\nWhen loading a page in the window directly, users may see the page load incrementally, which is not a good experience for a native app. To make the window display without a visual flash, there are two solutions for different situations.\n\n### Using the `ready-to-show` event\n\nWhile loading the page, the `ready-to-show` event will be emitted when the renderer process has rendered the page for the first time if the window has not been shown yet. Showing the window after this event will have no visual flash:\n\n```\nconst { BrowserWindow } = require('electron')\nconst win = new BrowserWindow({ show: false })\nwin.once('ready-to-show', () => {\n win.show()\n})\n```\n\nThis event is usually emitted after the `did-finish-load` event, but for pages with many remote resources, it may be emitted before the `did-finish-load` event.\n\nPlease note that using this event implies that the renderer will be considered \"visible\" and paint even though `show` is false. This event will never fire if you use `paintWhenInitiallyHidden: false`\n\n### Setting the `backgroundColor` property\n\nFor a complex app, the `ready-to-show` event could be emitted too late, making the app feel slow. In this case, it is recommended to show the window immediately, and use a `backgroundColor` close to your app's background:\n\n```\nconst { BrowserWindow } = require('electron')\n\nconst win = new BrowserWindow({ backgroundColor: '#2e2c29' })\nwin.loadURL('https://github.com')\n```\n\nNote that even for apps that use `ready-to-show` event, it is still recommended to set `backgroundColor` to make the app feel more native.\n\nSome examples of valid `backgroundColor` values include:\n\n```\nconst win = new BrowserWindow()\nwin.setBackgroundColor('hsl(230, 100%, 50%)')\nwin.setBackgroundColor('rgb(255, 145, 145)')\nwin.setBackgroundColor('#ff00a3')\nwin.setBackgroundColor('blueviolet')\n```\n\nFor more information about these color types see valid options in win.setBackgroundColor.\n\n### Parent and child windows\n\nBy using `parent` option, you can create child windows:\n\n```\nconst { BrowserWindow } = require('electron')\n\nconst top = new BrowserWindow()\nconst child = new BrowserWindow({ parent: top })\nchild.show()\ntop.show()\n```\n\nThe `child` window will always show on top of the `top` window.\n\n### Modal windows\n\nA modal window is a child window that disables parent window, to create a modal window, you have to set both `parent` and `modal` options:\n\n```\nconst { BrowserWindow } = require('electron')\n\nconst child = new BrowserWindow({ parent: top, modal: true, show: false })\nchild.loadURL('https://github.com')\nchild.once('ready-to-show', () => {\n child.show()\n})\n```\n\n### Page visibility\n\nThe Page Visibility API works as follows:\n\n* On all platforms, the visibility state tracks whether the window is hidden/minimized or not.\n* Additionally, on macOS, the visibility state also tracks the window occlusion state. If the window is occluded (i.e. fully covered) by another window, the visibility state will be `hidden`. On other platforms, the visibility state will be `hidden` only when the window is minimized or explicitly hidden with `win.hide()`.\n* If a `BrowserWindow` is created with `show: false`, the initial visibility state will be `visible` despite the window actually being hidden.\n* If `backgroundThrottling` is disabled, the visibility state will remain `visible` even if the window is minimized, occluded, or hidden.\n\nIt is recommended that you pause expensive operations when the visibility state is `hidden` in order to minimize power consumption.\n\n### Platform notices\n\n* On macOS modal windows will be displayed as sheets attached to the parent window.\n* On macOS the child windows will keep the relative position to parent window when parent window moves, while on Windows and Linux child windows will not move.\n* On Linux the type of modal windows will be changed to `dialog`.\n* On Linux many desktop environments do not support hiding a modal window.\n\n### Class: BrowserWindow\n\n> Create and control browser windows.\n\nProcess: Main\n\n`BrowserWindow` is an EventEmitter.\n\nIt creates a new `BrowserWindow` with native properties as set by the `options`.",
3398
3398
  "slug": "browser-window",
3399
3399
  "websiteUrl": "https://electronjs.org/docs/api/browser-window",
3400
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/browser-window.md",
3401
- "version": "22.3.0",
3400
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/browser-window.md",
3401
+ "version": "22.3.3",
3402
3402
  "type": "Class",
3403
3403
  "process": {
3404
3404
  "main": true,
@@ -3966,7 +3966,7 @@
3966
3966
  },
3967
3967
  {
3968
3968
  "name": "tabbingIdentifier",
3969
- "description": "Tab group name, allows opening the window as a native tab on macOS 10.12+. Windows with the same tabbing identifier will be grouped together. This also adds a native new tab button to your window's tab bar and allows your `app` and window to receive the `new-window-for-tab` event.",
3969
+ "description": "Tab group name, allows opening the window as a native tab. Windows with the same tabbing identifier will be grouped together. This also adds a native new tab button to your window's tab bar and allows your `app` and window to receive the `new-window-for-tab` event.",
3970
3970
  "required": false,
3971
3971
  "additionalTags": [
3972
3972
  "os_macos"
@@ -7089,7 +7089,7 @@
7089
7089
  {
7090
7090
  "name": "setTouchBar",
7091
7091
  "signature": "(touchBar)",
7092
- "description": "Sets the touchBar layout for the current window. Specifying `null` or `undefined` clears the touch bar. This method only has an effect if the machine has a touch bar and is running on macOS 10.12.1+.\n\n**Note:** The TouchBar API is currently experimental and may change or be removed in future Electron releases.",
7092
+ "description": "Sets the touchBar layout for the current window. Specifying `null` or `undefined` clears the touch bar. This method only has an effect if the machine has a touch bar.\n\n**Note:** The TouchBar API is currently experimental and may change or be removed in future Electron releases.",
7093
7093
  "parameters": [
7094
7094
  {
7095
7095
  "name": "touchBar",
@@ -7999,8 +7999,8 @@
7999
7999
  "description": "> Make HTTP/HTTPS requests.\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._\n\n`ClientRequest` implements the Writable Stream interface and is therefore an EventEmitter.",
8000
8000
  "slug": "client-request",
8001
8001
  "websiteUrl": "https://electronjs.org/docs/api/client-request",
8002
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/client-request.md",
8003
- "version": "22.3.0",
8002
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/client-request.md",
8003
+ "version": "22.3.3",
8004
8004
  "type": "Class",
8005
8005
  "process": {
8006
8006
  "main": true,
@@ -8596,8 +8596,8 @@
8596
8596
  "description": "> Perform copy and paste operations on the system clipboard.\n\nProcess: Main, Renderer (non-sandboxed only)\n\nOn Linux, there is also a `selection` clipboard. To manipulate it you need to pass `selection` to each method:",
8597
8597
  "slug": "clipboard",
8598
8598
  "websiteUrl": "https://electronjs.org/docs/api/clipboard",
8599
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/clipboard.md",
8600
- "version": "22.3.0",
8599
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/clipboard.md",
8600
+ "version": "22.3.3",
8601
8601
  "type": "Module",
8602
8602
  "process": {
8603
8603
  "main": true,
@@ -9262,8 +9262,8 @@
9262
9262
  "description": "",
9263
9263
  "slug": "command-line",
9264
9264
  "websiteUrl": "https://electronjs.org/docs/api/command-line",
9265
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/command-line.md",
9266
- "version": "22.3.0",
9265
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/command-line.md",
9266
+ "version": "22.3.3",
9267
9267
  "type": "Class",
9268
9268
  "process": {
9269
9269
  "main": true,
@@ -9389,8 +9389,8 @@
9389
9389
  "description": "> Collect tracing data from Chromium to find performance bottlenecks and slow operations.\n\nProcess: Main\n\nThis module does not include a web interface. To view recorded traces, use trace viewer, available at `chrome://tracing` in Chrome.\n\n**Note:** You should not use this module until the `ready` event of the app module is emitted.",
9390
9390
  "slug": "content-tracing",
9391
9391
  "websiteUrl": "https://electronjs.org/docs/api/content-tracing",
9392
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/content-tracing.md",
9393
- "version": "22.3.0",
9392
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/content-tracing.md",
9393
+ "version": "22.3.3",
9394
9394
  "type": "Module",
9395
9395
  "process": {
9396
9396
  "main": true,
@@ -9526,8 +9526,8 @@
9526
9526
  "description": "> Create a safe, bi-directional, synchronous bridge across isolated contexts\n\nProcess: Renderer\n\nAn example of exposing an API to a renderer from an isolated preload script is given below:\n\n```\n// Preload (Isolated World)\nconst { contextBridge, ipcRenderer } = require('electron')\n\ncontextBridge.exposeInMainWorld(\n 'electron',\n {\n doThing: () => ipcRenderer.send('do-a-thing')\n }\n)\n```\n\n### Glossary\n\n\n\n### Main World\n\nThe \"Main World\" is the JavaScript context that your main renderer code runs in. By default, the page you load in your renderer executes code in this world.\n\n### Isolated World\n\nWhen `contextIsolation` is enabled in your `webPreferences` (this is the default behavior since Electron 12.0.0), your `preload` scripts run in an \"Isolated World\". You can read more about context isolation and what it affects in the security docs.",
9527
9527
  "slug": "context-bridge",
9528
9528
  "websiteUrl": "https://electronjs.org/docs/api/context-bridge",
9529
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/context-bridge.md",
9530
- "version": "22.3.0",
9529
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/context-bridge.md",
9530
+ "version": "22.3.3",
9531
9531
  "type": "Module",
9532
9532
  "process": {
9533
9533
  "main": false,
@@ -9602,8 +9602,8 @@
9602
9602
  "description": "",
9603
9603
  "slug": "cookies",
9604
9604
  "websiteUrl": "https://electronjs.org/docs/api/cookies",
9605
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/cookies.md",
9606
- "version": "22.3.0",
9605
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/cookies.md",
9606
+ "version": "22.3.3",
9607
9607
  "type": "Class",
9608
9608
  "process": {
9609
9609
  "main": true,
@@ -9939,8 +9939,8 @@
9939
9939
  "description": "> Submit crash reports to a remote server.\n\nProcess: Main, Renderer\n\nThe following is an example of setting up Electron to automatically submit crash reports to a remote server:\n\n```\nconst { crashReporter } = require('electron')\n\ncrashReporter.start({ submitURL: 'https://your-domain.com/url-to-submit' })\n```\n\nFor setting up a server to accept and process crash reports, you can use following projects:\n\n* socorro\n* mini-breakpad-server\n\n> **Note:** Electron uses Crashpad, not Breakpad, to collect and upload crashes, but for the time being, the upload protocol is the same.\n\nOr use a 3rd party hosted solution:\n\n* Backtrace\n* Sentry\n* BugSplat\n* Bugsnag\n\nCrash reports are stored temporarily before being uploaded in a directory underneath the app's user data directory, called 'Crashpad'. You can override this directory by calling `app.setPath('crashDumps', '/path/to/crashes')` before starting the crash reporter.\n\nElectron uses crashpad to monitor and report crashes.",
9940
9940
  "slug": "crash-reporter",
9941
9941
  "websiteUrl": "https://electronjs.org/docs/api/crash-reporter",
9942
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/crash-reporter.md",
9943
- "version": "22.3.0",
9942
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/crash-reporter.md",
9943
+ "version": "22.3.3",
9944
9944
  "type": "Module",
9945
9945
  "process": {
9946
9946
  "main": true,
@@ -10202,8 +10202,8 @@
10202
10202
  "description": "",
10203
10203
  "slug": "debugger",
10204
10204
  "websiteUrl": "https://electronjs.org/docs/api/debugger",
10205
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/debugger.md",
10206
- "version": "22.3.0",
10205
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/debugger.md",
10206
+ "version": "22.3.3",
10207
10207
  "type": "Class",
10208
10208
  "process": {
10209
10209
  "main": true,
@@ -10367,8 +10367,8 @@
10367
10367
  "description": "> Access information about media sources that can be used to capture audio and video from the desktop using the `navigator.mediaDevices.getUserMedia` API.\n\nProcess: Main\n\nThe following example shows how to capture video from a desktop window whose title is `Electron`:\n\n```\n// In the main process.\nconst { desktopCapturer } = require('electron')\n\ndesktopCapturer.getSources({ types: ['window', 'screen'] }).then(async sources => {\n for (const source of sources) {\n if (source.name === 'Electron') {\n mainWindow.webContents.send('SET_SOURCE', source.id)\n return\n }\n }\n})\n```\n\n```\n// In the preload script.\nconst { ipcRenderer } = require('electron')\n\nipcRenderer.on('SET_SOURCE', async (event, sourceId) => {\n try {\n const stream = await navigator.mediaDevices.getUserMedia({\n audio: false,\n video: {\n mandatory: {\n chromeMediaSource: 'desktop',\n chromeMediaSourceId: sourceId,\n minWidth: 1280,\n maxWidth: 1280,\n minHeight: 720,\n maxHeight: 720\n }\n }\n })\n handleStream(stream)\n } catch (e) {\n handleError(e)\n }\n})\n\nfunction handleStream (stream) {\n const video = document.querySelector('video')\n video.srcObject = stream\n video.onloadedmetadata = (e) => video.play()\n}\n\nfunction handleError (e) {\n console.log(e)\n}\n```\n\nTo capture video from a source provided by `desktopCapturer` the constraints passed to `navigator.mediaDevices.getUserMedia` must include `chromeMediaSource: 'desktop'`, and `audio: false`.\n\nTo capture both audio and video from the entire desktop the constraints passed to `navigator.mediaDevices.getUserMedia` must include `chromeMediaSource: 'desktop'`, for both `audio` and `video`, but should not include a `chromeMediaSourceId` constraint.",
10368
10368
  "slug": "desktop-capturer",
10369
10369
  "websiteUrl": "https://electronjs.org/docs/api/desktop-capturer",
10370
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/desktop-capturer.md",
10371
- "version": "22.3.0",
10370
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/desktop-capturer.md",
10371
+ "version": "22.3.3",
10372
10372
  "type": "Module",
10373
10373
  "process": {
10374
10374
  "main": true,
@@ -10439,8 +10439,8 @@
10439
10439
  "description": "> Display native system dialogs for opening and saving files, alerting, etc.\n\nProcess: Main\n\nAn example of showing a dialog to select multiple files:",
10440
10440
  "slug": "dialog",
10441
10441
  "websiteUrl": "https://electronjs.org/docs/api/dialog",
10442
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/dialog.md",
10443
- "version": "22.3.0",
10442
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/dialog.md",
10443
+ "version": "22.3.3",
10444
10444
  "type": "Module",
10445
10445
  "process": {
10446
10446
  "main": true,
@@ -11488,8 +11488,8 @@
11488
11488
  "description": "",
11489
11489
  "slug": "dock",
11490
11490
  "websiteUrl": "https://electronjs.org/docs/api/dock",
11491
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/dock.md",
11492
- "version": "22.3.0",
11491
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/dock.md",
11492
+ "version": "22.3.3",
11493
11493
  "type": "Class",
11494
11494
  "process": {
11495
11495
  "main": true,
@@ -11732,8 +11732,8 @@
11732
11732
  "description": "",
11733
11733
  "slug": "download-item",
11734
11734
  "websiteUrl": "https://electronjs.org/docs/api/download-item",
11735
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/download-item.md",
11736
- "version": "22.3.0",
11735
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/download-item.md",
11736
+ "version": "22.3.3",
11737
11737
  "type": "Class",
11738
11738
  "process": {
11739
11739
  "main": true,
@@ -12114,8 +12114,8 @@
12114
12114
  "description": "> Detect keyboard events when the application does not have keyboard focus.\n\nProcess: Main\n\nThe `globalShortcut` module can register/unregister a global keyboard shortcut with the operating system so that you can customize the operations for various shortcuts.\n\n**Note:** The shortcut is global; it will work even if the app does not have the keyboard focus. This module cannot be used before the `ready` event of the app module is emitted.",
12115
12115
  "slug": "global-shortcut",
12116
12116
  "websiteUrl": "https://electronjs.org/docs/api/global-shortcut",
12117
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/global-shortcut.md",
12118
- "version": "22.3.0",
12117
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/global-shortcut.md",
12118
+ "version": "22.3.3",
12119
12119
  "type": "Module",
12120
12120
  "process": {
12121
12121
  "main": true,
@@ -12235,8 +12235,8 @@
12235
12235
  "description": "> In-app purchases on Mac App Store.\n\nProcess: Main",
12236
12236
  "slug": "in-app-purchase",
12237
12237
  "websiteUrl": "https://electronjs.org/docs/api/in-app-purchase",
12238
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/in-app-purchase.md",
12239
- "version": "22.3.0",
12238
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/in-app-purchase.md",
12239
+ "version": "22.3.3",
12240
12240
  "type": "Module",
12241
12241
  "process": {
12242
12242
  "main": true,
@@ -12384,8 +12384,8 @@
12384
12384
  "description": "",
12385
12385
  "slug": "incoming-message",
12386
12386
  "websiteUrl": "https://electronjs.org/docs/api/incoming-message",
12387
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/incoming-message.md",
12388
- "version": "22.3.0",
12387
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/incoming-message.md",
12388
+ "version": "22.3.3",
12389
12389
  "type": "Class",
12390
12390
  "process": {
12391
12391
  "main": true,
@@ -12531,8 +12531,8 @@
12531
12531
  "description": "\n\n### ipcMain\n\n> Communicate asynchronously from the main process to renderer processes.\n\nProcess: Main\n\nThe `ipcMain` module is an Event Emitter. When used in the main process, it handles asynchronous and synchronous messages sent from a renderer process (web page). Messages sent from a renderer will be emitted to this module.\n\nFor usage examples, check out the IPC tutorial.\n\n### Sending messages\n\nIt is also possible to send messages from the main process to the renderer process, see webContents.send for more information.\n\n* When sending a message, the event name is the `channel`.\n* To reply to a synchronous message, you need to set `event.returnValue`.\n* To send an asynchronous message back to the sender, you can use `event.reply(...)`. This helper method will automatically handle messages coming from frames that aren't the main frame (e.g. iframes) whereas `event.sender.send(...)` will always send to the main frame.",
12532
12532
  "slug": "ipc-main",
12533
12533
  "websiteUrl": "https://electronjs.org/docs/api/ipc-main",
12534
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/ipc-main.md",
12535
- "version": "22.3.0",
12534
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/ipc-main.md",
12535
+ "version": "22.3.3",
12536
12536
  "type": "Module",
12537
12537
  "process": {
12538
12538
  "main": true,
@@ -12825,8 +12825,8 @@
12825
12825
  "description": "\n\n### ipcRenderer\n\n> Communicate asynchronously from a renderer process to the main process.\n\nProcess: Renderer\n\nThe `ipcRenderer` module is an EventEmitter. It provides a few methods so you can send synchronous and asynchronous messages from the render process (web page) to the main process. You can also receive replies from the main process.\n\nSee IPC tutorial for code examples.",
12826
12826
  "slug": "ipc-renderer",
12827
12827
  "websiteUrl": "https://electronjs.org/docs/api/ipc-renderer",
12828
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/ipc-renderer.md",
12829
- "version": "22.3.0",
12828
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/ipc-renderer.md",
12829
+ "version": "22.3.3",
12830
12830
  "type": "Module",
12831
12831
  "process": {
12832
12832
  "main": false,
@@ -13157,8 +13157,8 @@
13157
13157
  "description": "> Add items to native application menus and context menus.\n\nProcess: Main\n\nSee `Menu` for examples.",
13158
13158
  "slug": "menu-item",
13159
13159
  "websiteUrl": "https://electronjs.org/docs/api/menu-item",
13160
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/menu-item.md",
13161
- "version": "22.3.0",
13160
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/menu-item.md",
13161
+ "version": "22.3.3",
13162
13162
  "type": "Class",
13163
13163
  "process": {
13164
13164
  "main": true,
@@ -14045,8 +14045,8 @@
14045
14045
  "description": "\n\n### Class: Menu\n\n> Create native application menus and context menus.\n\nProcess: Main",
14046
14046
  "slug": "menu",
14047
14047
  "websiteUrl": "https://electronjs.org/docs/api/menu",
14048
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/menu.md",
14049
- "version": "22.3.0",
14048
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/menu.md",
14049
+ "version": "22.3.3",
14050
14050
  "type": "Class",
14051
14051
  "process": {
14052
14052
  "main": true,
@@ -14359,8 +14359,8 @@
14359
14359
  "description": "",
14360
14360
  "slug": "message-channel-main",
14361
14361
  "websiteUrl": "https://electronjs.org/docs/api/message-channel-main",
14362
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/message-channel-main.md",
14363
- "version": "22.3.0",
14362
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/message-channel-main.md",
14363
+ "version": "22.3.3",
14364
14364
  "type": "Class",
14365
14365
  "process": {
14366
14366
  "main": true,
@@ -14399,8 +14399,8 @@
14399
14399
  "description": "",
14400
14400
  "slug": "message-port-main",
14401
14401
  "websiteUrl": "https://electronjs.org/docs/api/message-port-main",
14402
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/message-port-main.md",
14403
- "version": "22.3.0",
14402
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/message-port-main.md",
14403
+ "version": "22.3.3",
14404
14404
  "type": "Class",
14405
14405
  "process": {
14406
14406
  "main": true,
@@ -14504,8 +14504,8 @@
14504
14504
  "description": "> Create tray, dock, and application icons using PNG or JPG files.\n\nProcess: Main, Renderer\n\nIn Electron, for the APIs that take images, you can pass either file paths or `NativeImage` instances. An empty image will be used when `null` is passed.\n\nFor example, when creating a tray or setting a window's icon, you can pass an image file path as a `string`:\n\n```\nconst { BrowserWindow, Tray } = require('electron')\n\nconst appIcon = new Tray('/Users/somebody/images/icon.png')\nconst win = new BrowserWindow({ icon: '/Users/somebody/images/window.png' })\nconsole.log(appIcon, win)\n```\n\nOr read the image from the clipboard, which returns a `NativeImage`:\n\n### Supported Formats\n\nCurrently `PNG` and `JPEG` image formats are supported. `PNG` is recommended because of its support for transparency and lossless compression.\n\nOn Windows, you can also load `ICO` icons from file paths. For best visual quality, it is recommended to include at least the following sizes in the:\n\n* Small icon\n * 16x16 (100% DPI scale)\n * 20x20 (125% DPI scale)\n * 24x24 (150% DPI scale)\n * 32x32 (200% DPI scale)\n* Large icon\n * 32x32 (100% DPI scale)\n * 40x40 (125% DPI scale)\n * 48x48 (150% DPI scale)\n * 64x64 (200% DPI scale)\n * 256x256\n\nCheck the *Size requirements* section in this article.\n\n### High Resolution Image\n\nOn platforms that have high-DPI support such as Apple Retina displays, you can append `@2x` after image's base filename to mark it as a high resolution image.\n\nFor example, if `icon.png` is a normal image that has standard resolution, then `icon@2x.png` will be treated as a high resolution image that has double DPI density.\n\nIf you want to support displays with different DPI densities at the same time, you can put images with different sizes in the same folder and use the filename without DPI suffixes. For example:\n\n```\nimages/\n├── icon.png\n├── icon@2x.png\n└── icon@3x.png\n```\n\n```\nconst { Tray } = require('electron')\nconst appIcon = new Tray('/Users/somebody/images/icon.png')\nconsole.log(appIcon)\n```\n\nThe following suffixes for DPI are also supported:\n\n* `@1x`\n* `@1.25x`\n* `@1.33x`\n* `@1.4x`\n* `@1.5x`\n* `@1.8x`\n* `@2x`\n* `@2.5x`\n* `@3x`\n* `@4x`\n* `@5x`\n\n### Template Image\n\nTemplate images consist of black and an alpha channel. Template images are not intended to be used as standalone images and are usually mixed with other content to create the desired final appearance.\n\nThe most common case is to use template images for a menu bar icon, so it can adapt to both light and dark menu bars.\n\n**Note:** Template image is only supported on macOS.\n\nTo mark an image as a template image, its filename should end with the word `Template`. For example:\n\n* `xxxTemplate.png`\n* `xxxTemplate@2x.png`",
14505
14505
  "slug": "native-image",
14506
14506
  "websiteUrl": "https://electronjs.org/docs/api/native-image",
14507
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/native-image.md",
14508
- "version": "22.3.0",
14507
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/native-image.md",
14508
+ "version": "22.3.3",
14509
14509
  "type": "Module",
14510
14510
  "process": {
14511
14511
  "main": true,
@@ -14750,8 +14750,8 @@
14750
14750
  "description": "",
14751
14751
  "slug": "native-image",
14752
14752
  "websiteUrl": "https://electronjs.org/docs/api/native-image",
14753
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/native-image.md",
14754
- "version": "22.3.0",
14753
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/native-image.md",
14754
+ "version": "22.3.3",
14755
14755
  "type": "Class",
14756
14756
  "process": {
14757
14757
  "main": true,
@@ -15159,8 +15159,8 @@
15159
15159
  "description": "> Read and respond to changes in Chromium's native color theme.\n\nProcess: Main",
15160
15160
  "slug": "native-theme",
15161
15161
  "websiteUrl": "https://electronjs.org/docs/api/native-theme",
15162
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/native-theme.md",
15163
- "version": "22.3.0",
15162
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/native-theme.md",
15163
+ "version": "22.3.3",
15164
15164
  "type": "Module",
15165
15165
  "process": {
15166
15166
  "main": true,
@@ -15258,8 +15258,8 @@
15258
15258
  "description": "> Logging network events for a session.\n\nProcess: Main\n\n```\nconst { netLog } = require('electron')\n\napp.whenReady().then(async () => {\n await netLog.startLogging('/path/to/net-log')\n // After some network events\n const path = await netLog.stopLogging()\n console.log('Net-logs written to', path)\n})\n```\n\nSee `--log-net-log` to log network events throughout the app's lifecycle.\n\n**Note:** All methods unless specified can only be used after the `ready` event of the `app` module gets emitted.",
15259
15259
  "slug": "net-log",
15260
15260
  "websiteUrl": "https://electronjs.org/docs/api/net-log",
15261
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/net-log.md",
15262
- "version": "22.3.0",
15261
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/net-log.md",
15262
+ "version": "22.3.3",
15263
15263
  "type": "Module",
15264
15264
  "process": {
15265
15265
  "main": true,
@@ -15373,8 +15373,8 @@
15373
15373
  "description": "> Issue HTTP/HTTPS requests using Chromium's native networking library\n\nProcess: Main\n\nThe `net` module is a client-side API for issuing HTTP(S) requests. It is similar to the HTTP and HTTPS modules of Node.js but uses Chromium's native networking library instead of the Node.js implementation, offering better support for web proxies. It also supports checking network status.\n\nThe following is a non-exhaustive list of why you may consider using the `net` module instead of the native Node.js modules:\n\n* Automatic management of system proxy configuration, support of the wpad protocol and proxy pac configuration files.\n* Automatic tunneling of HTTPS requests.\n* Support for authenticating proxies using basic, digest, NTLM, Kerberos or negotiate authentication schemes.\n* Support for traffic monitoring proxies: Fiddler-like proxies used for access control and monitoring.\n\nThe API components (including classes, methods, properties and event names) are similar to those used in Node.js.\n\nExample usage:\n\n```\nconst { app } = require('electron')\napp.whenReady().then(() => {\n const { net } = require('electron')\n const request = net.request('https://github.com')\n request.on('response', (response) => {\n console.log(`STATUS: ${response.statusCode}`)\n console.log(`HEADERS: ${JSON.stringify(response.headers)}`)\n response.on('data', (chunk) => {\n console.log(`BODY: ${chunk}`)\n })\n response.on('end', () => {\n console.log('No more data in response.')\n })\n })\n request.end()\n})\n```\n\nThe `net` API can be used only after the application emits the `ready` event. Trying to use the module before the `ready` event will throw an error.",
15374
15374
  "slug": "net",
15375
15375
  "websiteUrl": "https://electronjs.org/docs/api/net",
15376
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/net.md",
15377
- "version": "22.3.0",
15376
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/net.md",
15377
+ "version": "22.3.3",
15378
15378
  "type": "Module",
15379
15379
  "process": {
15380
15380
  "main": true,
@@ -15446,8 +15446,8 @@
15446
15446
  "description": "> Create OS desktop notifications\n\nProcess: Main\n\n### Using in the renderer process\n\nIf you want to show Notifications from a renderer process you should use the HTML5 Notification API\n\n### Class: Notification\n\n> Create OS desktop notifications\n\nProcess: Main\n\n`Notification` is an EventEmitter.\n\nIt creates a new `Notification` with native properties as set by the `options`.\n\n### Static Methods\n\nThe `Notification` class has the following static methods:\n\n### `Notification.isSupported()`\n\nReturns `boolean` - Whether or not desktop notifications are supported on the current system",
15447
15447
  "slug": "notification",
15448
15448
  "websiteUrl": "https://electronjs.org/docs/api/notification",
15449
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/notification.md",
15450
- "version": "22.3.0",
15449
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/notification.md",
15450
+ "version": "22.3.3",
15451
15451
  "type": "Class",
15452
15452
  "process": {
15453
15453
  "main": true,
@@ -15943,8 +15943,8 @@
15943
15943
  "description": "> Interface for communication with parent process.\n\nProcess: Utility\n\n`parentPort` is an EventEmitter. _This object is not exported from the `'electron'` module. It is only available as a property of the process object in the Electron API._",
15944
15944
  "slug": "parent-port",
15945
15945
  "websiteUrl": "https://electronjs.org/docs/api/parent-port",
15946
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/parent-port.md",
15947
- "version": "22.3.0",
15946
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/parent-port.md",
15947
+ "version": "22.3.3",
15948
15948
  "type": "Module",
15949
15949
  "process": {
15950
15950
  "main": false,
@@ -16013,8 +16013,8 @@
16013
16013
  "description": "> Monitor power state changes.\n\nProcess: Main",
16014
16014
  "slug": "power-monitor",
16015
16015
  "websiteUrl": "https://electronjs.org/docs/api/power-monitor",
16016
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/power-monitor.md",
16017
- "version": "22.3.0",
16016
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/power-monitor.md",
16017
+ "version": "22.3.3",
16018
16018
  "type": "Module",
16019
16019
  "process": {
16020
16020
  "main": true,
@@ -16186,8 +16186,8 @@
16186
16186
  "description": "> Block the system from entering low-power (sleep) mode.\n\nProcess: Main\n\nFor example:",
16187
16187
  "slug": "power-save-blocker",
16188
16188
  "websiteUrl": "https://electronjs.org/docs/api/power-save-blocker",
16189
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/power-save-blocker.md",
16190
- "version": "22.3.0",
16189
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/power-save-blocker.md",
16190
+ "version": "22.3.3",
16191
16191
  "type": "Module",
16192
16192
  "process": {
16193
16193
  "main": true,
@@ -16272,8 +16272,8 @@
16272
16272
  "description": "> Extensions to process object.\n\nProcess: Main, Renderer\n\nElectron's `process` object is extended from the Node.js `process` object. It adds the following events, properties, and methods:\n\n### Sandbox\n\nIn sandboxed renderers the `process` object contains only a subset of the APIs:\n\n* `crash()`\n* `hang()`\n* `getCreationTime()`\n* `getHeapStatistics()`\n* `getBlinkMemoryInfo()`\n* `getProcessMemoryInfo()`\n* `getSystemMemoryInfo()`\n* `getSystemVersion()`\n* `getCPUUsage()`\n* `getIOCounters()`\n* `uptime()`\n* `argv`\n* `execPath`\n* `env`\n* `pid`\n* `arch`\n* `platform`\n* `sandboxed`\n* `contextIsolated`\n* `type`\n* `version`\n* `versions`\n* `mas`\n* `windowsStore`\n* `contextId`",
16273
16273
  "slug": "process",
16274
16274
  "websiteUrl": "https://electronjs.org/docs/api/process",
16275
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/process.md",
16276
- "version": "22.3.0",
16275
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/process.md",
16276
+ "version": "22.3.3",
16277
16277
  "type": "Module",
16278
16278
  "process": {
16279
16279
  "main": true,
@@ -16803,8 +16803,8 @@
16803
16803
  "description": "> Register a custom protocol and intercept existing protocol requests.\n\nProcess: Main\n\nAn example of implementing a protocol that has the same effect as the `file://` protocol:\n\n```\nconst { app, protocol } = require('electron')\nconst path = require('path')\nconst url = require('url')\n\napp.whenReady().then(() => {\n protocol.registerFileProtocol('atom', (request, callback) => {\n const filePath = url.fileURLToPath('file://' + request.url.slice('atom://'.length))\n callback(filePath)\n })\n})\n```\n\n**Note:** All methods unless specified can only be used after the `ready` event of the `app` module gets emitted.\n\n### Using `protocol` with a custom `partition` or `session`\n\nA protocol is registered to a specific Electron `session` object. If you don't specify a session, then your `protocol` will be applied to the default session that Electron uses. However, if you define a `partition` or `session` on your `browserWindow`'s `webPreferences`, then that window will use a different session and your custom protocol will not work if you just use `electron.protocol.XXX`.\n\nTo have your custom protocol work in combination with a custom session, you need to register it to that session explicitly.\n\n```\nconst { session, app, protocol } = require('electron')\nconst path = require('path')\n\napp.whenReady().then(() => {\n const partition = 'persist:example'\n const ses = session.fromPartition(partition)\n\n ses.protocol.registerFileProtocol('atom', (request, callback) => {\n const url = request.url.substr(7)\n callback({ path: path.normalize(`${__dirname}/${url}`) })\n })\n\n mainWindow = new BrowserWindow({ webPreferences: { partition } })\n})\n```",
16804
16804
  "slug": "protocol",
16805
16805
  "websiteUrl": "https://electronjs.org/docs/api/protocol",
16806
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/protocol.md",
16807
- "version": "22.3.0",
16806
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/protocol.md",
16807
+ "version": "22.3.3",
16808
16808
  "type": "Module",
16809
16809
  "process": {
16810
16810
  "main": true,
@@ -17549,8 +17549,8 @@
17549
17549
  "description": "Process: Main\n\n> Register for and receive notifications from remote push notification services\n\nFor example, when registering for push notifications via Apple push notification services (APNS):",
17550
17550
  "slug": "push-notifications",
17551
17551
  "websiteUrl": "https://electronjs.org/docs/api/push-notifications",
17552
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/push-notifications.md",
17553
- "version": "22.3.0",
17552
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/push-notifications.md",
17553
+ "version": "22.3.3",
17554
17554
  "type": "Module",
17555
17555
  "process": {
17556
17556
  "main": true,
@@ -17629,8 +17629,8 @@
17629
17629
  "description": "> Allows access to simple encryption and decryption of strings for storage on the local machine.\n\nProcess: Main\n\nThis module protects data stored on disk from being accessed by other applications or users with full disk access.\n\nNote that on Mac, access to the system Keychain is required and these calls can block the current thread to collect user input. The same is true for Linux, if a password management tool is available.",
17630
17630
  "slug": "safe-storage",
17631
17631
  "websiteUrl": "https://electronjs.org/docs/api/safe-storage",
17632
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/safe-storage.md",
17633
- "version": "22.3.0",
17632
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/safe-storage.md",
17633
+ "version": "22.3.3",
17634
17634
  "type": "Module",
17635
17635
  "process": {
17636
17636
  "main": true,
@@ -17702,8 +17702,8 @@
17702
17702
  "description": "> Retrieve information about screen size, displays, cursor position, etc.\n\nProcess: Main\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n`screen` is an EventEmitter.\n\n**Note:** In the renderer / DevTools, `window.screen` is a reserved DOM property, so writing `let { screen } = require('electron')` will not work.\n\nAn example of creating a window that fills the whole screen:\n\n```\nconst { app, BrowserWindow, screen } = require('electron')\n\nlet win\napp.whenReady().then(() => {\n const { width, height } = screen.getPrimaryDisplay().workAreaSize\n win = new BrowserWindow({ width, height })\n win.loadURL('https://github.com')\n})\n```\n\nAnother example of creating a window in the external display:",
17703
17703
  "slug": "screen",
17704
17704
  "websiteUrl": "https://electronjs.org/docs/api/screen",
17705
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/screen.md",
17706
- "version": "22.3.0",
17705
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/screen.md",
17706
+ "version": "22.3.3",
17707
17707
  "type": "Module",
17708
17708
  "process": {
17709
17709
  "main": true,
@@ -17992,8 +17992,8 @@
17992
17992
  "description": "",
17993
17993
  "slug": "service-workers",
17994
17994
  "websiteUrl": "https://electronjs.org/docs/api/service-workers",
17995
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/service-workers.md",
17996
- "version": "22.3.0",
17995
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/service-workers.md",
17996
+ "version": "22.3.3",
17997
17997
  "type": "Class",
17998
17998
  "process": {
17999
17999
  "main": true,
@@ -18218,8 +18218,8 @@
18218
18218
  "description": "> Manage browser sessions, cookies, cache, proxy settings, etc.\n\nProcess: Main\n\nThe `session` module can be used to create new `Session` objects.\n\nYou can also access the `session` of existing pages by using the `session` property of `WebContents`, or from the `session` module.",
18219
18219
  "slug": "session",
18220
18220
  "websiteUrl": "https://electronjs.org/docs/api/session",
18221
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/session.md",
18222
- "version": "22.3.0",
18221
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/session.md",
18222
+ "version": "22.3.3",
18223
18223
  "type": "Module",
18224
18224
  "process": {
18225
18225
  "main": true,
@@ -18285,8 +18285,8 @@
18285
18285
  "description": "",
18286
18286
  "slug": "session",
18287
18287
  "websiteUrl": "https://electronjs.org/docs/api/session",
18288
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/session.md",
18289
- "version": "22.3.0",
18288
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/session.md",
18289
+ "version": "22.3.3",
18290
18290
  "type": "Class",
18291
18291
  "process": {
18292
18292
  "main": true,
@@ -20748,8 +20748,8 @@
20748
20748
  "description": "The `ShareMenu` class creates Share Menu on macOS, which can be used to share information from the current context to apps, social media accounts, and other services.\n\nFor including the share menu as a submenu of other menus, please use the `shareMenu` role of `MenuItem`.\n\n### Class: ShareMenu\n\n> Create share menu on macOS.\n\nProcess: Main",
20749
20749
  "slug": "share-menu",
20750
20750
  "websiteUrl": "https://electronjs.org/docs/api/share-menu",
20751
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/share-menu.md",
20752
- "version": "22.3.0",
20751
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/share-menu.md",
20752
+ "version": "22.3.3",
20753
20753
  "type": "Class",
20754
20754
  "process": {
20755
20755
  "main": true,
@@ -20815,8 +20815,8 @@
20815
20815
  "description": "> Manage files and URLs using their default applications.\n\nProcess: Main, Renderer (non-sandboxed only)\n\nThe `shell` module provides functions related to desktop integration.\n\nAn example of opening a URL in the user's default browser:\n\n```\nconst { shell } = require('electron')\n\nshell.openExternal('https://github.com')\n```\n\n**Note:** While the `shell` module can be used in the renderer process, it will not function in a sandboxed renderer.",
20816
20816
  "slug": "shell",
20817
20817
  "websiteUrl": "https://electronjs.org/docs/api/shell",
20818
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/shell.md",
20819
- "version": "22.3.0",
20818
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/shell.md",
20819
+ "version": "22.3.3",
20820
20820
  "type": "Module",
20821
20821
  "process": {
20822
20822
  "main": true,
@@ -21047,8 +21047,8 @@
21047
21047
  "description": "> Get system preferences.\n\nProcess: Main",
21048
21048
  "slug": "system-preferences",
21049
21049
  "websiteUrl": "https://electronjs.org/docs/api/system-preferences",
21050
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/system-preferences.md",
21051
- "version": "22.3.0",
21050
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/system-preferences.md",
21051
+ "version": "22.3.3",
21052
21052
  "type": "Module",
21053
21053
  "process": {
21054
21054
  "main": true,
@@ -22121,7 +22121,7 @@
22121
22121
  {
22122
22122
  "name": "canPromptTouchID",
22123
22123
  "signature": "()",
22124
- "description": "whether or not this device has the ability to use Touch ID.\n\n**NOTE:** This API will return `false` on macOS systems older than Sierra 10.12.2.",
22124
+ "description": "whether or not this device has the ability to use Touch ID.",
22125
22125
  "parameters": [],
22126
22126
  "returns": {
22127
22127
  "collection": false,
@@ -22135,7 +22135,7 @@
22135
22135
  {
22136
22136
  "name": "promptTouchID",
22137
22137
  "signature": "(reason)",
22138
- "description": "resolves if the user has successfully authenticated with Touch ID.\n\nThis API itself will not protect your user data; rather, it is a mechanism to allow you to do so. Native apps will need to set Access Control Constants like `kSecAccessControlUserPresence` on their keychain entry so that reading it would auto-prompt for Touch ID biometric consent. This could be done with `node-keytar`, such that one would store an encryption key with `node-keytar` and only fetch it if `promptTouchID()` resolves.\n\n**NOTE:** This API will return a rejected Promise on macOS systems older than Sierra 10.12.2.",
22138
+ "description": "resolves if the user has successfully authenticated with Touch ID.\n\nThis API itself will not protect your user data; rather, it is a mechanism to allow you to do so. Native apps will need to set Access Control Constants like `kSecAccessControlUserPresence` on their keychain entry so that reading it would auto-prompt for Touch ID biometric consent. This could be done with `node-keytar`, such that one would store an encryption key with `node-keytar` and only fetch it if `promptTouchID()` resolves.",
22139
22139
  "parameters": [
22140
22140
  {
22141
22141
  "name": "reason",
@@ -22186,7 +22186,7 @@
22186
22186
  {
22187
22187
  "name": "getMediaAccessStatus",
22188
22188
  "signature": "(mediaType)",
22189
- "description": "Can be `not-determined`, `granted`, `denied`, `restricted` or `unknown`.\n\nThis user consent was not required on macOS 10.13 High Sierra or lower so this method will always return `granted`. macOS 10.14 Mojave or higher requires consent for `microphone` and `camera` access. macOS 10.15 Catalina or higher requires consent for `screen` access.\n\nWindows 10 has a global setting controlling `microphone` and `camera` access for all win32 applications. It will always return `granted` for `screen` and for all media types on older versions of Windows.",
22189
+ "description": "Can be `not-determined`, `granted`, `denied`, `restricted` or `unknown`.\n\nThis user consent was not required on macOS 10.13 High Sierra so this method will always return `granted`. macOS 10.14 Mojave or higher requires consent for `microphone` and `camera` access. macOS 10.15 Catalina or higher requires consent for `screen` access.\n\nWindows 10 has a global setting controlling `microphone` and `camera` access for all win32 applications. It will always return `granted` for `screen` and for all media types on older versions of Windows.",
22190
22190
  "parameters": [
22191
22191
  {
22192
22192
  "name": "mediaType",
@@ -22245,7 +22245,7 @@
22245
22245
  {
22246
22246
  "name": "askForMediaAccess",
22247
22247
  "signature": "(mediaType)",
22248
- "description": "A promise that resolves with `true` if consent was granted and `false` if it was denied. If an invalid `mediaType` is passed, the promise will be rejected. If an access request was denied and later is changed through the System Preferences pane, a restart of the app will be required for the new permissions to take effect. If access has already been requested and denied, it _must_ be changed through the preference pane; an alert will not pop up and the promise will resolve with the existing access status.\n\n**Important:** In order to properly leverage this API, you must set the `NSMicrophoneUsageDescription` and `NSCameraUsageDescription` strings in your app's `Info.plist` file. The values for these keys will be used to populate the permission dialogs so that the user will be properly informed as to the purpose of the permission request. See Electron Application Distribution for more information about how to set these in the context of Electron.\n\nThis user consent was not required until macOS 10.14 Mojave, so this method will always return `true` if your system is running 10.13 High Sierra or lower.",
22248
+ "description": "A promise that resolves with `true` if consent was granted and `false` if it was denied. If an invalid `mediaType` is passed, the promise will be rejected. If an access request was denied and later is changed through the System Preferences pane, a restart of the app will be required for the new permissions to take effect. If access has already been requested and denied, it _must_ be changed through the preference pane; an alert will not pop up and the promise will resolve with the existing access status.\n\n**Important:** In order to properly leverage this API, you must set the `NSMicrophoneUsageDescription` and `NSCameraUsageDescription` strings in your app's `Info.plist` file. The values for these keys will be used to populate the permission dialogs so that the user will be properly informed as to the purpose of the permission request. See Electron Application Distribution for more information about how to set these in the context of Electron.\n\nThis user consent was not required until macOS 10.14 Mojave, so this method will always return `true` if your system is running 10.13 High Sierra.",
22249
22249
  "parameters": [
22250
22250
  {
22251
22251
  "name": "mediaType",
@@ -22473,8 +22473,8 @@
22473
22473
  "description": "> Create a button in the touch bar for native macOS applications\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
22474
22474
  "slug": "touch-bar-button",
22475
22475
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-button",
22476
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-button.md",
22477
- "version": "22.3.0",
22476
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-button.md",
22477
+ "version": "22.3.3",
22478
22478
  "type": "Class",
22479
22479
  "process": {
22480
22480
  "main": true,
@@ -22664,8 +22664,8 @@
22664
22664
  "description": "> Create a color picker in the touch bar for native macOS applications\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
22665
22665
  "slug": "touch-bar-color-picker",
22666
22666
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-color-picker",
22667
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-color-picker.md",
22668
- "version": "22.3.0",
22667
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-color-picker.md",
22668
+ "version": "22.3.3",
22669
22669
  "type": "Class",
22670
22670
  "process": {
22671
22671
  "main": true,
@@ -22756,8 +22756,8 @@
22756
22756
  "description": "> Create a group in the touch bar for native macOS applications\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
22757
22757
  "slug": "touch-bar-group",
22758
22758
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-group",
22759
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-group.md",
22760
- "version": "22.3.0",
22759
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-group.md",
22760
+ "version": "22.3.3",
22761
22761
  "type": "Class",
22762
22762
  "process": {
22763
22763
  "main": true,
@@ -22798,8 +22798,8 @@
22798
22798
  "description": "> Create a label in the touch bar for native macOS applications\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
22799
22799
  "slug": "touch-bar-label",
22800
22800
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-label",
22801
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-label.md",
22802
- "version": "22.3.0",
22801
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-label.md",
22802
+ "version": "22.3.3",
22803
22803
  "type": "Class",
22804
22804
  "process": {
22805
22805
  "main": true,
@@ -22890,8 +22890,8 @@
22890
22890
  "description": "> Instantiates a special \"other items proxy\", which nests TouchBar elements inherited from Chromium at the space indicated by the proxy. By default, this proxy is added to each TouchBar at the end of the input. For more information, see the AppKit docs on NSTouchBarItemIdentifierOtherItemsProxy\n\nNote: Only one instance of this class can be added per TouchBar.\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
22891
22891
  "slug": "touch-bar-other-items-proxy",
22892
22892
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-other-items-proxy",
22893
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-other-items-proxy.md",
22894
- "version": "22.3.0",
22893
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-other-items-proxy.md",
22894
+ "version": "22.3.3",
22895
22895
  "type": "Class",
22896
22896
  "process": {
22897
22897
  "main": true,
@@ -22914,8 +22914,8 @@
22914
22914
  "description": "> Create a popover in the touch bar for native macOS applications\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
22915
22915
  "slug": "touch-bar-popover",
22916
22916
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-popover",
22917
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-popover.md",
22918
- "version": "22.3.0",
22917
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-popover.md",
22918
+ "version": "22.3.3",
22919
22919
  "type": "Class",
22920
22920
  "process": {
22921
22921
  "main": true,
@@ -23001,8 +23001,8 @@
23001
23001
  "description": "> Create a scrubber (a scrollable selector)\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
23002
23002
  "slug": "touch-bar-scrubber",
23003
23003
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-scrubber",
23004
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-scrubber.md",
23005
- "version": "22.3.0",
23004
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-scrubber.md",
23005
+ "version": "22.3.3",
23006
23006
  "type": "Class",
23007
23007
  "process": {
23008
23008
  "main": true,
@@ -23250,8 +23250,8 @@
23250
23250
  "description": "> Create a segmented control (a button group) where one button has a selected state\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
23251
23251
  "slug": "touch-bar-segmented-control",
23252
23252
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-segmented-control",
23253
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-segmented-control.md",
23254
- "version": "22.3.0",
23253
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-segmented-control.md",
23254
+ "version": "22.3.3",
23255
23255
  "type": "Class",
23256
23256
  "process": {
23257
23257
  "main": true,
@@ -23441,8 +23441,8 @@
23441
23441
  "description": "> Create a slider in the touch bar for native macOS applications\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
23442
23442
  "slug": "touch-bar-slider",
23443
23443
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-slider",
23444
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-slider.md",
23445
- "version": "22.3.0",
23444
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-slider.md",
23445
+ "version": "22.3.3",
23446
23446
  "type": "Class",
23447
23447
  "process": {
23448
23448
  "main": true,
@@ -23564,8 +23564,8 @@
23564
23564
  "description": "> Create a spacer between two items in the touch bar for native macOS applications\n\nProcess: Main<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
23565
23565
  "slug": "touch-bar-spacer",
23566
23566
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-spacer",
23567
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar-spacer.md",
23568
- "version": "22.3.0",
23567
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar-spacer.md",
23568
+ "version": "22.3.3",
23569
23569
  "type": "Class",
23570
23570
  "process": {
23571
23571
  "main": true,
@@ -23644,8 +23644,8 @@
23644
23644
  "description": "\n\n### Class: TouchBar\n\n> Create TouchBar layouts for native macOS applications\n\nProcess: Main",
23645
23645
  "slug": "touch-bar",
23646
23646
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar",
23647
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/touch-bar.md",
23648
- "version": "22.3.0",
23647
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/touch-bar.md",
23648
+ "version": "22.3.3",
23649
23649
  "type": "Class",
23650
23650
  "process": {
23651
23651
  "main": true,
@@ -23873,8 +23873,8 @@
23873
23873
  "description": "\n\n### Class: Tray\n\n> Add icons and context menus to the system's notification area.\n\nProcess: Main\n\n`Tray` is an EventEmitter.\n\n```\nconst { app, Menu, Tray } = require('electron')\n\nlet tray = null\napp.whenReady().then(() => {\n tray = new Tray('/path/to/my/icon')\n const contextMenu = Menu.buildFromTemplate([\n { label: 'Item1', type: 'radio' },\n { label: 'Item2', type: 'radio' },\n { label: 'Item3', type: 'radio', checked: true },\n { label: 'Item4', type: 'radio' }\n ])\n tray.setToolTip('This is my application.')\n tray.setContextMenu(contextMenu)\n})\n```\n\n__Platform Considerations__\n\n__Linux__\n\n* Tray icon uses StatusNotifierItem by default, when it is not available in user's desktop environment the `GtkStatusIcon` will be used instead.\n* The `click` event is emitted when the tray icon receives activation from user, however the StatusNotifierItem spec does not specify which action would cause an activation, for some environments it is left mouse click, but for some it might be double left mouse click.\n* In order for changes made to individual `MenuItem`s to take effect, you have to call `setContextMenu` again. For example:\n\n```\nconst { app, Menu, Tray } = require('electron')\n\nlet appIcon = null\napp.whenReady().then(() => {\n appIcon = new Tray('/path/to/my/icon')\n const contextMenu = Menu.buildFromTemplate([\n { label: 'Item1', type: 'radio' },\n { label: 'Item2', type: 'radio' }\n ])\n\n // Make a change to the context menu\n contextMenu.items[1].checked = false\n\n // Call this again for Linux because we modified the context menu\n appIcon.setContextMenu(contextMenu)\n})\n```\n\n__MacOS__\n\n* Icons passed to the Tray constructor should be Template Images.\n* To make sure your icon isn't grainy on retina monitors, be sure your `@2x` image is 144dpi.\n* If you are bundling your application (e.g., with webpack for development), be sure that the file names are not being mangled or hashed. The filename needs to end in Template, and the `@2x` image needs to have the same filename as the standard image, or MacOS will not magically invert your image's colors or use the high density image.\n* 16x16 (72dpi) and 32x32@2x (144dpi) work well for most icons.\n\n__Windows__\n\n* It is recommended to use `ICO` icons to get best visual effects.",
23874
23874
  "slug": "tray",
23875
23875
  "websiteUrl": "https://electronjs.org/docs/api/tray",
23876
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/tray.md",
23877
- "version": "22.3.0",
23876
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/tray.md",
23877
+ "version": "22.3.3",
23878
23878
  "type": "Class",
23879
23879
  "process": {
23880
23880
  "main": true,
@@ -24019,7 +24019,7 @@
24019
24019
  "properties": [
24020
24020
  {
24021
24021
  "name": "fontType",
24022
- "description": "The font family variant to display, can be `monospaced` or `monospacedDigit`. `monospaced` is available in macOS 10.15+ and `monospacedDigit` is available in macOS 10.11+. When left blank, the title uses the default system font.",
24022
+ "description": "The font family variant to display, can be `monospaced` or `monospacedDigit`. `monospaced` is available in macOS 10.15+ When left blank, the title uses the default system font.",
24023
24023
  "required": false,
24024
24024
  "additionalTags": [],
24025
24025
  "collection": false,
@@ -24641,8 +24641,8 @@
24641
24641
  "description": "`utilityProcess` creates a child process with Node.js and Message ports enabled. It provides the equivalent of `child_process.fork` API from Node.js but instead uses Services API from Chromium to launch the child process.\n\nProcess: Main<br />",
24642
24642
  "slug": "utility-process",
24643
24643
  "websiteUrl": "https://electronjs.org/docs/api/utility-process",
24644
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/utility-process.md",
24645
- "version": "22.3.0",
24644
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/utility-process.md",
24645
+ "version": "22.3.3",
24646
24646
  "type": "Module",
24647
24647
  "process": {
24648
24648
  "main": true,
@@ -24776,8 +24776,8 @@
24776
24776
  "description": "",
24777
24777
  "slug": "utility-process",
24778
24778
  "websiteUrl": "https://electronjs.org/docs/api/utility-process",
24779
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/utility-process.md",
24780
- "version": "22.3.0",
24779
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/utility-process.md",
24780
+ "version": "22.3.3",
24781
24781
  "type": "Class",
24782
24782
  "process": {
24783
24783
  "main": true,
@@ -24927,8 +24927,8 @@
24927
24927
  "description": "> Render and control web pages.\n\nProcess: Main\n\n`webContents` is an EventEmitter. It is responsible for rendering and controlling a web page and is a property of the `BrowserWindow` object. An example of accessing the `webContents` object:",
24928
24928
  "slug": "web-contents",
24929
24929
  "websiteUrl": "https://electronjs.org/docs/api/web-contents",
24930
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/web-contents.md",
24931
- "version": "22.3.0",
24930
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/web-contents.md",
24931
+ "version": "22.3.3",
24932
24932
  "type": "Module",
24933
24933
  "process": {
24934
24934
  "main": true,
@@ -25031,8 +25031,8 @@
25031
25031
  "description": "",
25032
25032
  "slug": "web-contents",
25033
25033
  "websiteUrl": "https://electronjs.org/docs/api/web-contents",
25034
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/web-contents.md",
25035
- "version": "22.3.0",
25034
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/web-contents.md",
25035
+ "version": "22.3.3",
25036
25036
  "type": "Class",
25037
25037
  "process": {
25038
25038
  "main": true,
@@ -30115,8 +30115,8 @@
30115
30115
  "description": "> Control web pages and iframes.\n\nProcess: Main\n\nThe `webFrameMain` module can be used to lookup frames across existing `WebContents` instances. Navigation events are the common use case.\n\n```\nconst { BrowserWindow, webFrameMain } = require('electron')\n\nconst win = new BrowserWindow({ width: 800, height: 1500 })\nwin.loadURL('https://twitter.com')\n\nwin.webContents.on(\n 'did-frame-navigate',\n (event, url, httpResponseCode, httpStatusText, isMainFrame, frameProcessId, frameRoutingId) => {\n const frame = webFrameMain.fromId(frameProcessId, frameRoutingId)\n if (frame) {\n const code = 'document.body.innerHTML = document.body.innerHTML.replaceAll(\"heck\", \"h*ck\")'\n frame.executeJavaScript(code)\n }\n }\n)\n```\n\nYou can also access frames of existing pages by using the `mainFrame` property of `WebContents`.",
30116
30116
  "slug": "web-frame-main",
30117
30117
  "websiteUrl": "https://electronjs.org/docs/api/web-frame-main",
30118
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/web-frame-main.md",
30119
- "version": "22.3.0",
30118
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/web-frame-main.md",
30119
+ "version": "22.3.3",
30120
30120
  "type": "Module",
30121
30121
  "process": {
30122
30122
  "main": true,
@@ -30170,8 +30170,8 @@
30170
30170
  "description": "",
30171
30171
  "slug": "web-frame-main",
30172
30172
  "websiteUrl": "https://electronjs.org/docs/api/web-frame-main",
30173
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/web-frame-main.md",
30174
- "version": "22.3.0",
30173
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/web-frame-main.md",
30174
+ "version": "22.3.3",
30175
30175
  "type": "Class",
30176
30176
  "process": {
30177
30177
  "main": true,
@@ -30469,8 +30469,8 @@
30469
30469
  "description": "> Customize the rendering of the current web page.\n\nProcess: Renderer\n\n`webFrame` export of the Electron module is an instance of the `WebFrame` class representing the current frame. Sub-frames can be retrieved by certain properties and methods (e.g. `webFrame.firstChild`).\n\nAn example of zooming current page to 200%.",
30470
30470
  "slug": "web-frame",
30471
30471
  "websiteUrl": "https://electronjs.org/docs/api/web-frame",
30472
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/web-frame.md",
30473
- "version": "22.3.0",
30472
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/web-frame.md",
30473
+ "version": "22.3.3",
30474
30474
  "type": "Module",
30475
30475
  "process": {
30476
30476
  "main": false,
@@ -31173,8 +31173,8 @@
31173
31173
  "description": "",
31174
31174
  "slug": "web-request",
31175
31175
  "websiteUrl": "https://electronjs.org/docs/api/web-request",
31176
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/web-request.md",
31177
- "version": "22.3.0",
31176
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/web-request.md",
31177
+ "version": "22.3.3",
31178
31178
  "type": "Class",
31179
31179
  "process": {
31180
31180
  "main": true,
@@ -33019,8 +33019,8 @@
33019
33019
  "description": "\n\n### Warning\n\nElectron's `webview` tag is based on Chromium's `webview`, which is undergoing dramatic architectural changes. This impacts the stability of `webviews`, including rendering, navigation, and event routing. We currently recommend to not use the `webview` tag and to consider alternatives, like `iframe`, Electron's `BrowserView`, or an architecture that avoids embedded content altogether.\n\n### Enabling\n\nBy default the `webview` tag is disabled in Electron >= 5. You need to enable the tag by setting the `webviewTag` webPreferences option when constructing your `BrowserWindow`. For more information see the BrowserWindow constructor docs.\n\n### Overview\n\n> Display external web content in an isolated frame and process.\n\nProcess: Renderer<br /> _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._\n\nUse the `webview` tag to embed 'guest' content (such as web pages) in your Electron app. The guest content is contained within the `webview` container. An embedded page within your app controls how the guest content is laid out and rendered.\n\nUnlike an `iframe`, the `webview` runs in a separate process than your app. It doesn't have the same permissions as your web page and all interactions between your app and embedded content will be asynchronous. This keeps your app safe from the embedded content. **Note:** Most methods called on the webview from the host page require a synchronous call to the main process.\n\n### Example\n\nTo embed a web page in your app, add the `webview` tag to your app's embedder page (this is the app page that will display the guest content). In its simplest form, the `webview` tag includes the `src` of the web page and css styles that control the appearance of the `webview` container:\n\n```\n<webview id=\"foo\" src=\"https://www.github.com/\" style=\"display:inline-flex; width:640px; height:480px\"></webview>\n```\n\nIf you want to control the guest content in any way, you can write JavaScript that listens for `webview` events and responds to those events using the `webview` methods. Here's sample code with two event listeners: one that listens for the web page to start loading, the other for the web page to stop loading, and displays a \"loading...\" message during the load time:\n\n```\n<script>\n onload = () => {\n const webview = document.querySelector('webview')\n const indicator = document.querySelector('.indicator')\n\n const loadstart = () => {\n indicator.innerText = 'loading...'\n }\n\n const loadstop = () => {\n indicator.innerText = ''\n }\n\n webview.addEventListener('did-start-loading', loadstart)\n webview.addEventListener('did-stop-loading', loadstop)\n }\n</script>\n```\n\n### Internal implementation\n\nUnder the hood `webview` is implemented with Out-of-Process iframes (OOPIFs). The `webview` tag is essentially a custom element using shadow DOM to wrap an `iframe` element inside it.\n\nSo the behavior of `webview` is very similar to a cross-domain `iframe`, as examples:\n\n* When clicking into a `webview`, the page focus will move from the embedder frame to `webview`.\n* You can not add keyboard, mouse, and scroll event listeners to `webview`.\n* All reactions between the embedder frame and `webview` are asynchronous.\n\n### CSS Styling Notes\n\nPlease note that the `webview` tag's style uses `display:flex;` internally to ensure the child `iframe` element fills the full height and width of its `webview` container when used with traditional and flexbox layouts. Please do not overwrite the default `display:flex;` CSS property, unless specifying `display:inline-flex;` for inline layout.\n\n### Tag Attributes\n\nThe `webview` tag has the following attributes:\n\n### `src`\n\n```\n<webview src=\"https://www.github.com/\"></webview>\n```\n\nA `string` representing the visible URL. Writing to this attribute initiates top-level navigation.\n\nAssigning `src` its own value will reload the current page.\n\nThe `src` attribute can also accept data URLs, such as `data:text/plain,Hello, world!`.\n\n### `nodeintegration`\n\n```\n<webview src=\"http://www.google.com/\" nodeintegration></webview>\n```\n\nA `boolean`. When this attribute is present the guest page in `webview` will have node integration and can use node APIs like `require` and `process` to access low level system resources. Node integration is disabled by default in the guest page.\n\n### `nodeintegrationinsubframes`\n\n```\n<webview src=\"http://www.google.com/\" nodeintegrationinsubframes></webview>\n```\n\nA `boolean` for the experimental option for enabling NodeJS support in sub-frames such as iframes inside the `webview`. All your preloads will load for every iframe, you can use `process.isMainFrame` to determine if you are in the main frame or not. This option is disabled by default in the guest page.\n\n### `plugins`\n\n```\n<webview src=\"https://www.github.com/\" plugins></webview>\n```\n\nA `boolean`. When this attribute is present the guest page in `webview` will be able to use browser plugins. Plugins are disabled by default.\n\n### `preload`\n\n```\n<!-- from a file -->\n<webview src=\"https://www.github.com/\" preload=\"./test.js\"></webview>\n<!-- or if you want to load from an asar archive -->\n<webview src=\"https://www.github.com/\" preload=\"./app.asar/test.js\"></webview>\n```\n\nA `string` that specifies a script that will be loaded before other scripts run in the guest page. The protocol of script's URL must be `file:` (even when using `asar:` archives) because it will be loaded by Node's `require` under the hood, which treats `asar:` archives as virtual directories.\n\nWhen the guest page doesn't have node integration this script will still have access to all Node APIs, but global objects injected by Node will be deleted after this script has finished executing.\n\n### `httpreferrer`\n\n```\n<webview src=\"https://www.github.com/\" httpreferrer=\"http://cheng.guru\"></webview>\n```\n\nA `string` that sets the referrer URL for the guest page.\n\n### `useragent`\n\n```\n<webview src=\"https://www.github.com/\" useragent=\"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; AS; rv:11.0) like Gecko\"></webview>\n```\n\nA `string` that sets the user agent for the guest page before the page is navigated to. Once the page is loaded, use the `setUserAgent` method to change the user agent.\n\n### `disablewebsecurity`\n\n```\n<webview src=\"https://www.github.com/\" disablewebsecurity></webview>\n```\n\nA `boolean`. When this attribute is present the guest page will have web security disabled. Web security is enabled by default.\n\n### `partition`\n\n```\n<webview src=\"https://github.com\" partition=\"persist:github\"></webview>\n<webview src=\"https://electronjs.org\" partition=\"electron\"></webview>\n```\n\nA `string` that sets the session used by the page. If `partition` starts with `persist:`, the page will use a persistent session available to all pages in the app with the same `partition`. if there is no `persist:` prefix, the page will use an in-memory session. By assigning the same `partition`, multiple pages can share the same session. If the `partition` is unset then default session of the app will be used.\n\nThis value can only be modified before the first navigation, since the session of an active renderer process cannot change. Subsequent attempts to modify the value will fail with a DOM exception.\n\n### `allowpopups`\n\n```\n<webview src=\"https://www.github.com/\" allowpopups></webview>\n```\n\nA `boolean`. When this attribute is present the guest page will be allowed to open new windows. Popups are disabled by default.\n\n### `webpreferences`\n\n```\n<webview src=\"https://github.com\" webpreferences=\"allowRunningInsecureContent, javascript=no\"></webview>\n```\n\nA `string` which is a comma separated list of strings which specifies the web preferences to be set on the webview. The full list of supported preference strings can be found in BrowserWindow.\n\nThe string follows the same format as the features string in `window.open`. A name by itself is given a `true` boolean value. A preference can be set to another value by including an `=`, followed by the value. Special values `yes` and `1` are interpreted as `true`, while `no` and `0` are interpreted as `false`.\n\n### `enableblinkfeatures`\n\n```\n<webview src=\"https://www.github.com/\" enableblinkfeatures=\"PreciseMemoryInfo, CSSVariables\"></webview>\n```\n\nA `string` which is a list of strings which specifies the blink features to be enabled separated by `,`. The full list of supported feature strings can be found in the RuntimeEnabledFeatures.json5 file.\n\n### `disableblinkfeatures`\n\n```\n<webview src=\"https://www.github.com/\" disableblinkfeatures=\"PreciseMemoryInfo, CSSVariables\"></webview>\n```\n\nA `string` which is a list of strings which specifies the blink features to be disabled separated by `,`. The full list of supported feature strings can be found in the RuntimeEnabledFeatures.json5 file.",
33020
33020
  "slug": "webview-tag",
33021
33021
  "websiteUrl": "https://electronjs.org/docs/api/webview-tag",
33022
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/webview-tag.md",
33023
- "version": "22.3.0",
33022
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/webview-tag.md",
33023
+ "version": "22.3.3",
33024
33024
  "type": "Element",
33025
33025
  "process": {
33026
33026
  "main": false,
@@ -35715,8 +35715,8 @@
35715
35715
  "description": "",
35716
35716
  "slug": "bluetooth-device",
35717
35717
  "websiteUrl": "https://electronjs.org/docs/api/structures/bluetooth-device",
35718
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/bluetooth-device.md",
35719
- "version": "22.3.0",
35718
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/bluetooth-device.md",
35719
+ "version": "22.3.3",
35720
35720
  "properties": [
35721
35721
  {
35722
35722
  "name": "deviceName",
@@ -35744,8 +35744,8 @@
35744
35744
  "description": "",
35745
35745
  "slug": "certificate-principal",
35746
35746
  "websiteUrl": "https://electronjs.org/docs/api/structures/certificate-principal",
35747
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/certificate-principal.md",
35748
- "version": "22.3.0",
35747
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/certificate-principal.md",
35748
+ "version": "22.3.3",
35749
35749
  "properties": [
35750
35750
  {
35751
35751
  "name": "commonName",
@@ -35809,8 +35809,8 @@
35809
35809
  "description": "",
35810
35810
  "slug": "certificate",
35811
35811
  "websiteUrl": "https://electronjs.org/docs/api/structures/certificate",
35812
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/certificate.md",
35813
- "version": "22.3.0",
35812
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/certificate.md",
35813
+ "version": "22.3.3",
35814
35814
  "properties": [
35815
35815
  {
35816
35816
  "name": "data",
@@ -35905,8 +35905,8 @@
35905
35905
  "description": "",
35906
35906
  "slug": "cookie",
35907
35907
  "websiteUrl": "https://electronjs.org/docs/api/structures/cookie",
35908
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/cookie.md",
35909
- "version": "22.3.0",
35908
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/cookie.md",
35909
+ "version": "22.3.3",
35910
35910
  "properties": [
35911
35911
  {
35912
35912
  "name": "name",
@@ -36018,8 +36018,8 @@
36018
36018
  "description": "",
36019
36019
  "slug": "cpu-usage",
36020
36020
  "websiteUrl": "https://electronjs.org/docs/api/structures/cpu-usage",
36021
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/cpu-usage.md",
36022
- "version": "22.3.0",
36021
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/cpu-usage.md",
36022
+ "version": "22.3.3",
36023
36023
  "properties": [
36024
36024
  {
36025
36025
  "name": "percentCPUUsage",
@@ -36045,8 +36045,8 @@
36045
36045
  "description": "",
36046
36046
  "slug": "crash-report",
36047
36047
  "websiteUrl": "https://electronjs.org/docs/api/structures/crash-report",
36048
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/crash-report.md",
36049
- "version": "22.3.0",
36048
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/crash-report.md",
36049
+ "version": "22.3.3",
36050
36050
  "properties": [
36051
36051
  {
36052
36052
  "name": "date",
@@ -36073,8 +36073,8 @@
36073
36073
  "description": "",
36074
36074
  "slug": "custom-scheme",
36075
36075
  "websiteUrl": "https://electronjs.org/docs/api/structures/custom-scheme",
36076
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/custom-scheme.md",
36077
- "version": "22.3.0",
36076
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/custom-scheme.md",
36077
+ "version": "22.3.3",
36078
36078
  "properties": [
36079
36079
  {
36080
36080
  "name": "scheme",
@@ -36159,8 +36159,8 @@
36159
36159
  "description": "",
36160
36160
  "slug": "desktop-capturer-source",
36161
36161
  "websiteUrl": "https://electronjs.org/docs/api/structures/desktop-capturer-source",
36162
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/desktop-capturer-source.md",
36163
- "version": "22.3.0",
36162
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/desktop-capturer-source.md",
36163
+ "version": "22.3.3",
36164
36164
  "properties": [
36165
36165
  {
36166
36166
  "name": "id",
@@ -36213,8 +36213,8 @@
36213
36213
  "description": "The `Display` object represents a physical display connected to the system. A fake `Display` may exist on a headless system, or a `Display` may correspond to a remote, virtual display.",
36214
36214
  "slug": "display",
36215
36215
  "websiteUrl": "https://electronjs.org/docs/api/structures/display",
36216
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/display.md",
36217
- "version": "22.3.0",
36216
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/display.md",
36217
+ "version": "22.3.3",
36218
36218
  "properties": [
36219
36219
  {
36220
36220
  "name": "id",
@@ -36383,8 +36383,8 @@
36383
36383
  "description": "",
36384
36384
  "slug": "event",
36385
36385
  "websiteUrl": "https://electronjs.org/docs/api/structures/event",
36386
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/event.md",
36387
- "version": "22.3.0",
36386
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/event.md",
36387
+ "version": "22.3.3",
36388
36388
  "properties": [
36389
36389
  {
36390
36390
  "name": "preventDefault",
@@ -36402,8 +36402,8 @@
36402
36402
  "description": "",
36403
36403
  "slug": "extension-info",
36404
36404
  "websiteUrl": "https://electronjs.org/docs/api/structures/extension-info",
36405
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/extension-info.md",
36406
- "version": "22.3.0",
36405
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/extension-info.md",
36406
+ "version": "22.3.3",
36407
36407
  "properties": [
36408
36408
  {
36409
36409
  "name": "name",
@@ -36431,8 +36431,8 @@
36431
36431
  "description": "",
36432
36432
  "slug": "extension",
36433
36433
  "websiteUrl": "https://electronjs.org/docs/api/structures/extension",
36434
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/extension.md",
36435
- "version": "22.3.0",
36434
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/extension.md",
36435
+ "version": "22.3.3",
36436
36436
  "properties": [
36437
36437
  {
36438
36438
  "name": "id",
@@ -36495,8 +36495,8 @@
36495
36495
  "description": "",
36496
36496
  "slug": "file-filter",
36497
36497
  "websiteUrl": "https://electronjs.org/docs/api/structures/file-filter",
36498
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/file-filter.md",
36499
- "version": "22.3.0",
36498
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/file-filter.md",
36499
+ "version": "22.3.3",
36500
36500
  "properties": [
36501
36501
  {
36502
36502
  "name": "name",
@@ -36524,8 +36524,8 @@
36524
36524
  "description": "",
36525
36525
  "slug": "file-path-with-headers",
36526
36526
  "websiteUrl": "https://electronjs.org/docs/api/structures/file-path-with-headers",
36527
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/file-path-with-headers.md",
36528
- "version": "22.3.0",
36527
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/file-path-with-headers.md",
36528
+ "version": "22.3.3",
36529
36529
  "properties": [
36530
36530
  {
36531
36531
  "name": "path",
@@ -36564,8 +36564,8 @@
36564
36564
  "description": "Possible values:\n\n* `disabled_software` - Software only. Hardware acceleration disabled (yellow)\n* `disabled_off` - Disabled (red)\n* `disabled_off_ok` - Disabled (yellow)\n* `unavailable_software` - Software only, hardware acceleration unavailable (yellow)\n* `unavailable_off` - Unavailable (red)\n* `unavailable_off_ok` - Unavailable (yellow)\n* `enabled_readback` - Hardware accelerated but at reduced performance (yellow)\n* `enabled_force` - Hardware accelerated on all pages (green)\n* `enabled` - Hardware accelerated (green)\n* `enabled_on` - Enabled (green)\n* `enabled_force_on` - Force enabled (green)",
36565
36565
  "slug": "gpu-feature-status",
36566
36566
  "websiteUrl": "https://electronjs.org/docs/api/structures/gpu-feature-status",
36567
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/gpu-feature-status.md",
36568
- "version": "22.3.0",
36567
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/gpu-feature-status.md",
36568
+ "version": "22.3.3",
36569
36569
  "properties": [
36570
36570
  {
36571
36571
  "name": "2d_canvas",
@@ -36692,8 +36692,8 @@
36692
36692
  "description": "",
36693
36693
  "slug": "hid-device",
36694
36694
  "websiteUrl": "https://electronjs.org/docs/api/structures/hid-device",
36695
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/hid-device.md",
36696
- "version": "22.3.0",
36695
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/hid-device.md",
36696
+ "version": "22.3.3",
36697
36697
  "properties": [
36698
36698
  {
36699
36699
  "name": "deviceId",
@@ -36755,8 +36755,8 @@
36755
36755
  "description": "",
36756
36756
  "slug": "input-event",
36757
36757
  "websiteUrl": "https://electronjs.org/docs/api/structures/input-event",
36758
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/input-event.md",
36759
- "version": "22.3.0",
36758
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/input-event.md",
36759
+ "version": "22.3.3",
36760
36760
  "properties": [
36761
36761
  {
36762
36762
  "name": "type",
@@ -37014,8 +37014,8 @@
37014
37014
  "description": "",
37015
37015
  "slug": "io-counters",
37016
37016
  "websiteUrl": "https://electronjs.org/docs/api/structures/io-counters",
37017
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/io-counters.md",
37018
- "version": "22.3.0",
37017
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/io-counters.md",
37018
+ "version": "22.3.3",
37019
37019
  "properties": [
37020
37020
  {
37021
37021
  "name": "readOperationCount",
@@ -37074,8 +37074,8 @@
37074
37074
  "description": "",
37075
37075
  "slug": "ipc-main-event",
37076
37076
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-main-event",
37077
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/ipc-main-event.md",
37078
- "version": "22.3.0",
37077
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/ipc-main-event.md",
37078
+ "version": "22.3.3",
37079
37079
  "properties": [
37080
37080
  {
37081
37081
  "name": "processId",
@@ -37162,8 +37162,8 @@
37162
37162
  "description": "",
37163
37163
  "slug": "ipc-main-invoke-event",
37164
37164
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-main-invoke-event",
37165
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/ipc-main-invoke-event.md",
37166
- "version": "22.3.0",
37165
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/ipc-main-invoke-event.md",
37166
+ "version": "22.3.3",
37167
37167
  "properties": [
37168
37168
  {
37169
37169
  "name": "processId",
@@ -37208,8 +37208,8 @@
37208
37208
  "description": "",
37209
37209
  "slug": "ipc-renderer-event",
37210
37210
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-renderer-event",
37211
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/ipc-renderer-event.md",
37212
- "version": "22.3.0",
37211
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/ipc-renderer-event.md",
37212
+ "version": "22.3.3",
37213
37213
  "properties": [
37214
37214
  {
37215
37215
  "name": "sender",
@@ -37243,8 +37243,8 @@
37243
37243
  "description": "**Note:** If a `JumpListCategory` object has neither the `type` nor the `name` property set then its `type` is assumed to be `tasks`. If the `name` property is set but the `type` property is omitted then the `type` is assumed to be `custom`.\n\n**Note:** The maximum length of a Jump List item's `description` property is 260 characters. Beyond this limit, the item will not be added to the Jump List, nor will it be displayed.",
37244
37244
  "slug": "jump-list-category",
37245
37245
  "websiteUrl": "https://electronjs.org/docs/api/structures/jump-list-category",
37246
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/jump-list-category.md",
37247
- "version": "22.3.0",
37246
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/jump-list-category.md",
37247
+ "version": "22.3.3",
37248
37248
  "properties": [
37249
37249
  {
37250
37250
  "name": "type",
@@ -37297,8 +37297,8 @@
37297
37297
  "description": "",
37298
37298
  "slug": "jump-list-item",
37299
37299
  "websiteUrl": "https://electronjs.org/docs/api/structures/jump-list-item",
37300
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/jump-list-item.md",
37301
- "version": "22.3.0",
37300
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/jump-list-item.md",
37301
+ "version": "22.3.3",
37302
37302
  "properties": [
37303
37303
  {
37304
37304
  "name": "type",
@@ -37401,8 +37401,8 @@
37401
37401
  "description": "",
37402
37402
  "slug": "keyboard-event",
37403
37403
  "websiteUrl": "https://electronjs.org/docs/api/structures/keyboard-event",
37404
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/keyboard-event.md",
37405
- "version": "22.3.0",
37404
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/keyboard-event.md",
37405
+ "version": "22.3.3",
37406
37406
  "properties": [
37407
37407
  {
37408
37408
  "name": "ctrlKey",
@@ -37453,8 +37453,8 @@
37453
37453
  "description": "",
37454
37454
  "slug": "keyboard-input-event",
37455
37455
  "websiteUrl": "https://electronjs.org/docs/api/structures/keyboard-input-event",
37456
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/keyboard-input-event.md",
37457
- "version": "22.3.0",
37456
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/keyboard-input-event.md",
37457
+ "version": "22.3.3",
37458
37458
  "properties": [
37459
37459
  {
37460
37460
  "name": "type",
@@ -37499,8 +37499,8 @@
37499
37499
  "description": "Note that all statistics are reported in Kilobytes.",
37500
37500
  "slug": "memory-info",
37501
37501
  "websiteUrl": "https://electronjs.org/docs/api/structures/memory-info",
37502
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/memory-info.md",
37503
- "version": "22.3.0",
37502
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/memory-info.md",
37503
+ "version": "22.3.3",
37504
37504
  "properties": [
37505
37505
  {
37506
37506
  "name": "workingSetSize",
@@ -37536,8 +37536,8 @@
37536
37536
  "description": "",
37537
37537
  "slug": "memory-usage-details",
37538
37538
  "websiteUrl": "https://electronjs.org/docs/api/structures/memory-usage-details",
37539
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/memory-usage-details.md",
37540
- "version": "22.3.0",
37539
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/memory-usage-details.md",
37540
+ "version": "22.3.3",
37541
37541
  "properties": [
37542
37542
  {
37543
37543
  "name": "count",
@@ -37571,8 +37571,8 @@
37571
37571
  "description": "",
37572
37572
  "slug": "mime-typed-buffer",
37573
37573
  "websiteUrl": "https://electronjs.org/docs/api/structures/mime-typed-buffer",
37574
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/mime-typed-buffer.md",
37575
- "version": "22.3.0",
37574
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/mime-typed-buffer.md",
37575
+ "version": "22.3.3",
37576
37576
  "properties": [
37577
37577
  {
37578
37578
  "name": "mimeType",
@@ -37609,8 +37609,8 @@
37609
37609
  "description": "",
37610
37610
  "slug": "mouse-input-event",
37611
37611
  "websiteUrl": "https://electronjs.org/docs/api/structures/mouse-input-event",
37612
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/mouse-input-event.md",
37613
- "version": "22.3.0",
37612
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/mouse-input-event.md",
37613
+ "version": "22.3.3",
37614
37614
  "properties": [
37615
37615
  {
37616
37616
  "name": "type",
@@ -37737,8 +37737,8 @@
37737
37737
  "description": "",
37738
37738
  "slug": "mouse-wheel-input-event",
37739
37739
  "websiteUrl": "https://electronjs.org/docs/api/structures/mouse-wheel-input-event",
37740
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/mouse-wheel-input-event.md",
37741
- "version": "22.3.0",
37740
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/mouse-wheel-input-event.md",
37741
+ "version": "22.3.3",
37742
37742
  "properties": [
37743
37743
  {
37744
37744
  "name": "type",
@@ -37826,8 +37826,8 @@
37826
37826
  "description": "",
37827
37827
  "slug": "notification-action",
37828
37828
  "websiteUrl": "https://electronjs.org/docs/api/structures/notification-action",
37829
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/notification-action.md",
37830
- "version": "22.3.0",
37829
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/notification-action.md",
37830
+ "version": "22.3.3",
37831
37831
  "properties": [
37832
37832
  {
37833
37833
  "name": "type",
@@ -37860,8 +37860,8 @@
37860
37860
  "description": "",
37861
37861
  "slug": "notification-response",
37862
37862
  "websiteUrl": "https://electronjs.org/docs/api/structures/notification-response",
37863
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/notification-response.md",
37864
- "version": "22.3.0",
37863
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/notification-response.md",
37864
+ "version": "22.3.3",
37865
37865
  "properties": [
37866
37866
  {
37867
37867
  "name": "actionIdentifier",
@@ -37925,8 +37925,8 @@
37925
37925
  "description": "",
37926
37926
  "slug": "payment-discount",
37927
37927
  "websiteUrl": "https://electronjs.org/docs/api/structures/payment-discount",
37928
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/payment-discount.md",
37929
- "version": "22.3.0",
37928
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/payment-discount.md",
37929
+ "version": "22.3.3",
37930
37930
  "properties": [
37931
37931
  {
37932
37932
  "name": "identifier",
@@ -37980,8 +37980,8 @@
37980
37980
  "description": "**Note:** Both `x` and `y` must be whole integers, when providing a point object as input to an Electron API we will automatically round your `x` and `y` values to the nearest whole integer.",
37981
37981
  "slug": "point",
37982
37982
  "websiteUrl": "https://electronjs.org/docs/api/structures/point",
37983
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/point.md",
37984
- "version": "22.3.0",
37983
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/point.md",
37984
+ "version": "22.3.3",
37985
37985
  "properties": [
37986
37986
  {
37987
37987
  "name": "x",
@@ -38007,8 +38007,8 @@
38007
38007
  "description": "",
38008
38008
  "slug": "post-body",
38009
38009
  "websiteUrl": "https://electronjs.org/docs/api/structures/post-body",
38010
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/post-body.md",
38011
- "version": "22.3.0",
38010
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/post-body.md",
38011
+ "version": "22.3.3",
38012
38012
  "properties": [
38013
38013
  {
38014
38014
  "name": "data",
@@ -38053,8 +38053,8 @@
38053
38053
  "description": "",
38054
38054
  "slug": "printer-info",
38055
38055
  "websiteUrl": "https://electronjs.org/docs/api/structures/printer-info",
38056
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/printer-info.md",
38057
- "version": "22.3.0",
38056
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/printer-info.md",
38057
+ "version": "22.3.3",
38058
38058
  "properties": [
38059
38059
  {
38060
38060
  "name": "name",
@@ -38116,8 +38116,8 @@
38116
38116
  "description": "",
38117
38117
  "slug": "process-memory-info",
38118
38118
  "websiteUrl": "https://electronjs.org/docs/api/structures/process-memory-info",
38119
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/process-memory-info.md",
38120
- "version": "22.3.0",
38119
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/process-memory-info.md",
38120
+ "version": "22.3.3",
38121
38121
  "properties": [
38122
38122
  {
38123
38123
  "name": "residentSet",
@@ -38154,8 +38154,8 @@
38154
38154
  "description": "",
38155
38155
  "slug": "process-metric",
38156
38156
  "websiteUrl": "https://electronjs.org/docs/api/structures/process-metric",
38157
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/process-metric.md",
38158
- "version": "22.3.0",
38157
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/process-metric.md",
38158
+ "version": "22.3.3",
38159
38159
  "properties": [
38160
38160
  {
38161
38161
  "name": "pid",
@@ -38304,8 +38304,8 @@
38304
38304
  "description": "",
38305
38305
  "slug": "product-discount",
38306
38306
  "websiteUrl": "https://electronjs.org/docs/api/structures/product-discount",
38307
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/product-discount.md",
38308
- "version": "22.3.0",
38307
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/product-discount.md",
38308
+ "version": "22.3.3",
38309
38309
  "properties": [
38310
38310
  {
38311
38311
  "name": "identifier",
@@ -38387,8 +38387,8 @@
38387
38387
  "description": "",
38388
38388
  "slug": "product-subscription-period",
38389
38389
  "websiteUrl": "https://electronjs.org/docs/api/structures/product-subscription-period",
38390
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/product-subscription-period.md",
38391
- "version": "22.3.0",
38390
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/product-subscription-period.md",
38391
+ "version": "22.3.3",
38392
38392
  "properties": [
38393
38393
  {
38394
38394
  "name": "numberOfUnits",
@@ -38432,8 +38432,8 @@
38432
38432
  "description": "",
38433
38433
  "slug": "product",
38434
38434
  "websiteUrl": "https://electronjs.org/docs/api/structures/product",
38435
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/product.md",
38436
- "version": "22.3.0",
38435
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/product.md",
38436
+ "version": "22.3.3",
38437
38437
  "properties": [
38438
38438
  {
38439
38439
  "name": "productIdentifier",
@@ -38571,8 +38571,8 @@
38571
38571
  "description": "",
38572
38572
  "slug": "protocol-request",
38573
38573
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-request",
38574
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/protocol-request.md",
38575
- "version": "22.3.0",
38574
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/protocol-request.md",
38575
+ "version": "22.3.3",
38576
38576
  "properties": [
38577
38577
  {
38578
38578
  "name": "url",
@@ -38637,8 +38637,8 @@
38637
38637
  "description": "",
38638
38638
  "slug": "protocol-response-upload-data",
38639
38639
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-response-upload-data",
38640
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/protocol-response-upload-data.md",
38641
- "version": "22.3.0",
38640
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/protocol-response-upload-data.md",
38641
+ "version": "22.3.3",
38642
38642
  "properties": [
38643
38643
  {
38644
38644
  "name": "contentType",
@@ -38675,8 +38675,8 @@
38675
38675
  "description": "",
38676
38676
  "slug": "protocol-response",
38677
38677
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-response",
38678
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/protocol-response.md",
38679
- "version": "22.3.0",
38678
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/protocol-response.md",
38679
+ "version": "22.3.3",
38680
38680
  "properties": [
38681
38681
  {
38682
38682
  "name": "error",
@@ -38824,8 +38824,8 @@
38824
38824
  "description": "",
38825
38825
  "slug": "rectangle",
38826
38826
  "websiteUrl": "https://electronjs.org/docs/api/structures/rectangle",
38827
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/rectangle.md",
38828
- "version": "22.3.0",
38827
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/rectangle.md",
38828
+ "version": "22.3.3",
38829
38829
  "properties": [
38830
38830
  {
38831
38831
  "name": "x",
@@ -38867,8 +38867,8 @@
38867
38867
  "description": "",
38868
38868
  "slug": "referrer",
38869
38869
  "websiteUrl": "https://electronjs.org/docs/api/structures/referrer",
38870
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/referrer.md",
38871
- "version": "22.3.0",
38870
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/referrer.md",
38871
+ "version": "22.3.3",
38872
38872
  "properties": [
38873
38873
  {
38874
38874
  "name": "url",
@@ -38929,8 +38929,8 @@
38929
38929
  "description": "",
38930
38930
  "slug": "scrubber-item",
38931
38931
  "websiteUrl": "https://electronjs.org/docs/api/structures/scrubber-item",
38932
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/scrubber-item.md",
38933
- "version": "22.3.0",
38932
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/scrubber-item.md",
38933
+ "version": "22.3.3",
38934
38934
  "properties": [
38935
38935
  {
38936
38936
  "name": "label",
@@ -38957,8 +38957,8 @@
38957
38957
  "description": "",
38958
38958
  "slug": "segmented-control-segment",
38959
38959
  "websiteUrl": "https://electronjs.org/docs/api/structures/segmented-control-segment",
38960
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/segmented-control-segment.md",
38961
- "version": "22.3.0",
38960
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/segmented-control-segment.md",
38961
+ "version": "22.3.3",
38962
38962
  "properties": [
38963
38963
  {
38964
38964
  "name": "label",
@@ -38993,8 +38993,8 @@
38993
38993
  "description": "",
38994
38994
  "slug": "serial-port",
38995
38995
  "websiteUrl": "https://electronjs.org/docs/api/structures/serial-port",
38996
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/serial-port.md",
38997
- "version": "22.3.0",
38996
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/serial-port.md",
38997
+ "version": "22.3.3",
38998
38998
  "properties": [
38999
38999
  {
39000
39000
  "name": "portId",
@@ -39076,8 +39076,8 @@
39076
39076
  "description": "",
39077
39077
  "slug": "service-worker-info",
39078
39078
  "websiteUrl": "https://electronjs.org/docs/api/structures/service-worker-info",
39079
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/service-worker-info.md",
39080
- "version": "22.3.0",
39079
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/service-worker-info.md",
39080
+ "version": "22.3.3",
39081
39081
  "properties": [
39082
39082
  {
39083
39083
  "name": "scriptUrl",
@@ -39113,8 +39113,8 @@
39113
39113
  "description": "",
39114
39114
  "slug": "shared-worker-info",
39115
39115
  "websiteUrl": "https://electronjs.org/docs/api/structures/shared-worker-info",
39116
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/shared-worker-info.md",
39117
- "version": "22.3.0",
39116
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/shared-worker-info.md",
39117
+ "version": "22.3.3",
39118
39118
  "properties": [
39119
39119
  {
39120
39120
  "name": "id",
@@ -39142,8 +39142,8 @@
39142
39142
  "description": "",
39143
39143
  "slug": "sharing-item",
39144
39144
  "websiteUrl": "https://electronjs.org/docs/api/structures/sharing-item",
39145
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/sharing-item.md",
39146
- "version": "22.3.0",
39145
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/sharing-item.md",
39146
+ "version": "22.3.3",
39147
39147
  "properties": [
39148
39148
  {
39149
39149
  "name": "texts",
@@ -39180,8 +39180,8 @@
39180
39180
  "description": "",
39181
39181
  "slug": "shortcut-details",
39182
39182
  "websiteUrl": "https://electronjs.org/docs/api/structures/shortcut-details",
39183
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/shortcut-details.md",
39184
- "version": "22.3.0",
39183
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/shortcut-details.md",
39184
+ "version": "22.3.3",
39185
39185
  "properties": [
39186
39186
  {
39187
39187
  "name": "target",
@@ -39262,8 +39262,8 @@
39262
39262
  "description": "",
39263
39263
  "slug": "size",
39264
39264
  "websiteUrl": "https://electronjs.org/docs/api/structures/size",
39265
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/size.md",
39266
- "version": "22.3.0",
39265
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/size.md",
39266
+ "version": "22.3.3",
39267
39267
  "properties": [
39268
39268
  {
39269
39269
  "name": "width",
@@ -39289,8 +39289,8 @@
39289
39289
  "description": "",
39290
39290
  "slug": "task",
39291
39291
  "websiteUrl": "https://electronjs.org/docs/api/structures/task",
39292
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/task.md",
39293
- "version": "22.3.0",
39292
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/task.md",
39293
+ "version": "22.3.3",
39294
39294
  "properties": [
39295
39295
  {
39296
39296
  "name": "program",
@@ -39362,8 +39362,8 @@
39362
39362
  "description": "The `flags` is an array that can include following `string`s:\n\n* `enabled` - The button is active and available to the user.\n* `disabled` - The button is disabled. It is present, but has a visual state indicating it will not respond to user action.\n* `dismissonclick` - When the button is clicked, the thumbnail window closes immediately.\n* `nobackground` - Do not draw a button border, use only the image.\n* `hidden` - The button is not shown to the user.\n* `noninteractive` - The button is enabled but not interactive; no pressed button state is drawn. This value is intended for instances where the button is used in a notification.",
39363
39363
  "slug": "thumbar-button",
39364
39364
  "websiteUrl": "https://electronjs.org/docs/api/structures/thumbar-button",
39365
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/thumbar-button.md",
39366
- "version": "22.3.0",
39365
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/thumbar-button.md",
39366
+ "version": "22.3.3",
39367
39367
  "properties": [
39368
39368
  {
39369
39369
  "name": "icon",
@@ -39409,8 +39409,8 @@
39409
39409
  "description": "",
39410
39410
  "slug": "trace-categories-and-options",
39411
39411
  "websiteUrl": "https://electronjs.org/docs/api/structures/trace-categories-and-options",
39412
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/trace-categories-and-options.md",
39413
- "version": "22.3.0",
39412
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/trace-categories-and-options.md",
39413
+ "version": "22.3.3",
39414
39414
  "properties": [
39415
39415
  {
39416
39416
  "name": "categoryFilter",
@@ -39438,8 +39438,8 @@
39438
39438
  "description": "An example TraceConfig that roughly matches what Chrome DevTools records:",
39439
39439
  "slug": "trace-config",
39440
39440
  "websiteUrl": "https://electronjs.org/docs/api/structures/trace-config",
39441
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/trace-config.md",
39442
- "version": "22.3.0",
39441
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/trace-config.md",
39442
+ "version": "22.3.3",
39443
39443
  "properties": [
39444
39444
  {
39445
39445
  "name": "recording_mode",
@@ -39553,8 +39553,8 @@
39553
39553
  "description": "",
39554
39554
  "slug": "transaction",
39555
39555
  "websiteUrl": "https://electronjs.org/docs/api/structures/transaction",
39556
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/transaction.md",
39557
- "version": "22.3.0",
39556
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/transaction.md",
39557
+ "version": "22.3.3",
39558
39558
  "properties": [
39559
39559
  {
39560
39560
  "name": "transactionIdentifier",
@@ -39682,8 +39682,8 @@
39682
39682
  "description": "",
39683
39683
  "slug": "upload-data",
39684
39684
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-data",
39685
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/upload-data.md",
39686
- "version": "22.3.0",
39685
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/upload-data.md",
39686
+ "version": "22.3.3",
39687
39687
  "properties": [
39688
39688
  {
39689
39689
  "name": "bytes",
@@ -39719,8 +39719,8 @@
39719
39719
  "description": "",
39720
39720
  "slug": "upload-file",
39721
39721
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-file",
39722
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/upload-file.md",
39723
- "version": "22.3.0",
39722
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/upload-file.md",
39723
+ "version": "22.3.3",
39724
39724
  "properties": [
39725
39725
  {
39726
39726
  "name": "type",
@@ -39771,8 +39771,8 @@
39771
39771
  "description": "",
39772
39772
  "slug": "upload-raw-data",
39773
39773
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-raw-data",
39774
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/upload-raw-data.md",
39775
- "version": "22.3.0",
39774
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/upload-raw-data.md",
39775
+ "version": "22.3.3",
39776
39776
  "properties": [
39777
39777
  {
39778
39778
  "name": "type",
@@ -39798,8 +39798,8 @@
39798
39798
  "description": "This type is a helper alias, no object will never exist of this type.",
39799
39799
  "slug": "user-default-types",
39800
39800
  "websiteUrl": "https://electronjs.org/docs/api/structures/user-default-types",
39801
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/user-default-types.md",
39802
- "version": "22.3.0",
39801
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/user-default-types.md",
39802
+ "version": "22.3.3",
39803
39803
  "properties": [
39804
39804
  {
39805
39805
  "name": "string",
@@ -39892,8 +39892,8 @@
39892
39892
  "description": "",
39893
39893
  "slug": "web-request-filter",
39894
39894
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-request-filter",
39895
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/web-request-filter.md",
39896
- "version": "22.3.0",
39895
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/web-request-filter.md",
39896
+ "version": "22.3.3",
39897
39897
  "properties": [
39898
39898
  {
39899
39899
  "name": "urls",
@@ -39912,8 +39912,8 @@
39912
39912
  "description": "",
39913
39913
  "slug": "web-source",
39914
39914
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-source",
39915
- "repoUrl": "https://github.com/electron/electron/blob/v22.3.0/docs/api/structures/web-source.md",
39916
- "version": "22.3.0",
39915
+ "repoUrl": "https://github.com/electron/electron/blob/v22.3.3/docs/api/structures/web-source.md",
39916
+ "version": "22.3.3",
39917
39917
  "properties": [
39918
39918
  {
39919
39919
  "name": "code",