@vuu-ui/vuu-data-remote 0.8.18-debug → 0.8.19-debug

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/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-data-remote",
3
- "version": "0.8.18-debug",
3
+ "version": "0.8.19-debug",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "devDependencies": {
7
- "@vuu-ui/vuu-data-types": "0.8.18-debug",
8
- "@vuu-ui/vuu-table-types": "0.8.18-debug",
9
- "@vuu-ui/vuu-filter-types": "0.8.18-debug",
10
- "@vuu-ui/vuu-protocol-types": "0.8.18-debug"
7
+ "@vuu-ui/vuu-data-types": "0.8.19-debug",
8
+ "@vuu-ui/vuu-table-types": "0.8.19-debug",
9
+ "@vuu-ui/vuu-filter-types": "0.8.19-debug",
10
+ "@vuu-ui/vuu-protocol-types": "0.8.19-debug"
11
11
  },
12
12
  "dependencies": {
13
- "@vuu-ui/vuu-filter-parser": "0.8.18-debug",
14
- "@vuu-ui/vuu-utils": "0.8.18-debug"
13
+ "@vuu-ui/vuu-filter-parser": "0.8.19-debug",
14
+ "@vuu-ui/vuu-utils": "0.8.19-debug"
15
15
  },
16
16
  "files": [
17
17
  "cjs",
@@ -1,4 +1,4 @@
1
- import { SchemaColumn, TableSchema, VuuUIMessageOut, WithRequestId } from "@vuu-ui/vuu-data-types";
1
+ import { TableSchema, VuuUIMessageOut, WithRequestId } from "@vuu-ui/vuu-data-types";
2
2
  import { ClientToServerMenuRPC, ClientToServerViewportRpcCall, VuuRow, VuuRpcRequest, VuuTable, VuuTableMeta } from "@vuu-ui/vuu-protocol-types";
3
3
  export declare const isVuuMenuRpcRequest: (message: VuuUIMessageOut | VuuRpcRequest | ClientToServerMenuRPC) => message is ClientToServerMenuRPC;
4
4
  export declare const isVuuRpcRequest: (message: VuuUIMessageOut | VuuRpcRequest | ClientToServerMenuRPC | ClientToServerViewportRpcCall) => message is ClientToServerViewportRpcCall;
@@ -11,5 +11,4 @@ export declare const groupRowsByViewport: (rows: VuuRow[]) => ViewportRowMap;
11
11
  export interface VuuTableMetaWithTable extends VuuTableMeta {
12
12
  table: VuuTable;
13
13
  }
14
- export declare const getColumnByName: (schema: TableSchema, name?: string) => SchemaColumn | undefined;
15
14
  export declare const createSchemaFromTableMetadata: ({ columns, dataTypes, key, table, }: VuuTableMetaWithTable) => Readonly<TableSchema>;