@openfin/fdc3-api 38.82.66 → 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/fdc3-api-alpha.d.ts +38 -5
- package/out/fdc3-api-beta.d.ts +38 -5
- package/out/fdc3-api-public.d.ts +38 -5
- package/out/fdc3-api.d.ts +38 -5
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -2940,6 +2940,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
|
|
|
2940
2940
|
childOptions: OpenFin.WindowOptions;
|
|
2941
2941
|
};
|
|
2942
2942
|
|
|
2943
|
+
/**
|
|
2944
|
+
* Control behavior for Chromium policies
|
|
2945
|
+
*
|
|
2946
|
+
* @interface
|
|
2947
|
+
*/
|
|
2948
|
+
declare type ChromiumPolicies = {
|
|
2949
|
+
/**
|
|
2950
|
+
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
2951
|
+
*/
|
|
2952
|
+
AutofillAddressEnabled?: PolicyOptions;
|
|
2953
|
+
};
|
|
2954
|
+
|
|
2943
2955
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
2944
2956
|
type: 'classic';
|
|
2945
2957
|
}
|
|
@@ -3659,11 +3671,6 @@ declare type ConstWindowOptions = {
|
|
|
3659
3671
|
* @deprecated - use `icon` instead.
|
|
3660
3672
|
*/
|
|
3661
3673
|
taskbarIcon: string;
|
|
3662
|
-
/**
|
|
3663
|
-
* Specify a taskbar group for the window.
|
|
3664
|
-
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
|
3665
|
-
*/
|
|
3666
|
-
taskbarIconGroup: string;
|
|
3667
3674
|
/**
|
|
3668
3675
|
* @defaultValue "about:blank"
|
|
3669
3676
|
*
|
|
@@ -8949,6 +8956,10 @@ declare type MutableViewOptions = {
|
|
|
8949
8956
|
* @defaultValue 'enabled'
|
|
8950
8957
|
*/
|
|
8951
8958
|
throttling: ViewThrottling;
|
|
8959
|
+
/**
|
|
8960
|
+
* {@inheritDoc ChromiumPolicies}
|
|
8961
|
+
*/
|
|
8962
|
+
chromiumPolicies: ChromiumPolicies;
|
|
8952
8963
|
};
|
|
8953
8964
|
|
|
8954
8965
|
/**
|
|
@@ -9189,6 +9200,12 @@ declare type MutableWindowOptions = {
|
|
|
9189
9200
|
* Shows the window's icon in the taskbar.
|
|
9190
9201
|
*/
|
|
9191
9202
|
showTaskbarIcon: boolean;
|
|
9203
|
+
/**
|
|
9204
|
+
* Specify a taskbar group for the window.
|
|
9205
|
+
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
|
9206
|
+
* @remarks It's only updatable when `enableJumpList` is set to false.
|
|
9207
|
+
*/
|
|
9208
|
+
taskbarIconGroup: string;
|
|
9192
9209
|
interop: InteropConfig;
|
|
9193
9210
|
/* Excluded from this release type: _internalWorkspaceData */
|
|
9194
9211
|
/* Excluded from this release type: workspacePlatform */
|
|
@@ -9200,6 +9217,10 @@ declare type MutableWindowOptions = {
|
|
|
9200
9217
|
* @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
|
|
9201
9218
|
*/
|
|
9202
9219
|
throttling: WindowThrottling;
|
|
9220
|
+
/**
|
|
9221
|
+
* {@inheritDoc ChromiumPolicies}
|
|
9222
|
+
*/
|
|
9223
|
+
chromiumPolicies: ChromiumPolicies;
|
|
9203
9224
|
};
|
|
9204
9225
|
|
|
9205
9226
|
declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
|
|
@@ -9412,6 +9433,8 @@ declare namespace OpenFin {
|
|
|
9412
9433
|
AutoplayPolicyOptions,
|
|
9413
9434
|
ConstWindowOptions,
|
|
9414
9435
|
InheritableOptions,
|
|
9436
|
+
PolicyOptions,
|
|
9437
|
+
ChromiumPolicies,
|
|
9415
9438
|
MutableWindowOptions,
|
|
9416
9439
|
WorkspacePlatformOptions,
|
|
9417
9440
|
WebRequestHeader,
|
|
@@ -9889,6 +9912,10 @@ declare type PerDomainSettings = {
|
|
|
9889
9912
|
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
|
9890
9913
|
*/
|
|
9891
9914
|
content?: ContentPermission;
|
|
9915
|
+
/**
|
|
9916
|
+
* {@inheritdoc ChromiumPolicies}
|
|
9917
|
+
*/
|
|
9918
|
+
chromiumPolicies?: ChromiumPolicies;
|
|
9892
9919
|
};
|
|
9893
9920
|
|
|
9894
9921
|
/**
|
|
@@ -11307,6 +11334,12 @@ declare type PointTopLeft = {
|
|
|
11307
11334
|
left: number;
|
|
11308
11335
|
};
|
|
11309
11336
|
|
|
11337
|
+
/**
|
|
11338
|
+
* When set to `disable`, disables the policy
|
|
11339
|
+
* When set to `defer-to-group-policy`, respects Group Policy settings
|
|
11340
|
+
*/
|
|
11341
|
+
declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
|
|
11342
|
+
|
|
11310
11343
|
declare type PopupBaseBehavior = 'close' | 'hide';
|
|
11311
11344
|
|
|
11312
11345
|
declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -2940,6 +2940,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
|
|
|
2940
2940
|
childOptions: OpenFin.WindowOptions;
|
|
2941
2941
|
};
|
|
2942
2942
|
|
|
2943
|
+
/**
|
|
2944
|
+
* Control behavior for Chromium policies
|
|
2945
|
+
*
|
|
2946
|
+
* @interface
|
|
2947
|
+
*/
|
|
2948
|
+
declare type ChromiumPolicies = {
|
|
2949
|
+
/**
|
|
2950
|
+
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
2951
|
+
*/
|
|
2952
|
+
AutofillAddressEnabled?: PolicyOptions;
|
|
2953
|
+
};
|
|
2954
|
+
|
|
2943
2955
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
2944
2956
|
type: 'classic';
|
|
2945
2957
|
}
|
|
@@ -3659,11 +3671,6 @@ declare type ConstWindowOptions = {
|
|
|
3659
3671
|
* @deprecated - use `icon` instead.
|
|
3660
3672
|
*/
|
|
3661
3673
|
taskbarIcon: string;
|
|
3662
|
-
/**
|
|
3663
|
-
* Specify a taskbar group for the window.
|
|
3664
|
-
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
|
3665
|
-
*/
|
|
3666
|
-
taskbarIconGroup: string;
|
|
3667
3674
|
/**
|
|
3668
3675
|
* @defaultValue "about:blank"
|
|
3669
3676
|
*
|
|
@@ -8949,6 +8956,10 @@ declare type MutableViewOptions = {
|
|
|
8949
8956
|
* @defaultValue 'enabled'
|
|
8950
8957
|
*/
|
|
8951
8958
|
throttling: ViewThrottling;
|
|
8959
|
+
/**
|
|
8960
|
+
* {@inheritDoc ChromiumPolicies}
|
|
8961
|
+
*/
|
|
8962
|
+
chromiumPolicies: ChromiumPolicies;
|
|
8952
8963
|
};
|
|
8953
8964
|
|
|
8954
8965
|
/**
|
|
@@ -9189,6 +9200,12 @@ declare type MutableWindowOptions = {
|
|
|
9189
9200
|
* Shows the window's icon in the taskbar.
|
|
9190
9201
|
*/
|
|
9191
9202
|
showTaskbarIcon: boolean;
|
|
9203
|
+
/**
|
|
9204
|
+
* Specify a taskbar group for the window.
|
|
9205
|
+
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
|
9206
|
+
* @remarks It's only updatable when `enableJumpList` is set to false.
|
|
9207
|
+
*/
|
|
9208
|
+
taskbarIconGroup: string;
|
|
9192
9209
|
interop: InteropConfig;
|
|
9193
9210
|
/* Excluded from this release type: _internalWorkspaceData */
|
|
9194
9211
|
/* Excluded from this release type: workspacePlatform */
|
|
@@ -9200,6 +9217,10 @@ declare type MutableWindowOptions = {
|
|
|
9200
9217
|
* @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
|
|
9201
9218
|
*/
|
|
9202
9219
|
throttling: WindowThrottling;
|
|
9220
|
+
/**
|
|
9221
|
+
* {@inheritDoc ChromiumPolicies}
|
|
9222
|
+
*/
|
|
9223
|
+
chromiumPolicies: ChromiumPolicies;
|
|
9203
9224
|
};
|
|
9204
9225
|
|
|
9205
9226
|
declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
|
|
@@ -9412,6 +9433,8 @@ declare namespace OpenFin {
|
|
|
9412
9433
|
AutoplayPolicyOptions,
|
|
9413
9434
|
ConstWindowOptions,
|
|
9414
9435
|
InheritableOptions,
|
|
9436
|
+
PolicyOptions,
|
|
9437
|
+
ChromiumPolicies,
|
|
9415
9438
|
MutableWindowOptions,
|
|
9416
9439
|
WorkspacePlatformOptions,
|
|
9417
9440
|
WebRequestHeader,
|
|
@@ -9889,6 +9912,10 @@ declare type PerDomainSettings = {
|
|
|
9889
9912
|
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
|
9890
9913
|
*/
|
|
9891
9914
|
content?: ContentPermission;
|
|
9915
|
+
/**
|
|
9916
|
+
* {@inheritdoc ChromiumPolicies}
|
|
9917
|
+
*/
|
|
9918
|
+
chromiumPolicies?: ChromiumPolicies;
|
|
9892
9919
|
};
|
|
9893
9920
|
|
|
9894
9921
|
/**
|
|
@@ -11307,6 +11334,12 @@ declare type PointTopLeft = {
|
|
|
11307
11334
|
left: number;
|
|
11308
11335
|
};
|
|
11309
11336
|
|
|
11337
|
+
/**
|
|
11338
|
+
* When set to `disable`, disables the policy
|
|
11339
|
+
* When set to `defer-to-group-policy`, respects Group Policy settings
|
|
11340
|
+
*/
|
|
11341
|
+
declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
|
|
11342
|
+
|
|
11310
11343
|
declare type PopupBaseBehavior = 'close' | 'hide';
|
|
11311
11344
|
|
|
11312
11345
|
declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -2940,6 +2940,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
|
|
|
2940
2940
|
childOptions: OpenFin.WindowOptions;
|
|
2941
2941
|
};
|
|
2942
2942
|
|
|
2943
|
+
/**
|
|
2944
|
+
* Control behavior for Chromium policies
|
|
2945
|
+
*
|
|
2946
|
+
* @interface
|
|
2947
|
+
*/
|
|
2948
|
+
declare type ChromiumPolicies = {
|
|
2949
|
+
/**
|
|
2950
|
+
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
2951
|
+
*/
|
|
2952
|
+
AutofillAddressEnabled?: PolicyOptions;
|
|
2953
|
+
};
|
|
2954
|
+
|
|
2943
2955
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
2944
2956
|
type: 'classic';
|
|
2945
2957
|
}
|
|
@@ -3659,11 +3671,6 @@ declare type ConstWindowOptions = {
|
|
|
3659
3671
|
* @deprecated - use `icon` instead.
|
|
3660
3672
|
*/
|
|
3661
3673
|
taskbarIcon: string;
|
|
3662
|
-
/**
|
|
3663
|
-
* Specify a taskbar group for the window.
|
|
3664
|
-
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
|
3665
|
-
*/
|
|
3666
|
-
taskbarIconGroup: string;
|
|
3667
3674
|
/**
|
|
3668
3675
|
* @defaultValue "about:blank"
|
|
3669
3676
|
*
|
|
@@ -8949,6 +8956,10 @@ declare type MutableViewOptions = {
|
|
|
8949
8956
|
* @defaultValue 'enabled'
|
|
8950
8957
|
*/
|
|
8951
8958
|
throttling: ViewThrottling;
|
|
8959
|
+
/**
|
|
8960
|
+
* {@inheritDoc ChromiumPolicies}
|
|
8961
|
+
*/
|
|
8962
|
+
chromiumPolicies: ChromiumPolicies;
|
|
8952
8963
|
};
|
|
8953
8964
|
|
|
8954
8965
|
/**
|
|
@@ -9189,6 +9200,12 @@ declare type MutableWindowOptions = {
|
|
|
9189
9200
|
* Shows the window's icon in the taskbar.
|
|
9190
9201
|
*/
|
|
9191
9202
|
showTaskbarIcon: boolean;
|
|
9203
|
+
/**
|
|
9204
|
+
* Specify a taskbar group for the window.
|
|
9205
|
+
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
|
9206
|
+
* @remarks It's only updatable when `enableJumpList` is set to false.
|
|
9207
|
+
*/
|
|
9208
|
+
taskbarIconGroup: string;
|
|
9192
9209
|
interop: InteropConfig;
|
|
9193
9210
|
/* Excluded from this release type: _internalWorkspaceData */
|
|
9194
9211
|
/* Excluded from this release type: workspacePlatform */
|
|
@@ -9200,6 +9217,10 @@ declare type MutableWindowOptions = {
|
|
|
9200
9217
|
* @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
|
|
9201
9218
|
*/
|
|
9202
9219
|
throttling: WindowThrottling;
|
|
9220
|
+
/**
|
|
9221
|
+
* {@inheritDoc ChromiumPolicies}
|
|
9222
|
+
*/
|
|
9223
|
+
chromiumPolicies: ChromiumPolicies;
|
|
9203
9224
|
};
|
|
9204
9225
|
|
|
9205
9226
|
declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
|
|
@@ -9412,6 +9433,8 @@ declare namespace OpenFin {
|
|
|
9412
9433
|
AutoplayPolicyOptions,
|
|
9413
9434
|
ConstWindowOptions,
|
|
9414
9435
|
InheritableOptions,
|
|
9436
|
+
PolicyOptions,
|
|
9437
|
+
ChromiumPolicies,
|
|
9415
9438
|
MutableWindowOptions,
|
|
9416
9439
|
WorkspacePlatformOptions,
|
|
9417
9440
|
WebRequestHeader,
|
|
@@ -9889,6 +9912,10 @@ declare type PerDomainSettings = {
|
|
|
9889
9912
|
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
|
9890
9913
|
*/
|
|
9891
9914
|
content?: ContentPermission;
|
|
9915
|
+
/**
|
|
9916
|
+
* {@inheritdoc ChromiumPolicies}
|
|
9917
|
+
*/
|
|
9918
|
+
chromiumPolicies?: ChromiumPolicies;
|
|
9892
9919
|
};
|
|
9893
9920
|
|
|
9894
9921
|
/**
|
|
@@ -11307,6 +11334,12 @@ declare type PointTopLeft = {
|
|
|
11307
11334
|
left: number;
|
|
11308
11335
|
};
|
|
11309
11336
|
|
|
11337
|
+
/**
|
|
11338
|
+
* When set to `disable`, disables the policy
|
|
11339
|
+
* When set to `defer-to-group-policy`, respects Group Policy settings
|
|
11340
|
+
*/
|
|
11341
|
+
declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
|
|
11342
|
+
|
|
11310
11343
|
declare type PopupBaseBehavior = 'close' | 'hide';
|
|
11311
11344
|
|
|
11312
11345
|
declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -2996,6 +2996,18 @@ declare type ChildWindowCreatedEvent = ContentCreationRulesEvent & {
|
|
|
2996
2996
|
childOptions: OpenFin.WindowOptions;
|
|
2997
2997
|
};
|
|
2998
2998
|
|
|
2999
|
+
/**
|
|
3000
|
+
* Control behavior for Chromium policies
|
|
3001
|
+
*
|
|
3002
|
+
* @interface
|
|
3003
|
+
*/
|
|
3004
|
+
declare type ChromiumPolicies = {
|
|
3005
|
+
/**
|
|
3006
|
+
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3007
|
+
*/
|
|
3008
|
+
AutofillAddressEnabled?: PolicyOptions;
|
|
3009
|
+
};
|
|
3010
|
+
|
|
2999
3011
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
3000
3012
|
type: 'classic';
|
|
3001
3013
|
}
|
|
@@ -3718,11 +3730,6 @@ declare type ConstWindowOptions = {
|
|
|
3718
3730
|
* @deprecated - use `icon` instead.
|
|
3719
3731
|
*/
|
|
3720
3732
|
taskbarIcon: string;
|
|
3721
|
-
/**
|
|
3722
|
-
* Specify a taskbar group for the window.
|
|
3723
|
-
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
|
3724
|
-
*/
|
|
3725
|
-
taskbarIconGroup: string;
|
|
3726
3733
|
/**
|
|
3727
3734
|
* @defaultValue "about:blank"
|
|
3728
3735
|
*
|
|
@@ -9246,6 +9253,10 @@ declare type MutableViewOptions = {
|
|
|
9246
9253
|
* @defaultValue 'enabled'
|
|
9247
9254
|
*/
|
|
9248
9255
|
throttling: ViewThrottling;
|
|
9256
|
+
/**
|
|
9257
|
+
* {@inheritDoc ChromiumPolicies}
|
|
9258
|
+
*/
|
|
9259
|
+
chromiumPolicies: ChromiumPolicies;
|
|
9249
9260
|
};
|
|
9250
9261
|
|
|
9251
9262
|
/**
|
|
@@ -9486,6 +9497,12 @@ declare type MutableWindowOptions = {
|
|
|
9486
9497
|
* Shows the window's icon in the taskbar.
|
|
9487
9498
|
*/
|
|
9488
9499
|
showTaskbarIcon: boolean;
|
|
9500
|
+
/**
|
|
9501
|
+
* Specify a taskbar group for the window.
|
|
9502
|
+
* _If omitted, defaults to app's uuid (`fin.Application.getCurrentSync().identity.uuid`)._
|
|
9503
|
+
* @remarks It's only updatable when `enableJumpList` is set to false.
|
|
9504
|
+
*/
|
|
9505
|
+
taskbarIconGroup: string;
|
|
9489
9506
|
interop: InteropConfig;
|
|
9490
9507
|
/**
|
|
9491
9508
|
* @internal
|
|
@@ -9505,6 +9522,10 @@ declare type MutableWindowOptions = {
|
|
|
9505
9522
|
* @remarks If `throttling` option is present, the `backgroundThrottling` option is completely ignored for windows.
|
|
9506
9523
|
*/
|
|
9507
9524
|
throttling: WindowThrottling;
|
|
9525
|
+
/**
|
|
9526
|
+
* {@inheritDoc ChromiumPolicies}
|
|
9527
|
+
*/
|
|
9528
|
+
chromiumPolicies: ChromiumPolicies;
|
|
9508
9529
|
};
|
|
9509
9530
|
|
|
9510
9531
|
declare type NackHandler = (payloadOrMessage: RuntimeErrorPayload | string) => void;
|
|
@@ -9727,6 +9748,8 @@ declare namespace OpenFin {
|
|
|
9727
9748
|
AutoplayPolicyOptions,
|
|
9728
9749
|
ConstWindowOptions,
|
|
9729
9750
|
InheritableOptions,
|
|
9751
|
+
PolicyOptions,
|
|
9752
|
+
ChromiumPolicies,
|
|
9730
9753
|
MutableWindowOptions,
|
|
9731
9754
|
WorkspacePlatformOptions,
|
|
9732
9755
|
WebRequestHeader,
|
|
@@ -10204,6 +10227,10 @@ declare type PerDomainSettings = {
|
|
|
10204
10227
|
* {@link ContentRedirect} in {@link WindowOptions} and {@link ViewOptions} will be **ignored**.
|
|
10205
10228
|
*/
|
|
10206
10229
|
content?: ContentPermission;
|
|
10230
|
+
/**
|
|
10231
|
+
* {@inheritdoc ChromiumPolicies}
|
|
10232
|
+
*/
|
|
10233
|
+
chromiumPolicies?: ChromiumPolicies;
|
|
10207
10234
|
};
|
|
10208
10235
|
|
|
10209
10236
|
/**
|
|
@@ -11700,6 +11727,12 @@ declare type PointTopLeft = {
|
|
|
11700
11727
|
left: number;
|
|
11701
11728
|
};
|
|
11702
11729
|
|
|
11730
|
+
/**
|
|
11731
|
+
* When set to `disable`, disables the policy
|
|
11732
|
+
* When set to `defer-to-group-policy`, respects Group Policy settings
|
|
11733
|
+
*/
|
|
11734
|
+
declare type PolicyOptions = 'disable' | 'defer-to-group-policy';
|
|
11735
|
+
|
|
11703
11736
|
declare type PopupBaseBehavior = 'close' | 'hide';
|
|
11704
11737
|
|
|
11705
11738
|
declare type PopupBlurBehavior = 'modal' | PopupBaseBehavior;
|