Update protobuf definitions: b9154d10

By allanger

Commit link: b9154d1062

Pipeline link: https://ci.badhouseplants.net/repos/34/pipeline/27
This commit is contained in:
2026-04-21 06:13:49 +00:00
parent 9513d9990b
commit 0ae29a3a39

92
proto/v1/test_v1_pb.ts Normal file
View File

@@ -0,0 +1,92 @@
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts"
// @generated from file test/v1/test_v1.proto (package test.v1, syntax proto3)
/* eslint-disable */
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
import type { Message } from "@bufbuild/protobuf";
/**
* Describes the file test/v1/test_v1.proto.
*/
export const file_test_v1_test_v1: GenFile = /*@__PURE__*/
fileDesc("ChV0ZXN0L3YxL3Rlc3RfdjEucHJvdG8SB3Rlc3QudjEiDQoLUGluZ1JlcXVlc3QiDgoMUGluZ1Jlc3BvbnNlIg0KC1BvbmdSZXF1ZXN0Ig4KDFBvbmdSZXNwb25zZTJ7CgtUZXN0U2VydmljZRI1CgRQaW5nEhQudGVzdC52MS5QaW5nUmVxdWVzdBoVLnRlc3QudjEuUGluZ1Jlc3BvbnNlIgASNQoEUG9uZxIULnRlc3QudjEuUG9uZ1JlcXVlc3QaFS50ZXN0LnYxLlBvbmdSZXNwb25zZSIAQkVaQ2dpdGVhLmJhZGhvdXNlcGxhbnRzLm5ldC9zb2Z0cGxheWVyL3NvZnRwbGF5ZXItZ28tcHJvdG8vcGtnL3Rlc3QvdjFiBnByb3RvMw");
/**
* @generated from message test.v1.PingRequest
*/
export type PingRequest = Message<"test.v1.PingRequest"> & {
};
/**
* Describes the message test.v1.PingRequest.
* Use `create(PingRequestSchema)` to create a new message.
*/
export const PingRequestSchema: GenMessage<PingRequest> = /*@__PURE__*/
messageDesc(file_test_v1_test_v1, 0);
/**
* @generated from message test.v1.PingResponse
*/
export type PingResponse = Message<"test.v1.PingResponse"> & {
};
/**
* Describes the message test.v1.PingResponse.
* Use `create(PingResponseSchema)` to create a new message.
*/
export const PingResponseSchema: GenMessage<PingResponse> = /*@__PURE__*/
messageDesc(file_test_v1_test_v1, 1);
/**
* @generated from message test.v1.PongRequest
*/
export type PongRequest = Message<"test.v1.PongRequest"> & {
};
/**
* Describes the message test.v1.PongRequest.
* Use `create(PongRequestSchema)` to create a new message.
*/
export const PongRequestSchema: GenMessage<PongRequest> = /*@__PURE__*/
messageDesc(file_test_v1_test_v1, 2);
/**
* @generated from message test.v1.PongResponse
*/
export type PongResponse = Message<"test.v1.PongResponse"> & {
};
/**
* Describes the message test.v1.PongResponse.
* Use `create(PongResponseSchema)` to create a new message.
*/
export const PongResponseSchema: GenMessage<PongResponse> = /*@__PURE__*/
messageDesc(file_test_v1_test_v1, 3);
/**
* *
* Service for handling environments
*
* @generated from service test.v1.TestService
*/
export const TestService: GenService<{
/**
* @generated from rpc test.v1.TestService.Ping
*/
ping: {
methodKind: "unary";
input: typeof PingRequestSchema;
output: typeof PingResponseSchema;
},
/**
* @generated from rpc test.v1.TestService.Pong
*/
pong: {
methodKind: "unary";
input: typeof PongRequestSchema;
output: typeof PongResponseSchema;
},
}> = /*@__PURE__*/
serviceDesc(file_test_v1_test_v1, 0);