@vuu-ui/vuu-protocol-types 0.13.111-alpha.1 → 0.13.111

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