@companyhelm/protos 0.5.5 → 0.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,47 @@
1
+ import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Message } from "@bufbuild/protobuf";
3
+ /**
4
+ * Describes the file companyhelm/agent/v1/agent.proto.
5
+ */
6
+ export declare const file_companyhelm_agent_v1_agent: GenFile;
7
+ /**
8
+ * @generated from message companyhelm.agent.v1.HelloWorldRequest
9
+ */
10
+ export type HelloWorldRequest = Message<"companyhelm.agent.v1.HelloWorldRequest"> & {
11
+ /**
12
+ * @generated from field: string name = 1;
13
+ */
14
+ name: string;
15
+ };
16
+ /**
17
+ * Describes the message companyhelm.agent.v1.HelloWorldRequest.
18
+ * Use `create(HelloWorldRequestSchema)` to create a new message.
19
+ */
20
+ export declare const HelloWorldRequestSchema: GenMessage<HelloWorldRequest>;
21
+ /**
22
+ * @generated from message companyhelm.agent.v1.HelloWorldResponse
23
+ */
24
+ export type HelloWorldResponse = Message<"companyhelm.agent.v1.HelloWorldResponse"> & {
25
+ /**
26
+ * @generated from field: string message = 1;
27
+ */
28
+ message: string;
29
+ };
30
+ /**
31
+ * Describes the message companyhelm.agent.v1.HelloWorldResponse.
32
+ * Use `create(HelloWorldResponseSchema)` to create a new message.
33
+ */
34
+ export declare const HelloWorldResponseSchema: GenMessage<HelloWorldResponse>;
35
+ /**
36
+ * @generated from service companyhelm.agent.v1.AgentControlService
37
+ */
38
+ export declare const AgentControlService: GenService<{
39
+ /**
40
+ * @generated from rpc companyhelm.agent.v1.AgentControlService.HelloWorld
41
+ */
42
+ helloWorld: {
43
+ methodKind: "unary";
44
+ input: typeof HelloWorldRequestSchema;
45
+ output: typeof HelloWorldResponseSchema;
46
+ };
47
+ }>;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ // @generated by protoc-gen-es v2.11.0 with parameter "target=ts"
3
+ // @generated from file companyhelm/agent/v1/agent.proto (package companyhelm.agent.v1, syntax proto3)
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.AgentControlService = exports.HelloWorldResponseSchema = exports.HelloWorldRequestSchema = exports.file_companyhelm_agent_v1_agent = void 0;
7
+ const codegenv2_1 = require("@bufbuild/protobuf/codegenv2");
8
+ const validate_pb_1 = require("../../../buf/validate/validate_pb");
9
+ /**
10
+ * Describes the file companyhelm/agent/v1/agent.proto.
11
+ */
12
+ exports.file_companyhelm_agent_v1_agent = (0, codegenv2_1.fileDesc)("CiBjb21wYW55aGVsbS9hZ2VudC92MS9hZ2VudC5wcm90bxIUY29tcGFueWhlbG0uYWdlbnQudjEiKgoRSGVsbG9Xb3JsZFJlcXVlc3QSFQoEbmFtZRgBIAEoCUIHukgEcgIQASIuChJIZWxsb1dvcmxkUmVzcG9uc2USGAoHbWVzc2FnZRgBIAEoCUIHukgEcgIQATJ2ChNBZ2VudENvbnRyb2xTZXJ2aWNlEl8KCkhlbGxvV29ybGQSJy5jb21wYW55aGVsbS5hZ2VudC52MS5IZWxsb1dvcmxkUmVxdWVzdBooLmNvbXBhbnloZWxtLmFnZW50LnYxLkhlbGxvV29ybGRSZXNwb25zZWIGcHJvdG8z", [validate_pb_1.file_buf_validate_validate]);
13
+ /**
14
+ * Describes the message companyhelm.agent.v1.HelloWorldRequest.
15
+ * Use `create(HelloWorldRequestSchema)` to create a new message.
16
+ */
17
+ exports.HelloWorldRequestSchema = (0, codegenv2_1.messageDesc)(exports.file_companyhelm_agent_v1_agent, 0);
18
+ /**
19
+ * Describes the message companyhelm.agent.v1.HelloWorldResponse.
20
+ * Use `create(HelloWorldResponseSchema)` to create a new message.
21
+ */
22
+ exports.HelloWorldResponseSchema = (0, codegenv2_1.messageDesc)(exports.file_companyhelm_agent_v1_agent, 1);
23
+ /**
24
+ * @generated from service companyhelm.agent.v1.AgentControlService
25
+ */
26
+ exports.AgentControlService = (0, codegenv2_1.serviceDesc)(exports.file_companyhelm_agent_v1_agent, 0);
@@ -0,0 +1,16 @@
1
+ syntax = "proto3";
2
+ package companyhelm.agent.v1;
3
+
4
+ import "buf/validate/validate.proto";
5
+
6
+ service AgentControlService {
7
+ rpc HelloWorld(HelloWorldRequest) returns (HelloWorldResponse);
8
+ }
9
+
10
+ message HelloWorldRequest {
11
+ string name = 1 [(buf.validate.field).string.min_len = 1];
12
+ }
13
+
14
+ message HelloWorldResponse {
15
+ string message = 1 [(buf.validate.field).string.min_len = 1];
16
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@companyhelm/protos",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "description": "Buf-generated JavaScript bindings for CompanyHelm protobuf definitions.",
5
5
  "repository": {
6
6
  "type": "git",