@wix/ditto-codegen-public 1.0.320 → 1.0.321
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 +3 -2
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -19175,6 +19175,7 @@ var require_biEvents = __commonJS({
|
|
|
19175
19175
|
void biLogger_1.biLogger.report((0, v2_2.codegenAgentSessionStartSrc11Evid299)(codegenAgentParams));
|
|
19176
19176
|
}
|
|
19177
19177
|
function reportSessionEnd(report) {
|
|
19178
|
+
const jobCost = report.jobCost ?? report.taskCost;
|
|
19178
19179
|
const devibeParams = {
|
|
19179
19180
|
Job_id: report.jobId,
|
|
19180
19181
|
Task_id: report.taskId,
|
|
@@ -19186,7 +19187,7 @@ var require_biEvents = __commonJS({
|
|
|
19186
19187
|
Task_model: report.taskModel,
|
|
19187
19188
|
Task_type: report.taskType,
|
|
19188
19189
|
Task_cost: report.taskCost,
|
|
19189
|
-
Job_cost:
|
|
19190
|
+
Job_cost: jobCost,
|
|
19190
19191
|
Task_status: report.taskStatus,
|
|
19191
19192
|
Agent_output: report.agentOutput,
|
|
19192
19193
|
Job_skills_used: report.skillsUsed?.join(","),
|
|
@@ -19197,7 +19198,7 @@ var require_biEvents = __commonJS({
|
|
|
19197
19198
|
const codegenAgentParams = {
|
|
19198
19199
|
job_id: report.jobId,
|
|
19199
19200
|
extra_data: report.extraData,
|
|
19200
|
-
job_cost:
|
|
19201
|
+
job_cost: jobCost,
|
|
19201
19202
|
dev_machine_session_id: report.devMachineSessionId,
|
|
19202
19203
|
run_kind: report.runKind,
|
|
19203
19204
|
environment: report.environment,
|
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.321",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"@wix/ditto-codegen": "1.0.0",
|
|
28
28
|
"esbuild": "^0.27.2"
|
|
29
29
|
},
|
|
30
|
-
"falconPackageHash": "
|
|
30
|
+
"falconPackageHash": "4de01707b6f87690cb341f1b294049710eb5ab1e8e0744f221cdc335"
|
|
31
31
|
}
|