@openfin/fdc3-api 38.82.56 → 38.82.58

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.
@@ -4357,6 +4357,10 @@ declare type DomainSettingsRule = {
4357
4357
  * Settings applied when a webcontents has been navigated to a matched domain.
4358
4358
  */
4359
4359
  options: PerDomainSettings;
4360
+ /**
4361
+ * Options to use when comparing URIs to the `match` patterns.
4362
+ */
4363
+ matchOptions?: RuleMatchOptions;
4360
4364
  };
4361
4365
 
4362
4366
  /**
@@ -9236,6 +9240,10 @@ declare type NavigationRules = {
9236
9240
  allowlist?: string[];
9237
9241
  /** Forbidden URLs for navigation. */
9238
9242
  denylist?: string[];
9243
+ /**
9244
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9245
+ */
9246
+ matchOptions?: RuleMatchOptions;
9239
9247
  };
9240
9248
 
9241
9249
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9385,6 +9393,7 @@ declare namespace OpenFin {
9385
9393
  Api,
9386
9394
  ApiSettings,
9387
9395
  InjectionType,
9396
+ RuleMatchOptions,
9388
9397
  NavigationRules,
9389
9398
  ContentNavigation,
9390
9399
  ContentRedirect,
@@ -12305,6 +12314,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12305
12314
  };
12306
12315
  }
12307
12316
 
12317
+ /**
12318
+ * Controls the behavior of the navigation URI pattern matching algorithm.
12319
+ */
12320
+ declare type RuleMatchOptions = {
12321
+ /**
12322
+ * Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
12323
+ * only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
12324
+ */
12325
+ matchAllSchemes?: boolean;
12326
+ };
12327
+
12308
12328
  declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
12309
12329
 
12310
12330
  /**
@@ -4357,6 +4357,10 @@ declare type DomainSettingsRule = {
4357
4357
  * Settings applied when a webcontents has been navigated to a matched domain.
4358
4358
  */
4359
4359
  options: PerDomainSettings;
4360
+ /**
4361
+ * Options to use when comparing URIs to the `match` patterns.
4362
+ */
4363
+ matchOptions?: RuleMatchOptions;
4360
4364
  };
4361
4365
 
4362
4366
  /**
@@ -9236,6 +9240,10 @@ declare type NavigationRules = {
9236
9240
  allowlist?: string[];
9237
9241
  /** Forbidden URLs for navigation. */
9238
9242
  denylist?: string[];
9243
+ /**
9244
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9245
+ */
9246
+ matchOptions?: RuleMatchOptions;
9239
9247
  };
9240
9248
 
9241
9249
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9385,6 +9393,7 @@ declare namespace OpenFin {
9385
9393
  Api,
9386
9394
  ApiSettings,
9387
9395
  InjectionType,
9396
+ RuleMatchOptions,
9388
9397
  NavigationRules,
9389
9398
  ContentNavigation,
9390
9399
  ContentRedirect,
@@ -12305,6 +12314,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12305
12314
  };
12306
12315
  }
12307
12316
 
12317
+ /**
12318
+ * Controls the behavior of the navigation URI pattern matching algorithm.
12319
+ */
12320
+ declare type RuleMatchOptions = {
12321
+ /**
12322
+ * Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
12323
+ * only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
12324
+ */
12325
+ matchAllSchemes?: boolean;
12326
+ };
12327
+
12308
12328
  declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
12309
12329
 
12310
12330
  /**
@@ -4357,6 +4357,10 @@ declare type DomainSettingsRule = {
4357
4357
  * Settings applied when a webcontents has been navigated to a matched domain.
4358
4358
  */
4359
4359
  options: PerDomainSettings;
4360
+ /**
4361
+ * Options to use when comparing URIs to the `match` patterns.
4362
+ */
4363
+ matchOptions?: RuleMatchOptions;
4360
4364
  };
4361
4365
 
4362
4366
  /**
@@ -9236,6 +9240,10 @@ declare type NavigationRules = {
9236
9240
  allowlist?: string[];
9237
9241
  /** Forbidden URLs for navigation. */
9238
9242
  denylist?: string[];
9243
+ /**
9244
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9245
+ */
9246
+ matchOptions?: RuleMatchOptions;
9239
9247
  };
9240
9248
 
9241
9249
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9385,6 +9393,7 @@ declare namespace OpenFin {
9385
9393
  Api,
9386
9394
  ApiSettings,
9387
9395
  InjectionType,
9396
+ RuleMatchOptions,
9388
9397
  NavigationRules,
9389
9398
  ContentNavigation,
9390
9399
  ContentRedirect,
@@ -12305,6 +12314,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12305
12314
  };
12306
12315
  }
12307
12316
 
12317
+ /**
12318
+ * Controls the behavior of the navigation URI pattern matching algorithm.
12319
+ */
12320
+ declare type RuleMatchOptions = {
12321
+ /**
12322
+ * Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
12323
+ * only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
12324
+ */
12325
+ matchAllSchemes?: boolean;
12326
+ };
12327
+
12308
12328
  declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
12309
12329
 
12310
12330
  /**
package/out/fdc3-api.d.ts CHANGED
@@ -4416,6 +4416,10 @@ declare type DomainSettingsRule = {
4416
4416
  * Settings applied when a webcontents has been navigated to a matched domain.
4417
4417
  */
4418
4418
  options: PerDomainSettings;
4419
+ /**
4420
+ * Options to use when comparing URIs to the `match` patterns.
4421
+ */
4422
+ matchOptions?: RuleMatchOptions;
4419
4423
  };
4420
4424
 
4421
4425
  /**
@@ -9541,6 +9545,10 @@ declare type NavigationRules = {
9541
9545
  allowlist?: string[];
9542
9546
  /** Forbidden URLs for navigation. */
9543
9547
  denylist?: string[];
9548
+ /**
9549
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9550
+ */
9551
+ matchOptions?: RuleMatchOptions;
9544
9552
  };
9545
9553
 
9546
9554
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9700,6 +9708,7 @@ declare namespace OpenFin {
9700
9708
  Api,
9701
9709
  ApiSettings,
9702
9710
  InjectionType,
9711
+ RuleMatchOptions,
9703
9712
  NavigationRules,
9704
9713
  ContentNavigation,
9705
9714
  ContentRedirect,
@@ -12698,6 +12707,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12698
12707
  };
12699
12708
  }
12700
12709
 
12710
+ /**
12711
+ * Controls the behavior of the navigation URI pattern matching algorithm.
12712
+ */
12713
+ declare type RuleMatchOptions = {
12714
+ /**
12715
+ * Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
12716
+ * only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
12717
+ */
12718
+ matchAllSchemes?: boolean;
12719
+ };
12720
+
12701
12721
  declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
12702
12722
 
12703
12723
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "38.82.56",
3
+ "version": "38.82.58",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.MD",
6
6
  "private": false,