@openfin/fdc3-api 40.82.22 → 40.82.23

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.
@@ -2935,6 +2935,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
2935
2935
  childOptions: OpenFin.WindowOptions;
2936
2936
  };
2937
2937
 
2938
+ /**
2939
+ * Control behavior for Chromium policies
2940
+ *
2941
+ * @interface
2942
+ */
2943
+ declare type ChromiumPolicies = {
2944
+ /**
2945
+ * Disable AutofillAddressEnabled policy for a Window or View.
2946
+ */
2947
+ AutofillAddressEnabled?: PolicyOptions;
2948
+ };
2949
+
2938
2950
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
2939
2951
  type: 'classic';
2940
2952
  }
@@ -9010,6 +9022,10 @@ declare type MutableViewOptions = {
9010
9022
  * @defaultValue 'enabled'
9011
9023
  */
9012
9024
  throttling: ViewThrottling;
9025
+ /**
9026
+ * {@inheritDoc ChromiumPolicies}
9027
+ */
9028
+ chromiumPolicies: ChromiumPolicies;
9013
9029
  };
9014
9030
 
9015
9031
  /**
@@ -9267,6 +9283,10 @@ declare type MutableWindowOptions = {
9267
9283
  * @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
9268
9284
  */
9269
9285
  throttling: WindowThrottling;
9286
+ /**
9287
+ * {@inheritDoc ChromiumPolicies}
9288
+ */
9289
+ chromiumPolicies: ChromiumPolicies;
9270
9290
  };
9271
9291
 
9272
9292
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -9479,6 +9499,8 @@ declare namespace OpenFin {
9479
9499
  AutoplayPolicyOptions,
9480
9500
  ConstWindowOptions,
9481
9501
  InheritableOptions,
9502
+ PolicyOptions,
9503
+ ChromiumPolicies,
9482
9504
  MutableWindowOptions,
9483
9505
  WorkspacePlatformOptions,
9484
9506
  WebRequestHeader,
@@ -9961,6 +9983,10 @@ declare type PerDomainSettings = {
9961
9983
  * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
9962
9984
  */
9963
9985
  content?: ContentPermission;
9986
+ /**
9987
+ * {@inheritdoc ChromiumPolicies}
9988
+ */
9989
+ chromiumPolicies?: ChromiumPolicies;
9964
9990
  };
9965
9991
 
9966
9992
  /**
@@ -11419,6 +11445,12 @@ declare type PointTopLeft = {
11419
11445
  left: number;
11420
11446
  };
11421
11447
 
11448
+ /**
11449
+ * When set to `disable`, disables the policy
11450
+ * When set to `defer-to-group-policy`, respects Group Policy settings
11451
+ */
11452
+ declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
11453
+
11422
11454
  declare type PopupBaseBehavior = 'close' | 'hide';
11423
11455
 
11424
11456
  declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
@@ -2935,6 +2935,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
2935
2935
  childOptions: OpenFin.WindowOptions;
2936
2936
  };
2937
2937
 
2938
+ /**
2939
+ * Control behavior for Chromium policies
2940
+ *
2941
+ * @interface
2942
+ */
2943
+ declare type ChromiumPolicies = {
2944
+ /**
2945
+ * Disable AutofillAddressEnabled policy for a Window or View.
2946
+ */
2947
+ AutofillAddressEnabled?: PolicyOptions;
2948
+ };
2949
+
2938
2950
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
2939
2951
  type: 'classic';
2940
2952
  }
@@ -9010,6 +9022,10 @@ declare type MutableViewOptions = {
9010
9022
  * @defaultValue 'enabled'
9011
9023
  */
9012
9024
  throttling: ViewThrottling;
9025
+ /**
9026
+ * {@inheritDoc ChromiumPolicies}
9027
+ */
9028
+ chromiumPolicies: ChromiumPolicies;
9013
9029
  };
9014
9030
 
9015
9031
  /**
@@ -9267,6 +9283,10 @@ declare type MutableWindowOptions = {
9267
9283
  * @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
9268
9284
  */
9269
9285
  throttling: WindowThrottling;
9286
+ /**
9287
+ * {@inheritDoc ChromiumPolicies}
9288
+ */
9289
+ chromiumPolicies: ChromiumPolicies;
9270
9290
  };
9271
9291
 
9272
9292
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -9479,6 +9499,8 @@ declare namespace OpenFin {
9479
9499
  AutoplayPolicyOptions,
9480
9500
  ConstWindowOptions,
9481
9501
  InheritableOptions,
9502
+ PolicyOptions,
9503
+ ChromiumPolicies,
9482
9504
  MutableWindowOptions,
9483
9505
  WorkspacePlatformOptions,
9484
9506
  WebRequestHeader,
@@ -9961,6 +9983,10 @@ declare type PerDomainSettings = {
9961
9983
  * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
9962
9984
  */
9963
9985
  content?: ContentPermission;
9986
+ /**
9987
+ * {@inheritdoc ChromiumPolicies}
9988
+ */
9989
+ chromiumPolicies?: ChromiumPolicies;
9964
9990
  };
9965
9991
 
9966
9992
  /**
@@ -11419,6 +11445,12 @@ declare type PointTopLeft = {
11419
11445
  left: number;
11420
11446
  };
11421
11447
 
11448
+ /**
11449
+ * When set to `disable`, disables the policy
11450
+ * When set to `defer-to-group-policy`, respects Group Policy settings
11451
+ */
11452
+ declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
11453
+
11422
11454
  declare type PopupBaseBehavior = 'close' | 'hide';
11423
11455
 
11424
11456
  declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
@@ -2935,6 +2935,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
2935
2935
  childOptions: OpenFin.WindowOptions;
2936
2936
  };
2937
2937
 
2938
+ /**
2939
+ * Control behavior for Chromium policies
2940
+ *
2941
+ * @interface
2942
+ */
2943
+ declare type ChromiumPolicies = {
2944
+ /**
2945
+ * Disable AutofillAddressEnabled policy for a Window or View.
2946
+ */
2947
+ AutofillAddressEnabled?: PolicyOptions;
2948
+ };
2949
+
2938
2950
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
2939
2951
  type: 'classic';
2940
2952
  }
@@ -9010,6 +9022,10 @@ declare type MutableViewOptions = {
9010
9022
  * @defaultValue 'enabled'
9011
9023
  */
9012
9024
  throttling: ViewThrottling;
9025
+ /**
9026
+ * {@inheritDoc ChromiumPolicies}
9027
+ */
9028
+ chromiumPolicies: ChromiumPolicies;
9013
9029
  };
9014
9030
 
9015
9031
  /**
@@ -9267,6 +9283,10 @@ declare type MutableWindowOptions = {
9267
9283
  * @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
9268
9284
  */
9269
9285
  throttling: WindowThrottling;
9286
+ /**
9287
+ * {@inheritDoc ChromiumPolicies}
9288
+ */
9289
+ chromiumPolicies: ChromiumPolicies;
9270
9290
  };
9271
9291
 
9272
9292
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -9479,6 +9499,8 @@ declare namespace OpenFin {
9479
9499
  AutoplayPolicyOptions,
9480
9500
  ConstWindowOptions,
9481
9501
  InheritableOptions,
9502
+ PolicyOptions,
9503
+ ChromiumPolicies,
9482
9504
  MutableWindowOptions,
9483
9505
  WorkspacePlatformOptions,
9484
9506
  WebRequestHeader,
@@ -9961,6 +9983,10 @@ declare type PerDomainSettings = {
9961
9983
  * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
9962
9984
  */
9963
9985
  content?: ContentPermission;
9986
+ /**
9987
+ * {@inheritdoc ChromiumPolicies}
9988
+ */
9989
+ chromiumPolicies?: ChromiumPolicies;
9964
9990
  };
9965
9991
 
9966
9992
  /**
@@ -11419,6 +11445,12 @@ declare type PointTopLeft = {
11419
11445
  left: number;
11420
11446
  };
11421
11447
 
11448
+ /**
11449
+ * When set to `disable`, disables the policy
11450
+ * When set to `defer-to-group-policy`, respects Group Policy settings
11451
+ */
11452
+ declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
11453
+
11422
11454
  declare type PopupBaseBehavior = 'close' | 'hide';
11423
11455
 
11424
11456
  declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
package/out/fdc3-api.d.ts CHANGED
@@ -2991,6 +2991,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
2991
2991
  childOptions: OpenFin.WindowOptions;
2992
2992
  };
2993
2993
 
2994
+ /**
2995
+ * Control behavior for Chromium policies
2996
+ *
2997
+ * @interface
2998
+ */
2999
+ declare type ChromiumPolicies = {
3000
+ /**
3001
+ * Disable AutofillAddressEnabled policy for a Window or View.
3002
+ */
3003
+ AutofillAddressEnabled?: PolicyOptions;
3004
+ };
3005
+
2994
3006
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
2995
3007
  type: 'classic';
2996
3008
  }
@@ -9310,6 +9322,10 @@ declare type MutableViewOptions = {
9310
9322
  * @defaultValue 'enabled'
9311
9323
  */
9312
9324
  throttling: ViewThrottling;
9325
+ /**
9326
+ * {@inheritDoc ChromiumPolicies}
9327
+ */
9328
+ chromiumPolicies: ChromiumPolicies;
9313
9329
  };
9314
9330
 
9315
9331
  /**
@@ -9575,6 +9591,10 @@ declare type MutableWindowOptions = {
9575
9591
  * @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
9576
9592
  */
9577
9593
  throttling: WindowThrottling;
9594
+ /**
9595
+ * {@inheritDoc ChromiumPolicies}
9596
+ */
9597
+ chromiumPolicies: ChromiumPolicies;
9578
9598
  };
9579
9599
 
9580
9600
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -9797,6 +9817,8 @@ declare namespace OpenFin {
9797
9817
  AutoplayPolicyOptions,
9798
9818
  ConstWindowOptions,
9799
9819
  InheritableOptions,
9820
+ PolicyOptions,
9821
+ ChromiumPolicies,
9800
9822
  MutableWindowOptions,
9801
9823
  WorkspacePlatformOptions,
9802
9824
  WebRequestHeader,
@@ -10279,6 +10301,10 @@ declare type PerDomainSettings = {
10279
10301
  * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
10280
10302
  */
10281
10303
  content?: ContentPermission;
10304
+ /**
10305
+ * {@inheritdoc ChromiumPolicies}
10306
+ */
10307
+ chromiumPolicies?: ChromiumPolicies;
10282
10308
  };
10283
10309
 
10284
10310
  /**
@@ -11820,6 +11846,12 @@ declare type PointTopLeft = {
11820
11846
  left: number;
11821
11847
  };
11822
11848
 
11849
+ /**
11850
+ * When set to `disable`, disables the policy
11851
+ * When set to `defer-to-group-policy`, respects Group Policy settings
11852
+ */
11853
+ declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
11854
+
11823
11855
  declare type PopupBaseBehavior = 'close' | 'hide';
11824
11856
 
11825
11857
  declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "40.82.22",
3
+ "version": "40.82.23",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,