@awscinema/common 1.1.3 → 1.1.4
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.
|
@@ -14,4 +14,14 @@ export declare const GRPC_CLIENT: {
|
|
|
14
14
|
readonly protoPath: string;
|
|
15
15
|
readonly env: "USERS_GRPC_URL";
|
|
16
16
|
};
|
|
17
|
+
readonly MOVIE_PACKAGE: {
|
|
18
|
+
readonly package: "movie.v1";
|
|
19
|
+
readonly protoPath: string;
|
|
20
|
+
readonly env: "MOVIE_GRPC_URL";
|
|
21
|
+
};
|
|
22
|
+
readonly CATEGORY: {
|
|
23
|
+
readonly package: "category.v1";
|
|
24
|
+
readonly protoPath: string;
|
|
25
|
+
readonly env: "CATEGORY_GRPC_URL";
|
|
26
|
+
};
|
|
17
27
|
};
|
|
@@ -17,5 +17,15 @@ exports.GRPC_CLIENT = {
|
|
|
17
17
|
package: 'users.v1',
|
|
18
18
|
protoPath: contracts_1.PROTO_PATHS.USERS,
|
|
19
19
|
env: 'USERS_GRPC_URL'
|
|
20
|
+
},
|
|
21
|
+
MOVIE_PACKAGE: {
|
|
22
|
+
package: 'movie.v1',
|
|
23
|
+
protoPath: contracts_1.PROTO_PATHS.MOVIE,
|
|
24
|
+
env: 'MOVIE_GRPC_URL'
|
|
25
|
+
},
|
|
26
|
+
CATEGORY: {
|
|
27
|
+
package: 'category.v1',
|
|
28
|
+
protoPath: contracts_1.PROTO_PATHS.CATEGORY,
|
|
29
|
+
env: 'CATEGORY_GRPC_URL'
|
|
20
30
|
}
|
|
21
31
|
};
|