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

openfin-adapter

Package Overview
Dependencies
Maintainers
1
Versions
970
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openfin-adapter - npm Package Compare versions

Comparing version 19.55.2 to 19.55.3

2

package.json
{
"name": "openfin-adapter",
"version": "19.55.2",
"version": "19.55.3",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "main": "./src/main.js",

@@ -276,2 +276,6 @@ import { EmitterBase } from '../base';

* @typedef { object } EntityProcessDetails
* @property { string } uuid The uuid for the entity
* @property { string } name The name for the entity
* @property { string } url URL associated with the entity
* @property { string } entityType Type for the entity: window or view
* @property { number } cpuUsage The percentage of total CPU usage

@@ -288,7 +292,22 @@ * @property { number } nonPagedPoolUsage The current nonpaged pool usage in bytes

* @property { number } pid The native process identifier
* @property { string } uuid The uuid for the entity
* @property { string } name The name for the entity
* @property { string } entityType Type for the entity
* @property { Array<FrameProcessDetails> } frames Array of process info for each iframe corresponeding to the entity
*/
/**
* FrameProcessDetails interface
* @typedef { object } FrameProcessDetails
* @property { string } url Current URL associated with the process
* @property { string } entityType Type for the frame
* @property { number } cpuUsage The percentage of total CPU usage
* @property { number } nonPagedPoolUsage The current nonpaged pool usage in bytes
* @property { number } pageFaultCount The number of page faults
* @property { number } pagedPoolUsage The current paged pool usage in bytes
* @property { number } pagefileUsage The total amount of memory in bytes that the memory manager has committed
* @property { number } peakNonPagedPoolUsage The peak nonpaged pool usage in bytes
* @property { number } peakPagedPoolUsage The peak paged pool usage in bytes
* @property { number } peakPagefileUsage The peak value in bytes of pagefileUsage during the lifetime of this process
* @property { number } peakWorkingSetSize The peak working set size in bytes
* @property { number } workingSetSize The current working set size (both shared and private data) in bytes
* @property { number } pid The native process identifier
*/
/**
* ProcessDetails interface

@@ -780,3 +799,3 @@ * @typedef { object } ProcessDetails

/**
* Opens the passed URL in the default web browser.
* Opens the passed URL in the default web browser. It only supports http(s) and fin(s) protocols.
* @param { string } url The URL to open

@@ -783,0 +802,0 @@ * @return {Promise.<void>}

@@ -253,2 +253,6 @@ "use strict";

* @typedef { object } EntityProcessDetails
* @property { string } uuid The uuid for the entity
* @property { string } name The name for the entity
* @property { string } url URL associated with the entity
* @property { string } entityType Type for the entity: window or view
* @property { number } cpuUsage The percentage of total CPU usage

@@ -265,7 +269,22 @@ * @property { number } nonPagedPoolUsage The current nonpaged pool usage in bytes

* @property { number } pid The native process identifier
* @property { string } uuid The uuid for the entity
* @property { string } name The name for the entity
* @property { string } entityType Type for the entity
* @property { Array<FrameProcessDetails> } frames Array of process info for each iframe corresponeding to the entity
*/
/**
* FrameProcessDetails interface
* @typedef { object } FrameProcessDetails
* @property { string } url Current URL associated with the process
* @property { string } entityType Type for the frame
* @property { number } cpuUsage The percentage of total CPU usage
* @property { number } nonPagedPoolUsage The current nonpaged pool usage in bytes
* @property { number } pageFaultCount The number of page faults
* @property { number } pagedPoolUsage The current paged pool usage in bytes
* @property { number } pagefileUsage The total amount of memory in bytes that the memory manager has committed
* @property { number } peakNonPagedPoolUsage The peak nonpaged pool usage in bytes
* @property { number } peakPagedPoolUsage The peak paged pool usage in bytes
* @property { number } peakPagefileUsage The peak value in bytes of pagefileUsage during the lifetime of this process
* @property { number } peakWorkingSetSize The peak working set size in bytes
* @property { number } workingSetSize The current working set size (both shared and private data) in bytes
* @property { number } pid The native process identifier
*/
/**
* ProcessDetails interface

@@ -897,3 +916,3 @@ * @typedef { object } ProcessDetails

/**
* Opens the passed URL in the default web browser.
* Opens the passed URL in the default web browser. It only supports http(s) and fin(s) protocols.
* @param { string } url The URL to open

@@ -900,0 +919,0 @@ * @return {Promise.<void>}

@@ -14,6 +14,10 @@ export interface ProcessDetails {

}
export interface EntityProcessDetails extends ProcessDetails {
export interface FrameProcessDetails extends ProcessDetails {
url: string;
entityType: string;
}
export interface EntityProcessDetails extends FrameProcessDetails {
name: string;
entityType: string;
uuid: string;
iframes: Array<FrameProcessDetails>;
}

@@ -20,0 +24,0 @@ export interface AppProcessInfo {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc