@inkeep/agents-core 0.0.0-dev-20260203033642 → 0.0.0-dev-20260203183511
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-schema.d.ts +104 -104
- package/dist/auth/auth-validation-schemas.d.ts +129 -129
- package/dist/auth/auth.d.ts +22 -22
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/client-exports.d.ts +2 -1
- package/dist/data-access/manage/agents.d.ts +27 -27
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +10 -10
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +14 -14
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgents.d.ts +9 -9
- package/dist/data-access/manage/tools.d.ts +18 -18
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +382 -382
- package/dist/db/runtime/runtime-schema.d.ts +232 -232
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +1568 -1568
- package/package.json +1 -1
|
@@ -11,9 +11,9 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
11
11
|
id: string;
|
|
12
12
|
createdAt: string;
|
|
13
13
|
updatedAt: string;
|
|
14
|
+
agentId: string;
|
|
14
15
|
projectId: string;
|
|
15
16
|
tenantId: string;
|
|
16
|
-
agentId: string;
|
|
17
17
|
sourceSubAgentId: string;
|
|
18
18
|
targetSubAgentId: string | null;
|
|
19
19
|
relationType: string | null;
|
|
@@ -46,9 +46,9 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
46
46
|
id: string;
|
|
47
47
|
createdAt: string;
|
|
48
48
|
updatedAt: string;
|
|
49
|
+
agentId: string;
|
|
49
50
|
projectId: string;
|
|
50
51
|
tenantId: string;
|
|
51
|
-
agentId: string;
|
|
52
52
|
sourceSubAgentId: string;
|
|
53
53
|
targetSubAgentId: string | null;
|
|
54
54
|
relationType: string | null;
|
|
@@ -59,9 +59,9 @@ declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (par
|
|
|
59
59
|
id: string;
|
|
60
60
|
createdAt: string;
|
|
61
61
|
updatedAt: string;
|
|
62
|
+
agentId: string;
|
|
62
63
|
projectId: string;
|
|
63
64
|
tenantId: string;
|
|
64
|
-
agentId: string;
|
|
65
65
|
sourceSubAgentId: string;
|
|
66
66
|
targetSubAgentId: string | null;
|
|
67
67
|
relationType: string | null;
|
|
@@ -128,9 +128,9 @@ declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
|
|
|
128
128
|
id: string;
|
|
129
129
|
createdAt: string;
|
|
130
130
|
updatedAt: string;
|
|
131
|
+
agentId: string;
|
|
131
132
|
projectId: string;
|
|
132
133
|
tenantId: string;
|
|
133
|
-
agentId: string;
|
|
134
134
|
sourceSubAgentId: string;
|
|
135
135
|
targetSubAgentId: string | null;
|
|
136
136
|
relationType: string | null;
|
|
@@ -147,9 +147,9 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
|
|
|
147
147
|
id: string;
|
|
148
148
|
createdAt: string;
|
|
149
149
|
updatedAt: string;
|
|
150
|
+
agentId: string;
|
|
150
151
|
projectId: string;
|
|
151
152
|
tenantId: string;
|
|
152
|
-
agentId: string;
|
|
153
153
|
sourceSubAgentId: string;
|
|
154
154
|
targetSubAgentId: string | null;
|
|
155
155
|
relationType: string | null;
|
|
@@ -161,9 +161,9 @@ declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
|
|
|
161
161
|
id: string;
|
|
162
162
|
createdAt: string;
|
|
163
163
|
updatedAt: string;
|
|
164
|
+
agentId: string;
|
|
164
165
|
projectId: string;
|
|
165
166
|
tenantId: string;
|
|
166
|
-
agentId: string;
|
|
167
167
|
sourceSubAgentId: string;
|
|
168
168
|
targetSubAgentId: string | null;
|
|
169
169
|
relationType: string | null;
|
|
@@ -206,15 +206,15 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
|
|
|
206
206
|
id: string;
|
|
207
207
|
createdAt: string;
|
|
208
208
|
updatedAt: string;
|
|
209
|
+
headers: Record<string, string> | null;
|
|
210
|
+
agentId: string;
|
|
209
211
|
projectId: string;
|
|
210
212
|
tenantId: string;
|
|
211
|
-
subAgentId: string;
|
|
212
|
-
agentId: string;
|
|
213
|
-
toolId: string;
|
|
214
|
-
headers: Record<string, string> | null;
|
|
215
213
|
toolPolicies: Record<string, {
|
|
216
214
|
needsApproval?: boolean;
|
|
217
215
|
}> | null;
|
|
216
|
+
subAgentId: string;
|
|
217
|
+
toolId: string;
|
|
218
218
|
selectedTools: string[] | null;
|
|
219
219
|
}>;
|
|
220
220
|
declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -250,15 +250,15 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
|
|
|
250
250
|
id: string;
|
|
251
251
|
createdAt: string;
|
|
252
252
|
updatedAt: string;
|
|
253
|
+
headers: Record<string, string> | null;
|
|
254
|
+
agentId: string;
|
|
253
255
|
projectId: string;
|
|
254
256
|
tenantId: string;
|
|
255
|
-
subAgentId: string;
|
|
256
|
-
agentId: string;
|
|
257
|
-
toolId: string;
|
|
258
|
-
headers: Record<string, string> | null;
|
|
259
257
|
toolPolicies: Record<string, {
|
|
260
258
|
needsApproval?: boolean;
|
|
261
259
|
}> | null;
|
|
260
|
+
subAgentId: string;
|
|
261
|
+
toolId: string;
|
|
262
262
|
selectedTools: string[] | null;
|
|
263
263
|
} | undefined>;
|
|
264
264
|
declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -11,11 +11,11 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
|
|
|
11
11
|
id: string;
|
|
12
12
|
createdAt: string;
|
|
13
13
|
updatedAt: string;
|
|
14
|
+
headers: Record<string, string> | null;
|
|
15
|
+
agentId: string;
|
|
14
16
|
projectId: string;
|
|
15
17
|
tenantId: string;
|
|
16
18
|
subAgentId: string;
|
|
17
|
-
agentId: string;
|
|
18
|
-
headers: Record<string, string> | null;
|
|
19
19
|
targetAgentId: string;
|
|
20
20
|
} | undefined>;
|
|
21
21
|
declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -46,11 +46,11 @@ declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =>
|
|
|
46
46
|
id: string;
|
|
47
47
|
createdAt: string;
|
|
48
48
|
updatedAt: string;
|
|
49
|
+
headers: Record<string, string> | null;
|
|
50
|
+
agentId: string;
|
|
49
51
|
projectId: string;
|
|
50
52
|
tenantId: string;
|
|
51
53
|
subAgentId: string;
|
|
52
|
-
agentId: string;
|
|
53
|
-
headers: Record<string, string> | null;
|
|
54
54
|
targetAgentId: string;
|
|
55
55
|
}[]>;
|
|
56
56
|
declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -59,11 +59,11 @@ declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseCli
|
|
|
59
59
|
id: string;
|
|
60
60
|
createdAt: string;
|
|
61
61
|
updatedAt: string;
|
|
62
|
+
headers: Record<string, string> | null;
|
|
63
|
+
agentId: string;
|
|
62
64
|
projectId: string;
|
|
63
65
|
tenantId: string;
|
|
64
66
|
subAgentId: string;
|
|
65
|
-
agentId: string;
|
|
66
|
-
headers: Record<string, string> | null;
|
|
67
67
|
targetAgentId: string;
|
|
68
68
|
}[]>;
|
|
69
69
|
declare const getSubAgentTeamAgentRelationsByTeamAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -212,11 +212,11 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
|
|
|
212
212
|
id: string;
|
|
213
213
|
createdAt: string;
|
|
214
214
|
updatedAt: string;
|
|
215
|
+
headers: Record<string, string> | null;
|
|
216
|
+
agentId: string;
|
|
215
217
|
projectId: string;
|
|
216
218
|
tenantId: string;
|
|
217
219
|
subAgentId: string;
|
|
218
|
-
agentId: string;
|
|
219
|
-
headers: Record<string, string> | null;
|
|
220
220
|
targetAgentId: string;
|
|
221
221
|
}>;
|
|
222
222
|
/**
|
|
@@ -229,11 +229,11 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
|
|
|
229
229
|
id: string;
|
|
230
230
|
createdAt: string;
|
|
231
231
|
updatedAt: string;
|
|
232
|
+
headers: Record<string, string> | null;
|
|
233
|
+
agentId: string;
|
|
232
234
|
projectId: string;
|
|
233
235
|
tenantId: string;
|
|
234
236
|
subAgentId: string;
|
|
235
|
-
agentId: string;
|
|
236
|
-
headers: Record<string, string> | null;
|
|
237
237
|
targetAgentId: string;
|
|
238
238
|
} | undefined>;
|
|
239
239
|
/**
|
|
@@ -250,11 +250,11 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
|
|
|
250
250
|
id: string;
|
|
251
251
|
createdAt: string;
|
|
252
252
|
updatedAt: string;
|
|
253
|
+
headers: Record<string, string> | null;
|
|
254
|
+
agentId: string;
|
|
253
255
|
projectId: string;
|
|
254
256
|
tenantId: string;
|
|
255
257
|
subAgentId: string;
|
|
256
|
-
agentId: string;
|
|
257
|
-
headers: Record<string, string> | null;
|
|
258
258
|
targetAgentId: string;
|
|
259
259
|
}>;
|
|
260
260
|
declare const updateSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -10,9 +10,10 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
10
10
|
}) => Promise<{
|
|
11
11
|
id: string;
|
|
12
12
|
name: string;
|
|
13
|
-
description: string | null;
|
|
14
13
|
createdAt: string;
|
|
15
14
|
updatedAt: string;
|
|
15
|
+
description: string | null;
|
|
16
|
+
agentId: string;
|
|
16
17
|
projectId: string;
|
|
17
18
|
tenantId: string;
|
|
18
19
|
models: {
|
|
@@ -29,11 +30,10 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
29
30
|
providerOptions?: Record<string, any> | undefined;
|
|
30
31
|
} | undefined;
|
|
31
32
|
} | null;
|
|
33
|
+
prompt: string | null;
|
|
32
34
|
stopWhen: {
|
|
33
35
|
stepCountIs?: number | undefined;
|
|
34
36
|
} | null;
|
|
35
|
-
agentId: string;
|
|
36
|
-
prompt: string | null;
|
|
37
37
|
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
38
38
|
} | undefined>;
|
|
39
39
|
declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -41,9 +41,10 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
41
41
|
}) => Promise<{
|
|
42
42
|
id: string;
|
|
43
43
|
name: string;
|
|
44
|
-
description: string | null;
|
|
45
44
|
createdAt: string;
|
|
46
45
|
updatedAt: string;
|
|
46
|
+
description: string | null;
|
|
47
|
+
agentId: string;
|
|
47
48
|
projectId: string;
|
|
48
49
|
tenantId: string;
|
|
49
50
|
models: {
|
|
@@ -60,11 +61,10 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
60
61
|
providerOptions?: Record<string, any> | undefined;
|
|
61
62
|
} | undefined;
|
|
62
63
|
} | null;
|
|
64
|
+
prompt: string | null;
|
|
63
65
|
stopWhen: {
|
|
64
66
|
stepCountIs?: number | undefined;
|
|
65
67
|
} | null;
|
|
66
|
-
agentId: string;
|
|
67
|
-
prompt: string | null;
|
|
68
68
|
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
69
69
|
}[]>;
|
|
70
70
|
declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -110,9 +110,10 @@ declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (param
|
|
|
110
110
|
declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAgentInsert) => Promise<{
|
|
111
111
|
id: string;
|
|
112
112
|
name: string;
|
|
113
|
-
description: string | null;
|
|
114
113
|
createdAt: string;
|
|
115
114
|
updatedAt: string;
|
|
115
|
+
description: string | null;
|
|
116
|
+
agentId: string;
|
|
116
117
|
projectId: string;
|
|
117
118
|
tenantId: string;
|
|
118
119
|
models: {
|
|
@@ -129,11 +130,10 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
|
|
|
129
130
|
providerOptions?: Record<string, any> | undefined;
|
|
130
131
|
} | undefined;
|
|
131
132
|
} | null;
|
|
133
|
+
prompt: string | null;
|
|
132
134
|
stopWhen: {
|
|
133
135
|
stepCountIs?: number | undefined;
|
|
134
136
|
} | null;
|
|
135
|
-
agentId: string;
|
|
136
|
-
prompt: string | null;
|
|
137
137
|
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
138
138
|
}>;
|
|
139
139
|
declare const updateSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -20,9 +20,10 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
20
20
|
}) => Promise<{
|
|
21
21
|
id: string;
|
|
22
22
|
name: string;
|
|
23
|
-
description: string | null;
|
|
24
23
|
createdAt: string;
|
|
25
24
|
updatedAt: string;
|
|
25
|
+
description: string | null;
|
|
26
|
+
headers: Record<string, string> | null;
|
|
26
27
|
projectId: string;
|
|
27
28
|
tenantId: string;
|
|
28
29
|
config: {
|
|
@@ -30,7 +31,6 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
30
31
|
mcp: ToolMcpConfig;
|
|
31
32
|
};
|
|
32
33
|
credentialReferenceId: string | null;
|
|
33
|
-
headers: Record<string, string> | null;
|
|
34
34
|
credentialScope: string;
|
|
35
35
|
imageUrl: string | null;
|
|
36
36
|
capabilities: ToolServerCapabilities | null;
|
|
@@ -78,9 +78,10 @@ declare const listTools: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
78
78
|
declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInsert) => Promise<{
|
|
79
79
|
id: string;
|
|
80
80
|
name: string;
|
|
81
|
-
description: string | null;
|
|
82
81
|
createdAt: string;
|
|
83
82
|
updatedAt: string;
|
|
83
|
+
description: string | null;
|
|
84
|
+
headers: Record<string, string> | null;
|
|
84
85
|
projectId: string;
|
|
85
86
|
tenantId: string;
|
|
86
87
|
config: {
|
|
@@ -88,7 +89,6 @@ declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInser
|
|
|
88
89
|
mcp: ToolMcpConfig;
|
|
89
90
|
};
|
|
90
91
|
credentialReferenceId: string | null;
|
|
91
|
-
headers: Record<string, string> | null;
|
|
92
92
|
credentialScope: string;
|
|
93
93
|
imageUrl: string | null;
|
|
94
94
|
capabilities: ToolServerCapabilities | null;
|
|
@@ -136,15 +136,15 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
136
136
|
id: string;
|
|
137
137
|
createdAt: string;
|
|
138
138
|
updatedAt: string;
|
|
139
|
+
headers: Record<string, string> | null;
|
|
140
|
+
agentId: string;
|
|
139
141
|
projectId: string;
|
|
140
142
|
tenantId: string;
|
|
141
|
-
subAgentId: string;
|
|
142
|
-
agentId: string;
|
|
143
|
-
toolId: string;
|
|
144
|
-
headers: Record<string, string> | null;
|
|
145
143
|
toolPolicies: Record<string, {
|
|
146
144
|
needsApproval?: boolean;
|
|
147
145
|
}> | null;
|
|
146
|
+
subAgentId: string;
|
|
147
|
+
toolId: string;
|
|
148
148
|
selectedTools: string[] | null;
|
|
149
149
|
}>;
|
|
150
150
|
declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -155,15 +155,15 @@ declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params:
|
|
|
155
155
|
id: string;
|
|
156
156
|
createdAt: string;
|
|
157
157
|
updatedAt: string;
|
|
158
|
+
headers: Record<string, string> | null;
|
|
159
|
+
agentId: string;
|
|
158
160
|
projectId: string;
|
|
159
161
|
tenantId: string;
|
|
160
|
-
subAgentId: string;
|
|
161
|
-
agentId: string;
|
|
162
|
-
toolId: string;
|
|
163
|
-
headers: Record<string, string> | null;
|
|
164
162
|
toolPolicies: Record<string, {
|
|
165
163
|
needsApproval?: boolean;
|
|
166
164
|
}> | null;
|
|
165
|
+
subAgentId: string;
|
|
166
|
+
toolId: string;
|
|
167
167
|
selectedTools: string[] | null;
|
|
168
168
|
}>;
|
|
169
169
|
/**
|
|
@@ -183,15 +183,15 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
|
|
|
183
183
|
id: string;
|
|
184
184
|
createdAt: string;
|
|
185
185
|
updatedAt: string;
|
|
186
|
+
headers: Record<string, string> | null;
|
|
187
|
+
agentId: string;
|
|
186
188
|
projectId: string;
|
|
187
189
|
tenantId: string;
|
|
188
|
-
subAgentId: string;
|
|
189
|
-
agentId: string;
|
|
190
|
-
toolId: string;
|
|
191
|
-
headers: Record<string, string> | null;
|
|
192
190
|
toolPolicies: Record<string, {
|
|
193
191
|
needsApproval?: boolean;
|
|
194
192
|
}> | null;
|
|
193
|
+
subAgentId: string;
|
|
194
|
+
toolId: string;
|
|
195
195
|
selectedTools: string[] | null;
|
|
196
196
|
}>;
|
|
197
197
|
/**
|
|
@@ -202,9 +202,10 @@ declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
202
202
|
}) => Promise<{
|
|
203
203
|
id: string;
|
|
204
204
|
name: string;
|
|
205
|
-
description: string | null;
|
|
206
205
|
createdAt: string;
|
|
207
206
|
updatedAt: string;
|
|
207
|
+
description: string | null;
|
|
208
|
+
headers: Record<string, string> | null;
|
|
208
209
|
projectId: string;
|
|
209
210
|
tenantId: string;
|
|
210
211
|
config: {
|
|
@@ -212,7 +213,6 @@ declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
212
213
|
mcp: ToolMcpConfig;
|
|
213
214
|
};
|
|
214
215
|
credentialReferenceId: string | null;
|
|
215
|
-
headers: Record<string, string> | null;
|
|
216
216
|
credentialScope: string;
|
|
217
217
|
imageUrl: string | null;
|
|
218
218
|
capabilities: ToolServerCapabilities | null;
|
|
@@ -40,13 +40,13 @@ declare const listTriggersPaginated: (db: AgentsManageDatabaseClient) => (params
|
|
|
40
40
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
41
41
|
encoding: "hex" | "base64";
|
|
42
42
|
signature: {
|
|
43
|
-
source: "query" | "
|
|
43
|
+
source: "query" | "body" | "header";
|
|
44
44
|
key: string;
|
|
45
45
|
prefix?: string | undefined;
|
|
46
46
|
regex?: string | undefined;
|
|
47
47
|
};
|
|
48
48
|
signedComponents: {
|
|
49
|
-
source: "literal" | "
|
|
49
|
+
source: "literal" | "body" | "header";
|
|
50
50
|
required: boolean;
|
|
51
51
|
key?: string | undefined;
|
|
52
52
|
value?: string | undefined;
|
|
@@ -11,28 +11,28 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
11
11
|
name: string | null;
|
|
12
12
|
createdAt: string;
|
|
13
13
|
updatedAt: string;
|
|
14
|
+
expiresAt: string | null;
|
|
15
|
+
agentId: string;
|
|
14
16
|
projectId: string;
|
|
15
17
|
tenantId: string;
|
|
16
|
-
agentId: string;
|
|
17
18
|
publicId: string;
|
|
18
19
|
keyHash: string;
|
|
19
20
|
keyPrefix: string;
|
|
20
21
|
lastUsedAt: string | null;
|
|
21
|
-
expiresAt: string | null;
|
|
22
22
|
} | undefined>;
|
|
23
23
|
declare const getApiKeyByPublicId: (db: AgentsRunDatabaseClient) => (publicId: string) => Promise<{
|
|
24
24
|
id: string;
|
|
25
25
|
name: string | null;
|
|
26
26
|
createdAt: string;
|
|
27
27
|
updatedAt: string;
|
|
28
|
+
expiresAt: string | null;
|
|
29
|
+
agentId: string;
|
|
28
30
|
projectId: string;
|
|
29
31
|
tenantId: string;
|
|
30
|
-
agentId: string;
|
|
31
32
|
publicId: string;
|
|
32
33
|
keyHash: string;
|
|
33
34
|
keyPrefix: string;
|
|
34
35
|
lastUsedAt: string | null;
|
|
35
|
-
expiresAt: string | null;
|
|
36
36
|
} | undefined>;
|
|
37
37
|
declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
|
|
38
38
|
scopes: ProjectScopeConfig;
|
|
@@ -42,14 +42,14 @@ declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
42
42
|
name: string | null;
|
|
43
43
|
createdAt: string;
|
|
44
44
|
updatedAt: string;
|
|
45
|
+
expiresAt: string | null;
|
|
46
|
+
agentId: string;
|
|
45
47
|
projectId: string;
|
|
46
48
|
tenantId: string;
|
|
47
|
-
agentId: string;
|
|
48
49
|
publicId: string;
|
|
49
50
|
keyHash: string;
|
|
50
51
|
keyPrefix: string;
|
|
51
52
|
lastUsedAt: string | null;
|
|
52
|
-
expiresAt: string | null;
|
|
53
53
|
}[]>;
|
|
54
54
|
declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
|
|
55
55
|
scopes: ProjectScopeConfig;
|
|
@@ -69,14 +69,14 @@ declare const createApiKey: (db: AgentsRunDatabaseClient) => (params: ApiKeyInse
|
|
|
69
69
|
name: string | null;
|
|
70
70
|
createdAt: string;
|
|
71
71
|
updatedAt: string;
|
|
72
|
+
expiresAt: string | null;
|
|
73
|
+
agentId: string;
|
|
72
74
|
projectId: string;
|
|
73
75
|
tenantId: string;
|
|
74
|
-
agentId: string;
|
|
75
76
|
publicId: string;
|
|
76
77
|
keyHash: string;
|
|
77
78
|
keyPrefix: string;
|
|
78
79
|
lastUsedAt: string | null;
|
|
79
|
-
expiresAt: string | null;
|
|
80
80
|
}>;
|
|
81
81
|
declare const updateApiKey: (db: AgentsRunDatabaseClient) => (params: {
|
|
82
82
|
scopes: ProjectScopeConfig;
|
|
@@ -18,17 +18,17 @@ declare const createConversation: (db: AgentsRunDatabaseClient) => (params: Conv
|
|
|
18
18
|
id: string;
|
|
19
19
|
createdAt: string;
|
|
20
20
|
updatedAt: string;
|
|
21
|
-
projectId: string;
|
|
22
|
-
tenantId: string;
|
|
23
|
-
title: string | null;
|
|
24
|
-
metadata: ConversationMetadata | null;
|
|
25
|
-
agentId: string | null;
|
|
26
|
-
userId: string | null;
|
|
27
21
|
ref: {
|
|
28
22
|
type: "tag" | "commit" | "branch";
|
|
29
23
|
name: string;
|
|
30
24
|
hash: string;
|
|
31
25
|
} | null;
|
|
26
|
+
userId: string | null;
|
|
27
|
+
metadata: ConversationMetadata | null;
|
|
28
|
+
agentId: string | null;
|
|
29
|
+
projectId: string;
|
|
30
|
+
tenantId: string;
|
|
31
|
+
title: string | null;
|
|
32
32
|
activeSubAgentId: string;
|
|
33
33
|
lastContextResolution: string | null;
|
|
34
34
|
}>;
|
|
@@ -87,17 +87,17 @@ declare const getConversation: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
87
87
|
id: string;
|
|
88
88
|
createdAt: string;
|
|
89
89
|
updatedAt: string;
|
|
90
|
-
projectId: string;
|
|
91
|
-
tenantId: string;
|
|
92
|
-
title: string | null;
|
|
93
|
-
metadata: ConversationMetadata | null;
|
|
94
|
-
agentId: string | null;
|
|
95
|
-
userId: string | null;
|
|
96
90
|
ref: {
|
|
97
91
|
type: "tag" | "commit" | "branch";
|
|
98
92
|
name: string;
|
|
99
93
|
hash: string;
|
|
100
94
|
} | null;
|
|
95
|
+
userId: string | null;
|
|
96
|
+
metadata: ConversationMetadata | null;
|
|
97
|
+
agentId: string | null;
|
|
98
|
+
projectId: string;
|
|
99
|
+
tenantId: string;
|
|
100
|
+
title: string | null;
|
|
101
101
|
activeSubAgentId: string;
|
|
102
102
|
lastContextResolution: string | null;
|
|
103
103
|
} | undefined>;
|
|
@@ -123,17 +123,17 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
|
|
|
123
123
|
id: string;
|
|
124
124
|
createdAt: string;
|
|
125
125
|
updatedAt: string;
|
|
126
|
-
projectId: string;
|
|
127
|
-
tenantId: string;
|
|
128
|
-
title: string | null;
|
|
129
|
-
metadata: ConversationMetadata | null;
|
|
130
|
-
agentId: string | null;
|
|
131
|
-
userId: string | null;
|
|
132
126
|
ref: {
|
|
133
127
|
type: "tag" | "commit" | "branch";
|
|
134
128
|
name: string;
|
|
135
129
|
hash: string;
|
|
136
130
|
} | null;
|
|
131
|
+
userId: string | null;
|
|
132
|
+
metadata: ConversationMetadata | null;
|
|
133
|
+
agentId: string | null;
|
|
134
|
+
projectId: string;
|
|
135
|
+
tenantId: string;
|
|
136
|
+
title: string | null;
|
|
137
137
|
activeSubAgentId: string;
|
|
138
138
|
lastContextResolution: string | null;
|
|
139
139
|
}>;
|
|
@@ -155,17 +155,17 @@ declare const getActiveAgentForConversation: (db: AgentsRunDatabaseClient) => (p
|
|
|
155
155
|
id: string;
|
|
156
156
|
createdAt: string;
|
|
157
157
|
updatedAt: string;
|
|
158
|
-
projectId: string;
|
|
159
|
-
tenantId: string;
|
|
160
|
-
title: string | null;
|
|
161
|
-
metadata: ConversationMetadata | null;
|
|
162
|
-
agentId: string | null;
|
|
163
|
-
userId: string | null;
|
|
164
158
|
ref: {
|
|
165
159
|
type: "tag" | "commit" | "branch";
|
|
166
160
|
name: string;
|
|
167
161
|
hash: string;
|
|
168
162
|
} | null;
|
|
163
|
+
userId: string | null;
|
|
164
|
+
metadata: ConversationMetadata | null;
|
|
165
|
+
agentId: string | null;
|
|
166
|
+
projectId: string;
|
|
167
|
+
tenantId: string;
|
|
168
|
+
title: string | null;
|
|
169
169
|
activeSubAgentId: string;
|
|
170
170
|
lastContextResolution: string | null;
|
|
171
171
|
} | undefined>;
|
|
@@ -12,23 +12,23 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
+
metadata: MessageMetadata | null;
|
|
16
|
+
role: string;
|
|
15
17
|
projectId: string;
|
|
16
18
|
tenantId: string;
|
|
17
|
-
metadata: MessageMetadata | null;
|
|
18
19
|
content: MessageContent;
|
|
19
|
-
role: string;
|
|
20
|
-
conversationId: string;
|
|
21
20
|
fromSubAgentId: string | null;
|
|
22
21
|
toSubAgentId: string | null;
|
|
23
22
|
fromExternalAgentId: string | null;
|
|
24
23
|
toExternalAgentId: string | null;
|
|
24
|
+
taskId: string | null;
|
|
25
|
+
a2aTaskId: string | null;
|
|
26
|
+
conversationId: string;
|
|
25
27
|
fromTeamAgentId: string | null;
|
|
26
28
|
toTeamAgentId: string | null;
|
|
27
29
|
visibility: string;
|
|
28
30
|
messageType: string;
|
|
29
|
-
taskId: string | null;
|
|
30
31
|
parentMessageId: string | null;
|
|
31
|
-
a2aTaskId: string | null;
|
|
32
32
|
a2aSessionId: string | null;
|
|
33
33
|
} | undefined>;
|
|
34
34
|
declare const listMessages: (db: AgentsRunDatabaseClient) => (params: {
|
|
@@ -143,23 +143,23 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: MessageIn
|
|
|
143
143
|
id: string;
|
|
144
144
|
createdAt: string;
|
|
145
145
|
updatedAt: string;
|
|
146
|
+
metadata: MessageMetadata | null;
|
|
147
|
+
role: string;
|
|
146
148
|
projectId: string;
|
|
147
149
|
tenantId: string;
|
|
148
|
-
metadata: MessageMetadata | null;
|
|
149
150
|
content: MessageContent;
|
|
150
|
-
role: string;
|
|
151
|
-
conversationId: string;
|
|
152
151
|
fromSubAgentId: string | null;
|
|
153
152
|
toSubAgentId: string | null;
|
|
154
153
|
fromExternalAgentId: string | null;
|
|
155
154
|
toExternalAgentId: string | null;
|
|
155
|
+
taskId: string | null;
|
|
156
|
+
a2aTaskId: string | null;
|
|
157
|
+
conversationId: string;
|
|
156
158
|
fromTeamAgentId: string | null;
|
|
157
159
|
toTeamAgentId: string | null;
|
|
158
160
|
visibility: string;
|
|
159
161
|
messageType: string;
|
|
160
|
-
taskId: string | null;
|
|
161
162
|
parentMessageId: string | null;
|
|
162
|
-
a2aTaskId: string | null;
|
|
163
163
|
a2aSessionId: string | null;
|
|
164
164
|
}>;
|
|
165
165
|
declare const updateMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
@@ -196,23 +196,23 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
196
196
|
id: string;
|
|
197
197
|
createdAt: string;
|
|
198
198
|
updatedAt: string;
|
|
199
|
+
metadata: MessageMetadata | null;
|
|
200
|
+
role: string;
|
|
199
201
|
projectId: string;
|
|
200
202
|
tenantId: string;
|
|
201
|
-
metadata: MessageMetadata | null;
|
|
202
203
|
content: MessageContent;
|
|
203
|
-
role: string;
|
|
204
|
-
conversationId: string;
|
|
205
204
|
fromSubAgentId: string | null;
|
|
206
205
|
toSubAgentId: string | null;
|
|
207
206
|
fromExternalAgentId: string | null;
|
|
208
207
|
toExternalAgentId: string | null;
|
|
208
|
+
taskId: string | null;
|
|
209
|
+
a2aTaskId: string | null;
|
|
210
|
+
conversationId: string;
|
|
209
211
|
fromTeamAgentId: string | null;
|
|
210
212
|
toTeamAgentId: string | null;
|
|
211
213
|
visibility: string;
|
|
212
214
|
messageType: string;
|
|
213
|
-
taskId: string | null;
|
|
214
215
|
parentMessageId: string | null;
|
|
215
|
-
a2aTaskId: string | null;
|
|
216
216
|
a2aSessionId: string | null;
|
|
217
217
|
}>;
|
|
218
218
|
declare const countMessagesByConversation: (db: AgentsRunDatabaseClient) => (params: {
|
|
@@ -9,17 +9,17 @@ declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert)
|
|
|
9
9
|
id: string;
|
|
10
10
|
createdAt: string;
|
|
11
11
|
updatedAt: string;
|
|
12
|
-
projectId: string;
|
|
13
|
-
tenantId: string;
|
|
14
|
-
metadata: TaskMetadataConfig | null;
|
|
15
|
-
subAgentId: string;
|
|
16
|
-
agentId: string;
|
|
17
12
|
ref: {
|
|
18
13
|
type: "tag" | "commit" | "branch";
|
|
19
14
|
name: string;
|
|
20
15
|
hash: string;
|
|
21
16
|
} | null;
|
|
17
|
+
metadata: TaskMetadataConfig | null;
|
|
22
18
|
status: string;
|
|
19
|
+
agentId: string;
|
|
20
|
+
projectId: string;
|
|
21
|
+
tenantId: string;
|
|
22
|
+
subAgentId: string;
|
|
23
23
|
contextId: string;
|
|
24
24
|
}>;
|
|
25
25
|
declare const getTask: (db: AgentsRunDatabaseClient) => (params: {
|