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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # openpond-code
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - bb79cf8: cleaned up naming
8
+
3
9
  ## 0.1.3
4
10
 
5
11
  ### Patch Changes
package/dist/api.d.ts CHANGED
@@ -105,7 +105,6 @@ export type AppListItem = {
105
105
  gitRepo: string | null;
106
106
  gitProvider: string | null;
107
107
  gitHost: string | null;
108
- internalToolName: string | null;
109
108
  defaultBranch: string | null;
110
109
  createdAt: string;
111
110
  updatedAt: string;
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.name || app.id;
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
@@ -952,8 +952,6 @@ async function resolveAppTarget(params) {
952
952
  const candidates = [
953
953
  app.repo,
954
954
  app.gitRepo,
955
- app.internalToolName,
956
- app.name,
957
955
  app.id
958
956
  ].map(normalizeRepoName);
959
957
  return candidates.includes(normalizedRepo);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openpond-code",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "OpenPond CLI (API key only)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",