@openfin/remote-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.
@@ -3456,6 +3456,13 @@ declare type ConstViewOptions = {
3456
3456
  * Initial bounds given relative to the window.
3457
3457
  */
3458
3458
  bounds: Bounds;
3459
+ /**
3460
+ * API permissions for code running in the view.
3461
+ *
3462
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3463
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3464
+ * to the source of the page content than to the context rendering it.
3465
+ */
3459
3466
  permissions: Partial<Permissions_2>;
3460
3467
  /**
3461
3468
  * String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
@@ -3656,6 +3663,13 @@ declare type ConstWindowOptions = {
3656
3663
  * The name of the window.
3657
3664
  */
3658
3665
  name: string;
3666
+ /**
3667
+ * API permissions for code running in the window.
3668
+ *
3669
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3670
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3671
+ * to the source of the page content than to the context rendering it.
3672
+ */
3659
3673
  permissions: Partial<Permissions_2>;
3660
3674
  /**
3661
3675
  * Scripts that run before page load. When omitted, inherits from the parent application.
@@ -4736,6 +4750,10 @@ declare type DomainSettings = {
4736
4750
  rules: DomainSettingsRule[];
4737
4751
  /**
4738
4752
  * Default values for settings in {@link DomainSettingsRule}.
4753
+ *
4754
+ * @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
4755
+ * here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
4756
+ * more information, see the documentation for the individual properties.
4739
4757
  */
4740
4758
  default?: PerDomainSettings;
4741
4759
  };
@@ -10251,7 +10269,7 @@ declare type PerDomainSettings = {
10251
10269
  * Whether DOM content can be loaded (by navigation or redirect).
10252
10270
  *
10253
10271
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10254
- * {@link ContentRedirect} will be **ignored**.
10272
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10255
10273
  */
10256
10274
  content?: ContentPermission;
10257
10275
  };
@@ -3456,6 +3456,13 @@ declare type ConstViewOptions = {
3456
3456
  * Initial bounds given relative to the window.
3457
3457
  */
3458
3458
  bounds: Bounds;
3459
+ /**
3460
+ * API permissions for code running in the view.
3461
+ *
3462
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3463
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3464
+ * to the source of the page content than to the context rendering it.
3465
+ */
3459
3466
  permissions: Partial<Permissions_2>;
3460
3467
  /**
3461
3468
  * String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
@@ -3656,6 +3663,13 @@ declare type ConstWindowOptions = {
3656
3663
  * The name of the window.
3657
3664
  */
3658
3665
  name: string;
3666
+ /**
3667
+ * API permissions for code running in the window.
3668
+ *
3669
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3670
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3671
+ * to the source of the page content than to the context rendering it.
3672
+ */
3659
3673
  permissions: Partial<Permissions_2>;
3660
3674
  /**
3661
3675
  * Scripts that run before page load. When omitted, inherits from the parent application.
@@ -4736,6 +4750,10 @@ declare type DomainSettings = {
4736
4750
  rules: DomainSettingsRule[];
4737
4751
  /**
4738
4752
  * Default values for settings in {@link DomainSettingsRule}.
4753
+ *
4754
+ * @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
4755
+ * here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
4756
+ * more information, see the documentation for the individual properties.
4739
4757
  */
4740
4758
  default?: PerDomainSettings;
4741
4759
  };
@@ -10251,7 +10269,7 @@ declare type PerDomainSettings = {
10251
10269
  * Whether DOM content can be loaded (by navigation or redirect).
10252
10270
  *
10253
10271
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10254
- * {@link ContentRedirect} will be **ignored**.
10272
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10255
10273
  */
10256
10274
  content?: ContentPermission;
10257
10275
  };
@@ -3456,6 +3456,13 @@ declare type ConstViewOptions = {
3456
3456
  * Initial bounds given relative to the window.
3457
3457
  */
3458
3458
  bounds: Bounds;
3459
+ /**
3460
+ * API permissions for code running in the view.
3461
+ *
3462
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3463
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3464
+ * to the source of the page content than to the context rendering it.
3465
+ */
3459
3466
  permissions: Partial<Permissions_2>;
3460
3467
  /**
3461
3468
  * String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
@@ -3656,6 +3663,13 @@ declare type ConstWindowOptions = {
3656
3663
  * The name of the window.
3657
3664
  */
3658
3665
  name: string;
3666
+ /**
3667
+ * API permissions for code running in the window.
3668
+ *
3669
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3670
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3671
+ * to the source of the page content than to the context rendering it.
3672
+ */
3659
3673
  permissions: Partial<Permissions_2>;
3660
3674
  /**
3661
3675
  * Scripts that run before page load. When omitted, inherits from the parent application.
@@ -4736,6 +4750,10 @@ declare type DomainSettings = {
4736
4750
  rules: DomainSettingsRule[];
4737
4751
  /**
4738
4752
  * Default values for settings in {@link DomainSettingsRule}.
4753
+ *
4754
+ * @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
4755
+ * here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
4756
+ * more information, see the documentation for the individual properties.
4739
4757
  */
4740
4758
  default?: PerDomainSettings;
4741
4759
  };
@@ -10251,7 +10269,7 @@ declare type PerDomainSettings = {
10251
10269
  * Whether DOM content can be loaded (by navigation or redirect).
10252
10270
  *
10253
10271
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10254
- * {@link ContentRedirect} will be **ignored**.
10272
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10255
10273
  */
10256
10274
  content?: ContentPermission;
10257
10275
  };
@@ -3515,6 +3515,13 @@ declare type ConstViewOptions = {
3515
3515
  * Initial bounds given relative to the window.
3516
3516
  */
3517
3517
  bounds: Bounds;
3518
+ /**
3519
+ * API permissions for code running in the view.
3520
+ *
3521
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3522
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3523
+ * to the source of the page content than to the context rendering it.
3524
+ */
3518
3525
  permissions: Partial<Permissions_2>;
3519
3526
  /**
3520
3527
  * String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
@@ -3715,6 +3722,13 @@ declare type ConstWindowOptions = {
3715
3722
  * The name of the window.
3716
3723
  */
3717
3724
  name: string;
3725
+ /**
3726
+ * API permissions for code running in the window.
3727
+ *
3728
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3729
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3730
+ * to the source of the page content than to the context rendering it.
3731
+ */
3718
3732
  permissions: Partial<Permissions_2>;
3719
3733
  /**
3720
3734
  * Scripts that run before page load. When omitted, inherits from the parent application.
@@ -4795,6 +4809,10 @@ declare type DomainSettings = {
4795
4809
  rules: DomainSettingsRule[];
4796
4810
  /**
4797
4811
  * Default values for settings in {@link DomainSettingsRule}.
4812
+ *
4813
+ * @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
4814
+ * here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
4815
+ * more information, see the documentation for the individual properties.
4798
4816
  */
4799
4817
  default?: PerDomainSettings;
4800
4818
  };
@@ -10566,7 +10584,7 @@ declare type PerDomainSettings = {
10566
10584
  * Whether DOM content can be loaded (by navigation or redirect).
10567
10585
  *
10568
10586
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10569
- * {@link ContentRedirect} will be **ignored**.
10587
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10570
10588
  */
10571
10589
  content?: ContentPermission;
10572
10590
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "38.81.30",
3
+ "version": "38.81.31",
4
4
  "description": "Establish intermachine runtime connections using webRTC.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,