@openfin/fdc3-api 40.82.23 → 40.82.25
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 +21 -0
- package/out/fdc3-api-beta.d.ts +21 -0
- package/out/fdc3-api-public.d.ts +21 -0
- package/out/fdc3-api.d.ts +21 -0
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -3458,6 +3458,10 @@ declare type ConstViewOptions = {
|
|
|
3458
3458
|
*/
|
|
3459
3459
|
enabled: boolean;
|
|
3460
3460
|
};
|
|
3461
|
+
/**
|
|
3462
|
+
* Control which options to ignore when creating a Platform View.
|
|
3463
|
+
*/
|
|
3464
|
+
excludeOptions: ExcludeOptions;
|
|
3461
3465
|
};
|
|
3462
3466
|
|
|
3463
3467
|
/**
|
|
@@ -3702,6 +3706,10 @@ declare type ConstWindowOptions = {
|
|
|
3702
3706
|
* Controls whether an option is inherited from the parent application. The option is set as part of the window options for the parent application in either the {@link Manifest.startup_app} or {@link Manifest.platform} properties in the manifest or in {@link ApplicationOptions.mainWindowOptions} when calling {@link Application.ApplicationModule.start Application.start}. Use { [option]: false } to disable a specific [option]. All inheritable properties will be inherited by default if omitted.
|
|
3703
3707
|
*/
|
|
3704
3708
|
inheritance?: Partial<InheritableOptions>;
|
|
3709
|
+
/**
|
|
3710
|
+
* Control which options to ignore when creating a Platform Window.
|
|
3711
|
+
*/
|
|
3712
|
+
excludeOptions: ExcludeOptions;
|
|
3705
3713
|
};
|
|
3706
3714
|
|
|
3707
3715
|
/**
|
|
@@ -4882,6 +4890,18 @@ declare type EventType_9 = Event_12['type'];
|
|
|
4882
4890
|
|
|
4883
4891
|
/* Excluded from this release type: EventWithId */
|
|
4884
4892
|
|
|
4893
|
+
/**
|
|
4894
|
+
* @interface
|
|
4895
|
+
*/
|
|
4896
|
+
declare type ExcludeOptions = {
|
|
4897
|
+
/**
|
|
4898
|
+
* @defaultValue false
|
|
4899
|
+
*
|
|
4900
|
+
* When true, will not merge default preload scripts from {@link ApplicationOptions.defaultWindowOptions} or {@link ApplicationOptions.defaultViewOptions}.
|
|
4901
|
+
*/
|
|
4902
|
+
preloadScripts: boolean;
|
|
4903
|
+
};
|
|
4904
|
+
|
|
4885
4905
|
/* Excluded from this release type: ExcludeRequested */
|
|
4886
4906
|
|
|
4887
4907
|
declare type ExistingConnectConfig = ConfigWithUuid & {
|
|
@@ -9497,6 +9517,7 @@ declare namespace OpenFin {
|
|
|
9497
9517
|
ViewVisibilityOptions,
|
|
9498
9518
|
WindowState,
|
|
9499
9519
|
AutoplayPolicyOptions,
|
|
9520
|
+
ExcludeOptions,
|
|
9500
9521
|
ConstWindowOptions,
|
|
9501
9522
|
InheritableOptions,
|
|
9502
9523
|
PolicyOptions,
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -3458,6 +3458,10 @@ declare type ConstViewOptions = {
|
|
|
3458
3458
|
*/
|
|
3459
3459
|
enabled: boolean;
|
|
3460
3460
|
};
|
|
3461
|
+
/**
|
|
3462
|
+
* Control which options to ignore when creating a Platform View.
|
|
3463
|
+
*/
|
|
3464
|
+
excludeOptions: ExcludeOptions;
|
|
3461
3465
|
};
|
|
3462
3466
|
|
|
3463
3467
|
/**
|
|
@@ -3702,6 +3706,10 @@ declare type ConstWindowOptions = {
|
|
|
3702
3706
|
* Controls whether an option is inherited from the parent application. The option is set as part of the window options for the parent application in either the {@link Manifest.startup_app} or {@link Manifest.platform} properties in the manifest or in {@link ApplicationOptions.mainWindowOptions} when calling {@link Application.ApplicationModule.start Application.start}. Use { [option]: false } to disable a specific [option]. All inheritable properties will be inherited by default if omitted.
|
|
3703
3707
|
*/
|
|
3704
3708
|
inheritance?: Partial<InheritableOptions>;
|
|
3709
|
+
/**
|
|
3710
|
+
* Control which options to ignore when creating a Platform Window.
|
|
3711
|
+
*/
|
|
3712
|
+
excludeOptions: ExcludeOptions;
|
|
3705
3713
|
};
|
|
3706
3714
|
|
|
3707
3715
|
/**
|
|
@@ -4882,6 +4890,18 @@ declare type EventType_9 = Event_12['type'];
|
|
|
4882
4890
|
|
|
4883
4891
|
/* Excluded from this release type: EventWithId */
|
|
4884
4892
|
|
|
4893
|
+
/**
|
|
4894
|
+
* @interface
|
|
4895
|
+
*/
|
|
4896
|
+
declare type ExcludeOptions = {
|
|
4897
|
+
/**
|
|
4898
|
+
* @defaultValue false
|
|
4899
|
+
*
|
|
4900
|
+
* When true, will not merge default preload scripts from {@link ApplicationOptions.defaultWindowOptions} or {@link ApplicationOptions.defaultViewOptions}.
|
|
4901
|
+
*/
|
|
4902
|
+
preloadScripts: boolean;
|
|
4903
|
+
};
|
|
4904
|
+
|
|
4885
4905
|
/* Excluded from this release type: ExcludeRequested */
|
|
4886
4906
|
|
|
4887
4907
|
declare type ExistingConnectConfig = ConfigWithUuid & {
|
|
@@ -9497,6 +9517,7 @@ declare namespace OpenFin {
|
|
|
9497
9517
|
ViewVisibilityOptions,
|
|
9498
9518
|
WindowState,
|
|
9499
9519
|
AutoplayPolicyOptions,
|
|
9520
|
+
ExcludeOptions,
|
|
9500
9521
|
ConstWindowOptions,
|
|
9501
9522
|
InheritableOptions,
|
|
9502
9523
|
PolicyOptions,
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -3458,6 +3458,10 @@ declare type ConstViewOptions = {
|
|
|
3458
3458
|
*/
|
|
3459
3459
|
enabled: boolean;
|
|
3460
3460
|
};
|
|
3461
|
+
/**
|
|
3462
|
+
* Control which options to ignore when creating a Platform View.
|
|
3463
|
+
*/
|
|
3464
|
+
excludeOptions: ExcludeOptions;
|
|
3461
3465
|
};
|
|
3462
3466
|
|
|
3463
3467
|
/**
|
|
@@ -3702,6 +3706,10 @@ declare type ConstWindowOptions = {
|
|
|
3702
3706
|
* Controls whether an option is inherited from the parent application. The option is set as part of the window options for the parent application in either the {@link Manifest.startup_app} or {@link Manifest.platform} properties in the manifest or in {@link ApplicationOptions.mainWindowOptions} when calling {@link Application.ApplicationModule.start Application.start}. Use { [option]: false } to disable a specific [option]. All inheritable properties will be inherited by default if omitted.
|
|
3703
3707
|
*/
|
|
3704
3708
|
inheritance?: Partial<InheritableOptions>;
|
|
3709
|
+
/**
|
|
3710
|
+
* Control which options to ignore when creating a Platform Window.
|
|
3711
|
+
*/
|
|
3712
|
+
excludeOptions: ExcludeOptions;
|
|
3705
3713
|
};
|
|
3706
3714
|
|
|
3707
3715
|
/**
|
|
@@ -4882,6 +4890,18 @@ declare type EventType_9 = Event_12['type'];
|
|
|
4882
4890
|
|
|
4883
4891
|
/* Excluded from this release type: EventWithId */
|
|
4884
4892
|
|
|
4893
|
+
/**
|
|
4894
|
+
* @interface
|
|
4895
|
+
*/
|
|
4896
|
+
declare type ExcludeOptions = {
|
|
4897
|
+
/**
|
|
4898
|
+
* @defaultValue false
|
|
4899
|
+
*
|
|
4900
|
+
* When true, will not merge default preload scripts from {@link ApplicationOptions.defaultWindowOptions} or {@link ApplicationOptions.defaultViewOptions}.
|
|
4901
|
+
*/
|
|
4902
|
+
preloadScripts: boolean;
|
|
4903
|
+
};
|
|
4904
|
+
|
|
4885
4905
|
/* Excluded from this release type: ExcludeRequested */
|
|
4886
4906
|
|
|
4887
4907
|
declare type ExistingConnectConfig = ConfigWithUuid & {
|
|
@@ -9497,6 +9517,7 @@ declare namespace OpenFin {
|
|
|
9497
9517
|
ViewVisibilityOptions,
|
|
9498
9518
|
WindowState,
|
|
9499
9519
|
AutoplayPolicyOptions,
|
|
9520
|
+
ExcludeOptions,
|
|
9500
9521
|
ConstWindowOptions,
|
|
9501
9522
|
InheritableOptions,
|
|
9502
9523
|
PolicyOptions,
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -3517,6 +3517,10 @@ declare type ConstViewOptions = {
|
|
|
3517
3517
|
*/
|
|
3518
3518
|
enabled: boolean;
|
|
3519
3519
|
};
|
|
3520
|
+
/**
|
|
3521
|
+
* Control which options to ignore when creating a Platform View.
|
|
3522
|
+
*/
|
|
3523
|
+
excludeOptions: ExcludeOptions;
|
|
3520
3524
|
};
|
|
3521
3525
|
|
|
3522
3526
|
/**
|
|
@@ -3761,6 +3765,10 @@ declare type ConstWindowOptions = {
|
|
|
3761
3765
|
* Controls whether an option is inherited from the parent application. The option is set as part of the window options for the parent application in either the {@link Manifest.startup_app} or {@link Manifest.platform} properties in the manifest or in {@link ApplicationOptions.mainWindowOptions} when calling {@link Application.ApplicationModule.start Application.start}. Use { [option]: false } to disable a specific [option]. All inheritable properties will be inherited by default if omitted.
|
|
3762
3766
|
*/
|
|
3763
3767
|
inheritance?: Partial<InheritableOptions>;
|
|
3768
|
+
/**
|
|
3769
|
+
* Control which options to ignore when creating a Platform Window.
|
|
3770
|
+
*/
|
|
3771
|
+
excludeOptions: ExcludeOptions;
|
|
3764
3772
|
};
|
|
3765
3773
|
|
|
3766
3774
|
/**
|
|
@@ -4955,6 +4963,18 @@ declare type EventWithId<Event extends AppVersionEvent> = Event extends infer E
|
|
|
4955
4963
|
appVersionId: string;
|
|
4956
4964
|
} : never;
|
|
4957
4965
|
|
|
4966
|
+
/**
|
|
4967
|
+
* @interface
|
|
4968
|
+
*/
|
|
4969
|
+
declare type ExcludeOptions = {
|
|
4970
|
+
/**
|
|
4971
|
+
* @defaultValue false
|
|
4972
|
+
*
|
|
4973
|
+
* When true, will not merge default preload scripts from {@link ApplicationOptions.defaultWindowOptions} or {@link ApplicationOptions.defaultViewOptions}.
|
|
4974
|
+
*/
|
|
4975
|
+
preloadScripts: boolean;
|
|
4976
|
+
};
|
|
4977
|
+
|
|
4958
4978
|
/**
|
|
4959
4979
|
* @internal
|
|
4960
4980
|
*
|
|
@@ -9815,6 +9835,7 @@ declare namespace OpenFin {
|
|
|
9815
9835
|
ViewVisibilityOptions,
|
|
9816
9836
|
WindowState,
|
|
9817
9837
|
AutoplayPolicyOptions,
|
|
9838
|
+
ExcludeOptions,
|
|
9818
9839
|
ConstWindowOptions,
|
|
9819
9840
|
InheritableOptions,
|
|
9820
9841
|
PolicyOptions,
|