@inkeep/agents-core 0.48.7 → 0.49.0

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 (35) hide show
  1. package/dist/auth/auth-schema.d.ts +83 -83
  2. package/dist/auth/auth-validation-schemas.d.ts +131 -131
  3. package/dist/auth/auth.d.ts +57 -57
  4. package/dist/auth/authz/config.d.ts +20 -1
  5. package/dist/auth/authz/config.js +27 -1
  6. package/dist/auth/authz/index.d.ts +2 -2
  7. package/dist/auth/authz/index.js +2 -2
  8. package/dist/auth/authz/permissions.d.ts +6 -0
  9. package/dist/auth/authz/permissions.js +21 -6
  10. package/dist/auth/authz/sync.js +31 -18
  11. package/dist/auth/permissions.d.ts +13 -13
  12. package/dist/client-exports.d.ts +2 -2
  13. package/dist/data-access/manage/agents.d.ts +10 -10
  14. package/dist/data-access/manage/artifactComponents.d.ts +6 -6
  15. package/dist/data-access/manage/contextConfigs.d.ts +8 -8
  16. package/dist/data-access/manage/dataComponents.d.ts +2 -2
  17. package/dist/data-access/manage/functionTools.d.ts +8 -8
  18. package/dist/data-access/manage/skills.d.ts +12 -12
  19. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
  20. package/dist/data-access/manage/subAgentRelations.d.ts +16 -16
  21. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
  22. package/dist/data-access/manage/subAgents.d.ts +6 -6
  23. package/dist/data-access/manage/tools.d.ts +12 -12
  24. package/dist/data-access/manage/triggers.d.ts +2 -2
  25. package/dist/data-access/runtime/apiKeys.d.ts +16 -16
  26. package/dist/data-access/runtime/conversations.d.ts +20 -20
  27. package/dist/data-access/runtime/messages.d.ts +18 -18
  28. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
  29. package/dist/data-access/runtime/tasks.d.ts +4 -4
  30. package/dist/db/manage/manage-schema.d.ts +357 -357
  31. package/dist/db/runtime/runtime-schema.d.ts +262 -262
  32. package/dist/index.d.ts +2 -2
  33. package/dist/index.js +2 -2
  34. package/dist/validation/schemas.d.ts +1509 -1509
  35. package/package.json +1 -1
@@ -10,6 +10,8 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
10
10
  }) => Promise<{
11
11
  id: string;
12
12
  name: string;
13
+ createdAt: string;
14
+ updatedAt: string;
13
15
  description: string | null;
14
16
  tenantId: string;
15
17
  projectId: string;
@@ -33,14 +35,14 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
33
35
  stopWhen: {
34
36
  stepCountIs?: number | undefined;
35
37
  } | null;
36
- createdAt: string;
37
- updatedAt: string;
38
38
  } | undefined>;
39
39
  declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
40
40
  scopes: AgentScopeConfig;
41
41
  }) => Promise<{
42
42
  id: string;
43
43
  name: string;
44
+ createdAt: string;
45
+ updatedAt: string;
44
46
  description: string | null;
45
47
  tenantId: string;
46
48
  projectId: string;
@@ -64,8 +66,6 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
64
66
  stopWhen: {
65
67
  stepCountIs?: number | undefined;
66
68
  } | null;
67
- createdAt: string;
68
- updatedAt: string;
69
69
  }[]>;
70
70
  declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
71
71
  scopes: AgentScopeConfig;
@@ -110,6 +110,8 @@ declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (param
110
110
  declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAgentInsert) => Promise<{
111
111
  id: string;
112
112
  name: string;
113
+ createdAt: string;
114
+ updatedAt: string;
113
115
  description: string | null;
114
116
  tenantId: string;
115
117
  projectId: string;
@@ -133,8 +135,6 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
133
135
  stopWhen: {
134
136
  stepCountIs?: number | undefined;
135
137
  } | null;
136
- createdAt: string;
137
- updatedAt: string;
138
138
  }>;
139
139
  declare const updateSubAgent: (db: AgentsManageDatabaseClient) => (params: {
140
140
  scopes: AgentScopeConfig;
@@ -20,11 +20,11 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
20
20
  }) => Promise<{
21
21
  id: string;
22
22
  name: string;
23
+ createdAt: string;
24
+ updatedAt: string;
23
25
  description: string | null;
24
26
  tenantId: string;
25
27
  projectId: string;
26
- createdAt: string;
27
- updatedAt: string;
28
28
  headers: Record<string, string> | null;
29
29
  config: {
30
30
  type: "mcp";
@@ -78,11 +78,11 @@ declare const listTools: (db: AgentsManageDatabaseClient) => (params: {
78
78
  declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInsert) => Promise<{
79
79
  id: string;
80
80
  name: string;
81
+ createdAt: string;
82
+ updatedAt: string;
81
83
  description: string | null;
82
84
  tenantId: string;
83
85
  projectId: string;
84
- createdAt: string;
85
- updatedAt: string;
86
86
  headers: Record<string, string> | null;
87
87
  config: {
88
88
  type: "mcp";
@@ -134,11 +134,11 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
134
134
  }> | null;
135
135
  }) => Promise<{
136
136
  id: string;
137
+ createdAt: string;
138
+ updatedAt: string;
137
139
  tenantId: string;
138
140
  projectId: string;
139
141
  agentId: string;
140
- createdAt: string;
141
- updatedAt: string;
142
142
  toolId: string;
143
143
  headers: Record<string, string> | null;
144
144
  toolPolicies: Record<string, {
@@ -153,11 +153,11 @@ declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params:
153
153
  toolId: string;
154
154
  }) => Promise<{
155
155
  id: string;
156
+ createdAt: string;
157
+ updatedAt: string;
156
158
  tenantId: string;
157
159
  projectId: string;
158
160
  agentId: string;
159
- createdAt: string;
160
- updatedAt: string;
161
161
  toolId: string;
162
162
  headers: Record<string, string> | null;
163
163
  toolPolicies: Record<string, {
@@ -181,11 +181,11 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
181
181
  relationId?: string;
182
182
  }) => Promise<{
183
183
  id: string;
184
+ createdAt: string;
185
+ updatedAt: string;
184
186
  tenantId: string;
185
187
  projectId: string;
186
188
  agentId: string;
187
- createdAt: string;
188
- updatedAt: string;
189
189
  toolId: string;
190
190
  headers: Record<string, string> | null;
191
191
  toolPolicies: Record<string, {
@@ -202,11 +202,11 @@ declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
202
202
  }) => Promise<{
203
203
  id: string;
204
204
  name: string;
205
+ createdAt: string;
206
+ updatedAt: string;
205
207
  description: string | null;
206
208
  tenantId: string;
207
209
  projectId: string;
208
- createdAt: string;
209
- updatedAt: string;
210
210
  headers: Record<string, string> | null;
211
211
  config: {
212
212
  type: "mcp";
@@ -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" | "body" | "header";
43
+ source: "query" | "header" | "body";
44
44
  key: string;
45
45
  prefix?: string | undefined;
46
46
  regex?: string | undefined;
47
47
  };
48
48
  signedComponents: {
49
- source: "literal" | "body" | "header";
49
+ source: "literal" | "header" | "body";
50
50
  required: boolean;
51
51
  key?: string | undefined;
52
52
  value?: string | undefined;
@@ -9,30 +9,30 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
9
9
  }) => Promise<{
10
10
  id: string;
11
11
  name: string | null;
12
- tenantId: string;
13
- projectId: string;
14
- agentId: string;
15
12
  createdAt: string;
16
13
  updatedAt: string;
17
14
  expiresAt: string | null;
15
+ tenantId: string;
16
+ projectId: string;
17
+ agentId: string;
18
+ lastUsedAt: string | null;
18
19
  publicId: string;
19
20
  keyHash: string;
20
21
  keyPrefix: string;
21
- lastUsedAt: string | null;
22
22
  } | undefined>;
23
23
  declare const getApiKeyByPublicId: (db: AgentsRunDatabaseClient) => (publicId: string) => Promise<{
24
24
  id: string;
25
25
  name: string | null;
26
- tenantId: string;
27
- projectId: string;
28
- agentId: string;
29
26
  createdAt: string;
30
27
  updatedAt: string;
31
28
  expiresAt: string | null;
29
+ tenantId: string;
30
+ projectId: string;
31
+ agentId: string;
32
+ lastUsedAt: string | null;
32
33
  publicId: string;
33
34
  keyHash: string;
34
35
  keyPrefix: string;
35
- lastUsedAt: string | null;
36
36
  } | undefined>;
37
37
  declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
38
38
  scopes: ProjectScopeConfig;
@@ -40,16 +40,16 @@ declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
40
40
  }) => Promise<{
41
41
  id: string;
42
42
  name: string | null;
43
- tenantId: string;
44
- projectId: string;
45
- agentId: string;
46
43
  createdAt: string;
47
44
  updatedAt: string;
48
45
  expiresAt: string | null;
46
+ tenantId: string;
47
+ projectId: string;
48
+ agentId: string;
49
+ lastUsedAt: string | null;
49
50
  publicId: string;
50
51
  keyHash: string;
51
52
  keyPrefix: string;
52
- lastUsedAt: string | null;
53
53
  }[]>;
54
54
  declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
55
55
  scopes: ProjectScopeConfig;
@@ -67,16 +67,16 @@ declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
67
67
  declare const createApiKey: (db: AgentsRunDatabaseClient) => (params: ApiKeyInsert) => Promise<{
68
68
  id: string;
69
69
  name: string | null;
70
- tenantId: string;
71
- projectId: string;
72
- agentId: string;
73
70
  createdAt: string;
74
71
  updatedAt: string;
75
72
  expiresAt: string | null;
73
+ tenantId: string;
74
+ projectId: string;
75
+ agentId: string;
76
+ lastUsedAt: string | null;
76
77
  publicId: string;
77
78
  keyHash: string;
78
79
  keyPrefix: string;
79
- lastUsedAt: string | null;
80
80
  }>;
81
81
  declare const updateApiKey: (db: AgentsRunDatabaseClient) => (params: {
82
82
  scopes: ProjectScopeConfig;
@@ -16,19 +16,19 @@ declare const listConversations: (db: AgentsRunDatabaseClient) => (params: {
16
16
  }>;
17
17
  declare const createConversation: (db: AgentsRunDatabaseClient) => (params: ConversationInsert) => Promise<{
18
18
  id: string;
19
- tenantId: string;
20
- projectId: string;
21
- agentId: string | null;
22
- title: string | null;
23
19
  createdAt: string;
24
20
  updatedAt: string;
25
- metadata: ConversationMetadata | null;
26
21
  ref: {
27
22
  type: "tag" | "commit" | "branch";
28
23
  name: string;
29
24
  hash: string;
30
25
  } | null;
31
26
  userId: string | null;
27
+ metadata: ConversationMetadata | null;
28
+ tenantId: string;
29
+ projectId: string;
30
+ agentId: string | null;
31
+ title: string | null;
32
32
  activeSubAgentId: string;
33
33
  lastContextResolution: string | null;
34
34
  }>;
@@ -85,19 +85,19 @@ declare const getConversation: (db: AgentsRunDatabaseClient) => (params: {
85
85
  conversationId: string;
86
86
  }) => Promise<{
87
87
  id: string;
88
- tenantId: string;
89
- projectId: string;
90
- agentId: string | null;
91
- title: string | null;
92
88
  createdAt: string;
93
89
  updatedAt: string;
94
- metadata: ConversationMetadata | null;
95
90
  ref: {
96
91
  type: "tag" | "commit" | "branch";
97
92
  name: string;
98
93
  hash: string;
99
94
  } | null;
100
95
  userId: string | null;
96
+ metadata: ConversationMetadata | null;
97
+ tenantId: string;
98
+ projectId: string;
99
+ agentId: string | null;
100
+ title: string | null;
101
101
  activeSubAgentId: string;
102
102
  lastContextResolution: string | null;
103
103
  } | undefined>;
@@ -121,19 +121,19 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
121
121
  contextConfigId?: string | undefined;
122
122
  } | {
123
123
  id: string;
124
- tenantId: string;
125
- projectId: string;
126
- agentId: string | null;
127
- title: string | null;
128
124
  createdAt: string;
129
125
  updatedAt: string;
130
- metadata: ConversationMetadata | null;
131
126
  ref: {
132
127
  type: "tag" | "commit" | "branch";
133
128
  name: string;
134
129
  hash: string;
135
130
  } | null;
136
131
  userId: string | null;
132
+ metadata: ConversationMetadata | null;
133
+ tenantId: string;
134
+ projectId: string;
135
+ agentId: string | null;
136
+ title: string | null;
137
137
  activeSubAgentId: string;
138
138
  lastContextResolution: string | null;
139
139
  }>;
@@ -153,19 +153,19 @@ declare const getActiveAgentForConversation: (db: AgentsRunDatabaseClient) => (p
153
153
  conversationId: string;
154
154
  }) => Promise<{
155
155
  id: string;
156
- tenantId: string;
157
- projectId: string;
158
- agentId: string | null;
159
- title: string | null;
160
156
  createdAt: string;
161
157
  updatedAt: string;
162
- metadata: ConversationMetadata | null;
163
158
  ref: {
164
159
  type: "tag" | "commit" | "branch";
165
160
  name: string;
166
161
  hash: string;
167
162
  } | null;
168
163
  userId: string | null;
164
+ metadata: ConversationMetadata | null;
165
+ tenantId: string;
166
+ projectId: string;
167
+ agentId: string | null;
168
+ title: string | null;
169
169
  activeSubAgentId: string;
170
170
  lastContextResolution: string | null;
171
171
  } | undefined>;
@@ -10,25 +10,25 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
10
10
  messageId: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
- tenantId: string;
14
- projectId: string;
15
13
  createdAt: string;
16
14
  updatedAt: string;
17
15
  metadata: MessageMetadata | null;
18
- content: MessageContent;
19
16
  role: string;
17
+ tenantId: string;
18
+ projectId: string;
19
+ content: MessageContent;
20
+ conversationId: string;
20
21
  fromSubAgentId: string | null;
21
22
  toSubAgentId: string | null;
22
23
  fromExternalAgentId: string | null;
23
24
  toExternalAgentId: string | null;
24
- taskId: string | null;
25
- a2aTaskId: string | null;
26
- conversationId: string;
27
25
  fromTeamAgentId: string | null;
28
26
  toTeamAgentId: string | null;
29
27
  visibility: string;
30
28
  messageType: string;
29
+ taskId: string | null;
31
30
  parentMessageId: string | null;
31
+ a2aTaskId: string | null;
32
32
  a2aSessionId: string | null;
33
33
  } | undefined>;
34
34
  declare const listMessages: (db: AgentsRunDatabaseClient) => (params: {
@@ -141,25 +141,25 @@ declare const getVisibleMessages: (db: AgentsRunDatabaseClient) => (params: {
141
141
  }[]>;
142
142
  declare const createMessage: (db: AgentsRunDatabaseClient) => (params: MessageInsert) => Promise<{
143
143
  id: string;
144
- tenantId: string;
145
- projectId: string;
146
144
  createdAt: string;
147
145
  updatedAt: string;
148
146
  metadata: MessageMetadata | null;
149
- content: MessageContent;
150
147
  role: string;
148
+ tenantId: string;
149
+ projectId: string;
150
+ content: MessageContent;
151
+ conversationId: string;
151
152
  fromSubAgentId: string | null;
152
153
  toSubAgentId: string | null;
153
154
  fromExternalAgentId: string | null;
154
155
  toExternalAgentId: string | null;
155
- taskId: string | null;
156
- a2aTaskId: string | null;
157
- conversationId: string;
158
156
  fromTeamAgentId: string | null;
159
157
  toTeamAgentId: string | null;
160
158
  visibility: string;
161
159
  messageType: string;
160
+ taskId: string | null;
162
161
  parentMessageId: string | null;
162
+ a2aTaskId: string | null;
163
163
  a2aSessionId: string | null;
164
164
  }>;
165
165
  declare const updateMessage: (db: AgentsRunDatabaseClient) => (params: {
@@ -194,25 +194,25 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
194
194
  messageId: string;
195
195
  }) => Promise<{
196
196
  id: string;
197
- tenantId: string;
198
- projectId: string;
199
197
  createdAt: string;
200
198
  updatedAt: string;
201
199
  metadata: MessageMetadata | null;
202
- content: MessageContent;
203
200
  role: string;
201
+ tenantId: string;
202
+ projectId: string;
203
+ content: MessageContent;
204
+ conversationId: string;
204
205
  fromSubAgentId: string | null;
205
206
  toSubAgentId: string | null;
206
207
  fromExternalAgentId: string | null;
207
208
  toExternalAgentId: string | null;
208
- taskId: string | null;
209
- a2aTaskId: string | null;
210
- conversationId: string;
211
209
  fromTeamAgentId: string | null;
212
210
  toTeamAgentId: string | null;
213
211
  visibility: string;
214
212
  messageType: string;
213
+ taskId: string | null;
215
214
  parentMessageId: string | null;
215
+ a2aTaskId: string | null;
216
216
  a2aSessionId: string | null;
217
217
  }>;
218
218
  declare const countMessagesByConversation: (db: AgentsRunDatabaseClient) => (params: {
@@ -34,7 +34,7 @@ declare const listScheduledTriggerInvocationsPaginated: (db: AgentsRunDatabaseCl
34
34
  }) => Promise<{
35
35
  data: {
36
36
  scheduledTriggerId: string;
37
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
37
+ status: "pending" | "running" | "completed" | "failed" | "cancelled";
38
38
  scheduledFor: string;
39
39
  startedAt: string | null;
40
40
  completedAt: string | null;
@@ -174,7 +174,7 @@ declare const listUpcomingInvocationsForAgentPaginated: (db: AgentsRunDatabaseCl
174
174
  }) => Promise<{
175
175
  data: {
176
176
  scheduledTriggerId: string;
177
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
177
+ status: "pending" | "running" | "completed" | "failed" | "cancelled";
178
178
  scheduledFor: string;
179
179
  startedAt: string | null;
180
180
  completedAt: string | null;
@@ -208,7 +208,7 @@ declare const listProjectScheduledTriggerInvocationsPaginated: (db: AgentsRunDat
208
208
  }) => Promise<{
209
209
  data: {
210
210
  scheduledTriggerId: string;
211
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
211
+ status: "pending" | "running" | "completed" | "failed" | "cancelled";
212
212
  scheduledFor: string;
213
213
  startedAt: string | null;
214
214
  completedAt: string | null;
@@ -7,18 +7,18 @@ import { TaskInsert, TaskSelect } from "../../types/entities.js";
7
7
  //#region src/data-access/runtime/tasks.d.ts
8
8
  declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert) => Promise<{
9
9
  id: string;
10
- tenantId: string;
11
- projectId: string;
12
- agentId: string;
13
10
  createdAt: string;
14
11
  updatedAt: string;
15
- metadata: TaskMetadataConfig | null;
16
12
  ref: {
17
13
  type: "tag" | "commit" | "branch";
18
14
  name: string;
19
15
  hash: string;
20
16
  } | null;
17
+ metadata: TaskMetadataConfig | null;
21
18
  status: string;
19
+ tenantId: string;
20
+ projectId: string;
21
+ agentId: string;
22
22
  subAgentId: string;
23
23
  contextId: string;
24
24
  }>;