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 32.75.17 to 32.75.18

2

package.json
{
"name": "openfin-adapter",
"version": "32.75.17",
"version": "32.75.18",
"license": "SEE LICENSE IN LICENSE.MD",

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

@@ -85,6 +85,4 @@ import type * as OpenFin from '../OpenFin';

};
'get-permissions': {
request: void;
response: any;
};
'get-permissions': GetterCall<any>;
'get-all-channels': GetterCall<OpenFin.ProviderIdentity[]>;
'set-file-download-location': {

@@ -164,6 +162,3 @@ request: OpenFin.ApplicationIdentity & {

};
'system-get-printers': {
request: void;
response: OpenFin.PrinterInfo[];
};
'system-get-printers': GetterCall<OpenFin.PrinterInfo[]>;
'system-register-shutdown-handler': VoidCall;

@@ -176,2 +171,3 @@ }

type VoidCall = ApiCall<void, void>;
type GetterCall<T> = ApiCall<void, T>;
type IdentityCall<AdditionalPayload = {}, Response = void> = ApiCall<AdditionalPayload & OpenFin.Identity, Response>;

@@ -178,0 +174,0 @@ interface ProtocolMapBase {

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