openfin-adapter
Advanced tools
Comparing version 32.75.17 to 32.75.18
{ | ||
"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 { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6357815
29668