@airticketss/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.
package/gen/users.ts CHANGED
@@ -32,7 +32,7 @@ export interface PatchUserRequest {
32
32
  }
33
33
 
34
34
  export interface PatchUserResponse {
35
- ok: string;
35
+ ok: boolean;
36
36
  }
37
37
 
38
38
  export interface User {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airticketss/contracts",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Protobuf definitions and generate TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/users.proto CHANGED
@@ -32,7 +32,7 @@ message PatchUserRequest {
32
32
  }
33
33
 
34
34
  message PatchUserResponse {
35
- string ok = 1;
35
+ bool ok = 1;
36
36
  }
37
37
 
38
38
  message User {