@nemma-training/contracts 1.2.2 → 1.2.4
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 +0 -1
- package/gen/ts/seat.ts +1 -2
- package/package.json +1 -1
- package/proto/hall.proto +0 -1
- package/proto/seat.proto +3 -4
package/gen/ts/hall.ts
CHANGED
package/gen/ts/seat.ts
CHANGED
|
@@ -24,7 +24,7 @@ export interface ListSeatsRequest {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export interface ListSeatsResponse {
|
|
27
|
-
|
|
27
|
+
seats: Seat[];
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
export interface Seat {
|
|
@@ -32,7 +32,6 @@ export interface Seat {
|
|
|
32
32
|
row: number;
|
|
33
33
|
number: number;
|
|
34
34
|
price: number;
|
|
35
|
-
status: string;
|
|
36
35
|
type: string;
|
|
37
36
|
hallId: string;
|
|
38
37
|
}
|
package/package.json
CHANGED
package/proto/hall.proto
CHANGED
package/proto/seat.proto
CHANGED
|
@@ -21,7 +21,7 @@ message ListSeatsRequest {
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
message ListSeatsResponse {
|
|
24
|
-
repeated Seat
|
|
24
|
+
repeated Seat seats = 1;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
message Seat {
|
|
@@ -29,7 +29,6 @@ message Seat {
|
|
|
29
29
|
int32 row = 2;
|
|
30
30
|
int32 number = 3;
|
|
31
31
|
int32 price = 4;
|
|
32
|
-
string
|
|
33
|
-
string
|
|
34
|
-
string hall_id = 7;
|
|
32
|
+
string type = 5;
|
|
33
|
+
string hall_id = 6;
|
|
35
34
|
}
|