Compare commits

...

2 Commits

Author SHA1 Message Date
a12e45ac05 1.5.0
All checks were successful
Publish / Publish npm package action (push) Successful in 38s
2026-04-18 08:38:24 +03:00
b46040330c feat: add hall and seat package to registry 2026-04-18 08:38:17 +03:00
3 changed files with 14 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@teacinema/common", "name": "@teacinema/common",
"version": "1.4.0", "version": "1.5.0",
"description": "Common library for TeaCinema microservices", "description": "Common library for TeaCinema microservices",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View File

@ -35,5 +35,15 @@ export const GRPC_CLIENTS = {
package: 'theater.v1', package: 'theater.v1',
protoPath: PROTO_PATHS.THEATER, protoPath: PROTO_PATHS.THEATER,
env: 'THEATER_GRPC_URL' env: 'THEATER_GRPC_URL'
},
HALL_PACKAGE: {
package: 'hall.v1',
protoPath: PROTO_PATHS.HALL,
env: 'THEATER_GRPC_URL'
},
SEAT_PACKAGE: {
package: 'seat.v1',
protoPath: PROTO_PATHS.SEAT,
env: 'THEATER_GRPC_URL'
} }
} as const; } as const;

View File

@ -152,9 +152,9 @@
tslib "2.8.1" tslib "2.8.1"
"@teacinema/contracts@^1.1.3": "@teacinema/contracts@^1.1.3":
version "1.3.1" version "1.4.0"
resolved "https://git.ksv741.keenetic.pro/api/packages/teacinema/npm/%40teacinema%2Fcontracts/-/1.3.1/contracts-1.3.1.tgz#f911a6d2a82a373ccf0f9a6223192e8bf3d7f933" resolved "https://git.ksv741.keenetic.pro/api/packages/teacinema/npm/%40teacinema%2Fcontracts/-/1.4.0/contracts-1.4.0.tgz#96f3abb5fa2ddf8c134e040bb8f155cd0829fcaa"
integrity sha512-iDvXw1zwvORps1d9qbvABVMRAx/WuftOciDAB1KG9TWD76nJT6CfCB9aJfovg3dfeeJo2WYc7mRbp8Ns6YeA/w== integrity sha512-1bQdII9naDgEiOXA/F2mxw9d62yF7NFv6f0atfUGvWrSTtM+uARX+wwcLHTuPDu3I1y8XrAYc8y4stFZxt2RrQ==
dependencies: dependencies:
"@nestjs/microservices" "^11.1.12" "@nestjs/microservices" "^11.1.12"
protoc "33.4.0" protoc "33.4.0"