@openfin/fdc3-api 39.82.11 → 39.82.13

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.
@@ -4354,6 +4354,10 @@ declare type DomainSettingsRule = {
4354
4354
  * Settings applied when a webcontents has been navigated to a matched domain.
4355
4355
  */
4356
4356
  options: PerDomainSettings;
4357
+ /**
4358
+ * Options to use when comparing URIs to the `match` patterns.
4359
+ */
4360
+ matchOptions?: RuleMatchOptions;
4357
4361
  };
4358
4362
 
4359
4363
  /**
@@ -9240,6 +9244,10 @@ declare type NavigationRules = {
9240
9244
  allowlist?: string[];
9241
9245
  /** Forbidden URLs for navigation. */
9242
9246
  denylist?: string[];
9247
+ /**
9248
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9249
+ */
9250
+ matchOptions?: RuleMatchOptions;
9243
9251
  };
9244
9252
 
9245
9253
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9389,6 +9397,7 @@ declare namespace OpenFin {
9389
9397
  Api,
9390
9398
  ApiSettings,
9391
9399
  InjectionType,
9400
+ RuleMatchOptions,
9392
9401
  NavigationRules,
9393
9402
  ContentNavigation,
9394
9403
  ContentRedirect,
@@ -12309,6 +12318,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12309
12318
  };
12310
12319
  }
12311
12320
 
12321
+ /**
12322
+ * Controls the behavior of the navigation URI pattern matching algorithm.
12323
+ */
12324
+ declare type RuleMatchOptions = {
12325
+ /**
12326
+ * Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
12327
+ * only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
12328
+ */
12329
+ matchAllSchemes?: boolean;
12330
+ };
12331
+
12312
12332
  declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
12313
12333
 
12314
12334
  /**
@@ -4354,6 +4354,10 @@ declare type DomainSettingsRule = {
4354
4354
  * Settings applied when a webcontents has been navigated to a matched domain.
4355
4355
  */
4356
4356
  options: PerDomainSettings;
4357
+ /**
4358
+ * Options to use when comparing URIs to the `match` patterns.
4359
+ */
4360
+ matchOptions?: RuleMatchOptions;
4357
4361
  };
4358
4362
 
4359
4363
  /**
@@ -9240,6 +9244,10 @@ declare type NavigationRules = {
9240
9244
  allowlist?: string[];
9241
9245
  /** Forbidden URLs for navigation. */
9242
9246
  denylist?: string[];
9247
+ /**
9248
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9249
+ */
9250
+ matchOptions?: RuleMatchOptions;
9243
9251
  };
9244
9252
 
9245
9253
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9389,6 +9397,7 @@ declare namespace OpenFin {
9389
9397
  Api,
9390
9398
  ApiSettings,
9391
9399
  InjectionType,
9400
+ RuleMatchOptions,
9392
9401
  NavigationRules,
9393
9402
  ContentNavigation,
9394
9403
  ContentRedirect,
@@ -12309,6 +12318,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12309
12318
  };
12310
12319
  }
12311
12320
 
12321
+ /**
12322
+ * Controls the behavior of the navigation URI pattern matching algorithm.
12323
+ */
12324
+ declare type RuleMatchOptions = {
12325
+ /**
12326
+ * Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
12327
+ * only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
12328
+ */
12329
+ matchAllSchemes?: boolean;
12330
+ };
12331
+
12312
12332
  declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
12313
12333
 
12314
12334
  /**
@@ -4354,6 +4354,10 @@ declare type DomainSettingsRule = {
4354
4354
  * Settings applied when a webcontents has been navigated to a matched domain.
4355
4355
  */
4356
4356
  options: PerDomainSettings;
4357
+ /**
4358
+ * Options to use when comparing URIs to the `match` patterns.
4359
+ */
4360
+ matchOptions?: RuleMatchOptions;
4357
4361
  };
4358
4362
 
4359
4363
  /**
@@ -9240,6 +9244,10 @@ declare type NavigationRules = {
9240
9244
  allowlist?: string[];
9241
9245
  /** Forbidden URLs for navigation. */
9242
9246
  denylist?: string[];
9247
+ /**
9248
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9249
+ */
9250
+ matchOptions?: RuleMatchOptions;
9243
9251
  };
9244
9252
 
9245
9253
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9389,6 +9397,7 @@ declare namespace OpenFin {
9389
9397
  Api,
9390
9398
  ApiSettings,
9391
9399
  InjectionType,
9400
+ RuleMatchOptions,
9392
9401
  NavigationRules,
9393
9402
  ContentNavigation,
9394
9403
  ContentRedirect,
@@ -12309,6 +12318,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12309
12318
  };
12310
12319
  }
12311
12320
 
12321
+ /**
12322
+ * Controls the behavior of the navigation URI pattern matching algorithm.
12323
+ */
12324
+ declare type RuleMatchOptions = {
12325
+ /**
12326
+ * Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
12327
+ * only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
12328
+ */
12329
+ matchAllSchemes?: boolean;
12330
+ };
12331
+
12312
12332
  declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
12313
12333
 
12314
12334
  /**
package/out/fdc3-api.d.ts CHANGED
@@ -4413,6 +4413,10 @@ declare type DomainSettingsRule = {
4413
4413
  * Settings applied when a webcontents has been navigated to a matched domain.
4414
4414
  */
4415
4415
  options: PerDomainSettings;
4416
+ /**
4417
+ * Options to use when comparing URIs to the `match` patterns.
4418
+ */
4419
+ matchOptions?: RuleMatchOptions;
4416
4420
  };
4417
4421
 
4418
4422
  /**
@@ -9545,6 +9549,10 @@ declare type NavigationRules = {
9545
9549
  allowlist?: string[];
9546
9550
  /** Forbidden URLs for navigation. */
9547
9551
  denylist?: string[];
9552
+ /**
9553
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9554
+ */
9555
+ matchOptions?: RuleMatchOptions;
9548
9556
  };
9549
9557
 
9550
9558
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9704,6 +9712,7 @@ declare namespace OpenFin {
9704
9712
  Api,
9705
9713
  ApiSettings,
9706
9714
  InjectionType,
9715
+ RuleMatchOptions,
9707
9716
  NavigationRules,
9708
9717
  ContentNavigation,
9709
9718
  ContentRedirect,
@@ -12702,6 +12711,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12702
12711
  };
12703
12712
  }
12704
12713
 
12714
+ /**
12715
+ * Controls the behavior of the navigation URI pattern matching algorithm.
12716
+ */
12717
+ declare type RuleMatchOptions = {
12718
+ /**
12719
+ * Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
12720
+ * only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
12721
+ */
12722
+ matchAllSchemes?: boolean;
12723
+ };
12724
+
12705
12725
  declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
12706
12726
 
12707
12727
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "39.82.11",
3
+ "version": "39.82.13",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.MD",
6
6
  "private": false,