@openfin/fdc3-api 40.82.3 → 40.82.5
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 +8 -20
- package/out/fdc3-api-beta.d.ts +8 -20
- package/out/fdc3-api-public.d.ts +8 -20
- package/out/fdc3-api.d.ts +8 -20
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -8563,23 +8563,6 @@ declare type LogLevel = OpenFin.LogLevel;
|
|
|
8563
8563
|
*/
|
|
8564
8564
|
declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
8565
8565
|
|
|
8566
|
-
declare type LogUploaderUIOptions = {
|
|
8567
|
-
title?: string;
|
|
8568
|
-
icon?: string;
|
|
8569
|
-
header?: string;
|
|
8570
|
-
description?: string;
|
|
8571
|
-
email?: string;
|
|
8572
|
-
website?: string;
|
|
8573
|
-
websiteDescription?: string;
|
|
8574
|
-
};
|
|
8575
|
-
|
|
8576
|
-
declare type LogUploadOptions = {
|
|
8577
|
-
endpoint: string;
|
|
8578
|
-
manifests?: string[];
|
|
8579
|
-
logs?: string[];
|
|
8580
|
-
ui?: LogUploaderUIOptions;
|
|
8581
|
-
};
|
|
8582
|
-
|
|
8583
8566
|
/**
|
|
8584
8567
|
* @interface
|
|
8585
8568
|
*/
|
|
@@ -8638,7 +8621,6 @@ declare type Manifest = {
|
|
|
8638
8621
|
enableErrorReporting?: boolean;
|
|
8639
8622
|
};
|
|
8640
8623
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
8641
|
-
logUpload?: LogUploadOptions;
|
|
8642
8624
|
};
|
|
8643
8625
|
|
|
8644
8626
|
/**
|
|
@@ -9298,6 +9280,14 @@ declare interface NodeUserInfo {
|
|
|
9298
9280
|
homedir: string;
|
|
9299
9281
|
}
|
|
9300
9282
|
|
|
9283
|
+
declare interface NodeUserInfo {
|
|
9284
|
+
username: string;
|
|
9285
|
+
uid: number;
|
|
9286
|
+
gid: number;
|
|
9287
|
+
shell: string | null;
|
|
9288
|
+
homedir: string;
|
|
9289
|
+
}
|
|
9290
|
+
|
|
9301
9291
|
/**
|
|
9302
9292
|
* @interface
|
|
9303
9293
|
*/
|
|
@@ -9500,8 +9490,6 @@ declare namespace OpenFin {
|
|
|
9500
9490
|
PlatformViewCreationOptions,
|
|
9501
9491
|
ProcessAffinityStrategy,
|
|
9502
9492
|
PlatformOptions,
|
|
9503
|
-
LogUploaderUIOptions,
|
|
9504
|
-
LogUploadOptions,
|
|
9505
9493
|
Manifest,
|
|
9506
9494
|
LayoutContent,
|
|
9507
9495
|
LayoutItemConfig,
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -8563,23 +8563,6 @@ declare type LogLevel = OpenFin.LogLevel;
|
|
|
8563
8563
|
*/
|
|
8564
8564
|
declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
8565
8565
|
|
|
8566
|
-
declare type LogUploaderUIOptions = {
|
|
8567
|
-
title?: string;
|
|
8568
|
-
icon?: string;
|
|
8569
|
-
header?: string;
|
|
8570
|
-
description?: string;
|
|
8571
|
-
email?: string;
|
|
8572
|
-
website?: string;
|
|
8573
|
-
websiteDescription?: string;
|
|
8574
|
-
};
|
|
8575
|
-
|
|
8576
|
-
declare type LogUploadOptions = {
|
|
8577
|
-
endpoint: string;
|
|
8578
|
-
manifests?: string[];
|
|
8579
|
-
logs?: string[];
|
|
8580
|
-
ui?: LogUploaderUIOptions;
|
|
8581
|
-
};
|
|
8582
|
-
|
|
8583
8566
|
/**
|
|
8584
8567
|
* @interface
|
|
8585
8568
|
*/
|
|
@@ -8638,7 +8621,6 @@ declare type Manifest = {
|
|
|
8638
8621
|
enableErrorReporting?: boolean;
|
|
8639
8622
|
};
|
|
8640
8623
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
8641
|
-
logUpload?: LogUploadOptions;
|
|
8642
8624
|
};
|
|
8643
8625
|
|
|
8644
8626
|
/**
|
|
@@ -9298,6 +9280,14 @@ declare interface NodeUserInfo {
|
|
|
9298
9280
|
homedir: string;
|
|
9299
9281
|
}
|
|
9300
9282
|
|
|
9283
|
+
declare interface NodeUserInfo {
|
|
9284
|
+
username: string;
|
|
9285
|
+
uid: number;
|
|
9286
|
+
gid: number;
|
|
9287
|
+
shell: string | null;
|
|
9288
|
+
homedir: string;
|
|
9289
|
+
}
|
|
9290
|
+
|
|
9301
9291
|
/**
|
|
9302
9292
|
* @interface
|
|
9303
9293
|
*/
|
|
@@ -9500,8 +9490,6 @@ declare namespace OpenFin {
|
|
|
9500
9490
|
PlatformViewCreationOptions,
|
|
9501
9491
|
ProcessAffinityStrategy,
|
|
9502
9492
|
PlatformOptions,
|
|
9503
|
-
LogUploaderUIOptions,
|
|
9504
|
-
LogUploadOptions,
|
|
9505
9493
|
Manifest,
|
|
9506
9494
|
LayoutContent,
|
|
9507
9495
|
LayoutItemConfig,
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -8563,23 +8563,6 @@ declare type LogLevel = OpenFin.LogLevel;
|
|
|
8563
8563
|
*/
|
|
8564
8564
|
declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
8565
8565
|
|
|
8566
|
-
declare type LogUploaderUIOptions = {
|
|
8567
|
-
title?: string;
|
|
8568
|
-
icon?: string;
|
|
8569
|
-
header?: string;
|
|
8570
|
-
description?: string;
|
|
8571
|
-
email?: string;
|
|
8572
|
-
website?: string;
|
|
8573
|
-
websiteDescription?: string;
|
|
8574
|
-
};
|
|
8575
|
-
|
|
8576
|
-
declare type LogUploadOptions = {
|
|
8577
|
-
endpoint: string;
|
|
8578
|
-
manifests?: string[];
|
|
8579
|
-
logs?: string[];
|
|
8580
|
-
ui?: LogUploaderUIOptions;
|
|
8581
|
-
};
|
|
8582
|
-
|
|
8583
8566
|
/**
|
|
8584
8567
|
* @interface
|
|
8585
8568
|
*/
|
|
@@ -8638,7 +8621,6 @@ declare type Manifest = {
|
|
|
8638
8621
|
enableErrorReporting?: boolean;
|
|
8639
8622
|
};
|
|
8640
8623
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
8641
|
-
logUpload?: LogUploadOptions;
|
|
8642
8624
|
};
|
|
8643
8625
|
|
|
8644
8626
|
/**
|
|
@@ -9298,6 +9280,14 @@ declare interface NodeUserInfo {
|
|
|
9298
9280
|
homedir: string;
|
|
9299
9281
|
}
|
|
9300
9282
|
|
|
9283
|
+
declare interface NodeUserInfo {
|
|
9284
|
+
username: string;
|
|
9285
|
+
uid: number;
|
|
9286
|
+
gid: number;
|
|
9287
|
+
shell: string | null;
|
|
9288
|
+
homedir: string;
|
|
9289
|
+
}
|
|
9290
|
+
|
|
9301
9291
|
/**
|
|
9302
9292
|
* @interface
|
|
9303
9293
|
*/
|
|
@@ -9500,8 +9490,6 @@ declare namespace OpenFin {
|
|
|
9500
9490
|
PlatformViewCreationOptions,
|
|
9501
9491
|
ProcessAffinityStrategy,
|
|
9502
9492
|
PlatformOptions,
|
|
9503
|
-
LogUploaderUIOptions,
|
|
9504
|
-
LogUploadOptions,
|
|
9505
9493
|
Manifest,
|
|
9506
9494
|
LayoutContent,
|
|
9507
9495
|
LayoutItemConfig,
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -8856,23 +8856,6 @@ declare type LogLevel = OpenFin.LogLevel;
|
|
|
8856
8856
|
*/
|
|
8857
8857
|
declare type LogLevel_2 = 'verbose' | 'info' | 'warning' | 'error' | 'fatal';
|
|
8858
8858
|
|
|
8859
|
-
declare type LogUploaderUIOptions = {
|
|
8860
|
-
title?: string;
|
|
8861
|
-
icon?: string;
|
|
8862
|
-
header?: string;
|
|
8863
|
-
description?: string;
|
|
8864
|
-
email?: string;
|
|
8865
|
-
website?: string;
|
|
8866
|
-
websiteDescription?: string;
|
|
8867
|
-
};
|
|
8868
|
-
|
|
8869
|
-
declare type LogUploadOptions = {
|
|
8870
|
-
endpoint: string;
|
|
8871
|
-
manifests?: string[];
|
|
8872
|
-
logs?: string[];
|
|
8873
|
-
ui?: LogUploaderUIOptions;
|
|
8874
|
-
};
|
|
8875
|
-
|
|
8876
8859
|
/**
|
|
8877
8860
|
* @interface
|
|
8878
8861
|
*/
|
|
@@ -8931,7 +8914,6 @@ declare type Manifest = {
|
|
|
8931
8914
|
enableErrorReporting?: boolean;
|
|
8932
8915
|
};
|
|
8933
8916
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
8934
|
-
logUpload?: LogUploadOptions;
|
|
8935
8917
|
};
|
|
8936
8918
|
|
|
8937
8919
|
/**
|
|
@@ -9603,6 +9585,14 @@ declare interface NodeUserInfo {
|
|
|
9603
9585
|
homedir: string;
|
|
9604
9586
|
}
|
|
9605
9587
|
|
|
9588
|
+
declare interface NodeUserInfo {
|
|
9589
|
+
username: string;
|
|
9590
|
+
uid: number;
|
|
9591
|
+
gid: number;
|
|
9592
|
+
shell: string | null;
|
|
9593
|
+
homedir: string;
|
|
9594
|
+
}
|
|
9595
|
+
|
|
9606
9596
|
/**
|
|
9607
9597
|
* @interface
|
|
9608
9598
|
*/
|
|
@@ -9815,8 +9805,6 @@ declare namespace OpenFin {
|
|
|
9815
9805
|
PlatformViewCreationOptions,
|
|
9816
9806
|
ProcessAffinityStrategy,
|
|
9817
9807
|
PlatformOptions,
|
|
9818
|
-
LogUploaderUIOptions,
|
|
9819
|
-
LogUploadOptions,
|
|
9820
9808
|
Manifest,
|
|
9821
9809
|
LayoutContent,
|
|
9822
9810
|
LayoutItemConfig,
|