@tryarcanist/cli 0.1.271 → 0.1.273
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/index.js +1 -4
- 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 ?? "")}`);
|