@openfin/core 42.101.1 → 42.101.2

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.
@@ -4578,7 +4578,22 @@ declare type DomainSettings = {
4578
4578
  };
4579
4579
 
4580
4580
  /**
4581
- * Map of preload scripts that can enable new scripts or disable options defined preloadScripts.
4581
+ * Enables or disables specific preload scripts by URL.
4582
+ *
4583
+ * Uses the script's full URL as the key and an object
4584
+ * with an `enabled` boolean property as the value.
4585
+ * @example
4586
+ * ```js
4587
+ * {
4588
+ "match": ["<all_urls>"],
4589
+ "options": {
4590
+ "preloadScripts": {
4591
+ "http://localhost:53000/block-preload.js": { "enabled": false }
4592
+ "http://localhost:53000/allow-preload.js": { "enabled": true }
4593
+ }
4594
+ }
4595
+ }
4596
+ * ```
4582
4597
  */
4583
4598
  declare type DomainSettingsPreloadScripts = Record<string, {
4584
4599
  enabled: boolean;
@@ -8798,6 +8813,9 @@ declare type Manifest = {
8798
8813
  forceLatest?: boolean;
8799
8814
  futureVersion?: string;
8800
8815
  version: string;
8816
+ policies?: {
8817
+ CloudAPAuthEnabled?: 'enabled' | 'disabled';
8818
+ };
8801
8819
  };
8802
8820
  services?: string[];
8803
8821
  shortcut?: {
@@ -4578,7 +4578,22 @@ declare type DomainSettings = {
4578
4578
  };
4579
4579
 
4580
4580
  /**
4581
- * Map of preload scripts that can enable new scripts or disable options defined preloadScripts.
4581
+ * Enables or disables specific preload scripts by URL.
4582
+ *
4583
+ * Uses the script's full URL as the key and an object
4584
+ * with an `enabled` boolean property as the value.
4585
+ * @example
4586
+ * ```js
4587
+ * {
4588
+ "match": ["<all_urls>"],
4589
+ "options": {
4590
+ "preloadScripts": {
4591
+ "http://localhost:53000/block-preload.js": { "enabled": false }
4592
+ "http://localhost:53000/allow-preload.js": { "enabled": true }
4593
+ }
4594
+ }
4595
+ }
4596
+ * ```
4582
4597
  */
4583
4598
  declare type DomainSettingsPreloadScripts = Record<string, {
4584
4599
  enabled: boolean;
@@ -8798,6 +8813,9 @@ declare type Manifest = {
8798
8813
  forceLatest?: boolean;
8799
8814
  futureVersion?: string;
8800
8815
  version: string;
8816
+ policies?: {
8817
+ CloudAPAuthEnabled?: 'enabled' | 'disabled';
8818
+ };
8801
8819
  };
8802
8820
  services?: string[];
8803
8821
  shortcut?: {
@@ -4578,7 +4578,22 @@ declare type DomainSettings = {
4578
4578
  };
4579
4579
 
4580
4580
  /**
4581
- * Map of preload scripts that can enable new scripts or disable options defined preloadScripts.
4581
+ * Enables or disables specific preload scripts by URL.
4582
+ *
4583
+ * Uses the script's full URL as the key and an object
4584
+ * with an `enabled` boolean property as the value.
4585
+ * @example
4586
+ * ```js
4587
+ * {
4588
+ "match": ["<all_urls>"],
4589
+ "options": {
4590
+ "preloadScripts": {
4591
+ "http://localhost:53000/block-preload.js": { "enabled": false }
4592
+ "http://localhost:53000/allow-preload.js": { "enabled": true }
4593
+ }
4594
+ }
4595
+ }
4596
+ * ```
4582
4597
  */
4583
4598
  declare type DomainSettingsPreloadScripts = Record<string, {
4584
4599
  enabled: boolean;
@@ -8798,6 +8813,9 @@ declare type Manifest = {
8798
8813
  forceLatest?: boolean;
8799
8814
  futureVersion?: string;
8800
8815
  version: string;
8816
+ policies?: {
8817
+ CloudAPAuthEnabled?: 'enabled' | 'disabled';
8818
+ };
8801
8819
  };
8802
8820
  services?: string[];
8803
8821
  shortcut?: {
package/out/stub.d.ts CHANGED
@@ -4637,7 +4637,22 @@ declare type DomainSettings = {
4637
4637
  };
4638
4638
 
4639
4639
  /**
4640
- * Map of preload scripts that can enable new scripts or disable options defined preloadScripts.
4640
+ * Enables or disables specific preload scripts by URL.
4641
+ *
4642
+ * Uses the script's full URL as the key and an object
4643
+ * with an `enabled` boolean property as the value.
4644
+ * @example
4645
+ * ```js
4646
+ * {
4647
+ "match": ["<all_urls>"],
4648
+ "options": {
4649
+ "preloadScripts": {
4650
+ "http://localhost:53000/block-preload.js": { "enabled": false }
4651
+ "http://localhost:53000/allow-preload.js": { "enabled": true }
4652
+ }
4653
+ }
4654
+ }
4655
+ * ```
4641
4656
  */
4642
4657
  declare type DomainSettingsPreloadScripts = Record<string, {
4643
4658
  enabled: boolean;
@@ -9107,6 +9122,9 @@ declare type Manifest = {
9107
9122
  forceLatest?: boolean;
9108
9123
  futureVersion?: string;
9109
9124
  version: string;
9125
+ policies?: {
9126
+ CloudAPAuthEnabled?: 'enabled' | 'disabled';
9127
+ };
9110
9128
  };
9111
9129
  services?: string[];
9112
9130
  shortcut?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "42.101.1",
3
+ "version": "42.101.2",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/stub.js",