Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

files changed

managed-agents/files

Nearest release: v2.1.275, published an hour before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+9added
Lines−6removed
From line 532 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits9to this page, all time

The whole hunk

from line 532, old and new numbered
/
lines
from line 532
532532 ```java Java
533533 var listed = client.beta().sessions().resources().list(session.id());
534534 for (var entry : listed.data()) {
535 if (entry.isFile()) {
536 var fileResource = entry.asFile();
537 IO.println(fileResource.id() + " " + fileResource.type());
538 } else if (entry.isGitHubRepository()) {
539 var repoResource = entry.asGitHubRepository();
540 IO.println(repoResource.id() + " " + repoResource.type());
535 switch (entry.type().value()) {
536 case FILE -> {
537 var fileResource = entry.asFile();
538 IO.println(fileResource.id() + " " + fileResource.type());
539 }
540 case GITHUB_REPOSITORY -> {
541 var repoResource = entry.asGitHubRepository();
542 IO.println(repoResource.id() + " " + repoResource.type());
543 }
541544 }
542545 }
543546