@vuu-ui/vuu-protocol-types 0.5.19 → 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.
- package/index.d.ts +7 -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
|
|
105
|
+
export interface VuuTableMeta {
|
|
106
106
|
columns: VuuColumns;
|
|
107
107
|
dataTypes: VuuColumnDataType[];
|
|
108
|
-
|
|
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"
|