@veaceslav_morarescu/contracts 1.3.9 → 1.4.1

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/hall.ts CHANGED
@@ -45,7 +45,6 @@ export interface Hall {
45
45
  export interface RowLayout {
46
46
  row: number;
47
47
  columns: number;
48
- theaterId: string;
49
48
  type: string;
50
49
  price: number;
51
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veaceslav_morarescu/contracts",
3
- "version": "1.3.9",
3
+ "version": "1.4.1",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
package/proto/hall.proto CHANGED
@@ -43,7 +43,6 @@ message Hall {
43
43
  message RowLayout {
44
44
  int32 row = 1;
45
45
  int32 columns = 2;
46
- string theater_id = 3;
47
- string type = 4;
48
- int32 price = 5;
46
+ string type = 3;
47
+ int32 price = 4;
49
48
  }