@relayfx/sdk 0.0.37 → 0.0.39
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/index.js +337 -285
- package/dist/types/relay/client.d.ts +118 -5
- package/dist/types/relay/operation.d.ts +8 -8
- package/dist/types/runtime/address/address-resolution-service.d.ts +4 -4
- package/dist/types/runtime/agent/agent-loop-service.d.ts +2 -21
- package/dist/types/runtime/agent/agent-registry-service.d.ts +4 -4
- package/dist/types/runtime/child/spawn-child-run-tool.d.ts +2 -2
- package/dist/types/runtime/cluster/execution-entity.d.ts +6 -6
- package/dist/types/runtime/execution/execution-service.d.ts +1 -1
- package/dist/types/runtime/tool/tool-runtime-service.d.ts +36 -9
- package/dist/types/runtime/workflow/execution-workflow.d.ts +4 -4
- package/dist/types/schema/agent-schema.d.ts +14 -14
- package/dist/types/schema/execution-schema.d.ts +2 -2
- package/dist/types/schema/ids-schema.d.ts +3 -3
- package/dist/types/store-sql/agent/agent-definition-repository.d.ts +8 -8
- package/dist/types/store-sql/execution/execution-repository.d.ts +2 -2
- package/dist/types/store-sql/schema/relay-schema.d.ts +6 -6
- package/package.json +1 -1
|
@@ -25,7 +25,7 @@ export interface ExecutionRecord {
|
|
|
25
25
|
readonly rootAddressId: Ids.AddressId;
|
|
26
26
|
readonly sessionId?: Ids.SessionId;
|
|
27
27
|
readonly status: Execution.ExecutionStatus;
|
|
28
|
-
readonly
|
|
28
|
+
readonly agentId?: Ids.AgentId;
|
|
29
29
|
readonly agentDefinitionRevision?: Agent.DefinitionRevision;
|
|
30
30
|
readonly agentDefinitionSnapshot?: Agent.Definition;
|
|
31
31
|
readonly agentDefinitionToolInputSchemaDigests?: Agent.ToolInputSchemaDigests;
|
|
@@ -38,7 +38,7 @@ export interface CreateExecutionInput {
|
|
|
38
38
|
readonly rootAddressId: Ids.AddressId;
|
|
39
39
|
readonly sessionId?: Ids.SessionId;
|
|
40
40
|
readonly status: Execution.ExecutionStatus;
|
|
41
|
-
readonly
|
|
41
|
+
readonly agentId?: Ids.AgentId;
|
|
42
42
|
readonly agentDefinitionRevision?: Agent.DefinitionRevision;
|
|
43
43
|
readonly agentDefinitionSnapshot?: Agent.Definition;
|
|
44
44
|
readonly agentDefinitionToolInputSchemaDigests?: Agent.ToolInputSchemaDigests;
|
|
@@ -150,11 +150,11 @@ export declare const relayAgentDefinitions: import("drizzle-orm/pg-core").PgTabl
|
|
|
150
150
|
identity: undefined;
|
|
151
151
|
generated: undefined;
|
|
152
152
|
}>;
|
|
153
|
-
id: import("drizzle-orm/pg-core").PgBuildColumn<"relay_agent_definitions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").Set$Type<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, string & import("effect/Brand").Brand<"Relay.
|
|
153
|
+
id: import("drizzle-orm/pg-core").PgBuildColumn<"relay_agent_definitions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").Set$Type<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, string & import("effect/Brand").Brand<"Relay.AgentId">>>, {
|
|
154
154
|
name: string;
|
|
155
155
|
tableName: "relay_agent_definitions";
|
|
156
156
|
dataType: "string";
|
|
157
|
-
data: string & import("effect/Brand").Brand<"Relay.
|
|
157
|
+
data: string & import("effect/Brand").Brand<"Relay.AgentId">;
|
|
158
158
|
driverParam: string;
|
|
159
159
|
notNull: true;
|
|
160
160
|
hasDefault: false;
|
|
@@ -277,11 +277,11 @@ export declare const relayAgentDefinitionRevisions: import("drizzle-orm/pg-core"
|
|
|
277
277
|
identity: undefined;
|
|
278
278
|
generated: undefined;
|
|
279
279
|
}>;
|
|
280
|
-
|
|
280
|
+
agentId: import("drizzle-orm/pg-core").PgBuildColumn<"relay_agent_definition_revisions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").Set$Type<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, string & import("effect/Brand").Brand<"Relay.AgentId">>>, {
|
|
281
281
|
name: string;
|
|
282
282
|
tableName: "relay_agent_definition_revisions";
|
|
283
283
|
dataType: "string";
|
|
284
|
-
data: string & import("effect/Brand").Brand<"Relay.
|
|
284
|
+
data: string & import("effect/Brand").Brand<"Relay.AgentId">;
|
|
285
285
|
driverParam: string;
|
|
286
286
|
notNull: true;
|
|
287
287
|
hasDefault: false;
|
|
@@ -1696,11 +1696,11 @@ export declare const relayExecutions: import("drizzle-orm/pg-core").PgTableWithC
|
|
|
1696
1696
|
identity: undefined;
|
|
1697
1697
|
generated: undefined;
|
|
1698
1698
|
}>;
|
|
1699
|
-
|
|
1699
|
+
agentId: import("drizzle-orm/pg-core").PgBuildColumn<"relay_executions", import("drizzle-orm/pg-core").Set$Type<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, string & import("effect/Brand").Brand<"Relay.AgentId">>, {
|
|
1700
1700
|
name: string;
|
|
1701
1701
|
tableName: "relay_executions";
|
|
1702
1702
|
dataType: "string";
|
|
1703
|
-
data: string & import("effect/Brand").Brand<"Relay.
|
|
1703
|
+
data: string & import("effect/Brand").Brand<"Relay.AgentId">;
|
|
1704
1704
|
driverParam: string;
|
|
1705
1705
|
notNull: false;
|
|
1706
1706
|
hasDefault: false;
|