@openfin/node-adapter 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.
@@ -3436,6 +3436,13 @@ declare type ConstViewOptions = {
|
|
3436
3436
|
* Initial bounds given relative to the window.
|
3437
3437
|
*/
|
3438
3438
|
bounds: Bounds;
|
3439
|
+
/**
|
3440
|
+
* API permissions for code running in the view.
|
3441
|
+
*
|
3442
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3443
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3444
|
+
* to the source of the page content than to the context rendering it.
|
3445
|
+
*/
|
3439
3446
|
permissions: Partial<Permissions_2>;
|
3440
3447
|
/**
|
3441
3448
|
* String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
|
@@ -3636,6 +3643,13 @@ declare type ConstWindowOptions = {
|
|
3636
3643
|
* The name of the window.
|
3637
3644
|
*/
|
3638
3645
|
name: string;
|
3646
|
+
/**
|
3647
|
+
* API permissions for code running in the window.
|
3648
|
+
*
|
3649
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3650
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3651
|
+
* to the source of the page content than to the context rendering it.
|
3652
|
+
*/
|
3639
3653
|
permissions: Partial<Permissions_2>;
|
3640
3654
|
/**
|
3641
3655
|
* Scripts that run before page load. When omitted, inherits from the parent application.
|
@@ -4716,6 +4730,10 @@ declare type DomainSettings = {
|
|
4716
4730
|
rules: DomainSettingsRule[];
|
4717
4731
|
/**
|
4718
4732
|
* Default values for settings in {@link DomainSettingsRule}.
|
4733
|
+
*
|
4734
|
+
* @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
|
4735
|
+
* here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
|
4736
|
+
* more information, see the documentation for the individual properties.
|
4719
4737
|
*/
|
4720
4738
|
default?: PerDomainSettings;
|
4721
4739
|
};
|
@@ -10219,7 +10237,7 @@ declare type PerDomainSettings = {
|
|
10219
10237
|
* Whether DOM content can be loaded (by navigation or redirect).
|
10220
10238
|
*
|
10221
10239
|
* @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
|
10222
|
-
* {@link ContentRedirect} will be **ignored**.
|
10240
|
+
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
10223
10241
|
*/
|
10224
10242
|
content?: ContentPermission;
|
10225
10243
|
};
|
@@ -3436,6 +3436,13 @@ declare type ConstViewOptions = {
|
|
3436
3436
|
* Initial bounds given relative to the window.
|
3437
3437
|
*/
|
3438
3438
|
bounds: Bounds;
|
3439
|
+
/**
|
3440
|
+
* API permissions for code running in the view.
|
3441
|
+
*
|
3442
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3443
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3444
|
+
* to the source of the page content than to the context rendering it.
|
3445
|
+
*/
|
3439
3446
|
permissions: Partial<Permissions_2>;
|
3440
3447
|
/**
|
3441
3448
|
* String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
|
@@ -3636,6 +3643,13 @@ declare type ConstWindowOptions = {
|
|
3636
3643
|
* The name of the window.
|
3637
3644
|
*/
|
3638
3645
|
name: string;
|
3646
|
+
/**
|
3647
|
+
* API permissions for code running in the window.
|
3648
|
+
*
|
3649
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3650
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3651
|
+
* to the source of the page content than to the context rendering it.
|
3652
|
+
*/
|
3639
3653
|
permissions: Partial<Permissions_2>;
|
3640
3654
|
/**
|
3641
3655
|
* Scripts that run before page load. When omitted, inherits from the parent application.
|
@@ -4716,6 +4730,10 @@ declare type DomainSettings = {
|
|
4716
4730
|
rules: DomainSettingsRule[];
|
4717
4731
|
/**
|
4718
4732
|
* Default values for settings in {@link DomainSettingsRule}.
|
4733
|
+
*
|
4734
|
+
* @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
|
4735
|
+
* here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
|
4736
|
+
* more information, see the documentation for the individual properties.
|
4719
4737
|
*/
|
4720
4738
|
default?: PerDomainSettings;
|
4721
4739
|
};
|
@@ -10219,7 +10237,7 @@ declare type PerDomainSettings = {
|
|
10219
10237
|
* Whether DOM content can be loaded (by navigation or redirect).
|
10220
10238
|
*
|
10221
10239
|
* @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
|
10222
|
-
* {@link ContentRedirect} will be **ignored**.
|
10240
|
+
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
10223
10241
|
*/
|
10224
10242
|
content?: ContentPermission;
|
10225
10243
|
};
|
@@ -3436,6 +3436,13 @@ declare type ConstViewOptions = {
|
|
3436
3436
|
* Initial bounds given relative to the window.
|
3437
3437
|
*/
|
3438
3438
|
bounds: Bounds;
|
3439
|
+
/**
|
3440
|
+
* API permissions for code running in the view.
|
3441
|
+
*
|
3442
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3443
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3444
|
+
* to the source of the page content than to the context rendering it.
|
3445
|
+
*/
|
3439
3446
|
permissions: Partial<Permissions_2>;
|
3440
3447
|
/**
|
3441
3448
|
* String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
|
@@ -3636,6 +3643,13 @@ declare type ConstWindowOptions = {
|
|
3636
3643
|
* The name of the window.
|
3637
3644
|
*/
|
3638
3645
|
name: string;
|
3646
|
+
/**
|
3647
|
+
* API permissions for code running in the window.
|
3648
|
+
*
|
3649
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3650
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3651
|
+
* to the source of the page content than to the context rendering it.
|
3652
|
+
*/
|
3639
3653
|
permissions: Partial<Permissions_2>;
|
3640
3654
|
/**
|
3641
3655
|
* Scripts that run before page load. When omitted, inherits from the parent application.
|
@@ -4716,6 +4730,10 @@ declare type DomainSettings = {
|
|
4716
4730
|
rules: DomainSettingsRule[];
|
4717
4731
|
/**
|
4718
4732
|
* Default values for settings in {@link DomainSettingsRule}.
|
4733
|
+
*
|
4734
|
+
* @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
|
4735
|
+
* here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
|
4736
|
+
* more information, see the documentation for the individual properties.
|
4719
4737
|
*/
|
4720
4738
|
default?: PerDomainSettings;
|
4721
4739
|
};
|
@@ -10219,7 +10237,7 @@ declare type PerDomainSettings = {
|
|
10219
10237
|
* Whether DOM content can be loaded (by navigation or redirect).
|
10220
10238
|
*
|
10221
10239
|
* @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
|
10222
|
-
* {@link ContentRedirect} will be **ignored**.
|
10240
|
+
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
10223
10241
|
*/
|
10224
10242
|
content?: ContentPermission;
|
10225
10243
|
};
|
package/out/node-adapter.d.ts
CHANGED
@@ -3495,6 +3495,13 @@ declare type ConstViewOptions = {
|
|
3495
3495
|
* Initial bounds given relative to the window.
|
3496
3496
|
*/
|
3497
3497
|
bounds: Bounds;
|
3498
|
+
/**
|
3499
|
+
* API permissions for code running in the view.
|
3500
|
+
*
|
3501
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3502
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3503
|
+
* to the source of the page content than to the context rendering it.
|
3504
|
+
*/
|
3498
3505
|
permissions: Partial<Permissions_2>;
|
3499
3506
|
/**
|
3500
3507
|
* String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
|
@@ -3695,6 +3702,13 @@ declare type ConstWindowOptions = {
|
|
3695
3702
|
* The name of the window.
|
3696
3703
|
*/
|
3697
3704
|
name: string;
|
3705
|
+
/**
|
3706
|
+
* API permissions for code running in the window.
|
3707
|
+
*
|
3708
|
+
* @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
|
3709
|
+
* It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
|
3710
|
+
* to the source of the page content than to the context rendering it.
|
3711
|
+
*/
|
3698
3712
|
permissions: Partial<Permissions_2>;
|
3699
3713
|
/**
|
3700
3714
|
* Scripts that run before page load. When omitted, inherits from the parent application.
|
@@ -4775,6 +4789,10 @@ declare type DomainSettings = {
|
|
4775
4789
|
rules: DomainSettingsRule[];
|
4776
4790
|
/**
|
4777
4791
|
* Default values for settings in {@link DomainSettingsRule}.
|
4792
|
+
*
|
4793
|
+
* @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
|
4794
|
+
* here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
|
4795
|
+
* more information, see the documentation for the individual properties.
|
4778
4796
|
*/
|
4779
4797
|
default?: PerDomainSettings;
|
4780
4798
|
};
|
@@ -10556,7 +10574,7 @@ declare type PerDomainSettings = {
|
|
10556
10574
|
* Whether DOM content can be loaded (by navigation or redirect).
|
10557
10575
|
*
|
10558
10576
|
* @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
|
10559
|
-
* {@link ContentRedirect} will be **ignored**.
|
10577
|
+
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
10560
10578
|
*/
|
10561
10579
|
content?: ContentPermission;
|
10562
10580
|
};
|