@inkeep/agents-core 0.0.0-dev-20260207220105 → 0.0.0-dev-20260207223415

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