We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b523a64 commit 1dd10a4Copy full SHA for 1dd10a4
src/cli/handlers/manifest/generate.ts
@@ -259,6 +259,8 @@ async function handler(
259
Deno.exit(1);
260
}
261
262
+ const responseBody = await response.json() as { id: number };
263
+
264
const duration = Date.now() - start;
265
console.info(
266
`✅ Manifest uploaded successfully for project id: ${projectId} in ${duration}ms`,
@@ -269,7 +271,7 @@ async function handler(
269
271
270
272
if (globalConfig.apiHost === defaultApiHost) {
273
- `\nView it here: https://app.nanoapi.io/projects/${projectId}/manifests`,
274
+ `\nView it here: https://app.nanoapi.io/projects/${projectId}/manifests/${responseBody.id}`,
275
);
276
277
} catch (error) {
0 commit comments