@inkeep/agents-core 0.0.0-dev-20260401162145 → 0.0.0-dev-20260401162720

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/auth-schema.d.ts +108 -108
  2. package/dist/auth/auth-validation-schemas.d.ts +154 -154
  3. package/dist/auth/permissions.d.ts +9 -9
  4. package/dist/data-access/manage/agents.d.ts +41 -41
  5. package/dist/data-access/manage/artifactComponents.d.ts +8 -8
  6. package/dist/data-access/manage/contextConfigs.d.ts +8 -8
  7. package/dist/data-access/manage/dataComponents.d.ts +4 -4
  8. package/dist/data-access/manage/functionTools.d.ts +10 -10
  9. package/dist/data-access/manage/skills.d.ts +8 -8
  10. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  11. package/dist/data-access/manage/subAgentRelations.d.ts +24 -24
  12. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  13. package/dist/data-access/manage/subAgents.d.ts +15 -15
  14. package/dist/data-access/manage/tools.d.ts +33 -33
  15. package/dist/data-access/manage/triggers.d.ts +2 -2
  16. package/dist/data-access/runtime/apiKeys.d.ts +8 -8
  17. package/dist/data-access/runtime/apps.d.ts +14 -14
  18. package/dist/data-access/runtime/conversations.d.ts +20 -20
  19. package/dist/data-access/runtime/messages.d.ts +18 -18
  20. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
  21. package/dist/data-access/runtime/tasks.d.ts +4 -4
  22. package/dist/db/manage/manage-schema.d.ts +449 -449
  23. package/dist/db/runtime/runtime-schema.d.ts +378 -378
  24. package/dist/middleware/no-auth.d.ts +2 -2
  25. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  26. package/dist/validation/schemas/skills.d.ts +28 -28
  27. package/dist/validation/schemas.d.ts +1993 -1993
  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
+ projectId: string;
16
+ tenantId: 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
+ projectId: string;
51
+ tenantId: 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
+ projectId: string;
64
+ tenantId: 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
+ projectId: string;
133
+ tenantId: 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
+ projectId: string;
152
+ tenantId: 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
+ projectId: string;
166
+ tenantId: 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;
209
207
  id: string;
208
+ headers: Record<string, string> | null;
210
209
  createdAt: string;
211
210
  updatedAt: string;
212
- agentId: string;
211
+ projectId: string;
212
+ tenantId: string;
213
213
  toolId: string;
214
- headers: Record<string, string> | null;
214
+ agentId: string;
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;
253
251
  id: string;
252
+ headers: Record<string, string> | null;
254
253
  createdAt: string;
255
254
  updatedAt: string;
256
- agentId: string;
255
+ projectId: string;
256
+ tenantId: string;
257
257
  toolId: string;
258
- headers: Record<string, string> | null;
258
+ agentId: string;
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;
14
12
  id: string;
13
+ headers: Record<string, string> | null;
15
14
  createdAt: string;
16
15
  updatedAt: string;
16
+ projectId: string;
17
+ tenantId: 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;
49
47
  id: string;
48
+ headers: Record<string, string> | null;
50
49
  createdAt: string;
51
50
  updatedAt: string;
51
+ projectId: string;
52
+ tenantId: 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;
62
60
  id: string;
61
+ headers: Record<string, string> | null;
63
62
  createdAt: string;
64
63
  updatedAt: string;
64
+ projectId: string;
65
+ tenantId: 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;
227
225
  id: string;
226
+ headers: Record<string, string> | null;
228
227
  createdAt: string;
229
228
  updatedAt: string;
229
+ projectId: string;
230
+ tenantId: 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;
244
242
  id: string;
243
+ headers: Record<string, string> | null;
245
244
  createdAt: string;
246
245
  updatedAt: string;
246
+ projectId: string;
247
+ tenantId: 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;
265
263
  id: string;
264
+ headers: Record<string, string> | null;
266
265
  createdAt: string;
267
266
  updatedAt: string;
267
+ projectId: string;
268
+ tenantId: string;
268
269
  agentId: string;
269
- headers: Record<string, string> | null;
270
270
  subAgentId: string;
271
271
  targetAgentId: string;
272
272
  }>;
@@ -9,11 +9,13 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
9
9
  scopes: AgentScopeConfig;
10
10
  subAgentId: string;
11
11
  }) => Promise<{
12
- tenantId: string;
13
- projectId: string;
14
12
  id: string;
15
13
  name: string;
16
14
  description: string | null;
15
+ createdAt: string;
16
+ updatedAt: string;
17
+ projectId: string;
18
+ tenantId: string;
17
19
  models: {
18
20
  base?: {
19
21
  model?: string | undefined;
@@ -34,23 +36,23 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
34
36
  allowedProviders?: string[] | undefined;
35
37
  } | undefined;
36
38
  } | null;
37
- prompt: string | null;
38
39
  stopWhen: {
39
40
  stepCountIs?: number | undefined;
40
41
  } | null;
41
- createdAt: string;
42
- updatedAt: string;
43
42
  agentId: string;
43
+ prompt: string | null;
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
49
  id: string;
52
50
  name: string;
53
51
  description: string | null;
52
+ createdAt: string;
53
+ updatedAt: string;
54
+ projectId: string;
55
+ tenantId: string;
54
56
  models: {
55
57
  base?: {
56
58
  model?: string | undefined;
@@ -71,13 +73,11 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
71
73
  allowedProviders?: string[] | undefined;
72
74
  } | undefined;
73
75
  } | null;
74
- prompt: string | null;
75
76
  stopWhen: {
76
77
  stepCountIs?: number | undefined;
77
78
  } | null;
78
- createdAt: string;
79
- updatedAt: string;
80
79
  agentId: string;
80
+ prompt: string | null;
81
81
  conversationHistoryConfig: ConversationHistoryConfig | null;
82
82
  }[]>;
83
83
  declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
@@ -127,11 +127,13 @@ 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
130
  id: string;
133
131
  name: string;
134
132
  description: string | null;
133
+ createdAt: string;
134
+ updatedAt: string;
135
+ projectId: string;
136
+ tenantId: string;
135
137
  models: {
136
138
  base?: {
137
139
  model?: string | undefined;
@@ -152,13 +154,11 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
152
154
  allowedProviders?: string[] | undefined;
153
155
  } | undefined;
154
156
  } | null;
155
- prompt: string | null;
156
157
  stopWhen: {
157
158
  stepCountIs?: number | undefined;
158
159
  } | null;
159
- createdAt: string;
160
- updatedAt: string;
161
160
  agentId: string;
161
+ prompt: string | null;
162
162
  conversationHistoryConfig: ConversationHistoryConfig | null;
163
163
  }>;
164
164
  declare const updateSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -20,24 +20,24 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
20
20
  scopes: ProjectScopeConfig;
21
21
  toolId: string;
22
22
  }) => Promise<{
23
- tenantId: string;
24
- projectId: string;
25
23
  id: string;
26
24
  name: string;
27
25
  description: string | null;
28
- createdAt: string;
29
- updatedAt: string;
30
- headers: Record<string, string> | null;
31
26
  config: {
32
27
  type: "mcp";
33
28
  mcp: ToolMcpConfig;
34
29
  };
35
30
  credentialReferenceId: string | null;
36
31
  credentialScope: string;
32
+ headers: Record<string, string> | null;
37
33
  imageUrl: string | null;
38
34
  capabilities: ToolServerCapabilities | null;
39
35
  lastError: string | null;
40
36
  isWorkApp: boolean;
37
+ createdAt: string;
38
+ updatedAt: string;
39
+ projectId: string;
40
+ tenantId: string;
41
41
  } | null>;
42
42
  declare const getMcpToolById: (db: AgentsManageDatabaseClient) => (params: {
43
43
  scopes: ProjectScopeConfig;
@@ -78,24 +78,24 @@ 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
81
  id: string;
84
82
  name: string;
85
83
  description: string | null;
86
- createdAt: string;
87
- updatedAt: string;
88
- headers: Record<string, string> | null;
89
84
  config: {
90
85
  type: "mcp";
91
86
  mcp: ToolMcpConfig;
92
87
  };
93
88
  credentialReferenceId: string | null;
94
89
  credentialScope: string;
90
+ headers: Record<string, string> | null;
95
91
  imageUrl: string | null;
96
92
  capabilities: ToolServerCapabilities | null;
97
93
  lastError: string | null;
98
94
  isWorkApp: boolean;
95
+ createdAt: string;
96
+ updatedAt: string;
97
+ projectId: string;
98
+ tenantId: string;
99
99
  }>;
100
100
  declare const updateTool: (db: AgentsManageDatabaseClient) => (params: {
101
101
  scopes: ProjectScopeConfig;
@@ -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;
140
138
  id: string;
139
+ headers: Record<string, string> | null;
141
140
  createdAt: string;
142
141
  updatedAt: string;
143
- agentId: string;
142
+ projectId: string;
143
+ tenantId: string;
144
144
  toolId: string;
145
- headers: Record<string, string> | null;
145
+ agentId: string;
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;
159
157
  id: string;
158
+ headers: Record<string, string> | null;
160
159
  createdAt: string;
161
160
  updatedAt: string;
162
- agentId: string;
161
+ projectId: string;
162
+ tenantId: string;
163
163
  toolId: string;
164
- headers: Record<string, string> | null;
164
+ agentId: string;
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;
187
185
  id: string;
186
+ headers: Record<string, string> | null;
188
187
  createdAt: string;
189
188
  updatedAt: string;
190
- agentId: string;
189
+ projectId: string;
190
+ tenantId: string;
191
191
  toolId: string;
192
- headers: Record<string, string> | null;
192
+ agentId: string;
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,24 +202,24 @@ 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
205
  id: string;
208
206
  name: string;
209
207
  description: string | null;
210
- createdAt: string;
211
- updatedAt: string;
212
- headers: Record<string, string> | null;
213
208
  config: {
214
209
  type: "mcp";
215
210
  mcp: ToolMcpConfig;
216
211
  };
217
212
  credentialReferenceId: string | null;
218
213
  credentialScope: string;
214
+ headers: Record<string, string> | null;
219
215
  imageUrl: string | null;
220
216
  capabilities: ToolServerCapabilities | null;
221
217
  lastError: string | null;
222
218
  isWorkApp: boolean;
219
+ createdAt: string;
220
+ updatedAt: string;
221
+ projectId: string;
222
+ tenantId: string;
223
223
  }>;
224
224
  //#endregion
225
225
  export { addToolToAgent, createTool, dbResultToMcpTool, dbResultToMcpToolSkeleton, deleteTool, getMcpToolById, getToolById, listTools, removeToolFromAgent, updateTool, upsertSubAgentToolRelation, upsertTool };
@@ -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: "query" | "body" | "header";
44
44
  key: string;
45
45
  prefix?: string | undefined;
46
46
  regex?: string | undefined;
47
47
  };
48
48
  signedComponents: {
49
- source: "header" | "literal" | "body";
49
+ source: "literal" | "body" | "header";
50
50
  required: boolean;
51
51
  key?: string | undefined;
52
52
  value?: string | undefined;
@@ -8,12 +8,12 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
8
8
  scopes: ProjectScopeConfig;
9
9
  id: string;
10
10
  }) => Promise<{
11
- tenantId: string;
12
- projectId: string;
13
11
  id: string;
14
12
  name: string | null;
15
13
  createdAt: string;
16
14
  updatedAt: string;
15
+ projectId: string;
16
+ tenantId: string;
17
17
  agentId: string;
18
18
  expiresAt: string | null;
19
19
  publicId: string;
@@ -22,12 +22,12 @@ 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
- tenantId: string;
26
- projectId: string;
27
25
  id: string;
28
26
  name: string | null;
29
27
  createdAt: string;
30
28
  updatedAt: string;
29
+ projectId: string;
30
+ tenantId: string;
31
31
  agentId: string;
32
32
  expiresAt: string | null;
33
33
  publicId: string;
@@ -39,12 +39,12 @@ declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
39
39
  scopes: ProjectScopeConfig;
40
40
  agentId?: string;
41
41
  }) => Promise<{
42
- tenantId: string;
43
- projectId: string;
44
42
  id: string;
45
43
  name: string | null;
46
44
  createdAt: string;
47
45
  updatedAt: string;
46
+ projectId: string;
47
+ tenantId: string;
48
48
  agentId: string;
49
49
  expiresAt: string | null;
50
50
  publicId: string;
@@ -66,12 +66,12 @@ 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
69
  id: string;
72
70
  name: string | null;
73
71
  createdAt: string;
74
72
  updatedAt: string;
73
+ projectId: string;
74
+ tenantId: string;
75
75
  agentId: string;
76
76
  expiresAt: string | null;
77
77
  publicId: string;
@@ -5,16 +5,9 @@ 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
- type: AppType;
9
- tenantId: string | null;
10
- projectId: string | null;
11
8
  id: string;
12
9
  name: string;
13
10
  description: string | null;
14
- enabled: boolean;
15
- prompt: string | null;
16
- createdAt: string;
17
- updatedAt: string;
18
11
  config: {
19
12
  type: "web_client";
20
13
  webClient: {
@@ -32,6 +25,13 @@ declare const getAppById: (db: AgentsRunDatabaseClient) => (id: string) => Promi
32
25
  type: "api";
33
26
  api: Record<string, never>;
34
27
  };
28
+ createdAt: string;
29
+ updatedAt: string;
30
+ projectId: string | null;
31
+ tenantId: string | null;
32
+ type: AppType;
33
+ enabled: boolean;
34
+ prompt: string | null;
35
35
  lastUsedAt: string | null;
36
36
  defaultProjectId: string | null;
37
37
  defaultAgentId: string | null;
@@ -61,16 +61,9 @@ declare const listAppsPaginated: (db: AgentsRunDatabaseClient) => (params: {
61
61
  };
62
62
  }>;
63
63
  declare const createApp: (db: AgentsRunDatabaseClient) => (params: AppInsert) => Promise<{
64
- type: AppType;
65
- tenantId: string | null;
66
- projectId: string | null;
67
64
  id: string;
68
65
  name: string;
69
66
  description: string | null;
70
- enabled: boolean;
71
- prompt: string | null;
72
- createdAt: string;
73
- updatedAt: string;
74
67
  config: {
75
68
  type: "web_client";
76
69
  webClient: {
@@ -88,6 +81,13 @@ declare const createApp: (db: AgentsRunDatabaseClient) => (params: AppInsert) =>
88
81
  type: "api";
89
82
  api: Record<string, never>;
90
83
  };
84
+ createdAt: string;
85
+ updatedAt: string;
86
+ projectId: string | null;
87
+ tenantId: string | null;
88
+ type: AppType;
89
+ enabled: boolean;
90
+ prompt: string | null;
91
91
  lastUsedAt: string | null;
92
92
  defaultProjectId: string | null;
93
93
  defaultAgentId: string | null;