@base44-preview/cli 0.1.14-pr.623.3dbbbbb → 0.1.14-pr.624.af1a615
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
|
@@ -250117,7 +250117,7 @@ async function logsAction(ctx, options) {
|
|
|
250117
250117
|
function getLogsCommand() {
|
|
250118
250118
|
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 Option2("--level <level>", "Filter by log level").choices([
|
|
250119
250119
|
...LogLevelSchema.options
|
|
250120
|
-
])).option("-n, --limit <n>", "Results per page (1-1000; the server returns at most 500)").option("-f, --follow", "Stream new logs as they arrive").addOption(new Option2("--order <order>", "Sort order").choices(["asc", "desc"])).addOption(new Option2("--env <env>", "Which deployment to read logs from: preview (current draft) or prod (published).
|
|
250120
|
+
])).option("-n, --limit <n>", "Results per page (1-1000; the server returns at most 500)").option("-f, --follow", "Stream new logs as they arrive").addOption(new Option2("--order <order>", "Sort order").choices(["asc", "desc"])).addOption(new Option2("--env <env>", "Which deployment to read logs from: preview (current draft) or prod (published). Omit to read both.").choices([...LogEnvSchema.options])).action(logsAction);
|
|
250121
250121
|
}
|
|
250122
250122
|
|
|
250123
250123
|
// src/cli/commands/project/scaffold.ts
|
|
@@ -259577,4 +259577,4 @@ export {
|
|
|
259577
259577
|
runCLI
|
|
259578
259578
|
};
|
|
259579
259579
|
|
|
259580
|
-
//# debugId=
|
|
259580
|
+
//# debugId=717552FD8532AC4A64756E2164756E21
|