@vuu-ui/vuu-data-types 0.13.113-alpha.2 → 0.13.114
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 +10 -8
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -817,6 +817,14 @@ export interface VuuUIMessageOutUnsubscribe {
|
|
|
817
817
|
type: "unsubscribe";
|
|
818
818
|
viewport: string;
|
|
819
819
|
}
|
|
820
|
+
|
|
821
|
+
export interface VuuUIMessageOutDisableAllActive {
|
|
822
|
+
type: "disable-all-active";
|
|
823
|
+
}
|
|
824
|
+
export interface VuuUIMessageOutEnableAllActive {
|
|
825
|
+
type: "enable-all-active";
|
|
826
|
+
}
|
|
827
|
+
|
|
820
828
|
export interface VuuUIMessageOutSuspend {
|
|
821
829
|
/**
|
|
822
830
|
* suspend is purely a client-side mechanism to avoid sending
|
|
@@ -833,10 +841,6 @@ export interface VuuUIMessageOutSuspend {
|
|
|
833
841
|
type: "suspend";
|
|
834
842
|
viewport: string;
|
|
835
843
|
}
|
|
836
|
-
export interface VuuUIMessageOutResume {
|
|
837
|
-
type: "resume";
|
|
838
|
-
viewport: string;
|
|
839
|
-
}
|
|
840
844
|
|
|
841
845
|
export interface ViewportMessageOut {
|
|
842
846
|
viewport: string;
|
|
@@ -898,10 +902,6 @@ export interface VuuUIMessageOutSelectNone extends ViewportMessageOut {
|
|
|
898
902
|
type: "selectNone";
|
|
899
903
|
}
|
|
900
904
|
|
|
901
|
-
export interface VuuUIMessageOutSuspend extends ViewportMessageOut {
|
|
902
|
-
type: "suspend";
|
|
903
|
-
}
|
|
904
|
-
|
|
905
905
|
export interface VuuUIMessageOutConfig extends ViewportMessageOut {
|
|
906
906
|
config: WithFullConfig;
|
|
907
907
|
type: "config";
|
|
@@ -926,6 +926,8 @@ export declare type WithRequestId<T> = T & { requestId: string };
|
|
|
926
926
|
export declare type VuuUIMessageOut =
|
|
927
927
|
| VuuUIMessageOutConnect
|
|
928
928
|
| VuuUIMessageOutDisconnect
|
|
929
|
+
| VuuUIMessageOutDisableAllActive
|
|
930
|
+
| VuuUIMessageOutEnableAllActive
|
|
929
931
|
| VuuUIMessageOutSubscribe
|
|
930
932
|
| VuuUIMessageOutUnsubscribe
|
|
931
933
|
| VuuUIMessageOutViewport
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.114",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "0.13.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "0.13.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "0.13.114",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "0.13.114"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|