@types/openfin
Advanced tools
Comparing version 43.0.4 to 43.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; | ||
} | ||
@@ -170,3 +170,3 @@ export interface TrayInfo { | ||
identity: Identity; | ||
_manifestUrl?: string; | ||
_manifestUrl?: string | undefined; | ||
private window; | ||
@@ -173,0 +173,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; | ||
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?: any; | ||
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; | ||
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; | ||
} |
@@ -19,3 +19,3 @@ import { WebContents } from '../webcontents/webcontents'; | ||
export interface BrowserViewOptions { | ||
autoResize?: AutoResizeOptions; | ||
autoResize?: AutoResizeOptions | undefined; | ||
} | ||
@@ -31,3 +31,3 @@ export interface BrowserViewCreationOptions extends BrowserViewOptions { | ||
height: number; | ||
}; | ||
} | undefined; | ||
} | ||
@@ -34,0 +34,0 @@ export declare class BrowserViewModule extends Base { |
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; | ||
} | ||
@@ -38,0 +38,0 @@ export interface ServiceConfiguration { |
@@ -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,5 +5,5 @@ export interface RuntimeInfo { | ||
port: number; | ||
securityRealm?: string; | ||
securityRealm?: string | undefined; | ||
version: string; | ||
args: object; | ||
} |
@@ -71,3 +71,3 @@ import { Base } from '../base'; | ||
entityType: EntityType; | ||
parent?: Identity; | ||
parent?: Identity | undefined; | ||
} | ||
@@ -74,0 +74,0 @@ export interface Area { |
import { DownloadPreloadOption } from '../system/download-preload'; | ||
import { RGB, ContextMenuSettings } from '../../shapes'; | ||
export interface WindowOption { | ||
accelerator?: object; | ||
alphaMask?: RGB; | ||
alwaysOnTop?: boolean; | ||
api?: object; | ||
applicationIcon?: string; | ||
aspectRatio?: number; | ||
autoShow?: boolean; | ||
backgroundColor?: string; | ||
contentNavigation?: object; | ||
contextMenu?: boolean; | ||
contextMenuSettings?: ContextMenuSettings; | ||
cornerRounding?: object; | ||
accelerator?: object | undefined; | ||
alphaMask?: RGB | undefined; | ||
alwaysOnTop?: boolean | undefined; | ||
api?: object | undefined; | ||
applicationIcon?: string | undefined; | ||
aspectRatio?: number | undefined; | ||
autoShow?: boolean | undefined; | ||
backgroundColor?: string | undefined; | ||
contentNavigation?: object | undefined; | ||
contextMenu?: boolean | undefined; | ||
contextMenuSettings?: ContextMenuSettings | undefined; | ||
cornerRounding?: object | undefined; | ||
customData?: any; | ||
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; | ||
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; | ||
} | ||
@@ -47,0 +47,0 @@ export interface CustomRequestHeaders { |
export interface Identity { | ||
uuid: string; | ||
name?: string; | ||
name?: string | undefined; | ||
} | ||
export interface GroupWindowIdentity extends Identity { | ||
isExternalWindow?: boolean; | ||
isExternalWindow?: boolean | undefined; | ||
} |
export declare type AnchorType = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; | ||
export interface TransitionOptions { | ||
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; | ||
} | ||
@@ -20,3 +20,3 @@ export interface Size extends TransitionBase { | ||
duration: number; | ||
relative?: boolean; | ||
relative?: boolean | undefined; | ||
} | ||
@@ -32,4 +32,4 @@ export interface Position extends TransitionBase { | ||
left: number; | ||
right?: number; | ||
bottom?: number; | ||
right?: number | undefined; | ||
bottom?: number | undefined; | ||
} | ||
@@ -42,5 +42,5 @@ export interface RGB { | ||
export interface ContextMenuSettings { | ||
enable?: boolean; | ||
devtools?: boolean; | ||
reload?: boolean; | ||
enable?: boolean | undefined; | ||
devtools?: boolean | undefined; | ||
reload?: boolean | 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,7 +14,7 @@ /// <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; | ||
} | ||
@@ -26,17 +26,17 @@ export interface ServiceConfig { | ||
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; | ||
services?: ServiceConfig[]; | ||
lrsUrl?: string | undefined; | ||
assetsUrl?: string | undefined; | ||
devToolsPort?: number | undefined; | ||
installerUI?: boolean | undefined; | ||
runtime?: RuntimeConfig | undefined; | ||
services?: ServiceConfig[] | undefined; | ||
appAssets?: [{ | ||
@@ -48,5 +48,5 @@ src: string; | ||
args: string; | ||
}]; | ||
customItems?: [any]; | ||
timeout?: number; | ||
}] | undefined; | ||
customItems?: [any] | undefined; | ||
timeout?: number | undefined; | ||
} | ||
@@ -53,0 +53,0 @@ export interface ConfigWithUuid extends BaseConfig { |
{ | ||
"name": "@types/openfin", | ||
"version": "43.0.4", | ||
"version": "43.0.5", | ||
"description": "TypeScript definitions for OpenFin API", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openfin", | ||
"license": "MIT", | ||
@@ -45,4 +46,4 @@ "contributors": [ | ||
}, | ||
"typesPublisherContentHash": "4a0798efbe8060e330ff33ca01fba1a235fc6ec2fa4600cccd0fded7ce37c1dd", | ||
"typeScriptVersion": "3.0" | ||
"typesPublisherContentHash": "d348eda96e7b934e7604a7905abdca390c610c1a4e1ee8c9b7c3fa249d8a93b8", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 15 May 2020 11:31:41 GMT | ||
* Last updated: Thu, 08 Jul 2021 18:52:00 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` |
Sorry, the diff of this file is too big to display
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
242951
0
0