@inkeep/agents-core 0.0.0-dev-20260317224734 → 0.0.0-dev-20260318012032
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/auth/auth-validation-schemas.d.ts +135 -135
- package/dist/auth/auth.d.ts +28 -28
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +4 -4
- package/dist/data-access/manage/agents.d.ts +25 -25
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +4 -4
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +8 -8
- package/dist/data-access/manage/skills.d.ts +9 -9
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +12 -12
- package/dist/data-access/manage/triggers.d.ts +1 -1
- package/dist/data-access/runtime/apiKeys.d.ts +4 -4
- package/dist/data-access/runtime/apps.d.ts +4 -4
- package/dist/data-access/runtime/conversations.d.ts +8 -8
- package/dist/data-access/runtime/messages.d.ts +12 -12
- package/dist/data-access/runtime/tasks.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +359 -359
- package/dist/db/runtime/runtime-schema.d.ts +2 -2
- package/dist/validation/schemas.d.ts +348 -366
- package/dist/validation/schemas.js +3 -3
- package/package.json +1 -1
|
@@ -10,8 +10,12 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
10
10
|
scopes: ProjectScopeConfig;
|
|
11
11
|
messageId: string;
|
|
12
12
|
}) => Promise<{
|
|
13
|
+
id: string;
|
|
13
14
|
tenantId: string;
|
|
14
15
|
projectId: string;
|
|
16
|
+
createdAt: string;
|
|
17
|
+
updatedAt: string;
|
|
18
|
+
metadata: MessageMetadata | null;
|
|
15
19
|
content: MessageContent;
|
|
16
20
|
fromSubAgentId: string | null;
|
|
17
21
|
toSubAgentId: string | null;
|
|
@@ -19,10 +23,6 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
19
23
|
toExternalAgentId: string | null;
|
|
20
24
|
taskId: string | null;
|
|
21
25
|
a2aTaskId: string | null;
|
|
22
|
-
id: string;
|
|
23
|
-
createdAt: string;
|
|
24
|
-
updatedAt: string;
|
|
25
|
-
metadata: MessageMetadata | null;
|
|
26
26
|
conversationId: string;
|
|
27
27
|
role: string;
|
|
28
28
|
fromTeamAgentId: string | null;
|
|
@@ -144,8 +144,12 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
144
144
|
scopes: ProjectScopeConfig;
|
|
145
145
|
data: Omit<MessageInsert, "tenantId" | "projectId">;
|
|
146
146
|
}) => Promise<{
|
|
147
|
+
id: string;
|
|
147
148
|
tenantId: string;
|
|
148
149
|
projectId: string;
|
|
150
|
+
createdAt: string;
|
|
151
|
+
updatedAt: string;
|
|
152
|
+
metadata: MessageMetadata | null;
|
|
149
153
|
content: MessageContent;
|
|
150
154
|
fromSubAgentId: string | null;
|
|
151
155
|
toSubAgentId: string | null;
|
|
@@ -153,10 +157,6 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
153
157
|
toExternalAgentId: string | null;
|
|
154
158
|
taskId: string | null;
|
|
155
159
|
a2aTaskId: string | null;
|
|
156
|
-
id: string;
|
|
157
|
-
createdAt: string;
|
|
158
|
-
updatedAt: string;
|
|
159
|
-
metadata: MessageMetadata | null;
|
|
160
160
|
conversationId: string;
|
|
161
161
|
role: string;
|
|
162
162
|
fromTeamAgentId: string | null;
|
|
@@ -197,8 +197,12 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
197
197
|
scopes: ProjectScopeConfig;
|
|
198
198
|
messageId: string;
|
|
199
199
|
}) => Promise<{
|
|
200
|
+
id: string;
|
|
200
201
|
tenantId: string;
|
|
201
202
|
projectId: string;
|
|
203
|
+
createdAt: string;
|
|
204
|
+
updatedAt: string;
|
|
205
|
+
metadata: MessageMetadata | null;
|
|
202
206
|
content: MessageContent;
|
|
203
207
|
fromSubAgentId: string | null;
|
|
204
208
|
toSubAgentId: string | null;
|
|
@@ -206,10 +210,6 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
206
210
|
toExternalAgentId: string | null;
|
|
207
211
|
taskId: string | null;
|
|
208
212
|
a2aTaskId: string | null;
|
|
209
|
-
id: string;
|
|
210
|
-
createdAt: string;
|
|
211
|
-
updatedAt: string;
|
|
212
|
-
metadata: MessageMetadata | null;
|
|
213
213
|
conversationId: string;
|
|
214
214
|
role: string;
|
|
215
215
|
fromTeamAgentId: string | null;
|
|
@@ -7,14 +7,14 @@ import { TaskInsert, TaskSelect } from "../../types/entities.js";
|
|
|
7
7
|
|
|
8
8
|
//#region src/data-access/runtime/tasks.d.ts
|
|
9
9
|
declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert) => Promise<{
|
|
10
|
+
id: string;
|
|
10
11
|
tenantId: string;
|
|
11
12
|
projectId: string;
|
|
12
13
|
agentId: string;
|
|
13
|
-
subAgentId: string;
|
|
14
|
-
id: string;
|
|
15
14
|
createdAt: string;
|
|
16
15
|
updatedAt: string;
|
|
17
16
|
metadata: TaskMetadataConfig | null;
|
|
17
|
+
subAgentId: string;
|
|
18
18
|
status: string;
|
|
19
19
|
contextId: string;
|
|
20
20
|
ref: {
|