base44 0.0.2 → 0.0.3

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
@@ -17127,7 +17127,7 @@ async function deleteFile(filePath) {
17127
17127
 
17128
17128
  //#endregion
17129
17129
  //#region src/core/resources/entity/schema.ts
17130
- const EntitySchema = object({ name: string().min(1, "Entity name cannot be empty") });
17130
+ const EntitySchema = looseObject({ name: string().min(1, "Entity name cannot be empty") });
17131
17131
  const SyncEntitiesResponseSchema = object({
17132
17132
  created: array(string()),
17133
17133
  updated: array(string()),
@@ -19291,7 +19291,7 @@ const createCommand = new Command("create").description("Create a new Base44 pro
19291
19291
 
19292
19292
  //#endregion
19293
19293
  //#region package.json
19294
- var version = "0.0.1";
19294
+ var version = "0.0.2";
19295
19295
 
19296
19296
  //#endregion
19297
19297
  //#region src/cli/index.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "base44",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",