base44 0.0.13 → 0.0.14

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 CHANGED
@@ -16959,7 +16959,7 @@ async function createProject(projectName, description) {
16959
16959
  const response = await base44Client.post("api/apps", { json: {
16960
16960
  name: projectName,
16961
16961
  user_description: description ?? `Backend for '${projectName}'`,
16962
- app_type: "baas",
16962
+ is_managed_source_code: false,
16963
16963
  public_settings: "public_without_login"
16964
16964
  } });
16965
16965
  return { projectId: CreateProjectResponseSchema.parse(await response.json()).id };
@@ -39002,7 +39002,7 @@ const siteDeployCommand = new Command("site").description("Manage site deploymen
39002
39002
 
39003
39003
  //#endregion
39004
39004
  //#region package.json
39005
- var version = "0.0.13";
39005
+ var version = "0.0.14";
39006
39006
 
39007
39007
  //#endregion
39008
39008
  //#region src/cli/index.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "base44",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",