@openfin/fdc3-api 37.80.24 → 37.80.33
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 +43 -19
- package/out/fdc3-api-beta.d.ts +43 -19
- package/out/fdc3-api-public.d.ts +43 -19
- package/out/fdc3-api.d.ts +43 -19
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -983,7 +983,11 @@ declare type ApplicationInfo = {
|
|
|
983
983
|
*/
|
|
984
984
|
declare class ApplicationModule extends Base {
|
|
985
985
|
/**
|
|
986
|
-
* Asynchronously returns an
|
|
986
|
+
* Asynchronously returns an API handle for the given Application identity.
|
|
987
|
+
*
|
|
988
|
+
* @remarks Wrapping an Application identity that does not yet exist will *not* throw an error, and instead
|
|
989
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
990
|
+
* for an Application throughout its entire lifecycle.
|
|
987
991
|
*
|
|
988
992
|
* @example
|
|
989
993
|
*
|
|
@@ -997,7 +1001,11 @@ declare class ApplicationModule extends Base {
|
|
|
997
1001
|
*/
|
|
998
1002
|
wrap(identity: OpenFin.ApplicationIdentity): Promise<OpenFin.Application>;
|
|
999
1003
|
/**
|
|
1000
|
-
* Synchronously returns an
|
|
1004
|
+
* Synchronously returns an API handle for the given Application identity.
|
|
1005
|
+
*
|
|
1006
|
+
* @remarks Wrapping an Application identity that does not yet exist will *not* throw an error, and instead
|
|
1007
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
1008
|
+
* for an Aplication throughout its entire lifecycle.
|
|
1001
1009
|
*
|
|
1002
1010
|
* @example
|
|
1003
1011
|
*
|
|
@@ -3808,7 +3816,7 @@ declare type ConstWindowOptions = {
|
|
|
3808
3816
|
*/
|
|
3809
3817
|
viewVisibility?: ViewVisibilityOptions;
|
|
3810
3818
|
/**
|
|
3811
|
-
* Controls whether an option is inherited from the parent application. Use {
|
|
3819
|
+
* 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.
|
|
3812
3820
|
*/
|
|
3813
3821
|
inheritance?: Partial<InheritableOptions>;
|
|
3814
3822
|
};
|
|
@@ -6193,6 +6201,8 @@ declare class _Frame extends EmitterBase<OpenFin.FrameEvent> {
|
|
|
6193
6201
|
* Returns a frame info object representing the window that the referenced iframe is
|
|
6194
6202
|
* currently embedded in.
|
|
6195
6203
|
*
|
|
6204
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
|
6205
|
+
*
|
|
6196
6206
|
* @example
|
|
6197
6207
|
* ```js
|
|
6198
6208
|
* async function getParentWindow() {
|
|
@@ -6260,8 +6270,11 @@ declare type FrameInfo = {
|
|
|
6260
6270
|
*/
|
|
6261
6271
|
declare class _FrameModule extends Base {
|
|
6262
6272
|
/**
|
|
6263
|
-
* Asynchronously returns
|
|
6264
|
-
*
|
|
6273
|
+
* Asynchronously returns an API handle for the given Frame identity.
|
|
6274
|
+
*
|
|
6275
|
+
* @remarks Wrapping a Frame identity that does not yet exist will *not* throw an error, and instead
|
|
6276
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
6277
|
+
* for a Frame throughout its entire lifecycle.
|
|
6265
6278
|
*
|
|
6266
6279
|
* @example
|
|
6267
6280
|
* ```js
|
|
@@ -6272,8 +6285,11 @@ declare class _FrameModule extends Base {
|
|
|
6272
6285
|
*/
|
|
6273
6286
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.Frame>;
|
|
6274
6287
|
/**
|
|
6275
|
-
* Synchronously returns
|
|
6276
|
-
*
|
|
6288
|
+
* Synchronously returns an API handle for the given Frame identity.
|
|
6289
|
+
*
|
|
6290
|
+
* @remarks Wrapping a Frame identity that does not yet exist will *not* throw an error, and instead
|
|
6291
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
6292
|
+
* for a Frame throughout its entire lifecycle.
|
|
6277
6293
|
*
|
|
6278
6294
|
* @example
|
|
6279
6295
|
* ```js
|
|
@@ -6331,14 +6347,6 @@ declare type GetLogRequestType_2 = {
|
|
|
6331
6347
|
* The name of the running application
|
|
6332
6348
|
*/
|
|
6333
6349
|
name: string;
|
|
6334
|
-
/**
|
|
6335
|
-
* The file length of the log file
|
|
6336
|
-
*/
|
|
6337
|
-
endFile?: string;
|
|
6338
|
-
/**
|
|
6339
|
-
* The size limit of the log file.
|
|
6340
|
-
*/
|
|
6341
|
-
sizeLimit?: number;
|
|
6342
6350
|
};
|
|
6343
6351
|
|
|
6344
6352
|
declare type GetterCall<T> = ApiCall<void, T>;
|
|
@@ -16418,7 +16426,11 @@ declare class ViewModule extends Base {
|
|
|
16418
16426
|
*/
|
|
16419
16427
|
create(options: OpenFin.ViewCreationOptions): Promise<OpenFin.View>;
|
|
16420
16428
|
/**
|
|
16421
|
-
* Asynchronously returns
|
|
16429
|
+
* Asynchronously returns an API handle for the given View identity.
|
|
16430
|
+
*
|
|
16431
|
+
* @remarks Wrapping a View identity that does not yet exist will *not* throw an error, and instead
|
|
16432
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
16433
|
+
* for a View throughout its entire lifecycle.
|
|
16422
16434
|
*
|
|
16423
16435
|
* @example
|
|
16424
16436
|
* ```js
|
|
@@ -16430,7 +16442,11 @@ declare class ViewModule extends Base {
|
|
|
16430
16442
|
*/
|
|
16431
16443
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.View>;
|
|
16432
16444
|
/**
|
|
16433
|
-
* Synchronously returns
|
|
16445
|
+
* Synchronously returns an API handle for the given View identity.
|
|
16446
|
+
*
|
|
16447
|
+
* @remarks Wrapping a View identity that does not yet exist will *not* throw an error, and instead
|
|
16448
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
16449
|
+
* for a View throughout its entire lifecycle.
|
|
16434
16450
|
*
|
|
16435
16451
|
* @example
|
|
16436
16452
|
* ```js
|
|
@@ -18878,7 +18894,11 @@ declare type WindowInitializedEvent = InitializedEvent_2;
|
|
|
18878
18894
|
*/
|
|
18879
18895
|
declare class _WindowModule extends Base {
|
|
18880
18896
|
/**
|
|
18881
|
-
* Asynchronously returns
|
|
18897
|
+
* Asynchronously returns an API handle for the given Window identity.
|
|
18898
|
+
*
|
|
18899
|
+
* @remarks Wrapping a Window identity that does not yet exist will *not* throw an error, and instead
|
|
18900
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
18901
|
+
* for a Window throughout its entire lifecycle.
|
|
18882
18902
|
*
|
|
18883
18903
|
* @example
|
|
18884
18904
|
* ```js
|
|
@@ -18898,7 +18918,11 @@ declare class _WindowModule extends Base {
|
|
|
18898
18918
|
*/
|
|
18899
18919
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.Window>;
|
|
18900
18920
|
/**
|
|
18901
|
-
* Synchronously returns
|
|
18921
|
+
* Synchronously returns an API handle for the given Window identity.
|
|
18922
|
+
*
|
|
18923
|
+
* @remarks Wrapping a Window identity that does not yet exist will *not* throw an error, and instead
|
|
18924
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
18925
|
+
* for a Window throughout its entire lifecycle.
|
|
18902
18926
|
*
|
|
18903
18927
|
* @example
|
|
18904
18928
|
* ```js
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -983,7 +983,11 @@ declare type ApplicationInfo = {
|
|
|
983
983
|
*/
|
|
984
984
|
declare class ApplicationModule extends Base {
|
|
985
985
|
/**
|
|
986
|
-
* Asynchronously returns an
|
|
986
|
+
* Asynchronously returns an API handle for the given Application identity.
|
|
987
|
+
*
|
|
988
|
+
* @remarks Wrapping an Application identity that does not yet exist will *not* throw an error, and instead
|
|
989
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
990
|
+
* for an Application throughout its entire lifecycle.
|
|
987
991
|
*
|
|
988
992
|
* @example
|
|
989
993
|
*
|
|
@@ -997,7 +1001,11 @@ declare class ApplicationModule extends Base {
|
|
|
997
1001
|
*/
|
|
998
1002
|
wrap(identity: OpenFin.ApplicationIdentity): Promise<OpenFin.Application>;
|
|
999
1003
|
/**
|
|
1000
|
-
* Synchronously returns an
|
|
1004
|
+
* Synchronously returns an API handle for the given Application identity.
|
|
1005
|
+
*
|
|
1006
|
+
* @remarks Wrapping an Application identity that does not yet exist will *not* throw an error, and instead
|
|
1007
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
1008
|
+
* for an Aplication throughout its entire lifecycle.
|
|
1001
1009
|
*
|
|
1002
1010
|
* @example
|
|
1003
1011
|
*
|
|
@@ -3808,7 +3816,7 @@ declare type ConstWindowOptions = {
|
|
|
3808
3816
|
*/
|
|
3809
3817
|
viewVisibility?: ViewVisibilityOptions;
|
|
3810
3818
|
/**
|
|
3811
|
-
* Controls whether an option is inherited from the parent application. Use {
|
|
3819
|
+
* 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.
|
|
3812
3820
|
*/
|
|
3813
3821
|
inheritance?: Partial<InheritableOptions>;
|
|
3814
3822
|
};
|
|
@@ -6193,6 +6201,8 @@ declare class _Frame extends EmitterBase<OpenFin.FrameEvent> {
|
|
|
6193
6201
|
* Returns a frame info object representing the window that the referenced iframe is
|
|
6194
6202
|
* currently embedded in.
|
|
6195
6203
|
*
|
|
6204
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
|
6205
|
+
*
|
|
6196
6206
|
* @example
|
|
6197
6207
|
* ```js
|
|
6198
6208
|
* async function getParentWindow() {
|
|
@@ -6260,8 +6270,11 @@ declare type FrameInfo = {
|
|
|
6260
6270
|
*/
|
|
6261
6271
|
declare class _FrameModule extends Base {
|
|
6262
6272
|
/**
|
|
6263
|
-
* Asynchronously returns
|
|
6264
|
-
*
|
|
6273
|
+
* Asynchronously returns an API handle for the given Frame identity.
|
|
6274
|
+
*
|
|
6275
|
+
* @remarks Wrapping a Frame identity that does not yet exist will *not* throw an error, and instead
|
|
6276
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
6277
|
+
* for a Frame throughout its entire lifecycle.
|
|
6265
6278
|
*
|
|
6266
6279
|
* @example
|
|
6267
6280
|
* ```js
|
|
@@ -6272,8 +6285,11 @@ declare class _FrameModule extends Base {
|
|
|
6272
6285
|
*/
|
|
6273
6286
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.Frame>;
|
|
6274
6287
|
/**
|
|
6275
|
-
* Synchronously returns
|
|
6276
|
-
*
|
|
6288
|
+
* Synchronously returns an API handle for the given Frame identity.
|
|
6289
|
+
*
|
|
6290
|
+
* @remarks Wrapping a Frame identity that does not yet exist will *not* throw an error, and instead
|
|
6291
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
6292
|
+
* for a Frame throughout its entire lifecycle.
|
|
6277
6293
|
*
|
|
6278
6294
|
* @example
|
|
6279
6295
|
* ```js
|
|
@@ -6331,14 +6347,6 @@ declare type GetLogRequestType_2 = {
|
|
|
6331
6347
|
* The name of the running application
|
|
6332
6348
|
*/
|
|
6333
6349
|
name: string;
|
|
6334
|
-
/**
|
|
6335
|
-
* The file length of the log file
|
|
6336
|
-
*/
|
|
6337
|
-
endFile?: string;
|
|
6338
|
-
/**
|
|
6339
|
-
* The size limit of the log file.
|
|
6340
|
-
*/
|
|
6341
|
-
sizeLimit?: number;
|
|
6342
6350
|
};
|
|
6343
6351
|
|
|
6344
6352
|
declare type GetterCall<T> = ApiCall<void, T>;
|
|
@@ -16418,7 +16426,11 @@ declare class ViewModule extends Base {
|
|
|
16418
16426
|
*/
|
|
16419
16427
|
create(options: OpenFin.ViewCreationOptions): Promise<OpenFin.View>;
|
|
16420
16428
|
/**
|
|
16421
|
-
* Asynchronously returns
|
|
16429
|
+
* Asynchronously returns an API handle for the given View identity.
|
|
16430
|
+
*
|
|
16431
|
+
* @remarks Wrapping a View identity that does not yet exist will *not* throw an error, and instead
|
|
16432
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
16433
|
+
* for a View throughout its entire lifecycle.
|
|
16422
16434
|
*
|
|
16423
16435
|
* @example
|
|
16424
16436
|
* ```js
|
|
@@ -16430,7 +16442,11 @@ declare class ViewModule extends Base {
|
|
|
16430
16442
|
*/
|
|
16431
16443
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.View>;
|
|
16432
16444
|
/**
|
|
16433
|
-
* Synchronously returns
|
|
16445
|
+
* Synchronously returns an API handle for the given View identity.
|
|
16446
|
+
*
|
|
16447
|
+
* @remarks Wrapping a View identity that does not yet exist will *not* throw an error, and instead
|
|
16448
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
16449
|
+
* for a View throughout its entire lifecycle.
|
|
16434
16450
|
*
|
|
16435
16451
|
* @example
|
|
16436
16452
|
* ```js
|
|
@@ -18878,7 +18894,11 @@ declare type WindowInitializedEvent = InitializedEvent_2;
|
|
|
18878
18894
|
*/
|
|
18879
18895
|
declare class _WindowModule extends Base {
|
|
18880
18896
|
/**
|
|
18881
|
-
* Asynchronously returns
|
|
18897
|
+
* Asynchronously returns an API handle for the given Window identity.
|
|
18898
|
+
*
|
|
18899
|
+
* @remarks Wrapping a Window identity that does not yet exist will *not* throw an error, and instead
|
|
18900
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
18901
|
+
* for a Window throughout its entire lifecycle.
|
|
18882
18902
|
*
|
|
18883
18903
|
* @example
|
|
18884
18904
|
* ```js
|
|
@@ -18898,7 +18918,11 @@ declare class _WindowModule extends Base {
|
|
|
18898
18918
|
*/
|
|
18899
18919
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.Window>;
|
|
18900
18920
|
/**
|
|
18901
|
-
* Synchronously returns
|
|
18921
|
+
* Synchronously returns an API handle for the given Window identity.
|
|
18922
|
+
*
|
|
18923
|
+
* @remarks Wrapping a Window identity that does not yet exist will *not* throw an error, and instead
|
|
18924
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
18925
|
+
* for a Window throughout its entire lifecycle.
|
|
18902
18926
|
*
|
|
18903
18927
|
* @example
|
|
18904
18928
|
* ```js
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -983,7 +983,11 @@ declare type ApplicationInfo = {
|
|
|
983
983
|
*/
|
|
984
984
|
declare class ApplicationModule extends Base {
|
|
985
985
|
/**
|
|
986
|
-
* Asynchronously returns an
|
|
986
|
+
* Asynchronously returns an API handle for the given Application identity.
|
|
987
|
+
*
|
|
988
|
+
* @remarks Wrapping an Application identity that does not yet exist will *not* throw an error, and instead
|
|
989
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
990
|
+
* for an Application throughout its entire lifecycle.
|
|
987
991
|
*
|
|
988
992
|
* @example
|
|
989
993
|
*
|
|
@@ -997,7 +1001,11 @@ declare class ApplicationModule extends Base {
|
|
|
997
1001
|
*/
|
|
998
1002
|
wrap(identity: OpenFin.ApplicationIdentity): Promise<OpenFin.Application>;
|
|
999
1003
|
/**
|
|
1000
|
-
* Synchronously returns an
|
|
1004
|
+
* Synchronously returns an API handle for the given Application identity.
|
|
1005
|
+
*
|
|
1006
|
+
* @remarks Wrapping an Application identity that does not yet exist will *not* throw an error, and instead
|
|
1007
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
1008
|
+
* for an Aplication throughout its entire lifecycle.
|
|
1001
1009
|
*
|
|
1002
1010
|
* @example
|
|
1003
1011
|
*
|
|
@@ -3808,7 +3816,7 @@ declare type ConstWindowOptions = {
|
|
|
3808
3816
|
*/
|
|
3809
3817
|
viewVisibility?: ViewVisibilityOptions;
|
|
3810
3818
|
/**
|
|
3811
|
-
* Controls whether an option is inherited from the parent application. Use {
|
|
3819
|
+
* 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.
|
|
3812
3820
|
*/
|
|
3813
3821
|
inheritance?: Partial<InheritableOptions>;
|
|
3814
3822
|
};
|
|
@@ -6193,6 +6201,8 @@ declare class _Frame extends EmitterBase<OpenFin.FrameEvent> {
|
|
|
6193
6201
|
* Returns a frame info object representing the window that the referenced iframe is
|
|
6194
6202
|
* currently embedded in.
|
|
6195
6203
|
*
|
|
6204
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
|
6205
|
+
*
|
|
6196
6206
|
* @example
|
|
6197
6207
|
* ```js
|
|
6198
6208
|
* async function getParentWindow() {
|
|
@@ -6260,8 +6270,11 @@ declare type FrameInfo = {
|
|
|
6260
6270
|
*/
|
|
6261
6271
|
declare class _FrameModule extends Base {
|
|
6262
6272
|
/**
|
|
6263
|
-
* Asynchronously returns
|
|
6264
|
-
*
|
|
6273
|
+
* Asynchronously returns an API handle for the given Frame identity.
|
|
6274
|
+
*
|
|
6275
|
+
* @remarks Wrapping a Frame identity that does not yet exist will *not* throw an error, and instead
|
|
6276
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
6277
|
+
* for a Frame throughout its entire lifecycle.
|
|
6265
6278
|
*
|
|
6266
6279
|
* @example
|
|
6267
6280
|
* ```js
|
|
@@ -6272,8 +6285,11 @@ declare class _FrameModule extends Base {
|
|
|
6272
6285
|
*/
|
|
6273
6286
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.Frame>;
|
|
6274
6287
|
/**
|
|
6275
|
-
* Synchronously returns
|
|
6276
|
-
*
|
|
6288
|
+
* Synchronously returns an API handle for the given Frame identity.
|
|
6289
|
+
*
|
|
6290
|
+
* @remarks Wrapping a Frame identity that does not yet exist will *not* throw an error, and instead
|
|
6291
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
6292
|
+
* for a Frame throughout its entire lifecycle.
|
|
6277
6293
|
*
|
|
6278
6294
|
* @example
|
|
6279
6295
|
* ```js
|
|
@@ -6331,14 +6347,6 @@ declare type GetLogRequestType_2 = {
|
|
|
6331
6347
|
* The name of the running application
|
|
6332
6348
|
*/
|
|
6333
6349
|
name: string;
|
|
6334
|
-
/**
|
|
6335
|
-
* The file length of the log file
|
|
6336
|
-
*/
|
|
6337
|
-
endFile?: string;
|
|
6338
|
-
/**
|
|
6339
|
-
* The size limit of the log file.
|
|
6340
|
-
*/
|
|
6341
|
-
sizeLimit?: number;
|
|
6342
6350
|
};
|
|
6343
6351
|
|
|
6344
6352
|
declare type GetterCall<T> = ApiCall<void, T>;
|
|
@@ -16418,7 +16426,11 @@ declare class ViewModule extends Base {
|
|
|
16418
16426
|
*/
|
|
16419
16427
|
create(options: OpenFin.ViewCreationOptions): Promise<OpenFin.View>;
|
|
16420
16428
|
/**
|
|
16421
|
-
* Asynchronously returns
|
|
16429
|
+
* Asynchronously returns an API handle for the given View identity.
|
|
16430
|
+
*
|
|
16431
|
+
* @remarks Wrapping a View identity that does not yet exist will *not* throw an error, and instead
|
|
16432
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
16433
|
+
* for a View throughout its entire lifecycle.
|
|
16422
16434
|
*
|
|
16423
16435
|
* @example
|
|
16424
16436
|
* ```js
|
|
@@ -16430,7 +16442,11 @@ declare class ViewModule extends Base {
|
|
|
16430
16442
|
*/
|
|
16431
16443
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.View>;
|
|
16432
16444
|
/**
|
|
16433
|
-
* Synchronously returns
|
|
16445
|
+
* Synchronously returns an API handle for the given View identity.
|
|
16446
|
+
*
|
|
16447
|
+
* @remarks Wrapping a View identity that does not yet exist will *not* throw an error, and instead
|
|
16448
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
16449
|
+
* for a View throughout its entire lifecycle.
|
|
16434
16450
|
*
|
|
16435
16451
|
* @example
|
|
16436
16452
|
* ```js
|
|
@@ -18878,7 +18894,11 @@ declare type WindowInitializedEvent = InitializedEvent_2;
|
|
|
18878
18894
|
*/
|
|
18879
18895
|
declare class _WindowModule extends Base {
|
|
18880
18896
|
/**
|
|
18881
|
-
* Asynchronously returns
|
|
18897
|
+
* Asynchronously returns an API handle for the given Window identity.
|
|
18898
|
+
*
|
|
18899
|
+
* @remarks Wrapping a Window identity that does not yet exist will *not* throw an error, and instead
|
|
18900
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
18901
|
+
* for a Window throughout its entire lifecycle.
|
|
18882
18902
|
*
|
|
18883
18903
|
* @example
|
|
18884
18904
|
* ```js
|
|
@@ -18898,7 +18918,11 @@ declare class _WindowModule extends Base {
|
|
|
18898
18918
|
*/
|
|
18899
18919
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.Window>;
|
|
18900
18920
|
/**
|
|
18901
|
-
* Synchronously returns
|
|
18921
|
+
* Synchronously returns an API handle for the given Window identity.
|
|
18922
|
+
*
|
|
18923
|
+
* @remarks Wrapping a Window identity that does not yet exist will *not* throw an error, and instead
|
|
18924
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
18925
|
+
* for a Window throughout its entire lifecycle.
|
|
18902
18926
|
*
|
|
18903
18927
|
* @example
|
|
18904
18928
|
* ```js
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -989,7 +989,11 @@ declare type ApplicationInfo = {
|
|
|
989
989
|
*/
|
|
990
990
|
declare class ApplicationModule extends Base {
|
|
991
991
|
/**
|
|
992
|
-
* Asynchronously returns an
|
|
992
|
+
* Asynchronously returns an API handle for the given Application identity.
|
|
993
|
+
*
|
|
994
|
+
* @remarks Wrapping an Application identity that does not yet exist will *not* throw an error, and instead
|
|
995
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
996
|
+
* for an Application throughout its entire lifecycle.
|
|
993
997
|
*
|
|
994
998
|
* @example
|
|
995
999
|
*
|
|
@@ -1003,7 +1007,11 @@ declare class ApplicationModule extends Base {
|
|
|
1003
1007
|
*/
|
|
1004
1008
|
wrap(identity: OpenFin.ApplicationIdentity): Promise<OpenFin.Application>;
|
|
1005
1009
|
/**
|
|
1006
|
-
* Synchronously returns an
|
|
1010
|
+
* Synchronously returns an API handle for the given Application identity.
|
|
1011
|
+
*
|
|
1012
|
+
* @remarks Wrapping an Application identity that does not yet exist will *not* throw an error, and instead
|
|
1013
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
1014
|
+
* for an Aplication throughout its entire lifecycle.
|
|
1007
1015
|
*
|
|
1008
1016
|
* @example
|
|
1009
1017
|
*
|
|
@@ -3863,7 +3871,7 @@ declare type ConstWindowOptions = {
|
|
|
3863
3871
|
*/
|
|
3864
3872
|
viewVisibility?: ViewVisibilityOptions;
|
|
3865
3873
|
/**
|
|
3866
|
-
* Controls whether an option is inherited from the parent application. Use {
|
|
3874
|
+
* 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.
|
|
3867
3875
|
*/
|
|
3868
3876
|
inheritance?: Partial<InheritableOptions>;
|
|
3869
3877
|
};
|
|
@@ -6277,6 +6285,8 @@ declare class _Frame extends EmitterBase<OpenFin.FrameEvent> {
|
|
|
6277
6285
|
* Returns a frame info object representing the window that the referenced iframe is
|
|
6278
6286
|
* currently embedded in.
|
|
6279
6287
|
*
|
|
6288
|
+
* @remarks If the frame is embedded in a view, this will return an invalid stub with empty fields.
|
|
6289
|
+
*
|
|
6280
6290
|
* @example
|
|
6281
6291
|
* ```js
|
|
6282
6292
|
* async function getParentWindow() {
|
|
@@ -6344,8 +6354,11 @@ declare type FrameInfo = {
|
|
|
6344
6354
|
*/
|
|
6345
6355
|
declare class _FrameModule extends Base {
|
|
6346
6356
|
/**
|
|
6347
|
-
* Asynchronously returns
|
|
6348
|
-
*
|
|
6357
|
+
* Asynchronously returns an API handle for the given Frame identity.
|
|
6358
|
+
*
|
|
6359
|
+
* @remarks Wrapping a Frame identity that does not yet exist will *not* throw an error, and instead
|
|
6360
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
6361
|
+
* for a Frame throughout its entire lifecycle.
|
|
6349
6362
|
*
|
|
6350
6363
|
* @example
|
|
6351
6364
|
* ```js
|
|
@@ -6356,8 +6369,11 @@ declare class _FrameModule extends Base {
|
|
|
6356
6369
|
*/
|
|
6357
6370
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.Frame>;
|
|
6358
6371
|
/**
|
|
6359
|
-
* Synchronously returns
|
|
6360
|
-
*
|
|
6372
|
+
* Synchronously returns an API handle for the given Frame identity.
|
|
6373
|
+
*
|
|
6374
|
+
* @remarks Wrapping a Frame identity that does not yet exist will *not* throw an error, and instead
|
|
6375
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
6376
|
+
* for a Frame throughout its entire lifecycle.
|
|
6361
6377
|
*
|
|
6362
6378
|
* @example
|
|
6363
6379
|
* ```js
|
|
@@ -6415,14 +6431,6 @@ declare type GetLogRequestType_2 = {
|
|
|
6415
6431
|
* The name of the running application
|
|
6416
6432
|
*/
|
|
6417
6433
|
name: string;
|
|
6418
|
-
/**
|
|
6419
|
-
* The file length of the log file
|
|
6420
|
-
*/
|
|
6421
|
-
endFile?: string;
|
|
6422
|
-
/**
|
|
6423
|
-
* The size limit of the log file.
|
|
6424
|
-
*/
|
|
6425
|
-
sizeLimit?: number;
|
|
6426
6434
|
};
|
|
6427
6435
|
|
|
6428
6436
|
declare type GetterCall<T> = ApiCall<void, T>;
|
|
@@ -16857,7 +16865,11 @@ declare class ViewModule extends Base {
|
|
|
16857
16865
|
*/
|
|
16858
16866
|
create(options: OpenFin.ViewCreationOptions): Promise<OpenFin.View>;
|
|
16859
16867
|
/**
|
|
16860
|
-
* Asynchronously returns
|
|
16868
|
+
* Asynchronously returns an API handle for the given View identity.
|
|
16869
|
+
*
|
|
16870
|
+
* @remarks Wrapping a View identity that does not yet exist will *not* throw an error, and instead
|
|
16871
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
16872
|
+
* for a View throughout its entire lifecycle.
|
|
16861
16873
|
*
|
|
16862
16874
|
* @example
|
|
16863
16875
|
* ```js
|
|
@@ -16869,7 +16881,11 @@ declare class ViewModule extends Base {
|
|
|
16869
16881
|
*/
|
|
16870
16882
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.View>;
|
|
16871
16883
|
/**
|
|
16872
|
-
* Synchronously returns
|
|
16884
|
+
* Synchronously returns an API handle for the given View identity.
|
|
16885
|
+
*
|
|
16886
|
+
* @remarks Wrapping a View identity that does not yet exist will *not* throw an error, and instead
|
|
16887
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
16888
|
+
* for a View throughout its entire lifecycle.
|
|
16873
16889
|
*
|
|
16874
16890
|
* @example
|
|
16875
16891
|
* ```js
|
|
@@ -19324,7 +19340,11 @@ declare type WindowInitializedEvent = InitializedEvent_2;
|
|
|
19324
19340
|
*/
|
|
19325
19341
|
declare class _WindowModule extends Base {
|
|
19326
19342
|
/**
|
|
19327
|
-
* Asynchronously returns
|
|
19343
|
+
* Asynchronously returns an API handle for the given Window identity.
|
|
19344
|
+
*
|
|
19345
|
+
* @remarks Wrapping a Window identity that does not yet exist will *not* throw an error, and instead
|
|
19346
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
19347
|
+
* for a Window throughout its entire lifecycle.
|
|
19328
19348
|
*
|
|
19329
19349
|
* @example
|
|
19330
19350
|
* ```js
|
|
@@ -19344,7 +19364,11 @@ declare class _WindowModule extends Base {
|
|
|
19344
19364
|
*/
|
|
19345
19365
|
wrap(identity: OpenFin.Identity): Promise<OpenFin.Window>;
|
|
19346
19366
|
/**
|
|
19347
|
-
* Synchronously returns
|
|
19367
|
+
* Synchronously returns an API handle for the given Window identity.
|
|
19368
|
+
*
|
|
19369
|
+
* @remarks Wrapping a Window identity that does not yet exist will *not* throw an error, and instead
|
|
19370
|
+
* returns a stub object that cannot yet perform rendering tasks. This can be useful for plumbing eventing
|
|
19371
|
+
* for a Window throughout its entire lifecycle.
|
|
19348
19372
|
*
|
|
19349
19373
|
* @example
|
|
19350
19374
|
* ```js
|