@openfin/core 41.102.6 → 41.102.8
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/mock-alpha.d.ts +15 -0
- package/out/mock-beta.d.ts +15 -0
- package/out/mock-public.d.ts +15 -0
- package/out/stub.d.ts +15 -0
- package/out/stub.js +21 -4
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -3003,6 +3003,10 @@ declare type ChromiumPolicies = {
|
|
|
3003
3003
|
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3004
3004
|
*/
|
|
3005
3005
|
AutofillAddressEnabled?: PolicyOptions;
|
|
3006
|
+
/**
|
|
3007
|
+
* Disable AutofillCreditCardEnabled policy for a Window or View.
|
|
3008
|
+
*/
|
|
3009
|
+
AutofillCreditCardEnabled?: PolicyOptions;
|
|
3006
3010
|
};
|
|
3007
3011
|
|
|
3008
3012
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
@@ -3853,6 +3857,10 @@ declare type ConstWindowOptions = {
|
|
|
3853
3857
|
* Control which options to ignore when creating a Platform Window.
|
|
3854
3858
|
*/
|
|
3855
3859
|
excludeOptions: ExcludeOptions;
|
|
3860
|
+
/**
|
|
3861
|
+
* Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
|
|
3862
|
+
*/
|
|
3863
|
+
roundedCorners: boolean;
|
|
3856
3864
|
};
|
|
3857
3865
|
|
|
3858
3866
|
/**
|
|
@@ -6608,6 +6616,7 @@ declare class InteropBroker extends Base {
|
|
|
6608
6616
|
private sessionContextGroupMap;
|
|
6609
6617
|
private channel;
|
|
6610
6618
|
private logging;
|
|
6619
|
+
private privateChannelProviderMap;
|
|
6611
6620
|
/* Excluded from this release type: __constructor */
|
|
6612
6621
|
private getProvider;
|
|
6613
6622
|
static createClosedConstructor(...args: ConstructorParameters<typeof InteropBroker>): {
|
|
@@ -9327,6 +9336,12 @@ declare type MutableWindowOptions = {
|
|
|
9327
9336
|
/**
|
|
9328
9337
|
* Shows the window's icon in the taskbar.
|
|
9329
9338
|
*
|
|
9339
|
+
* @remarks
|
|
9340
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9341
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9342
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9343
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9344
|
+
*
|
|
9330
9345
|
* @default true
|
|
9331
9346
|
*/
|
|
9332
9347
|
showTaskbarIcon: boolean;
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -3003,6 +3003,10 @@ declare type ChromiumPolicies = {
|
|
|
3003
3003
|
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3004
3004
|
*/
|
|
3005
3005
|
AutofillAddressEnabled?: PolicyOptions;
|
|
3006
|
+
/**
|
|
3007
|
+
* Disable AutofillCreditCardEnabled policy for a Window or View.
|
|
3008
|
+
*/
|
|
3009
|
+
AutofillCreditCardEnabled?: PolicyOptions;
|
|
3006
3010
|
};
|
|
3007
3011
|
|
|
3008
3012
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
@@ -3853,6 +3857,10 @@ declare type ConstWindowOptions = {
|
|
|
3853
3857
|
* Control which options to ignore when creating a Platform Window.
|
|
3854
3858
|
*/
|
|
3855
3859
|
excludeOptions: ExcludeOptions;
|
|
3860
|
+
/**
|
|
3861
|
+
* Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
|
|
3862
|
+
*/
|
|
3863
|
+
roundedCorners: boolean;
|
|
3856
3864
|
};
|
|
3857
3865
|
|
|
3858
3866
|
/**
|
|
@@ -6608,6 +6616,7 @@ declare class InteropBroker extends Base {
|
|
|
6608
6616
|
private sessionContextGroupMap;
|
|
6609
6617
|
private channel;
|
|
6610
6618
|
private logging;
|
|
6619
|
+
private privateChannelProviderMap;
|
|
6611
6620
|
/* Excluded from this release type: __constructor */
|
|
6612
6621
|
private getProvider;
|
|
6613
6622
|
static createClosedConstructor(...args: ConstructorParameters<typeof InteropBroker>): {
|
|
@@ -9327,6 +9336,12 @@ declare type MutableWindowOptions = {
|
|
|
9327
9336
|
/**
|
|
9328
9337
|
* Shows the window's icon in the taskbar.
|
|
9329
9338
|
*
|
|
9339
|
+
* @remarks
|
|
9340
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9341
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9342
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9343
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9344
|
+
*
|
|
9330
9345
|
* @default true
|
|
9331
9346
|
*/
|
|
9332
9347
|
showTaskbarIcon: boolean;
|
package/out/mock-public.d.ts
CHANGED
|
@@ -3003,6 +3003,10 @@ declare type ChromiumPolicies = {
|
|
|
3003
3003
|
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3004
3004
|
*/
|
|
3005
3005
|
AutofillAddressEnabled?: PolicyOptions;
|
|
3006
|
+
/**
|
|
3007
|
+
* Disable AutofillCreditCardEnabled policy for a Window or View.
|
|
3008
|
+
*/
|
|
3009
|
+
AutofillCreditCardEnabled?: PolicyOptions;
|
|
3006
3010
|
};
|
|
3007
3011
|
|
|
3008
3012
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
@@ -3853,6 +3857,10 @@ declare type ConstWindowOptions = {
|
|
|
3853
3857
|
* Control which options to ignore when creating a Platform Window.
|
|
3854
3858
|
*/
|
|
3855
3859
|
excludeOptions: ExcludeOptions;
|
|
3860
|
+
/**
|
|
3861
|
+
* Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
|
|
3862
|
+
*/
|
|
3863
|
+
roundedCorners: boolean;
|
|
3856
3864
|
};
|
|
3857
3865
|
|
|
3858
3866
|
/**
|
|
@@ -6608,6 +6616,7 @@ declare class InteropBroker extends Base {
|
|
|
6608
6616
|
private sessionContextGroupMap;
|
|
6609
6617
|
private channel;
|
|
6610
6618
|
private logging;
|
|
6619
|
+
private privateChannelProviderMap;
|
|
6611
6620
|
/* Excluded from this release type: __constructor */
|
|
6612
6621
|
private getProvider;
|
|
6613
6622
|
static createClosedConstructor(...args: ConstructorParameters<typeof InteropBroker>): {
|
|
@@ -9327,6 +9336,12 @@ declare type MutableWindowOptions = {
|
|
|
9327
9336
|
/**
|
|
9328
9337
|
* Shows the window's icon in the taskbar.
|
|
9329
9338
|
*
|
|
9339
|
+
* @remarks
|
|
9340
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9341
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9342
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9343
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9344
|
+
*
|
|
9330
9345
|
* @default true
|
|
9331
9346
|
*/
|
|
9332
9347
|
showTaskbarIcon: boolean;
|
package/out/stub.d.ts
CHANGED
|
@@ -3059,6 +3059,10 @@ declare type ChromiumPolicies = {
|
|
|
3059
3059
|
* Disable AutofillAddressEnabled policy for a Window or View.
|
|
3060
3060
|
*/
|
|
3061
3061
|
AutofillAddressEnabled?: PolicyOptions;
|
|
3062
|
+
/**
|
|
3063
|
+
* Disable AutofillCreditCardEnabled policy for a Window or View.
|
|
3064
|
+
*/
|
|
3065
|
+
AutofillCreditCardEnabled?: PolicyOptions;
|
|
3062
3066
|
};
|
|
3063
3067
|
|
|
3064
3068
|
declare interface ClassicProtocolOffer extends ProtocolPacketBase {
|
|
@@ -3912,6 +3916,10 @@ declare type ConstWindowOptions = {
|
|
|
3912
3916
|
* Control which options to ignore when creating a Platform Window.
|
|
3913
3917
|
*/
|
|
3914
3918
|
excludeOptions: ExcludeOptions;
|
|
3919
|
+
/**
|
|
3920
|
+
* Controls whether frameless window should have rounded corners. Default is false for Windows and true for MacOS. Setting this property to false will prevent the window from being fullscreenable on macOS. On Windows versions older than Windows 11 Build 22000 this property has no effect, and frameless windows will not have rounded corners.
|
|
3921
|
+
*/
|
|
3922
|
+
roundedCorners: boolean;
|
|
3915
3923
|
};
|
|
3916
3924
|
|
|
3917
3925
|
/**
|
|
@@ -6714,6 +6722,7 @@ declare class InteropBroker extends Base {
|
|
|
6714
6722
|
private sessionContextGroupMap;
|
|
6715
6723
|
private channel;
|
|
6716
6724
|
private logging;
|
|
6725
|
+
private privateChannelProviderMap;
|
|
6717
6726
|
/**
|
|
6718
6727
|
* @internal
|
|
6719
6728
|
*/
|
|
@@ -9627,6 +9636,12 @@ declare type MutableWindowOptions = {
|
|
|
9627
9636
|
/**
|
|
9628
9637
|
* Shows the window's icon in the taskbar.
|
|
9629
9638
|
*
|
|
9639
|
+
* @remarks
|
|
9640
|
+
* In Windows, setting `showTaskbarIcon` to false will cause the window to display on all virtual desktops.
|
|
9641
|
+
* In order to prevent this while keeping `showTaskbarIcon` false, pass the identity of the parent via the
|
|
9642
|
+
* `modalParentIdentity` (see {@link WindowCreationOptions}). This is useful for popups managed by
|
|
9643
|
+
* {@link Window._Window.showPopupWindow}.
|
|
9644
|
+
*
|
|
9630
9645
|
* @default true
|
|
9631
9646
|
*/
|
|
9632
9647
|
showTaskbarIcon: boolean;
|
package/out/stub.js
CHANGED
|
@@ -13454,7 +13454,7 @@ Object.defineProperty(PrivateChannelProvider$1, "__esModule", { value: true });
|
|
|
13454
13454
|
PrivateChannelProvider$1.PrivateChannelProvider = void 0;
|
|
13455
13455
|
const utils_1$8 = utils$3;
|
|
13456
13456
|
class PrivateChannelProvider {
|
|
13457
|
-
constructor(provider, id) {
|
|
13457
|
+
constructor(provider, id, removePrivateChannelProvider) {
|
|
13458
13458
|
this.provider = provider;
|
|
13459
13459
|
this.id = id;
|
|
13460
13460
|
this.clients = new Map();
|
|
@@ -13462,6 +13462,7 @@ class PrivateChannelProvider {
|
|
|
13462
13462
|
this.contextByContextType = new Map();
|
|
13463
13463
|
this.lastContext = undefined;
|
|
13464
13464
|
this.provider.onConnection((clientIdentity) => this.registerNewClient(clientIdentity));
|
|
13465
|
+
this.removePrivateChannelProvider = removePrivateChannelProvider;
|
|
13465
13466
|
this.provider.onDisconnection(async (clientIdentity) => {
|
|
13466
13467
|
const { endpointId } = clientIdentity;
|
|
13467
13468
|
if (this.clients.has(endpointId)) {
|
|
@@ -13469,6 +13470,7 @@ class PrivateChannelProvider {
|
|
|
13469
13470
|
}
|
|
13470
13471
|
if ((await this.provider.getAllClientInfo()).length === 0) {
|
|
13471
13472
|
this.provider.destroy();
|
|
13473
|
+
this.removePrivateChannelProvider(this.id);
|
|
13472
13474
|
}
|
|
13473
13475
|
});
|
|
13474
13476
|
}
|
|
@@ -13720,8 +13722,8 @@ class PrivateChannelProvider {
|
|
|
13720
13722
|
});
|
|
13721
13723
|
});
|
|
13722
13724
|
}
|
|
13723
|
-
static init(channelProvider, id) {
|
|
13724
|
-
return new PrivateChannelProvider(channelProvider, id);
|
|
13725
|
+
static init(channelProvider, id, removePrivateChannelProvider) {
|
|
13726
|
+
return new PrivateChannelProvider(channelProvider, id, removePrivateChannelProvider);
|
|
13725
13727
|
}
|
|
13726
13728
|
}
|
|
13727
13729
|
PrivateChannelProvider$1.PrivateChannelProvider = PrivateChannelProvider;
|
|
@@ -13935,6 +13937,7 @@ class InteropBroker extends base_1$5.Base {
|
|
|
13935
13937
|
this.intentClientMap = new Map();
|
|
13936
13938
|
this.lastContextMap = new Map();
|
|
13937
13939
|
this.sessionContextGroupMap = new Map();
|
|
13940
|
+
this.privateChannelProviderMap = new Map();
|
|
13938
13941
|
__classPrivateFieldSet$5(this, _InteropBroker_providerPromise, new lazy_1.Lazy(createProvider), "f");
|
|
13939
13942
|
this.setContextGroupMap();
|
|
13940
13943
|
this.setupChannelProvider();
|
|
@@ -14955,7 +14958,15 @@ class InteropBroker extends base_1$5.Base {
|
|
|
14955
14958
|
channel.register('createPrivateChannelProvider', async (payload) => {
|
|
14956
14959
|
const { channelId } = payload;
|
|
14957
14960
|
const channelProvider = await this.fin.InterApplicationBus.Channel.create(channelId);
|
|
14958
|
-
|
|
14961
|
+
const removePrivateChannelProvider = (channelId) => {
|
|
14962
|
+
this.privateChannelProviderMap.delete(channelId);
|
|
14963
|
+
};
|
|
14964
|
+
const privateChannelProvider = PrivateChannelProvider_1.PrivateChannelProvider.init(channelProvider, channelId, removePrivateChannelProvider);
|
|
14965
|
+
this.privateChannelProviderMap.set(channelId, privateChannelProvider);
|
|
14966
|
+
});
|
|
14967
|
+
channel.register('isIdUsedByPrivateChannel', async (payload) => {
|
|
14968
|
+
const { channelId } = payload;
|
|
14969
|
+
return this.privateChannelProviderMap.has(channelId);
|
|
14959
14970
|
});
|
|
14960
14971
|
}
|
|
14961
14972
|
/**
|
|
@@ -16169,6 +16180,12 @@ class FDC3ModuleBase {
|
|
|
16169
16180
|
this.wire.sendAction('fdc3-get-or-create-channel').catch((e) => {
|
|
16170
16181
|
// we do not want to expose this error, just continue if this analytics-only call fails
|
|
16171
16182
|
});
|
|
16183
|
+
const hasChannelIdBeenUsed = await InteropClient_1$2.InteropClient.ferryFdc3Call(this.client, 'isIdUsedByPrivateChannel', {
|
|
16184
|
+
channelId
|
|
16185
|
+
});
|
|
16186
|
+
if (hasChannelIdBeenUsed) {
|
|
16187
|
+
throw new Error(utils_1$4.ChannelError.AccessDenied);
|
|
16188
|
+
}
|
|
16172
16189
|
const systemChannels = await this._getChannels();
|
|
16173
16190
|
const userChannel = systemChannels.find((channel) => channel.id === channelId);
|
|
16174
16191
|
if (userChannel) {
|