@inkeep/agents-core 0.0.0-dev-20260408202201 → 0.0.0-dev-20260409021932

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.
Files changed (28) hide show
  1. package/dist/auth/permissions.d.ts +9 -9
  2. package/dist/data-access/manage/agents.d.ts +46 -46
  3. package/dist/data-access/manage/artifactComponents.d.ts +12 -12
  4. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  5. package/dist/data-access/manage/dataComponents.d.ts +4 -4
  6. package/dist/data-access/manage/functionTools.d.ts +14 -14
  7. package/dist/data-access/manage/skills.d.ts +13 -13
  8. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  9. package/dist/data-access/manage/subAgentRelations.d.ts +22 -22
  10. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  11. package/dist/data-access/manage/subAgents.d.ts +18 -18
  12. package/dist/data-access/manage/tools.d.ts +33 -33
  13. package/dist/data-access/manage/triggers.d.ts +2 -2
  14. package/dist/data-access/runtime/apiKeys.d.ts +16 -16
  15. package/dist/data-access/runtime/apps.d.ts +12 -12
  16. package/dist/data-access/runtime/conversations.d.ts +28 -28
  17. package/dist/data-access/runtime/feedback.d.ts +8 -8
  18. package/dist/data-access/runtime/messages.d.ts +21 -21
  19. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
  20. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +2 -2
  21. package/dist/data-access/runtime/tasks.d.ts +6 -6
  22. package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
  23. package/dist/db/manage/manage-schema.d.ts +449 -449
  24. package/dist/db/runtime/runtime-schema.d.ts +407 -407
  25. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  26. package/dist/validation/schemas/skills.d.ts +43 -43
  27. package/dist/validation/schemas.d.ts +2370 -2370
  28. package/package.json +1 -1
@@ -9,11 +9,11 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
9
9
  scopes: AgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
- tenantId: string;
13
- projectId: string;
14
12
  id: string;
15
13
  createdAt: string;
16
14
  updatedAt: string;
15
+ tenantId: string;
16
+ projectId: string;
17
17
  agentId: string;
18
18
  sourceSubAgentId: string;
19
19
  targetSubAgentId: string | null;
@@ -44,11 +44,11 @@ declare const listAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
44
44
  declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
- tenantId: string;
48
- projectId: string;
49
47
  id: string;
50
48
  createdAt: string;
51
49
  updatedAt: string;
50
+ tenantId: string;
51
+ projectId: string;
52
52
  agentId: string;
53
53
  sourceSubAgentId: string;
54
54
  targetSubAgentId: string | null;
@@ -57,11 +57,11 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
57
57
  declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
- tenantId: string;
61
- projectId: string;
62
60
  id: string;
63
61
  createdAt: string;
64
62
  updatedAt: string;
63
+ tenantId: string;
64
+ projectId: string;
65
65
  agentId: string;
66
66
  sourceSubAgentId: string;
67
67
  targetSubAgentId: string | null;
@@ -126,11 +126,11 @@ declare const getRelatedAgentsForAgent: (db: AgentsManageDatabaseClient) => (par
126
126
  }[];
127
127
  }>;
128
128
  declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
129
- tenantId: string;
130
- projectId: string;
131
129
  id: string;
132
130
  createdAt: string;
133
131
  updatedAt: string;
132
+ tenantId: string;
133
+ projectId: string;
134
134
  agentId: string;
135
135
  sourceSubAgentId: string;
136
136
  targetSubAgentId: string | null;
@@ -145,11 +145,11 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
145
145
  targetSubAgentId?: string;
146
146
  relationType: string;
147
147
  }) => Promise<{
148
- tenantId: string;
149
- projectId: string;
150
148
  id: string;
151
149
  createdAt: string;
152
150
  updatedAt: string;
151
+ tenantId: string;
152
+ projectId: string;
153
153
  agentId: string;
154
154
  sourceSubAgentId: string;
155
155
  targetSubAgentId: string | null;
@@ -159,11 +159,11 @@ 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
- tenantId: string;
163
- projectId: string;
164
162
  id: string;
165
163
  createdAt: string;
166
164
  updatedAt: string;
165
+ tenantId: string;
166
+ projectId: string;
167
167
  agentId: string;
168
168
  sourceSubAgentId: string;
169
169
  targetSubAgentId: string | null;
@@ -204,19 +204,19 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
204
204
  }> | null;
205
205
  };
206
206
  }) => Promise<{
207
- tenantId: string;
208
- projectId: string;
207
+ headers: Record<string, string> | null;
209
208
  id: string;
210
209
  createdAt: string;
211
210
  updatedAt: string;
211
+ tenantId: string;
212
+ projectId: string;
212
213
  agentId: string;
213
214
  toolId: string;
214
- headers: Record<string, string> | null;
215
+ subAgentId: string;
216
+ selectedTools: string[] | null;
215
217
  toolPolicies: Record<string, {
216
218
  needsApproval?: boolean;
217
219
  }> | null;
218
- subAgentId: string;
219
- selectedTools: string[] | null;
220
220
  }>;
221
221
  declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
222
222
  scopes: AgentScopeConfig;
@@ -248,19 +248,19 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
248
248
  scopes: SubAgentScopeConfig;
249
249
  relationId: string;
250
250
  }) => Promise<{
251
- tenantId: string;
252
- projectId: string;
251
+ headers: Record<string, string> | null;
253
252
  id: string;
254
253
  createdAt: string;
255
254
  updatedAt: string;
255
+ tenantId: string;
256
+ projectId: string;
256
257
  agentId: string;
257
258
  toolId: string;
258
- headers: Record<string, string> | null;
259
+ subAgentId: string;
260
+ selectedTools: string[] | null;
259
261
  toolPolicies: Record<string, {
260
262
  needsApproval?: boolean;
261
263
  }> | null;
262
- subAgentId: string;
263
- selectedTools: string[] | null;
264
264
  } | undefined>;
265
265
  declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
266
266
  scopes: SubAgentScopeConfig;
@@ -9,13 +9,13 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
9
9
  scopes: SubAgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
- tenantId: string;
13
- projectId: string;
12
+ headers: Record<string, string> | null;
14
13
  id: string;
15
14
  createdAt: string;
16
15
  updatedAt: string;
16
+ tenantId: string;
17
+ projectId: string;
17
18
  agentId: string;
18
- headers: Record<string, string> | null;
19
19
  subAgentId: string;
20
20
  targetAgentId: string;
21
21
  } | undefined>;
@@ -44,26 +44,26 @@ declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =
44
44
  declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
- tenantId: string;
48
- projectId: string;
47
+ headers: Record<string, string> | null;
49
48
  id: string;
50
49
  createdAt: string;
51
50
  updatedAt: string;
51
+ tenantId: string;
52
+ projectId: string;
52
53
  agentId: string;
53
- headers: Record<string, string> | null;
54
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
- tenantId: string;
61
- projectId: string;
60
+ headers: Record<string, string> | null;
62
61
  id: string;
63
62
  createdAt: string;
64
63
  updatedAt: string;
64
+ tenantId: string;
65
+ projectId: string;
65
66
  agentId: string;
66
- headers: Record<string, string> | null;
67
67
  subAgentId: string;
68
68
  targetAgentId: string;
69
69
  }[]>;
@@ -222,13 +222,13 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
222
222
  headers?: Record<string, string> | null;
223
223
  };
224
224
  }) => Promise<{
225
- tenantId: string;
226
- projectId: string;
225
+ headers: Record<string, string> | null;
227
226
  id: string;
228
227
  createdAt: string;
229
228
  updatedAt: string;
229
+ tenantId: string;
230
+ projectId: string;
230
231
  agentId: string;
231
- headers: Record<string, string> | null;
232
232
  subAgentId: string;
233
233
  targetAgentId: string;
234
234
  }>;
@@ -239,13 +239,13 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
239
239
  scopes: SubAgentScopeConfig;
240
240
  targetAgentId: string;
241
241
  }) => Promise<{
242
- tenantId: string;
243
- projectId: string;
242
+ headers: Record<string, string> | null;
244
243
  id: string;
245
244
  createdAt: string;
246
245
  updatedAt: string;
246
+ tenantId: string;
247
+ projectId: string;
247
248
  agentId: string;
248
- headers: Record<string, string> | null;
249
249
  subAgentId: string;
250
250
  targetAgentId: string;
251
251
  } | undefined>;
@@ -260,13 +260,13 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
260
260
  headers?: Record<string, string> | null;
261
261
  };
262
262
  }) => Promise<{
263
- tenantId: string;
264
- projectId: string;
263
+ headers: Record<string, string> | null;
265
264
  id: string;
266
265
  createdAt: string;
267
266
  updatedAt: string;
267
+ tenantId: string;
268
+ projectId: string;
268
269
  agentId: string;
269
- headers: Record<string, string> | null;
270
270
  subAgentId: string;
271
271
  targetAgentId: string;
272
272
  }>;
@@ -9,10 +9,10 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
9
9
  scopes: AgentScopeConfig;
10
10
  subAgentId: string;
11
11
  }) => Promise<{
12
- tenantId: string;
13
- projectId: string;
14
- id: string;
15
12
  name: string;
13
+ id: string;
14
+ createdAt: string;
15
+ updatedAt: string;
16
16
  description: string | null;
17
17
  models: {
18
18
  base?: {
@@ -34,22 +34,22 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
34
34
  allowedProviders?: string[] | undefined;
35
35
  } | undefined;
36
36
  } | null;
37
- prompt: string | null;
38
37
  stopWhen: {
39
38
  stepCountIs?: number | undefined;
40
39
  } | null;
41
- createdAt: string;
42
- updatedAt: string;
40
+ tenantId: string;
41
+ prompt: string | null;
42
+ projectId: string;
43
43
  agentId: string;
44
44
  conversationHistoryConfig: ConversationHistoryConfig | null;
45
45
  } | undefined>;
46
46
  declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
47
47
  scopes: AgentScopeConfig;
48
48
  }) => Promise<{
49
- tenantId: string;
50
- projectId: string;
51
- id: string;
52
49
  name: string;
50
+ id: string;
51
+ createdAt: string;
52
+ updatedAt: string;
53
53
  description: string | null;
54
54
  models: {
55
55
  base?: {
@@ -71,12 +71,12 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
71
71
  allowedProviders?: string[] | undefined;
72
72
  } | undefined;
73
73
  } | null;
74
- prompt: string | null;
75
74
  stopWhen: {
76
75
  stepCountIs?: number | undefined;
77
76
  } | null;
78
- createdAt: string;
79
- updatedAt: string;
77
+ tenantId: string;
78
+ prompt: string | null;
79
+ projectId: string;
80
80
  agentId: string;
81
81
  conversationHistoryConfig: ConversationHistoryConfig | null;
82
82
  }[]>;
@@ -127,10 +127,10 @@ declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (param
127
127
  };
128
128
  }>;
129
129
  declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAgentInsert) => Promise<{
130
- tenantId: string;
131
- projectId: string;
132
- id: string;
133
130
  name: string;
131
+ id: string;
132
+ createdAt: string;
133
+ updatedAt: string;
134
134
  description: string | null;
135
135
  models: {
136
136
  base?: {
@@ -152,12 +152,12 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
152
152
  allowedProviders?: string[] | undefined;
153
153
  } | undefined;
154
154
  } | null;
155
- prompt: string | null;
156
155
  stopWhen: {
157
156
  stepCountIs?: number | undefined;
158
157
  } | null;
159
- createdAt: string;
160
- updatedAt: string;
158
+ tenantId: string;
159
+ prompt: string | null;
160
+ projectId: string;
161
161
  agentId: string;
162
162
  conversationHistoryConfig: ConversationHistoryConfig | null;
163
163
  }>;
@@ -20,19 +20,19 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
20
20
  scopes: ProjectScopeConfig;
21
21
  toolId: string;
22
22
  }) => Promise<{
23
- tenantId: string;
24
- projectId: string;
25
- id: string;
23
+ headers: Record<string, string> | null;
26
24
  name: string;
27
- description: string | null;
25
+ id: string;
28
26
  createdAt: string;
29
27
  updatedAt: string;
30
- headers: Record<string, string> | null;
28
+ description: string | null;
29
+ tenantId: string;
30
+ projectId: string;
31
+ credentialReferenceId: string | null;
31
32
  config: {
32
33
  type: "mcp";
33
34
  mcp: ToolMcpConfig;
34
35
  };
35
- credentialReferenceId: string | null;
36
36
  credentialScope: string;
37
37
  imageUrl: string | null;
38
38
  capabilities: ToolServerCapabilities | null;
@@ -78,19 +78,19 @@ declare const listTools: (db: AgentsManageDatabaseClient) => (params: {
78
78
  };
79
79
  }>;
80
80
  declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInsert) => Promise<{
81
- tenantId: string;
82
- projectId: string;
83
- id: string;
81
+ headers: Record<string, string> | null;
84
82
  name: string;
85
- description: string | null;
83
+ id: string;
86
84
  createdAt: string;
87
85
  updatedAt: string;
88
- headers: Record<string, string> | null;
86
+ description: string | null;
87
+ tenantId: string;
88
+ projectId: string;
89
+ credentialReferenceId: string | null;
89
90
  config: {
90
91
  type: "mcp";
91
92
  mcp: ToolMcpConfig;
92
93
  };
93
- credentialReferenceId: string | null;
94
94
  credentialScope: string;
95
95
  imageUrl: string | null;
96
96
  capabilities: ToolServerCapabilities | null;
@@ -135,38 +135,38 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
135
135
  needsApproval?: boolean;
136
136
  }> | null;
137
137
  }) => Promise<{
138
- tenantId: string;
139
- projectId: string;
138
+ headers: Record<string, string> | null;
140
139
  id: string;
141
140
  createdAt: string;
142
141
  updatedAt: string;
142
+ tenantId: string;
143
+ projectId: string;
143
144
  agentId: string;
144
145
  toolId: string;
145
- headers: Record<string, string> | null;
146
+ subAgentId: string;
147
+ selectedTools: string[] | null;
146
148
  toolPolicies: Record<string, {
147
149
  needsApproval?: boolean;
148
150
  }> | null;
149
- subAgentId: string;
150
- selectedTools: string[] | null;
151
151
  }>;
152
152
  declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params: {
153
153
  scopes: AgentScopeConfig;
154
154
  subAgentId: string;
155
155
  toolId: string;
156
156
  }) => Promise<{
157
- tenantId: string;
158
- projectId: string;
157
+ headers: Record<string, string> | null;
159
158
  id: string;
160
159
  createdAt: string;
161
160
  updatedAt: string;
161
+ tenantId: string;
162
+ projectId: string;
162
163
  agentId: string;
163
164
  toolId: string;
164
- headers: Record<string, string> | null;
165
+ subAgentId: string;
166
+ selectedTools: string[] | null;
165
167
  toolPolicies: Record<string, {
166
168
  needsApproval?: boolean;
167
169
  }> | null;
168
- subAgentId: string;
169
- selectedTools: string[] | null;
170
170
  }>;
171
171
  /**
172
172
  * Upsert agent-tool relation (create if it doesn't exist, update if it does)
@@ -182,19 +182,19 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
182
182
  }> | null;
183
183
  relationId?: string;
184
184
  }) => Promise<{
185
- tenantId: string;
186
- projectId: string;
185
+ headers: Record<string, string> | null;
187
186
  id: string;
188
187
  createdAt: string;
189
188
  updatedAt: string;
189
+ tenantId: string;
190
+ projectId: string;
190
191
  agentId: string;
191
192
  toolId: string;
192
- headers: Record<string, string> | null;
193
+ subAgentId: string;
194
+ selectedTools: string[] | null;
193
195
  toolPolicies: Record<string, {
194
196
  needsApproval?: boolean;
195
197
  }> | null;
196
- subAgentId: string;
197
- selectedTools: string[] | null;
198
198
  }>;
199
199
  /**
200
200
  * Upsert a tool (create if it doesn't exist, update if it does)
@@ -202,19 +202,19 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
202
202
  declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
203
203
  data: ToolInsert;
204
204
  }) => Promise<{
205
- tenantId: string;
206
- projectId: string;
207
- id: string;
205
+ headers: Record<string, string> | null;
208
206
  name: string;
209
- description: string | null;
207
+ id: string;
210
208
  createdAt: string;
211
209
  updatedAt: string;
212
- headers: Record<string, string> | null;
210
+ description: string | null;
211
+ tenantId: string;
212
+ projectId: string;
213
+ credentialReferenceId: string | null;
213
214
  config: {
214
215
  type: "mcp";
215
216
  mcp: ToolMcpConfig;
216
217
  };
217
- credentialReferenceId: string | null;
218
218
  credentialScope: string;
219
219
  imageUrl: string | null;
220
220
  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" | "header" | "body";
43
+ source: "body" | "query" | "header";
44
44
  key: string;
45
45
  prefix?: string | undefined;
46
46
  regex?: string | undefined;
47
47
  };
48
48
  signedComponents: {
49
- source: "literal" | "header" | "body";
49
+ source: "body" | "header" | "literal";
50
50
  required: boolean;
51
51
  key?: string | undefined;
52
52
  value?: string | undefined;
@@ -8,28 +8,28 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
8
8
  scopes: ProjectScopeConfig;
9
9
  id: string;
10
10
  }) => Promise<{
11
- tenantId: string;
12
- projectId: string;
13
- id: string;
14
11
  name: string | null;
12
+ id: string;
15
13
  createdAt: string;
14
+ expiresAt: string | null;
16
15
  updatedAt: string;
16
+ tenantId: string;
17
+ projectId: string;
17
18
  agentId: string;
18
- expiresAt: string | null;
19
19
  publicId: string;
20
20
  keyHash: string;
21
21
  keyPrefix: string;
22
22
  lastUsedAt: string | null;
23
23
  } | undefined>;
24
24
  declare const getApiKeyByPublicId: (db: AgentsRunDatabaseClient) => (publicId: string) => Promise<{
25
- tenantId: string;
26
- projectId: string;
27
- id: string;
28
25
  name: string | null;
26
+ id: string;
29
27
  createdAt: string;
28
+ expiresAt: string | null;
30
29
  updatedAt: string;
30
+ tenantId: string;
31
+ projectId: string;
31
32
  agentId: string;
32
- expiresAt: string | null;
33
33
  publicId: string;
34
34
  keyHash: string;
35
35
  keyPrefix: string;
@@ -39,14 +39,14 @@ declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
39
39
  scopes: ProjectScopeConfig;
40
40
  agentId?: string;
41
41
  }) => Promise<{
42
- tenantId: string;
43
- projectId: string;
44
- id: string;
45
42
  name: string | null;
43
+ id: string;
46
44
  createdAt: string;
45
+ expiresAt: string | null;
47
46
  updatedAt: string;
47
+ tenantId: string;
48
+ projectId: string;
48
49
  agentId: string;
49
- expiresAt: string | null;
50
50
  publicId: string;
51
51
  keyHash: string;
52
52
  keyPrefix: string;
@@ -66,14 +66,14 @@ declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
66
66
  };
67
67
  }>;
68
68
  declare const createApiKey: (db: AgentsRunDatabaseClient) => (params: ApiKeyInsert) => Promise<{
69
- tenantId: string;
70
- projectId: string;
71
- id: string;
72
69
  name: string | null;
70
+ id: string;
73
71
  createdAt: string;
72
+ expiresAt: string | null;
74
73
  updatedAt: string;
74
+ tenantId: string;
75
+ projectId: string;
75
76
  agentId: string;
76
- expiresAt: string | null;
77
77
  publicId: string;
78
78
  keyHash: string;
79
79
  keyPrefix: string;
@@ -5,16 +5,16 @@ import { AppInsert, AppSelect, AppUpdate } from "../../types/entities.js";
5
5
 
6
6
  //#region src/data-access/runtime/apps.d.ts
7
7
  declare const getAppById: (db: AgentsRunDatabaseClient) => (id: string) => Promise<{
8
- tenantId: string | null;
9
- projectId: string | null;
10
- id: string;
8
+ type: AppType;
11
9
  name: string;
10
+ id: string;
11
+ createdAt: string;
12
+ updatedAt: string;
12
13
  description: string | null;
13
- type: AppType;
14
+ tenantId: string | null;
14
15
  enabled: boolean;
15
16
  prompt: string | null;
16
- createdAt: string;
17
- updatedAt: string;
17
+ projectId: string | null;
18
18
  config: {
19
19
  type: "web_client";
20
20
  webClient: {
@@ -61,16 +61,16 @@ declare const listAppsPaginated: (db: AgentsRunDatabaseClient) => (params: {
61
61
  };
62
62
  }>;
63
63
  declare const createApp: (db: AgentsRunDatabaseClient) => (params: AppInsert) => Promise<{
64
- tenantId: string | null;
65
- projectId: string | null;
66
- id: string;
64
+ type: AppType;
67
65
  name: string;
66
+ id: string;
67
+ createdAt: string;
68
+ updatedAt: string;
68
69
  description: string | null;
69
- type: AppType;
70
+ tenantId: string | null;
70
71
  enabled: boolean;
71
72
  prompt: string | null;
72
- createdAt: string;
73
- updatedAt: string;
73
+ projectId: string | null;
74
74
  config: {
75
75
  type: "web_client";
76
76
  webClient: {