@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.
- package/index.d.ts +2 -6
- 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
|
-
|
|
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:
|
|
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
|
*
|