@vuu-ui/vuu-data-types 0.8.22 → 0.8.23

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 +9 -1
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -260,10 +260,18 @@ export type SchemaColumn = {
260
260
  serverDataType: VuuColumnDataType;
261
261
  };
262
262
 
263
+ /**
264
+ * session will be present for session tables only, in which case the table
265
+ * name represents the 'archetype' table name.
266
+ */
267
+ export type TableSchemaTable = VuuTable & {
268
+ session?: string;
269
+ };
270
+
263
271
  export type TableSchema = {
264
272
  columns: SchemaColumn[];
265
273
  key: string;
266
- table: VuuTable;
274
+ table: TableSchemaTable;
267
275
  };
268
276
 
269
277
  /**
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-data-types",
3
- "version": "0.8.22",
3
+ "version": "0.8.23",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "devDependencies": {
7
- "@vuu-ui/vuu-filter-types": "0.8.22",
8
- "@vuu-ui/vuu-protocol-types": "0.8.22"
7
+ "@vuu-ui/vuu-filter-types": "0.8.23",
8
+ "@vuu-ui/vuu-protocol-types": "0.8.23"
9
9
  },
10
10
  "dependencies": {},
11
11
  "peerDependencies": {},