@base44-preview/cli 0.1.12-pr.595.1473dd3 → 0.1.12-pr.595.ca69b55
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
|
@@ -258685,7 +258685,7 @@ async function logsAction(ctx, options) {
|
|
|
258685
258685
|
function getLogsCommand() {
|
|
258686
258686
|
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 deployed 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([
|
|
258687
258687
|
...LogLevelSchema.options
|
|
258688
|
-
])).option("-n, --limit <n>", "Results per page (1-1000
|
|
258688
|
+
])).option("-n, --limit <n>", "Results per page (1-1000, default: 50)").option("-f, --follow", "Stream new logs as they arrive").addOption(new Option("--order <order>", "Sort order").choices(["asc", "desc"])).addOption(new Option("--env <env>", "Which deployment to read logs from: preview (current draft) or prod (published). Default: preview").choices([...LogEnvSchema.options])).action(logsAction);
|
|
258689
258689
|
}
|
|
258690
258690
|
|
|
258691
258691
|
// src/cli/commands/project/scaffold.ts
|
|
@@ -268315,4 +268315,4 @@ export {
|
|
|
268315
268315
|
runCLI
|
|
268316
268316
|
};
|
|
268317
268317
|
|
|
268318
|
-
//# debugId=
|
|
268318
|
+
//# debugId=1E7E334F907BD35264756E2164756E21
|