@vuu-ui/vuu-protocol-types 0.13.112 → 0.13.113-alpha.1

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 +3 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -569,12 +569,14 @@ export declare type RpcResultError = {
569
569
  type: "ERROR_RESULT";
570
570
  errorMessage: string;
571
571
  };
572
+
573
+ export declare type RpcResult = RpcResultSuccess | RpcResultError;
572
574
  export interface VuuRpcServiceResponse {
573
575
  action: unknown;
574
576
  error: null | unknown;
575
577
  rpcName: TypeAheadMethod;
576
578
  type: "RPC_RESPONSE";
577
- result: RpcResultSuccess | RpcResultError;
579
+ result: RpcResult;
578
580
  }
579
581
 
580
582
  export interface VuuViewportRpcTypeaheadRequest extends VuuRpcServiceRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-protocol-types",
3
- "version": "0.13.112",
3
+ "version": "0.13.113-alpha.1",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "dependencies": {},