@microservsforsell/contracts 1.2.4 → 1.2.6

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.
@@ -11,7 +11,7 @@ export interface GetTheaterResponse {
11
11
  theater: Theater | undefined;
12
12
  }
13
13
  export interface CreateTheaterRequest {
14
- nane: string;
14
+ name: string;
15
15
  address: string;
16
16
  }
17
17
  export interface CreateTheaterResponse {
@@ -5,4 +5,5 @@ export declare const PROTO_PATHS: {
5
5
  readonly MEDIA: string;
6
6
  readonly MOVIE: string;
7
7
  readonly CATEGORY: string;
8
+ readonly THEATER: string;
8
9
  };
@@ -9,6 +9,7 @@ exports.PROTO_PATHS = {
9
9
  MEDIA: (0, path_1.join)(__dirname, "../../proto/media.proto"),
10
10
  MOVIE: (0, path_1.join)(__dirname, "../../proto/movie.proto"),
11
11
  CATEGORY: (0, path_1.join)(__dirname, "../../proto/category.proto"),
12
+ THEATER: (0, path_1.join)(__dirname, "../../proto/theater.proto"),
12
13
  };
13
14
  // GENRE: join(__dirname, "../../proto/genre.proto"),
14
15
  // REVIEW: join(__dirname, "../../proto/review.proto"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microservsforsell/contracts",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Protobuf definitions and generated Typecript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -25,7 +25,7 @@ message GetTheaterResponse {
25
25
  }
26
26
 
27
27
  message CreateTheaterRequest {
28
- string nane = 1;
28
+ string name = 1;
29
29
  string address = 2;
30
30
  }
31
31