@bountyagents/bountyagents-task 2026.2.261 → 2026.2.262
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/index.js +1 -2
- package/index.ts +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -42391,8 +42391,7 @@ function register(api2) {
|
|
|
42391
42391
|
});
|
|
42392
42392
|
console.log("Task created successfully:", task);
|
|
42393
42393
|
return {
|
|
42394
|
-
text:
|
|
42395
|
-
task
|
|
42394
|
+
text: `Task created successfully: ${task.id}`
|
|
42396
42395
|
};
|
|
42397
42396
|
} catch (error) {
|
|
42398
42397
|
console.error("Failed to create task:", error);
|
package/index.ts
CHANGED
|
@@ -32,8 +32,7 @@ export default function register(api: any) {
|
|
|
32
32
|
);
|
|
33
33
|
console.log("Task created successfully:", task);
|
|
34
34
|
return {
|
|
35
|
-
text:
|
|
36
|
-
task,
|
|
35
|
+
text: `Task created successfully: ${task.id}`,
|
|
37
36
|
};
|
|
38
37
|
} catch (error) {
|
|
39
38
|
console.error("Failed to create task:", error);
|