Update protobuf definitions: dbd64234

By allanger

Commit link: dbd6423439

Pipeline link: https://ci.badhouseplants.net/repos/34/pipeline/67
This commit is contained in:
2026-05-11 09:46:40 +00:00
parent e236986b51
commit a9a7f05332

View File

@@ -22,8 +22,8 @@ export 'test_v1.pb.dart';
/// *
/// Service for handling environments
@$pb.GrpcServiceName('test.v1.TestNoAuthService')
class TestNoAuthServiceClient extends $grpc.Client {
@$pb.GrpcServiceName('test.v1.PublicTestService')
class PublicTestServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
@@ -32,7 +32,7 @@ class TestNoAuthServiceClient extends $grpc.Client {
'',
];
TestNoAuthServiceClient(super.channel, {super.options, super.interceptors});
PublicTestServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.PingResponse> ping(
$0.PingRequest request, {
@@ -44,16 +44,16 @@ class TestNoAuthServiceClient extends $grpc.Client {
// method descriptors
static final _$ping = $grpc.ClientMethod<$0.PingRequest, $0.PingResponse>(
'/test.v1.TestNoAuthService/Ping',
'/test.v1.PublicTestService/Ping',
($0.PingRequest value) => value.writeToBuffer(),
$0.PingResponse.fromBuffer);
}
@$pb.GrpcServiceName('test.v1.TestNoAuthService')
abstract class TestNoAuthServiceBase extends $grpc.Service {
$core.String get $name => 'test.v1.TestNoAuthService';
@$pb.GrpcServiceName('test.v1.PublicTestService')
abstract class PublicTestServiceBase extends $grpc.Service {
$core.String get $name => 'test.v1.PublicTestService';
TestNoAuthServiceBase() {
PublicTestServiceBase() {
$addMethod($grpc.ServiceMethod<$0.PingRequest, $0.PingResponse>(
'Ping',
ping_Pre,
@@ -72,8 +72,8 @@ abstract class TestNoAuthServiceBase extends $grpc.Service {
$grpc.ServiceCall call, $0.PingRequest request);
}
@$pb.GrpcServiceName('test.v1.TestAuthService')
class TestAuthServiceClient extends $grpc.Client {
@$pb.GrpcServiceName('test.v1.TestService')
class TestServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
@@ -82,7 +82,7 @@ class TestAuthServiceClient extends $grpc.Client {
'',
];
TestAuthServiceClient(super.channel, {super.options, super.interceptors});
TestServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.PongResponse> pong(
$0.PongRequest request, {
@@ -94,16 +94,16 @@ class TestAuthServiceClient extends $grpc.Client {
// method descriptors
static final _$pong = $grpc.ClientMethod<$0.PongRequest, $0.PongResponse>(
'/test.v1.TestAuthService/Pong',
'/test.v1.TestService/Pong',
($0.PongRequest value) => value.writeToBuffer(),
$0.PongResponse.fromBuffer);
}
@$pb.GrpcServiceName('test.v1.TestAuthService')
abstract class TestAuthServiceBase extends $grpc.Service {
$core.String get $name => 'test.v1.TestAuthService';
@$pb.GrpcServiceName('test.v1.TestService')
abstract class TestServiceBase extends $grpc.Service {
$core.String get $name => 'test.v1.TestService';
TestAuthServiceBase() {
TestServiceBase() {
$addMethod($grpc.ServiceMethod<$0.PongRequest, $0.PongResponse>(
'Pong',
pong_Pre,