@openfin/fdc3-api 39.83.1 → 39.83.3
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 +45 -1
- package/out/fdc3-api-beta.d.ts +45 -1
- package/out/fdc3-api-public.d.ts +45 -1
- package/out/fdc3-api.d.ts +45 -1
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ declare type Accelerator = {
|
|
|
42
42
|
zoom: boolean;
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Generated when a View is added to a layout.
|
|
47
|
+
* @interface
|
|
48
|
+
*/
|
|
49
|
+
declare type AddedToLayoutEvent = BaseEvent_4 & {
|
|
50
|
+
type: 'added-to-layout';
|
|
51
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
52
|
+
};
|
|
53
|
+
|
|
45
54
|
/**
|
|
46
55
|
* Options to use when adding a view to a {@link TabStack}.
|
|
47
56
|
*
|
|
@@ -4755,7 +4764,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4755
4764
|
*/
|
|
4756
4765
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4757
4766
|
target: OpenFin.Identity;
|
|
4758
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4767
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4759
4768
|
|
|
4760
4769
|
/**
|
|
4761
4770
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -5497,6 +5506,10 @@ declare type FileDownloadEvent = {
|
|
|
5497
5506
|
* The number of bytes of the item that have already been downloaded.
|
|
5498
5507
|
*/
|
|
5499
5508
|
downloadedBytes: number;
|
|
5509
|
+
/**
|
|
5510
|
+
* Unique identifier for the downloaded file.
|
|
5511
|
+
*/
|
|
5512
|
+
fileUuid: string;
|
|
5500
5513
|
} & NamedEvent;
|
|
5501
5514
|
|
|
5502
5515
|
/**
|
|
@@ -8563,6 +8576,23 @@ declare type LogLevel = OpenFin.LogLevel;
|
|
|
8563
8576
|
*/
|
|
8564
8577
|
declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
8565
8578
|
|
|
8579
|
+
declare type LogUploaderUIOptions = {
|
|
8580
|
+
title?: string;
|
|
8581
|
+
icon?: string;
|
|
8582
|
+
header?: string;
|
|
8583
|
+
description?: string;
|
|
8584
|
+
email?: string;
|
|
8585
|
+
website?: string;
|
|
8586
|
+
websiteDescription?: string;
|
|
8587
|
+
};
|
|
8588
|
+
|
|
8589
|
+
declare type LogUploadOptions = {
|
|
8590
|
+
endpoint: string;
|
|
8591
|
+
manifests?: string[];
|
|
8592
|
+
logs?: string[];
|
|
8593
|
+
ui?: LogUploaderUIOptions;
|
|
8594
|
+
};
|
|
8595
|
+
|
|
8566
8596
|
/**
|
|
8567
8597
|
* @interface
|
|
8568
8598
|
*/
|
|
@@ -8621,6 +8651,7 @@ declare type Manifest = {
|
|
|
8621
8651
|
enableErrorReporting?: boolean;
|
|
8622
8652
|
};
|
|
8623
8653
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
8654
|
+
logUpload?: LogUploadOptions;
|
|
8624
8655
|
};
|
|
8625
8656
|
|
|
8626
8657
|
/**
|
|
@@ -9482,6 +9513,8 @@ declare namespace OpenFin {
|
|
|
9482
9513
|
PlatformViewCreationOptions,
|
|
9483
9514
|
ProcessAffinityStrategy,
|
|
9484
9515
|
PlatformOptions,
|
|
9516
|
+
LogUploaderUIOptions,
|
|
9517
|
+
LogUploadOptions,
|
|
9485
9518
|
Manifest,
|
|
9486
9519
|
LayoutContent,
|
|
9487
9520
|
LayoutItemConfig,
|
|
@@ -12226,6 +12259,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12226
12259
|
token: string;
|
|
12227
12260
|
}
|
|
12228
12261
|
|
|
12262
|
+
/**
|
|
12263
|
+
* Generated when a View is removed from a layout.
|
|
12264
|
+
* @interface
|
|
12265
|
+
*/
|
|
12266
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12267
|
+
type: 'removed-from-layout';
|
|
12268
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12269
|
+
};
|
|
12270
|
+
|
|
12229
12271
|
/**
|
|
12230
12272
|
* @interface
|
|
12231
12273
|
*/
|
|
@@ -15582,6 +15624,8 @@ declare namespace ViewEvents {
|
|
|
15582
15624
|
BaseEvent_4 as BaseEvent,
|
|
15583
15625
|
BaseViewEvent,
|
|
15584
15626
|
TargetChangedEvent,
|
|
15627
|
+
AddedToLayoutEvent,
|
|
15628
|
+
RemovedFromLayoutEvent,
|
|
15585
15629
|
NonPropagatedViewEvent,
|
|
15586
15630
|
CreatedEvent,
|
|
15587
15631
|
DestroyedEvent,
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ declare type Accelerator = {
|
|
|
42
42
|
zoom: boolean;
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Generated when a View is added to a layout.
|
|
47
|
+
* @interface
|
|
48
|
+
*/
|
|
49
|
+
declare type AddedToLayoutEvent = BaseEvent_4 & {
|
|
50
|
+
type: 'added-to-layout';
|
|
51
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
52
|
+
};
|
|
53
|
+
|
|
45
54
|
/**
|
|
46
55
|
* Options to use when adding a view to a {@link TabStack}.
|
|
47
56
|
*
|
|
@@ -4755,7 +4764,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4755
4764
|
*/
|
|
4756
4765
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4757
4766
|
target: OpenFin.Identity;
|
|
4758
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4767
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4759
4768
|
|
|
4760
4769
|
/**
|
|
4761
4770
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -5497,6 +5506,10 @@ declare type FileDownloadEvent = {
|
|
|
5497
5506
|
* The number of bytes of the item that have already been downloaded.
|
|
5498
5507
|
*/
|
|
5499
5508
|
downloadedBytes: number;
|
|
5509
|
+
/**
|
|
5510
|
+
* Unique identifier for the downloaded file.
|
|
5511
|
+
*/
|
|
5512
|
+
fileUuid: string;
|
|
5500
5513
|
} & NamedEvent;
|
|
5501
5514
|
|
|
5502
5515
|
/**
|
|
@@ -8563,6 +8576,23 @@ declare type LogLevel = OpenFin.LogLevel;
|
|
|
8563
8576
|
*/
|
|
8564
8577
|
declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
8565
8578
|
|
|
8579
|
+
declare type LogUploaderUIOptions = {
|
|
8580
|
+
title?: string;
|
|
8581
|
+
icon?: string;
|
|
8582
|
+
header?: string;
|
|
8583
|
+
description?: string;
|
|
8584
|
+
email?: string;
|
|
8585
|
+
website?: string;
|
|
8586
|
+
websiteDescription?: string;
|
|
8587
|
+
};
|
|
8588
|
+
|
|
8589
|
+
declare type LogUploadOptions = {
|
|
8590
|
+
endpoint: string;
|
|
8591
|
+
manifests?: string[];
|
|
8592
|
+
logs?: string[];
|
|
8593
|
+
ui?: LogUploaderUIOptions;
|
|
8594
|
+
};
|
|
8595
|
+
|
|
8566
8596
|
/**
|
|
8567
8597
|
* @interface
|
|
8568
8598
|
*/
|
|
@@ -8621,6 +8651,7 @@ declare type Manifest = {
|
|
|
8621
8651
|
enableErrorReporting?: boolean;
|
|
8622
8652
|
};
|
|
8623
8653
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
8654
|
+
logUpload?: LogUploadOptions;
|
|
8624
8655
|
};
|
|
8625
8656
|
|
|
8626
8657
|
/**
|
|
@@ -9482,6 +9513,8 @@ declare namespace OpenFin {
|
|
|
9482
9513
|
PlatformViewCreationOptions,
|
|
9483
9514
|
ProcessAffinityStrategy,
|
|
9484
9515
|
PlatformOptions,
|
|
9516
|
+
LogUploaderUIOptions,
|
|
9517
|
+
LogUploadOptions,
|
|
9485
9518
|
Manifest,
|
|
9486
9519
|
LayoutContent,
|
|
9487
9520
|
LayoutItemConfig,
|
|
@@ -12226,6 +12259,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12226
12259
|
token: string;
|
|
12227
12260
|
}
|
|
12228
12261
|
|
|
12262
|
+
/**
|
|
12263
|
+
* Generated when a View is removed from a layout.
|
|
12264
|
+
* @interface
|
|
12265
|
+
*/
|
|
12266
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12267
|
+
type: 'removed-from-layout';
|
|
12268
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12269
|
+
};
|
|
12270
|
+
|
|
12229
12271
|
/**
|
|
12230
12272
|
* @interface
|
|
12231
12273
|
*/
|
|
@@ -15582,6 +15624,8 @@ declare namespace ViewEvents {
|
|
|
15582
15624
|
BaseEvent_4 as BaseEvent,
|
|
15583
15625
|
BaseViewEvent,
|
|
15584
15626
|
TargetChangedEvent,
|
|
15627
|
+
AddedToLayoutEvent,
|
|
15628
|
+
RemovedFromLayoutEvent,
|
|
15585
15629
|
NonPropagatedViewEvent,
|
|
15586
15630
|
CreatedEvent,
|
|
15587
15631
|
DestroyedEvent,
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ declare type Accelerator = {
|
|
|
42
42
|
zoom: boolean;
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Generated when a View is added to a layout.
|
|
47
|
+
* @interface
|
|
48
|
+
*/
|
|
49
|
+
declare type AddedToLayoutEvent = BaseEvent_4 & {
|
|
50
|
+
type: 'added-to-layout';
|
|
51
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
52
|
+
};
|
|
53
|
+
|
|
45
54
|
/**
|
|
46
55
|
* Options to use when adding a view to a {@link TabStack}.
|
|
47
56
|
*
|
|
@@ -4755,7 +4764,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4755
4764
|
*/
|
|
4756
4765
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4757
4766
|
target: OpenFin.Identity;
|
|
4758
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4767
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4759
4768
|
|
|
4760
4769
|
/**
|
|
4761
4770
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -5497,6 +5506,10 @@ declare type FileDownloadEvent = {
|
|
|
5497
5506
|
* The number of bytes of the item that have already been downloaded.
|
|
5498
5507
|
*/
|
|
5499
5508
|
downloadedBytes: number;
|
|
5509
|
+
/**
|
|
5510
|
+
* Unique identifier for the downloaded file.
|
|
5511
|
+
*/
|
|
5512
|
+
fileUuid: string;
|
|
5500
5513
|
} & NamedEvent;
|
|
5501
5514
|
|
|
5502
5515
|
/**
|
|
@@ -8563,6 +8576,23 @@ declare type LogLevel = OpenFin.LogLevel;
|
|
|
8563
8576
|
*/
|
|
8564
8577
|
declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
8565
8578
|
|
|
8579
|
+
declare type LogUploaderUIOptions = {
|
|
8580
|
+
title?: string;
|
|
8581
|
+
icon?: string;
|
|
8582
|
+
header?: string;
|
|
8583
|
+
description?: string;
|
|
8584
|
+
email?: string;
|
|
8585
|
+
website?: string;
|
|
8586
|
+
websiteDescription?: string;
|
|
8587
|
+
};
|
|
8588
|
+
|
|
8589
|
+
declare type LogUploadOptions = {
|
|
8590
|
+
endpoint: string;
|
|
8591
|
+
manifests?: string[];
|
|
8592
|
+
logs?: string[];
|
|
8593
|
+
ui?: LogUploaderUIOptions;
|
|
8594
|
+
};
|
|
8595
|
+
|
|
8566
8596
|
/**
|
|
8567
8597
|
* @interface
|
|
8568
8598
|
*/
|
|
@@ -8621,6 +8651,7 @@ declare type Manifest = {
|
|
|
8621
8651
|
enableErrorReporting?: boolean;
|
|
8622
8652
|
};
|
|
8623
8653
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
8654
|
+
logUpload?: LogUploadOptions;
|
|
8624
8655
|
};
|
|
8625
8656
|
|
|
8626
8657
|
/**
|
|
@@ -9482,6 +9513,8 @@ declare namespace OpenFin {
|
|
|
9482
9513
|
PlatformViewCreationOptions,
|
|
9483
9514
|
ProcessAffinityStrategy,
|
|
9484
9515
|
PlatformOptions,
|
|
9516
|
+
LogUploaderUIOptions,
|
|
9517
|
+
LogUploadOptions,
|
|
9485
9518
|
Manifest,
|
|
9486
9519
|
LayoutContent,
|
|
9487
9520
|
LayoutItemConfig,
|
|
@@ -12226,6 +12259,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12226
12259
|
token: string;
|
|
12227
12260
|
}
|
|
12228
12261
|
|
|
12262
|
+
/**
|
|
12263
|
+
* Generated when a View is removed from a layout.
|
|
12264
|
+
* @interface
|
|
12265
|
+
*/
|
|
12266
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12267
|
+
type: 'removed-from-layout';
|
|
12268
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12269
|
+
};
|
|
12270
|
+
|
|
12229
12271
|
/**
|
|
12230
12272
|
* @interface
|
|
12231
12273
|
*/
|
|
@@ -15582,6 +15624,8 @@ declare namespace ViewEvents {
|
|
|
15582
15624
|
BaseEvent_4 as BaseEvent,
|
|
15583
15625
|
BaseViewEvent,
|
|
15584
15626
|
TargetChangedEvent,
|
|
15627
|
+
AddedToLayoutEvent,
|
|
15628
|
+
RemovedFromLayoutEvent,
|
|
15585
15629
|
NonPropagatedViewEvent,
|
|
15586
15630
|
CreatedEvent,
|
|
15587
15631
|
DestroyedEvent,
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ declare type Accelerator = {
|
|
|
42
42
|
zoom: boolean;
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Generated when a View is added to a layout.
|
|
47
|
+
* @interface
|
|
48
|
+
*/
|
|
49
|
+
declare type AddedToLayoutEvent = BaseEvent_4 & {
|
|
50
|
+
type: 'added-to-layout';
|
|
51
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
52
|
+
};
|
|
53
|
+
|
|
45
54
|
/**
|
|
46
55
|
* Options to use when adding a view to a {@link TabStack}.
|
|
47
56
|
*
|
|
@@ -4819,7 +4828,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4819
4828
|
*/
|
|
4820
4829
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4821
4830
|
target: OpenFin.Identity;
|
|
4822
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4831
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4823
4832
|
|
|
4824
4833
|
/**
|
|
4825
4834
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -5582,6 +5591,10 @@ declare type FileDownloadEvent = {
|
|
|
5582
5591
|
* The number of bytes of the item that have already been downloaded.
|
|
5583
5592
|
*/
|
|
5584
5593
|
downloadedBytes: number;
|
|
5594
|
+
/**
|
|
5595
|
+
* Unique identifier for the downloaded file.
|
|
5596
|
+
*/
|
|
5597
|
+
fileUuid: string;
|
|
5585
5598
|
} & NamedEvent;
|
|
5586
5599
|
|
|
5587
5600
|
/**
|
|
@@ -8856,6 +8869,23 @@ declare type LogLevel = OpenFin.LogLevel;
|
|
|
8856
8869
|
*/
|
|
8857
8870
|
declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
8858
8871
|
|
|
8872
|
+
declare type LogUploaderUIOptions = {
|
|
8873
|
+
title?: string;
|
|
8874
|
+
icon?: string;
|
|
8875
|
+
header?: string;
|
|
8876
|
+
description?: string;
|
|
8877
|
+
email?: string;
|
|
8878
|
+
website?: string;
|
|
8879
|
+
websiteDescription?: string;
|
|
8880
|
+
};
|
|
8881
|
+
|
|
8882
|
+
declare type LogUploadOptions = {
|
|
8883
|
+
endpoint: string;
|
|
8884
|
+
manifests?: string[];
|
|
8885
|
+
logs?: string[];
|
|
8886
|
+
ui?: LogUploaderUIOptions;
|
|
8887
|
+
};
|
|
8888
|
+
|
|
8859
8889
|
/**
|
|
8860
8890
|
* @interface
|
|
8861
8891
|
*/
|
|
@@ -8914,6 +8944,7 @@ declare type Manifest = {
|
|
|
8914
8944
|
enableErrorReporting?: boolean;
|
|
8915
8945
|
};
|
|
8916
8946
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
8947
|
+
logUpload?: LogUploadOptions;
|
|
8917
8948
|
};
|
|
8918
8949
|
|
|
8919
8950
|
/**
|
|
@@ -9797,6 +9828,8 @@ declare namespace OpenFin {
|
|
|
9797
9828
|
PlatformViewCreationOptions,
|
|
9798
9829
|
ProcessAffinityStrategy,
|
|
9799
9830
|
PlatformOptions,
|
|
9831
|
+
LogUploaderUIOptions,
|
|
9832
|
+
LogUploadOptions,
|
|
9800
9833
|
Manifest,
|
|
9801
9834
|
LayoutContent,
|
|
9802
9835
|
LayoutItemConfig,
|
|
@@ -12619,6 +12652,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12619
12652
|
token: string;
|
|
12620
12653
|
}
|
|
12621
12654
|
|
|
12655
|
+
/**
|
|
12656
|
+
* Generated when a View is removed from a layout.
|
|
12657
|
+
* @interface
|
|
12658
|
+
*/
|
|
12659
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12660
|
+
type: 'removed-from-layout';
|
|
12661
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12662
|
+
};
|
|
12663
|
+
|
|
12622
12664
|
/**
|
|
12623
12665
|
* @interface
|
|
12624
12666
|
*/
|
|
@@ -16025,6 +16067,8 @@ declare namespace ViewEvents {
|
|
|
16025
16067
|
BaseEvent_4 as BaseEvent,
|
|
16026
16068
|
BaseViewEvent,
|
|
16027
16069
|
TargetChangedEvent,
|
|
16070
|
+
AddedToLayoutEvent,
|
|
16071
|
+
RemovedFromLayoutEvent,
|
|
16028
16072
|
NonPropagatedViewEvent,
|
|
16029
16073
|
CreatedEvent,
|
|
16030
16074
|
DestroyedEvent,
|