@vuu-ui/vuu-data-types 0.8.26 → 0.8.27
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/index.d.ts +7 -0
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -510,6 +510,7 @@ export type ConnectionStatus =
|
|
|
510
510
|
| "connection-open-awaiting-session"
|
|
511
511
|
| "connected"
|
|
512
512
|
| "disconnected"
|
|
513
|
+
| "failed"
|
|
513
514
|
| "reconnected";
|
|
514
515
|
|
|
515
516
|
export interface ConnectionStatusMessage {
|
|
@@ -546,6 +547,11 @@ export type VuuUIMessageInConnected = {
|
|
|
546
547
|
type: "connected";
|
|
547
548
|
};
|
|
548
549
|
|
|
550
|
+
export type VuuUIMessageInConnectionFailed = {
|
|
551
|
+
type: "connection-failed";
|
|
552
|
+
reason: string;
|
|
553
|
+
};
|
|
554
|
+
|
|
549
555
|
export type VuuUIMessageInWorkerReady = {
|
|
550
556
|
type: "ready";
|
|
551
557
|
};
|
|
@@ -607,6 +613,7 @@ export interface VuuUIMessageInMenuRej {
|
|
|
607
613
|
|
|
608
614
|
export type VuuUIMessageIn =
|
|
609
615
|
| VuuUIMessageInConnected
|
|
616
|
+
| VuuUIMessageInConnectionFailed
|
|
610
617
|
| VuuUIMessageInWorkerReady
|
|
611
618
|
| VuuUIMessageInRPC
|
|
612
619
|
| ViewportRpcResponse
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.27",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "0.8.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "0.8.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "0.8.27",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "0.8.27"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|