@vuu-ui/vuu-protocol-types 0.6.27-debug → 0.7.0-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/index.d.ts +17 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -190,6 +190,17 @@ export interface ServerToClientRPC {
|
|
|
190
190
|
method: string;
|
|
191
191
|
result: any;
|
|
192
192
|
}
|
|
193
|
+
export interface ServerToClientEditRPC {
|
|
194
|
+
type: "VP_EDIT_RPC_RESPONSE";
|
|
195
|
+
method: string;
|
|
196
|
+
result: any;
|
|
197
|
+
}
|
|
198
|
+
export interface ServerToClientEditRPCRejected {
|
|
199
|
+
error: string;
|
|
200
|
+
rpcName: string;
|
|
201
|
+
type: "VP_EDIT_RPC_REJECT";
|
|
202
|
+
vpId: string;
|
|
203
|
+
}
|
|
193
204
|
export interface ServerToClientOpenTreeNodeSuccess {
|
|
194
205
|
type: "OPEN_TREE_SUCCESS";
|
|
195
206
|
}
|
|
@@ -239,7 +250,10 @@ export declare type ServerToClientBody =
|
|
|
239
250
|
| ServerToClientCloseTreeNodeSuccess
|
|
240
251
|
| ServerToClientCreateLinkSuccess
|
|
241
252
|
| ServerToClientRemoveLinkSuccess
|
|
242
|
-
| ServerToClientError
|
|
253
|
+
| ServerToClientError
|
|
254
|
+
| ServerToClientEditRPC
|
|
255
|
+
| ServerToClientEditRPC
|
|
256
|
+
| ServerToClientEditRPCRejected;
|
|
243
257
|
export interface ServerToClientMessage<
|
|
244
258
|
TBody extends ServerToClientBody = ServerToClientBody
|
|
245
259
|
> {
|
|
@@ -447,6 +461,8 @@ export interface ClientToServerMessage<
|
|
|
447
461
|
|
|
448
462
|
/** Menu RPC services */
|
|
449
463
|
export interface OpenDialogAction {
|
|
464
|
+
columns?: VuuColumns;
|
|
465
|
+
dataTypes?: VuuColumnDataType[];
|
|
450
466
|
type: "OPEN_DIALOG_ACTION";
|
|
451
467
|
table: VuuTable;
|
|
452
468
|
}
|