@types/openfin
Advanced tools
Comparing version 34.0.3 to 34.0.4
@@ -17,3 +17,3 @@ import { EmitterBase, Base, Reply, RuntimeEvent } from '../base'; | ||
manifestUrl: string; | ||
parentUuid?: string; | ||
parentUuid?: string | undefined; | ||
runtime: object; | ||
@@ -26,5 +26,5 @@ } | ||
export interface ConfigInterface { | ||
desktop?: boolean; | ||
startMenu?: boolean; | ||
systemStartup?: boolean; | ||
desktop?: boolean | undefined; | ||
startMenu?: boolean | undefined; | ||
systemStartup?: boolean | undefined; | ||
} | ||
@@ -73,3 +73,3 @@ export interface TrayInfo { | ||
identity: Identity; | ||
_manifestUrl?: string; | ||
_manifestUrl?: string | undefined; | ||
private window; | ||
@@ -76,0 +76,0 @@ constructor(wire: Transport, identity: Identity); |
@@ -42,3 +42,3 @@ /// <reference types="node" /> | ||
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 { Identity } from '../../../identity'; | ||
channelId: string; | ||
isExternal?: boolean; | ||
isExternal?: boolean | undefined; | ||
channelName: string; | ||
@@ -8,0 +8,0 @@ } |
@@ -8,5 +8,5 @@ import { ChannelClient } from './client'; | ||
export interface Options { | ||
wait?: boolean; | ||
wait?: boolean | undefined; | ||
uuid: string; | ||
name?: string; | ||
name?: string | undefined; | ||
payload?: any; | ||
@@ -13,0 +13,0 @@ } |
@@ -78,4 +78,4 @@ /// <reference types="node" /> | ||
topic: string; | ||
destinationUuid?: string; | ||
destinationUuid?: string | undefined; | ||
message?: any; | ||
} |
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 GetLogRequestType { | ||
name: string; | ||
endFile?: string; | ||
sizeLimit?: number; | ||
endFile?: string | undefined; | ||
sizeLimit?: number | undefined; | ||
} | ||
@@ -6,0 +6,0 @@ export interface LogInfo { |
@@ -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; | ||
} |
@@ -48,3 +48,3 @@ import { Base, EmitterBase, RuntimeEvent } from '../base'; | ||
entityType: string; | ||
parent?: Identity; | ||
parent?: Identity | undefined; | ||
} | ||
@@ -51,0 +51,0 @@ /** |
export interface Identity { | ||
uuid: string; | ||
name?: string; | ||
name?: string | undefined; | ||
} |
@@ -39,3 +39,3 @@ /// <reference types="node" /> | ||
payload: T; | ||
correlationId?: number; | ||
correlationId?: number | undefined; | ||
} | ||
@@ -42,0 +42,0 @@ export declare class Payload { |
@@ -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 { |
{ | ||
"name": "@types/openfin", | ||
"version": "34.0.3", | ||
"version": "34.0.4", | ||
"description": "TypeScript definitions for OpenFin API", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openfin", | ||
"license": "MIT", | ||
@@ -35,4 +36,4 @@ "contributors": [ | ||
}, | ||
"typesPublisherContentHash": "77f33d5af6e60d2818e2addafb48d951b1082b37d230a1dfc99e6935d25c2276", | ||
"typeScriptVersion": "3.0" | ||
"typesPublisherContentHash": "b707486514327b60109e0382a47fb51d831ed5e1f677dd8fbd11a078af503b0c", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 15 May 2020 11:31:53 GMT | ||
* Last updated: Thu, 08 Jul 2021 18:52:09 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
175087
0
0