@alebooking/contracts 1.1.7 → 1.1.8

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/movie.ts CHANGED
@@ -13,7 +13,7 @@ export const protobufPackage = "movie.v1";
13
13
 
14
14
  export interface ListMoviesRequest {
15
15
  category: string;
16
- radnom: boolean;
16
+ random: boolean;
17
17
  limit: number;
18
18
  }
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alebooking/contracts",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Protobug definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/movie.proto CHANGED
@@ -11,7 +11,7 @@ service MovieService {
11
11
 
12
12
  message ListMoviesRequest {
13
13
  string category = 1;
14
- bool radnom = 2;
14
+ bool random = 2;
15
15
  int32 limit = 3;
16
16
  }
17
17