@tapir19/contracts 1.3.0 → 1.3.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.
package/gen/ts/hall.ts CHANGED
@@ -47,7 +47,6 @@ export interface Hall {
47
47
  id: string;
48
48
  name: string;
49
49
  theaterId: string;
50
- layout: RowLayout[];
51
50
  }
52
51
 
53
52
  export const HALL_V1_PACKAGE_NAME = "hall.v1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapir19/contracts",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "Protobufs definitions and generated TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/proto/hall.proto CHANGED
@@ -45,5 +45,4 @@ message Hall {
45
45
  string id = 1;
46
46
  string name = 2;
47
47
  string theater_id = 3;
48
- repeated RowLayout layout = 4;
49
48
  }