@wix/ditto-codegen-public 1.0.112 → 1.0.114
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 +6 -7
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -78113,7 +78113,7 @@ var require_instrumentation3 = __commonJS({
|
|
|
78113
78113
|
onStart(span) {
|
|
78114
78114
|
try {
|
|
78115
78115
|
span.setAttribute?.("session.id", this.sessionId);
|
|
78116
|
-
span.setAttribute?.("project.id", this.projectId);
|
|
78116
|
+
span.setAttribute?.("langfuse.metadata.project.id", this.projectId);
|
|
78117
78117
|
} catch {
|
|
78118
78118
|
}
|
|
78119
78119
|
}
|
|
@@ -132498,7 +132498,6 @@ var require_extensionProcessors = __commonJS({
|
|
|
132498
132498
|
const { extension, outputPath, plan, agentsFactory, eventEmitter, blueprint, userRequestSummary } = params;
|
|
132499
132499
|
const scaffolds = await (0, create_scaffolding_1.createScaffolding)(extension, outputPath, eventEmitter);
|
|
132500
132500
|
const agent = agentsFactory.getAgent(extension);
|
|
132501
|
-
eventEmitter.emitEvent("agent:start", { extension, name: agent.name });
|
|
132502
132501
|
const files = await agent.generate({
|
|
132503
132502
|
extension,
|
|
132504
132503
|
scaffolds,
|
|
@@ -132579,6 +132578,10 @@ var require_dashboardPage = __commonJS({
|
|
|
132579
132578
|
...blueprint && { blueprint },
|
|
132580
132579
|
...userRequestSummary && { userRequestSummary }
|
|
132581
132580
|
};
|
|
132581
|
+
eventEmitter.emitEvent("agent:start", {
|
|
132582
|
+
extension,
|
|
132583
|
+
name: "DashboardAgent"
|
|
132584
|
+
});
|
|
132582
132585
|
const decision = await decisionAgent.generate(decisionParams);
|
|
132583
132586
|
const useAutoPatterns = decision.useAutoPatterns && decision.schema && decision.relevantCollectionId;
|
|
132584
132587
|
if (!useAutoPatterns) {
|
|
@@ -132604,10 +132607,6 @@ var require_dashboardPage = __commonJS({
|
|
|
132604
132607
|
const autoPatternsGenerator = agentsFactory.getAgent({
|
|
132605
132608
|
type: "AUTO_PATTERNS_GENERATOR"
|
|
132606
132609
|
});
|
|
132607
|
-
eventEmitter.emitEvent("agent:start", {
|
|
132608
|
-
extension,
|
|
132609
|
-
name: "AutoPatternsGenerator"
|
|
132610
|
-
});
|
|
132611
132610
|
const files = autoPatternsGenerator.generate({
|
|
132612
132611
|
collection: relevantCollection,
|
|
132613
132612
|
decision,
|
|
@@ -132616,7 +132615,7 @@ var require_dashboardPage = __commonJS({
|
|
|
132616
132615
|
const pagePath = files[0].path || "";
|
|
132617
132616
|
(0, finalize_extension_generation_1.finalizeExtensionGeneration)({
|
|
132618
132617
|
extension,
|
|
132619
|
-
agentName: "
|
|
132618
|
+
agentName: "DashboardAgent",
|
|
132620
132619
|
agentFiles: files,
|
|
132621
132620
|
scaffoldPath: pagePath,
|
|
132622
132621
|
outputPath
|
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.114",
|
|
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": "e85ba5a0e9052c66fbd1b2eb90c8e0ad33b5e0534691776385ae6604"
|
|
28
28
|
}
|