@microservsforsell/contracts 1.2.6 → 1.2.7

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.
@@ -2,7 +2,7 @@ import { Observable } from "rxjs";
2
2
  import { Empty } from "./google/protobuf/empty";
3
3
  export declare const protobufPackage = "theater.v1";
4
4
  export interface ListTheatersResponse {
5
- theater: Theater[];
5
+ theaters: Theater[];
6
6
  }
7
7
  export interface GetTheaterRequest {
8
8
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microservsforsell/contracts",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Protobuf definitions and generated Typecript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -13,7 +13,7 @@ service TheaterService {
13
13
  }
14
14
 
15
15
  message ListTheatersResponse {
16
- repeated Theater theater = 1;
16
+ repeated Theater theaters = 1;
17
17
  }
18
18
 
19
19
  message GetTheaterRequest {