@base44-preview/cli 0.0.47-pr.428.d13b4dc → 0.0.47-pr.429.400dfd0
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 +3 -3
- package/dist/cli/index.js.map +5 -5
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -238993,7 +238993,7 @@ async function fetchFunctionLogs(functionName, filters = {}) {
|
|
|
238993
238993
|
const searchParams = buildLogsQueryString(filters);
|
|
238994
238994
|
let response;
|
|
238995
238995
|
try {
|
|
238996
|
-
response = await appClient.get(`functions-mgmt/${functionName}/logs`, {
|
|
238996
|
+
response = await appClient.get(`functions-mgmt/${encodeURIComponent(functionName)}/logs`, {
|
|
238997
238997
|
searchParams
|
|
238998
238998
|
});
|
|
238999
238999
|
} catch (error48) {
|
|
@@ -251918,7 +251918,7 @@ function createProgram(context) {
|
|
|
251918
251918
|
program2.addCommand(getTypesCommand());
|
|
251919
251919
|
program2.addCommand(getExecCommand());
|
|
251920
251920
|
program2.addCommand(getDevCommand(), { hidden: true });
|
|
251921
|
-
program2.addCommand(getLogsCommand()
|
|
251921
|
+
program2.addCommand(getLogsCommand());
|
|
251922
251922
|
return program2;
|
|
251923
251923
|
}
|
|
251924
251924
|
|
|
@@ -256160,4 +256160,4 @@ export {
|
|
|
256160
256160
|
CLIExitError
|
|
256161
256161
|
};
|
|
256162
256162
|
|
|
256163
|
-
//# debugId=
|
|
256163
|
+
//# debugId=03E220E345F1F26964756E2164756E21
|