@base44-preview/cli 0.1.5-pr.573.d0b3340 → 0.1.5-pr.573.df76607
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 +4 -4
- package/dist/cli/index.js.map +5 -5
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -251683,7 +251683,7 @@ async function pushAgentsAction({ isNonInteractive, log, runTask: runTask2 }, op
|
|
|
251683
251683
|
return { outroMessage: "Agents pushed to Base44" };
|
|
251684
251684
|
}
|
|
251685
251685
|
function getAgentsPushCommand() {
|
|
251686
|
-
return new Base44Command("push").description("Push local agents to Base44 (replaces all remote agent configs)").option("-y, --yes", "Skip confirmation prompt").action(pushAgentsAction);
|
|
251686
|
+
return new Base44Command("push").description("Push local agents to Base44 (replaces all remote agent configs)").option("-y, --yes", "Skip the confirmation prompt").action(pushAgentsAction);
|
|
251687
251687
|
}
|
|
251688
251688
|
|
|
251689
251689
|
// src/cli/commands/agents/index.ts
|
|
@@ -253080,7 +253080,7 @@ async function pushConnectorsAction({ isNonInteractive, log, runTask: runTask2,
|
|
|
253080
253080
|
return { outroMessage };
|
|
253081
253081
|
}
|
|
253082
253082
|
function getConnectorsPushCommand() {
|
|
253083
|
-
return new Base44Command("push").description("Push local connectors to Base44 (overwrites connectors on Base44)").option("--dir <path>", "Directory to read connector files from (default: ./connectors when using --app-id)").option("-y, --yes", "Skip confirmation prompt").action(pushConnectorsAction);
|
|
253083
|
+
return new Base44Command("push").description("Push local connectors to Base44 (overwrites connectors on Base44)").option("--dir <path>", "Directory to read connector files from (default: ./connectors when using --app-id)").option("-y, --yes", "Skip the confirmation prompt").action(pushConnectorsAction);
|
|
253084
253084
|
}
|
|
253085
253085
|
|
|
253086
253086
|
// src/cli/commands/connectors/index.ts
|
|
@@ -253142,7 +253142,7 @@ async function pushEntitiesAction({ isNonInteractive, log, runTask: runTask2 },
|
|
|
253142
253142
|
return { outroMessage: "Entities pushed to Base44" };
|
|
253143
253143
|
}
|
|
253144
253144
|
function getEntitiesPushCommand() {
|
|
253145
|
-
return new Command("entities").description("Manage project entities").addCommand(new Base44Command("push").description("Push local entities to Base44").option("-y, --yes", "Skip confirmation prompt").action(pushEntitiesAction));
|
|
253145
|
+
return new Command("entities").description("Manage project entities").addCommand(new Base44Command("push").description("Push local entities to Base44").option("-y, --yes", "Skip the confirmation prompt").action(pushEntitiesAction));
|
|
253146
253146
|
}
|
|
253147
253147
|
|
|
253148
253148
|
// src/cli/commands/functions/delete.ts
|
|
@@ -262992,4 +262992,4 @@ export {
|
|
|
262992
262992
|
CLIExitError
|
|
262993
262993
|
};
|
|
262994
262994
|
|
|
262995
|
-
//# debugId=
|
|
262995
|
+
//# debugId=9459F100153243A464756E2164756E21
|