@vuu-ui/vuu-protocol-types 0.5.20 → 0.6.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.
Files changed (2) hide show
  1. package/index.d.ts +7 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -102,13 +102,18 @@ export interface ServerToClientTableList {
102
102
 
103
103
  export type VuuTableList = Pick<ServerToClientTableList, "tables">;
104
104
 
105
- export interface ServerToClientTableMeta {
105
+ export interface VuuTableMeta {
106
106
  columns: VuuColumns;
107
107
  dataTypes: VuuColumnDataType[];
108
- type: "TABLE_META_RESP";
108
+ }
109
+ export interface VuuTableMetaWithTable extends VuuTableMeta {
109
110
  table: VuuTable;
110
111
  }
111
112
 
113
+ export interface ServerToClientTableMeta extends VuuTableMetaWithTable {
114
+ type: "TABLE_META_RESP";
115
+ }
116
+
112
117
  export type VuuTableMeta = Pick<
113
118
  ServerToClientTableMeta,
114
119
  "columns" | "dataTypes" | "table"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-protocol-types",
3
- "version": "0.5.20",
3
+ "version": "0.6.0",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "dependencies": {},