@inkeep/agents-core 0.0.0-dev-20260212154015 → 0.0.0-dev-20260212170401
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.d.ts +18 -18
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/client-exports.d.ts +10 -5
- package/dist/client-exports.js +2 -2
- package/dist/data-access/index.d.ts +4 -1
- package/dist/data-access/index.js +4 -1
- package/dist/data-access/manage/agentFull.js +116 -0
- package/dist/data-access/manage/agents.d.ts +42 -42
- package/dist/data-access/manage/agents.js +28 -0
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +14 -14
- package/dist/data-access/manage/scheduledTriggers.d.ts +80 -0
- package/dist/data-access/manage/scheduledTriggers.js +76 -0
- package/dist/data-access/manage/scheduledWorkflows.d.ts +29 -0
- package/dist/data-access/manage/scheduledWorkflows.js +32 -0
- package/dist/data-access/manage/skills.d.ts +13 -13
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +26 -26
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +18 -18
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/runtime/apiKeys.d.ts +16 -16
- package/dist/data-access/runtime/conversations.d.ts +31 -31
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +233 -0
- package/dist/data-access/runtime/scheduledTriggerInvocations.js +226 -0
- package/dist/data-access/runtime/tasks.d.ts +8 -8
- package/dist/db/manage/manage-schema.d.ts +534 -2
- package/dist/db/manage/manage-schema.js +128 -2
- package/dist/db/runtime/runtime-schema.d.ts +549 -281
- package/dist/db/runtime/runtime-schema.js +32 -2
- package/dist/index.d.ts +7 -4
- package/dist/index.js +7 -4
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas.d.ts +4232 -1605
- package/dist/validation/schemas.js +96 -3
- package/drizzle/manage/0009_chilly_old_lace.sql +39 -0
- package/drizzle/manage/meta/0009_snapshot.json +3670 -0
- package/drizzle/manage/meta/_journal.json +7 -0
- package/drizzle/runtime/0013_huge_white_queen.sql +19 -0
- package/drizzle/runtime/meta/0013_snapshot.json +3746 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -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
|
+
projectId: string;
|
|
28
|
+
tenantId: 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
|
+
projectId: string;
|
|
86
|
+
tenantId: string;
|
|
87
87
|
config: {
|
|
88
88
|
type: "mcp";
|
|
89
89
|
mcp: ToolMcpConfig;
|
|
@@ -134,13 +134,13 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
134
134
|
}> | null;
|
|
135
135
|
}) => Promise<{
|
|
136
136
|
id: string;
|
|
137
|
-
tenantId: string;
|
|
138
|
-
projectId: string;
|
|
139
|
-
agentId: string;
|
|
140
137
|
createdAt: string;
|
|
141
138
|
updatedAt: string;
|
|
142
|
-
toolId: string;
|
|
143
139
|
headers: Record<string, string> | null;
|
|
140
|
+
agentId: string;
|
|
141
|
+
projectId: string;
|
|
142
|
+
tenantId: string;
|
|
143
|
+
toolId: string;
|
|
144
144
|
toolPolicies: Record<string, {
|
|
145
145
|
needsApproval?: boolean;
|
|
146
146
|
}> | null;
|
|
@@ -153,13 +153,13 @@ declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params:
|
|
|
153
153
|
toolId: string;
|
|
154
154
|
}) => Promise<{
|
|
155
155
|
id: string;
|
|
156
|
-
tenantId: string;
|
|
157
|
-
projectId: string;
|
|
158
|
-
agentId: string;
|
|
159
156
|
createdAt: string;
|
|
160
157
|
updatedAt: string;
|
|
161
|
-
toolId: string;
|
|
162
158
|
headers: Record<string, string> | null;
|
|
159
|
+
agentId: string;
|
|
160
|
+
projectId: string;
|
|
161
|
+
tenantId: string;
|
|
162
|
+
toolId: string;
|
|
163
163
|
toolPolicies: Record<string, {
|
|
164
164
|
needsApproval?: boolean;
|
|
165
165
|
}> | null;
|
|
@@ -181,13 +181,13 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
|
|
|
181
181
|
relationId?: string;
|
|
182
182
|
}) => Promise<{
|
|
183
183
|
id: string;
|
|
184
|
-
tenantId: string;
|
|
185
|
-
projectId: string;
|
|
186
|
-
agentId: string;
|
|
187
184
|
createdAt: string;
|
|
188
185
|
updatedAt: string;
|
|
189
|
-
toolId: string;
|
|
190
186
|
headers: Record<string, string> | null;
|
|
187
|
+
agentId: string;
|
|
188
|
+
projectId: string;
|
|
189
|
+
tenantId: string;
|
|
190
|
+
toolId: string;
|
|
191
191
|
toolPolicies: Record<string, {
|
|
192
192
|
needsApproval?: boolean;
|
|
193
193
|
}> | null;
|
|
@@ -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
|
+
projectId: string;
|
|
210
|
+
tenantId: string;
|
|
211
211
|
config: {
|
|
212
212
|
type: "mcp";
|
|
213
213
|
mcp: ToolMcpConfig;
|
|
@@ -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
|
+
agentId: string;
|
|
16
|
+
projectId: string;
|
|
17
|
+
tenantId: 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
|
+
agentId: string;
|
|
30
|
+
projectId: string;
|
|
31
|
+
tenantId: 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
|
+
agentId: string;
|
|
47
|
+
projectId: string;
|
|
48
|
+
tenantId: 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
|
+
agentId: string;
|
|
74
|
+
projectId: string;
|
|
75
|
+
tenantId: 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
|
-
userId: string | null;
|
|
27
21
|
ref: {
|
|
28
|
-
type: "
|
|
22
|
+
type: "tag" | "commit" | "branch";
|
|
29
23
|
name: string;
|
|
30
24
|
hash: string;
|
|
31
25
|
} | null;
|
|
26
|
+
userId: string | null;
|
|
27
|
+
metadata: ConversationMetadata | null;
|
|
28
|
+
title: string | null;
|
|
29
|
+
agentId: string | null;
|
|
30
|
+
projectId: string;
|
|
31
|
+
tenantId: string;
|
|
32
32
|
activeSubAgentId: string;
|
|
33
33
|
lastContextResolution: string | null;
|
|
34
34
|
}>;
|
|
@@ -43,7 +43,7 @@ declare const updateConversation: (db: AgentsRunDatabaseClient) => (params: {
|
|
|
43
43
|
agentId: string | null;
|
|
44
44
|
activeSubAgentId: string;
|
|
45
45
|
ref: {
|
|
46
|
-
type: "
|
|
46
|
+
type: "tag" | "commit" | "branch";
|
|
47
47
|
name: string;
|
|
48
48
|
hash: string;
|
|
49
49
|
} | null;
|
|
@@ -69,7 +69,7 @@ declare const updateConversationActiveSubAgent: (db: AgentsRunDatabaseClient) =>
|
|
|
69
69
|
agentId: string | null;
|
|
70
70
|
activeSubAgentId: string;
|
|
71
71
|
ref: {
|
|
72
|
-
type: "
|
|
72
|
+
type: "tag" | "commit" | "branch";
|
|
73
73
|
name: string;
|
|
74
74
|
hash: string;
|
|
75
75
|
} | null;
|
|
@@ -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
|
-
userId: string | null;
|
|
96
90
|
ref: {
|
|
97
|
-
type: "
|
|
91
|
+
type: "tag" | "commit" | "branch";
|
|
98
92
|
name: string;
|
|
99
93
|
hash: string;
|
|
100
94
|
} | null;
|
|
95
|
+
userId: string | null;
|
|
96
|
+
metadata: ConversationMetadata | null;
|
|
97
|
+
title: string | null;
|
|
98
|
+
agentId: string | null;
|
|
99
|
+
projectId: string;
|
|
100
|
+
tenantId: string;
|
|
101
101
|
activeSubAgentId: string;
|
|
102
102
|
lastContextResolution: string | null;
|
|
103
103
|
} | undefined>;
|
|
@@ -107,7 +107,7 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
|
|
|
107
107
|
tenantId: string;
|
|
108
108
|
id: string;
|
|
109
109
|
ref: {
|
|
110
|
-
type: "
|
|
110
|
+
type: "tag" | "commit" | "branch";
|
|
111
111
|
name: string;
|
|
112
112
|
hash: string;
|
|
113
113
|
};
|
|
@@ -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
|
-
userId: string | null;
|
|
132
126
|
ref: {
|
|
133
|
-
type: "
|
|
127
|
+
type: "tag" | "commit" | "branch";
|
|
134
128
|
name: string;
|
|
135
129
|
hash: string;
|
|
136
130
|
} | null;
|
|
131
|
+
userId: string | null;
|
|
132
|
+
metadata: ConversationMetadata | null;
|
|
133
|
+
title: string | null;
|
|
134
|
+
agentId: string | null;
|
|
135
|
+
projectId: string;
|
|
136
|
+
tenantId: string;
|
|
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
|
-
userId: string | null;
|
|
164
158
|
ref: {
|
|
165
|
-
type: "
|
|
159
|
+
type: "tag" | "commit" | "branch";
|
|
166
160
|
name: string;
|
|
167
161
|
hash: string;
|
|
168
162
|
} | null;
|
|
163
|
+
userId: string | null;
|
|
164
|
+
metadata: ConversationMetadata | null;
|
|
165
|
+
title: string | null;
|
|
166
|
+
agentId: string | null;
|
|
167
|
+
projectId: string;
|
|
168
|
+
tenantId: string;
|
|
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
|
+
projectId: string;
|
|
18
|
+
tenantId: 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
|
+
projectId: string;
|
|
149
|
+
tenantId: 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
|
+
projectId: string;
|
|
202
|
+
tenantId: 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: {
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
import { AgentScopeConfig, PaginationConfig } from "../../types/utility.js";
|
|
2
|
+
import { AgentsRunDatabaseClient } from "../../db/runtime/runtime-client.js";
|
|
3
|
+
import { ScheduledTriggerInvocation, ScheduledTriggerInvocationInsert, ScheduledTriggerInvocationStatus, ScheduledTriggerInvocationUpdate } from "../../validation/schemas.js";
|
|
4
|
+
|
|
5
|
+
//#region src/data-access/runtime/scheduledTriggerInvocations.d.ts
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Get a scheduled trigger invocation by ID (agent-scoped)
|
|
9
|
+
*/
|
|
10
|
+
declare const getScheduledTriggerInvocationById: (db: AgentsRunDatabaseClient) => (params: {
|
|
11
|
+
scopes: AgentScopeConfig;
|
|
12
|
+
scheduledTriggerId: string;
|
|
13
|
+
invocationId: string;
|
|
14
|
+
}) => Promise<ScheduledTriggerInvocation | undefined>;
|
|
15
|
+
/**
|
|
16
|
+
* Get a scheduled trigger invocation by idempotency key
|
|
17
|
+
* Used to check if an invocation already exists for a given schedule
|
|
18
|
+
*/
|
|
19
|
+
declare const getScheduledTriggerInvocationByIdempotencyKey: (db: AgentsRunDatabaseClient) => (params: {
|
|
20
|
+
idempotencyKey: string;
|
|
21
|
+
}) => Promise<ScheduledTriggerInvocation | undefined>;
|
|
22
|
+
/**
|
|
23
|
+
* List scheduled trigger invocations with optional filtering (agent-scoped)
|
|
24
|
+
*/
|
|
25
|
+
declare const listScheduledTriggerInvocationsPaginated: (db: AgentsRunDatabaseClient) => (params: {
|
|
26
|
+
scopes: AgentScopeConfig;
|
|
27
|
+
scheduledTriggerId: string;
|
|
28
|
+
pagination?: PaginationConfig;
|
|
29
|
+
filters?: {
|
|
30
|
+
status?: ScheduledTriggerInvocationStatus;
|
|
31
|
+
from?: string;
|
|
32
|
+
to?: string;
|
|
33
|
+
};
|
|
34
|
+
}) => Promise<{
|
|
35
|
+
data: {
|
|
36
|
+
scheduledTriggerId: string;
|
|
37
|
+
status: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
38
|
+
scheduledFor: string;
|
|
39
|
+
startedAt: string | null;
|
|
40
|
+
completedAt: string | null;
|
|
41
|
+
resolvedPayload: Record<string, unknown> | null;
|
|
42
|
+
conversationIds: string[] | null;
|
|
43
|
+
attemptNumber: number;
|
|
44
|
+
idempotencyKey: string;
|
|
45
|
+
createdAt: string;
|
|
46
|
+
agentId: string;
|
|
47
|
+
projectId: string;
|
|
48
|
+
tenantId: string;
|
|
49
|
+
id: string;
|
|
50
|
+
}[];
|
|
51
|
+
pagination: {
|
|
52
|
+
page: number;
|
|
53
|
+
limit: number;
|
|
54
|
+
total: number;
|
|
55
|
+
pages: number;
|
|
56
|
+
};
|
|
57
|
+
}>;
|
|
58
|
+
/**
|
|
59
|
+
* List pending invocations for a trigger, ordered by scheduledFor (earliest first)
|
|
60
|
+
* Used by workflow to get the next invocation to execute
|
|
61
|
+
*/
|
|
62
|
+
declare const listPendingScheduledTriggerInvocations: (db: AgentsRunDatabaseClient) => (params: {
|
|
63
|
+
scopes: AgentScopeConfig;
|
|
64
|
+
scheduledTriggerId: string;
|
|
65
|
+
limit?: number;
|
|
66
|
+
}) => Promise<ScheduledTriggerInvocation[]>;
|
|
67
|
+
/**
|
|
68
|
+
* Delete all pending invocations for a trigger
|
|
69
|
+
* Used when cron expression changes or trigger is disabled
|
|
70
|
+
*/
|
|
71
|
+
declare const deletePendingInvocationsForTrigger: (db: AgentsRunDatabaseClient) => (params: {
|
|
72
|
+
scopes: AgentScopeConfig;
|
|
73
|
+
scheduledTriggerId: string;
|
|
74
|
+
}) => Promise<number>;
|
|
75
|
+
/**
|
|
76
|
+
* Create a new scheduled trigger invocation (agent-scoped)
|
|
77
|
+
*/
|
|
78
|
+
declare const createScheduledTriggerInvocation: (db: AgentsRunDatabaseClient) => (params: ScheduledTriggerInvocationInsert) => Promise<ScheduledTriggerInvocation>;
|
|
79
|
+
/**
|
|
80
|
+
* Update scheduled trigger invocation status (agent-scoped)
|
|
81
|
+
*/
|
|
82
|
+
declare const updateScheduledTriggerInvocationStatus: (db: AgentsRunDatabaseClient) => (params: {
|
|
83
|
+
scopes: AgentScopeConfig;
|
|
84
|
+
scheduledTriggerId: string;
|
|
85
|
+
invocationId: string;
|
|
86
|
+
data: ScheduledTriggerInvocationUpdate;
|
|
87
|
+
}) => Promise<ScheduledTriggerInvocation>;
|
|
88
|
+
/**
|
|
89
|
+
* Mark invocation as running
|
|
90
|
+
*/
|
|
91
|
+
declare const markScheduledTriggerInvocationRunning: (db: AgentsRunDatabaseClient) => (params: {
|
|
92
|
+
scopes: AgentScopeConfig;
|
|
93
|
+
scheduledTriggerId: string;
|
|
94
|
+
invocationId: string;
|
|
95
|
+
}) => Promise<ScheduledTriggerInvocation>;
|
|
96
|
+
/**
|
|
97
|
+
* Mark invocation as completed
|
|
98
|
+
* Note: Will not update if status is already 'cancelled' to respect user cancellation
|
|
99
|
+
*/
|
|
100
|
+
declare const markScheduledTriggerInvocationCompleted: (db: AgentsRunDatabaseClient) => (params: {
|
|
101
|
+
scopes: AgentScopeConfig;
|
|
102
|
+
scheduledTriggerId: string;
|
|
103
|
+
invocationId: string;
|
|
104
|
+
}) => Promise<ScheduledTriggerInvocation | undefined>;
|
|
105
|
+
/**
|
|
106
|
+
* Mark invocation as failed
|
|
107
|
+
* Note: Will not update if status is already 'cancelled' to respect user cancellation
|
|
108
|
+
*/
|
|
109
|
+
declare const markScheduledTriggerInvocationFailed: (db: AgentsRunDatabaseClient) => (params: {
|
|
110
|
+
scopes: AgentScopeConfig;
|
|
111
|
+
scheduledTriggerId: string;
|
|
112
|
+
invocationId: string;
|
|
113
|
+
}) => Promise<ScheduledTriggerInvocation | undefined>;
|
|
114
|
+
/**
|
|
115
|
+
* Add a conversation ID to the invocation's conversationIds array
|
|
116
|
+
* Used to track all conversations created during retries
|
|
117
|
+
*/
|
|
118
|
+
declare const addConversationIdToInvocation: (db: AgentsRunDatabaseClient) => (params: {
|
|
119
|
+
scopes: AgentScopeConfig;
|
|
120
|
+
scheduledTriggerId: string;
|
|
121
|
+
invocationId: string;
|
|
122
|
+
conversationId: string;
|
|
123
|
+
}) => Promise<ScheduledTriggerInvocation | undefined>;
|
|
124
|
+
/**
|
|
125
|
+
* Mark invocation as cancelled
|
|
126
|
+
*/
|
|
127
|
+
declare const markScheduledTriggerInvocationCancelled: (db: AgentsRunDatabaseClient) => (params: {
|
|
128
|
+
scopes: AgentScopeConfig;
|
|
129
|
+
scheduledTriggerId: string;
|
|
130
|
+
invocationId: string;
|
|
131
|
+
}) => Promise<ScheduledTriggerInvocation>;
|
|
132
|
+
/**
|
|
133
|
+
* Cancel all pending invocations for a trigger
|
|
134
|
+
* Used when a trigger is deleted
|
|
135
|
+
*/
|
|
136
|
+
declare const cancelPendingInvocationsForTrigger: (db: AgentsRunDatabaseClient) => (params: {
|
|
137
|
+
scopes: AgentScopeConfig;
|
|
138
|
+
scheduledTriggerId: string;
|
|
139
|
+
}) => Promise<number>;
|
|
140
|
+
/**
|
|
141
|
+
* Cancel only PAST pending invocations for a trigger (scheduledFor <= now)
|
|
142
|
+
* Used when a trigger is disabled - keeps future invocations pending
|
|
143
|
+
*/
|
|
144
|
+
declare const cancelPastPendingInvocationsForTrigger: (db: AgentsRunDatabaseClient) => (params: {
|
|
145
|
+
scopes: AgentScopeConfig;
|
|
146
|
+
scheduledTriggerId: string;
|
|
147
|
+
}) => Promise<number>;
|
|
148
|
+
/**
|
|
149
|
+
* Get run info for multiple scheduled triggers in a single query
|
|
150
|
+
* Returns last run (completed/failed) and next pending run for each trigger
|
|
151
|
+
*/
|
|
152
|
+
declare const getScheduledTriggerRunInfoBatch: (db: AgentsRunDatabaseClient) => (params: {
|
|
153
|
+
scopes: Omit<AgentScopeConfig, "agentId">;
|
|
154
|
+
triggerIds: Array<{
|
|
155
|
+
agentId: string;
|
|
156
|
+
triggerId: string;
|
|
157
|
+
}>;
|
|
158
|
+
}) => Promise<Map<string, {
|
|
159
|
+
lastRunAt: string | null;
|
|
160
|
+
lastRunStatus: "completed" | "failed" | null;
|
|
161
|
+
lastRunConversationIds: string[];
|
|
162
|
+
nextRunAt: string | null;
|
|
163
|
+
}>>;
|
|
164
|
+
/**
|
|
165
|
+
* List upcoming invocations across ALL triggers for an agent with pagination
|
|
166
|
+
* Used for the upcoming runs dashboard with full pagination support
|
|
167
|
+
*/
|
|
168
|
+
declare const listUpcomingInvocationsForAgentPaginated: (db: AgentsRunDatabaseClient) => (params: {
|
|
169
|
+
scopes: Omit<AgentScopeConfig, "agentId"> & {
|
|
170
|
+
agentId: string;
|
|
171
|
+
};
|
|
172
|
+
pagination?: PaginationConfig;
|
|
173
|
+
includeRunning?: boolean;
|
|
174
|
+
}) => Promise<{
|
|
175
|
+
data: {
|
|
176
|
+
scheduledTriggerId: string;
|
|
177
|
+
status: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
178
|
+
scheduledFor: string;
|
|
179
|
+
startedAt: string | null;
|
|
180
|
+
completedAt: string | null;
|
|
181
|
+
resolvedPayload: Record<string, unknown> | null;
|
|
182
|
+
conversationIds: string[] | null;
|
|
183
|
+
attemptNumber: number;
|
|
184
|
+
idempotencyKey: string;
|
|
185
|
+
createdAt: string;
|
|
186
|
+
agentId: string;
|
|
187
|
+
projectId: string;
|
|
188
|
+
tenantId: string;
|
|
189
|
+
id: string;
|
|
190
|
+
}[];
|
|
191
|
+
pagination: {
|
|
192
|
+
page: number;
|
|
193
|
+
limit: number;
|
|
194
|
+
total: number;
|
|
195
|
+
pages: number;
|
|
196
|
+
};
|
|
197
|
+
}>;
|
|
198
|
+
/**
|
|
199
|
+
* List all invocations across ALL triggers for a PROJECT with pagination
|
|
200
|
+
* Used for the project-level invocations dashboard
|
|
201
|
+
*/
|
|
202
|
+
declare const listProjectScheduledTriggerInvocationsPaginated: (db: AgentsRunDatabaseClient) => (params: {
|
|
203
|
+
scopes: Omit<AgentScopeConfig, "agentId">;
|
|
204
|
+
pagination?: PaginationConfig;
|
|
205
|
+
filters?: {
|
|
206
|
+
status?: ScheduledTriggerInvocationStatus;
|
|
207
|
+
};
|
|
208
|
+
}) => Promise<{
|
|
209
|
+
data: {
|
|
210
|
+
scheduledTriggerId: string;
|
|
211
|
+
status: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
212
|
+
scheduledFor: string;
|
|
213
|
+
startedAt: string | null;
|
|
214
|
+
completedAt: string | null;
|
|
215
|
+
resolvedPayload: Record<string, unknown> | null;
|
|
216
|
+
conversationIds: string[] | null;
|
|
217
|
+
attemptNumber: number;
|
|
218
|
+
idempotencyKey: string;
|
|
219
|
+
createdAt: string;
|
|
220
|
+
agentId: string;
|
|
221
|
+
projectId: string;
|
|
222
|
+
tenantId: string;
|
|
223
|
+
id: string;
|
|
224
|
+
}[];
|
|
225
|
+
pagination: {
|
|
226
|
+
page: number;
|
|
227
|
+
limit: number;
|
|
228
|
+
total: number;
|
|
229
|
+
pages: number;
|
|
230
|
+
};
|
|
231
|
+
}>;
|
|
232
|
+
//#endregion
|
|
233
|
+
export { addConversationIdToInvocation, cancelPastPendingInvocationsForTrigger, cancelPendingInvocationsForTrigger, createScheduledTriggerInvocation, deletePendingInvocationsForTrigger, getScheduledTriggerInvocationById, getScheduledTriggerInvocationByIdempotencyKey, getScheduledTriggerRunInfoBatch, listPendingScheduledTriggerInvocations, listProjectScheduledTriggerInvocationsPaginated, listScheduledTriggerInvocationsPaginated, listUpcomingInvocationsForAgentPaginated, markScheduledTriggerInvocationCancelled, markScheduledTriggerInvocationCompleted, markScheduledTriggerInvocationFailed, markScheduledTriggerInvocationRunning, updateScheduledTriggerInvocationStatus };
|