@base44-preview/cli 0.0.56-pr.552.590deb5 → 0.0.56-pr.552.e304fb7
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/cli/index.js +2 -2
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -253613,7 +253613,7 @@ async function logsAction(ctx, options) {
|
|
|
253613
253613
|
};
|
|
253614
253614
|
}
|
|
253615
253615
|
function getLogsCommand() {
|
|
253616
|
-
return new Base44Command("logs").description("Fetch function logs for this app").option("--function <names>", "Filter by function name(s), comma-separated. If omitted, fetches logs for all project functions").option("--since <datetime>", "Show logs from this time
|
|
253616
|
+
return new Base44Command("logs").description("Fetch function logs for this app").option("--function <names>", "Filter by function name(s), comma-separated. If omitted, fetches logs for all project functions").option("--since <datetime>", "Show logs from this time. ISO datetime or relative shorthand (e.g. 1h, 30m, 2d)", normalizeDatetime).option("--until <datetime>", "Show logs until this time. ISO datetime or relative shorthand (e.g. 1h, 30m, 2d)", normalizeDatetime).addOption(new Option("--level <level>", "Filter by log level").choices([...LogLevelSchema.options]).hideHelp()).option("-n, --limit <n>", "Results per page (1-1000, default: 50)").addOption(new Option("--order <order>", "Sort order").choices(["asc", "desc"])).addOption(new Option("--format <format>", "Output format (json produces clean stdout for piping to jq)").choices(["text", "json"]).default("text")).action(logsAction);
|
|
253617
253617
|
}
|
|
253618
253618
|
|
|
253619
253619
|
// src/cli/commands/project/scaffold.ts
|
|
@@ -261989,4 +261989,4 @@ export {
|
|
|
261989
261989
|
CLIExitError
|
|
261990
261990
|
};
|
|
261991
261991
|
|
|
261992
|
-
//# debugId=
|
|
261992
|
+
//# debugId=F613860C84D1043764756E2164756E21
|