@openfin/node-adapter 36.79.5 → 36.79.10
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/node-adapter-alpha.d.ts +126 -43
- package/out/node-adapter-beta.d.ts +126 -43
- package/out/node-adapter-public.d.ts +126 -43
- package/out/node-adapter.d.ts +127 -44
- package/out/node-adapter.js +17 -15
- package/package.json +1 -1
@@ -97,7 +97,10 @@ declare type Api = {
|
|
97
97
|
enableDeprecatedSharedName?: boolean;
|
98
98
|
};
|
99
99
|
/**
|
100
|
-
*
|
100
|
+
* Configure injection of the `fin` API in this context.
|
101
|
+
*
|
102
|
+
* * 'none': The `fin` API will be not available in this context.
|
103
|
+
* * 'global': The entire `fin` API will be available in this context.
|
101
104
|
*/
|
102
105
|
fin?: InjectionType;
|
103
106
|
};
|
@@ -113,8 +116,18 @@ declare type ApiClient<T extends Record<any, any>> = {
|
|
113
116
|
|
114
117
|
/**
|
115
118
|
* @interface
|
119
|
+
*
|
120
|
+
* Rules for domain-conditional `fin` API injection.
|
116
121
|
*/
|
117
122
|
declare type ApiInjection = {
|
123
|
+
/**
|
124
|
+
* Injection setting for the `fin` API for contexts on a matched domain.
|
125
|
+
*
|
126
|
+
* * 'none': The `fin` API will be not available.
|
127
|
+
* * 'global': The entire `fin` API will be available.
|
128
|
+
*
|
129
|
+
* @defaultValue 'global'
|
130
|
+
*/
|
118
131
|
fin: InjectionType;
|
119
132
|
};
|
120
133
|
|
@@ -858,7 +871,7 @@ declare type ApplicationConnectedEvent = ConnectedEvent_2;
|
|
858
871
|
* Generated when an application is created.
|
859
872
|
* @interface
|
860
873
|
*/
|
861
|
-
declare type ApplicationCreatedEvent =
|
874
|
+
declare type ApplicationCreatedEvent = BaseEvent_9 & BaseEvents.IdentityEvent & {
|
862
875
|
type: 'application-created';
|
863
876
|
};
|
864
877
|
|
@@ -1712,7 +1725,7 @@ declare type BaseConfig = {
|
|
1712
1725
|
*/
|
1713
1726
|
declare type BaseContentCreationRule = {
|
1714
1727
|
/**
|
1715
|
-
* List of [match patterns](https://developer.chrome.com/extensions/
|
1728
|
+
* List of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) that indicate the specified
|
1716
1729
|
* behavior should be used
|
1717
1730
|
*/
|
1718
1731
|
match: MatchPattern[];
|
@@ -1725,13 +1738,30 @@ declare type BaseContentCreationRule = {
|
|
1725
1738
|
/**
|
1726
1739
|
* A base OpenFin event. All OpenFin event payloads extend this type.
|
1727
1740
|
*
|
1741
|
+
* OpenFin events are jointly discriminated by their {@link topic} and {@link type} keys. Within each
|
1742
|
+
* `topic`, the `type` key is unique.
|
1743
|
+
*
|
1728
1744
|
* @interface
|
1729
1745
|
*/
|
1730
1746
|
declare type BaseEvent = {
|
1747
|
+
/**
|
1748
|
+
* The "kebab-case" classname of the {@link OpenFin.Events emitter} that raised the event.
|
1749
|
+
*
|
1750
|
+
* @remarks {@link OpenFin.Frame} is represented as `iframe`.
|
1751
|
+
*/
|
1731
1752
|
topic: string;
|
1753
|
+
/**
|
1754
|
+
* The type of event that was raised. Equal to the typename of the event payload in "kebab case".
|
1755
|
+
*
|
1756
|
+
* @remarks Guaranteed to be unique within each {@link topic}, but can be repeated
|
1757
|
+
* between topics (e.g. {@link OpenFin.WebContentsEvents.CrashedEvent WebContentsEvents.CrashedEvent} and
|
1758
|
+
* {@link OpenFin.ApplicationEvents.CrashedEvent ApplicationEvents.CrashedEvent}).
|
1759
|
+
*/
|
1732
1760
|
type: string;
|
1733
1761
|
};
|
1734
1762
|
|
1763
|
+
declare type BaseEvent_10 = Events.BaseEvents.BaseEvent;
|
1764
|
+
|
1735
1765
|
/**
|
1736
1766
|
* A base Channel event.
|
1737
1767
|
* @interface
|
@@ -1784,14 +1814,22 @@ declare type BaseEvent_7 = NamedEvent & {
|
|
1784
1814
|
};
|
1785
1815
|
|
1786
1816
|
/**
|
1787
|
-
* Base type for events emitting on the `
|
1817
|
+
* Base type for events emitting on the `global-hotkey` topic.
|
1818
|
+
*
|
1788
1819
|
* @interface
|
1789
1820
|
*/
|
1790
1821
|
declare type BaseEvent_8 = BaseEvents.BaseEvent & {
|
1791
|
-
topic: '
|
1822
|
+
topic: 'global-hotkey';
|
1823
|
+
hotkey: string;
|
1792
1824
|
};
|
1793
1825
|
|
1794
|
-
|
1826
|
+
/**
|
1827
|
+
* Base type for events emitting on the `system` topic
|
1828
|
+
* @interface
|
1829
|
+
*/
|
1830
|
+
declare type BaseEvent_9 = BaseEvents.BaseEvent & {
|
1831
|
+
topic: 'system';
|
1832
|
+
};
|
1795
1833
|
|
1796
1834
|
declare namespace BaseEvents {
|
1797
1835
|
export {
|
@@ -3612,13 +3650,13 @@ declare type ConstWindowOptions = {
|
|
3612
3650
|
/**
|
3613
3651
|
* Restrict navigation to URLs that match an allowed pattern.
|
3614
3652
|
* In the lack of an allowlist, navigation to URLs that match a denied pattern would be prohibited.
|
3615
|
-
* See [here](https://developer.chrome.com/extensions/
|
3653
|
+
* See [here](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) for more details.
|
3616
3654
|
*/
|
3617
3655
|
contentNavigation: ContentNavigation;
|
3618
3656
|
/**
|
3619
3657
|
* Restrict redirects to URLs that match an allowed pattern.
|
3620
3658
|
* In the lack of an allowlist, redirects to URLs that match a denied pattern would be prohibited.
|
3621
|
-
* See [here](https://developer.chrome.com/extensions/
|
3659
|
+
* See [here](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) for more details.
|
3622
3660
|
*/
|
3623
3661
|
contentRedirect: Partial<ContentRedirect>;
|
3624
3662
|
/**
|
@@ -4163,7 +4201,7 @@ declare interface ContentItem extends EventEmitter_2 {
|
|
4163
4201
|
/**
|
4164
4202
|
* Restrict navigation to URLs that match an allowed pattern.
|
4165
4203
|
* In the lack of an allowlist, navigation to URLs that match a denied pattern would be prohibited.
|
4166
|
-
* See [here](https://developer.chrome.com/extensions/
|
4204
|
+
* See [here](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) for more details.
|
4167
4205
|
*
|
4168
4206
|
* @interface
|
4169
4207
|
*/
|
@@ -4172,7 +4210,7 @@ declare type ContentNavigation = NavigationRules;
|
|
4172
4210
|
/**
|
4173
4211
|
* Restrict redirects to URLs that match an allowed pattern.
|
4174
4212
|
* In the lack of an allowlist, redirects to URLs that match a denied pattern would be prohibited.
|
4175
|
-
* See [here](https://developer.chrome.com/extensions/
|
4213
|
+
* See [here](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) for more details.
|
4176
4214
|
*
|
4177
4215
|
* @interface
|
4178
4216
|
*/
|
@@ -4574,7 +4612,7 @@ declare interface DesktopAgent_2 {
|
|
4574
4612
|
* Generated when the desktop icon is clicked while it's already running.
|
4575
4613
|
* @interface
|
4576
4614
|
*/
|
4577
|
-
declare type DesktopIconClickedEvent =
|
4615
|
+
declare type DesktopIconClickedEvent = BaseEvent_9 & {
|
4578
4616
|
type: 'desktop-icon-clicked';
|
4579
4617
|
};
|
4580
4618
|
|
@@ -4776,19 +4814,42 @@ declare type DisplayMetadata_3 = {
|
|
4776
4814
|
|
4777
4815
|
/**
|
4778
4816
|
* @interface
|
4779
|
-
*
|
4817
|
+
* Defines application settings that vary by the domain of the current context.
|
4818
|
+
*
|
4819
|
+
* @remarks Only the first rule in the array that matches the current URL is applied. Multiple behaviors for the same
|
4820
|
+
* domain should be represented with a single rule.
|
4780
4821
|
*/
|
4781
4822
|
declare type DomainSettings = {
|
4823
|
+
/**
|
4824
|
+
* {@inheritDoc DomainSettingsRule}
|
4825
|
+
*/
|
4782
4826
|
rules: DomainSettingsRule[];
|
4783
4827
|
};
|
4784
4828
|
|
4785
4829
|
/**
|
4786
4830
|
* @interface
|
4831
|
+
*
|
4832
|
+
* Defines domain-conditional settings for an OpenFin application.
|
4787
4833
|
*/
|
4788
4834
|
declare type DomainSettingsRule = {
|
4835
|
+
/**
|
4836
|
+
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
4837
|
+
* the domain(s) for which the rule applies.
|
4838
|
+
*/
|
4789
4839
|
match: string[];
|
4840
|
+
/**
|
4841
|
+
* Settings applied when a webcontents has been navigated to a matched domain.
|
4842
|
+
*/
|
4790
4843
|
options: {
|
4844
|
+
/**
|
4845
|
+
* {@inheritDoc FileDownloadSettings}
|
4846
|
+
*
|
4847
|
+
* @remarks See: https://developers.openfin.co/of-docs/docs/file-download#manifest-properties-for-file-downloads
|
4848
|
+
*/
|
4791
4849
|
downloadSettings?: FileDownloadSettings;
|
4850
|
+
/**
|
4851
|
+
* {@inheritDoc ApiInjection}
|
4852
|
+
*/
|
4792
4853
|
api?: ApiInjection;
|
4793
4854
|
};
|
4794
4855
|
};
|
@@ -4827,9 +4888,20 @@ declare type DownloadPreloadOption = {
|
|
4827
4888
|
|
4828
4889
|
/**
|
4829
4890
|
* @interface
|
4891
|
+
*
|
4892
|
+
* A rule governing domain-conditional download behavior.
|
4830
4893
|
*/
|
4831
4894
|
declare type DownloadRule = {
|
4895
|
+
/**
|
4896
|
+
* {@inheritDoc FileDownloadBehaviorNames}
|
4897
|
+
*/
|
4832
4898
|
behavior: FileDownloadBehaviorNames;
|
4899
|
+
/**
|
4900
|
+
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
4901
|
+
* the domain(s) for which the rule applies.
|
4902
|
+
*
|
4903
|
+
* @remarks The match is evaluated against the URL of the *download*.
|
4904
|
+
*/
|
4833
4905
|
match: string[];
|
4834
4906
|
};
|
4835
4907
|
|
@@ -5084,6 +5156,7 @@ declare type EntityTypeHelpers<T extends EntityType_2> = T extends 'view' ? {
|
|
5084
5156
|
|
5085
5157
|
declare interface Environment {
|
5086
5158
|
initLayoutManager(fin: OpenFin.Fin<OpenFin.EntityType>, wire: Transport, options: OpenFin.InitLayoutOptions): Promise<OpenFin.LayoutManager<OpenFin.LayoutSnapshot>>;
|
5159
|
+
applyLayoutSnapshot(fin: OpenFin.Fin<OpenFin.EntityType>, layoutManager: OpenFin.LayoutManager<OpenFin.LayoutSnapshot>, options: OpenFin.InitLayoutOptions): Promise<void>;
|
5087
5160
|
createLayout(layoutManager: OpenFin.LayoutManager<OpenFin.LayoutSnapshot>, options: OpenFin.CreateLayoutOptions): Promise<void>;
|
5088
5161
|
destroyLayout(layoutManager: OpenFin.LayoutManager<OpenFin.LayoutSnapshot>, layoutIdentity: OpenFin.LayoutIdentity): Promise<void>;
|
5089
5162
|
resolveLayout(layoutManager: OpenFin.LayoutManager<OpenFin.LayoutSnapshot>, layoutIdentity: OpenFin.LayoutIdentity): Promise<any>;
|
@@ -5125,14 +5198,14 @@ declare type ErrorPlainObject = {
|
|
5125
5198
|
|
5126
5199
|
/**
|
5127
5200
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Platform}. Events are
|
5128
|
-
* discriminated by {@link
|
5201
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `Platform` can be found
|
5129
5202
|
* under the {@link OpenFin.PlatformEvents} namespace.
|
5130
5203
|
*/
|
5131
5204
|
declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotAppliedEvent;
|
5132
5205
|
|
5133
5206
|
/**
|
5134
5207
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link System}. Events are
|
5135
|
-
* discriminated by {@link
|
5208
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `System` can be found
|
5136
5209
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
5137
5210
|
* from which they propagate).
|
5138
5211
|
*/
|
@@ -5140,7 +5213,7 @@ declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>>
|
|
5140
5213
|
|
5141
5214
|
/**
|
5142
5215
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
5143
|
-
* discriminated by {@link
|
5216
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `Channel` can be found
|
5144
5217
|
* under the {@link OpenFin.ChannelEvents} namespace.
|
5145
5218
|
*/
|
5146
5219
|
declare type Event_2 = {
|
@@ -5149,7 +5222,7 @@ declare type Event_2 = {
|
|
5149
5222
|
|
5150
5223
|
/**
|
5151
5224
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by an {@link Application}. Events are
|
5152
|
-
* discriminated by {@link
|
5225
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `Application` can be found
|
5153
5226
|
* under the {@link OpenFin.ApplicationEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
5154
5227
|
* from which they propagate).
|
5155
5228
|
*/
|
@@ -5157,7 +5230,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
5157
5230
|
|
5158
5231
|
/**
|
5159
5232
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link View}. Events are
|
5160
|
-
* discriminated by {@link
|
5233
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `View` can be found
|
5161
5234
|
* under the {@link OpenFin.ViewEvents} namespace (except for {@link OpenFin.WebContentsEvents | those shared with other WebContents}).
|
5162
5235
|
*/
|
5163
5236
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
@@ -5174,21 +5247,21 @@ declare type Event_5<Topic extends string> = {
|
|
5174
5247
|
|
5175
5248
|
/**
|
5176
5249
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Window}. Events are
|
5177
|
-
* discriminated by {@link
|
5250
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `Window` can be found
|
5178
5251
|
* under the {@link OpenFin.WindowEvents} namespace (except for {@link OpenFin.WebContentsEvents | those shared with other WebContents}).
|
5179
5252
|
*/
|
5180
5253
|
declare type Event_6 = WindowSourcedEvent | WindowViewEvent | ViewEvents.PropagatedEvent<'window'>;
|
5181
5254
|
|
5182
5255
|
/**
|
5183
5256
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by an {@link ExternalApplication}. Events are
|
5184
|
-
* discriminated by {@link
|
5257
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `ExternalApplication` can be found
|
5185
5258
|
* under the {@link OpenFin.ExternalApplicationEvents} namespace.
|
5186
5259
|
*/
|
5187
5260
|
declare type Event_7 = ConnectedEvent_3 | DisconnectedEvent_2;
|
5188
5261
|
|
5189
5262
|
/**
|
5190
5263
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link _Frame}. Events are
|
5191
|
-
* discriminated by {@link
|
5264
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `Frame` can be found
|
5192
5265
|
* under the {@link OpenFin.FrameEvents} namespace.
|
5193
5266
|
*/
|
5194
5267
|
declare type Event_8 = {
|
@@ -5197,13 +5270,10 @@ declare type Event_8 = {
|
|
5197
5270
|
|
5198
5271
|
/**
|
5199
5272
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by {@link GlobalHotkey}. Events are
|
5200
|
-
* discriminated by {@link
|
5273
|
+
* discriminated by {@link BaseEvents.BaseEvent.type | their type}. Event payloads unique to `GlobalHotkey` can be found
|
5201
5274
|
* under the {@link OpenFin.GlobalHotkeyEvents} namespace.
|
5202
5275
|
*/
|
5203
|
-
declare type Event_9 =
|
5204
|
-
topic: 'global-hotkey';
|
5205
|
-
hotkey: 'string';
|
5206
|
-
} & (RegisteredEvent | UnregisteredEvent);
|
5276
|
+
declare type Event_9 = RegisteredEvent | UnregisteredEvent;
|
5207
5277
|
|
5208
5278
|
declare class EventAggregator extends EmitterMap {
|
5209
5279
|
dispatchEvent: (message: Message<any>) => boolean;
|
@@ -5529,6 +5599,9 @@ declare type FetchManifestPayload = {
|
|
5529
5599
|
manifestUrl: string;
|
5530
5600
|
};
|
5531
5601
|
|
5602
|
+
/**
|
5603
|
+
* Whether file downloads raise a user prompt.
|
5604
|
+
*/
|
5532
5605
|
declare type FileDownloadBehaviorNames = 'prompt' | 'no-prompt';
|
5533
5606
|
|
5534
5607
|
/**
|
@@ -5611,9 +5684,14 @@ declare type FileDownloadProgressEvent = FileDownloadEvent & {
|
|
5611
5684
|
};
|
5612
5685
|
|
5613
5686
|
/**
|
5614
|
-
*
|
5687
|
+
* Domain-conditional rules for file downloads.
|
5688
|
+
*
|
5689
|
+
* @remarks See: https://developers.openfin.co/of-docs/docs/file-download#manifest-properties-for-file-downloads
|
5615
5690
|
*/
|
5616
5691
|
declare type FileDownloadSettings = {
|
5692
|
+
/**
|
5693
|
+
* {@inheritDoc DownloadRule}
|
5694
|
+
*/
|
5617
5695
|
rules: DownloadRule[];
|
5618
5696
|
};
|
5619
5697
|
|
@@ -6052,6 +6130,7 @@ declare type GlobalHotkeyEvent_2 = Events.GlobalHotkeyEvents.GlobalHotkeyEvent;
|
|
6052
6130
|
|
6053
6131
|
declare namespace GlobalHotkeyEvents {
|
6054
6132
|
export {
|
6133
|
+
BaseEvent_8 as BaseEvent,
|
6055
6134
|
RegisteredEvent,
|
6056
6135
|
UnregisteredEvent,
|
6057
6136
|
Event_9 as Event,
|
@@ -6539,7 +6618,7 @@ declare type IdleEvent = IdleStateChangedEvent;
|
|
6539
6618
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
6540
6619
|
* @interface
|
6541
6620
|
*/
|
6542
|
-
declare type IdleStateChangedEvent =
|
6621
|
+
declare type IdleStateChangedEvent = BaseEvent_9 & {
|
6543
6622
|
type: 'idle-state-changed';
|
6544
6623
|
elapsedTime: number;
|
6545
6624
|
isIdle: boolean;
|
@@ -6678,9 +6757,10 @@ declare type InitPlatformOptions = {
|
|
6678
6757
|
};
|
6679
6758
|
|
6680
6759
|
/**
|
6681
|
-
*
|
6682
|
-
*
|
6683
|
-
*
|
6760
|
+
* Injection setting for the `fin` API.
|
6761
|
+
*
|
6762
|
+
* * 'none': The `fin` API will be not available.
|
6763
|
+
* * 'global': The entire `fin` API will be available.
|
6684
6764
|
*/
|
6685
6765
|
declare type InjectionType = 'none' | 'global';
|
6686
6766
|
|
@@ -8571,16 +8651,17 @@ declare type LayoutIdentity = Identity_5 & {
|
|
8571
8651
|
};
|
8572
8652
|
|
8573
8653
|
/**
|
8574
|
-
* Generated
|
8575
|
-
*
|
8654
|
+
* Generated after a layout is created and all of its views have either finished or failed navigation
|
8655
|
+
* once per layout. Does not emit for layouts created using Layout.replace() API.
|
8576
8656
|
* @interface
|
8577
8657
|
*/
|
8578
8658
|
declare type LayoutInitializedEvent = BaseEvent_5 & {
|
8579
8659
|
type: 'layout-initialized';
|
8580
8660
|
layoutIdentity: OpenFin.LayoutIdentity;
|
8581
|
-
ofViews:
|
8661
|
+
ofViews: {
|
8662
|
+
identity: OpenFin.Identity;
|
8582
8663
|
entityType: 'view';
|
8583
|
-
}
|
8664
|
+
}[];
|
8584
8665
|
};
|
8585
8666
|
|
8586
8667
|
/**
|
@@ -8948,9 +9029,11 @@ declare type LayoutPresetType = 'columns' | 'grid' | 'rows' | 'tabs';
|
|
8948
9029
|
declare type LayoutReadyEvent = BaseEvent_5 & {
|
8949
9030
|
type: 'layout-ready';
|
8950
9031
|
layoutIdentity: OpenFin.LayoutIdentity;
|
8951
|
-
views:
|
9032
|
+
views: {
|
9033
|
+
identity: OpenFin.Identity;
|
8952
9034
|
success: boolean;
|
8953
|
-
|
9035
|
+
error?: Error;
|
9036
|
+
}[];
|
8954
9037
|
};
|
8955
9038
|
|
8956
9039
|
/**
|
@@ -9326,7 +9409,7 @@ declare type MonitorInfo = {
|
|
9326
9409
|
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
9327
9410
|
* @interface
|
9328
9411
|
*/
|
9329
|
-
declare type MonitorInfoChangedEvent =
|
9412
|
+
declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin.MonitorInfo & {
|
9330
9413
|
type: 'monitor-info-changed';
|
9331
9414
|
};
|
9332
9415
|
|
@@ -9383,7 +9466,7 @@ declare type MutableViewOptions = {
|
|
9383
9466
|
/**
|
9384
9467
|
* Restrict navigation to URLs that match an allowed pattern.
|
9385
9468
|
* In the lack of an allowlist, navigation to URLs that match a denylisted pattern would be prohibited.
|
9386
|
-
* See [here](https://developer.chrome.com/extensions/
|
9469
|
+
* See [here](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) for more details.
|
9387
9470
|
*/
|
9388
9471
|
contentNavigation: ContentNavigation;
|
9389
9472
|
contentRedirect: ContentRedirect;
|
@@ -10065,7 +10148,7 @@ declare namespace OpenFin {
|
|
10065
10148
|
AppVersionCompleteEvent,
|
10066
10149
|
AppVersionRuntimeStatusEvent,
|
10067
10150
|
Events,
|
10068
|
-
|
10151
|
+
BaseEvent_10 as BaseEvent,
|
10069
10152
|
WebContentsEvent_2 as WebContentsEvent,
|
10070
10153
|
SystemEvent_2 as SystemEvent,
|
10071
10154
|
ApplicationEvent_2 as ApplicationEvent,
|
@@ -12524,7 +12607,7 @@ declare type RectangleByEdgePositions = {
|
|
12524
12607
|
* Generated when a hotkey has been registered with the operating system.
|
12525
12608
|
* @interface
|
12526
12609
|
*/
|
12527
|
-
declare type RegisteredEvent =
|
12610
|
+
declare type RegisteredEvent = BaseEvent_8 & {
|
12528
12611
|
type: 'registered';
|
12529
12612
|
};
|
12530
12613
|
|
@@ -12946,7 +13029,7 @@ declare type ServiceIdentifier = {
|
|
12946
13029
|
* Generated on changes to a user’s local computer session.
|
12947
13030
|
* @interface
|
12948
13031
|
*/
|
12949
|
-
declare type SessionChangedEvent =
|
13032
|
+
declare type SessionChangedEvent = BaseEvent_9 & {
|
12950
13033
|
type: 'session-changed';
|
12951
13034
|
reason: 'lock' | 'unlock' | 'remote-connect' | 'remote-disconnect' | 'unknown';
|
12952
13035
|
};
|
@@ -14880,7 +14963,7 @@ declare namespace SystemEvents {
|
|
14880
14963
|
export {
|
14881
14964
|
NotRequested,
|
14882
14965
|
ExcludeRequested,
|
14883
|
-
|
14966
|
+
BaseEvent_9 as BaseEvent,
|
14884
14967
|
IdleStateChangedEvent,
|
14885
14968
|
IdleEvent,
|
14886
14969
|
MonitorInfoChangedEvent,
|
@@ -15358,7 +15441,7 @@ declare interface TypedEventEmitter<Event extends {
|
|
15358
15441
|
* Generated when a hotkey has been unregistered with the operating system.
|
15359
15442
|
* @interface
|
15360
15443
|
*/
|
15361
|
-
declare type UnregisteredEvent =
|
15444
|
+
declare type UnregisteredEvent = BaseEvent_8 & {
|
15362
15445
|
type: 'unregistered';
|
15363
15446
|
};
|
15364
15447
|
|