@inkeep/agents-core 0.80.3 → 0.80.4
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 +163 -163
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/data-access/runtime/apiKeys.d.ts +4 -4
- package/dist/data-access/runtime/apps.d.ts +3 -3
- package/dist/data-access/runtime/messages.d.ts +3 -3
- package/dist/db/manage/manage-schema.d.ts +502 -502
- package/dist/db/runtime/runtime-schema.d.ts +458 -458
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +1666 -1666
- package/package.json +1 -1
|
@@ -15,11 +15,11 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
15
15
|
tenantId: string;
|
|
16
16
|
projectId: string;
|
|
17
17
|
agentId: string;
|
|
18
|
+
expiresAt: string | null;
|
|
18
19
|
publicId: string;
|
|
19
20
|
keyHash: string;
|
|
20
21
|
keyPrefix: string;
|
|
21
22
|
lastUsedAt: string | null;
|
|
22
|
-
expiresAt: string | null;
|
|
23
23
|
} | undefined>;
|
|
24
24
|
declare const getApiKeyByPublicId: (db: AgentsRunDatabaseClient) => (publicId: string) => Promise<{
|
|
25
25
|
id: string;
|
|
@@ -29,11 +29,11 @@ declare const getApiKeyByPublicId: (db: AgentsRunDatabaseClient) => (publicId: s
|
|
|
29
29
|
tenantId: string;
|
|
30
30
|
projectId: string;
|
|
31
31
|
agentId: string;
|
|
32
|
+
expiresAt: string | null;
|
|
32
33
|
publicId: string;
|
|
33
34
|
keyHash: string;
|
|
34
35
|
keyPrefix: string;
|
|
35
36
|
lastUsedAt: string | null;
|
|
36
|
-
expiresAt: string | null;
|
|
37
37
|
} | undefined>;
|
|
38
38
|
declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
|
|
39
39
|
scopes: ProjectScopeConfig;
|
|
@@ -46,11 +46,11 @@ declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
46
46
|
tenantId: string;
|
|
47
47
|
projectId: string;
|
|
48
48
|
agentId: string;
|
|
49
|
+
expiresAt: string | null;
|
|
49
50
|
publicId: string;
|
|
50
51
|
keyHash: string;
|
|
51
52
|
keyPrefix: string;
|
|
52
53
|
lastUsedAt: string | null;
|
|
53
|
-
expiresAt: string | null;
|
|
54
54
|
}[]>;
|
|
55
55
|
declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
|
|
56
56
|
scopes: ProjectScopeConfig;
|
|
@@ -73,11 +73,11 @@ declare const createApiKey: (db: AgentsRunDatabaseClient) => (params: ApiKeyInse
|
|
|
73
73
|
tenantId: string;
|
|
74
74
|
projectId: string;
|
|
75
75
|
agentId: string;
|
|
76
|
+
expiresAt: string | null;
|
|
76
77
|
publicId: string;
|
|
77
78
|
keyHash: string;
|
|
78
79
|
keyPrefix: string;
|
|
79
80
|
lastUsedAt: string | null;
|
|
80
|
-
expiresAt: string | null;
|
|
81
81
|
}>;
|
|
82
82
|
declare const updateApiKey: (db: AgentsRunDatabaseClient) => (params: {
|
|
83
83
|
scopes: ProjectScopeConfig;
|
|
@@ -22,7 +22,7 @@ declare const getAppById: (db: AgentsRunDatabaseClient) => (id: string) => Promi
|
|
|
22
22
|
publicKeys: {
|
|
23
23
|
kid: string;
|
|
24
24
|
publicKey: string;
|
|
25
|
-
algorithm: "
|
|
25
|
+
algorithm: "EdDSA" | "ES256" | "ES512" | "RS256" | "RS384" | "RS512" | "ES384";
|
|
26
26
|
addedAt: string;
|
|
27
27
|
}[];
|
|
28
28
|
allowAnonymous: boolean;
|
|
@@ -91,7 +91,7 @@ declare const createApp: (db: AgentsRunDatabaseClient) => (params: AppInsert) =>
|
|
|
91
91
|
publicKeys: {
|
|
92
92
|
kid: string;
|
|
93
93
|
publicKey: string;
|
|
94
|
-
algorithm: "
|
|
94
|
+
algorithm: "EdDSA" | "ES256" | "ES512" | "RS256" | "RS384" | "RS512" | "ES384";
|
|
95
95
|
addedAt: string;
|
|
96
96
|
}[];
|
|
97
97
|
allowAnonymous: boolean;
|
|
@@ -174,7 +174,7 @@ declare const updateApp: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
174
174
|
publicKeys: {
|
|
175
175
|
kid: string;
|
|
176
176
|
publicKey: string;
|
|
177
|
-
algorithm: "
|
|
177
|
+
algorithm: "EdDSA" | "ES256" | "ES512" | "RS256" | "RS384" | "RS512" | "ES384";
|
|
178
178
|
addedAt: string;
|
|
179
179
|
}[];
|
|
180
180
|
allowAnonymous: boolean;
|
|
@@ -18,6 +18,7 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
18
18
|
projectId: string;
|
|
19
19
|
metadata: MessageMetadata | null;
|
|
20
20
|
content: MessageContent;
|
|
21
|
+
role: string;
|
|
21
22
|
fromSubAgentId: string | null;
|
|
22
23
|
toSubAgentId: string | null;
|
|
23
24
|
fromExternalAgentId: string | null;
|
|
@@ -25,7 +26,6 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
25
26
|
taskId: string | null;
|
|
26
27
|
a2aTaskId: string | null;
|
|
27
28
|
conversationId: string;
|
|
28
|
-
role: string;
|
|
29
29
|
userProperties: Record<string, unknown> | null;
|
|
30
30
|
fromTeamAgentId: string | null;
|
|
31
31
|
toTeamAgentId: string | null;
|
|
@@ -191,6 +191,7 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
191
191
|
projectId: string;
|
|
192
192
|
metadata: MessageMetadata | null;
|
|
193
193
|
content: MessageContent;
|
|
194
|
+
role: string;
|
|
194
195
|
fromSubAgentId: string | null;
|
|
195
196
|
toSubAgentId: string | null;
|
|
196
197
|
fromExternalAgentId: string | null;
|
|
@@ -198,7 +199,6 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
198
199
|
taskId: string | null;
|
|
199
200
|
a2aTaskId: string | null;
|
|
200
201
|
conversationId: string;
|
|
201
|
-
role: string;
|
|
202
202
|
userProperties: Record<string, unknown> | null;
|
|
203
203
|
fromTeamAgentId: string | null;
|
|
204
204
|
toTeamAgentId: string | null;
|
|
@@ -248,6 +248,7 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
248
248
|
projectId: string;
|
|
249
249
|
metadata: MessageMetadata | null;
|
|
250
250
|
content: MessageContent;
|
|
251
|
+
role: string;
|
|
251
252
|
fromSubAgentId: string | null;
|
|
252
253
|
toSubAgentId: string | null;
|
|
253
254
|
fromExternalAgentId: string | null;
|
|
@@ -255,7 +256,6 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
255
256
|
taskId: string | null;
|
|
256
257
|
a2aTaskId: string | null;
|
|
257
258
|
conversationId: string;
|
|
258
|
-
role: string;
|
|
259
259
|
userProperties: Record<string, unknown> | null;
|
|
260
260
|
fromTeamAgentId: string | null;
|
|
261
261
|
toTeamAgentId: string | null;
|