@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 +1 -2
- package/package.json +1 -1
- package/proto/hall.proto +1 -2
package/gen/ts/hall.ts
CHANGED
|
@@ -33,14 +33,13 @@ export interface ListHallsRequest {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
export interface ListHallsResponse {
|
|
36
|
-
|
|
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
package/proto/hall.proto
CHANGED
|
@@ -32,14 +32,13 @@ message ListHallsRequest {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
message ListHallsResponse {
|
|
35
|
-
repeated Hall
|
|
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 {
|