@base44-preview/cli 0.0.15-pr.97.767bf58 → 0.0.15-pr.97.98311f6

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
@@ -16709,7 +16709,7 @@ const CreateProjectResponseSchema = looseObject({ id: string() });
16709
16709
  const AppSchema = looseObject({
16710
16710
  id: string(),
16711
16711
  name: string(),
16712
- is_managed_source_code: boolean()
16712
+ is_managed_source_code: boolean().optional()
16713
16713
  });
16714
16714
  const AppsResponseSchema = array(AppSchema);
16715
16715
 
@@ -16801,7 +16801,7 @@ async function fetchApps() {
16801
16801
  return AppsResponseSchema.parse(await response.json());
16802
16802
  }
16803
16803
  async function fetchLinkableApps() {
16804
- return (await fetchApps()).filter((app) => !app.is_managed_source_code);
16804
+ return (await fetchApps()).filter((app) => app.is_managed_source_code === false);
16805
16805
  }
16806
16806
 
16807
16807
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/cli",
3
- "version": "0.0.15-pr.97.767bf58",
3
+ "version": "0.0.15-pr.97.98311f6",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",