openviber 0.4.3 → 0.5.1
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/README.md +24 -1
- package/dist/cli/index.cjs +2802 -171
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +2815 -184
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +443 -155
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +444 -156
- package/dist/index.js.map +1 -1
- package/package.json +9 -3
package/dist/index.d.cts
CHANGED
|
@@ -1551,18 +1551,22 @@ type ControllerServerMessage = {
|
|
|
1551
1551
|
} | {
|
|
1552
1552
|
type: "terminal:attach";
|
|
1553
1553
|
target: string;
|
|
1554
|
+
appId?: string;
|
|
1554
1555
|
} | {
|
|
1555
1556
|
type: "terminal:detach";
|
|
1556
1557
|
target: string;
|
|
1558
|
+
appId?: string;
|
|
1557
1559
|
} | {
|
|
1558
1560
|
type: "terminal:input";
|
|
1559
1561
|
target: string;
|
|
1560
1562
|
keys: string;
|
|
1563
|
+
appId?: string;
|
|
1561
1564
|
} | {
|
|
1562
1565
|
type: "terminal:resize";
|
|
1563
1566
|
target: string;
|
|
1564
1567
|
cols: number;
|
|
1565
1568
|
rows: number;
|
|
1569
|
+
appId?: string;
|
|
1566
1570
|
};
|
|
1567
1571
|
type ControllerClientMessage = {
|
|
1568
1572
|
type: "connected";
|
|
@@ -1590,23 +1594,28 @@ type ControllerClientMessage = {
|
|
|
1590
1594
|
type: "pong";
|
|
1591
1595
|
} | {
|
|
1592
1596
|
type: "terminal:list";
|
|
1597
|
+
apps: any[];
|
|
1593
1598
|
sessions: any[];
|
|
1594
1599
|
panes: any[];
|
|
1595
1600
|
} | {
|
|
1596
1601
|
type: "terminal:attached";
|
|
1597
1602
|
target: string;
|
|
1603
|
+
appId?: string;
|
|
1598
1604
|
ok: boolean;
|
|
1599
1605
|
error?: string;
|
|
1600
1606
|
} | {
|
|
1601
1607
|
type: "terminal:detached";
|
|
1602
1608
|
target: string;
|
|
1609
|
+
appId?: string;
|
|
1603
1610
|
} | {
|
|
1604
1611
|
type: "terminal:output";
|
|
1605
1612
|
target: string;
|
|
1613
|
+
appId?: string;
|
|
1606
1614
|
data: string;
|
|
1607
1615
|
} | {
|
|
1608
1616
|
type: "terminal:resized";
|
|
1609
1617
|
target: string;
|
|
1618
|
+
appId?: string;
|
|
1610
1619
|
ok: boolean;
|
|
1611
1620
|
};
|
|
1612
1621
|
declare class ViberController extends EventEmitter {
|
package/dist/index.d.ts
CHANGED
|
@@ -1551,18 +1551,22 @@ type ControllerServerMessage = {
|
|
|
1551
1551
|
} | {
|
|
1552
1552
|
type: "terminal:attach";
|
|
1553
1553
|
target: string;
|
|
1554
|
+
appId?: string;
|
|
1554
1555
|
} | {
|
|
1555
1556
|
type: "terminal:detach";
|
|
1556
1557
|
target: string;
|
|
1558
|
+
appId?: string;
|
|
1557
1559
|
} | {
|
|
1558
1560
|
type: "terminal:input";
|
|
1559
1561
|
target: string;
|
|
1560
1562
|
keys: string;
|
|
1563
|
+
appId?: string;
|
|
1561
1564
|
} | {
|
|
1562
1565
|
type: "terminal:resize";
|
|
1563
1566
|
target: string;
|
|
1564
1567
|
cols: number;
|
|
1565
1568
|
rows: number;
|
|
1569
|
+
appId?: string;
|
|
1566
1570
|
};
|
|
1567
1571
|
type ControllerClientMessage = {
|
|
1568
1572
|
type: "connected";
|
|
@@ -1590,23 +1594,28 @@ type ControllerClientMessage = {
|
|
|
1590
1594
|
type: "pong";
|
|
1591
1595
|
} | {
|
|
1592
1596
|
type: "terminal:list";
|
|
1597
|
+
apps: any[];
|
|
1593
1598
|
sessions: any[];
|
|
1594
1599
|
panes: any[];
|
|
1595
1600
|
} | {
|
|
1596
1601
|
type: "terminal:attached";
|
|
1597
1602
|
target: string;
|
|
1603
|
+
appId?: string;
|
|
1598
1604
|
ok: boolean;
|
|
1599
1605
|
error?: string;
|
|
1600
1606
|
} | {
|
|
1601
1607
|
type: "terminal:detached";
|
|
1602
1608
|
target: string;
|
|
1609
|
+
appId?: string;
|
|
1603
1610
|
} | {
|
|
1604
1611
|
type: "terminal:output";
|
|
1605
1612
|
target: string;
|
|
1613
|
+
appId?: string;
|
|
1606
1614
|
data: string;
|
|
1607
1615
|
} | {
|
|
1608
1616
|
type: "terminal:resized";
|
|
1609
1617
|
target: string;
|
|
1618
|
+
appId?: string;
|
|
1610
1619
|
ok: boolean;
|
|
1611
1620
|
};
|
|
1612
1621
|
declare class ViberController extends EventEmitter {
|