@dvltcinema/contracts 1.3.3 → 1.3.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/seat.ts CHANGED
@@ -34,7 +34,7 @@ export interface Seat {
34
34
  price: number;
35
35
  status: string;
36
36
  type: string;
37
- holeId: string;
37
+ hallId: string;
38
38
  }
39
39
 
40
40
  export const SEAT_V1_PACKAGE_NAME = "seat.v1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvltcinema/contracts",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "Protobuf definitions and generated Typescript and Go files",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/seat.proto CHANGED
@@ -29,5 +29,5 @@ message Seat {
29
29
  int32 price = 4;
30
30
  string status = 5;
31
31
  string type = 6;
32
- string hole_id = 7;
32
+ string hall_id = 7;
33
33
  }