@openfin/fdc3-api 42.101.1 → 42.101.3

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.
@@ -4575,7 +4575,22 @@ declare type DomainSettings = {
4575
4575
  };
4576
4576
 
4577
4577
  /**
4578
- * Map of preload scripts that can enable new scripts or disable options defined preloadScripts.
4578
+ * Enables or disables specific preload scripts by URL.
4579
+ *
4580
+ * Uses the script's full URL as the key and an object
4581
+ * with an `enabled` boolean property as the value.
4582
+ * @example
4583
+ * ```js
4584
+ * {
4585
+ "match": ["<all_urls>"],
4586
+ "options": {
4587
+ "preloadScripts": {
4588
+ "http://localhost:53000/block-preload.js": { "enabled": false }
4589
+ "http://localhost:53000/allow-preload.js": { "enabled": true }
4590
+ }
4591
+ }
4592
+ }
4593
+ * ```
4579
4594
  */
4580
4595
  declare type DomainSettingsPreloadScripts = Record<string, {
4581
4596
  enabled: boolean;
@@ -9140,6 +9155,9 @@ declare type Manifest = {
9140
9155
  forceLatest?: boolean;
9141
9156
  futureVersion?: string;
9142
9157
  version: string;
9158
+ policies?: {
9159
+ CloudAPAuthEnabled?: 'enabled' | 'disabled';
9160
+ };
9143
9161
  };
9144
9162
  services?: string[];
9145
9163
  shortcut?: {
@@ -4575,7 +4575,22 @@ declare type DomainSettings = {
4575
4575
  };
4576
4576
 
4577
4577
  /**
4578
- * Map of preload scripts that can enable new scripts or disable options defined preloadScripts.
4578
+ * Enables or disables specific preload scripts by URL.
4579
+ *
4580
+ * Uses the script's full URL as the key and an object
4581
+ * with an `enabled` boolean property as the value.
4582
+ * @example
4583
+ * ```js
4584
+ * {
4585
+ "match": ["<all_urls>"],
4586
+ "options": {
4587
+ "preloadScripts": {
4588
+ "http://localhost:53000/block-preload.js": { "enabled": false }
4589
+ "http://localhost:53000/allow-preload.js": { "enabled": true }
4590
+ }
4591
+ }
4592
+ }
4593
+ * ```
4579
4594
  */
4580
4595
  declare type DomainSettingsPreloadScripts = Record<string, {
4581
4596
  enabled: boolean;
@@ -9140,6 +9155,9 @@ declare type Manifest = {
9140
9155
  forceLatest?: boolean;
9141
9156
  futureVersion?: string;
9142
9157
  version: string;
9158
+ policies?: {
9159
+ CloudAPAuthEnabled?: 'enabled' | 'disabled';
9160
+ };
9143
9161
  };
9144
9162
  services?: string[];
9145
9163
  shortcut?: {
@@ -4575,7 +4575,22 @@ declare type DomainSettings = {
4575
4575
  };
4576
4576
 
4577
4577
  /**
4578
- * Map of preload scripts that can enable new scripts or disable options defined preloadScripts.
4578
+ * Enables or disables specific preload scripts by URL.
4579
+ *
4580
+ * Uses the script's full URL as the key and an object
4581
+ * with an `enabled` boolean property as the value.
4582
+ * @example
4583
+ * ```js
4584
+ * {
4585
+ "match": ["<all_urls>"],
4586
+ "options": {
4587
+ "preloadScripts": {
4588
+ "http://localhost:53000/block-preload.js": { "enabled": false }
4589
+ "http://localhost:53000/allow-preload.js": { "enabled": true }
4590
+ }
4591
+ }
4592
+ }
4593
+ * ```
4579
4594
  */
4580
4595
  declare type DomainSettingsPreloadScripts = Record<string, {
4581
4596
  enabled: boolean;
@@ -9140,6 +9155,9 @@ declare type Manifest = {
9140
9155
  forceLatest?: boolean;
9141
9156
  futureVersion?: string;
9142
9157
  version: string;
9158
+ policies?: {
9159
+ CloudAPAuthEnabled?: 'enabled' | 'disabled';
9160
+ };
9143
9161
  };
9144
9162
  services?: string[];
9145
9163
  shortcut?: {
package/out/fdc3-api.d.ts CHANGED
@@ -4634,7 +4634,22 @@ declare type DomainSettings = {
4634
4634
  };
4635
4635
 
4636
4636
  /**
4637
- * Map of preload scripts that can enable new scripts or disable options defined preloadScripts.
4637
+ * Enables or disables specific preload scripts by URL.
4638
+ *
4639
+ * Uses the script's full URL as the key and an object
4640
+ * with an `enabled` boolean property as the value.
4641
+ * @example
4642
+ * ```js
4643
+ * {
4644
+ "match": ["<all_urls>"],
4645
+ "options": {
4646
+ "preloadScripts": {
4647
+ "http://localhost:53000/block-preload.js": { "enabled": false }
4648
+ "http://localhost:53000/allow-preload.js": { "enabled": true }
4649
+ }
4650
+ }
4651
+ }
4652
+ * ```
4638
4653
  */
4639
4654
  declare type DomainSettingsPreloadScripts = Record<string, {
4640
4655
  enabled: boolean;
@@ -9449,6 +9464,9 @@ declare type Manifest = {
9449
9464
  forceLatest?: boolean;
9450
9465
  futureVersion?: string;
9451
9466
  version: string;
9467
+ policies?: {
9468
+ CloudAPAuthEnabled?: 'enabled' | 'disabled';
9469
+ };
9452
9470
  };
9453
9471
  services?: string[];
9454
9472
  shortcut?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "42.101.1",
3
+ "version": "42.101.3",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,