@teacinema/contracts 1.3.1 → 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 +2 -2
- package/package.json +1 -1
- package/proto/hall.proto +2 -2
package/gen/ts/hall.ts
CHANGED
|
@@ -25,7 +25,7 @@ export interface GetHallRequest {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
export interface GetHallResponse {
|
|
28
|
-
|
|
28
|
+
hall: Hall | undefined;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
export interface ListHallsRequest {
|
|
@@ -33,7 +33,7 @@ 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 {
|
package/package.json
CHANGED
package/proto/hall.proto
CHANGED
|
@@ -24,7 +24,7 @@ message GetHallRequest {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
message GetHallResponse {
|
|
27
|
-
Hall
|
|
27
|
+
Hall hall = 1;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
message ListHallsRequest {
|
|
@@ -32,7 +32,7 @@ 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 {
|