@tapir19/contracts 1.3.1 → 1.3.2

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/ts/hall.ts CHANGED
@@ -23,7 +23,7 @@ export interface GetHallRequest {
23
23
  }
24
24
 
25
25
  export interface GetHallResponse {
26
- halls: Hall | undefined;
26
+ hall: Hall | undefined;
27
27
  }
28
28
 
29
29
  export interface CreateHallRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapir19/contracts",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Protobufs definitions and generated TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/proto/hall.proto CHANGED
@@ -21,7 +21,7 @@ message GetHallRequest {
21
21
  }
22
22
 
23
23
  message GetHallResponse {
24
- Hall halls = 1;
24
+ Hall hall = 1;
25
25
  }
26
26
 
27
27
  message CreateHallRequest {