Skip to content

Commit 87e7f32

Browse files
Add artifacts for v7.3.0
1 parent c8432e5 commit 87e7f32

55 files changed

Lines changed: 1042 additions & 152 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

TAG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v7.2.1943
1+
v7.3.0

gql/agentic_batch_changes.graphql

Lines changed: 168 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,6 @@ type AgenticWorkflow implements Node {
2323
The JSON schema for the input of this workflow, if defined when creating the workflow.
2424
"""
2525
inputSchema: String
26-
27-
"""
28-
The instances of this workflow. Returns at most 1000 instances.
29-
Defaults to the first 50 instances if neither `first` nor `last` is provided.
30-
"""
31-
instances(first: Int, last: Int, after: String, before: String): AgenticWorkflowInstanceConnection!
3226
}
3327

3428
"""
@@ -98,15 +92,20 @@ type AgenticWorkflowInstance implements Node {
9892
id: ID!
9993

10094
"""
101-
The workflow this instance belongs to.
95+
The name of the workflow instance.
10296
"""
103-
workflow: AgenticWorkflow!
97+
name: String!
10498

10599
"""
106-
The JSON definition of the workflow at the time the instance was created.
100+
The JSON definition of the workflow instance.
107101
"""
108102
definition: String!
109103

104+
"""
105+
The JSON schema for the input of this workflow instance at the time it was created.
106+
"""
107+
inputSchema: String
108+
110109
"""
111110
The input provided to this instance.
112111
"""
@@ -194,6 +193,16 @@ interface AgenticWorkflowInstanceNodeState {
194193
When this state snapshot was created.
195194
"""
196195
createdAt: DateTime!
196+
197+
"""
198+
When this node started executing.
199+
"""
200+
startedAt: DateTime
201+
202+
"""
203+
When this node finished executing.
204+
"""
205+
finishedAt: DateTime
197206
}
198207

199208
"""
@@ -236,6 +245,16 @@ type AgenticNodeState implements AgenticWorkflowInstanceNodeState {
236245
When this state snapshot was created.
237246
"""
238247
createdAt: DateTime!
248+
249+
"""
250+
When this node started executing.
251+
"""
252+
startedAt: DateTime
253+
254+
"""
255+
When this node finished executing.
256+
"""
257+
finishedAt: DateTime
239258
}
240259

241260
"""
@@ -279,6 +298,16 @@ type AgenticBatchChange implements AgenticWorkflowInstanceNodeState {
279298
"""
280299
createdAt: DateTime!
281300

301+
"""
302+
When this node started executing.
303+
"""
304+
startedAt: DateTime
305+
306+
"""
307+
When this node finished executing.
308+
"""
309+
finishedAt: DateTime
310+
282311
"""
283312
The batch change created by this node. Can be null before the node has produced output.
284313
"""
@@ -326,12 +355,142 @@ type AgenticChangeset implements AgenticWorkflowInstanceNodeState {
326355
"""
327356
createdAt: DateTime!
328357

358+
"""
359+
When this node started executing.
360+
"""
361+
startedAt: DateTime
362+
363+
"""
364+
When this node finished executing.
365+
"""
366+
finishedAt: DateTime
367+
329368
"""
330369
The changeset that was created from the diff. Can be null if the changeset is not yet reconciled. Try again later.
331370
"""
332371
changeset: Changeset
333372
}
334373

374+
"""
375+
Live state for an iterator node.
376+
377+
EXPERIMENTAL: This API is experimental and subject to change.
378+
"""
379+
type AgenticIterator implements AgenticWorkflowInstanceNodeState {
380+
"""
381+
The unique ID of this node state snapshot.
382+
"""
383+
id: ID!
384+
385+
"""
386+
The ID of the node spec this state belongs to.
387+
"""
388+
nodeSpecID: String!
389+
390+
"""
391+
The type of the node (e.g. decision, wait).
392+
"""
393+
nodeType: String!
394+
395+
"""
396+
The lifecycle phase of the node.
397+
"""
398+
lifecyclePhase: AgenticWorkflowInstanceStatus!
399+
400+
"""
401+
The raw output produced by the node as a JSON string.
402+
This is usually empty until all iteration items have finished.
403+
"""
404+
output: String!
405+
406+
"""
407+
The recorded error for this node state, if any.
408+
"""
409+
error: String
410+
411+
"""
412+
When this state snapshot was created.
413+
"""
414+
createdAt: DateTime!
415+
416+
"""
417+
When this node started executing.
418+
"""
419+
startedAt: DateTime
420+
421+
"""
422+
When this node finished executing.
423+
"""
424+
finishedAt: DateTime
425+
426+
"""
427+
The iterator's current progress derived from the backing iteration items.
428+
This reflects live state, not just the historical snapshot in output.
429+
"""
430+
progress: AgenticIteratorProgress!
431+
432+
"""
433+
The iteration items created for this iterator, ordered by creation time.
434+
Each item may link to a spawned sub-workflow instance.
435+
"""
436+
iterationItems: [AgenticIteratorItem!]!
437+
}
438+
439+
"""
440+
Progress summary for an iterator node.
441+
442+
EXPERIMENTAL: This API is experimental and subject to change.
443+
"""
444+
type AgenticIteratorProgress {
445+
"""
446+
The total number of iteration items tracked by this iterator.
447+
"""
448+
total: Int!
449+
450+
"""
451+
The number of items whose sub-workflow completed successfully.
452+
"""
453+
completed: Int!
454+
455+
"""
456+
The number of items whose sub-workflow failed.
457+
"""
458+
failed: Int!
459+
460+
"""
461+
The number of items whose sub-workflow is currently queued or running,
462+
plus items that have not yet spawned a sub-workflow.
463+
"""
464+
pending: Int!
465+
466+
"""
467+
The number of items whose sub-workflow is currently paused.
468+
"""
469+
paused: Int!
470+
}
471+
472+
"""
473+
One item managed by an iterator node.
474+
475+
EXPERIMENTAL: This API is experimental and subject to change.
476+
"""
477+
type AgenticIteratorItem {
478+
"""
479+
The unique ID of this iteration item.
480+
"""
481+
id: ID!
482+
483+
"""
484+
The serialized item payload produced by the iterator input expression.
485+
"""
486+
itemData: String!
487+
488+
"""
489+
The spawned sub-workflow instance for this item, if one has been created.
490+
"""
491+
workflowInstance: AgenticWorkflowInstance
492+
}
493+
335494
"""
336495
A list of workflow instances.
337496

gql/codeintel.codenav.graphql

Lines changed: 0 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,6 @@ extend type GitBlob {
1010
toolName: String
1111
): GitBlobLSIFData
1212

13-
"""
14-
Provides code intelligence within the file.
15-
16-
Experimental: This API is likely to change in the future.
17-
"""
18-
localCodeIntel: JSONValue
19-
20-
"""
21-
A wrapper around syntactic hover and definition query methods.
22-
23-
Experimental: This API is likely to change in the future.
24-
"""
25-
symbolInfo(line: Int!, character: Int!): SymbolInfo
26-
2713
"""
2814
Return the code graph data associated with this blob.
2915
@@ -1019,78 +1005,3 @@ type Hover {
10191005
"""
10201006
summary: Markdown
10211007
}
1022-
1023-
"""
1024-
SymbolInfo contains hover and definition methods. It's returned by GitBlob.symbolInfo(line, character).
1025-
"""
1026-
type SymbolInfo {
1027-
"""
1028-
The definition of the symbol.
1029-
"""
1030-
definition: SymbolLocation
1031-
1032-
"""
1033-
The hover for the symbol.
1034-
"""
1035-
hover: String
1036-
}
1037-
1038-
"""
1039-
SymbolLocation is a single-line range within a repository. It's returned by SymbolInfo.definition.
1040-
"""
1041-
type SymbolLocation {
1042-
"""
1043-
The repo.
1044-
"""
1045-
repo: String!
1046-
1047-
"""
1048-
The commit.
1049-
"""
1050-
commit: String!
1051-
1052-
"""
1053-
The path.
1054-
"""
1055-
path: String!
1056-
1057-
"""
1058-
The range.
1059-
"""
1060-
range: LineRange
1061-
1062-
"""
1063-
The line.
1064-
"""
1065-
line: Int! @deprecated(reason: "use range.line instead")
1066-
1067-
"""
1068-
The character.
1069-
"""
1070-
character: Int! @deprecated(reason: "use range.character instead")
1071-
1072-
"""
1073-
The length.
1074-
"""
1075-
length: Int! @deprecated(reason: "use range.length instead")
1076-
}
1077-
1078-
"""
1079-
LineRange is a span within a line.
1080-
"""
1081-
type LineRange {
1082-
"""
1083-
The line.
1084-
"""
1085-
line: Int!
1086-
1087-
"""
1088-
The character.
1089-
"""
1090-
character: Int!
1091-
1092-
"""
1093-
The length.
1094-
"""
1095-
length: Int!
1096-
}

0 commit comments

Comments
 (0)