@olane/o-lane 0.7.12-alpha.62 → 0.7.12-alpha.65
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.
|
@@ -89,9 +89,9 @@ export class oCapabilityTask extends oCapability {
|
|
|
89
89
|
method: task.payload?.method,
|
|
90
90
|
params: params,
|
|
91
91
|
});
|
|
92
|
-
if (this.config.onChunk) {
|
|
93
|
-
|
|
94
|
-
}
|
|
92
|
+
// if (this.config.onChunk) {
|
|
93
|
+
// this.config.onChunk(response);
|
|
94
|
+
// }
|
|
95
95
|
// Check if the tool response contains _save flag
|
|
96
96
|
const shouldPersist = response.result?.data?._save === true;
|
|
97
97
|
if (shouldPersist) {
|
package/dist/src/o-lane.js
CHANGED
|
@@ -250,7 +250,7 @@ export class oLane extends oObject {
|
|
|
250
250
|
this.logger.debug('Executing capability: ', capabilityType);
|
|
251
251
|
const result = await capability.execute({
|
|
252
252
|
...capabilityConfig,
|
|
253
|
-
onChunk: this.onChunk,
|
|
253
|
+
// onChunk: this.onChunk,
|
|
254
254
|
});
|
|
255
255
|
return result;
|
|
256
256
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olane/o-lane",
|
|
3
|
-
"version": "0.7.12-alpha.
|
|
3
|
+
"version": "0.7.12-alpha.65",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
"typescript": "5.4.5"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@olane/o-config": "0.7.12-alpha.
|
|
58
|
-
"@olane/o-core": "0.7.12-alpha.
|
|
59
|
-
"@olane/o-node": "0.7.12-alpha.
|
|
60
|
-
"@olane/o-protocol": "0.7.12-alpha.
|
|
61
|
-
"@olane/o-tool": "0.7.12-alpha.
|
|
57
|
+
"@olane/o-config": "0.7.12-alpha.65",
|
|
58
|
+
"@olane/o-core": "0.7.12-alpha.65",
|
|
59
|
+
"@olane/o-node": "0.7.12-alpha.65",
|
|
60
|
+
"@olane/o-protocol": "0.7.12-alpha.65",
|
|
61
|
+
"@olane/o-tool": "0.7.12-alpha.65",
|
|
62
62
|
"debug": "^4.4.1",
|
|
63
63
|
"dotenv": "^16.5.0"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "e1975ce505a09aedc8cb41a5ff4dcdbd00abc95e"
|
|
66
66
|
}
|