Compare commits

...

2 Commits

Author SHA1 Message Date
eead3d5078 1.3.1
All checks were successful
Publish / Publish npm package action (push) Successful in 40s
Publish Go Bondings / Publish Go package action (push) Successful in 1m24s
2026-04-15 07:26:47 +03:00
276e1bb7e7 fix: add theater proto paths 2026-04-15 07:26:38 +03:00
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@teacinema/contracts",
"version": "1.3.0",
"version": "1.3.1",
"description": "Protocol Buffers contracts for microservices",
"scripts": {
"build": "tsc -p tsconfig.build.json",

View File

@ -34,4 +34,6 @@ export const PROTO_PATHS = {
MOVIE: join(__dirname, '../../proto/movie.proto'),
/** Путь к `category.proto` (пакет `category.v1`) */
CATEGORY: join(__dirname, '../../proto/category.proto'),
/** Путь к `theater.proto` (пакет `theater.v1`) */
THEATER: join(__dirname, '../../proto/theater.proto'),
} as const