AboutSupportDeveloper GuideVersion 39.125.81.6

Governs access to OpenFin APIs. Property paths of this literal match call paths for OpenFin API functions (e.g. System.launchExternalProcess), and can take a value of true, false, or in some cases an object literal for more-complicated semantics.

For a list of APIs that are secure by default (and thus must be granted access via permissions), see https://developers.openfin.co/of-docs/docs/api-security#secured-apis.

interface Permissions {
    Application?: Partial<ApplicationPermissions>;
    System?: Partial<SystemPermissions>;
    devices?: DeviceInfo[];
    webAPIs?: WebPermission[];
}

Properties

Application?: Partial<ApplicationPermissions>
System?: Partial<SystemPermissions>
devices?: DeviceInfo[]
webAPIs?: WebPermission[]