@teacinema-nekoo/contracts 1.3.2 → 1.3.3

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/seat.ts CHANGED
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teacinema-nekoo/contracts",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/seat.proto CHANGED
@@ -29,7 +29,6 @@ message Seat {
29
29
  int32 row = 2;
30
30
  int32 number = 3;
31
31
  int32 price = 4;
32
- string status = 5;
33
- string type = 6;
34
- string hall_id = 7;
32
+ string type = 5;
33
+ string hall_id = 6;
35
34
  }