@openfin/fdc3-api 42.100.33 → 42.100.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/fdc3-api-alpha.d.ts +29 -9
- package/out/fdc3-api-beta.d.ts +29 -9
- package/out/fdc3-api-public.d.ts +29 -9
- package/out/fdc3-api.d.ts +29 -9
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -6565,9 +6565,10 @@ declare type InitPlatformOptions = {
|
|
|
6565
6565
|
* Injection setting for the `fin` API.
|
|
6566
6566
|
*
|
|
6567
6567
|
* * 'none': The `fin` API will be not available.
|
|
6568
|
+
* * 'preloads': The `fin` API will be available in a synchronous context in the preload script only.
|
|
6568
6569
|
* * 'global': The entire `fin` API will be available.
|
|
6569
6570
|
*/
|
|
6570
|
-
declare type InjectionType = 'none' | 'global';
|
|
6571
|
+
declare type InjectionType = 'none' | 'preloads' | 'global';
|
|
6571
6572
|
|
|
6572
6573
|
/**
|
|
6573
6574
|
* Generated when the value of the element changes.
|
|
@@ -10135,6 +10136,7 @@ declare namespace OpenFin {
|
|
|
10135
10136
|
PathServeRequest,
|
|
10136
10137
|
ServeAssetOptions,
|
|
10137
10138
|
ServedAssetInfo,
|
|
10139
|
+
ResolvedDomainSettings,
|
|
10138
10140
|
ApplicationEvents,
|
|
10139
10141
|
BaseEvents,
|
|
10140
10142
|
ExternalApplicationEvents,
|
|
@@ -12877,13 +12879,19 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12877
12879
|
'system-update-process-logging-options': ApiCall<{
|
|
12878
12880
|
options: OpenFin.ProcessLoggingOptions;
|
|
12879
12881
|
}, void>;
|
|
12880
|
-
'get-domain-settings': ApiCall<
|
|
12882
|
+
'get-domain-settings': ApiCall<void, OpenFin.DomainSettings>;
|
|
12881
12883
|
'serve-asset': ApiCall<{
|
|
12882
12884
|
options: OpenFin.ServeAssetOptions;
|
|
12883
12885
|
}, OpenFin.ServedAssetInfo>;
|
|
12884
|
-
'set-domain-settings': ApiCall<
|
|
12885
|
-
domainSettings: OpenFin.
|
|
12886
|
+
'set-domain-settings': ApiCall<{
|
|
12887
|
+
domainSettings: OpenFin.DomainSettings;
|
|
12886
12888
|
}, void>;
|
|
12889
|
+
'get-current-domain-settings': ApiCall<{
|
|
12890
|
+
identity: OpenFin.Identity;
|
|
12891
|
+
}, OpenFin.ResolvedDomainSettings>;
|
|
12892
|
+
'resolve-domain-settings': ApiCall<{
|
|
12893
|
+
url: string;
|
|
12894
|
+
}, OpenFin.ResolvedDomainSettings>;
|
|
12887
12895
|
'system-register-shutdown-handler': VoidCall;
|
|
12888
12896
|
'get-permissions': GetterCall<any>;
|
|
12889
12897
|
'refresh-extensions': {
|
|
@@ -13366,6 +13374,14 @@ declare type ResizeRegion = {
|
|
|
13366
13374
|
};
|
|
13367
13375
|
};
|
|
13368
13376
|
|
|
13377
|
+
declare type ResolvedDomainSettings = {
|
|
13378
|
+
url: string;
|
|
13379
|
+
settings: PerDomainSettings;
|
|
13380
|
+
matches: DomainSettingsRule[];
|
|
13381
|
+
multipleDomainMatchBehavior: MultipleDomainMatchBehavior;
|
|
13382
|
+
default?: PerDomainSettings;
|
|
13383
|
+
};
|
|
13384
|
+
|
|
13369
13385
|
/**
|
|
13370
13386
|
* Generated when an HTTP load was cancelled or failed.
|
|
13371
13387
|
* @interface
|
|
@@ -15565,7 +15581,9 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15565
15581
|
* // }
|
|
15566
15582
|
* ```
|
|
15567
15583
|
*/
|
|
15568
|
-
setDomainSettings(domainSettings: OpenFin.
|
|
15584
|
+
setDomainSettings(domainSettings: OpenFin.DomainSettings): Promise<void>;
|
|
15585
|
+
getCurrentDomainSettings(identity: OpenFin.Identity): Promise<OpenFin.ResolvedDomainSettings>;
|
|
15586
|
+
resolveDomainSettings(url: string): Promise<OpenFin.ResolvedDomainSettings>;
|
|
15569
15587
|
/**
|
|
15570
15588
|
* Attempts to install and enable extensions for the security realm. Users may want to call this function in response
|
|
15571
15589
|
* to an `extensions-install-failed` event. Only extensions allowed by every application on the current security realm
|
|
@@ -15639,6 +15657,10 @@ declare type SystemEventType = EventType_8;
|
|
|
15639
15657
|
declare type SystemPermissions = {
|
|
15640
15658
|
getOSInfo: boolean;
|
|
15641
15659
|
getAllExternalWindows: boolean;
|
|
15660
|
+
setDomainSettings: boolean;
|
|
15661
|
+
getDomainSettings: boolean;
|
|
15662
|
+
getCurrentDomainSettings: boolean;
|
|
15663
|
+
resolveDomainSettings: boolean;
|
|
15642
15664
|
launchExternalProcess: boolean | {
|
|
15643
15665
|
enabled: boolean;
|
|
15644
15666
|
assets?: {
|
|
@@ -15975,7 +15997,7 @@ declare class Transport<MeType extends EntityType = EntityType> extends EventEmi
|
|
|
15975
15997
|
sendRaw: Wire['send'];
|
|
15976
15998
|
eventAggregator: EventAggregator;
|
|
15977
15999
|
protected messageHandlers: MessageHandler[];
|
|
15978
|
-
constructor(
|
|
16000
|
+
constructor(factory: WireFactory, environment: Environment, config: OpenFin.Identity);
|
|
15979
16001
|
getFin(): OpenFin.Fin<MeType>;
|
|
15980
16002
|
registerFin(_fin: OpenFin.Fin<MeType>): void;
|
|
15981
16003
|
connectSync: () => void;
|
|
@@ -19570,9 +19592,7 @@ declare type Wire = EventEmitter & {
|
|
|
19570
19592
|
getPort(): string;
|
|
19571
19593
|
};
|
|
19572
19594
|
|
|
19573
|
-
declare type
|
|
19574
|
-
new (onmessage: (data: any) => void): Wire;
|
|
19575
|
-
};
|
|
19595
|
+
declare type WireFactory = (onmessage: (data: any) => void) => Wire;
|
|
19576
19596
|
|
|
19577
19597
|
/* Excluded from this release type: WithId */
|
|
19578
19598
|
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -6565,9 +6565,10 @@ declare type InitPlatformOptions = {
|
|
|
6565
6565
|
* Injection setting for the `fin` API.
|
|
6566
6566
|
*
|
|
6567
6567
|
* * 'none': The `fin` API will be not available.
|
|
6568
|
+
* * 'preloads': The `fin` API will be available in a synchronous context in the preload script only.
|
|
6568
6569
|
* * 'global': The entire `fin` API will be available.
|
|
6569
6570
|
*/
|
|
6570
|
-
declare type InjectionType = 'none' | 'global';
|
|
6571
|
+
declare type InjectionType = 'none' | 'preloads' | 'global';
|
|
6571
6572
|
|
|
6572
6573
|
/**
|
|
6573
6574
|
* Generated when the value of the element changes.
|
|
@@ -10135,6 +10136,7 @@ declare namespace OpenFin {
|
|
|
10135
10136
|
PathServeRequest,
|
|
10136
10137
|
ServeAssetOptions,
|
|
10137
10138
|
ServedAssetInfo,
|
|
10139
|
+
ResolvedDomainSettings,
|
|
10138
10140
|
ApplicationEvents,
|
|
10139
10141
|
BaseEvents,
|
|
10140
10142
|
ExternalApplicationEvents,
|
|
@@ -12877,13 +12879,19 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12877
12879
|
'system-update-process-logging-options': ApiCall<{
|
|
12878
12880
|
options: OpenFin.ProcessLoggingOptions;
|
|
12879
12881
|
}, void>;
|
|
12880
|
-
'get-domain-settings': ApiCall<
|
|
12882
|
+
'get-domain-settings': ApiCall<void, OpenFin.DomainSettings>;
|
|
12881
12883
|
'serve-asset': ApiCall<{
|
|
12882
12884
|
options: OpenFin.ServeAssetOptions;
|
|
12883
12885
|
}, OpenFin.ServedAssetInfo>;
|
|
12884
|
-
'set-domain-settings': ApiCall<
|
|
12885
|
-
domainSettings: OpenFin.
|
|
12886
|
+
'set-domain-settings': ApiCall<{
|
|
12887
|
+
domainSettings: OpenFin.DomainSettings;
|
|
12886
12888
|
}, void>;
|
|
12889
|
+
'get-current-domain-settings': ApiCall<{
|
|
12890
|
+
identity: OpenFin.Identity;
|
|
12891
|
+
}, OpenFin.ResolvedDomainSettings>;
|
|
12892
|
+
'resolve-domain-settings': ApiCall<{
|
|
12893
|
+
url: string;
|
|
12894
|
+
}, OpenFin.ResolvedDomainSettings>;
|
|
12887
12895
|
'system-register-shutdown-handler': VoidCall;
|
|
12888
12896
|
'get-permissions': GetterCall<any>;
|
|
12889
12897
|
'refresh-extensions': {
|
|
@@ -13366,6 +13374,14 @@ declare type ResizeRegion = {
|
|
|
13366
13374
|
};
|
|
13367
13375
|
};
|
|
13368
13376
|
|
|
13377
|
+
declare type ResolvedDomainSettings = {
|
|
13378
|
+
url: string;
|
|
13379
|
+
settings: PerDomainSettings;
|
|
13380
|
+
matches: DomainSettingsRule[];
|
|
13381
|
+
multipleDomainMatchBehavior: MultipleDomainMatchBehavior;
|
|
13382
|
+
default?: PerDomainSettings;
|
|
13383
|
+
};
|
|
13384
|
+
|
|
13369
13385
|
/**
|
|
13370
13386
|
* Generated when an HTTP load was cancelled or failed.
|
|
13371
13387
|
* @interface
|
|
@@ -15565,7 +15581,9 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15565
15581
|
* // }
|
|
15566
15582
|
* ```
|
|
15567
15583
|
*/
|
|
15568
|
-
setDomainSettings(domainSettings: OpenFin.
|
|
15584
|
+
setDomainSettings(domainSettings: OpenFin.DomainSettings): Promise<void>;
|
|
15585
|
+
getCurrentDomainSettings(identity: OpenFin.Identity): Promise<OpenFin.ResolvedDomainSettings>;
|
|
15586
|
+
resolveDomainSettings(url: string): Promise<OpenFin.ResolvedDomainSettings>;
|
|
15569
15587
|
/**
|
|
15570
15588
|
* Attempts to install and enable extensions for the security realm. Users may want to call this function in response
|
|
15571
15589
|
* to an `extensions-install-failed` event. Only extensions allowed by every application on the current security realm
|
|
@@ -15639,6 +15657,10 @@ declare type SystemEventType = EventType_8;
|
|
|
15639
15657
|
declare type SystemPermissions = {
|
|
15640
15658
|
getOSInfo: boolean;
|
|
15641
15659
|
getAllExternalWindows: boolean;
|
|
15660
|
+
setDomainSettings: boolean;
|
|
15661
|
+
getDomainSettings: boolean;
|
|
15662
|
+
getCurrentDomainSettings: boolean;
|
|
15663
|
+
resolveDomainSettings: boolean;
|
|
15642
15664
|
launchExternalProcess: boolean | {
|
|
15643
15665
|
enabled: boolean;
|
|
15644
15666
|
assets?: {
|
|
@@ -15975,7 +15997,7 @@ declare class Transport<MeType extends EntityType = EntityType> extends EventEmi
|
|
|
15975
15997
|
sendRaw: Wire['send'];
|
|
15976
15998
|
eventAggregator: EventAggregator;
|
|
15977
15999
|
protected messageHandlers: MessageHandler[];
|
|
15978
|
-
constructor(
|
|
16000
|
+
constructor(factory: WireFactory, environment: Environment, config: OpenFin.Identity);
|
|
15979
16001
|
getFin(): OpenFin.Fin<MeType>;
|
|
15980
16002
|
registerFin(_fin: OpenFin.Fin<MeType>): void;
|
|
15981
16003
|
connectSync: () => void;
|
|
@@ -19570,9 +19592,7 @@ declare type Wire = EventEmitter & {
|
|
|
19570
19592
|
getPort(): string;
|
|
19571
19593
|
};
|
|
19572
19594
|
|
|
19573
|
-
declare type
|
|
19574
|
-
new (onmessage: (data: any) => void): Wire;
|
|
19575
|
-
};
|
|
19595
|
+
declare type WireFactory = (onmessage: (data: any) => void) => Wire;
|
|
19576
19596
|
|
|
19577
19597
|
/* Excluded from this release type: WithId */
|
|
19578
19598
|
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -6565,9 +6565,10 @@ declare type InitPlatformOptions = {
|
|
|
6565
6565
|
* Injection setting for the `fin` API.
|
|
6566
6566
|
*
|
|
6567
6567
|
* * 'none': The `fin` API will be not available.
|
|
6568
|
+
* * 'preloads': The `fin` API will be available in a synchronous context in the preload script only.
|
|
6568
6569
|
* * 'global': The entire `fin` API will be available.
|
|
6569
6570
|
*/
|
|
6570
|
-
declare type InjectionType = 'none' | 'global';
|
|
6571
|
+
declare type InjectionType = 'none' | 'preloads' | 'global';
|
|
6571
6572
|
|
|
6572
6573
|
/**
|
|
6573
6574
|
* Generated when the value of the element changes.
|
|
@@ -10135,6 +10136,7 @@ declare namespace OpenFin {
|
|
|
10135
10136
|
PathServeRequest,
|
|
10136
10137
|
ServeAssetOptions,
|
|
10137
10138
|
ServedAssetInfo,
|
|
10139
|
+
ResolvedDomainSettings,
|
|
10138
10140
|
ApplicationEvents,
|
|
10139
10141
|
BaseEvents,
|
|
10140
10142
|
ExternalApplicationEvents,
|
|
@@ -12877,13 +12879,19 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12877
12879
|
'system-update-process-logging-options': ApiCall<{
|
|
12878
12880
|
options: OpenFin.ProcessLoggingOptions;
|
|
12879
12881
|
}, void>;
|
|
12880
|
-
'get-domain-settings': ApiCall<
|
|
12882
|
+
'get-domain-settings': ApiCall<void, OpenFin.DomainSettings>;
|
|
12881
12883
|
'serve-asset': ApiCall<{
|
|
12882
12884
|
options: OpenFin.ServeAssetOptions;
|
|
12883
12885
|
}, OpenFin.ServedAssetInfo>;
|
|
12884
|
-
'set-domain-settings': ApiCall<
|
|
12885
|
-
domainSettings: OpenFin.
|
|
12886
|
+
'set-domain-settings': ApiCall<{
|
|
12887
|
+
domainSettings: OpenFin.DomainSettings;
|
|
12886
12888
|
}, void>;
|
|
12889
|
+
'get-current-domain-settings': ApiCall<{
|
|
12890
|
+
identity: OpenFin.Identity;
|
|
12891
|
+
}, OpenFin.ResolvedDomainSettings>;
|
|
12892
|
+
'resolve-domain-settings': ApiCall<{
|
|
12893
|
+
url: string;
|
|
12894
|
+
}, OpenFin.ResolvedDomainSettings>;
|
|
12887
12895
|
'system-register-shutdown-handler': VoidCall;
|
|
12888
12896
|
'get-permissions': GetterCall<any>;
|
|
12889
12897
|
'refresh-extensions': {
|
|
@@ -13366,6 +13374,14 @@ declare type ResizeRegion = {
|
|
|
13366
13374
|
};
|
|
13367
13375
|
};
|
|
13368
13376
|
|
|
13377
|
+
declare type ResolvedDomainSettings = {
|
|
13378
|
+
url: string;
|
|
13379
|
+
settings: PerDomainSettings;
|
|
13380
|
+
matches: DomainSettingsRule[];
|
|
13381
|
+
multipleDomainMatchBehavior: MultipleDomainMatchBehavior;
|
|
13382
|
+
default?: PerDomainSettings;
|
|
13383
|
+
};
|
|
13384
|
+
|
|
13369
13385
|
/**
|
|
13370
13386
|
* Generated when an HTTP load was cancelled or failed.
|
|
13371
13387
|
* @interface
|
|
@@ -15565,7 +15581,9 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15565
15581
|
* // }
|
|
15566
15582
|
* ```
|
|
15567
15583
|
*/
|
|
15568
|
-
setDomainSettings(domainSettings: OpenFin.
|
|
15584
|
+
setDomainSettings(domainSettings: OpenFin.DomainSettings): Promise<void>;
|
|
15585
|
+
getCurrentDomainSettings(identity: OpenFin.Identity): Promise<OpenFin.ResolvedDomainSettings>;
|
|
15586
|
+
resolveDomainSettings(url: string): Promise<OpenFin.ResolvedDomainSettings>;
|
|
15569
15587
|
/**
|
|
15570
15588
|
* Attempts to install and enable extensions for the security realm. Users may want to call this function in response
|
|
15571
15589
|
* to an `extensions-install-failed` event. Only extensions allowed by every application on the current security realm
|
|
@@ -15639,6 +15657,10 @@ declare type SystemEventType = EventType_8;
|
|
|
15639
15657
|
declare type SystemPermissions = {
|
|
15640
15658
|
getOSInfo: boolean;
|
|
15641
15659
|
getAllExternalWindows: boolean;
|
|
15660
|
+
setDomainSettings: boolean;
|
|
15661
|
+
getDomainSettings: boolean;
|
|
15662
|
+
getCurrentDomainSettings: boolean;
|
|
15663
|
+
resolveDomainSettings: boolean;
|
|
15642
15664
|
launchExternalProcess: boolean | {
|
|
15643
15665
|
enabled: boolean;
|
|
15644
15666
|
assets?: {
|
|
@@ -15975,7 +15997,7 @@ declare class Transport<MeType extends EntityType = EntityType> extends EventEmi
|
|
|
15975
15997
|
sendRaw: Wire['send'];
|
|
15976
15998
|
eventAggregator: EventAggregator;
|
|
15977
15999
|
protected messageHandlers: MessageHandler[];
|
|
15978
|
-
constructor(
|
|
16000
|
+
constructor(factory: WireFactory, environment: Environment, config: OpenFin.Identity);
|
|
15979
16001
|
getFin(): OpenFin.Fin<MeType>;
|
|
15980
16002
|
registerFin(_fin: OpenFin.Fin<MeType>): void;
|
|
15981
16003
|
connectSync: () => void;
|
|
@@ -19570,9 +19592,7 @@ declare type Wire = EventEmitter & {
|
|
|
19570
19592
|
getPort(): string;
|
|
19571
19593
|
};
|
|
19572
19594
|
|
|
19573
|
-
declare type
|
|
19574
|
-
new (onmessage: (data: any) => void): Wire;
|
|
19575
|
-
};
|
|
19595
|
+
declare type WireFactory = (onmessage: (data: any) => void) => Wire;
|
|
19576
19596
|
|
|
19577
19597
|
/* Excluded from this release type: WithId */
|
|
19578
19598
|
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -6659,9 +6659,10 @@ declare type InitPlatformOptions = {
|
|
|
6659
6659
|
* Injection setting for the `fin` API.
|
|
6660
6660
|
*
|
|
6661
6661
|
* * 'none': The `fin` API will be not available.
|
|
6662
|
+
* * 'preloads': The `fin` API will be available in a synchronous context in the preload script only.
|
|
6662
6663
|
* * 'global': The entire `fin` API will be available.
|
|
6663
6664
|
*/
|
|
6664
|
-
declare type InjectionType = 'none' | 'global';
|
|
6665
|
+
declare type InjectionType = 'none' | 'preloads' | 'global';
|
|
6665
6666
|
|
|
6666
6667
|
/**
|
|
6667
6668
|
* Generated when the value of the element changes.
|
|
@@ -10453,6 +10454,7 @@ declare namespace OpenFin {
|
|
|
10453
10454
|
PathServeRequest,
|
|
10454
10455
|
ServeAssetOptions,
|
|
10455
10456
|
ServedAssetInfo,
|
|
10457
|
+
ResolvedDomainSettings,
|
|
10456
10458
|
ApplicationEvents,
|
|
10457
10459
|
BaseEvents,
|
|
10458
10460
|
ExternalApplicationEvents,
|
|
@@ -13278,13 +13280,19 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
13278
13280
|
'system-update-process-logging-options': ApiCall<{
|
|
13279
13281
|
options: OpenFin.ProcessLoggingOptions;
|
|
13280
13282
|
}, void>;
|
|
13281
|
-
'get-domain-settings': ApiCall<
|
|
13283
|
+
'get-domain-settings': ApiCall<void, OpenFin.DomainSettings>;
|
|
13282
13284
|
'serve-asset': ApiCall<{
|
|
13283
13285
|
options: OpenFin.ServeAssetOptions;
|
|
13284
13286
|
}, OpenFin.ServedAssetInfo>;
|
|
13285
|
-
'set-domain-settings': ApiCall<
|
|
13286
|
-
domainSettings: OpenFin.
|
|
13287
|
+
'set-domain-settings': ApiCall<{
|
|
13288
|
+
domainSettings: OpenFin.DomainSettings;
|
|
13287
13289
|
}, void>;
|
|
13290
|
+
'get-current-domain-settings': ApiCall<{
|
|
13291
|
+
identity: OpenFin.Identity;
|
|
13292
|
+
}, OpenFin.ResolvedDomainSettings>;
|
|
13293
|
+
'resolve-domain-settings': ApiCall<{
|
|
13294
|
+
url: string;
|
|
13295
|
+
}, OpenFin.ResolvedDomainSettings>;
|
|
13288
13296
|
'system-register-shutdown-handler': VoidCall;
|
|
13289
13297
|
'get-permissions': GetterCall<any>;
|
|
13290
13298
|
'refresh-extensions': {
|
|
@@ -13767,6 +13775,14 @@ declare type ResizeRegion = {
|
|
|
13767
13775
|
};
|
|
13768
13776
|
};
|
|
13769
13777
|
|
|
13778
|
+
declare type ResolvedDomainSettings = {
|
|
13779
|
+
url: string;
|
|
13780
|
+
settings: PerDomainSettings;
|
|
13781
|
+
matches: DomainSettingsRule[];
|
|
13782
|
+
multipleDomainMatchBehavior: MultipleDomainMatchBehavior;
|
|
13783
|
+
default?: PerDomainSettings;
|
|
13784
|
+
};
|
|
13785
|
+
|
|
13770
13786
|
/**
|
|
13771
13787
|
* Generated when an HTTP load was cancelled or failed.
|
|
13772
13788
|
* @interface
|
|
@@ -15972,7 +15988,9 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15972
15988
|
* // }
|
|
15973
15989
|
* ```
|
|
15974
15990
|
*/
|
|
15975
|
-
setDomainSettings(domainSettings: OpenFin.
|
|
15991
|
+
setDomainSettings(domainSettings: OpenFin.DomainSettings): Promise<void>;
|
|
15992
|
+
getCurrentDomainSettings(identity: OpenFin.Identity): Promise<OpenFin.ResolvedDomainSettings>;
|
|
15993
|
+
resolveDomainSettings(url: string): Promise<OpenFin.ResolvedDomainSettings>;
|
|
15976
15994
|
/**
|
|
15977
15995
|
* Attempts to install and enable extensions for the security realm. Users may want to call this function in response
|
|
15978
15996
|
* to an `extensions-install-failed` event. Only extensions allowed by every application on the current security realm
|
|
@@ -16046,6 +16064,10 @@ declare type SystemEventType = EventType_8;
|
|
|
16046
16064
|
declare type SystemPermissions = {
|
|
16047
16065
|
getOSInfo: boolean;
|
|
16048
16066
|
getAllExternalWindows: boolean;
|
|
16067
|
+
setDomainSettings: boolean;
|
|
16068
|
+
getDomainSettings: boolean;
|
|
16069
|
+
getCurrentDomainSettings: boolean;
|
|
16070
|
+
resolveDomainSettings: boolean;
|
|
16049
16071
|
launchExternalProcess: boolean | {
|
|
16050
16072
|
enabled: boolean;
|
|
16051
16073
|
assets?: {
|
|
@@ -16389,7 +16411,7 @@ declare class Transport<MeType extends EntityType = EntityType> extends EventEmi
|
|
|
16389
16411
|
sendRaw: Wire['send'];
|
|
16390
16412
|
eventAggregator: EventAggregator;
|
|
16391
16413
|
protected messageHandlers: MessageHandler[];
|
|
16392
|
-
constructor(
|
|
16414
|
+
constructor(factory: WireFactory, environment: Environment, config: OpenFin.Identity);
|
|
16393
16415
|
getFin(): OpenFin.Fin<MeType>;
|
|
16394
16416
|
registerFin(_fin: OpenFin.Fin<MeType>): void;
|
|
16395
16417
|
connectSync: () => void;
|
|
@@ -20024,9 +20046,7 @@ declare type Wire = EventEmitter & {
|
|
|
20024
20046
|
getPort(): string;
|
|
20025
20047
|
};
|
|
20026
20048
|
|
|
20027
|
-
declare type
|
|
20028
|
-
new (onmessage: (data: any) => void): Wire;
|
|
20029
|
-
};
|
|
20049
|
+
declare type WireFactory = (onmessage: (data: any) => void) => Wire;
|
|
20030
20050
|
|
|
20031
20051
|
/**
|
|
20032
20052
|
* @internal
|