@openfin/core 38.82.65 → 38.82.67
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.
- package/out/mock-alpha.d.ts +38 -5
- package/out/mock-beta.d.ts +38 -5
- package/out/mock-public.d.ts +38 -5
- package/out/mock.d.ts +38 -5
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
@@ -2943,6 +2943,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
|
|
2943
2943
|
childOptions: OpenFin_2.WindowOptions;
|
2944
2944
|
};
|
2945
2945
|
|
2946
|
+
/**
|
2947
|
+
* Control behavior for Chromium policies
|
2948
|
+
*
|
2949
|
+
* @interface
|
2950
|
+
*/
|
2951
|
+
declare type ChromiumPolicies = {
|
2952
|
+
/**
|
2953
|
+
* Disable AutofillAddressEnabled policy for a Window or View.
|
2954
|
+
*/
|
2955
|
+
AutofillAddressEnabled?: PolicyOptions;
|
2956
|
+
};
|
2957
|
+
|
2946
2958
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
2947
2959
|
type: 'classic';
|
2948
2960
|
}
|
@@ -3662,11 +3674,6 @@ declare type ConstWindowOptions = {
|
|
3662
3674
|
* @deprecated - use `icon` instead.
|
3663
3675
|
*/
|
3664
3676
|
taskbarIcon: string;
|
3665
|
-
/**
|
3666
|
-
* Specify a taskbar group for the window.
|
3667
|
-
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
3668
|
-
*/
|
3669
|
-
taskbarIconGroup: string;
|
3670
3677
|
/**
|
3671
3678
|
* @defaultValue "about:blank"
|
3672
3679
|
*
|
@@ -8607,6 +8614,10 @@ declare type MutableViewOptions = {
|
|
8607
8614
|
* @defaultValue 'enabled'
|
8608
8615
|
*/
|
8609
8616
|
throttling: ViewThrottling;
|
8617
|
+
/**
|
8618
|
+
* {@inheritDoc ChromiumPolicies}
|
8619
|
+
*/
|
8620
|
+
chromiumPolicies: ChromiumPolicies;
|
8610
8621
|
};
|
8611
8622
|
|
8612
8623
|
/**
|
@@ -8847,6 +8858,12 @@ declare type MutableWindowOptions = {
|
|
8847
8858
|
* Shows the window's icon in the taskbar.
|
8848
8859
|
*/
|
8849
8860
|
showTaskbarIcon: boolean;
|
8861
|
+
/**
|
8862
|
+
* Specify a taskbar group for the window.
|
8863
|
+
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
8864
|
+
* @remarks It's only updatable when `enableJumpList` is set to false.
|
8865
|
+
*/
|
8866
|
+
taskbarIconGroup: string;
|
8850
8867
|
interop: InteropConfig;
|
8851
8868
|
/* Excluded from this release type: _internalWorkspaceData */
|
8852
8869
|
/* Excluded from this release type: workspacePlatform */
|
@@ -8858,6 +8875,10 @@ declare type MutableWindowOptions = {
|
|
8858
8875
|
* @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
|
8859
8876
|
*/
|
8860
8877
|
throttling: WindowThrottling;
|
8878
|
+
/**
|
8879
|
+
* {@inheritDoc ChromiumPolicies}
|
8880
|
+
*/
|
8881
|
+
chromiumPolicies: ChromiumPolicies;
|
8861
8882
|
};
|
8862
8883
|
|
8863
8884
|
declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
|
@@ -9070,6 +9091,8 @@ declare namespace OpenFin_2 {
|
|
9070
9091
|
AutoplayPolicyOptions,
|
9071
9092
|
ConstWindowOptions,
|
9072
9093
|
InheritableOptions,
|
9094
|
+
PolicyOptions,
|
9095
|
+
ChromiumPolicies,
|
9073
9096
|
MutableWindowOptions,
|
9074
9097
|
WorkspacePlatformOptions,
|
9075
9098
|
WebRequestHeader,
|
@@ -9549,6 +9572,10 @@ declare type PerDomainSettings = {
|
|
9549
9572
|
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
9550
9573
|
*/
|
9551
9574
|
content?: ContentPermission;
|
9575
|
+
/**
|
9576
|
+
* {@inheritdoc ChromiumPolicies}
|
9577
|
+
*/
|
9578
|
+
chromiumPolicies?: ChromiumPolicies;
|
9552
9579
|
};
|
9553
9580
|
|
9554
9581
|
/**
|
@@ -10967,6 +10994,12 @@ declare type PointTopLeft = {
|
|
10967
10994
|
left: number;
|
10968
10995
|
};
|
10969
10996
|
|
10997
|
+
/**
|
10998
|
+
* When set to `disable`, disables the policy
|
10999
|
+
* When set to `defer-to-group-policy`, respects Group Policy settings
|
11000
|
+
*/
|
11001
|
+
declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
|
11002
|
+
|
10970
11003
|
declare type PopupBaseBehavior = 'close' | 'hide';
|
10971
11004
|
|
10972
11005
|
declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
|
package/out/mock-beta.d.ts
CHANGED
@@ -2943,6 +2943,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
|
|
2943
2943
|
childOptions: OpenFin_2.WindowOptions;
|
2944
2944
|
};
|
2945
2945
|
|
2946
|
+
/**
|
2947
|
+
* Control behavior for Chromium policies
|
2948
|
+
*
|
2949
|
+
* @interface
|
2950
|
+
*/
|
2951
|
+
declare type ChromiumPolicies = {
|
2952
|
+
/**
|
2953
|
+
* Disable AutofillAddressEnabled policy for a Window or View.
|
2954
|
+
*/
|
2955
|
+
AutofillAddressEnabled?: PolicyOptions;
|
2956
|
+
};
|
2957
|
+
|
2946
2958
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
2947
2959
|
type: 'classic';
|
2948
2960
|
}
|
@@ -3662,11 +3674,6 @@ declare type ConstWindowOptions = {
|
|
3662
3674
|
* @deprecated - use `icon` instead.
|
3663
3675
|
*/
|
3664
3676
|
taskbarIcon: string;
|
3665
|
-
/**
|
3666
|
-
* Specify a taskbar group for the window.
|
3667
|
-
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
3668
|
-
*/
|
3669
|
-
taskbarIconGroup: string;
|
3670
3677
|
/**
|
3671
3678
|
* @defaultValue "about:blank"
|
3672
3679
|
*
|
@@ -8607,6 +8614,10 @@ declare type MutableViewOptions = {
|
|
8607
8614
|
* @defaultValue 'enabled'
|
8608
8615
|
*/
|
8609
8616
|
throttling: ViewThrottling;
|
8617
|
+
/**
|
8618
|
+
* {@inheritDoc ChromiumPolicies}
|
8619
|
+
*/
|
8620
|
+
chromiumPolicies: ChromiumPolicies;
|
8610
8621
|
};
|
8611
8622
|
|
8612
8623
|
/**
|
@@ -8847,6 +8858,12 @@ declare type MutableWindowOptions = {
|
|
8847
8858
|
* Shows the window's icon in the taskbar.
|
8848
8859
|
*/
|
8849
8860
|
showTaskbarIcon: boolean;
|
8861
|
+
/**
|
8862
|
+
* Specify a taskbar group for the window.
|
8863
|
+
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
8864
|
+
* @remarks It's only updatable when `enableJumpList` is set to false.
|
8865
|
+
*/
|
8866
|
+
taskbarIconGroup: string;
|
8850
8867
|
interop: InteropConfig;
|
8851
8868
|
/* Excluded from this release type: _internalWorkspaceData */
|
8852
8869
|
/* Excluded from this release type: workspacePlatform */
|
@@ -8858,6 +8875,10 @@ declare type MutableWindowOptions = {
|
|
8858
8875
|
* @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
|
8859
8876
|
*/
|
8860
8877
|
throttling: WindowThrottling;
|
8878
|
+
/**
|
8879
|
+
* {@inheritDoc ChromiumPolicies}
|
8880
|
+
*/
|
8881
|
+
chromiumPolicies: ChromiumPolicies;
|
8861
8882
|
};
|
8862
8883
|
|
8863
8884
|
declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
|
@@ -9070,6 +9091,8 @@ declare namespace OpenFin_2 {
|
|
9070
9091
|
AutoplayPolicyOptions,
|
9071
9092
|
ConstWindowOptions,
|
9072
9093
|
InheritableOptions,
|
9094
|
+
PolicyOptions,
|
9095
|
+
ChromiumPolicies,
|
9073
9096
|
MutableWindowOptions,
|
9074
9097
|
WorkspacePlatformOptions,
|
9075
9098
|
WebRequestHeader,
|
@@ -9549,6 +9572,10 @@ declare type PerDomainSettings = {
|
|
9549
9572
|
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
9550
9573
|
*/
|
9551
9574
|
content?: ContentPermission;
|
9575
|
+
/**
|
9576
|
+
* {@inheritdoc ChromiumPolicies}
|
9577
|
+
*/
|
9578
|
+
chromiumPolicies?: ChromiumPolicies;
|
9552
9579
|
};
|
9553
9580
|
|
9554
9581
|
/**
|
@@ -10967,6 +10994,12 @@ declare type PointTopLeft = {
|
|
10967
10994
|
left: number;
|
10968
10995
|
};
|
10969
10996
|
|
10997
|
+
/**
|
10998
|
+
* When set to `disable`, disables the policy
|
10999
|
+
* When set to `defer-to-group-policy`, respects Group Policy settings
|
11000
|
+
*/
|
11001
|
+
declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
|
11002
|
+
|
10970
11003
|
declare type PopupBaseBehavior = 'close' | 'hide';
|
10971
11004
|
|
10972
11005
|
declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
|
package/out/mock-public.d.ts
CHANGED
@@ -2943,6 +2943,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
|
|
2943
2943
|
childOptions: OpenFin_2.WindowOptions;
|
2944
2944
|
};
|
2945
2945
|
|
2946
|
+
/**
|
2947
|
+
* Control behavior for Chromium policies
|
2948
|
+
*
|
2949
|
+
* @interface
|
2950
|
+
*/
|
2951
|
+
declare type ChromiumPolicies = {
|
2952
|
+
/**
|
2953
|
+
* Disable AutofillAddressEnabled policy for a Window or View.
|
2954
|
+
*/
|
2955
|
+
AutofillAddressEnabled?: PolicyOptions;
|
2956
|
+
};
|
2957
|
+
|
2946
2958
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
2947
2959
|
type: 'classic';
|
2948
2960
|
}
|
@@ -3662,11 +3674,6 @@ declare type ConstWindowOptions = {
|
|
3662
3674
|
* @deprecated - use `icon` instead.
|
3663
3675
|
*/
|
3664
3676
|
taskbarIcon: string;
|
3665
|
-
/**
|
3666
|
-
* Specify a taskbar group for the window.
|
3667
|
-
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
3668
|
-
*/
|
3669
|
-
taskbarIconGroup: string;
|
3670
3677
|
/**
|
3671
3678
|
* @defaultValue "about:blank"
|
3672
3679
|
*
|
@@ -8607,6 +8614,10 @@ declare type MutableViewOptions = {
|
|
8607
8614
|
* @defaultValue 'enabled'
|
8608
8615
|
*/
|
8609
8616
|
throttling: ViewThrottling;
|
8617
|
+
/**
|
8618
|
+
* {@inheritDoc ChromiumPolicies}
|
8619
|
+
*/
|
8620
|
+
chromiumPolicies: ChromiumPolicies;
|
8610
8621
|
};
|
8611
8622
|
|
8612
8623
|
/**
|
@@ -8847,6 +8858,12 @@ declare type MutableWindowOptions = {
|
|
8847
8858
|
* Shows the window's icon in the taskbar.
|
8848
8859
|
*/
|
8849
8860
|
showTaskbarIcon: boolean;
|
8861
|
+
/**
|
8862
|
+
* Specify a taskbar group for the window.
|
8863
|
+
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
8864
|
+
* @remarks It's only updatable when `enableJumpList` is set to false.
|
8865
|
+
*/
|
8866
|
+
taskbarIconGroup: string;
|
8850
8867
|
interop: InteropConfig;
|
8851
8868
|
/* Excluded from this release type: _internalWorkspaceData */
|
8852
8869
|
/* Excluded from this release type: workspacePlatform */
|
@@ -8858,6 +8875,10 @@ declare type MutableWindowOptions = {
|
|
8858
8875
|
* @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
|
8859
8876
|
*/
|
8860
8877
|
throttling: WindowThrottling;
|
8878
|
+
/**
|
8879
|
+
* {@inheritDoc ChromiumPolicies}
|
8880
|
+
*/
|
8881
|
+
chromiumPolicies: ChromiumPolicies;
|
8861
8882
|
};
|
8862
8883
|
|
8863
8884
|
declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
|
@@ -9070,6 +9091,8 @@ declare namespace OpenFin_2 {
|
|
9070
9091
|
AutoplayPolicyOptions,
|
9071
9092
|
ConstWindowOptions,
|
9072
9093
|
InheritableOptions,
|
9094
|
+
PolicyOptions,
|
9095
|
+
ChromiumPolicies,
|
9073
9096
|
MutableWindowOptions,
|
9074
9097
|
WorkspacePlatformOptions,
|
9075
9098
|
WebRequestHeader,
|
@@ -9549,6 +9572,10 @@ declare type PerDomainSettings = {
|
|
9549
9572
|
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
9550
9573
|
*/
|
9551
9574
|
content?: ContentPermission;
|
9575
|
+
/**
|
9576
|
+
* {@inheritdoc ChromiumPolicies}
|
9577
|
+
*/
|
9578
|
+
chromiumPolicies?: ChromiumPolicies;
|
9552
9579
|
};
|
9553
9580
|
|
9554
9581
|
/**
|
@@ -10967,6 +10994,12 @@ declare type PointTopLeft = {
|
|
10967
10994
|
left: number;
|
10968
10995
|
};
|
10969
10996
|
|
10997
|
+
/**
|
10998
|
+
* When set to `disable`, disables the policy
|
10999
|
+
* When set to `defer-to-group-policy`, respects Group Policy settings
|
11000
|
+
*/
|
11001
|
+
declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
|
11002
|
+
|
10970
11003
|
declare type PopupBaseBehavior = 'close' | 'hide';
|
10971
11004
|
|
10972
11005
|
declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
|
package/out/mock.d.ts
CHANGED
@@ -2999,6 +2999,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
|
|
2999
2999
|
childOptions: OpenFin_2.WindowOptions;
|
3000
3000
|
};
|
3001
3001
|
|
3002
|
+
/**
|
3003
|
+
* Control behavior for Chromium policies
|
3004
|
+
*
|
3005
|
+
* @interface
|
3006
|
+
*/
|
3007
|
+
declare type ChromiumPolicies = {
|
3008
|
+
/**
|
3009
|
+
* Disable AutofillAddressEnabled policy for a Window or View.
|
3010
|
+
*/
|
3011
|
+
AutofillAddressEnabled?: PolicyOptions;
|
3012
|
+
};
|
3013
|
+
|
3002
3014
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
3003
3015
|
type: 'classic';
|
3004
3016
|
}
|
@@ -3721,11 +3733,6 @@ declare type ConstWindowOptions = {
|
|
3721
3733
|
* @deprecated - use `icon` instead.
|
3722
3734
|
*/
|
3723
3735
|
taskbarIcon: string;
|
3724
|
-
/**
|
3725
|
-
* Specify a taskbar group for the window.
|
3726
|
-
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
3727
|
-
*/
|
3728
|
-
taskbarIconGroup: string;
|
3729
3736
|
/**
|
3730
3737
|
* @defaultValue "about:blank"
|
3731
3738
|
*
|
@@ -8904,6 +8911,10 @@ declare type MutableViewOptions = {
|
|
8904
8911
|
* @defaultValue 'enabled'
|
8905
8912
|
*/
|
8906
8913
|
throttling: ViewThrottling;
|
8914
|
+
/**
|
8915
|
+
* {@inheritDoc ChromiumPolicies}
|
8916
|
+
*/
|
8917
|
+
chromiumPolicies: ChromiumPolicies;
|
8907
8918
|
};
|
8908
8919
|
|
8909
8920
|
/**
|
@@ -9144,6 +9155,12 @@ declare type MutableWindowOptions = {
|
|
9144
9155
|
* Shows the window's icon in the taskbar.
|
9145
9156
|
*/
|
9146
9157
|
showTaskbarIcon: boolean;
|
9158
|
+
/**
|
9159
|
+
* Specify a taskbar group for the window.
|
9160
|
+
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
9161
|
+
* @remarks It's only updatable when `enableJumpList` is set to false.
|
9162
|
+
*/
|
9163
|
+
taskbarIconGroup: string;
|
9147
9164
|
interop: InteropConfig;
|
9148
9165
|
/**
|
9149
9166
|
* @internal
|
@@ -9163,6 +9180,10 @@ declare type MutableWindowOptions = {
|
|
9163
9180
|
* @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
|
9164
9181
|
*/
|
9165
9182
|
throttling: WindowThrottling;
|
9183
|
+
/**
|
9184
|
+
* {@inheritDoc ChromiumPolicies}
|
9185
|
+
*/
|
9186
|
+
chromiumPolicies: ChromiumPolicies;
|
9166
9187
|
};
|
9167
9188
|
|
9168
9189
|
declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
|
@@ -9385,6 +9406,8 @@ declare namespace OpenFin_2 {
|
|
9385
9406
|
AutoplayPolicyOptions,
|
9386
9407
|
ConstWindowOptions,
|
9387
9408
|
InheritableOptions,
|
9409
|
+
PolicyOptions,
|
9410
|
+
ChromiumPolicies,
|
9388
9411
|
MutableWindowOptions,
|
9389
9412
|
WorkspacePlatformOptions,
|
9390
9413
|
WebRequestHeader,
|
@@ -9864,6 +9887,10 @@ declare type PerDomainSettings = {
|
|
9864
9887
|
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
9865
9888
|
*/
|
9866
9889
|
content?: ContentPermission;
|
9890
|
+
/**
|
9891
|
+
* {@inheritdoc ChromiumPolicies}
|
9892
|
+
*/
|
9893
|
+
chromiumPolicies?: ChromiumPolicies;
|
9867
9894
|
};
|
9868
9895
|
|
9869
9896
|
/**
|
@@ -11360,6 +11387,12 @@ declare type PointTopLeft = {
|
|
11360
11387
|
left: number;
|
11361
11388
|
};
|
11362
11389
|
|
11390
|
+
/**
|
11391
|
+
* When set to `disable`, disables the policy
|
11392
|
+
* When set to `defer-to-group-policy`, respects Group Policy settings
|
11393
|
+
*/
|
11394
|
+
declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
|
11395
|
+
|
11363
11396
|
declare type PopupBaseBehavior = 'close' | 'hide';
|
11364
11397
|
|
11365
11398
|
declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
|