@openfin/core 38.81.30 → 38.81.31
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/mock-alpha.d.ts +19 -1
- package/out/mock-beta.d.ts +19 -1
- package/out/mock-public.d.ts +19 -1
- package/out/mock.d.ts +19 -1
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
@@ -3432,6 +3432,13 @@ declare type ConstViewOptions = {
|
|
3432
3432
|
* Initial bounds given relative to the window.
|
3433
3433
|
*/
|
3434
3434
|
bounds: Bounds;
|
3435
|
+
/**
|
3436
|
+
* API permissions for code running in the view.
|
3437
|
+
*
|
3438
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3439
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3440
|
+
* to the source of the page content than to the context rendering it.
|
3441
|
+
*/
|
3435
3442
|
permissions: Partial<Permissions_2>;
|
3436
3443
|
/**
|
3437
3444
|
* String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
|
@@ -3632,6 +3639,13 @@ declare type ConstWindowOptions = {
|
|
3632
3639
|
* The name of the window.
|
3633
3640
|
*/
|
3634
3641
|
name: string;
|
3642
|
+
/**
|
3643
|
+
* API permissions for code running in the window.
|
3644
|
+
*
|
3645
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3646
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3647
|
+
* to the source of the page content than to the context rendering it.
|
3648
|
+
*/
|
3635
3649
|
permissions: Partial<Permissions_2>;
|
3636
3650
|
/**
|
3637
3651
|
* Scripts that run before page load. When omitted, inherits from the parent application.
|
@@ -4712,6 +4726,10 @@ declare type DomainSettings = {
|
|
4712
4726
|
rules: DomainSettingsRule[];
|
4713
4727
|
/**
|
4714
4728
|
* Default values for settings in {@link DomainSettingsRule}.
|
4729
|
+
*
|
4730
|
+
* @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
|
4731
|
+
* here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
|
4732
|
+
* more information, see the documentation for the individual properties.
|
4715
4733
|
*/
|
4716
4734
|
default?: PerDomainSettings;
|
4717
4735
|
};
|
@@ -10209,7 +10227,7 @@ declare type PerDomainSettings = {
|
|
10209
10227
|
* Whether DOM content can be loaded (by navigation or redirect).
|
10210
10228
|
*
|
10211
10229
|
* @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
|
10212
|
-
* {@link ContentRedirect} will be **ignored**.
|
10230
|
+
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
10213
10231
|
*/
|
10214
10232
|
content?: ContentPermission;
|
10215
10233
|
};
|
package/out/mock-beta.d.ts
CHANGED
@@ -3432,6 +3432,13 @@ declare type ConstViewOptions = {
|
|
3432
3432
|
* Initial bounds given relative to the window.
|
3433
3433
|
*/
|
3434
3434
|
bounds: Bounds;
|
3435
|
+
/**
|
3436
|
+
* API permissions for code running in the view.
|
3437
|
+
*
|
3438
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3439
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3440
|
+
* to the source of the page content than to the context rendering it.
|
3441
|
+
*/
|
3435
3442
|
permissions: Partial<Permissions_2>;
|
3436
3443
|
/**
|
3437
3444
|
* String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
|
@@ -3632,6 +3639,13 @@ declare type ConstWindowOptions = {
|
|
3632
3639
|
* The name of the window.
|
3633
3640
|
*/
|
3634
3641
|
name: string;
|
3642
|
+
/**
|
3643
|
+
* API permissions for code running in the window.
|
3644
|
+
*
|
3645
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3646
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3647
|
+
* to the source of the page content than to the context rendering it.
|
3648
|
+
*/
|
3635
3649
|
permissions: Partial<Permissions_2>;
|
3636
3650
|
/**
|
3637
3651
|
* Scripts that run before page load. When omitted, inherits from the parent application.
|
@@ -4712,6 +4726,10 @@ declare type DomainSettings = {
|
|
4712
4726
|
rules: DomainSettingsRule[];
|
4713
4727
|
/**
|
4714
4728
|
* Default values for settings in {@link DomainSettingsRule}.
|
4729
|
+
*
|
4730
|
+
* @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
|
4731
|
+
* here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
|
4732
|
+
* more information, see the documentation for the individual properties.
|
4715
4733
|
*/
|
4716
4734
|
default?: PerDomainSettings;
|
4717
4735
|
};
|
@@ -10209,7 +10227,7 @@ declare type PerDomainSettings = {
|
|
10209
10227
|
* Whether DOM content can be loaded (by navigation or redirect).
|
10210
10228
|
*
|
10211
10229
|
* @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
|
10212
|
-
* {@link ContentRedirect} will be **ignored**.
|
10230
|
+
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
10213
10231
|
*/
|
10214
10232
|
content?: ContentPermission;
|
10215
10233
|
};
|
package/out/mock-public.d.ts
CHANGED
@@ -3432,6 +3432,13 @@ declare type ConstViewOptions = {
|
|
3432
3432
|
* Initial bounds given relative to the window.
|
3433
3433
|
*/
|
3434
3434
|
bounds: Bounds;
|
3435
|
+
/**
|
3436
|
+
* API permissions for code running in the view.
|
3437
|
+
*
|
3438
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3439
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3440
|
+
* to the source of the page content than to the context rendering it.
|
3441
|
+
*/
|
3435
3442
|
permissions: Partial<Permissions_2>;
|
3436
3443
|
/**
|
3437
3444
|
* String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
|
@@ -3632,6 +3639,13 @@ declare type ConstWindowOptions = {
|
|
3632
3639
|
* The name of the window.
|
3633
3640
|
*/
|
3634
3641
|
name: string;
|
3642
|
+
/**
|
3643
|
+
* API permissions for code running in the window.
|
3644
|
+
*
|
3645
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3646
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3647
|
+
* to the source of the page content than to the context rendering it.
|
3648
|
+
*/
|
3635
3649
|
permissions: Partial<Permissions_2>;
|
3636
3650
|
/**
|
3637
3651
|
* Scripts that run before page load. When omitted, inherits from the parent application.
|
@@ -4712,6 +4726,10 @@ declare type DomainSettings = {
|
|
4712
4726
|
rules: DomainSettingsRule[];
|
4713
4727
|
/**
|
4714
4728
|
* Default values for settings in {@link DomainSettingsRule}.
|
4729
|
+
*
|
4730
|
+
* @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
|
4731
|
+
* here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
|
4732
|
+
* more information, see the documentation for the individual properties.
|
4715
4733
|
*/
|
4716
4734
|
default?: PerDomainSettings;
|
4717
4735
|
};
|
@@ -10209,7 +10227,7 @@ declare type PerDomainSettings = {
|
|
10209
10227
|
* Whether DOM content can be loaded (by navigation or redirect).
|
10210
10228
|
*
|
10211
10229
|
* @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
|
10212
|
-
* {@link ContentRedirect} will be **ignored**.
|
10230
|
+
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
10213
10231
|
*/
|
10214
10232
|
content?: ContentPermission;
|
10215
10233
|
};
|
package/out/mock.d.ts
CHANGED
@@ -3491,6 +3491,13 @@ declare type ConstViewOptions = {
|
|
3491
3491
|
* Initial bounds given relative to the window.
|
3492
3492
|
*/
|
3493
3493
|
bounds: Bounds;
|
3494
|
+
/**
|
3495
|
+
* API permissions for code running in the view.
|
3496
|
+
*
|
3497
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3498
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3499
|
+
* to the source of the page content than to the context rendering it.
|
3500
|
+
*/
|
3494
3501
|
permissions: Partial<Permissions_2>;
|
3495
3502
|
/**
|
3496
3503
|
* String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
|
@@ -3691,6 +3698,13 @@ declare type ConstWindowOptions = {
|
|
3691
3698
|
* The name of the window.
|
3692
3699
|
*/
|
3693
3700
|
name: string;
|
3701
|
+
/**
|
3702
|
+
* API permissions for code running in the window.
|
3703
|
+
*
|
3704
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3705
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3706
|
+
* to the source of the page content than to the context rendering it.
|
3707
|
+
*/
|
3694
3708
|
permissions: Partial<Permissions_2>;
|
3695
3709
|
/**
|
3696
3710
|
* Scripts that run before page load. When omitted, inherits from the parent application.
|
@@ -4771,6 +4785,10 @@ declare type DomainSettings = {
|
|
4771
4785
|
rules: DomainSettingsRule[];
|
4772
4786
|
/**
|
4773
4787
|
* Default values for settings in {@link DomainSettingsRule}.
|
4788
|
+
*
|
4789
|
+
* @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
|
4790
|
+
* here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
|
4791
|
+
* more information, see the documentation for the individual properties.
|
4774
4792
|
*/
|
4775
4793
|
default?: PerDomainSettings;
|
4776
4794
|
};
|
@@ -10524,7 +10542,7 @@ declare type PerDomainSettings = {
|
|
10524
10542
|
* Whether DOM content can be loaded (by navigation or redirect).
|
10525
10543
|
*
|
10526
10544
|
* @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
|
10527
|
-
* {@link ContentRedirect} will be **ignored**.
|
10545
|
+
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
10528
10546
|
*/
|
10529
10547
|
content?: ContentPermission;
|
10530
10548
|
};
|