@types/openfin
Advanced tools
Comparing version 39.0.4 to 39.0.5
@@ -19,3 +19,3 @@ import { EmitterBase, Base, Reply } from '../base'; | ||
manifestUrl: string; | ||
parentUuid?: string; | ||
parentUuid?: string | undefined; | ||
runtime: object; | ||
@@ -31,5 +31,5 @@ } | ||
export interface ShortCutConfig { | ||
desktop?: boolean; | ||
startMenu?: boolean; | ||
systemStartup?: boolean; | ||
desktop?: boolean | undefined; | ||
startMenu?: boolean | undefined; | ||
systemStartup?: boolean | undefined; | ||
} | ||
@@ -162,3 +162,3 @@ export interface TrayInfo { | ||
identity: Identity; | ||
_manifestUrl?: string; | ||
_manifestUrl?: string | undefined; | ||
private window; | ||
@@ -165,0 +165,0 @@ constructor(wire: Transport, identity: Identity); |
import { WindowOption, CustomRequestHeaders } from '../window/windowOption'; | ||
import { DownloadPreloadOption } from '../system/download-preload'; | ||
export interface ApplicationOption { | ||
disableIabSecureLogging?: boolean; | ||
loadErrorMessage?: string; | ||
mainWindowOptions?: WindowOption; | ||
name?: string; | ||
nonPersistent?: boolean; | ||
plugins?: boolean; | ||
spellCheck?: boolean; | ||
url?: string; | ||
disableIabSecureLogging?: boolean | undefined; | ||
loadErrorMessage?: string | undefined; | ||
mainWindowOptions?: WindowOption | undefined; | ||
name?: string | undefined; | ||
nonPersistent?: boolean | undefined; | ||
plugins?: boolean | undefined; | ||
spellCheck?: boolean | undefined; | ||
url?: string | undefined; | ||
uuid: string; | ||
webSecurity?: boolean; | ||
accelerator?: object; | ||
alwaysOnTop?: boolean; | ||
api?: object; | ||
aspectRatio?: number; | ||
autoShow?: boolean; | ||
backgroundColor?: string; | ||
contentNavigation?: object; | ||
contextMenu?: boolean; | ||
cornerRounding?: object; | ||
customData?: string; | ||
customRequestHeaders?: Array<CustomRequestHeaders>; | ||
defaultCentered?: boolean; | ||
defaultHeight?: number; | ||
defaultLeft?: number; | ||
defaultTop?: number; | ||
defaultWidth?: number; | ||
frame?: boolean; | ||
hideOnClose?: boolean; | ||
icon?: string; | ||
maxHeight?: number; | ||
maximizable?: boolean; | ||
maxWidth?: number; | ||
minHeight?: number; | ||
minimizable?: boolean; | ||
minWidth?: number; | ||
opacity?: number; | ||
preloadScripts?: Array<DownloadPreloadOption>; | ||
resizable?: boolean; | ||
resizeRegion?: object; | ||
saveWindowState?: boolean; | ||
shadow?: boolean; | ||
showTaskbarIcon?: boolean; | ||
smallWindow?: boolean; | ||
state?: string; | ||
taskbarIconGroup?: string; | ||
waitForPageLoad?: boolean; | ||
webSecurity?: boolean | undefined; | ||
accelerator?: object | undefined; | ||
alwaysOnTop?: boolean | undefined; | ||
api?: object | undefined; | ||
aspectRatio?: number | undefined; | ||
autoShow?: boolean | undefined; | ||
backgroundColor?: string | undefined; | ||
contentNavigation?: object | undefined; | ||
contextMenu?: boolean | undefined; | ||
cornerRounding?: object | undefined; | ||
customData?: string | undefined; | ||
customRequestHeaders?: Array<CustomRequestHeaders> | undefined; | ||
defaultCentered?: boolean | undefined; | ||
defaultHeight?: number | undefined; | ||
defaultLeft?: number | undefined; | ||
defaultTop?: number | undefined; | ||
defaultWidth?: number | undefined; | ||
frame?: boolean | undefined; | ||
hideOnClose?: boolean | undefined; | ||
icon?: string | undefined; | ||
maxHeight?: number | undefined; | ||
maximizable?: boolean | undefined; | ||
maxWidth?: number | undefined; | ||
minHeight?: number | undefined; | ||
minimizable?: boolean | undefined; | ||
minWidth?: number | undefined; | ||
opacity?: number | undefined; | ||
preloadScripts?: Array<DownloadPreloadOption> | undefined; | ||
resizable?: boolean | undefined; | ||
resizeRegion?: object | undefined; | ||
saveWindowState?: boolean | undefined; | ||
shadow?: boolean | undefined; | ||
showTaskbarIcon?: boolean | undefined; | ||
smallWindow?: boolean | undefined; | ||
state?: string | undefined; | ||
taskbarIconGroup?: string | undefined; | ||
waitForPageLoad?: boolean | undefined; | ||
} |
@@ -8,3 +8,3 @@ /// <reference types="node" /> | ||
export interface SubOptions { | ||
timestamp?: number; | ||
timestamp?: number | undefined; | ||
} | ||
@@ -45,3 +45,3 @@ export declare class Base { | ||
uuid: string; | ||
name?: string; | ||
name?: string | undefined; | ||
} |
export interface WriteRequestType { | ||
data: string; | ||
type?: string; | ||
type?: string | undefined; | ||
} | ||
export interface WriteAnyRequestType { | ||
data: { | ||
text?: string; | ||
html?: string; | ||
rtf?: string; | ||
text?: string | undefined; | ||
html?: string | undefined; | ||
rtf?: string | undefined; | ||
}; | ||
type?: string; | ||
type?: string | undefined; | ||
} |
@@ -5,3 +5,3 @@ import { BaseEventMap, ApplicationEvent } from './base'; | ||
channelId: string; | ||
name?: string; | ||
name?: string | undefined; | ||
} | ||
@@ -8,0 +8,0 @@ export interface ChannelEvents extends BaseEventMap { |
@@ -5,3 +5,3 @@ import { Identity } from '../../../identity'; | ||
channelId: string; | ||
isExternal?: boolean; | ||
isExternal?: boolean | undefined; | ||
channelName: string; | ||
@@ -8,0 +8,0 @@ } |
@@ -9,3 +9,3 @@ import { ChannelClient } from './client'; | ||
export interface ConnectOptions { | ||
wait?: boolean; | ||
wait?: boolean | undefined; | ||
payload?: any; | ||
@@ -12,0 +12,0 @@ } |
@@ -78,4 +78,4 @@ /// <reference types="node" /> | ||
topic: string; | ||
destinationUuid?: string; | ||
destinationUuid?: string | undefined; | ||
message?: any; | ||
} |
export interface ApplicationInfo { | ||
isRunning: boolean; | ||
uuid: string; | ||
parentUuid?: string; | ||
parentUuid?: string | undefined; | ||
} |
export interface ClearCacheOption { | ||
appcache?: boolean; | ||
cache?: boolean; | ||
cookies?: boolean; | ||
localStorage?: boolean; | ||
appcache?: boolean | undefined; | ||
cache?: boolean | undefined; | ||
cookies?: boolean | undefined; | ||
localStorage?: boolean | undefined; | ||
} |
export interface CrashReporterOption { | ||
diagnosticMode: boolean; | ||
isRunning?: boolean; | ||
isRunning?: boolean | undefined; | ||
} |
@@ -5,5 +5,5 @@ export interface AppAssetInfo { | ||
version: string; | ||
target?: string; | ||
args?: string; | ||
mandatory?: boolean; | ||
target?: string | undefined; | ||
args?: string | undefined; | ||
mandatory?: boolean | undefined; | ||
} | ||
@@ -10,0 +10,0 @@ export interface RuntimeDownloadOptions { |
@@ -6,4 +6,4 @@ export interface DownloadPreloadOption { | ||
success: boolean; | ||
url?: string; | ||
url?: string | undefined; | ||
error: string; | ||
} |
export interface ExternalProcessRequestType { | ||
path?: string; | ||
alias?: string; | ||
arguments?: string; | ||
listener?: LaunchExternalProcessListener; | ||
lifetime?: string; | ||
certificate?: CertificationInfo; | ||
path?: string | undefined; | ||
alias?: string | undefined; | ||
arguments?: string | undefined; | ||
listener?: LaunchExternalProcessListener | undefined; | ||
lifetime?: string | undefined; | ||
certificate?: CertificationInfo | undefined; | ||
} | ||
export interface CertificationInfo { | ||
serial?: string; | ||
subject?: string; | ||
publickey?: string; | ||
thumbprint?: string; | ||
trusted?: boolean; | ||
serial?: string | undefined; | ||
subject?: string | undefined; | ||
publickey?: string | undefined; | ||
thumbprint?: string | undefined; | ||
trusted?: boolean | undefined; | ||
} | ||
@@ -35,3 +35,3 @@ export interface ExitCode { | ||
pid: number; | ||
listener?: LaunchExternalProcessListener; | ||
listener?: LaunchExternalProcessListener | undefined; | ||
} |
@@ -17,3 +17,3 @@ export interface Time { | ||
export interface HostSpecs { | ||
aeroGlassEnabled?: boolean; | ||
aeroGlassEnabled?: boolean | undefined; | ||
arch: string; | ||
@@ -24,3 +24,3 @@ cpus: CpuInfo[]; | ||
name: string; | ||
screenSaver?: boolean; | ||
screenSaver?: boolean | undefined; | ||
} |
export interface GetLogRequestType { | ||
name: string; | ||
endFile?: string; | ||
sizeLimit?: number; | ||
endFile?: string | undefined; | ||
sizeLimit?: number | undefined; | ||
} | ||
@@ -6,0 +6,0 @@ export interface LogInfo { |
export interface ProcessInfo { | ||
cpuUsage?: number; | ||
name?: string; | ||
nonPagedPoolUsage?: number; | ||
pageFaultCount?: number; | ||
pagedPoolUsage?: number; | ||
pagefileUsage?: number; | ||
peakNonPagedPoolUsage?: number; | ||
peakPagedPoolUsage?: number; | ||
peakPagefileUsage?: number; | ||
peakWorkingSetSize?: number; | ||
processId?: number; | ||
uuid?: string; | ||
workingSetSize?: number; | ||
cpuUsage?: number | undefined; | ||
name?: string | undefined; | ||
nonPagedPoolUsage?: number | undefined; | ||
pageFaultCount?: number | undefined; | ||
pagedPoolUsage?: number | undefined; | ||
pagefileUsage?: number | undefined; | ||
peakNonPagedPoolUsage?: number | undefined; | ||
peakPagedPoolUsage?: number | undefined; | ||
peakPagefileUsage?: number | undefined; | ||
peakWorkingSetSize?: number | undefined; | ||
processId?: number | undefined; | ||
uuid?: string | undefined; | ||
workingSetSize?: number | undefined; | ||
} |
@@ -5,4 +5,4 @@ export interface RuntimeInfo { | ||
port: number; | ||
securityRealm?: string; | ||
securityRealm?: string | undefined; | ||
version: string; | ||
} |
@@ -6,5 +6,5 @@ interface Bounds { | ||
left: number; | ||
right?: number; | ||
bottom?: number; | ||
right?: number | undefined; | ||
bottom?: number | undefined; | ||
} | ||
export default Bounds; |
export interface TransitionBase { | ||
duration: number; | ||
relative?: boolean; | ||
relative?: boolean | undefined; | ||
} | ||
@@ -18,8 +18,8 @@ export interface Opacity extends TransitionBase { | ||
interrupt: boolean; | ||
tween?: string; | ||
tween?: string | undefined; | ||
} | ||
export interface Transition { | ||
opacity?: Opacity; | ||
position?: Position; | ||
size?: Size; | ||
opacity?: Opacity | undefined; | ||
position?: Position | undefined; | ||
size?: Size | undefined; | ||
} |
@@ -71,3 +71,3 @@ import { Base, EmitterBase } from '../base'; | ||
entityType: EntityType; | ||
parent?: Identity; | ||
parent?: Identity | undefined; | ||
} | ||
@@ -74,0 +74,0 @@ export interface Area { |
import { DownloadPreloadOption } from '../system/download-preload'; | ||
export interface WindowOption { | ||
accelerator?: object; | ||
alwaysOnTop?: boolean; | ||
api?: object; | ||
aspectRatio?: number; | ||
autoShow?: boolean; | ||
backgroundColor?: string; | ||
contentNavigation?: object; | ||
contextMenu?: boolean; | ||
cornerRounding?: object; | ||
customData?: string; | ||
customRequestHeaders?: Array<CustomRequestHeaders>; | ||
defaultCentered?: boolean; | ||
defaultHeight?: number; | ||
defaultLeft?: number; | ||
defaultTop?: number; | ||
defaultWidth?: number; | ||
frame?: boolean; | ||
hideOnClose?: boolean; | ||
icon?: string; | ||
maxHeight?: number; | ||
maximizable?: boolean; | ||
maxWidth?: number; | ||
minHeight?: number; | ||
minimizable?: boolean; | ||
minWidth?: number; | ||
name?: string; | ||
opacity?: number; | ||
preloadScripts?: Array<DownloadPreloadOption>; | ||
resizable?: boolean; | ||
resizeRegion?: object; | ||
saveWindowState?: boolean; | ||
shadow?: boolean; | ||
showTaskbarIcon?: boolean; | ||
smallWindow?: boolean; | ||
state?: string; | ||
taskbarIconGroup?: string; | ||
url?: string; | ||
uuid?: string; | ||
waitForPageLoad?: boolean; | ||
accelerator?: object | undefined; | ||
alwaysOnTop?: boolean | undefined; | ||
api?: object | undefined; | ||
aspectRatio?: number | undefined; | ||
autoShow?: boolean | undefined; | ||
backgroundColor?: string | undefined; | ||
contentNavigation?: object | undefined; | ||
contextMenu?: boolean | undefined; | ||
cornerRounding?: object | undefined; | ||
customData?: string | undefined; | ||
customRequestHeaders?: Array<CustomRequestHeaders> | undefined; | ||
defaultCentered?: boolean | undefined; | ||
defaultHeight?: number | undefined; | ||
defaultLeft?: number | undefined; | ||
defaultTop?: number | undefined; | ||
defaultWidth?: number | undefined; | ||
frame?: boolean | undefined; | ||
hideOnClose?: boolean | undefined; | ||
icon?: string | undefined; | ||
maxHeight?: number | undefined; | ||
maximizable?: boolean | undefined; | ||
maxWidth?: number | undefined; | ||
minHeight?: number | undefined; | ||
minimizable?: boolean | undefined; | ||
minWidth?: number | undefined; | ||
name?: string | undefined; | ||
opacity?: number | undefined; | ||
preloadScripts?: Array<DownloadPreloadOption> | undefined; | ||
resizable?: boolean | undefined; | ||
resizeRegion?: object | undefined; | ||
saveWindowState?: boolean | undefined; | ||
shadow?: boolean | undefined; | ||
showTaskbarIcon?: boolean | undefined; | ||
smallWindow?: boolean | undefined; | ||
state?: string | undefined; | ||
taskbarIconGroup?: string | undefined; | ||
url?: string | undefined; | ||
uuid?: string | undefined; | ||
waitForPageLoad?: boolean | undefined; | ||
} | ||
@@ -43,0 +43,0 @@ export interface CustomRequestHeaders { |
export interface Identity { | ||
uuid: string; | ||
name?: string; | ||
name?: string | undefined; | ||
} |
@@ -42,3 +42,3 @@ /// <reference types="node" /> | ||
payload: T; | ||
correlationId?: number; | ||
correlationId?: number | undefined; | ||
} | ||
@@ -45,0 +45,0 @@ export declare class EventMessage implements Message<RuntimeEvent> { |
@@ -14,23 +14,23 @@ /// <reference types="node" /> | ||
version: string; | ||
fallbackVersion?: string; | ||
securityRealm?: string; | ||
verboseLogging?: boolean; | ||
arguments?: string; | ||
rvmDir?: string; | ||
fallbackVersion?: string | undefined; | ||
securityRealm?: string | undefined; | ||
verboseLogging?: boolean | undefined; | ||
arguments?: string | undefined; | ||
rvmDir?: string | undefined; | ||
} | ||
export interface BaseConfig { | ||
uuid?: string; | ||
address?: string; | ||
name?: string; | ||
nonPersistent?: boolean; | ||
runtimeClient?: boolean; | ||
licenseKey?: string; | ||
uuid?: string | undefined; | ||
address?: string | undefined; | ||
name?: string | undefined; | ||
nonPersistent?: boolean | undefined; | ||
runtimeClient?: boolean | undefined; | ||
licenseKey?: string | undefined; | ||
client?: any; | ||
manifestUrl?: string; | ||
manifestUrl?: string | undefined; | ||
startupApp?: any; | ||
lrsUrl?: string; | ||
assetsUrl?: string; | ||
devToolsPort?: number; | ||
installerUI?: boolean; | ||
runtime?: RuntimeConfig; | ||
lrsUrl?: string | undefined; | ||
assetsUrl?: string | undefined; | ||
devToolsPort?: number | undefined; | ||
installerUI?: boolean | undefined; | ||
runtime?: RuntimeConfig | undefined; | ||
appAssets?: [{ | ||
@@ -42,5 +42,5 @@ src: string; | ||
args: string; | ||
}]; | ||
customItems?: [any]; | ||
timeout?: number; | ||
}] | undefined; | ||
customItems?: [any] | undefined; | ||
timeout?: number | undefined; | ||
} | ||
@@ -47,0 +47,0 @@ export interface ConfigWithUuid extends BaseConfig { |
@@ -477,3 +477,3 @@ // Type definitions for non-npm package OpenFin API 39.0 | ||
*/ | ||
ignoreMouseOver?: boolean; | ||
ignoreMouseOver?: boolean | undefined; | ||
/** | ||
@@ -486,7 +486,7 @@ * A message of any primitive or composite-primitive type to be passed to the notification upon creation. | ||
*/ | ||
timeout?: number | "never"; | ||
timeout?: number | "never" | undefined; | ||
/** | ||
* The url of the notification | ||
*/ | ||
url?: string; | ||
url?: string | undefined; | ||
/** | ||
@@ -493,0 +493,0 @@ * A function that is called when a notification is clicked. |
{ | ||
"name": "@types/openfin", | ||
"version": "39.0.4", | ||
"version": "39.0.5", | ||
"description": "TypeScript definitions for OpenFin API", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openfin", | ||
"license": "MIT", | ||
@@ -40,4 +41,4 @@ "contributors": [ | ||
}, | ||
"typesPublisherContentHash": "b2bdd84b5cae989c57132cc426dabebb187d1182f1c709ccfba6eb1d38eba084", | ||
"typeScriptVersion": "3.0" | ||
"typesPublisherContentHash": "051419f2ce130c0db4e9de763d3e8c818ca2adb2cbfe19cf1e34f6502888622b", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 15 May 2020 11:31:47 GMT | ||
* Last updated: Thu, 08 Jul 2021 18:52:05 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node), [@types/ws](https://npmjs.com/package/@types/ws) | ||
@@ -14,0 +14,0 @@ * Global values: `fin` |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
211541
0
0