@openfin/core 38.82.55 → 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.
@@ -1279,6 +1279,10 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1279
1279
  * When set to `true`, any `beforeunload` handler set on the app will fire.
1280
1280
  */
1281
1281
  enableBeforeUnload: boolean;
1282
+ /**
1283
+ * Set the timezone for the app logs. When setting this value the timestamp will be in ISO 8601 format. By default, if no value is set, it will show the local time in this format: 'y-MM-dd HH:mm:ss.SSS'
1284
+ */
1285
+ appLogsTimezone: TimeZones;
1282
1286
  };
1283
1287
 
1284
1288
  /**
@@ -4356,6 +4360,10 @@ declare type DomainSettingsRule = {
4356
4360
  * Settings applied when a webcontents has been navigated to a matched domain.
4357
4361
  */
4358
4362
  options: PerDomainSettings;
4363
+ /**
4364
+ * Options to use when comparing URIs to the `match` patterns.
4365
+ */
4366
+ matchOptions?: RuleMatchOptions;
4359
4367
  };
4360
4368
 
4361
4369
  /**
@@ -8890,6 +8898,10 @@ declare type NavigationRules = {
8890
8898
  allowlist?: string[];
8891
8899
  /** Forbidden URLs for navigation. */
8892
8900
  denylist?: string[];
8901
+ /**
8902
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
8903
+ */
8904
+ matchOptions?: RuleMatchOptions;
8893
8905
  };
8894
8906
 
8895
8907
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -8997,6 +9009,7 @@ declare namespace OpenFin_2 {
8997
9009
  WindowBounds,
8998
9010
  Rectangle,
8999
9011
  ApplicationCreationOptions,
9012
+ TimeZones,
9000
9013
  ApplicationOptions,
9001
9014
  CustomProtocolMissingState,
9002
9015
  CustomProtocolMalformedState,
@@ -9038,6 +9051,7 @@ declare namespace OpenFin_2 {
9038
9051
  Api,
9039
9052
  ApiSettings,
9040
9053
  InjectionType,
9054
+ RuleMatchOptions,
9041
9055
  NavigationRules,
9042
9056
  ContentNavigation,
9043
9057
  ContentRedirect,
@@ -11960,6 +11974,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
11960
11974
  };
11961
11975
  }
11962
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
+
11963
11988
  declare type RunRequestedEvent = OpenFin_2.ApplicationEvents.RunRequestedEvent;
11964
11989
 
11965
11990
  /**
@@ -14298,6 +14323,8 @@ declare type Time = {
14298
14323
  irq: number;
14299
14324
  };
14300
14325
 
14326
+ declare type TimeZones = 'utc' | 'local';
14327
+
14301
14328
  /**
14302
14329
  * @interface
14303
14330
  */
@@ -1279,6 +1279,10 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1279
1279
  * When set to `true`, any `beforeunload` handler set on the app will fire.
1280
1280
  */
1281
1281
  enableBeforeUnload: boolean;
1282
+ /**
1283
+ * Set the timezone for the app logs. When setting this value the timestamp will be in ISO 8601 format. By default, if no value is set, it will show the local time in this format: 'y-MM-dd HH:mm:ss.SSS'
1284
+ */
1285
+ appLogsTimezone: TimeZones;
1282
1286
  };
1283
1287
 
1284
1288
  /**
@@ -4356,6 +4360,10 @@ declare type DomainSettingsRule = {
4356
4360
  * Settings applied when a webcontents has been navigated to a matched domain.
4357
4361
  */
4358
4362
  options: PerDomainSettings;
4363
+ /**
4364
+ * Options to use when comparing URIs to the `match` patterns.
4365
+ */
4366
+ matchOptions?: RuleMatchOptions;
4359
4367
  };
4360
4368
 
4361
4369
  /**
@@ -8890,6 +8898,10 @@ declare type NavigationRules = {
8890
8898
  allowlist?: string[];
8891
8899
  /** Forbidden URLs for navigation. */
8892
8900
  denylist?: string[];
8901
+ /**
8902
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
8903
+ */
8904
+ matchOptions?: RuleMatchOptions;
8893
8905
  };
8894
8906
 
8895
8907
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -8997,6 +9009,7 @@ declare namespace OpenFin_2 {
8997
9009
  WindowBounds,
8998
9010
  Rectangle,
8999
9011
  ApplicationCreationOptions,
9012
+ TimeZones,
9000
9013
  ApplicationOptions,
9001
9014
  CustomProtocolMissingState,
9002
9015
  CustomProtocolMalformedState,
@@ -9038,6 +9051,7 @@ declare namespace OpenFin_2 {
9038
9051
  Api,
9039
9052
  ApiSettings,
9040
9053
  InjectionType,
9054
+ RuleMatchOptions,
9041
9055
  NavigationRules,
9042
9056
  ContentNavigation,
9043
9057
  ContentRedirect,
@@ -11960,6 +11974,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
11960
11974
  };
11961
11975
  }
11962
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
+
11963
11988
  declare type RunRequestedEvent = OpenFin_2.ApplicationEvents.RunRequestedEvent;
11964
11989
 
11965
11990
  /**
@@ -14298,6 +14323,8 @@ declare type Time = {
14298
14323
  irq: number;
14299
14324
  };
14300
14325
 
14326
+ declare type TimeZones = 'utc' | 'local';
14327
+
14301
14328
  /**
14302
14329
  * @interface
14303
14330
  */
@@ -1279,6 +1279,10 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1279
1279
  * When set to `true`, any `beforeunload` handler set on the app will fire.
1280
1280
  */
1281
1281
  enableBeforeUnload: boolean;
1282
+ /**
1283
+ * Set the timezone for the app logs. When setting this value the timestamp will be in ISO 8601 format. By default, if no value is set, it will show the local time in this format: 'y-MM-dd HH:mm:ss.SSS'
1284
+ */
1285
+ appLogsTimezone: TimeZones;
1282
1286
  };
1283
1287
 
1284
1288
  /**
@@ -4356,6 +4360,10 @@ declare type DomainSettingsRule = {
4356
4360
  * Settings applied when a webcontents has been navigated to a matched domain.
4357
4361
  */
4358
4362
  options: PerDomainSettings;
4363
+ /**
4364
+ * Options to use when comparing URIs to the `match` patterns.
4365
+ */
4366
+ matchOptions?: RuleMatchOptions;
4359
4367
  };
4360
4368
 
4361
4369
  /**
@@ -8890,6 +8898,10 @@ declare type NavigationRules = {
8890
8898
  allowlist?: string[];
8891
8899
  /** Forbidden URLs for navigation. */
8892
8900
  denylist?: string[];
8901
+ /**
8902
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
8903
+ */
8904
+ matchOptions?: RuleMatchOptions;
8893
8905
  };
8894
8906
 
8895
8907
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -8997,6 +9009,7 @@ declare namespace OpenFin_2 {
8997
9009
  WindowBounds,
8998
9010
  Rectangle,
8999
9011
  ApplicationCreationOptions,
9012
+ TimeZones,
9000
9013
  ApplicationOptions,
9001
9014
  CustomProtocolMissingState,
9002
9015
  CustomProtocolMalformedState,
@@ -9038,6 +9051,7 @@ declare namespace OpenFin_2 {
9038
9051
  Api,
9039
9052
  ApiSettings,
9040
9053
  InjectionType,
9054
+ RuleMatchOptions,
9041
9055
  NavigationRules,
9042
9056
  ContentNavigation,
9043
9057
  ContentRedirect,
@@ -11960,6 +11974,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
11960
11974
  };
11961
11975
  }
11962
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
+
11963
11988
  declare type RunRequestedEvent = OpenFin_2.ApplicationEvents.RunRequestedEvent;
11964
11989
 
11965
11990
  /**
@@ -14298,6 +14323,8 @@ declare type Time = {
14298
14323
  irq: number;
14299
14324
  };
14300
14325
 
14326
+ declare type TimeZones = 'utc' | 'local';
14327
+
14301
14328
  /**
14302
14329
  * @interface
14303
14330
  */
package/out/mock.d.ts CHANGED
@@ -1285,6 +1285,10 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1285
1285
  * When set to `true`, any `beforeunload` handler set on the app will fire.
1286
1286
  */
1287
1287
  enableBeforeUnload: boolean;
1288
+ /**
1289
+ * Set the timezone for the app logs. When setting this value the timestamp will be in ISO 8601 format. By default, if no value is set, it will show the local time in this format: 'y-MM-dd HH:mm:ss.SSS'
1290
+ */
1291
+ appLogsTimezone: TimeZones;
1288
1292
  };
1289
1293
 
1290
1294
  /**
@@ -4415,6 +4419,10 @@ declare type DomainSettingsRule = {
4415
4419
  * Settings applied when a webcontents has been navigated to a matched domain.
4416
4420
  */
4417
4421
  options: PerDomainSettings;
4422
+ /**
4423
+ * Options to use when comparing URIs to the `match` patterns.
4424
+ */
4425
+ matchOptions?: RuleMatchOptions;
4418
4426
  };
4419
4427
 
4420
4428
  /**
@@ -9195,6 +9203,10 @@ declare type NavigationRules = {
9195
9203
  allowlist?: string[];
9196
9204
  /** Forbidden URLs for navigation. */
9197
9205
  denylist?: string[];
9206
+ /**
9207
+ * Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
9208
+ */
9209
+ matchOptions?: RuleMatchOptions;
9198
9210
  };
9199
9211
 
9200
9212
  declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
@@ -9312,6 +9324,7 @@ declare namespace OpenFin_2 {
9312
9324
  WindowBounds,
9313
9325
  Rectangle,
9314
9326
  ApplicationCreationOptions,
9327
+ TimeZones,
9315
9328
  ApplicationOptions,
9316
9329
  CustomProtocolMissingState,
9317
9330
  CustomProtocolMalformedState,
@@ -9353,6 +9366,7 @@ declare namespace OpenFin_2 {
9353
9366
  Api,
9354
9367
  ApiSettings,
9355
9368
  InjectionType,
9369
+ RuleMatchOptions,
9356
9370
  NavigationRules,
9357
9371
  ContentNavigation,
9358
9372
  ContentRedirect,
@@ -12353,6 +12367,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
12353
12367
  };
12354
12368
  }
12355
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
+
12356
12381
  declare type RunRequestedEvent = OpenFin_2.ApplicationEvents.RunRequestedEvent;
12357
12382
 
12358
12383
  /**
@@ -14704,6 +14729,8 @@ declare type Time = {
14704
14729
  irq: number;
14705
14730
  };
14706
14731
 
14732
+ declare type TimeZones = 'utc' | 'local';
14733
+
14707
14734
  /**
14708
14735
  * @interface
14709
14736
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "38.82.55",
3
+ "version": "38.82.57",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/mock.js",