Compare commits

..

2 Commits

Author SHA1 Message Date
dc1523ad83 1.3.2
All checks were successful
Publish / Publish npm package action (push) Successful in 39s
2026-04-12 09:02:17 +03:00
d629569ef3 fix: fix longs 2026-04-12 09:02:06 +03:00
2 changed files with 7 additions and 5 deletions

View File

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

View File

@ -16,7 +16,12 @@ export class GrpcClientFactory {
}) {
return ClientProxyFactory.create({
transport: Transport.GRPC,
options
options: {
...options,
loader: {
longs: Number,
},
}
}) as ClientGrpc
}
@ -33,7 +38,4 @@ export class GrpcClientFactory {
return client;
}
}