@usteam/contracts 1.3.1 → 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
@@ -24,7 +24,7 @@ export interface ListSeatsRequest {
24
24
  }
25
25
 
26
26
  export interface ListSeatsResponse {
27
- seat: Seat[];
27
+ seats: Seat[];
28
28
  }
29
29
 
30
30
  export interface Seat {
package/gen/ts/sector.ts CHANGED
@@ -44,7 +44,7 @@ export interface Sector {
44
44
 
45
45
  export interface RowLayout {
46
46
  row: number;
47
- colomns: number;
47
+ columns: number;
48
48
  type: string;
49
49
  price: number;
50
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usteam/contracts",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {
package/proto/seat.proto CHANGED
@@ -24,7 +24,7 @@ message ListSeatsRequest {
24
24
  }
25
25
 
26
26
  message ListSeatsResponse {
27
- repeated Seat seat = 1;
27
+ repeated Seat seats = 1;
28
28
  }
29
29
 
30
30
  message Seat {
@@ -48,7 +48,7 @@ message Sector {
48
48
 
49
49
  message RowLayout {
50
50
  int32 row = 1;
51
- int32 colomns = 2;
51
+ int32 columns = 2;
52
52
  string type = 3;
53
53
  int32 price = 4;
54
54
  }