@interopio/desktop 6.10.0 → 6.10.2
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/changelog.md +9 -0
- package/desktop.d.ts +30 -4
- package/dist/desktop.browser.js +20850 -19404
- package/dist/desktop.browser.js.map +1 -1
- package/dist/desktop.browser.min.js +1 -1
- package/dist/desktop.browser.min.js.map +1 -1
- package/dist/desktop.es.js +20850 -19404
- package/dist/desktop.es.js.map +1 -1
- package/dist/desktop.umd.js +20850 -19404
- package/dist/desktop.umd.js.map +1 -1
- package/dist/desktop.umd.min.js +1 -1
- package/dist/desktop.umd.min.js.map +1 -1
- package/package.json +51 -48
package/changelog.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
6.10.2
|
|
2
|
+
- beta release
|
|
3
|
+
- chore: latest core package with a fix for re-announcing contexts
|
|
4
|
+
6.10.1
|
|
5
|
+
- beta release
|
|
6
|
+
- chore: latest core package with a fix for re-announcing contexts
|
|
7
|
+
6.10.0
|
|
8
|
+
- feat: channels - add support for multi channels
|
|
9
|
+
- fix: windows - navigate method accepts timeout as a parameter
|
|
1
10
|
6.9.0
|
|
2
11
|
- feat: Enable executeJavaScript Method Access through External API
|
|
3
12
|
- feat: Bulk update Notifications from Notification Panel
|
package/desktop.d.ts
CHANGED
|
@@ -122,7 +122,7 @@ export declare namespace IOConnectDesktop {
|
|
|
122
122
|
* Initializes or disables the Channels API.
|
|
123
123
|
* @default false
|
|
124
124
|
*/
|
|
125
|
-
channels?: boolean;
|
|
125
|
+
channels?: boolean | IOConnectDesktop.Channels.Configuration;
|
|
126
126
|
|
|
127
127
|
/**
|
|
128
128
|
* Initializes or disables the Displays API.
|
|
@@ -2947,7 +2947,7 @@ export declare namespace IOConnectDesktop {
|
|
|
2947
2947
|
/**
|
|
2948
2948
|
* ID of the window that will be used to relatively position the new window. Can be combined with `relativeDirection`.
|
|
2949
2949
|
*/
|
|
2950
|
-
relativeTo?: string;
|
|
2950
|
+
relativeTo?: string | IOConnectWindow;
|
|
2951
2951
|
|
|
2952
2952
|
/**
|
|
2953
2953
|
* Direction for positioning the window relatively to the window specified in the `relativeTo` property.
|
|
@@ -6087,6 +6087,32 @@ export declare namespace IOConnectDesktop {
|
|
|
6087
6087
|
* The Channels API is accessible through the `io.channels` object.
|
|
6088
6088
|
*/
|
|
6089
6089
|
namespace Channels {
|
|
6090
|
+
|
|
6091
|
+
/**
|
|
6092
|
+
* Mode for the Channels API. Used internally, shouldn't be used by end user apps.
|
|
6093
|
+
* @ignore
|
|
6094
|
+
*/
|
|
6095
|
+
export const enum OperationMode {
|
|
6096
|
+
Single = "single",
|
|
6097
|
+
Multi = "multi"
|
|
6098
|
+
}
|
|
6099
|
+
|
|
6100
|
+
/**
|
|
6101
|
+
* Settings for the Channels API.
|
|
6102
|
+
*/
|
|
6103
|
+
export interface Configuration {
|
|
6104
|
+
/**
|
|
6105
|
+
* If `true`, will enable the Channels API.
|
|
6106
|
+
* @default false
|
|
6107
|
+
*/
|
|
6108
|
+
enabled?: boolean;
|
|
6109
|
+
/**
|
|
6110
|
+
* Sets the mode for the Channels API. Used internally, shouldn't be used by end user apps.
|
|
6111
|
+
* @default "single"
|
|
6112
|
+
* @ignore
|
|
6113
|
+
*/
|
|
6114
|
+
operationMode?: OperationMode;
|
|
6115
|
+
}
|
|
6090
6116
|
/**
|
|
6091
6117
|
* Channels API.
|
|
6092
6118
|
*/
|
|
@@ -6269,7 +6295,7 @@ export declare namespace IOConnectDesktop {
|
|
|
6269
6295
|
* @default "single"
|
|
6270
6296
|
* @since io.Connect Desktop 9.7
|
|
6271
6297
|
*/
|
|
6272
|
-
mode:
|
|
6298
|
+
mode: OperationMode;
|
|
6273
6299
|
}
|
|
6274
6300
|
|
|
6275
6301
|
/**
|
|
@@ -6723,7 +6749,7 @@ export declare namespace IOConnectDesktop {
|
|
|
6723
6749
|
/**
|
|
6724
6750
|
* Provides additional information about an Intent (e.g., when an Intent is retrieved with the `getIntents()` method).
|
|
6725
6751
|
*/
|
|
6726
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
6752
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-interface, @typescript-eslint/no-empty-object-type
|
|
6727
6753
|
export interface IntentInfo extends AddIntentListenerRequest { }
|
|
6728
6754
|
|
|
6729
6755
|
/**
|