openpond-code 0.1.3 → 0.1.4
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/CHANGELOG.md +6 -0
- package/dist/api.d.ts +0 -1
- package/dist/cli.js +1 -3
- package/dist/index.js +0 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/api.d.ts
CHANGED
package/dist/cli.js
CHANGED
|
@@ -906,8 +906,6 @@ async function resolveAppTarget(apiBase, apiKey, target) {
|
|
|
906
906
|
const candidates = [
|
|
907
907
|
app.repo,
|
|
908
908
|
app.gitRepo,
|
|
909
|
-
app.internalToolName,
|
|
910
|
-
app.name,
|
|
911
909
|
app.id
|
|
912
910
|
].map(normalizeRepoName);
|
|
913
911
|
return candidates.includes(normalizedRepo);
|
|
@@ -1354,7 +1352,7 @@ async function runAppsList(options) {
|
|
|
1354
1352
|
}
|
|
1355
1353
|
for (const app of filtered) {
|
|
1356
1354
|
const owner = app.handle || app.gitOwner || "unknown";
|
|
1357
|
-
const repo = app.repo || app.gitRepo || app.
|
|
1355
|
+
const repo = app.repo || app.gitRepo || app.id;
|
|
1358
1356
|
const status = app.latestDeployment?.status || "no-deploy";
|
|
1359
1357
|
const branch = app.latestDeployment?.gitBranch || app.defaultBranch || "-";
|
|
1360
1358
|
console.log(`${owner}/${repo} ${status} ${branch} ${app.id}`);
|
package/dist/index.js
CHANGED