@openfin/core 43.100.109 → 43.100.110

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.
@@ -1421,29 +1421,26 @@ declare type ApplicationWindowInfo = {
1421
1421
  };
1422
1422
 
1423
1423
  /**
1424
- * `appLogLevel` allows the verbosity of app logs that are collected for a Window or View to be controlled when the app logging feature is enabled for its application.
1424
+ * The `appLogLevel` option allows the verbosity of app logs that are collected for a Window or View to be controlled for its application.
1425
1425
  *
1426
- * Please note, `enableAppLogging` must be specified in the application manifest's `platform` or `startup_app` key for this feature to be activated.
1427
- *
1428
- * If not specified, and `enableAppLogging` is true for the application, the default level will be 'silent'.
1429
- *
1430
- * This setting can also be specified in a Domain Setting Rule, allowing per url exceptions to the default behavior to be made. Please note, when a domain setting is actively
1431
- * controlling a url's appLogLevel, its options will be ignored.
1426
+ * This setting can also be specified in a Domain Setting Rule, allowing per url overrides to be defined. Please note, when a domain setting is actively
1427
+ * controlling a url's appLogLevel, its view/window options will be ignored.
1432
1428
  *
1433
1429
  * @default 'debug'
1434
1430
  *
1431
+ * Please note, if the manifest setting `platform.enableAppLogging` or `startup_app.enableAppLogging` is set to `false`, this feature will be disabled.
1432
+ *
1435
1433
  * @example Controlling App Logs With DefaultViewOptions + Domain Settings
1436
1434
  *
1437
1435
  * In this example manifest, we use `defaultViewOptions to set the default verbosity to 'warn'.
1438
1436
  *
1439
- * We also use domain settings to suppress logs entirely for an example URL, and to lower verbosity to 'debug' for another.
1437
+ * We also use domain settings to suppress logs for an example URL, and to lower verbosity to 'debug' for another.
1440
1438
  *
1441
1439
  * ```ts
1442
1440
  * {
1443
1441
  * <rest of settings>
1444
1442
  * "platform": {
1445
1443
  * <rest of settings>
1446
- * "enableAppLogging": "true",
1447
1444
  * "defaultViewOptions": {
1448
1445
  * "appLogLevel": "warn"
1449
1446
  * },
@@ -9517,10 +9514,12 @@ declare type MutableWindowOptions = {
9517
9514
  */
9518
9515
  customData: any;
9519
9516
  /**
9520
- * @deprecated Will be removed in runtime version 45
9521
9517
  *
9522
9518
  * Show the window's frame.
9523
9519
  *
9520
+ * @remarks
9521
+ * This property will not be updatable starting runtime version 45.
9522
+ *
9524
9523
  * @default true
9525
9524
  */
9526
9525
  frame: boolean;
@@ -1421,29 +1421,26 @@ declare type ApplicationWindowInfo = {
1421
1421
  };
1422
1422
 
1423
1423
  /**
1424
- * `appLogLevel` allows the verbosity of app logs that are collected for a Window or View to be controlled when the app logging feature is enabled for its application.
1424
+ * The `appLogLevel` option allows the verbosity of app logs that are collected for a Window or View to be controlled for its application.
1425
1425
  *
1426
- * Please note, `enableAppLogging` must be specified in the application manifest's `platform` or `startup_app` key for this feature to be activated.
1427
- *
1428
- * If not specified, and `enableAppLogging` is true for the application, the default level will be 'silent'.
1429
- *
1430
- * This setting can also be specified in a Domain Setting Rule, allowing per url exceptions to the default behavior to be made. Please note, when a domain setting is actively
1431
- * controlling a url's appLogLevel, its options will be ignored.
1426
+ * This setting can also be specified in a Domain Setting Rule, allowing per url overrides to be defined. Please note, when a domain setting is actively
1427
+ * controlling a url's appLogLevel, its view/window options will be ignored.
1432
1428
  *
1433
1429
  * @default 'debug'
1434
1430
  *
1431
+ * Please note, if the manifest setting `platform.enableAppLogging` or `startup_app.enableAppLogging` is set to `false`, this feature will be disabled.
1432
+ *
1435
1433
  * @example Controlling App Logs With DefaultViewOptions + Domain Settings
1436
1434
  *
1437
1435
  * In this example manifest, we use `defaultViewOptions to set the default verbosity to 'warn'.
1438
1436
  *
1439
- * We also use domain settings to suppress logs entirely for an example URL, and to lower verbosity to 'debug' for another.
1437
+ * We also use domain settings to suppress logs for an example URL, and to lower verbosity to 'debug' for another.
1440
1438
  *
1441
1439
  * ```ts
1442
1440
  * {
1443
1441
  * <rest of settings>
1444
1442
  * "platform": {
1445
1443
  * <rest of settings>
1446
- * "enableAppLogging": "true",
1447
1444
  * "defaultViewOptions": {
1448
1445
  * "appLogLevel": "warn"
1449
1446
  * },
@@ -9517,10 +9514,12 @@ declare type MutableWindowOptions = {
9517
9514
  */
9518
9515
  customData: any;
9519
9516
  /**
9520
- * @deprecated Will be removed in runtime version 45
9521
9517
  *
9522
9518
  * Show the window's frame.
9523
9519
  *
9520
+ * @remarks
9521
+ * This property will not be updatable starting runtime version 45.
9522
+ *
9524
9523
  * @default true
9525
9524
  */
9526
9525
  frame: boolean;
@@ -1421,29 +1421,26 @@ declare type ApplicationWindowInfo = {
1421
1421
  };
1422
1422
 
1423
1423
  /**
1424
- * `appLogLevel` allows the verbosity of app logs that are collected for a Window or View to be controlled when the app logging feature is enabled for its application.
1424
+ * The `appLogLevel` option allows the verbosity of app logs that are collected for a Window or View to be controlled for its application.
1425
1425
  *
1426
- * Please note, `enableAppLogging` must be specified in the application manifest's `platform` or `startup_app` key for this feature to be activated.
1427
- *
1428
- * If not specified, and `enableAppLogging` is true for the application, the default level will be 'silent'.
1429
- *
1430
- * This setting can also be specified in a Domain Setting Rule, allowing per url exceptions to the default behavior to be made. Please note, when a domain setting is actively
1431
- * controlling a url's appLogLevel, its options will be ignored.
1426
+ * This setting can also be specified in a Domain Setting Rule, allowing per url overrides to be defined. Please note, when a domain setting is actively
1427
+ * controlling a url's appLogLevel, its view/window options will be ignored.
1432
1428
  *
1433
1429
  * @default 'debug'
1434
1430
  *
1431
+ * Please note, if the manifest setting `platform.enableAppLogging` or `startup_app.enableAppLogging` is set to `false`, this feature will be disabled.
1432
+ *
1435
1433
  * @example Controlling App Logs With DefaultViewOptions + Domain Settings
1436
1434
  *
1437
1435
  * In this example manifest, we use `defaultViewOptions to set the default verbosity to 'warn'.
1438
1436
  *
1439
- * We also use domain settings to suppress logs entirely for an example URL, and to lower verbosity to 'debug' for another.
1437
+ * We also use domain settings to suppress logs for an example URL, and to lower verbosity to 'debug' for another.
1440
1438
  *
1441
1439
  * ```ts
1442
1440
  * {
1443
1441
  * <rest of settings>
1444
1442
  * "platform": {
1445
1443
  * <rest of settings>
1446
- * "enableAppLogging": "true",
1447
1444
  * "defaultViewOptions": {
1448
1445
  * "appLogLevel": "warn"
1449
1446
  * },
@@ -9517,10 +9514,12 @@ declare type MutableWindowOptions = {
9517
9514
  */
9518
9515
  customData: any;
9519
9516
  /**
9520
- * @deprecated Will be removed in runtime version 45
9521
9517
  *
9522
9518
  * Show the window's frame.
9523
9519
  *
9520
+ * @remarks
9521
+ * This property will not be updatable starting runtime version 45.
9522
+ *
9524
9523
  * @default true
9525
9524
  */
9526
9525
  frame: boolean;
package/out/stub.d.ts CHANGED
@@ -1427,29 +1427,26 @@ declare type ApplicationWindowInfo = {
1427
1427
  };
1428
1428
 
1429
1429
  /**
1430
- * `appLogLevel` allows the verbosity of app logs that are collected for a Window or View to be controlled when the app logging feature is enabled for its application.
1430
+ * The `appLogLevel` option allows the verbosity of app logs that are collected for a Window or View to be controlled for its application.
1431
1431
  *
1432
- * Please note, `enableAppLogging` must be specified in the application manifest's `platform` or `startup_app` key for this feature to be activated.
1433
- *
1434
- * If not specified, and `enableAppLogging` is true for the application, the default level will be 'silent'.
1435
- *
1436
- * This setting can also be specified in a Domain Setting Rule, allowing per url exceptions to the default behavior to be made. Please note, when a domain setting is actively
1437
- * controlling a url's appLogLevel, its options will be ignored.
1432
+ * This setting can also be specified in a Domain Setting Rule, allowing per url overrides to be defined. Please note, when a domain setting is actively
1433
+ * controlling a url's appLogLevel, its view/window options will be ignored.
1438
1434
  *
1439
1435
  * @default 'debug'
1440
1436
  *
1437
+ * Please note, if the manifest setting `platform.enableAppLogging` or `startup_app.enableAppLogging` is set to `false`, this feature will be disabled.
1438
+ *
1441
1439
  * @example Controlling App Logs With DefaultViewOptions + Domain Settings
1442
1440
  *
1443
1441
  * In this example manifest, we use `defaultViewOptions to set the default verbosity to 'warn'.
1444
1442
  *
1445
- * We also use domain settings to suppress logs entirely for an example URL, and to lower verbosity to 'debug' for another.
1443
+ * We also use domain settings to suppress logs for an example URL, and to lower verbosity to 'debug' for another.
1446
1444
  *
1447
1445
  * ```ts
1448
1446
  * {
1449
1447
  * <rest of settings>
1450
1448
  * "platform": {
1451
1449
  * <rest of settings>
1452
- * "enableAppLogging": "true",
1453
1450
  * "defaultViewOptions": {
1454
1451
  * "appLogLevel": "warn"
1455
1452
  * },
@@ -9830,10 +9827,12 @@ declare type MutableWindowOptions = {
9830
9827
  */
9831
9828
  customData: any;
9832
9829
  /**
9833
- * @deprecated Will be removed in runtime version 45
9834
9830
  *
9835
9831
  * Show the window's frame.
9836
9832
  *
9833
+ * @remarks
9834
+ * This property will not be updatable starting runtime version 45.
9835
+ *
9837
9836
  * @default true
9838
9837
  */
9839
9838
  frame: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "43.100.109",
3
+ "version": "43.100.110",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/stub.js",