@openfin/fdc3-api 40.82.4 → 40.82.6

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.
@@ -42,15 +42,6 @@ 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
-
54
45
  /**
55
46
  * Options to use when adding a view to a {@link TabStack}.
56
47
  *
@@ -4716,7 +4707,6 @@ declare type ErrorPlainObject = {
4716
4707
  stack?: string;
4717
4708
  message: string;
4718
4709
  name?: string;
4719
- cause?: Error | ErrorPlainObject;
4720
4710
  toString(): string;
4721
4711
  };
4722
4712
 
@@ -4765,7 +4755,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
4765
4755
  */
4766
4756
  declare type Event_4 = (WebContentsEvents.Event<'view'> & {
4767
4757
  target: OpenFin.Identity;
4768
- }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
4758
+ }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
4769
4759
 
4770
4760
  /**
4771
4761
  * [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
@@ -8573,23 +8563,6 @@ declare type LogLevel = OpenFin.LogLevel;
8573
8563
  */
8574
8564
  declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8575
8565
 
8576
- declare type LogUploaderUIOptions = {
8577
- title?: string;
8578
- icon?: string;
8579
- header?: string;
8580
- description?: string;
8581
- email?: string;
8582
- website?: string;
8583
- websiteDescription?: string;
8584
- };
8585
-
8586
- declare type LogUploadOptions = {
8587
- endpoint: string;
8588
- manifests?: string[];
8589
- logs?: string[];
8590
- ui?: LogUploaderUIOptions;
8591
- };
8592
-
8593
8566
  /**
8594
8567
  * @interface
8595
8568
  */
@@ -8648,7 +8621,6 @@ declare type Manifest = {
8648
8621
  enableErrorReporting?: boolean;
8649
8622
  };
8650
8623
  interopBrokerConfiguration: InteropBrokerOptions;
8651
- logUpload?: LogUploadOptions;
8652
8624
  };
8653
8625
 
8654
8626
  /**
@@ -9308,6 +9280,14 @@ declare interface NodeUserInfo {
9308
9280
  homedir: string;
9309
9281
  }
9310
9282
 
9283
+ declare interface NodeUserInfo {
9284
+ username: string;
9285
+ uid: number;
9286
+ gid: number;
9287
+ shell: string | null;
9288
+ homedir: string;
9289
+ }
9290
+
9311
9291
  /**
9312
9292
  * @interface
9313
9293
  */
@@ -9510,8 +9490,6 @@ declare namespace OpenFin {
9510
9490
  PlatformViewCreationOptions,
9511
9491
  ProcessAffinityStrategy,
9512
9492
  PlatformOptions,
9513
- LogUploaderUIOptions,
9514
- LogUploadOptions,
9515
9493
  Manifest,
9516
9494
  LayoutContent,
9517
9495
  LayoutItemConfig,
@@ -12256,15 +12234,6 @@ declare interface RemoteConfig extends ExistingConnectConfig {
12256
12234
  token: string;
12257
12235
  }
12258
12236
 
12259
- /**
12260
- * Generated when a View is removed from a layout.
12261
- * @interface
12262
- */
12263
- declare type RemovedFromLayoutEvent = BaseEvent_4 & {
12264
- type: 'removed-from-layout';
12265
- layoutIdentity: OpenFin.LayoutIdentity;
12266
- };
12267
-
12268
12237
  /**
12269
12238
  * @interface
12270
12239
  */
@@ -15621,8 +15590,6 @@ declare namespace ViewEvents {
15621
15590
  BaseEvent_4 as BaseEvent,
15622
15591
  BaseViewEvent,
15623
15592
  TargetChangedEvent,
15624
- AddedToLayoutEvent,
15625
- RemovedFromLayoutEvent,
15626
15593
  NonPropagatedViewEvent,
15627
15594
  CreatedEvent,
15628
15595
  DestroyedEvent,
@@ -42,15 +42,6 @@ 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
-
54
45
  /**
55
46
  * Options to use when adding a view to a {@link TabStack}.
56
47
  *
@@ -4716,7 +4707,6 @@ declare type ErrorPlainObject = {
4716
4707
  stack?: string;
4717
4708
  message: string;
4718
4709
  name?: string;
4719
- cause?: Error | ErrorPlainObject;
4720
4710
  toString(): string;
4721
4711
  };
4722
4712
 
@@ -4765,7 +4755,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
4765
4755
  */
4766
4756
  declare type Event_4 = (WebContentsEvents.Event<'view'> & {
4767
4757
  target: OpenFin.Identity;
4768
- }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
4758
+ }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
4769
4759
 
4770
4760
  /**
4771
4761
  * [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
@@ -8573,23 +8563,6 @@ declare type LogLevel = OpenFin.LogLevel;
8573
8563
  */
8574
8564
  declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8575
8565
 
8576
- declare type LogUploaderUIOptions = {
8577
- title?: string;
8578
- icon?: string;
8579
- header?: string;
8580
- description?: string;
8581
- email?: string;
8582
- website?: string;
8583
- websiteDescription?: string;
8584
- };
8585
-
8586
- declare type LogUploadOptions = {
8587
- endpoint: string;
8588
- manifests?: string[];
8589
- logs?: string[];
8590
- ui?: LogUploaderUIOptions;
8591
- };
8592
-
8593
8566
  /**
8594
8567
  * @interface
8595
8568
  */
@@ -8648,7 +8621,6 @@ declare type Manifest = {
8648
8621
  enableErrorReporting?: boolean;
8649
8622
  };
8650
8623
  interopBrokerConfiguration: InteropBrokerOptions;
8651
- logUpload?: LogUploadOptions;
8652
8624
  };
8653
8625
 
8654
8626
  /**
@@ -9308,6 +9280,14 @@ declare interface NodeUserInfo {
9308
9280
  homedir: string;
9309
9281
  }
9310
9282
 
9283
+ declare interface NodeUserInfo {
9284
+ username: string;
9285
+ uid: number;
9286
+ gid: number;
9287
+ shell: string | null;
9288
+ homedir: string;
9289
+ }
9290
+
9311
9291
  /**
9312
9292
  * @interface
9313
9293
  */
@@ -9510,8 +9490,6 @@ declare namespace OpenFin {
9510
9490
  PlatformViewCreationOptions,
9511
9491
  ProcessAffinityStrategy,
9512
9492
  PlatformOptions,
9513
- LogUploaderUIOptions,
9514
- LogUploadOptions,
9515
9493
  Manifest,
9516
9494
  LayoutContent,
9517
9495
  LayoutItemConfig,
@@ -12256,15 +12234,6 @@ declare interface RemoteConfig extends ExistingConnectConfig {
12256
12234
  token: string;
12257
12235
  }
12258
12236
 
12259
- /**
12260
- * Generated when a View is removed from a layout.
12261
- * @interface
12262
- */
12263
- declare type RemovedFromLayoutEvent = BaseEvent_4 & {
12264
- type: 'removed-from-layout';
12265
- layoutIdentity: OpenFin.LayoutIdentity;
12266
- };
12267
-
12268
12237
  /**
12269
12238
  * @interface
12270
12239
  */
@@ -15621,8 +15590,6 @@ declare namespace ViewEvents {
15621
15590
  BaseEvent_4 as BaseEvent,
15622
15591
  BaseViewEvent,
15623
15592
  TargetChangedEvent,
15624
- AddedToLayoutEvent,
15625
- RemovedFromLayoutEvent,
15626
15593
  NonPropagatedViewEvent,
15627
15594
  CreatedEvent,
15628
15595
  DestroyedEvent,
@@ -42,15 +42,6 @@ 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
-
54
45
  /**
55
46
  * Options to use when adding a view to a {@link TabStack}.
56
47
  *
@@ -4716,7 +4707,6 @@ declare type ErrorPlainObject = {
4716
4707
  stack?: string;
4717
4708
  message: string;
4718
4709
  name?: string;
4719
- cause?: Error | ErrorPlainObject;
4720
4710
  toString(): string;
4721
4711
  };
4722
4712
 
@@ -4765,7 +4755,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
4765
4755
  */
4766
4756
  declare type Event_4 = (WebContentsEvents.Event<'view'> & {
4767
4757
  target: OpenFin.Identity;
4768
- }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
4758
+ }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
4769
4759
 
4770
4760
  /**
4771
4761
  * [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
@@ -8573,23 +8563,6 @@ declare type LogLevel = OpenFin.LogLevel;
8573
8563
  */
8574
8564
  declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8575
8565
 
8576
- declare type LogUploaderUIOptions = {
8577
- title?: string;
8578
- icon?: string;
8579
- header?: string;
8580
- description?: string;
8581
- email?: string;
8582
- website?: string;
8583
- websiteDescription?: string;
8584
- };
8585
-
8586
- declare type LogUploadOptions = {
8587
- endpoint: string;
8588
- manifests?: string[];
8589
- logs?: string[];
8590
- ui?: LogUploaderUIOptions;
8591
- };
8592
-
8593
8566
  /**
8594
8567
  * @interface
8595
8568
  */
@@ -8648,7 +8621,6 @@ declare type Manifest = {
8648
8621
  enableErrorReporting?: boolean;
8649
8622
  };
8650
8623
  interopBrokerConfiguration: InteropBrokerOptions;
8651
- logUpload?: LogUploadOptions;
8652
8624
  };
8653
8625
 
8654
8626
  /**
@@ -9308,6 +9280,14 @@ declare interface NodeUserInfo {
9308
9280
  homedir: string;
9309
9281
  }
9310
9282
 
9283
+ declare interface NodeUserInfo {
9284
+ username: string;
9285
+ uid: number;
9286
+ gid: number;
9287
+ shell: string | null;
9288
+ homedir: string;
9289
+ }
9290
+
9311
9291
  /**
9312
9292
  * @interface
9313
9293
  */
@@ -9510,8 +9490,6 @@ declare namespace OpenFin {
9510
9490
  PlatformViewCreationOptions,
9511
9491
  ProcessAffinityStrategy,
9512
9492
  PlatformOptions,
9513
- LogUploaderUIOptions,
9514
- LogUploadOptions,
9515
9493
  Manifest,
9516
9494
  LayoutContent,
9517
9495
  LayoutItemConfig,
@@ -12256,15 +12234,6 @@ declare interface RemoteConfig extends ExistingConnectConfig {
12256
12234
  token: string;
12257
12235
  }
12258
12236
 
12259
- /**
12260
- * Generated when a View is removed from a layout.
12261
- * @interface
12262
- */
12263
- declare type RemovedFromLayoutEvent = BaseEvent_4 & {
12264
- type: 'removed-from-layout';
12265
- layoutIdentity: OpenFin.LayoutIdentity;
12266
- };
12267
-
12268
12237
  /**
12269
12238
  * @interface
12270
12239
  */
@@ -15621,8 +15590,6 @@ declare namespace ViewEvents {
15621
15590
  BaseEvent_4 as BaseEvent,
15622
15591
  BaseViewEvent,
15623
15592
  TargetChangedEvent,
15624
- AddedToLayoutEvent,
15625
- RemovedFromLayoutEvent,
15626
15593
  NonPropagatedViewEvent,
15627
15594
  CreatedEvent,
15628
15595
  DestroyedEvent,
package/out/fdc3-api.d.ts CHANGED
@@ -42,15 +42,6 @@ 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
-
54
45
  /**
55
46
  * Options to use when adding a view to a {@link TabStack}.
56
47
  *
@@ -4780,7 +4771,6 @@ declare type ErrorPlainObject = {
4780
4771
  stack?: string;
4781
4772
  message: string;
4782
4773
  name?: string;
4783
- cause?: Error | ErrorPlainObject;
4784
4774
  toString(): string;
4785
4775
  };
4786
4776
 
@@ -4829,7 +4819,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
4829
4819
  */
4830
4820
  declare type Event_4 = (WebContentsEvents.Event<'view'> & {
4831
4821
  target: OpenFin.Identity;
4832
- }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
4822
+ }) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
4833
4823
 
4834
4824
  /**
4835
4825
  * [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
@@ -8866,23 +8856,6 @@ declare type LogLevel = OpenFin.LogLevel;
8866
8856
  */
8867
8857
  declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
8868
8858
 
8869
- declare type LogUploaderUIOptions = {
8870
- title?: string;
8871
- icon?: string;
8872
- header?: string;
8873
- description?: string;
8874
- email?: string;
8875
- website?: string;
8876
- websiteDescription?: string;
8877
- };
8878
-
8879
- declare type LogUploadOptions = {
8880
- endpoint: string;
8881
- manifests?: string[];
8882
- logs?: string[];
8883
- ui?: LogUploaderUIOptions;
8884
- };
8885
-
8886
8859
  /**
8887
8860
  * @interface
8888
8861
  */
@@ -8941,7 +8914,6 @@ declare type Manifest = {
8941
8914
  enableErrorReporting?: boolean;
8942
8915
  };
8943
8916
  interopBrokerConfiguration: InteropBrokerOptions;
8944
- logUpload?: LogUploadOptions;
8945
8917
  };
8946
8918
 
8947
8919
  /**
@@ -9613,6 +9585,14 @@ declare interface NodeUserInfo {
9613
9585
  homedir: string;
9614
9586
  }
9615
9587
 
9588
+ declare interface NodeUserInfo {
9589
+ username: string;
9590
+ uid: number;
9591
+ gid: number;
9592
+ shell: string | null;
9593
+ homedir: string;
9594
+ }
9595
+
9616
9596
  /**
9617
9597
  * @interface
9618
9598
  */
@@ -9825,8 +9805,6 @@ declare namespace OpenFin {
9825
9805
  PlatformViewCreationOptions,
9826
9806
  ProcessAffinityStrategy,
9827
9807
  PlatformOptions,
9828
- LogUploaderUIOptions,
9829
- LogUploadOptions,
9830
9808
  Manifest,
9831
9809
  LayoutContent,
9832
9810
  LayoutItemConfig,
@@ -12649,15 +12627,6 @@ declare interface RemoteConfig extends ExistingConnectConfig {
12649
12627
  token: string;
12650
12628
  }
12651
12629
 
12652
- /**
12653
- * Generated when a View is removed from a layout.
12654
- * @interface
12655
- */
12656
- declare type RemovedFromLayoutEvent = BaseEvent_4 & {
12657
- type: 'removed-from-layout';
12658
- layoutIdentity: OpenFin.LayoutIdentity;
12659
- };
12660
-
12661
12630
  /**
12662
12631
  * @interface
12663
12632
  */
@@ -16064,8 +16033,6 @@ declare namespace ViewEvents {
16064
16033
  BaseEvent_4 as BaseEvent,
16065
16034
  BaseViewEvent,
16066
16035
  TargetChangedEvent,
16067
- AddedToLayoutEvent,
16068
- RemovedFromLayoutEvent,
16069
16036
  NonPropagatedViewEvent,
16070
16037
  CreatedEvent,
16071
16038
  DestroyedEvent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "40.82.4",
3
+ "version": "40.82.6",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.MD",
6
6
  "private": false,