@teacinema/contracts 1.3.0 → 1.3.1

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
@@ -25,7 +25,7 @@ export interface GetHallRequest {
25
25
  }
26
26
 
27
27
  export interface GetHallResponse {
28
- hall: Hall | undefined;
28
+ halls: Hall | undefined;
29
29
  }
30
30
 
31
31
  export interface ListHallsRequest {
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teacinema/contracts",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
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
@@ -24,7 +24,7 @@ message GetHallRequest {
24
24
  }
25
25
 
26
26
  message GetHallResponse {
27
- Hall hall = 1;
27
+ Hall halls = 1;
28
28
  }
29
29
 
30
30
  message ListHallsRequest {
@@ -39,7 +39,6 @@ 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 {