@tapir19/contracts 1.1.3 → 1.1.4

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
@@ -27,7 +27,7 @@ export interface CreateUserResponse {
27
27
  }
28
28
 
29
29
  export interface PatchUserRequest {
30
- userId: User | undefined;
30
+ userId: string;
31
31
  name?: string | undefined;
32
32
  }
33
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapir19/contracts",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Protobufs definitions and generated TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/proto/users.proto CHANGED
@@ -26,7 +26,7 @@ message CreateUserResponse {
26
26
  }
27
27
 
28
28
  message PatchUserRequest {
29
- User user_id = 1;
29
+ string user_id = 1;
30
30
  optional string name = 2;
31
31
  }
32
32