@openfin/fdc3-api 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.
@@ -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
  };
@@ -10552,7 +10570,7 @@ declare type PerDomainSettings = {
10552
10570
  * Whether DOM content can be loaded (by navigation or redirect).
10553
10571
  *
10554
10572
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10555
- * {@link ContentRedirect} will be **ignored**.
10573
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10556
10574
  */
10557
10575
  content?: ContentPermission;
10558
10576
  };
@@ -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
  };
@@ -10552,7 +10570,7 @@ declare type PerDomainSettings = {
10552
10570
  * Whether DOM content can be loaded (by navigation or redirect).
10553
10571
  *
10554
10572
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10555
- * {@link ContentRedirect} will be **ignored**.
10573
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10556
10574
  */
10557
10575
  content?: ContentPermission;
10558
10576
  };
@@ -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
  };
@@ -10552,7 +10570,7 @@ declare type PerDomainSettings = {
10552
10570
  * Whether DOM content can be loaded (by navigation or redirect).
10553
10571
  *
10554
10572
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10555
- * {@link ContentRedirect} will be **ignored**.
10573
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10556
10574
  */
10557
10575
  content?: ContentPermission;
10558
10576
  };
package/out/fdc3-api.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
  };
@@ -10867,7 +10885,7 @@ declare type PerDomainSettings = {
10867
10885
  * Whether DOM content can be loaded (by navigation or redirect).
10868
10886
  *
10869
10887
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10870
- * {@link ContentRedirect} will be **ignored**.
10888
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10871
10889
  */
10872
10890
  content?: ContentPermission;
10873
10891
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "38.81.30",
3
+ "version": "38.81.31",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.MD",
6
6
  "private": false,