@vuu-ui/vuu-protocol-types 0.11.2 → 0.12.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 +2 -6
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -225,7 +225,6 @@ export declare type ServerMessageBody =
225
225
  | VuuViewportMenusResponse
226
226
  | VuuRpcMenuSuccess
227
227
  | VuuRpcMenuError
228
- | ServerToClientMenuSessionTableAction
229
228
  | VuuRpcServiceResponse
230
229
  | VuuRpcViewportResponse
231
230
  | VuuViewportVisualLinksResponse
@@ -403,7 +402,7 @@ export interface VuuRpcViewportRequest {
403
402
  export interface VuuRpcViewportResponse {
404
403
  action: VuuRpcViewportAction;
405
404
  type: "VIEW_PORT_RPC_REPONSE";
406
- // method: string;
405
+ method: string;
407
406
  namedParams: { [key: string]: VuuRowDataItemType | VuuTable };
408
407
  params: string[];
409
408
  vpId: string;
@@ -430,7 +429,7 @@ export interface ClientToServerMenuGridRPC {
430
429
  }
431
430
 
432
431
  export interface ClientToServerMenuRowRPC {
433
- row: VuuRowRecord;
432
+ row: VuuDataRowDto;
434
433
  rowKey: string;
435
434
  rpcName: string;
436
435
  type: "VIEW_PORT_MENU_ROW_RPC";
@@ -643,9 +642,6 @@ export declare type VuuLinkDescriptor = {
643
642
  link: VuuLink;
644
643
  };
645
644
 
646
- // used in MenuRPC row message
647
- export declare type VuuRowRecord = { [key: string]: VuuRowDataItemType };
648
-
649
645
  /**
650
646
  * LinkDescriptor with label is not strictly part of the Vuu Protocol
651
647
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-protocol-types",
3
- "version": "0.11.2",
3
+ "version": "0.12.0",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "dependencies": {},