@usteam/contracts 1.3.0 → 1.3.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/ts/sector.ts +1 -2
- package/package.json +1 -1
- package/proto/sector.proto +1 -2
package/gen/ts/sector.ts
CHANGED
|
@@ -33,14 +33,13 @@ export interface ListSectorsRequest {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
export interface ListSectorsResponse {
|
|
36
|
-
|
|
36
|
+
sectors: Sector[];
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
export interface Sector {
|
|
40
40
|
id: string;
|
|
41
41
|
name: string;
|
|
42
42
|
arenaId: string;
|
|
43
|
-
layout: RowLayout[];
|
|
44
43
|
}
|
|
45
44
|
|
|
46
45
|
export interface RowLayout {
|
package/package.json
CHANGED
package/proto/sector.proto
CHANGED
|
@@ -35,7 +35,7 @@ message ListSectorsRequest {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
message ListSectorsResponse {
|
|
38
|
-
repeated Sector
|
|
38
|
+
repeated Sector sectors = 1;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
|
|
@@ -44,7 +44,6 @@ message Sector {
|
|
|
44
44
|
string id = 1;
|
|
45
45
|
string name = 2;
|
|
46
46
|
string arena_id = 3;
|
|
47
|
-
repeated RowLayout layout = 4;
|
|
48
47
|
}
|
|
49
48
|
|
|
50
49
|
message RowLayout {
|