@openfin/core 38.82.56 → 38.82.57
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/mock-alpha.d.ts +20 -0
- package/out/mock-beta.d.ts +20 -0
- package/out/mock-public.d.ts +20 -0
- package/out/mock.d.ts +20 -0
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
@@ -4360,6 +4360,10 @@ declare type DomainSettingsRule = {
|
|
4360
4360
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
4361
4361
|
*/
|
4362
4362
|
options: PerDomainSettings;
|
4363
|
+
/**
|
4364
|
+
* Options to use when comparing URIs to the `match` patterns.
|
4365
|
+
*/
|
4366
|
+
matchOptions?: RuleMatchOptions;
|
4363
4367
|
};
|
4364
4368
|
|
4365
4369
|
/**
|
@@ -8894,6 +8898,10 @@ declare type NavigationRules = {
|
|
8894
8898
|
allowlist?: string[];
|
8895
8899
|
/** Forbidden URLs for navigation. */
|
8896
8900
|
denylist?: string[];
|
8901
|
+
/**
|
8902
|
+
* Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
|
8903
|
+
*/
|
8904
|
+
matchOptions?: RuleMatchOptions;
|
8897
8905
|
};
|
8898
8906
|
|
8899
8907
|
declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
|
@@ -9043,6 +9051,7 @@ declare namespace OpenFin_2 {
|
|
9043
9051
|
Api,
|
9044
9052
|
ApiSettings,
|
9045
9053
|
InjectionType,
|
9054
|
+
RuleMatchOptions,
|
9046
9055
|
NavigationRules,
|
9047
9056
|
ContentNavigation,
|
9048
9057
|
ContentRedirect,
|
@@ -11965,6 +11974,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
|
|
11965
11974
|
};
|
11966
11975
|
}
|
11967
11976
|
|
11977
|
+
/**
|
11978
|
+
* Controls the behavior of the navigation URI pattern matching algorithm.
|
11979
|
+
*/
|
11980
|
+
declare type RuleMatchOptions = {
|
11981
|
+
/**
|
11982
|
+
* Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
|
11983
|
+
* only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
|
11984
|
+
*/
|
11985
|
+
matchAllSchemes?: boolean;
|
11986
|
+
};
|
11987
|
+
|
11968
11988
|
declare type RunRequestedEvent = OpenFin_2.ApplicationEvents.RunRequestedEvent;
|
11969
11989
|
|
11970
11990
|
/**
|
package/out/mock-beta.d.ts
CHANGED
@@ -4360,6 +4360,10 @@ declare type DomainSettingsRule = {
|
|
4360
4360
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
4361
4361
|
*/
|
4362
4362
|
options: PerDomainSettings;
|
4363
|
+
/**
|
4364
|
+
* Options to use when comparing URIs to the `match` patterns.
|
4365
|
+
*/
|
4366
|
+
matchOptions?: RuleMatchOptions;
|
4363
4367
|
};
|
4364
4368
|
|
4365
4369
|
/**
|
@@ -8894,6 +8898,10 @@ declare type NavigationRules = {
|
|
8894
8898
|
allowlist?: string[];
|
8895
8899
|
/** Forbidden URLs for navigation. */
|
8896
8900
|
denylist?: string[];
|
8901
|
+
/**
|
8902
|
+
* Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
|
8903
|
+
*/
|
8904
|
+
matchOptions?: RuleMatchOptions;
|
8897
8905
|
};
|
8898
8906
|
|
8899
8907
|
declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
|
@@ -9043,6 +9051,7 @@ declare namespace OpenFin_2 {
|
|
9043
9051
|
Api,
|
9044
9052
|
ApiSettings,
|
9045
9053
|
InjectionType,
|
9054
|
+
RuleMatchOptions,
|
9046
9055
|
NavigationRules,
|
9047
9056
|
ContentNavigation,
|
9048
9057
|
ContentRedirect,
|
@@ -11965,6 +11974,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
|
|
11965
11974
|
};
|
11966
11975
|
}
|
11967
11976
|
|
11977
|
+
/**
|
11978
|
+
* Controls the behavior of the navigation URI pattern matching algorithm.
|
11979
|
+
*/
|
11980
|
+
declare type RuleMatchOptions = {
|
11981
|
+
/**
|
11982
|
+
* Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
|
11983
|
+
* only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
|
11984
|
+
*/
|
11985
|
+
matchAllSchemes?: boolean;
|
11986
|
+
};
|
11987
|
+
|
11968
11988
|
declare type RunRequestedEvent = OpenFin_2.ApplicationEvents.RunRequestedEvent;
|
11969
11989
|
|
11970
11990
|
/**
|
package/out/mock-public.d.ts
CHANGED
@@ -4360,6 +4360,10 @@ declare type DomainSettingsRule = {
|
|
4360
4360
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
4361
4361
|
*/
|
4362
4362
|
options: PerDomainSettings;
|
4363
|
+
/**
|
4364
|
+
* Options to use when comparing URIs to the `match` patterns.
|
4365
|
+
*/
|
4366
|
+
matchOptions?: RuleMatchOptions;
|
4363
4367
|
};
|
4364
4368
|
|
4365
4369
|
/**
|
@@ -8894,6 +8898,10 @@ declare type NavigationRules = {
|
|
8894
8898
|
allowlist?: string[];
|
8895
8899
|
/** Forbidden URLs for navigation. */
|
8896
8900
|
denylist?: string[];
|
8901
|
+
/**
|
8902
|
+
* Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
|
8903
|
+
*/
|
8904
|
+
matchOptions?: RuleMatchOptions;
|
8897
8905
|
};
|
8898
8906
|
|
8899
8907
|
declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
|
@@ -9043,6 +9051,7 @@ declare namespace OpenFin_2 {
|
|
9043
9051
|
Api,
|
9044
9052
|
ApiSettings,
|
9045
9053
|
InjectionType,
|
9054
|
+
RuleMatchOptions,
|
9046
9055
|
NavigationRules,
|
9047
9056
|
ContentNavigation,
|
9048
9057
|
ContentRedirect,
|
@@ -11965,6 +11974,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
|
|
11965
11974
|
};
|
11966
11975
|
}
|
11967
11976
|
|
11977
|
+
/**
|
11978
|
+
* Controls the behavior of the navigation URI pattern matching algorithm.
|
11979
|
+
*/
|
11980
|
+
declare type RuleMatchOptions = {
|
11981
|
+
/**
|
11982
|
+
* Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
|
11983
|
+
* only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
|
11984
|
+
*/
|
11985
|
+
matchAllSchemes?: boolean;
|
11986
|
+
};
|
11987
|
+
|
11968
11988
|
declare type RunRequestedEvent = OpenFin_2.ApplicationEvents.RunRequestedEvent;
|
11969
11989
|
|
11970
11990
|
/**
|
package/out/mock.d.ts
CHANGED
@@ -4419,6 +4419,10 @@ declare type DomainSettingsRule = {
|
|
4419
4419
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
4420
4420
|
*/
|
4421
4421
|
options: PerDomainSettings;
|
4422
|
+
/**
|
4423
|
+
* Options to use when comparing URIs to the `match` patterns.
|
4424
|
+
*/
|
4425
|
+
matchOptions?: RuleMatchOptions;
|
4422
4426
|
};
|
4423
4427
|
|
4424
4428
|
/**
|
@@ -9199,6 +9203,10 @@ declare type NavigationRules = {
|
|
9199
9203
|
allowlist?: string[];
|
9200
9204
|
/** Forbidden URLs for navigation. */
|
9201
9205
|
denylist?: string[];
|
9206
|
+
/**
|
9207
|
+
* Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
|
9208
|
+
*/
|
9209
|
+
matchOptions?: RuleMatchOptions;
|
9202
9210
|
};
|
9203
9211
|
|
9204
9212
|
declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
|
@@ -9358,6 +9366,7 @@ declare namespace OpenFin_2 {
|
|
9358
9366
|
Api,
|
9359
9367
|
ApiSettings,
|
9360
9368
|
InjectionType,
|
9369
|
+
RuleMatchOptions,
|
9361
9370
|
NavigationRules,
|
9362
9371
|
ContentNavigation,
|
9363
9372
|
ContentRedirect,
|
@@ -12358,6 +12367,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
|
|
12358
12367
|
};
|
12359
12368
|
}
|
12360
12369
|
|
12370
|
+
/**
|
12371
|
+
* Controls the behavior of the navigation URI pattern matching algorithm.
|
12372
|
+
*/
|
12373
|
+
declare type RuleMatchOptions = {
|
12374
|
+
/**
|
12375
|
+
* Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
|
12376
|
+
* only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
|
12377
|
+
*/
|
12378
|
+
matchAllSchemes?: boolean;
|
12379
|
+
};
|
12380
|
+
|
12361
12381
|
declare type RunRequestedEvent = OpenFin_2.ApplicationEvents.RunRequestedEvent;
|
12362
12382
|
|
12363
12383
|
/**
|