@inkeep/agents-core 0.0.0-dev-20260219040736 → 0.0.0-dev-20260219045007
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.
- package/dist/auth/auth-schema.d.ts +83 -83
- package/dist/auth/auth-validation-schemas.d.ts +131 -131
- package/dist/client-exports.d.ts +3 -3
- package/dist/data-access/manage/agents.d.ts +21 -21
- package/dist/data-access/manage/artifactComponents.d.ts +8 -8
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +12 -12
- package/dist/data-access/manage/skills.d.ts +13 -13
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/conversations.d.ts +20 -20
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/middleware/authz-meta.d.ts +15 -0
- package/dist/middleware/authz-meta.js +11 -0
- package/dist/middleware/create-protected-route.d.ts +30 -0
- package/dist/middleware/create-protected-route.js +20 -0
- package/dist/middleware/index.d.ts +5 -0
- package/dist/middleware/index.js +6 -0
- package/dist/middleware/inherited-auth.d.ts +43 -0
- package/dist/middleware/inherited-auth.js +50 -0
- package/dist/middleware/no-auth.d.ts +6 -0
- package/dist/middleware/no-auth.js +11 -0
- package/dist/validation/schemas.d.ts +1498 -1498
- package/package.json +5 -1
|
@@ -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
14
|
headers: Record<string, string> | null;
|
|
15
|
+
tenantId: string;
|
|
16
|
+
projectId: string;
|
|
18
17
|
subAgentId: string;
|
|
18
|
+
agentId: string;
|
|
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
49
|
headers: Record<string, string> | null;
|
|
50
|
+
tenantId: string;
|
|
51
|
+
projectId: string;
|
|
53
52
|
subAgentId: string;
|
|
53
|
+
agentId: string;
|
|
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
62
|
headers: Record<string, string> | null;
|
|
63
|
+
tenantId: string;
|
|
64
|
+
projectId: string;
|
|
66
65
|
subAgentId: string;
|
|
66
|
+
agentId: string;
|
|
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
215
|
headers: Record<string, string> | null;
|
|
216
|
+
tenantId: string;
|
|
217
|
+
projectId: string;
|
|
219
218
|
subAgentId: string;
|
|
219
|
+
agentId: string;
|
|
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
232
|
headers: Record<string, string> | null;
|
|
233
|
+
tenantId: string;
|
|
234
|
+
projectId: string;
|
|
236
235
|
subAgentId: string;
|
|
236
|
+
agentId: string;
|
|
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
253
|
headers: Record<string, string> | null;
|
|
254
|
+
tenantId: string;
|
|
255
|
+
projectId: string;
|
|
257
256
|
subAgentId: string;
|
|
257
|
+
agentId: string;
|
|
258
258
|
targetAgentId: string;
|
|
259
259
|
}>;
|
|
260
260
|
declare const updateSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -10,12 +10,11 @@ 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;
|
|
16
|
-
agentId: string;
|
|
17
|
-
prompt: string | null;
|
|
18
|
-
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
19
18
|
models: {
|
|
20
19
|
base?: {
|
|
21
20
|
model?: string | undefined;
|
|
@@ -33,20 +32,20 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
33
32
|
stopWhen: {
|
|
34
33
|
stepCountIs?: number | undefined;
|
|
35
34
|
} | null;
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
prompt: string | null;
|
|
36
|
+
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
37
|
+
agentId: 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;
|
|
47
|
-
agentId: string;
|
|
48
|
-
prompt: string | null;
|
|
49
|
-
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
50
49
|
models: {
|
|
51
50
|
base?: {
|
|
52
51
|
model?: string | undefined;
|
|
@@ -64,8 +63,9 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
64
63
|
stopWhen: {
|
|
65
64
|
stepCountIs?: number | undefined;
|
|
66
65
|
} | null;
|
|
67
|
-
|
|
68
|
-
|
|
66
|
+
prompt: string | null;
|
|
67
|
+
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
68
|
+
agentId: string;
|
|
69
69
|
}[]>;
|
|
70
70
|
declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
71
71
|
scopes: AgentScopeConfig;
|
|
@@ -110,12 +110,11 @@ 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;
|
|
116
|
-
agentId: string;
|
|
117
|
-
prompt: string | null;
|
|
118
|
-
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
119
118
|
models: {
|
|
120
119
|
base?: {
|
|
121
120
|
model?: string | undefined;
|
|
@@ -133,8 +132,9 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
|
|
|
133
132
|
stopWhen: {
|
|
134
133
|
stepCountIs?: number | undefined;
|
|
135
134
|
} | null;
|
|
136
|
-
|
|
137
|
-
|
|
135
|
+
prompt: string | null;
|
|
136
|
+
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
137
|
+
agentId: string;
|
|
138
138
|
}>;
|
|
139
139
|
declare const updateSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
140
140
|
scopes: AgentScopeConfig;
|
|
@@ -20,12 +20,12 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
20
20
|
}) => Promise<{
|
|
21
21
|
id: string;
|
|
22
22
|
name: string;
|
|
23
|
-
description: string | null;
|
|
24
|
-
tenantId: string;
|
|
25
|
-
projectId: string;
|
|
26
23
|
createdAt: string;
|
|
27
24
|
updatedAt: string;
|
|
25
|
+
description: string | null;
|
|
28
26
|
headers: Record<string, string> | null;
|
|
27
|
+
tenantId: string;
|
|
28
|
+
projectId: string;
|
|
29
29
|
config: {
|
|
30
30
|
type: "mcp";
|
|
31
31
|
mcp: ToolMcpConfig;
|
|
@@ -78,12 +78,12 @@ 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
|
-
description: string | null;
|
|
82
|
-
tenantId: string;
|
|
83
|
-
projectId: string;
|
|
84
81
|
createdAt: string;
|
|
85
82
|
updatedAt: string;
|
|
83
|
+
description: string | null;
|
|
86
84
|
headers: Record<string, string> | null;
|
|
85
|
+
tenantId: string;
|
|
86
|
+
projectId: string;
|
|
87
87
|
config: {
|
|
88
88
|
type: "mcp";
|
|
89
89
|
mcp: ToolMcpConfig;
|
|
@@ -134,17 +134,17 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
134
134
|
}> | null;
|
|
135
135
|
}) => Promise<{
|
|
136
136
|
id: string;
|
|
137
|
+
createdAt: string;
|
|
138
|
+
updatedAt: string;
|
|
139
|
+
headers: Record<string, string> | null;
|
|
137
140
|
tenantId: string;
|
|
138
141
|
projectId: string;
|
|
142
|
+
subAgentId: string;
|
|
139
143
|
agentId: string;
|
|
140
|
-
createdAt: string;
|
|
141
|
-
updatedAt: string;
|
|
142
144
|
toolId: string;
|
|
143
|
-
headers: Record<string, string> | null;
|
|
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
|
+
createdAt: string;
|
|
157
|
+
updatedAt: string;
|
|
158
|
+
headers: Record<string, string> | null;
|
|
156
159
|
tenantId: string;
|
|
157
160
|
projectId: string;
|
|
161
|
+
subAgentId: string;
|
|
158
162
|
agentId: string;
|
|
159
|
-
createdAt: string;
|
|
160
|
-
updatedAt: string;
|
|
161
163
|
toolId: string;
|
|
162
|
-
headers: Record<string, string> | null;
|
|
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
|
+
createdAt: string;
|
|
185
|
+
updatedAt: string;
|
|
186
|
+
headers: Record<string, string> | null;
|
|
184
187
|
tenantId: string;
|
|
185
188
|
projectId: string;
|
|
189
|
+
subAgentId: string;
|
|
186
190
|
agentId: string;
|
|
187
|
-
createdAt: string;
|
|
188
|
-
updatedAt: string;
|
|
189
191
|
toolId: string;
|
|
190
|
-
headers: Record<string, string> | null;
|
|
191
192
|
toolPolicies: Record<string, {
|
|
192
193
|
needsApproval?: boolean;
|
|
193
194
|
}> | null;
|
|
194
|
-
subAgentId: string;
|
|
195
195
|
selectedTools: string[] | null;
|
|
196
196
|
}>;
|
|
197
197
|
/**
|
|
@@ -202,12 +202,12 @@ declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
202
202
|
}) => Promise<{
|
|
203
203
|
id: string;
|
|
204
204
|
name: string;
|
|
205
|
-
description: string | null;
|
|
206
|
-
tenantId: string;
|
|
207
|
-
projectId: string;
|
|
208
205
|
createdAt: string;
|
|
209
206
|
updatedAt: string;
|
|
207
|
+
description: string | null;
|
|
210
208
|
headers: Record<string, string> | null;
|
|
209
|
+
tenantId: string;
|
|
210
|
+
projectId: string;
|
|
211
211
|
config: {
|
|
212
212
|
type: "mcp";
|
|
213
213
|
mcp: ToolMcpConfig;
|
|
@@ -9,12 +9,12 @@ 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
18
|
publicId: string;
|
|
19
19
|
keyHash: string;
|
|
20
20
|
keyPrefix: string;
|
|
@@ -23,12 +23,12 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
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
32
|
publicId: string;
|
|
33
33
|
keyHash: string;
|
|
34
34
|
keyPrefix: string;
|
|
@@ -40,12 +40,12 @@ 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
49
|
publicId: string;
|
|
50
50
|
keyHash: string;
|
|
51
51
|
keyPrefix: string;
|
|
@@ -67,12 +67,12 @@ 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
76
|
publicId: string;
|
|
77
77
|
keyHash: string;
|
|
78
78
|
keyPrefix: string;
|
|
@@ -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: "commit" | "tag" | "branch";
|
|
28
23
|
name: string;
|
|
29
24
|
hash: string;
|
|
30
25
|
} | null;
|
|
31
26
|
userId: string | null;
|
|
27
|
+
metadata: ConversationMetadata | null;
|
|
28
|
+
title: string | null;
|
|
29
|
+
tenantId: string;
|
|
30
|
+
projectId: string;
|
|
31
|
+
agentId: 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: "commit" | "tag" | "branch";
|
|
97
92
|
name: string;
|
|
98
93
|
hash: string;
|
|
99
94
|
} | null;
|
|
100
95
|
userId: string | null;
|
|
96
|
+
metadata: ConversationMetadata | null;
|
|
97
|
+
title: string | null;
|
|
98
|
+
tenantId: string;
|
|
99
|
+
projectId: string;
|
|
100
|
+
agentId: 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: "commit" | "tag" | "branch";
|
|
133
128
|
name: string;
|
|
134
129
|
hash: string;
|
|
135
130
|
} | null;
|
|
136
131
|
userId: string | null;
|
|
132
|
+
metadata: ConversationMetadata | null;
|
|
133
|
+
title: string | null;
|
|
134
|
+
tenantId: string;
|
|
135
|
+
projectId: string;
|
|
136
|
+
agentId: 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: "commit" | "tag" | "branch";
|
|
165
160
|
name: string;
|
|
166
161
|
hash: string;
|
|
167
162
|
} | null;
|
|
168
163
|
userId: string | null;
|
|
164
|
+
metadata: ConversationMetadata | null;
|
|
165
|
+
title: string | null;
|
|
166
|
+
tenantId: string;
|
|
167
|
+
projectId: string;
|
|
168
|
+
agentId: string | null;
|
|
169
169
|
activeSubAgentId: string;
|
|
170
170
|
lastContextResolution: string | null;
|
|
171
171
|
} | undefined>;
|
|
@@ -10,13 +10,13 @@ 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
|
+
content: MessageContent;
|
|
18
|
+
tenantId: string;
|
|
19
|
+
projectId: string;
|
|
20
20
|
fromSubAgentId: string | null;
|
|
21
21
|
toSubAgentId: string | null;
|
|
22
22
|
fromExternalAgentId: string | null;
|
|
@@ -141,13 +141,13 @@ 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
|
+
content: MessageContent;
|
|
149
|
+
tenantId: string;
|
|
150
|
+
projectId: string;
|
|
151
151
|
fromSubAgentId: string | null;
|
|
152
152
|
toSubAgentId: string | null;
|
|
153
153
|
fromExternalAgentId: string | null;
|
|
@@ -194,13 +194,13 @@ 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
|
+
content: MessageContent;
|
|
202
|
+
tenantId: string;
|
|
203
|
+
projectId: string;
|
|
204
204
|
fromSubAgentId: string | null;
|
|
205
205
|
toSubAgentId: string | null;
|
|
206
206
|
fromExternalAgentId: string | null;
|
|
@@ -7,19 +7,19 @@ 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: "commit" | "tag" | "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;
|
|
22
21
|
subAgentId: string;
|
|
22
|
+
agentId: string;
|
|
23
23
|
contextId: string;
|
|
24
24
|
}>;
|
|
25
25
|
declare const getTask: (db: AgentsRunDatabaseClient) => (params: {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { MiddlewareHandler } from "hono";
|
|
2
|
+
|
|
3
|
+
//#region src/middleware/authz-meta.d.ts
|
|
4
|
+
type AuthzMeta = {
|
|
5
|
+
resource?: string;
|
|
6
|
+
permission?: string;
|
|
7
|
+
description: string;
|
|
8
|
+
};
|
|
9
|
+
type ProjectScopedMiddleware = MiddlewareHandler & {
|
|
10
|
+
readonly __projectScoped: true;
|
|
11
|
+
};
|
|
12
|
+
declare function getAuthzMeta(mw: unknown): AuthzMeta | undefined;
|
|
13
|
+
declare function registerAuthzMeta(mw: object, meta: AuthzMeta): void;
|
|
14
|
+
//#endregion
|
|
15
|
+
export { AuthzMeta, ProjectScopedMiddleware, getAuthzMeta, registerAuthzMeta };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
//#region src/middleware/authz-meta.ts
|
|
2
|
+
const authzMeta = /* @__PURE__ */ new WeakMap();
|
|
3
|
+
function getAuthzMeta(mw) {
|
|
4
|
+
return typeof mw === "function" ? authzMeta.get(mw) : void 0;
|
|
5
|
+
}
|
|
6
|
+
function registerAuthzMeta(mw, meta) {
|
|
7
|
+
authzMeta.set(mw, meta);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
11
|
+
export { getAuthzMeta, registerAuthzMeta };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ProjectScopedMiddleware } from "./authz-meta.js";
|
|
2
|
+
import { createRoute } from "@hono/zod-openapi";
|
|
3
|
+
import { ZodType } from "zod";
|
|
4
|
+
import { MiddlewareHandler } from "hono";
|
|
5
|
+
|
|
6
|
+
//#region src/middleware/create-protected-route.d.ts
|
|
7
|
+
type CreateRouteParams = Parameters<typeof createRoute>[0];
|
|
8
|
+
declare function createProtectedRoute<T extends CreateRouteParams>(config: T & {
|
|
9
|
+
permission: ProjectScopedMiddleware;
|
|
10
|
+
request: {
|
|
11
|
+
params: ZodType<{
|
|
12
|
+
projectId: string;
|
|
13
|
+
}>;
|
|
14
|
+
};
|
|
15
|
+
}): T;
|
|
16
|
+
declare function createProtectedRoute<T extends CreateRouteParams>(config: T & {
|
|
17
|
+
permission: ProjectScopedMiddleware;
|
|
18
|
+
request: {
|
|
19
|
+
params: ZodType<{
|
|
20
|
+
id: string;
|
|
21
|
+
}>;
|
|
22
|
+
};
|
|
23
|
+
}): T;
|
|
24
|
+
declare function createProtectedRoute<T extends CreateRouteParams>(config: T & {
|
|
25
|
+
permission: MiddlewareHandler & {
|
|
26
|
+
__projectScoped?: never;
|
|
27
|
+
};
|
|
28
|
+
}): T;
|
|
29
|
+
//#endregion
|
|
30
|
+
export { createProtectedRoute };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { getAuthzMeta } from "./authz-meta.js";
|
|
2
|
+
|
|
3
|
+
//#region src/middleware/create-protected-route.ts
|
|
4
|
+
function toArray(value) {
|
|
5
|
+
if (!value) return [];
|
|
6
|
+
return Array.isArray(value) ? value : [value];
|
|
7
|
+
}
|
|
8
|
+
function createProtectedRoute(config) {
|
|
9
|
+
const { permission, ...routeConfig } = config;
|
|
10
|
+
const meta = getAuthzMeta(permission);
|
|
11
|
+
return {
|
|
12
|
+
...routeConfig,
|
|
13
|
+
middleware: [permission, ...toArray(routeConfig.middleware)],
|
|
14
|
+
...meta && { "x-authz": meta },
|
|
15
|
+
...!meta && !("security" in config) && { security: [] }
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
//#endregion
|
|
20
|
+
export { createProtectedRoute };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { AuthzMeta, ProjectScopedMiddleware, getAuthzMeta, registerAuthzMeta } from "./authz-meta.js";
|
|
2
|
+
import { createProtectedRoute } from "./create-protected-route.js";
|
|
3
|
+
import { inheritedAuth, inheritedManageTenantAuth, inheritedRunApiKeyAuth, inheritedWorkAppsAuth } from "./inherited-auth.js";
|
|
4
|
+
import { noAuth } from "./no-auth.js";
|
|
5
|
+
export { type AuthzMeta, type ProjectScopedMiddleware, createProtectedRoute, getAuthzMeta, inheritedAuth, inheritedManageTenantAuth, inheritedRunApiKeyAuth, inheritedWorkAppsAuth, noAuth, registerAuthzMeta };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { getAuthzMeta, registerAuthzMeta } from "./authz-meta.js";
|
|
2
|
+
import { createProtectedRoute } from "./create-protected-route.js";
|
|
3
|
+
import { inheritedAuth, inheritedManageTenantAuth, inheritedRunApiKeyAuth, inheritedWorkAppsAuth } from "./inherited-auth.js";
|
|
4
|
+
import { noAuth } from "./no-auth.js";
|
|
5
|
+
|
|
6
|
+
export { createProtectedRoute, getAuthzMeta, inheritedAuth, inheritedManageTenantAuth, inheritedRunApiKeyAuth, inheritedWorkAppsAuth, noAuth, registerAuthzMeta };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as hono0 from "hono";
|
|
2
|
+
|
|
3
|
+
//#region src/middleware/inherited-auth.d.ts
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Documentation-only permission marker for routes whose authentication
|
|
7
|
+
* is already enforced by a parent `app.use()` in createApp.ts.
|
|
8
|
+
*
|
|
9
|
+
* This does NOT perform any auth check itself — it only registers
|
|
10
|
+
* x-authz metadata so the OpenAPI spec accurately reflects the
|
|
11
|
+
* auth requirement.
|
|
12
|
+
*
|
|
13
|
+
* Use this when the route lives under a path that already has
|
|
14
|
+
* middleware applied (e.g. `/manage/tenants/*` has `manageApiKeyOrSessionAuth`).
|
|
15
|
+
*/
|
|
16
|
+
declare const inheritedAuth: (meta: {
|
|
17
|
+
resource?: string;
|
|
18
|
+
permission?: string;
|
|
19
|
+
description: string;
|
|
20
|
+
}) => hono0.MiddlewareHandler<any, string, {}, Response>;
|
|
21
|
+
/**
|
|
22
|
+
* Marker for routes under `/manage/tenants/*` whose auth is handled
|
|
23
|
+
* by `manageApiKeyOrSessionAuth()` in createApp.ts.
|
|
24
|
+
*
|
|
25
|
+
* No auth check runs at the route level — this is purely for OpenAPI documentation.
|
|
26
|
+
*/
|
|
27
|
+
declare const inheritedManageTenantAuth: () => hono0.MiddlewareHandler<any, string, {}, Response>;
|
|
28
|
+
/**
|
|
29
|
+
* Marker for routes under `/run/*` whose auth is handled
|
|
30
|
+
* by `runApiKeyAuth()` in createApp.ts.
|
|
31
|
+
*
|
|
32
|
+
* No auth check runs at the route level — this is purely for OpenAPI documentation.
|
|
33
|
+
*/
|
|
34
|
+
declare const inheritedRunApiKeyAuth: () => hono0.MiddlewareHandler<any, string, {}, Response>;
|
|
35
|
+
/**
|
|
36
|
+
* Marker for routes under `/work-apps/*` whose auth is handled
|
|
37
|
+
* by `workAppsAuth()` in createApp.ts.
|
|
38
|
+
*
|
|
39
|
+
* No auth check runs at the route level — this is purely for OpenAPI documentation.
|
|
40
|
+
*/
|
|
41
|
+
declare const inheritedWorkAppsAuth: () => hono0.MiddlewareHandler<any, string, {}, Response>;
|
|
42
|
+
//#endregion
|
|
43
|
+
export { inheritedAuth, inheritedManageTenantAuth, inheritedRunApiKeyAuth, inheritedWorkAppsAuth };
|