@microservsforsell/contracts 1.1.4 → 1.1.5

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.
@@ -17,7 +17,7 @@ export interface PatchUserRequest {
17
17
  name?: string | undefined;
18
18
  }
19
19
  export interface PatchUserResponse {
20
- okv: boolean;
20
+ ok: boolean;
21
21
  }
22
22
  export interface User {
23
23
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microservsforsell/contracts",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Protobuf definitions and generated Typecript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/users.proto CHANGED
@@ -28,7 +28,7 @@ message PatchUserRequest {
28
28
  optional string name = 2;
29
29
  }
30
30
  message PatchUserResponse {
31
- bool okv = 1;
31
+ bool ok = 1;
32
32
  }
33
33
 
34
34
  message User {