@openfin/fdc3-api 41.100.45 → 41.100.47
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 +31 -0
- package/out/fdc3-api-beta.d.ts +31 -0
- package/out/fdc3-api-public.d.ts +31 -0
- package/out/fdc3-api.d.ts +31 -0
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -189,6 +189,10 @@ declare type AppAssetRequest = {
|
|
|
189
189
|
alias: string;
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
+
declare type AppAssetServeRequest = ServeRequest & {
|
|
193
|
+
alias: string;
|
|
194
|
+
};
|
|
195
|
+
|
|
192
196
|
/**
|
|
193
197
|
* An object representing an application. Allows the developer to create,
|
|
194
198
|
* execute, show/close an application as well as listen to {@link OpenFin.ApplicationEvents application events}.
|
|
@@ -10072,6 +10076,11 @@ declare namespace OpenFin {
|
|
|
10072
10076
|
DownloadShelfOptions,
|
|
10073
10077
|
ViewShowAtOptions,
|
|
10074
10078
|
ExtensionInfo,
|
|
10079
|
+
ServeRequest,
|
|
10080
|
+
AppAssetServeRequest,
|
|
10081
|
+
PathServeRequest,
|
|
10082
|
+
ServeAssetOptions,
|
|
10083
|
+
ServedAssetInfo,
|
|
10075
10084
|
ApplicationEvents,
|
|
10076
10085
|
BaseEvents,
|
|
10077
10086
|
ExternalApplicationEvents,
|
|
@@ -10161,6 +10170,10 @@ declare type PastePermissions = {
|
|
|
10161
10170
|
behavior: 'non-protected-content' | 'all-content';
|
|
10162
10171
|
};
|
|
10163
10172
|
|
|
10173
|
+
declare type PathServeRequest = ServeRequest & {
|
|
10174
|
+
path: string;
|
|
10175
|
+
};
|
|
10176
|
+
|
|
10164
10177
|
declare type Payload<Success extends boolean = boolean, Data = any> = {
|
|
10165
10178
|
success: Success;
|
|
10166
10179
|
data: Success extends true ? Data : never;
|
|
@@ -12790,6 +12803,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12790
12803
|
options: OpenFin.ProcessLoggingOptions;
|
|
12791
12804
|
}, void>;
|
|
12792
12805
|
'get-domain-settings': ApiCall<OpenFin.ApplicationIdentity, OpenFin.DefaultDomainSettings>;
|
|
12806
|
+
'serve-asset': ApiCall<{
|
|
12807
|
+
options: OpenFin.ServeAssetOptions;
|
|
12808
|
+
}, OpenFin.ServedAssetInfo>;
|
|
12793
12809
|
'set-domain-settings': ApiCall<OpenFin.ApplicationIdentity & {
|
|
12794
12810
|
domainSettings: OpenFin.DefaultDomainSettings;
|
|
12795
12811
|
}, void>;
|
|
@@ -13551,6 +13567,16 @@ declare type SentMessage<Value> = Promise<Value> & {
|
|
|
13551
13567
|
messageId: ReturnType<Environment['getNextMessageId']>;
|
|
13552
13568
|
};
|
|
13553
13569
|
|
|
13570
|
+
declare type ServeAssetOptions = AppAssetServeRequest | PathServeRequest;
|
|
13571
|
+
|
|
13572
|
+
declare type ServedAssetInfo = {
|
|
13573
|
+
baseUrl: string;
|
|
13574
|
+
};
|
|
13575
|
+
|
|
13576
|
+
declare type ServeRequest = {
|
|
13577
|
+
hostName: string;
|
|
13578
|
+
};
|
|
13579
|
+
|
|
13554
13580
|
/**
|
|
13555
13581
|
* @interface
|
|
13556
13582
|
*/
|
|
@@ -15472,6 +15498,11 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15472
15498
|
* Gets the currently-installed
|
|
15473
15499
|
*/
|
|
15474
15500
|
getInstalledExtensions(): Promise<OpenFin.ExtensionInfo[]>;
|
|
15501
|
+
/**
|
|
15502
|
+
* Used to serve an asset signed by OpenFin within the given runtime.
|
|
15503
|
+
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
15504
|
+
*/
|
|
15505
|
+
serveAsset(options: OpenFin.ServeAssetOptions): Promise<OpenFin.ServedAssetInfo>;
|
|
15475
15506
|
}
|
|
15476
15507
|
|
|
15477
15508
|
/**
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -189,6 +189,10 @@ declare type AppAssetRequest = {
|
|
|
189
189
|
alias: string;
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
+
declare type AppAssetServeRequest = ServeRequest & {
|
|
193
|
+
alias: string;
|
|
194
|
+
};
|
|
195
|
+
|
|
192
196
|
/**
|
|
193
197
|
* An object representing an application. Allows the developer to create,
|
|
194
198
|
* execute, show/close an application as well as listen to {@link OpenFin.ApplicationEvents application events}.
|
|
@@ -10072,6 +10076,11 @@ declare namespace OpenFin {
|
|
|
10072
10076
|
DownloadShelfOptions,
|
|
10073
10077
|
ViewShowAtOptions,
|
|
10074
10078
|
ExtensionInfo,
|
|
10079
|
+
ServeRequest,
|
|
10080
|
+
AppAssetServeRequest,
|
|
10081
|
+
PathServeRequest,
|
|
10082
|
+
ServeAssetOptions,
|
|
10083
|
+
ServedAssetInfo,
|
|
10075
10084
|
ApplicationEvents,
|
|
10076
10085
|
BaseEvents,
|
|
10077
10086
|
ExternalApplicationEvents,
|
|
@@ -10161,6 +10170,10 @@ declare type PastePermissions = {
|
|
|
10161
10170
|
behavior: 'non-protected-content' | 'all-content';
|
|
10162
10171
|
};
|
|
10163
10172
|
|
|
10173
|
+
declare type PathServeRequest = ServeRequest & {
|
|
10174
|
+
path: string;
|
|
10175
|
+
};
|
|
10176
|
+
|
|
10164
10177
|
declare type Payload<Success extends boolean = boolean, Data = any> = {
|
|
10165
10178
|
success: Success;
|
|
10166
10179
|
data: Success extends true ? Data : never;
|
|
@@ -12790,6 +12803,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12790
12803
|
options: OpenFin.ProcessLoggingOptions;
|
|
12791
12804
|
}, void>;
|
|
12792
12805
|
'get-domain-settings': ApiCall<OpenFin.ApplicationIdentity, OpenFin.DefaultDomainSettings>;
|
|
12806
|
+
'serve-asset': ApiCall<{
|
|
12807
|
+
options: OpenFin.ServeAssetOptions;
|
|
12808
|
+
}, OpenFin.ServedAssetInfo>;
|
|
12793
12809
|
'set-domain-settings': ApiCall<OpenFin.ApplicationIdentity & {
|
|
12794
12810
|
domainSettings: OpenFin.DefaultDomainSettings;
|
|
12795
12811
|
}, void>;
|
|
@@ -13551,6 +13567,16 @@ declare type SentMessage<Value> = Promise<Value> & {
|
|
|
13551
13567
|
messageId: ReturnType<Environment['getNextMessageId']>;
|
|
13552
13568
|
};
|
|
13553
13569
|
|
|
13570
|
+
declare type ServeAssetOptions = AppAssetServeRequest | PathServeRequest;
|
|
13571
|
+
|
|
13572
|
+
declare type ServedAssetInfo = {
|
|
13573
|
+
baseUrl: string;
|
|
13574
|
+
};
|
|
13575
|
+
|
|
13576
|
+
declare type ServeRequest = {
|
|
13577
|
+
hostName: string;
|
|
13578
|
+
};
|
|
13579
|
+
|
|
13554
13580
|
/**
|
|
13555
13581
|
* @interface
|
|
13556
13582
|
*/
|
|
@@ -15472,6 +15498,11 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15472
15498
|
* Gets the currently-installed
|
|
15473
15499
|
*/
|
|
15474
15500
|
getInstalledExtensions(): Promise<OpenFin.ExtensionInfo[]>;
|
|
15501
|
+
/**
|
|
15502
|
+
* Used to serve an asset signed by OpenFin within the given runtime.
|
|
15503
|
+
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
15504
|
+
*/
|
|
15505
|
+
serveAsset(options: OpenFin.ServeAssetOptions): Promise<OpenFin.ServedAssetInfo>;
|
|
15475
15506
|
}
|
|
15476
15507
|
|
|
15477
15508
|
/**
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -189,6 +189,10 @@ declare type AppAssetRequest = {
|
|
|
189
189
|
alias: string;
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
+
declare type AppAssetServeRequest = ServeRequest & {
|
|
193
|
+
alias: string;
|
|
194
|
+
};
|
|
195
|
+
|
|
192
196
|
/**
|
|
193
197
|
* An object representing an application. Allows the developer to create,
|
|
194
198
|
* execute, show/close an application as well as listen to {@link OpenFin.ApplicationEvents application events}.
|
|
@@ -10072,6 +10076,11 @@ declare namespace OpenFin {
|
|
|
10072
10076
|
DownloadShelfOptions,
|
|
10073
10077
|
ViewShowAtOptions,
|
|
10074
10078
|
ExtensionInfo,
|
|
10079
|
+
ServeRequest,
|
|
10080
|
+
AppAssetServeRequest,
|
|
10081
|
+
PathServeRequest,
|
|
10082
|
+
ServeAssetOptions,
|
|
10083
|
+
ServedAssetInfo,
|
|
10075
10084
|
ApplicationEvents,
|
|
10076
10085
|
BaseEvents,
|
|
10077
10086
|
ExternalApplicationEvents,
|
|
@@ -10161,6 +10170,10 @@ declare type PastePermissions = {
|
|
|
10161
10170
|
behavior: 'non-protected-content' | 'all-content';
|
|
10162
10171
|
};
|
|
10163
10172
|
|
|
10173
|
+
declare type PathServeRequest = ServeRequest & {
|
|
10174
|
+
path: string;
|
|
10175
|
+
};
|
|
10176
|
+
|
|
10164
10177
|
declare type Payload<Success extends boolean = boolean, Data = any> = {
|
|
10165
10178
|
success: Success;
|
|
10166
10179
|
data: Success extends true ? Data : never;
|
|
@@ -12790,6 +12803,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12790
12803
|
options: OpenFin.ProcessLoggingOptions;
|
|
12791
12804
|
}, void>;
|
|
12792
12805
|
'get-domain-settings': ApiCall<OpenFin.ApplicationIdentity, OpenFin.DefaultDomainSettings>;
|
|
12806
|
+
'serve-asset': ApiCall<{
|
|
12807
|
+
options: OpenFin.ServeAssetOptions;
|
|
12808
|
+
}, OpenFin.ServedAssetInfo>;
|
|
12793
12809
|
'set-domain-settings': ApiCall<OpenFin.ApplicationIdentity & {
|
|
12794
12810
|
domainSettings: OpenFin.DefaultDomainSettings;
|
|
12795
12811
|
}, void>;
|
|
@@ -13551,6 +13567,16 @@ declare type SentMessage<Value> = Promise<Value> & {
|
|
|
13551
13567
|
messageId: ReturnType<Environment['getNextMessageId']>;
|
|
13552
13568
|
};
|
|
13553
13569
|
|
|
13570
|
+
declare type ServeAssetOptions = AppAssetServeRequest | PathServeRequest;
|
|
13571
|
+
|
|
13572
|
+
declare type ServedAssetInfo = {
|
|
13573
|
+
baseUrl: string;
|
|
13574
|
+
};
|
|
13575
|
+
|
|
13576
|
+
declare type ServeRequest = {
|
|
13577
|
+
hostName: string;
|
|
13578
|
+
};
|
|
13579
|
+
|
|
13554
13580
|
/**
|
|
13555
13581
|
* @interface
|
|
13556
13582
|
*/
|
|
@@ -15472,6 +15498,11 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15472
15498
|
* Gets the currently-installed
|
|
15473
15499
|
*/
|
|
15474
15500
|
getInstalledExtensions(): Promise<OpenFin.ExtensionInfo[]>;
|
|
15501
|
+
/**
|
|
15502
|
+
* Used to serve an asset signed by OpenFin within the given runtime.
|
|
15503
|
+
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
15504
|
+
*/
|
|
15505
|
+
serveAsset(options: OpenFin.ServeAssetOptions): Promise<OpenFin.ServedAssetInfo>;
|
|
15475
15506
|
}
|
|
15476
15507
|
|
|
15477
15508
|
/**
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -189,6 +189,10 @@ declare type AppAssetRequest = {
|
|
|
189
189
|
alias: string;
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
+
declare type AppAssetServeRequest = ServeRequest & {
|
|
193
|
+
alias: string;
|
|
194
|
+
};
|
|
195
|
+
|
|
192
196
|
/**
|
|
193
197
|
* An object representing an application. Allows the developer to create,
|
|
194
198
|
* execute, show/close an application as well as listen to {@link OpenFin.ApplicationEvents application events}.
|
|
@@ -10390,6 +10394,11 @@ declare namespace OpenFin {
|
|
|
10390
10394
|
DownloadShelfOptions,
|
|
10391
10395
|
ViewShowAtOptions,
|
|
10392
10396
|
ExtensionInfo,
|
|
10397
|
+
ServeRequest,
|
|
10398
|
+
AppAssetServeRequest,
|
|
10399
|
+
PathServeRequest,
|
|
10400
|
+
ServeAssetOptions,
|
|
10401
|
+
ServedAssetInfo,
|
|
10393
10402
|
ApplicationEvents,
|
|
10394
10403
|
BaseEvents,
|
|
10395
10404
|
ExternalApplicationEvents,
|
|
@@ -10479,6 +10488,10 @@ declare type PastePermissions = {
|
|
|
10479
10488
|
behavior: 'non-protected-content' | 'all-content';
|
|
10480
10489
|
};
|
|
10481
10490
|
|
|
10491
|
+
declare type PathServeRequest = ServeRequest & {
|
|
10492
|
+
path: string;
|
|
10493
|
+
};
|
|
10494
|
+
|
|
10482
10495
|
declare type Payload<Success extends boolean = boolean, Data = any> = {
|
|
10483
10496
|
success: Success;
|
|
10484
10497
|
data: Success extends true ? Data : never;
|
|
@@ -13191,6 +13204,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
13191
13204
|
options: OpenFin.ProcessLoggingOptions;
|
|
13192
13205
|
}, void>;
|
|
13193
13206
|
'get-domain-settings': ApiCall<OpenFin.ApplicationIdentity, OpenFin.DefaultDomainSettings>;
|
|
13207
|
+
'serve-asset': ApiCall<{
|
|
13208
|
+
options: OpenFin.ServeAssetOptions;
|
|
13209
|
+
}, OpenFin.ServedAssetInfo>;
|
|
13194
13210
|
'set-domain-settings': ApiCall<OpenFin.ApplicationIdentity & {
|
|
13195
13211
|
domainSettings: OpenFin.DefaultDomainSettings;
|
|
13196
13212
|
}, void>;
|
|
@@ -13952,6 +13968,16 @@ declare type SentMessage<Value> = Promise<Value> & {
|
|
|
13952
13968
|
messageId: ReturnType<Environment['getNextMessageId']>;
|
|
13953
13969
|
};
|
|
13954
13970
|
|
|
13971
|
+
declare type ServeAssetOptions = AppAssetServeRequest | PathServeRequest;
|
|
13972
|
+
|
|
13973
|
+
declare type ServedAssetInfo = {
|
|
13974
|
+
baseUrl: string;
|
|
13975
|
+
};
|
|
13976
|
+
|
|
13977
|
+
declare type ServeRequest = {
|
|
13978
|
+
hostName: string;
|
|
13979
|
+
};
|
|
13980
|
+
|
|
13955
13981
|
/**
|
|
13956
13982
|
* @interface
|
|
13957
13983
|
*/
|
|
@@ -15879,6 +15905,11 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
15879
15905
|
* Gets the currently-installed
|
|
15880
15906
|
*/
|
|
15881
15907
|
getInstalledExtensions(): Promise<OpenFin.ExtensionInfo[]>;
|
|
15908
|
+
/**
|
|
15909
|
+
* Used to serve an asset signed by OpenFin within the given runtime.
|
|
15910
|
+
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
15911
|
+
*/
|
|
15912
|
+
serveAsset(options: OpenFin.ServeAssetOptions): Promise<OpenFin.ServedAssetInfo>;
|
|
15882
15913
|
}
|
|
15883
15914
|
|
|
15884
15915
|
/**
|