@openfin/core 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.
@@ -2938,6 +2938,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
2938
2938
  childOptions: OpenFin_2.WindowOptions;
2939
2939
  };
2940
2940
 
2941
+ /**
2942
+ * Control behavior for Chromium policies
2943
+ *
2944
+ * @interface
2945
+ */
2946
+ declare type ChromiumPolicies = {
2947
+ /**
2948
+ * Disable AutofillAddressEnabled policy for a Window or View.
2949
+ */
2950
+ AutofillAddressEnabled?: PolicyOptions;
2951
+ };
2952
+
2941
2953
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
2942
2954
  type: 'classic';
2943
2955
  }
@@ -8668,6 +8680,10 @@ declare type MutableViewOptions = {
8668
8680
  * @defaultValue 'enabled'
8669
8681
  */
8670
8682
  throttling: ViewThrottling;
8683
+ /**
8684
+ * {@inheritDoc ChromiumPolicies}
8685
+ */
8686
+ chromiumPolicies: ChromiumPolicies;
8671
8687
  };
8672
8688
 
8673
8689
  /**
@@ -8925,6 +8941,10 @@ declare type MutableWindowOptions = {
8925
8941
  * @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
8926
8942
  */
8927
8943
  throttling: WindowThrottling;
8944
+ /**
8945
+ * {@inheritDoc ChromiumPolicies}
8946
+ */
8947
+ chromiumPolicies: ChromiumPolicies;
8928
8948
  };
8929
8949
 
8930
8950
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -9137,6 +9157,8 @@ declare namespace OpenFin_2 {
9137
9157
  AutoplayPolicyOptions,
9138
9158
  ConstWindowOptions,
9139
9159
  InheritableOptions,
9160
+ PolicyOptions,
9161
+ ChromiumPolicies,
9140
9162
  MutableWindowOptions,
9141
9163
  WorkspacePlatformOptions,
9142
9164
  WebRequestHeader,
@@ -9621,6 +9643,10 @@ declare type PerDomainSettings = {
9621
9643
  * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
9622
9644
  */
9623
9645
  content?: ContentPermission;
9646
+ /**
9647
+ * {@inheritdoc ChromiumPolicies}
9648
+ */
9649
+ chromiumPolicies?: ChromiumPolicies;
9624
9650
  };
9625
9651
 
9626
9652
  /**
@@ -11079,6 +11105,12 @@ declare type PointTopLeft = {
11079
11105
  left: number;
11080
11106
  };
11081
11107
 
11108
+ /**
11109
+ * When set to `disable`, disables the policy
11110
+ * When set to `defer-to-group-policy`, respects Group Policy settings
11111
+ */
11112
+ declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
11113
+
11082
11114
  declare type PopupBaseBehavior = 'close' | 'hide';
11083
11115
 
11084
11116
  declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
@@ -2938,6 +2938,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
2938
2938
  childOptions: OpenFin_2.WindowOptions;
2939
2939
  };
2940
2940
 
2941
+ /**
2942
+ * Control behavior for Chromium policies
2943
+ *
2944
+ * @interface
2945
+ */
2946
+ declare type ChromiumPolicies = {
2947
+ /**
2948
+ * Disable AutofillAddressEnabled policy for a Window or View.
2949
+ */
2950
+ AutofillAddressEnabled?: PolicyOptions;
2951
+ };
2952
+
2941
2953
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
2942
2954
  type: 'classic';
2943
2955
  }
@@ -8668,6 +8680,10 @@ declare type MutableViewOptions = {
8668
8680
  * @defaultValue 'enabled'
8669
8681
  */
8670
8682
  throttling: ViewThrottling;
8683
+ /**
8684
+ * {@inheritDoc ChromiumPolicies}
8685
+ */
8686
+ chromiumPolicies: ChromiumPolicies;
8671
8687
  };
8672
8688
 
8673
8689
  /**
@@ -8925,6 +8941,10 @@ declare type MutableWindowOptions = {
8925
8941
  * @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
8926
8942
  */
8927
8943
  throttling: WindowThrottling;
8944
+ /**
8945
+ * {@inheritDoc ChromiumPolicies}
8946
+ */
8947
+ chromiumPolicies: ChromiumPolicies;
8928
8948
  };
8929
8949
 
8930
8950
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -9137,6 +9157,8 @@ declare namespace OpenFin_2 {
9137
9157
  AutoplayPolicyOptions,
9138
9158
  ConstWindowOptions,
9139
9159
  InheritableOptions,
9160
+ PolicyOptions,
9161
+ ChromiumPolicies,
9140
9162
  MutableWindowOptions,
9141
9163
  WorkspacePlatformOptions,
9142
9164
  WebRequestHeader,
@@ -9621,6 +9643,10 @@ declare type PerDomainSettings = {
9621
9643
  * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
9622
9644
  */
9623
9645
  content?: ContentPermission;
9646
+ /**
9647
+ * {@inheritdoc ChromiumPolicies}
9648
+ */
9649
+ chromiumPolicies?: ChromiumPolicies;
9624
9650
  };
9625
9651
 
9626
9652
  /**
@@ -11079,6 +11105,12 @@ declare type PointTopLeft = {
11079
11105
  left: number;
11080
11106
  };
11081
11107
 
11108
+ /**
11109
+ * When set to `disable`, disables the policy
11110
+ * When set to `defer-to-group-policy`, respects Group Policy settings
11111
+ */
11112
+ declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
11113
+
11082
11114
  declare type PopupBaseBehavior = 'close' | 'hide';
11083
11115
 
11084
11116
  declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
@@ -2938,6 +2938,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
2938
2938
  childOptions: OpenFin_2.WindowOptions;
2939
2939
  };
2940
2940
 
2941
+ /**
2942
+ * Control behavior for Chromium policies
2943
+ *
2944
+ * @interface
2945
+ */
2946
+ declare type ChromiumPolicies = {
2947
+ /**
2948
+ * Disable AutofillAddressEnabled policy for a Window or View.
2949
+ */
2950
+ AutofillAddressEnabled?: PolicyOptions;
2951
+ };
2952
+
2941
2953
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
2942
2954
  type: 'classic';
2943
2955
  }
@@ -8668,6 +8680,10 @@ declare type MutableViewOptions = {
8668
8680
  * @defaultValue 'enabled'
8669
8681
  */
8670
8682
  throttling: ViewThrottling;
8683
+ /**
8684
+ * {@inheritDoc ChromiumPolicies}
8685
+ */
8686
+ chromiumPolicies: ChromiumPolicies;
8671
8687
  };
8672
8688
 
8673
8689
  /**
@@ -8925,6 +8941,10 @@ declare type MutableWindowOptions = {
8925
8941
  * @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
8926
8942
  */
8927
8943
  throttling: WindowThrottling;
8944
+ /**
8945
+ * {@inheritDoc ChromiumPolicies}
8946
+ */
8947
+ chromiumPolicies: ChromiumPolicies;
8928
8948
  };
8929
8949
 
8930
8950
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -9137,6 +9157,8 @@ declare namespace OpenFin_2 {
9137
9157
  AutoplayPolicyOptions,
9138
9158
  ConstWindowOptions,
9139
9159
  InheritableOptions,
9160
+ PolicyOptions,
9161
+ ChromiumPolicies,
9140
9162
  MutableWindowOptions,
9141
9163
  WorkspacePlatformOptions,
9142
9164
  WebRequestHeader,
@@ -9621,6 +9643,10 @@ declare type PerDomainSettings = {
9621
9643
  * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
9622
9644
  */
9623
9645
  content?: ContentPermission;
9646
+ /**
9647
+ * {@inheritdoc ChromiumPolicies}
9648
+ */
9649
+ chromiumPolicies?: ChromiumPolicies;
9624
9650
  };
9625
9651
 
9626
9652
  /**
@@ -11079,6 +11105,12 @@ declare type PointTopLeft = {
11079
11105
  left: number;
11080
11106
  };
11081
11107
 
11108
+ /**
11109
+ * When set to `disable`, disables the policy
11110
+ * When set to `defer-to-group-policy`, respects Group Policy settings
11111
+ */
11112
+ declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
11113
+
11082
11114
  declare type PopupBaseBehavior = 'close' | 'hide';
11083
11115
 
11084
11116
  declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
package/out/mock.d.ts CHANGED
@@ -2994,6 +2994,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
2994
2994
  childOptions: OpenFin_2.WindowOptions;
2995
2995
  };
2996
2996
 
2997
+ /**
2998
+ * Control behavior for Chromium policies
2999
+ *
3000
+ * @interface
3001
+ */
3002
+ declare type ChromiumPolicies = {
3003
+ /**
3004
+ * Disable AutofillAddressEnabled policy for a Window or View.
3005
+ */
3006
+ AutofillAddressEnabled?: PolicyOptions;
3007
+ };
3008
+
2997
3009
  declare interface ClassicProtocolOffer extends ProtocolPacketBase {
2998
3010
  type: 'classic';
2999
3011
  }
@@ -8968,6 +8980,10 @@ declare type MutableViewOptions = {
8968
8980
  * @defaultValue 'enabled'
8969
8981
  */
8970
8982
  throttling: ViewThrottling;
8983
+ /**
8984
+ * {@inheritDoc ChromiumPolicies}
8985
+ */
8986
+ chromiumPolicies: ChromiumPolicies;
8971
8987
  };
8972
8988
 
8973
8989
  /**
@@ -9233,6 +9249,10 @@ declare type MutableWindowOptions = {
9233
9249
  * @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
9234
9250
  */
9235
9251
  throttling: WindowThrottling;
9252
+ /**
9253
+ * {@inheritDoc ChromiumPolicies}
9254
+ */
9255
+ chromiumPolicies: ChromiumPolicies;
9236
9256
  };
9237
9257
 
9238
9258
  declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
@@ -9455,6 +9475,8 @@ declare namespace OpenFin_2 {
9455
9475
  AutoplayPolicyOptions,
9456
9476
  ConstWindowOptions,
9457
9477
  InheritableOptions,
9478
+ PolicyOptions,
9479
+ ChromiumPolicies,
9458
9480
  MutableWindowOptions,
9459
9481
  WorkspacePlatformOptions,
9460
9482
  WebRequestHeader,
@@ -9939,6 +9961,10 @@ declare type PerDomainSettings = {
9939
9961
  * {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
9940
9962
  */
9941
9963
  content?: ContentPermission;
9964
+ /**
9965
+ * {@inheritdoc ChromiumPolicies}
9966
+ */
9967
+ chromiumPolicies?: ChromiumPolicies;
9942
9968
  };
9943
9969
 
9944
9970
  /**
@@ -11480,6 +11506,12 @@ declare type PointTopLeft = {
11480
11506
  left: number;
11481
11507
  };
11482
11508
 
11509
+ /**
11510
+ * When set to `disable`, disables the policy
11511
+ * When set to `defer-to-group-policy`, respects Group Policy settings
11512
+ */
11513
+ declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
11514
+
11483
11515
  declare type PopupBaseBehavior = 'close' | 'hide';
11484
11516
 
11485
11517
  declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "40.82.22",
3
+ "version": "40.82.23",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/mock.js",