@microservsforsell/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/dist/gen/ts/hall.d.ts +2 -2
- package/package.json +1 -1
- package/proto/hall.proto +2 -2
package/dist/gen/ts/hall.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Observable } from "rxjs";
|
|
|
2
2
|
export declare const protobufPackage = "hall.v1";
|
|
3
3
|
export interface CreateHallRequest {
|
|
4
4
|
name: string;
|
|
5
|
-
|
|
5
|
+
theaterId: string;
|
|
6
6
|
layout: RowLayout[];
|
|
7
7
|
}
|
|
8
8
|
export interface CreateHallResponse {
|
|
@@ -23,7 +23,7 @@ export interface ListHallsResponse {
|
|
|
23
23
|
export interface Hall {
|
|
24
24
|
id: string;
|
|
25
25
|
name: string;
|
|
26
|
-
|
|
26
|
+
theaterId: string;
|
|
27
27
|
layout: RowLayout[];
|
|
28
28
|
}
|
|
29
29
|
export interface RowLayout {
|
package/package.json
CHANGED
package/proto/hall.proto
CHANGED
|
@@ -10,7 +10,7 @@ service HallService {
|
|
|
10
10
|
|
|
11
11
|
message CreateHallRequest {
|
|
12
12
|
string name = 1;
|
|
13
|
-
string
|
|
13
|
+
string theater_id = 2;
|
|
14
14
|
repeated RowLayout layout = 3;
|
|
15
15
|
}
|
|
16
16
|
|
|
@@ -37,7 +37,7 @@ message ListHallsResponse {
|
|
|
37
37
|
message Hall {
|
|
38
38
|
string id = 1;
|
|
39
39
|
string name = 2;
|
|
40
|
-
string
|
|
40
|
+
string theater_id = 3;
|
|
41
41
|
repeated RowLayout layout = 5;
|
|
42
42
|
}
|
|
43
43
|
|