@tryarcanist/cli 0.1.272 → 0.1.274

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 (2) hide show
  1. package/dist/index.js +1 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9022,10 +9022,7 @@ async function modelsListCommand(options = {}, command) {
9022
9022
  // src/commands/repos.ts
9023
9023
  async function reposListCommand(options = {}, command) {
9024
9024
  const { config } = resolveBusinessContext(command, options);
9025
- const payload = await apiFetch(
9026
- config,
9027
- "/api/repos"
9028
- );
9025
+ const payload = await apiFetch(config, "/api/repos");
9029
9026
  emit(command, options, { repos: payload.repos, ssoOrgs: payload.ssoOrgs }, (data) => {
9030
9027
  for (const repo of data.repos) {
9031
9028
  console.log(`${String(repo.fullName ?? repo.name ?? repo.repo ?? "")} ${String(repo.defaultBranch ?? "")}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryarcanist/cli",
3
- "version": "0.1.272",
3
+ "version": "0.1.274",
4
4
  "description": "CLI for Arcanist — create and manage coding agent sessions",
5
5
  "type": "module",
6
6
  "bin": {