@openfin/fdc3-api 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.
- package/out/fdc3-api-alpha.d.ts +19 -1
- package/out/fdc3-api-beta.d.ts +19 -1
- package/out/fdc3-api-public.d.ts +19 -1
- package/out/fdc3-api.d.ts +19 -1
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -4575,7 +4575,22 @@ declare type DomainSettings = {
|
|
|
4575
4575
|
};
|
|
4576
4576
|
|
|
4577
4577
|
/**
|
|
4578
|
-
*
|
|
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-beta.d.ts
CHANGED
|
@@ -4575,7 +4575,22 @@ declare type DomainSettings = {
|
|
|
4575
4575
|
};
|
|
4576
4576
|
|
|
4577
4577
|
/**
|
|
4578
|
-
*
|
|
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-public.d.ts
CHANGED
|
@@ -4575,7 +4575,22 @@ declare type DomainSettings = {
|
|
|
4575
4575
|
};
|
|
4576
4576
|
|
|
4577
4577
|
/**
|
|
4578
|
-
*
|
|
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
|
-
*
|
|
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?: {
|