fix: fix longs

This commit is contained in:
Sergey Krylov 2026-04-12 09:02:06 +03:00
parent 57b6d19005
commit d629569ef3

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;
}
}