@microservsforsell/contracts 1.2.5 → 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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microservsforsell/contracts",
3
- "version": "1.2.5",
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