@wolfcinema/contracts 1.2.6 → 1.2.8

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
@@ -40,7 +40,6 @@ export interface Hall {
40
40
  id: string;
41
41
  name: string;
42
42
  theaterId: string;
43
- layout: RowLayout[];
44
43
  }
45
44
 
46
45
  export interface RowLayout {
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": "@wolfcinema/contracts",
3
- "version": "1.2.6",
3
+ "version": "1.2.8",
4
4
  "description": "Protobuf definitions and generated ts",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/hall.proto CHANGED
@@ -41,7 +41,6 @@ message Hall {
41
41
  string id = 1;
42
42
  string name = 2;
43
43
  string theater_id = 3;
44
- repeated RowLayout layout = 4;
45
44
  }
46
45
 
47
46
  message RowLayout {
package/proto/seat.proto CHANGED
@@ -23,7 +23,7 @@ message ListSeatsRequest {
23
23
  }
24
24
 
25
25
  message ListSeatsResponse {
26
- repeated Seat seat = 1;
26
+ repeated Seat seats = 1;
27
27
  }
28
28
 
29
29
  message Seat {