@inkeep/agents-core 0.53.1 → 0.53.2

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.
@@ -8,11 +8,11 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
8
8
  scopes: ProjectScopeConfig;
9
9
  skillId: string;
10
10
  }) => Promise<{
11
- id: string;
12
11
  name: string;
13
12
  description: string;
14
13
  tenantId: string;
15
14
  projectId: string;
15
+ id: string;
16
16
  createdAt: string;
17
17
  updatedAt: string;
18
18
  metadata: Record<string, string> | null;
@@ -41,22 +41,22 @@ declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
41
41
  };
42
42
  }>;
43
43
  declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
44
- id: string;
45
44
  name: string;
46
45
  description: string;
47
46
  tenantId: string;
48
47
  projectId: string;
48
+ id: string;
49
49
  createdAt: string;
50
50
  updatedAt: string;
51
51
  metadata: Record<string, string> | null;
52
52
  content: string;
53
53
  }>;
54
54
  declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
55
- id: string;
56
55
  name: string;
57
56
  description: string;
58
57
  tenantId: string;
59
58
  projectId: string;
59
+ id: string;
60
60
  createdAt: string;
61
61
  updatedAt: string;
62
62
  metadata: Record<string, string> | null;
@@ -91,15 +91,15 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
91
91
  index: number;
92
92
  alwaysLoaded?: boolean;
93
93
  }) => Promise<{
94
- id: string;
95
94
  tenantId: string;
96
95
  projectId: string;
97
96
  agentId: string;
97
+ subAgentId: string;
98
+ id: string;
98
99
  createdAt: string;
99
100
  updatedAt: string;
100
101
  index: number;
101
102
  alwaysLoaded: boolean;
102
- subAgentId: string;
103
103
  skillId: string;
104
104
  }>;
105
105
  declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
@@ -9,15 +9,15 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
9
9
  scopes: SubAgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
- id: string;
13
12
  tenantId: string;
14
13
  projectId: string;
15
14
  agentId: string;
15
+ subAgentId: string;
16
+ id: string;
16
17
  createdAt: string;
17
18
  updatedAt: string;
18
19
  headers: Record<string, string> | null;
19
20
  externalAgentId: string;
20
- subAgentId: string;
21
21
  } | undefined>;
22
22
  declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
23
23
  scopes: SubAgentScopeConfig;
@@ -44,28 +44,28 @@ declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClien
44
44
  declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
- id: string;
48
47
  tenantId: string;
49
48
  projectId: string;
50
49
  agentId: string;
50
+ subAgentId: string;
51
+ id: string;
51
52
  createdAt: string;
52
53
  updatedAt: string;
53
54
  headers: Record<string, string> | null;
54
55
  externalAgentId: string;
55
- subAgentId: string;
56
56
  }[]>;
57
57
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
- id: string;
61
60
  tenantId: string;
62
61
  projectId: string;
63
62
  agentId: string;
63
+ subAgentId: string;
64
+ id: string;
64
65
  createdAt: string;
65
66
  updatedAt: string;
66
67
  headers: Record<string, string> | null;
67
68
  externalAgentId: string;
68
- subAgentId: string;
69
69
  }[]>;
70
70
  declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
71
71
  scopes: AgentScopeConfig;
@@ -180,15 +180,15 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
180
180
  headers?: Record<string, string> | null;
181
181
  };
182
182
  }) => Promise<{
183
- id: string;
184
183
  tenantId: string;
185
184
  projectId: string;
186
185
  agentId: string;
186
+ subAgentId: string;
187
+ id: string;
187
188
  createdAt: string;
188
189
  updatedAt: string;
189
190
  headers: Record<string, string> | null;
190
191
  externalAgentId: string;
191
- subAgentId: string;
192
192
  }>;
193
193
  /**
194
194
  * Check if sub-agent external agent relation exists by params
@@ -197,15 +197,15 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
197
197
  scopes: SubAgentScopeConfig;
198
198
  externalAgentId: string;
199
199
  }) => Promise<{
200
- id: string;
201
200
  tenantId: string;
202
201
  projectId: string;
203
202
  agentId: string;
203
+ subAgentId: string;
204
+ id: string;
204
205
  createdAt: string;
205
206
  updatedAt: string;
206
207
  headers: Record<string, string> | null;
207
208
  externalAgentId: string;
208
- subAgentId: string;
209
209
  } | undefined>;
210
210
  /**
211
211
  * Upsert sub-agent external agent relation (create if it doesn't exist, update if it does)
@@ -218,15 +218,15 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
218
218
  headers?: Record<string, string> | null;
219
219
  };
220
220
  }) => Promise<{
221
- id: string;
222
221
  tenantId: string;
223
222
  projectId: string;
224
223
  agentId: string;
224
+ subAgentId: string;
225
+ id: string;
225
226
  createdAt: string;
226
227
  updatedAt: string;
227
228
  headers: Record<string, string> | null;
228
229
  externalAgentId: string;
229
- subAgentId: string;
230
230
  }>;
231
231
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
232
232
  scopes: SubAgentScopeConfig;
@@ -9,10 +9,10 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
9
9
  scopes: AgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
- id: string;
13
12
  tenantId: string;
14
13
  projectId: string;
15
14
  agentId: string;
15
+ id: string;
16
16
  createdAt: string;
17
17
  updatedAt: string;
18
18
  sourceSubAgentId: string;
@@ -44,10 +44,10 @@ declare const listAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
44
44
  declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
- id: string;
48
47
  tenantId: string;
49
48
  projectId: string;
50
49
  agentId: string;
50
+ id: string;
51
51
  createdAt: string;
52
52
  updatedAt: string;
53
53
  sourceSubAgentId: string;
@@ -57,10 +57,10 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
57
57
  declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
- id: string;
61
60
  tenantId: string;
62
61
  projectId: string;
63
62
  agentId: string;
63
+ id: string;
64
64
  createdAt: string;
65
65
  updatedAt: string;
66
66
  sourceSubAgentId: string;
@@ -126,10 +126,10 @@ declare const getRelatedAgentsForAgent: (db: AgentsManageDatabaseClient) => (par
126
126
  }[];
127
127
  }>;
128
128
  declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
129
- id: string;
130
129
  tenantId: string;
131
130
  projectId: string;
132
131
  agentId: string;
132
+ id: string;
133
133
  createdAt: string;
134
134
  updatedAt: string;
135
135
  sourceSubAgentId: string;
@@ -145,10 +145,10 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
145
145
  targetSubAgentId?: string;
146
146
  relationType: string;
147
147
  }) => Promise<{
148
- id: string;
149
148
  tenantId: string;
150
149
  projectId: string;
151
150
  agentId: string;
151
+ id: string;
152
152
  createdAt: string;
153
153
  updatedAt: string;
154
154
  sourceSubAgentId: string;
@@ -159,10 +159,10 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
159
159
  * Upsert agent relation (create if it doesn't exist, no-op if it does)
160
160
  */
161
161
  declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
162
- id: string;
163
162
  tenantId: string;
164
163
  projectId: string;
165
164
  agentId: string;
165
+ id: string;
166
166
  createdAt: string;
167
167
  updatedAt: string;
168
168
  sourceSubAgentId: string;
@@ -204,10 +204,11 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
204
204
  }> | null;
205
205
  };
206
206
  }) => Promise<{
207
- id: string;
208
207
  tenantId: string;
209
208
  projectId: string;
210
209
  agentId: string;
210
+ subAgentId: string;
211
+ id: string;
211
212
  createdAt: string;
212
213
  updatedAt: string;
213
214
  toolId: string;
@@ -215,7 +216,6 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
215
216
  toolPolicies: Record<string, {
216
217
  needsApproval?: boolean;
217
218
  }> | null;
218
- subAgentId: string;
219
219
  selectedTools: string[] | null;
220
220
  }>;
221
221
  declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
@@ -248,10 +248,11 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
248
248
  scopes: SubAgentScopeConfig;
249
249
  relationId: string;
250
250
  }) => Promise<{
251
- id: string;
252
251
  tenantId: string;
253
252
  projectId: string;
254
253
  agentId: string;
254
+ subAgentId: string;
255
+ id: string;
255
256
  createdAt: string;
256
257
  updatedAt: string;
257
258
  toolId: string;
@@ -259,7 +260,6 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
259
260
  toolPolicies: Record<string, {
260
261
  needsApproval?: boolean;
261
262
  }> | null;
262
- subAgentId: string;
263
263
  selectedTools: string[] | null;
264
264
  } | undefined>;
265
265
  declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -9,14 +9,14 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
9
9
  scopes: SubAgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
- id: string;
13
12
  tenantId: string;
14
13
  projectId: string;
15
14
  agentId: string;
15
+ subAgentId: string;
16
+ id: string;
16
17
  createdAt: string;
17
18
  updatedAt: string;
18
19
  headers: Record<string, string> | null;
19
- subAgentId: string;
20
20
  targetAgentId: string;
21
21
  } | undefined>;
22
22
  declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
@@ -44,27 +44,27 @@ declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =
44
44
  declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
- id: string;
48
47
  tenantId: string;
49
48
  projectId: string;
50
49
  agentId: string;
50
+ subAgentId: string;
51
+ id: string;
51
52
  createdAt: string;
52
53
  updatedAt: string;
53
54
  headers: Record<string, string> | null;
54
- subAgentId: string;
55
55
  targetAgentId: string;
56
56
  }[]>;
57
57
  declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
- id: string;
61
60
  tenantId: string;
62
61
  projectId: string;
63
62
  agentId: string;
63
+ subAgentId: string;
64
+ id: string;
64
65
  createdAt: string;
65
66
  updatedAt: string;
66
67
  headers: Record<string, string> | null;
67
- subAgentId: string;
68
68
  targetAgentId: string;
69
69
  }[]>;
70
70
  declare const getSubAgentTeamAgentRelationsByTeamAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -210,14 +210,14 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
210
210
  headers?: Record<string, string> | null;
211
211
  };
212
212
  }) => Promise<{
213
- id: string;
214
213
  tenantId: string;
215
214
  projectId: string;
216
215
  agentId: string;
216
+ subAgentId: string;
217
+ id: string;
217
218
  createdAt: string;
218
219
  updatedAt: string;
219
220
  headers: Record<string, string> | null;
220
- subAgentId: string;
221
221
  targetAgentId: string;
222
222
  }>;
223
223
  /**
@@ -227,14 +227,14 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
227
227
  scopes: SubAgentScopeConfig;
228
228
  targetAgentId: string;
229
229
  }) => Promise<{
230
- id: string;
231
230
  tenantId: string;
232
231
  projectId: string;
233
232
  agentId: string;
233
+ subAgentId: string;
234
+ id: string;
234
235
  createdAt: string;
235
236
  updatedAt: string;
236
237
  headers: Record<string, string> | null;
237
- subAgentId: string;
238
238
  targetAgentId: string;
239
239
  } | undefined>;
240
240
  /**
@@ -248,14 +248,14 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
248
248
  headers?: Record<string, string> | null;
249
249
  };
250
250
  }) => Promise<{
251
- id: string;
252
251
  tenantId: string;
253
252
  projectId: string;
254
253
  agentId: string;
254
+ subAgentId: string;
255
+ id: string;
255
256
  createdAt: string;
256
257
  updatedAt: string;
257
258
  headers: Record<string, string> | null;
258
- subAgentId: string;
259
259
  targetAgentId: string;
260
260
  }>;
261
261
  declare const updateSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
@@ -9,14 +9,12 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
9
9
  scopes: AgentScopeConfig;
10
10
  subAgentId: string;
11
11
  }) => Promise<{
12
- id: string;
13
12
  name: string;
14
13
  description: string | null;
15
14
  tenantId: string;
16
15
  projectId: string;
17
16
  agentId: string;
18
- prompt: string | null;
19
- conversationHistoryConfig: ConversationHistoryConfig | null;
17
+ id: string;
20
18
  models: {
21
19
  base?: {
22
20
  model?: string | undefined;
@@ -36,18 +34,18 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
36
34
  } | null;
37
35
  createdAt: string;
38
36
  updatedAt: string;
37
+ prompt: string | null;
38
+ conversationHistoryConfig: ConversationHistoryConfig | null;
39
39
  } | undefined>;
40
40
  declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
41
41
  scopes: AgentScopeConfig;
42
42
  }) => Promise<{
43
- id: string;
44
43
  name: string;
45
44
  description: string | null;
46
45
  tenantId: string;
47
46
  projectId: string;
48
47
  agentId: string;
49
- prompt: string | null;
50
- conversationHistoryConfig: ConversationHistoryConfig | null;
48
+ id: string;
51
49
  models: {
52
50
  base?: {
53
51
  model?: string | undefined;
@@ -67,6 +65,8 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
67
65
  } | null;
68
66
  createdAt: string;
69
67
  updatedAt: string;
68
+ prompt: string | null;
69
+ conversationHistoryConfig: ConversationHistoryConfig | null;
70
70
  }[]>;
71
71
  declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
72
72
  scopes: AgentScopeConfig;
@@ -109,14 +109,12 @@ declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (param
109
109
  };
110
110
  }>;
111
111
  declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAgentInsert) => Promise<{
112
- id: string;
113
112
  name: string;
114
113
  description: string | null;
115
114
  tenantId: string;
116
115
  projectId: string;
117
116
  agentId: string;
118
- prompt: string | null;
119
- conversationHistoryConfig: ConversationHistoryConfig | null;
117
+ id: string;
120
118
  models: {
121
119
  base?: {
122
120
  model?: string | undefined;
@@ -136,6 +134,8 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
136
134
  } | null;
137
135
  createdAt: string;
138
136
  updatedAt: string;
137
+ prompt: string | null;
138
+ conversationHistoryConfig: ConversationHistoryConfig | null;
139
139
  }>;
140
140
  declare const updateSubAgent: (db: AgentsManageDatabaseClient) => (params: {
141
141
  scopes: AgentScopeConfig;
@@ -19,11 +19,11 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
19
19
  scopes: ProjectScopeConfig;
20
20
  toolId: string;
21
21
  }) => Promise<{
22
- id: string;
23
22
  name: string;
24
23
  description: string | null;
25
24
  tenantId: string;
26
25
  projectId: string;
26
+ id: string;
27
27
  createdAt: string;
28
28
  updatedAt: string;
29
29
  headers: Record<string, string> | null;
@@ -77,11 +77,11 @@ declare const listTools: (db: AgentsManageDatabaseClient) => (params: {
77
77
  };
78
78
  }>;
79
79
  declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInsert) => Promise<{
80
- id: string;
81
80
  name: string;
82
81
  description: string | null;
83
82
  tenantId: string;
84
83
  projectId: string;
84
+ id: string;
85
85
  createdAt: string;
86
86
  updatedAt: string;
87
87
  headers: Record<string, string> | null;
@@ -134,10 +134,11 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
134
134
  needsApproval?: boolean;
135
135
  }> | null;
136
136
  }) => Promise<{
137
- id: string;
138
137
  tenantId: string;
139
138
  projectId: string;
140
139
  agentId: string;
140
+ subAgentId: string;
141
+ id: string;
141
142
  createdAt: string;
142
143
  updatedAt: string;
143
144
  toolId: string;
@@ -145,7 +146,6 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
145
146
  toolPolicies: Record<string, {
146
147
  needsApproval?: boolean;
147
148
  }> | null;
148
- subAgentId: string;
149
149
  selectedTools: string[] | null;
150
150
  }>;
151
151
  declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -153,10 +153,11 @@ declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params:
153
153
  subAgentId: string;
154
154
  toolId: string;
155
155
  }) => Promise<{
156
- id: string;
157
156
  tenantId: string;
158
157
  projectId: string;
159
158
  agentId: string;
159
+ subAgentId: string;
160
+ id: string;
160
161
  createdAt: string;
161
162
  updatedAt: string;
162
163
  toolId: string;
@@ -164,7 +165,6 @@ declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params:
164
165
  toolPolicies: Record<string, {
165
166
  needsApproval?: boolean;
166
167
  }> | null;
167
- subAgentId: string;
168
168
  selectedTools: string[] | null;
169
169
  }>;
170
170
  /**
@@ -181,10 +181,11 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
181
181
  }> | null;
182
182
  relationId?: string;
183
183
  }) => Promise<{
184
- id: string;
185
184
  tenantId: string;
186
185
  projectId: string;
187
186
  agentId: string;
187
+ subAgentId: string;
188
+ id: string;
188
189
  createdAt: string;
189
190
  updatedAt: string;
190
191
  toolId: string;
@@ -192,7 +193,6 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
192
193
  toolPolicies: Record<string, {
193
194
  needsApproval?: boolean;
194
195
  }> | null;
195
- subAgentId: string;
196
196
  selectedTools: string[] | null;
197
197
  }>;
198
198
  /**
@@ -201,11 +201,11 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
201
201
  declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
202
202
  data: ToolInsert;
203
203
  }) => Promise<{
204
- id: string;
205
204
  name: string;
206
205
  description: string | null;
207
206
  tenantId: string;
208
207
  projectId: string;
208
+ id: string;
209
209
  createdAt: string;
210
210
  updatedAt: string;
211
211
  headers: Record<string, string> | null;
@@ -46,7 +46,7 @@ declare const listTriggersPaginated: (db: AgentsManageDatabaseClient) => (params
46
46
  regex?: string | undefined;
47
47
  };
48
48
  signedComponents: {
49
- source: "literal" | "header" | "body";
49
+ source: "header" | "literal" | "body";
50
50
  required: boolean;
51
51
  key?: string | undefined;
52
52
  value?: string | undefined;
@@ -8,11 +8,11 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
8
8
  scopes: ProjectScopeConfig;
9
9
  id: string;
10
10
  }) => Promise<{
11
- id: string;
12
11
  name: string | null;
13
12
  tenantId: string;
14
13
  projectId: string;
15
14
  agentId: string;
15
+ id: string;
16
16
  createdAt: string;
17
17
  updatedAt: string;
18
18
  expiresAt: string | null;
@@ -22,11 +22,11 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
22
22
  lastUsedAt: string | null;
23
23
  } | undefined>;
24
24
  declare const getApiKeyByPublicId: (db: AgentsRunDatabaseClient) => (publicId: string) => Promise<{
25
- id: string;
26
25
  name: string | null;
27
26
  tenantId: string;
28
27
  projectId: string;
29
28
  agentId: string;
29
+ id: string;
30
30
  createdAt: string;
31
31
  updatedAt: string;
32
32
  expiresAt: string | null;
@@ -39,11 +39,11 @@ declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
39
39
  scopes: ProjectScopeConfig;
40
40
  agentId?: string;
41
41
  }) => Promise<{
42
- id: string;
43
42
  name: string | null;
44
43
  tenantId: string;
45
44
  projectId: string;
46
45
  agentId: string;
46
+ id: string;
47
47
  createdAt: string;
48
48
  updatedAt: string;
49
49
  expiresAt: string | null;
@@ -66,11 +66,11 @@ declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
66
66
  };
67
67
  }>;
68
68
  declare const createApiKey: (db: AgentsRunDatabaseClient) => (params: ApiKeyInsert) => Promise<{
69
- id: string;
70
69
  name: string | null;
71
70
  tenantId: string;
72
71
  projectId: string;
73
72
  agentId: string;
73
+ id: string;
74
74
  createdAt: string;
75
75
  updatedAt: string;
76
76
  expiresAt: string | null;
@@ -16,21 +16,21 @@ declare const listConversations: (db: AgentsRunDatabaseClient) => (params: {
16
16
  total: number;
17
17
  }>;
18
18
  declare const createConversation: (db: AgentsRunDatabaseClient) => (params: ConversationInsert) => Promise<{
19
- id: string;
19
+ title: string | null;
20
20
  tenantId: string;
21
21
  projectId: string;
22
22
  agentId: string | null;
23
- title: string | null;
23
+ userId: string | null;
24
+ id: string;
24
25
  createdAt: string;
25
26
  updatedAt: string;
26
27
  metadata: ConversationMetadata | null;
28
+ activeSubAgentId: string;
27
29
  ref: {
28
30
  type: "commit" | "tag" | "branch";
29
31
  name: string;
30
32
  hash: string;
31
33
  } | null;
32
- userId: string | null;
33
- activeSubAgentId: string;
34
34
  lastContextResolution: string | null;
35
35
  }>;
36
36
  declare const updateConversation: (db: AgentsRunDatabaseClient) => (params: {
@@ -85,21 +85,21 @@ declare const getConversation: (db: AgentsRunDatabaseClient) => (params: {
85
85
  scopes: ProjectScopeConfig;
86
86
  conversationId: string;
87
87
  }) => Promise<{
88
- id: string;
88
+ title: string | null;
89
89
  tenantId: string;
90
90
  projectId: string;
91
91
  agentId: string | null;
92
- title: string | null;
92
+ userId: string | null;
93
+ id: string;
93
94
  createdAt: string;
94
95
  updatedAt: string;
95
96
  metadata: ConversationMetadata | null;
97
+ activeSubAgentId: string;
96
98
  ref: {
97
99
  type: "commit" | "tag" | "branch";
98
100
  name: string;
99
101
  hash: string;
100
102
  } | null;
101
- userId: string | null;
102
- activeSubAgentId: string;
103
103
  lastContextResolution: string | null;
104
104
  } | undefined>;
105
105
  declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input: ConversationInsert) => Promise<{
@@ -121,21 +121,21 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
121
121
  metadata?: ConversationMetadata | null | undefined;
122
122
  contextConfigId?: string | undefined;
123
123
  } | {
124
- id: string;
124
+ title: string | null;
125
125
  tenantId: string;
126
126
  projectId: string;
127
127
  agentId: string | null;
128
- title: string | null;
128
+ userId: string | null;
129
+ id: string;
129
130
  createdAt: string;
130
131
  updatedAt: string;
131
132
  metadata: ConversationMetadata | null;
133
+ activeSubAgentId: string;
132
134
  ref: {
133
135
  type: "commit" | "tag" | "branch";
134
136
  name: string;
135
137
  hash: string;
136
138
  } | null;
137
- userId: string | null;
138
- activeSubAgentId: string;
139
139
  lastContextResolution: string | null;
140
140
  }>;
141
141
  /**
@@ -153,21 +153,21 @@ declare const getActiveAgentForConversation: (db: AgentsRunDatabaseClient) => (p
153
153
  scopes: ProjectScopeConfig;
154
154
  conversationId: string;
155
155
  }) => Promise<{
156
- id: string;
156
+ title: string | null;
157
157
  tenantId: string;
158
158
  projectId: string;
159
159
  agentId: string | null;
160
- title: string | null;
160
+ userId: string | null;
161
+ id: string;
161
162
  createdAt: string;
162
163
  updatedAt: string;
163
164
  metadata: ConversationMetadata | null;
165
+ activeSubAgentId: string;
164
166
  ref: {
165
167
  type: "commit" | "tag" | "branch";
166
168
  name: string;
167
169
  hash: string;
168
170
  } | null;
169
- userId: string | null;
170
- activeSubAgentId: string;
171
171
  lastContextResolution: string | null;
172
172
  } | undefined>;
173
173
  /**