@teacinema/contracts 1.3.0 → 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
@@ -33,14 +33,13 @@ export interface ListHallsRequest {
33
33
  }
34
34
 
35
35
  export interface ListHallsResponse {
36
- hall: Hall[];
36
+ halls: Hall[];
37
37
  }
38
38
 
39
39
  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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teacinema/contracts",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/hall.proto CHANGED
@@ -32,14 +32,13 @@ message ListHallsRequest {
32
32
  }
33
33
 
34
34
  message ListHallsResponse {
35
- repeated Hall hall = 1;
35
+ repeated Hall halls = 1;
36
36
  }
37
37
 
38
38
  message Hall {
39
39
  string id = 1;
40
40
  string name = 2;
41
41
  string theater_id = 3;
42
- repeated RowLayout layout = 4;
43
42
  }
44
43
 
45
44
  message RowLayout {