@interopio/desktop 6.3.1 → 6.4.0
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 +4 -0
- package/desktop.d.ts +66 -24
- package/dist/desktop.browser.js +5 -5
- 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 +5 -5
- package/dist/desktop.es.js.map +1 -1
- package/dist/desktop.umd.js +5 -5
- 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 +2 -2
package/dist/desktop.es.js
CHANGED
|
@@ -18502,12 +18502,12 @@ async function switchChannel(channel, id) {
|
|
|
18502
18502
|
}
|
|
18503
18503
|
async function setRestrictions(restrictions) {
|
|
18504
18504
|
var _a;
|
|
18505
|
-
|
|
18505
|
+
await interop.invoke(T42_ANNOUNCE_METHOD_NAME, {
|
|
18506
18506
|
swId: (_a = restrictions.windowId) !== null && _a !== void 0 ? _a : windowId,
|
|
18507
18507
|
command: "restrict",
|
|
18508
18508
|
data: restrictions
|
|
18509
18509
|
});
|
|
18510
|
-
return
|
|
18510
|
+
return;
|
|
18511
18511
|
}
|
|
18512
18512
|
async function getRestrictionsByWindow(id) {
|
|
18513
18513
|
try {
|
|
@@ -18523,12 +18523,12 @@ async function getRestrictionsByWindow(id) {
|
|
|
18523
18523
|
}
|
|
18524
18524
|
async function setRestrictionsForAllChannels(restrictions) {
|
|
18525
18525
|
var _a;
|
|
18526
|
-
|
|
18526
|
+
await interop.invoke(T42_ANNOUNCE_METHOD_NAME, {
|
|
18527
18527
|
swId: (_a = restrictions.windowId) !== null && _a !== void 0 ? _a : windowId,
|
|
18528
18528
|
command: "restrictAll",
|
|
18529
18529
|
data: restrictions
|
|
18530
18530
|
});
|
|
18531
|
-
return
|
|
18531
|
+
return;
|
|
18532
18532
|
}
|
|
18533
18533
|
async function getWindowsWithChannels(filter) {
|
|
18534
18534
|
const result = await interop.invoke(T42_ANNOUNCE_METHOD_NAME, { command: "getChannelsInfo", data: { filter } });
|
|
@@ -19053,7 +19053,7 @@ function factory$3(agm) {
|
|
|
19053
19053
|
};
|
|
19054
19054
|
}
|
|
19055
19055
|
|
|
19056
|
-
var version = "6.
|
|
19056
|
+
var version = "6.4.0";
|
|
19057
19057
|
|
|
19058
19058
|
var prepareConfig = (options) => {
|
|
19059
19059
|
function getLibConfig(value, defaultMode, trueMode) {
|