@teacinema/contracts 1.3.2 → 1.3.3

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/seat.ts CHANGED
@@ -24,7 +24,7 @@ export interface ListSeatsRequest {
24
24
  }
25
25
 
26
26
  export interface ListSeatsResponse {
27
- seat: Seat[];
27
+ seats: Seat[];
28
28
  }
29
29
 
30
30
  export interface Seat {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teacinema/contracts",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/seat.proto CHANGED
@@ -21,7 +21,7 @@ message ListSeatsRequest {
21
21
  }
22
22
 
23
23
  message ListSeatsResponse {
24
- repeated Seat seat = 1;
24
+ repeated Seat seats = 1;
25
25
  }
26
26
 
27
27
  message Seat {