@openfin/fdc3-api 42.100.2 → 42.100.3
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 +19 -1
- package/out/fdc3-api-beta.d.ts +19 -1
- package/out/fdc3-api-public.d.ts +19 -1
- package/out/fdc3-api.d.ts +19 -1
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -4490,6 +4490,10 @@ declare type DomainSettings = {
|
|
|
4490
4490
|
* more information, see the documentation for the individual properties.
|
|
4491
4491
|
*/
|
|
4492
4492
|
default?: PerDomainSettings;
|
|
4493
|
+
/**
|
|
4494
|
+
* {@inheritDoc MultipleDomainMatchBehavior}
|
|
4495
|
+
*/
|
|
4496
|
+
multipleMatchBehavior?: MultipleDomainMatchBehavior;
|
|
4493
4497
|
};
|
|
4494
4498
|
|
|
4495
4499
|
/**
|
|
@@ -4502,7 +4506,7 @@ declare type DomainSettingsRule = {
|
|
|
4502
4506
|
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
|
4503
4507
|
* the domain(s) for which the rule applies.
|
|
4504
4508
|
*/
|
|
4505
|
-
match
|
|
4509
|
+
match: string[];
|
|
4506
4510
|
/**
|
|
4507
4511
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
|
4508
4512
|
*/
|
|
@@ -9244,6 +9248,19 @@ declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin.MonitorInfo & {
|
|
|
9244
9248
|
*/
|
|
9245
9249
|
declare type MultiInstanceViewBehavior = 'reparent' | 'duplicate' | 'default';
|
|
9246
9250
|
|
|
9251
|
+
/**
|
|
9252
|
+
* Behavior for handling multiple {@link DomainSettingsRule} matches.
|
|
9253
|
+
*/
|
|
9254
|
+
declare type MultipleDomainMatchBehavior =
|
|
9255
|
+
/**
|
|
9256
|
+
* Apply only the first matching rule in the list.
|
|
9257
|
+
*/
|
|
9258
|
+
'pick-first'
|
|
9259
|
+
/**
|
|
9260
|
+
* Deep-merge all matching rules in the list, prioritizing earlier matches. Treats arrays as primitives.
|
|
9261
|
+
*/
|
|
9262
|
+
| 'deep-merge';
|
|
9263
|
+
|
|
9247
9264
|
/**
|
|
9248
9265
|
* @interface
|
|
9249
9266
|
*/
|
|
@@ -9988,6 +10005,7 @@ declare namespace OpenFin {
|
|
|
9988
10005
|
RuntimeInfo,
|
|
9989
10006
|
DefaultDomainSettings,
|
|
9990
10007
|
DefaultDomainSettingsRule,
|
|
10008
|
+
MultipleDomainMatchBehavior,
|
|
9991
10009
|
DomainSettings,
|
|
9992
10010
|
ApiInjection,
|
|
9993
10011
|
DomainApiSettings,
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -4490,6 +4490,10 @@ declare type DomainSettings = {
|
|
|
4490
4490
|
* more information, see the documentation for the individual properties.
|
|
4491
4491
|
*/
|
|
4492
4492
|
default?: PerDomainSettings;
|
|
4493
|
+
/**
|
|
4494
|
+
* {@inheritDoc MultipleDomainMatchBehavior}
|
|
4495
|
+
*/
|
|
4496
|
+
multipleMatchBehavior?: MultipleDomainMatchBehavior;
|
|
4493
4497
|
};
|
|
4494
4498
|
|
|
4495
4499
|
/**
|
|
@@ -4502,7 +4506,7 @@ declare type DomainSettingsRule = {
|
|
|
4502
4506
|
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
|
4503
4507
|
* the domain(s) for which the rule applies.
|
|
4504
4508
|
*/
|
|
4505
|
-
match
|
|
4509
|
+
match: string[];
|
|
4506
4510
|
/**
|
|
4507
4511
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
|
4508
4512
|
*/
|
|
@@ -9244,6 +9248,19 @@ declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin.MonitorInfo & {
|
|
|
9244
9248
|
*/
|
|
9245
9249
|
declare type MultiInstanceViewBehavior = 'reparent' | 'duplicate' | 'default';
|
|
9246
9250
|
|
|
9251
|
+
/**
|
|
9252
|
+
* Behavior for handling multiple {@link DomainSettingsRule} matches.
|
|
9253
|
+
*/
|
|
9254
|
+
declare type MultipleDomainMatchBehavior =
|
|
9255
|
+
/**
|
|
9256
|
+
* Apply only the first matching rule in the list.
|
|
9257
|
+
*/
|
|
9258
|
+
'pick-first'
|
|
9259
|
+
/**
|
|
9260
|
+
* Deep-merge all matching rules in the list, prioritizing earlier matches. Treats arrays as primitives.
|
|
9261
|
+
*/
|
|
9262
|
+
| 'deep-merge';
|
|
9263
|
+
|
|
9247
9264
|
/**
|
|
9248
9265
|
* @interface
|
|
9249
9266
|
*/
|
|
@@ -9988,6 +10005,7 @@ declare namespace OpenFin {
|
|
|
9988
10005
|
RuntimeInfo,
|
|
9989
10006
|
DefaultDomainSettings,
|
|
9990
10007
|
DefaultDomainSettingsRule,
|
|
10008
|
+
MultipleDomainMatchBehavior,
|
|
9991
10009
|
DomainSettings,
|
|
9992
10010
|
ApiInjection,
|
|
9993
10011
|
DomainApiSettings,
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -4490,6 +4490,10 @@ declare type DomainSettings = {
|
|
|
4490
4490
|
* more information, see the documentation for the individual properties.
|
|
4491
4491
|
*/
|
|
4492
4492
|
default?: PerDomainSettings;
|
|
4493
|
+
/**
|
|
4494
|
+
* {@inheritDoc MultipleDomainMatchBehavior}
|
|
4495
|
+
*/
|
|
4496
|
+
multipleMatchBehavior?: MultipleDomainMatchBehavior;
|
|
4493
4497
|
};
|
|
4494
4498
|
|
|
4495
4499
|
/**
|
|
@@ -4502,7 +4506,7 @@ declare type DomainSettingsRule = {
|
|
|
4502
4506
|
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
|
4503
4507
|
* the domain(s) for which the rule applies.
|
|
4504
4508
|
*/
|
|
4505
|
-
match
|
|
4509
|
+
match: string[];
|
|
4506
4510
|
/**
|
|
4507
4511
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
|
4508
4512
|
*/
|
|
@@ -9244,6 +9248,19 @@ declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin.MonitorInfo & {
|
|
|
9244
9248
|
*/
|
|
9245
9249
|
declare type MultiInstanceViewBehavior = 'reparent' | 'duplicate' | 'default';
|
|
9246
9250
|
|
|
9251
|
+
/**
|
|
9252
|
+
* Behavior for handling multiple {@link DomainSettingsRule} matches.
|
|
9253
|
+
*/
|
|
9254
|
+
declare type MultipleDomainMatchBehavior =
|
|
9255
|
+
/**
|
|
9256
|
+
* Apply only the first matching rule in the list.
|
|
9257
|
+
*/
|
|
9258
|
+
'pick-first'
|
|
9259
|
+
/**
|
|
9260
|
+
* Deep-merge all matching rules in the list, prioritizing earlier matches. Treats arrays as primitives.
|
|
9261
|
+
*/
|
|
9262
|
+
| 'deep-merge';
|
|
9263
|
+
|
|
9247
9264
|
/**
|
|
9248
9265
|
* @interface
|
|
9249
9266
|
*/
|
|
@@ -9988,6 +10005,7 @@ declare namespace OpenFin {
|
|
|
9988
10005
|
RuntimeInfo,
|
|
9989
10006
|
DefaultDomainSettings,
|
|
9990
10007
|
DefaultDomainSettingsRule,
|
|
10008
|
+
MultipleDomainMatchBehavior,
|
|
9991
10009
|
DomainSettings,
|
|
9992
10010
|
ApiInjection,
|
|
9993
10011
|
DomainApiSettings,
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -4549,6 +4549,10 @@ declare type DomainSettings = {
|
|
|
4549
4549
|
* more information, see the documentation for the individual properties.
|
|
4550
4550
|
*/
|
|
4551
4551
|
default?: PerDomainSettings;
|
|
4552
|
+
/**
|
|
4553
|
+
* {@inheritDoc MultipleDomainMatchBehavior}
|
|
4554
|
+
*/
|
|
4555
|
+
multipleMatchBehavior?: MultipleDomainMatchBehavior;
|
|
4552
4556
|
};
|
|
4553
4557
|
|
|
4554
4558
|
/**
|
|
@@ -4561,7 +4565,7 @@ declare type DomainSettingsRule = {
|
|
|
4561
4565
|
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
|
4562
4566
|
* the domain(s) for which the rule applies.
|
|
4563
4567
|
*/
|
|
4564
|
-
match
|
|
4568
|
+
match: string[];
|
|
4565
4569
|
/**
|
|
4566
4570
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
|
4567
4571
|
*/
|
|
@@ -9540,6 +9544,19 @@ declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin.MonitorInfo & {
|
|
|
9540
9544
|
*/
|
|
9541
9545
|
declare type MultiInstanceViewBehavior = 'reparent' | 'duplicate' | 'default';
|
|
9542
9546
|
|
|
9547
|
+
/**
|
|
9548
|
+
* Behavior for handling multiple {@link DomainSettingsRule} matches.
|
|
9549
|
+
*/
|
|
9550
|
+
declare type MultipleDomainMatchBehavior =
|
|
9551
|
+
/**
|
|
9552
|
+
* Apply only the first matching rule in the list.
|
|
9553
|
+
*/
|
|
9554
|
+
'pick-first'
|
|
9555
|
+
/**
|
|
9556
|
+
* Deep-merge all matching rules in the list, prioritizing earlier matches. Treats arrays as primitives.
|
|
9557
|
+
*/
|
|
9558
|
+
| 'deep-merge';
|
|
9559
|
+
|
|
9543
9560
|
/**
|
|
9544
9561
|
* @interface
|
|
9545
9562
|
*/
|
|
@@ -10306,6 +10323,7 @@ declare namespace OpenFin {
|
|
|
10306
10323
|
RuntimeInfo,
|
|
10307
10324
|
DefaultDomainSettings,
|
|
10308
10325
|
DefaultDomainSettingsRule,
|
|
10326
|
+
MultipleDomainMatchBehavior,
|
|
10309
10327
|
DomainSettings,
|
|
10310
10328
|
ApiInjection,
|
|
10311
10329
|
DomainApiSettings,
|