@vuu-ui/vuu-protocol-types 0.8.80 → 0.8.81

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 +2 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -411,7 +411,7 @@ export interface ServerToClientRPC {
411
411
  export interface ClientToServerViewportRpcCall {
412
412
  type: "VIEW_PORT_RPC_CALL";
413
413
  rpcName: string;
414
- namedParams: { [key: string]: VuuRowDataItemType };
414
+ namedParams: { [key: string]: VuuRowDataItemType | VuuTable };
415
415
  params: string[];
416
416
  vpId: string;
417
417
  }
@@ -424,7 +424,7 @@ export interface ServerToClientViewportRpcResponse {
424
424
  };
425
425
  type: "VIEW_PORT_RPC_REPONSE";
426
426
  method: string;
427
- namedParams: { [key: string]: VuuRowDataItemType };
427
+ namedParams: { [key: string]: VuuRowDataItemType | VuuTable };
428
428
  params: string[];
429
429
  vpId: string;
430
430
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-protocol-types",
3
- "version": "0.8.80",
3
+ "version": "0.8.81",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "dependencies": {},