@just-education-org/rpc-contracts 1.14.1 → 1.14.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.
@@ -44,6 +44,8 @@ export interface Theater {
44
44
  status: TheaterStatus;
45
45
  openingHours: OpeningHours[];
46
46
  imageUrls: string[];
47
+ venueName?: string | undefined;
48
+ floor?: string | undefined;
47
49
  }
48
50
  export interface OpeningHours {
49
51
  dayOfWeek: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-education-org/rpc-contracts",
3
- "version": "1.14.1",
3
+ "version": "1.14.2",
4
4
  "description": "Protobuf definitions and generated TS types",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -57,12 +57,11 @@ message Theater {
57
57
  optional string email = 6;
58
58
  optional string website_url = 7;
59
59
  optional string timezone = 8;
60
- TheaterStatus status = 10;
61
- repeated OpeningHours opening_hours = 11;
62
- repeated string image_urls = 13;
63
-
64
- reserved 9;
65
- reserved "amenities";
60
+ TheaterStatus status = 9;
61
+ repeated OpeningHours opening_hours = 10;
62
+ repeated string image_urls = 11;
63
+ optional string venue_name = 12;
64
+ optional string floor = 13;
66
65
  }
67
66
 
68
67
  enum TheaterStatus {