@inkeep/agents-core 0.0.0-dev-20260319160044 → 0.0.0-dev-20260319203556

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 (30) hide show
  1. package/dist/auth/auth-schema.d.ts +86 -86
  2. package/dist/auth/auth-validation-schemas.d.ts +137 -137
  3. package/dist/auth/auth.d.ts +6 -6
  4. package/dist/auth/permissions.d.ts +13 -13
  5. package/dist/data-access/manage/agents.d.ts +11 -11
  6. package/dist/data-access/manage/artifactComponents.d.ts +10 -10
  7. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  8. package/dist/data-access/manage/dataComponents.d.ts +6 -6
  9. package/dist/data-access/manage/functionTools.d.ts +12 -12
  10. package/dist/data-access/manage/skills.d.ts +9 -9
  11. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
  12. package/dist/data-access/manage/subAgentRelations.d.ts +24 -24
  13. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  14. package/dist/data-access/manage/subAgents.d.ts +9 -9
  15. package/dist/data-access/manage/tools.d.ts +15 -15
  16. package/dist/data-access/manage/triggers.d.ts +2 -2
  17. package/dist/data-access/runtime/apiKeys.d.ts +12 -12
  18. package/dist/data-access/runtime/apps.d.ts +6 -6
  19. package/dist/data-access/runtime/conversations.d.ts +23 -23
  20. package/dist/data-access/runtime/messages.d.ts +15 -15
  21. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +6 -6
  22. package/dist/data-access/runtime/tasks.d.ts +6 -6
  23. package/dist/data-access/runtime/triggerInvocations.d.ts +1 -1
  24. package/dist/db/manage/manage-schema.d.ts +453 -453
  25. package/dist/db/runtime/runtime-schema.d.ts +346 -346
  26. package/dist/middleware/no-auth.d.ts +2 -2
  27. package/dist/utils/error.d.ts +51 -51
  28. package/dist/validation/dolt-schemas.d.ts +1 -1
  29. package/dist/validation/schemas.d.ts +1672 -1672
  30. package/package.json +1 -1
@@ -9,10 +9,10 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
9
9
  scopes: SubAgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
- agentId: string;
13
- projectId: string;
14
- tenantId: string;
15
12
  id: string;
13
+ tenantId: string;
14
+ projectId: string;
15
+ agentId: string;
16
16
  createdAt: string;
17
17
  updatedAt: string;
18
18
  headers: Record<string, string> | null;
@@ -44,10 +44,10 @@ declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =
44
44
  declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
- agentId: string;
48
- projectId: string;
49
- tenantId: string;
50
47
  id: string;
48
+ tenantId: string;
49
+ projectId: string;
50
+ agentId: string;
51
51
  createdAt: string;
52
52
  updatedAt: string;
53
53
  headers: Record<string, string> | null;
@@ -57,10 +57,10 @@ declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =>
57
57
  declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
- agentId: string;
61
- projectId: string;
62
- tenantId: string;
63
60
  id: string;
61
+ tenantId: string;
62
+ projectId: string;
63
+ agentId: string;
64
64
  createdAt: string;
65
65
  updatedAt: string;
66
66
  headers: Record<string, string> | null;
@@ -210,10 +210,10 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
210
210
  headers?: Record<string, string> | null;
211
211
  };
212
212
  }) => Promise<{
213
- agentId: string;
214
- projectId: string;
215
- tenantId: string;
216
213
  id: string;
214
+ tenantId: string;
215
+ projectId: string;
216
+ agentId: string;
217
217
  createdAt: string;
218
218
  updatedAt: string;
219
219
  headers: Record<string, string> | null;
@@ -227,10 +227,10 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
227
227
  scopes: SubAgentScopeConfig;
228
228
  targetAgentId: string;
229
229
  }) => Promise<{
230
- agentId: string;
231
- projectId: string;
232
- tenantId: string;
233
230
  id: string;
231
+ tenantId: string;
232
+ projectId: string;
233
+ agentId: string;
234
234
  createdAt: string;
235
235
  updatedAt: string;
236
236
  headers: Record<string, string> | null;
@@ -248,10 +248,10 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
248
248
  headers?: Record<string, string> | null;
249
249
  };
250
250
  }) => Promise<{
251
- agentId: string;
252
- projectId: string;
253
- tenantId: string;
254
251
  id: string;
252
+ tenantId: string;
253
+ projectId: string;
254
+ agentId: string;
255
255
  createdAt: string;
256
256
  updatedAt: string;
257
257
  headers: Record<string, string> | null;
@@ -9,12 +9,12 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
9
9
  scopes: AgentScopeConfig;
10
10
  subAgentId: string;
11
11
  }) => Promise<{
12
- agentId: string;
13
- projectId: string;
14
- tenantId: string;
15
12
  id: string;
16
13
  name: string;
17
14
  description: string | null;
15
+ tenantId: string;
16
+ projectId: string;
17
+ agentId: string;
18
18
  prompt: string | null;
19
19
  conversationHistoryConfig: ConversationHistoryConfig | null;
20
20
  models: {
@@ -40,12 +40,12 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
40
40
  declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
41
41
  scopes: AgentScopeConfig;
42
42
  }) => Promise<{
43
- agentId: string;
44
- projectId: string;
45
- tenantId: string;
46
43
  id: string;
47
44
  name: string;
48
45
  description: string | null;
46
+ tenantId: string;
47
+ projectId: string;
48
+ agentId: string;
49
49
  prompt: string | null;
50
50
  conversationHistoryConfig: ConversationHistoryConfig | null;
51
51
  models: {
@@ -109,12 +109,12 @@ declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (param
109
109
  };
110
110
  }>;
111
111
  declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAgentInsert) => Promise<{
112
- agentId: string;
113
- projectId: string;
114
- tenantId: string;
115
112
  id: string;
116
113
  name: string;
117
114
  description: string | null;
115
+ tenantId: string;
116
+ projectId: string;
117
+ agentId: string;
118
118
  prompt: string | null;
119
119
  conversationHistoryConfig: ConversationHistoryConfig | null;
120
120
  models: {
@@ -20,11 +20,11 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
20
20
  scopes: ProjectScopeConfig;
21
21
  toolId: string;
22
22
  }) => Promise<{
23
- projectId: string;
24
- tenantId: string;
25
23
  id: string;
26
24
  name: string;
27
25
  description: string | null;
26
+ tenantId: string;
27
+ projectId: string;
28
28
  createdAt: string;
29
29
  updatedAt: string;
30
30
  headers: Record<string, string> | null;
@@ -78,11 +78,11 @@ declare const listTools: (db: AgentsManageDatabaseClient) => (params: {
78
78
  };
79
79
  }>;
80
80
  declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInsert) => Promise<{
81
- projectId: string;
82
- tenantId: string;
83
81
  id: string;
84
82
  name: string;
85
83
  description: string | null;
84
+ tenantId: string;
85
+ projectId: string;
86
86
  createdAt: string;
87
87
  updatedAt: string;
88
88
  headers: Record<string, string> | null;
@@ -135,10 +135,10 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
135
135
  needsApproval?: boolean;
136
136
  }> | null;
137
137
  }) => Promise<{
138
- agentId: string;
139
- projectId: string;
140
- tenantId: string;
141
138
  id: string;
139
+ tenantId: string;
140
+ projectId: string;
141
+ agentId: string;
142
142
  createdAt: string;
143
143
  updatedAt: string;
144
144
  toolId: string;
@@ -154,10 +154,10 @@ declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params:
154
154
  subAgentId: string;
155
155
  toolId: string;
156
156
  }) => Promise<{
157
- agentId: string;
158
- projectId: string;
159
- tenantId: string;
160
157
  id: string;
158
+ tenantId: string;
159
+ projectId: string;
160
+ agentId: string;
161
161
  createdAt: string;
162
162
  updatedAt: string;
163
163
  toolId: string;
@@ -182,10 +182,10 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
182
182
  }> | null;
183
183
  relationId?: string;
184
184
  }) => Promise<{
185
- agentId: string;
186
- projectId: string;
187
- tenantId: string;
188
185
  id: string;
186
+ tenantId: string;
187
+ projectId: string;
188
+ agentId: string;
189
189
  createdAt: string;
190
190
  updatedAt: string;
191
191
  toolId: string;
@@ -202,11 +202,11 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
202
202
  declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
203
203
  data: ToolInsert;
204
204
  }) => Promise<{
205
- projectId: string;
206
- tenantId: string;
207
205
  id: string;
208
206
  name: string;
209
207
  description: string | null;
208
+ tenantId: string;
209
+ projectId: string;
210
210
  createdAt: string;
211
211
  updatedAt: string;
212
212
  headers: Record<string, string> | null;
@@ -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: "literal" | "header" | "body";
49
+ source: "literal" | "body" | "header";
50
50
  required: boolean;
51
51
  key?: string | undefined;
52
52
  value?: string | undefined;
@@ -8,11 +8,11 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
8
8
  scopes: ProjectScopeConfig;
9
9
  id: string;
10
10
  }) => Promise<{
11
- agentId: string;
12
- projectId: string;
13
- tenantId: string;
14
11
  id: string;
15
12
  name: string | null;
13
+ tenantId: string;
14
+ projectId: string;
15
+ agentId: string;
16
16
  createdAt: string;
17
17
  updatedAt: string;
18
18
  expiresAt: string | null;
@@ -22,11 +22,11 @@ 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
- agentId: string;
26
- projectId: string;
27
- tenantId: string;
28
25
  id: string;
29
26
  name: string | null;
27
+ tenantId: string;
28
+ projectId: string;
29
+ agentId: string;
30
30
  createdAt: string;
31
31
  updatedAt: string;
32
32
  expiresAt: string | null;
@@ -39,11 +39,11 @@ declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
39
39
  scopes: ProjectScopeConfig;
40
40
  agentId?: string;
41
41
  }) => Promise<{
42
- agentId: string;
43
- projectId: string;
44
- tenantId: string;
45
42
  id: string;
46
43
  name: string | null;
44
+ tenantId: string;
45
+ projectId: string;
46
+ agentId: string;
47
47
  createdAt: string;
48
48
  updatedAt: string;
49
49
  expiresAt: string | null;
@@ -66,11 +66,11 @@ declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
66
66
  };
67
67
  }>;
68
68
  declare const createApiKey: (db: AgentsRunDatabaseClient) => (params: ApiKeyInsert) => Promise<{
69
- agentId: string;
70
- projectId: string;
71
- tenantId: string;
72
69
  id: string;
73
70
  name: string | null;
71
+ tenantId: string;
72
+ projectId: string;
73
+ agentId: string;
74
74
  createdAt: string;
75
75
  updatedAt: string;
76
76
  expiresAt: string | null;
@@ -5,12 +5,12 @@ 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
- projectId: string | null;
10
- tenantId: string | null;
11
8
  id: string;
12
9
  name: string;
13
10
  description: string | null;
11
+ tenantId: string | null;
12
+ projectId: string | null;
13
+ type: AppType;
14
14
  createdAt: string;
15
15
  updatedAt: string;
16
16
  enabled: boolean;
@@ -52,12 +52,12 @@ declare const listAppsPaginated: (db: AgentsRunDatabaseClient) => (params: {
52
52
  };
53
53
  }>;
54
54
  declare const createApp: (db: AgentsRunDatabaseClient) => (params: AppInsert) => Promise<{
55
- type: AppType;
56
- projectId: string | null;
57
- tenantId: string | null;
58
55
  id: string;
59
56
  name: string;
60
57
  description: string | null;
58
+ tenantId: string | null;
59
+ projectId: string | null;
60
+ type: AppType;
61
61
  createdAt: string;
62
62
  updatedAt: string;
63
63
  enabled: boolean;
@@ -16,17 +16,17 @@ declare const listConversations: (db: AgentsRunDatabaseClient) => (params: {
16
16
  total: number;
17
17
  }>;
18
18
  declare const createConversation: (db: AgentsRunDatabaseClient) => (params: ConversationInsert) => Promise<{
19
- agentId: string | null;
20
- projectId: string;
21
- tenantId: string;
22
- userId: string | null;
23
19
  id: string;
20
+ tenantId: string;
21
+ projectId: string;
22
+ agentId: string | null;
24
23
  title: string | null;
25
24
  createdAt: string;
26
25
  updatedAt: string;
27
26
  metadata: ConversationMetadata | null;
27
+ userId: string | null;
28
28
  ref: {
29
- type: "tag" | "commit" | "branch";
29
+ type: "commit" | "tag" | "branch";
30
30
  name: string;
31
31
  hash: string;
32
32
  } | null;
@@ -44,7 +44,7 @@ declare const updateConversation: (db: AgentsRunDatabaseClient) => (params: {
44
44
  agentId: string | null;
45
45
  activeSubAgentId: string;
46
46
  ref: {
47
- type: "tag" | "commit" | "branch";
47
+ type: "commit" | "tag" | "branch";
48
48
  name: string;
49
49
  hash: string;
50
50
  } | null;
@@ -70,7 +70,7 @@ declare const updateConversationActiveSubAgent: (db: AgentsRunDatabaseClient) =>
70
70
  agentId: string | null;
71
71
  activeSubAgentId: string;
72
72
  ref: {
73
- type: "tag" | "commit" | "branch";
73
+ type: "commit" | "tag" | "branch";
74
74
  name: string;
75
75
  hash: string;
76
76
  } | null;
@@ -85,17 +85,17 @@ declare const getConversation: (db: AgentsRunDatabaseClient) => (params: {
85
85
  scopes: ProjectScopeConfig;
86
86
  conversationId: string;
87
87
  }) => Promise<{
88
- agentId: string | null;
89
- projectId: string;
90
- tenantId: string;
91
- userId: string | null;
92
88
  id: string;
89
+ tenantId: string;
90
+ projectId: string;
91
+ agentId: string | null;
93
92
  title: string | null;
94
93
  createdAt: string;
95
94
  updatedAt: string;
96
95
  metadata: ConversationMetadata | null;
96
+ userId: string | null;
97
97
  ref: {
98
- type: "tag" | "commit" | "branch";
98
+ type: "commit" | "tag" | "branch";
99
99
  name: string;
100
100
  hash: string;
101
101
  } | null;
@@ -108,7 +108,7 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
108
108
  tenantId: string;
109
109
  id: string;
110
110
  ref: {
111
- type: "tag" | "commit" | "branch";
111
+ type: "commit" | "tag" | "branch";
112
112
  name: string;
113
113
  hash: string;
114
114
  };
@@ -121,17 +121,17 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
121
121
  metadata?: ConversationMetadata | null | undefined;
122
122
  contextConfigId?: string | undefined;
123
123
  } | {
124
- agentId: string | null;
125
- projectId: string;
126
- tenantId: string;
127
- userId: string | null;
128
124
  id: string;
125
+ tenantId: string;
126
+ projectId: string;
127
+ agentId: string | null;
129
128
  title: string | null;
130
129
  createdAt: string;
131
130
  updatedAt: string;
132
131
  metadata: ConversationMetadata | null;
132
+ userId: string | null;
133
133
  ref: {
134
- type: "tag" | "commit" | "branch";
134
+ type: "commit" | "tag" | "branch";
135
135
  name: string;
136
136
  hash: string;
137
137
  } | null;
@@ -153,17 +153,17 @@ declare const getActiveAgentForConversation: (db: AgentsRunDatabaseClient) => (p
153
153
  scopes: ProjectScopeConfig;
154
154
  conversationId: string;
155
155
  }) => Promise<{
156
- agentId: string | null;
157
- projectId: string;
158
- tenantId: string;
159
- userId: string | null;
160
156
  id: string;
157
+ tenantId: string;
158
+ projectId: string;
159
+ agentId: string | null;
161
160
  title: string | null;
162
161
  createdAt: string;
163
162
  updatedAt: string;
164
163
  metadata: ConversationMetadata | null;
164
+ userId: string | null;
165
165
  ref: {
166
- type: "tag" | "commit" | "branch";
166
+ type: "commit" | "tag" | "branch";
167
167
  name: string;
168
168
  hash: string;
169
169
  } | null;
@@ -10,26 +10,26 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
10
10
  scopes: ProjectScopeConfig;
11
11
  messageId: string;
12
12
  }) => Promise<{
13
- projectId: string;
14
- tenantId: string;
15
13
  id: string;
14
+ tenantId: string;
15
+ projectId: string;
16
16
  createdAt: string;
17
17
  updatedAt: string;
18
18
  metadata: MessageMetadata | null;
19
19
  content: MessageContent;
20
20
  role: string;
21
- conversationId: string;
22
21
  fromSubAgentId: string | null;
23
22
  toSubAgentId: string | null;
24
23
  fromExternalAgentId: string | null;
25
24
  toExternalAgentId: string | null;
25
+ taskId: string | null;
26
+ a2aTaskId: string | null;
27
+ conversationId: string;
26
28
  fromTeamAgentId: string | null;
27
29
  toTeamAgentId: string | null;
28
30
  visibility: string;
29
31
  messageType: string;
30
- taskId: string | null;
31
32
  parentMessageId: string | null;
32
- a2aTaskId: string | null;
33
33
  a2aSessionId: string | null;
34
34
  } | undefined>;
35
35
  declare const listMessages: (db: AgentsRunDatabaseClient) => (params: {
@@ -144,26 +144,26 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
144
144
  scopes: ProjectScopeConfig;
145
145
  data: Omit<MessageInsert, "tenantId" | "projectId">;
146
146
  }) => Promise<{
147
- projectId: string;
148
- tenantId: string;
149
147
  id: string;
148
+ tenantId: string;
149
+ projectId: string;
150
150
  createdAt: string;
151
151
  updatedAt: string;
152
152
  metadata: MessageMetadata | null;
153
153
  content: MessageContent;
154
154
  role: string;
155
- conversationId: string;
156
155
  fromSubAgentId: string | null;
157
156
  toSubAgentId: string | null;
158
157
  fromExternalAgentId: string | null;
159
158
  toExternalAgentId: string | null;
159
+ taskId: string | null;
160
+ a2aTaskId: string | null;
161
+ conversationId: string;
160
162
  fromTeamAgentId: string | null;
161
163
  toTeamAgentId: string | null;
162
164
  visibility: string;
163
165
  messageType: string;
164
- taskId: string | null;
165
166
  parentMessageId: string | null;
166
- a2aTaskId: string | null;
167
167
  a2aSessionId: string | null;
168
168
  }>;
169
169
  declare const updateMessage: (db: AgentsRunDatabaseClient) => (params: {
@@ -197,26 +197,26 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
197
197
  scopes: ProjectScopeConfig;
198
198
  messageId: string;
199
199
  }) => Promise<{
200
- projectId: string;
201
- tenantId: string;
202
200
  id: string;
201
+ tenantId: string;
202
+ projectId: string;
203
203
  createdAt: string;
204
204
  updatedAt: string;
205
205
  metadata: MessageMetadata | null;
206
206
  content: MessageContent;
207
207
  role: string;
208
- conversationId: string;
209
208
  fromSubAgentId: string | null;
210
209
  toSubAgentId: string | null;
211
210
  fromExternalAgentId: string | null;
212
211
  toExternalAgentId: string | null;
212
+ taskId: string | null;
213
+ a2aTaskId: string | null;
214
+ conversationId: string;
213
215
  fromTeamAgentId: string | null;
214
216
  toTeamAgentId: string | null;
215
217
  visibility: string;
216
218
  messageType: string;
217
- taskId: string | null;
218
219
  parentMessageId: string | null;
219
- a2aTaskId: string | null;
220
220
  a2aSessionId: string | null;
221
221
  }>;
222
222
  declare const countMessagesByConversation: (db: AgentsRunDatabaseClient) => (params: {
@@ -35,11 +35,11 @@ declare const listScheduledTriggerInvocationsPaginated: (db: AgentsRunDatabaseCl
35
35
  data: {
36
36
  scheduledTriggerId: string;
37
37
  ref: {
38
- type: "tag" | "commit" | "branch";
38
+ type: "commit" | "tag" | "branch";
39
39
  name: string;
40
40
  hash: string;
41
41
  } | null;
42
- status: "pending" | "running" | "completed" | "failed" | "cancelled";
42
+ status: "pending" | "failed" | "running" | "completed" | "cancelled";
43
43
  scheduledFor: string;
44
44
  startedAt: string | null;
45
45
  completedAt: string | null;
@@ -180,11 +180,11 @@ declare const listUpcomingInvocationsForAgentPaginated: (db: AgentsRunDatabaseCl
180
180
  data: {
181
181
  scheduledTriggerId: string;
182
182
  ref: {
183
- type: "tag" | "commit" | "branch";
183
+ type: "commit" | "tag" | "branch";
184
184
  name: string;
185
185
  hash: string;
186
186
  } | null;
187
- status: "pending" | "running" | "completed" | "failed" | "cancelled";
187
+ status: "pending" | "failed" | "running" | "completed" | "cancelled";
188
188
  scheduledFor: string;
189
189
  startedAt: string | null;
190
190
  completedAt: string | null;
@@ -219,11 +219,11 @@ declare const listProjectScheduledTriggerInvocationsPaginated: (db: AgentsRunDat
219
219
  data: {
220
220
  scheduledTriggerId: string;
221
221
  ref: {
222
- type: "tag" | "commit" | "branch";
222
+ type: "commit" | "tag" | "branch";
223
223
  name: string;
224
224
  hash: string;
225
225
  } | null;
226
- status: "pending" | "running" | "completed" | "failed" | "cancelled";
226
+ status: "pending" | "failed" | "running" | "completed" | "cancelled";
227
227
  scheduledFor: string;
228
228
  startedAt: string | null;
229
229
  completedAt: string | null;
@@ -7,17 +7,17 @@ import { TaskInsert, TaskSelect } from "../../types/entities.js";
7
7
 
8
8
  //#region src/data-access/runtime/tasks.d.ts
9
9
  declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert) => Promise<{
10
- agentId: string;
11
- projectId: string;
12
- tenantId: string;
13
10
  id: string;
11
+ tenantId: string;
12
+ projectId: string;
13
+ agentId: string;
14
14
  createdAt: string;
15
15
  updatedAt: string;
16
16
  metadata: TaskMetadataConfig | null;
17
- subAgentId: string;
18
17
  status: string;
18
+ subAgentId: string;
19
19
  ref: {
20
- type: "tag" | "commit" | "branch";
20
+ type: "commit" | "tag" | "branch";
21
21
  name: string;
22
22
  hash: string;
23
23
  } | null;
@@ -39,7 +39,7 @@ declare const updateTask: (db: AgentsRunDatabaseClient) => (params: {
39
39
  updatedAt: string;
40
40
  contextId: string;
41
41
  ref: {
42
- type: "tag" | "commit" | "branch";
42
+ type: "commit" | "tag" | "branch";
43
43
  name: string;
44
44
  hash: string;
45
45
  } | null;
@@ -29,7 +29,7 @@ declare const listTriggerInvocationsPaginated: (db: AgentsRunDatabaseClient) =>
29
29
  triggerId: string;
30
30
  conversationId: string | null;
31
31
  ref: {
32
- type: "tag" | "commit" | "branch";
32
+ type: "commit" | "tag" | "branch";
33
33
  name: string;
34
34
  hash: string;
35
35
  } | null;