From efa86a4b088523e8da46fb427dcabac98d743870 Mon Sep 17 00:00:00 2001 From: devops-bot Date: Tue, 21 Apr 2026 20:15:58 +0000 Subject: [PATCH] Update protobuf definitions: ed3bc020 By allanger Commit link: https://gitea.badhouseplants.net/softplayer/softplayer-proto/commit/ed3bc02006808a4f6d713dc201fb5f3b0efa2b74 Pipeline link: https://ci.badhouseplants.net/repos/34/pipeline/29 --- src/api/v1/test_v1_pb.ts | 92 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/api/v1/test_v1_pb.ts diff --git a/src/api/v1/test_v1_pb.ts b/src/api/v1/test_v1_pb.ts new file mode 100644 index 0000000..36a27a3 --- /dev/null +++ b/src/api/v1/test_v1_pb.ts @@ -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 = /*@__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 = /*@__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 = /*@__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 = /*@__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); +