@openfin/remote-adapter 38.81.30 → 38.81.32

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.
@@ -1161,9 +1161,14 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1161
1161
  */
1162
1162
  mainWindowOptions: WindowCreationOptions;
1163
1163
  /**
1164
- * The name of the application (and the application's main window).
1164
+ * The name of the application.
1165
1165
  *
1166
- * If provided, _must_ match `uuid`.
1166
+ * @remarks
1167
+ * This property is only used for naming the application logging folder, which will be sanitized to remove
1168
+ * any special characters, spaces or international characters. Otherwise it's not used and it will be overwritten
1169
+ * during startup with the UUID of the application.
1170
+ *
1171
+ * This property will be deprecated in the future.
1167
1172
  */
1168
1173
  name: string;
1169
1174
  /**
@@ -1193,9 +1198,7 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1193
1198
  url: string;
1194
1199
  /**
1195
1200
  * The _Unique Universal Identifier_ (UUID) of the application, unique within the set of all other applications
1196
- * running in the OpenFin Runtime.
1197
- *
1198
- * Note that `name` and `uuid` must match.
1201
+ * running in the OpenFin Runtime.
1199
1202
  */
1200
1203
  uuid: string;
1201
1204
  /**
@@ -3456,6 +3459,13 @@ declare type ConstViewOptions = {
3456
3459
  * Initial bounds given relative to the window.
3457
3460
  */
3458
3461
  bounds: Bounds;
3462
+ /**
3463
+ * API permissions for code running in the view.
3464
+ *
3465
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3466
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3467
+ * to the source of the page content than to the context rendering it.
3468
+ */
3459
3469
  permissions: Partial<Permissions_2>;
3460
3470
  /**
3461
3471
  * String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
@@ -3656,6 +3666,13 @@ declare type ConstWindowOptions = {
3656
3666
  * The name of the window.
3657
3667
  */
3658
3668
  name: string;
3669
+ /**
3670
+ * API permissions for code running in the window.
3671
+ *
3672
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3673
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3674
+ * to the source of the page content than to the context rendering it.
3675
+ */
3659
3676
  permissions: Partial<Permissions_2>;
3660
3677
  /**
3661
3678
  * Scripts that run before page load. When omitted, inherits from the parent application.
@@ -4736,6 +4753,10 @@ declare type DomainSettings = {
4736
4753
  rules: DomainSettingsRule[];
4737
4754
  /**
4738
4755
  * Default values for settings in {@link DomainSettingsRule}.
4756
+ *
4757
+ * @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
4758
+ * here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
4759
+ * more information, see the documentation for the individual properties.
4739
4760
  */
4740
4761
  default?: PerDomainSettings;
4741
4762
  };
@@ -10251,7 +10272,7 @@ declare type PerDomainSettings = {
10251
10272
  * Whether DOM content can be loaded (by navigation or redirect).
10252
10273
  *
10253
10274
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10254
- * {@link ContentRedirect} will be **ignored**.
10275
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10255
10276
  */
10256
10277
  content?: ContentPermission;
10257
10278
  };
@@ -1161,9 +1161,14 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1161
1161
  */
1162
1162
  mainWindowOptions: WindowCreationOptions;
1163
1163
  /**
1164
- * The name of the application (and the application's main window).
1164
+ * The name of the application.
1165
1165
  *
1166
- * If provided, _must_ match `uuid`.
1166
+ * @remarks
1167
+ * This property is only used for naming the application logging folder, which will be sanitized to remove
1168
+ * any special characters, spaces or international characters. Otherwise it's not used and it will be overwritten
1169
+ * during startup with the UUID of the application.
1170
+ *
1171
+ * This property will be deprecated in the future.
1167
1172
  */
1168
1173
  name: string;
1169
1174
  /**
@@ -1193,9 +1198,7 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1193
1198
  url: string;
1194
1199
  /**
1195
1200
  * The _Unique Universal Identifier_ (UUID) of the application, unique within the set of all other applications
1196
- * running in the OpenFin Runtime.
1197
- *
1198
- * Note that `name` and `uuid` must match.
1201
+ * running in the OpenFin Runtime.
1199
1202
  */
1200
1203
  uuid: string;
1201
1204
  /**
@@ -3456,6 +3459,13 @@ declare type ConstViewOptions = {
3456
3459
  * Initial bounds given relative to the window.
3457
3460
  */
3458
3461
  bounds: Bounds;
3462
+ /**
3463
+ * API permissions for code running in the view.
3464
+ *
3465
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3466
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3467
+ * to the source of the page content than to the context rendering it.
3468
+ */
3459
3469
  permissions: Partial<Permissions_2>;
3460
3470
  /**
3461
3471
  * String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
@@ -3656,6 +3666,13 @@ declare type ConstWindowOptions = {
3656
3666
  * The name of the window.
3657
3667
  */
3658
3668
  name: string;
3669
+ /**
3670
+ * API permissions for code running in the window.
3671
+ *
3672
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3673
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3674
+ * to the source of the page content than to the context rendering it.
3675
+ */
3659
3676
  permissions: Partial<Permissions_2>;
3660
3677
  /**
3661
3678
  * Scripts that run before page load. When omitted, inherits from the parent application.
@@ -4736,6 +4753,10 @@ declare type DomainSettings = {
4736
4753
  rules: DomainSettingsRule[];
4737
4754
  /**
4738
4755
  * Default values for settings in {@link DomainSettingsRule}.
4756
+ *
4757
+ * @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
4758
+ * here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
4759
+ * more information, see the documentation for the individual properties.
4739
4760
  */
4740
4761
  default?: PerDomainSettings;
4741
4762
  };
@@ -10251,7 +10272,7 @@ declare type PerDomainSettings = {
10251
10272
  * Whether DOM content can be loaded (by navigation or redirect).
10252
10273
  *
10253
10274
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10254
- * {@link ContentRedirect} will be **ignored**.
10275
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10255
10276
  */
10256
10277
  content?: ContentPermission;
10257
10278
  };
@@ -1161,9 +1161,14 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1161
1161
  */
1162
1162
  mainWindowOptions: WindowCreationOptions;
1163
1163
  /**
1164
- * The name of the application (and the application's main window).
1164
+ * The name of the application.
1165
1165
  *
1166
- * If provided, _must_ match `uuid`.
1166
+ * @remarks
1167
+ * This property is only used for naming the application logging folder, which will be sanitized to remove
1168
+ * any special characters, spaces or international characters. Otherwise it's not used and it will be overwritten
1169
+ * during startup with the UUID of the application.
1170
+ *
1171
+ * This property will be deprecated in the future.
1167
1172
  */
1168
1173
  name: string;
1169
1174
  /**
@@ -1193,9 +1198,7 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1193
1198
  url: string;
1194
1199
  /**
1195
1200
  * The _Unique Universal Identifier_ (UUID) of the application, unique within the set of all other applications
1196
- * running in the OpenFin Runtime.
1197
- *
1198
- * Note that `name` and `uuid` must match.
1201
+ * running in the OpenFin Runtime.
1199
1202
  */
1200
1203
  uuid: string;
1201
1204
  /**
@@ -3456,6 +3459,13 @@ declare type ConstViewOptions = {
3456
3459
  * Initial bounds given relative to the window.
3457
3460
  */
3458
3461
  bounds: Bounds;
3462
+ /**
3463
+ * API permissions for code running in the view.
3464
+ *
3465
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3466
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3467
+ * to the source of the page content than to the context rendering it.
3468
+ */
3459
3469
  permissions: Partial<Permissions_2>;
3460
3470
  /**
3461
3471
  * String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
@@ -3656,6 +3666,13 @@ declare type ConstWindowOptions = {
3656
3666
  * The name of the window.
3657
3667
  */
3658
3668
  name: string;
3669
+ /**
3670
+ * API permissions for code running in the window.
3671
+ *
3672
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3673
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3674
+ * to the source of the page content than to the context rendering it.
3675
+ */
3659
3676
  permissions: Partial<Permissions_2>;
3660
3677
  /**
3661
3678
  * Scripts that run before page load. When omitted, inherits from the parent application.
@@ -4736,6 +4753,10 @@ declare type DomainSettings = {
4736
4753
  rules: DomainSettingsRule[];
4737
4754
  /**
4738
4755
  * Default values for settings in {@link DomainSettingsRule}.
4756
+ *
4757
+ * @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
4758
+ * here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
4759
+ * more information, see the documentation for the individual properties.
4739
4760
  */
4740
4761
  default?: PerDomainSettings;
4741
4762
  };
@@ -10251,7 +10272,7 @@ declare type PerDomainSettings = {
10251
10272
  * Whether DOM content can be loaded (by navigation or redirect).
10252
10273
  *
10253
10274
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10254
- * {@link ContentRedirect} will be **ignored**.
10275
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10255
10276
  */
10256
10277
  content?: ContentPermission;
10257
10278
  };
@@ -1167,9 +1167,14 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1167
1167
  */
1168
1168
  mainWindowOptions: WindowCreationOptions;
1169
1169
  /**
1170
- * The name of the application (and the application's main window).
1170
+ * The name of the application.
1171
1171
  *
1172
- * If provided, _must_ match `uuid`.
1172
+ * @remarks
1173
+ * This property is only used for naming the application logging folder, which will be sanitized to remove
1174
+ * any special characters, spaces or international characters. Otherwise it's not used and it will be overwritten
1175
+ * during startup with the UUID of the application.
1176
+ *
1177
+ * This property will be deprecated in the future.
1173
1178
  */
1174
1179
  name: string;
1175
1180
  /**
@@ -1199,9 +1204,7 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
1199
1204
  url: string;
1200
1205
  /**
1201
1206
  * The _Unique Universal Identifier_ (UUID) of the application, unique within the set of all other applications
1202
- * running in the OpenFin Runtime.
1203
- *
1204
- * Note that `name` and `uuid` must match.
1207
+ * running in the OpenFin Runtime.
1205
1208
  */
1206
1209
  uuid: string;
1207
1210
  /**
@@ -3515,6 +3518,13 @@ declare type ConstViewOptions = {
3515
3518
  * Initial bounds given relative to the window.
3516
3519
  */
3517
3520
  bounds: Bounds;
3521
+ /**
3522
+ * API permissions for code running in the view.
3523
+ *
3524
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3525
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3526
+ * to the source of the page content than to the context rendering it.
3527
+ */
3518
3528
  permissions: Partial<Permissions_2>;
3519
3529
  /**
3520
3530
  * String tag that attempts to group like-tagged renderers together. Will only be used if pages are on the same origin.
@@ -3715,6 +3725,13 @@ declare type ConstWindowOptions = {
3715
3725
  * The name of the window.
3716
3726
  */
3717
3727
  name: string;
3728
+ /**
3729
+ * API permissions for code running in the window.
3730
+ *
3731
+ * @remarks Superseded by {@link DomainSettings.default.api.permissions} - if present, this setting will be **ignored**.
3732
+ * It is recommended for users to migrate to a domain-based security model, since it is more natural to assign trust
3733
+ * to the source of the page content than to the context rendering it.
3734
+ */
3718
3735
  permissions: Partial<Permissions_2>;
3719
3736
  /**
3720
3737
  * Scripts that run before page load. When omitted, inherits from the parent application.
@@ -4795,6 +4812,10 @@ declare type DomainSettings = {
4795
4812
  rules: DomainSettingsRule[];
4796
4813
  /**
4797
4814
  * Default values for settings in {@link DomainSettingsRule}.
4815
+ *
4816
+ * @remarks If {@link PerDomainSettings.content} or {@link PerDomainSettings.api.fin} are given a default value
4817
+ * here, they will supersede any equivalent functionality in {@link WindowOptions} or {@link ViewOptions}. For
4818
+ * more information, see the documentation for the individual properties.
4798
4819
  */
4799
4820
  default?: PerDomainSettings;
4800
4821
  };
@@ -10566,7 +10587,7 @@ declare type PerDomainSettings = {
10566
10587
  * Whether DOM content can be loaded (by navigation or redirect).
10567
10588
  *
10568
10589
  * @remarks If this is included in {@link DomainSettings.default}, then {@link ContentNavigation} and
10569
- * {@link ContentRedirect} will be **ignored**.
10590
+ * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10570
10591
  */
10571
10592
  content?: ContentPermission;
10572
10593
  };
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.32",
4
4
  "description": "Establish intermachine runtime connections using webRTC.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,