@wix/ditto-codegen-public 1.0.122 → 1.0.124
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/out.js +2 -6
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -66800,8 +66800,6 @@ var require_context = __commonJS({
|
|
|
66800
66800
|
history: new HistoryManager(),
|
|
66801
66801
|
projectId: process.env.PROJECT_ID || "test",
|
|
66802
66802
|
apiKey: process.env.ANTHROPIC_API_KEY,
|
|
66803
|
-
siteId: process.env.SITE_ID,
|
|
66804
|
-
accessToken: process.env.ACCESS_TOKEN,
|
|
66805
66803
|
appNamespace: process.env.APP_NAMESPACE,
|
|
66806
66804
|
hasActiveJobs: () => {
|
|
66807
66805
|
return Object.keys(exports2.ctx.activeJobs).some((jobId) => exports2.ctx.activeJobs[jobId] === ditto_codegen_types_12.Status.RUNNING);
|
|
@@ -78303,7 +78301,7 @@ var require_codeGenerationService = __commonJS({
|
|
|
78303
78301
|
exports2.codeGenerationService = void 0;
|
|
78304
78302
|
var CodeGenService_12 = require_CodeGenService();
|
|
78305
78303
|
var context_12 = require_context();
|
|
78306
|
-
var baseUrl2 = process.env.
|
|
78304
|
+
var baseUrl2 = process.env.CODEGEN_BASE_URL || "http://localhost:3000";
|
|
78307
78305
|
exports2.codeGenerationService = new CodeGenService_12.CodeGenService(baseUrl2, context_12.ctx.projectId);
|
|
78308
78306
|
}
|
|
78309
78307
|
});
|
|
@@ -139727,8 +139725,6 @@ var require_init_codegen = __commonJS({
|
|
|
139727
139725
|
await orchestrator.generateCode({
|
|
139728
139726
|
blueprint,
|
|
139729
139727
|
outputPath,
|
|
139730
|
-
siteId: context_12.ctx.siteId,
|
|
139731
|
-
accessToken: context_12.ctx.accessToken,
|
|
139732
139728
|
appNamespace: context_12.ctx.appNamespace
|
|
139733
139729
|
});
|
|
139734
139730
|
await (0, codegen_flow_helpers_1.updateParentTaskStatus)(localJobContext, ditto_codegen_types_12.Status.COMPLETED);
|
|
@@ -353786,7 +353782,7 @@ var initializeTracing = async () => {
|
|
|
353786
353782
|
process.exit(1);
|
|
353787
353783
|
}
|
|
353788
353784
|
};
|
|
353789
|
-
var baseUrl = process.env.
|
|
353785
|
+
var baseUrl = process.env.CODEGEN_BASE_URL || "http://localhost:3000";
|
|
353790
353786
|
exports.codeGenerationService = new CodeGenService_1.CodeGenService(baseUrl, context_1.ctx.projectId);
|
|
353791
353787
|
exports.jobCancellationMonitor = new job_cancellation_monitor_1.JobCancellationMonitor(exports.codeGenerationService);
|
|
353792
353788
|
var delay = (milliseconds) => new Promise((resolve) => setTimeout(resolve, milliseconds));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.124",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@wix/ditto-codegen": "1.0.0",
|
|
25
25
|
"esbuild": "^0.25.9"
|
|
26
26
|
},
|
|
27
|
-
"falconPackageHash": "
|
|
27
|
+
"falconPackageHash": "e4f5ce5aabb5fe810a948fc9fc11855d039bb3a4de126fd4bb29366a"
|
|
28
28
|
}
|