@base44-preview/cli 0.0.30-pr.222.4fab1c9 → 0.0.30-pr.223.517d2cd
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 +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -170135,10 +170135,10 @@ async function generateContent(input) {
|
|
|
170135
170135
|
const registryEntries = [
|
|
170136
170136
|
[
|
|
170137
170137
|
"EntityTypeRegistry",
|
|
170138
|
-
entities.map((e8) =>
|
|
170138
|
+
entities.map((e8) => `"${e8.name}": ${toPascalCase(e8.name)};`)
|
|
170139
170139
|
],
|
|
170140
|
-
["FunctionNameRegistry", functions.map((f7) =>
|
|
170141
|
-
["AgentNameRegistry", agents.map((a5) =>
|
|
170140
|
+
["FunctionNameRegistry", functions.map((f7) => `"${f7.name}": true;`)],
|
|
170141
|
+
["AgentNameRegistry", agents.map((a5) => `"${a5.name}": true;`)]
|
|
170142
170142
|
];
|
|
170143
170143
|
const registries2 = registryEntries.filter(([, entries]) => entries.length > 0).map(([name2, entries]) => registry2(name2, entries));
|
|
170144
170144
|
return [
|
|
@@ -174517,4 +174517,4 @@ export {
|
|
|
174517
174517
|
CLIExitError
|
|
174518
174518
|
};
|
|
174519
174519
|
|
|
174520
|
-
//# debugId=
|
|
174520
|
+
//# debugId=CAC914B71B29789364756E2164756E21
|