@companyhelm/protos 0.5.26 → 0.7.0
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.
- package/dist/gen/companyhelm/runner/v1/runner_pb.d.ts +2 -1
- package/dist/index.d.ts +0 -3
- package/dist/index.js +0 -3
- package/dist/proto/companyhelm/runner/v1/runner.proto +2 -1
- package/package.json +2 -2
- package/dist/gen/companyhelm/agent/v1/actors_pb.d.ts +0 -70
- package/dist/gen/companyhelm/agent/v1/actors_pb.js +0 -31
- package/dist/gen/companyhelm/agent/v1/agent_pb.d.ts +0 -709
- package/dist/gen/companyhelm/agent/v1/agent_pb.js +0 -192
- package/dist/gen/companyhelm/agent/v1/questions_pb.d.ts +0 -107
- package/dist/gen/companyhelm/agent/v1/questions_pb.js +0 -65
- package/dist/proto/companyhelm/agent/v1/actors.proto +0 -23
- package/dist/proto/companyhelm/agent/v1/agent.proto +0 -197
- package/dist/proto/companyhelm/agent/v1/questions.proto +0 -33
|
@@ -536,7 +536,8 @@ export type CreateThreadRequest = Message<"companyhelm.runner.v1.CreateThreadReq
|
|
|
536
536
|
*/
|
|
537
537
|
gitSkillPackages: ThreadGitSkillPackage[];
|
|
538
538
|
/**
|
|
539
|
-
* thread secret for
|
|
539
|
+
* thread secret for authenticated task execution calls
|
|
540
|
+
* TODO: remove and inject via additonal model instructions
|
|
540
541
|
*
|
|
541
542
|
* @generated from field: string cli_secret = 8;
|
|
542
543
|
*/
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -15,6 +15,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./gen/companyhelm/runner/v1/runner_pb"), exports);
|
|
18
|
-
__exportStar(require("./gen/companyhelm/agent/v1/actors_pb"), exports);
|
|
19
|
-
__exportStar(require("./gen/companyhelm/agent/v1/agent_pb"), exports);
|
|
20
|
-
__exportStar(require("./gen/companyhelm/agent/v1/questions_pb"), exports);
|
|
@@ -219,7 +219,8 @@ message CreateThreadRequest {
|
|
|
219
219
|
repeated ThreadMcpServer mcp_servers = 6;
|
|
220
220
|
// git skill packages to use for the thread
|
|
221
221
|
repeated ThreadGitSkillPackage git_skill_packages = 7;
|
|
222
|
-
// thread secret for
|
|
222
|
+
// thread secret for authenticated task execution calls
|
|
223
|
+
// TODO: remove and inject via additonal model instructions
|
|
223
224
|
string cli_secret = 8 [(buf.validate.field).string.min_len = 1];
|
|
224
225
|
}
|
|
225
226
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@companyhelm/protos",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Buf-generated JavaScript bindings for CompanyHelm protobuf definitions.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"README.md"
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
|
-
"clean": "rm -rf dist",
|
|
26
|
+
"clean": "rm -rf dist src/gen",
|
|
27
27
|
"buf:lint": "buf lint",
|
|
28
28
|
"buf:generate": "buf generate",
|
|
29
29
|
"compile": "tsc -p tsconfig.generated.json",
|
|
@@ -1,70 +0,0 @@
|
|
|
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/actors.proto.
|
|
5
|
-
*/
|
|
6
|
-
export declare const file_companyhelm_agent_v1_actors: GenFile;
|
|
7
|
-
/**
|
|
8
|
-
* @generated from message companyhelm.agent.v1.ListActorsRequest
|
|
9
|
-
*/
|
|
10
|
-
export type ListActorsRequest = Message<"companyhelm.agent.v1.ListActorsRequest"> & {};
|
|
11
|
-
/**
|
|
12
|
-
* Describes the message companyhelm.agent.v1.ListActorsRequest.
|
|
13
|
-
* Use `create(ListActorsRequestSchema)` to create a new message.
|
|
14
|
-
*/
|
|
15
|
-
export declare const ListActorsRequestSchema: GenMessage<ListActorsRequest>;
|
|
16
|
-
/**
|
|
17
|
-
* @generated from message companyhelm.agent.v1.ListActorsResponse
|
|
18
|
-
*/
|
|
19
|
-
export type ListActorsResponse = Message<"companyhelm.agent.v1.ListActorsResponse"> & {
|
|
20
|
-
/**
|
|
21
|
-
* @generated from field: repeated companyhelm.agent.v1.Actor actors = 1;
|
|
22
|
-
*/
|
|
23
|
-
actors: Actor[];
|
|
24
|
-
};
|
|
25
|
-
/**
|
|
26
|
-
* Describes the message companyhelm.agent.v1.ListActorsResponse.
|
|
27
|
-
* Use `create(ListActorsResponseSchema)` to create a new message.
|
|
28
|
-
*/
|
|
29
|
-
export declare const ListActorsResponseSchema: GenMessage<ListActorsResponse>;
|
|
30
|
-
/**
|
|
31
|
-
* @generated from message companyhelm.agent.v1.Actor
|
|
32
|
-
*/
|
|
33
|
-
export type Actor = Message<"companyhelm.agent.v1.Actor"> & {
|
|
34
|
-
/**
|
|
35
|
-
* @generated from field: string id = 1;
|
|
36
|
-
*/
|
|
37
|
-
id: string;
|
|
38
|
-
/**
|
|
39
|
-
* @generated from field: string name = 2;
|
|
40
|
-
*/
|
|
41
|
-
name: string;
|
|
42
|
-
/**
|
|
43
|
-
* @generated from field: string description = 3;
|
|
44
|
-
*/
|
|
45
|
-
description: string;
|
|
46
|
-
/**
|
|
47
|
-
* @generated from field: repeated string reportee_actor_ids = 4;
|
|
48
|
-
*/
|
|
49
|
-
reporteeActorIds: string[];
|
|
50
|
-
};
|
|
51
|
-
/**
|
|
52
|
-
* Describes the message companyhelm.agent.v1.Actor.
|
|
53
|
-
* Use `create(ActorSchema)` to create a new message.
|
|
54
|
-
*/
|
|
55
|
-
export declare const ActorSchema: GenMessage<Actor>;
|
|
56
|
-
/**
|
|
57
|
-
* @generated from service companyhelm.agent.v1.AgentActorService
|
|
58
|
-
*/
|
|
59
|
-
export declare const AgentActorService: GenService<{
|
|
60
|
-
/**
|
|
61
|
-
* Creates a new task.
|
|
62
|
-
*
|
|
63
|
-
* @generated from rpc companyhelm.agent.v1.AgentActorService.ListActors
|
|
64
|
-
*/
|
|
65
|
-
listActors: {
|
|
66
|
-
methodKind: "unary";
|
|
67
|
-
input: typeof ListActorsRequestSchema;
|
|
68
|
-
output: typeof ListActorsResponseSchema;
|
|
69
|
-
};
|
|
70
|
-
}>;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts"
|
|
3
|
-
// @generated from file companyhelm/agent/v1/actors.proto (package companyhelm.agent.v1, syntax proto3)
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.AgentActorService = exports.ActorSchema = exports.ListActorsResponseSchema = exports.ListActorsRequestSchema = exports.file_companyhelm_agent_v1_actors = 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/actors.proto.
|
|
11
|
-
*/
|
|
12
|
-
exports.file_companyhelm_agent_v1_actors = (0, codegenv2_1.fileDesc)("CiFjb21wYW55aGVsbS9hZ2VudC92MS9hY3RvcnMucHJvdG8SFGNvbXBhbnloZWxtLmFnZW50LnYxIhMKEUxpc3RBY3RvcnNSZXF1ZXN0IkEKEkxpc3RBY3RvcnNSZXNwb25zZRIrCgZhY3RvcnMYASADKAsyGy5jb21wYW55aGVsbS5hZ2VudC52MS5BY3RvciJtCgVBY3RvchITCgJpZBgBIAEoCUIHukgEcgIQARIVCgRuYW1lGAIgASgJQge6SARyAhABEhwKC2Rlc2NyaXB0aW9uGAMgASgJQge6SARyAhABEhoKEnJlcG9ydGVlX2FjdG9yX2lkcxgEIAMoCTJ0ChFBZ2VudEFjdG9yU2VydmljZRJfCgpMaXN0QWN0b3JzEicuY29tcGFueWhlbG0uYWdlbnQudjEuTGlzdEFjdG9yc1JlcXVlc3QaKC5jb21wYW55aGVsbS5hZ2VudC52MS5MaXN0QWN0b3JzUmVzcG9uc2ViBnByb3RvMw", [validate_pb_1.file_buf_validate_validate]);
|
|
13
|
-
/**
|
|
14
|
-
* Describes the message companyhelm.agent.v1.ListActorsRequest.
|
|
15
|
-
* Use `create(ListActorsRequestSchema)` to create a new message.
|
|
16
|
-
*/
|
|
17
|
-
exports.ListActorsRequestSchema = (0, codegenv2_1.messageDesc)(exports.file_companyhelm_agent_v1_actors, 0);
|
|
18
|
-
/**
|
|
19
|
-
* Describes the message companyhelm.agent.v1.ListActorsResponse.
|
|
20
|
-
* Use `create(ListActorsResponseSchema)` to create a new message.
|
|
21
|
-
*/
|
|
22
|
-
exports.ListActorsResponseSchema = (0, codegenv2_1.messageDesc)(exports.file_companyhelm_agent_v1_actors, 1);
|
|
23
|
-
/**
|
|
24
|
-
* Describes the message companyhelm.agent.v1.Actor.
|
|
25
|
-
* Use `create(ActorSchema)` to create a new message.
|
|
26
|
-
*/
|
|
27
|
-
exports.ActorSchema = (0, codegenv2_1.messageDesc)(exports.file_companyhelm_agent_v1_actors, 2);
|
|
28
|
-
/**
|
|
29
|
-
* @generated from service companyhelm.agent.v1.AgentActorService
|
|
30
|
-
*/
|
|
31
|
-
exports.AgentActorService = (0, codegenv2_1.serviceDesc)(exports.file_companyhelm_agent_v1_actors, 0);
|