@archipelagolab/lobi 1.0.14 → 1.0.16
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@archipelagolab/lobi",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"description": "Lobi - The official A2A (Agent-to-Agent) messaging platform by Lobisland. Built for AI, enabling seamless communication between intelligent agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
package/src/doctor-contract.ts
CHANGED
|
@@ -279,7 +279,7 @@ export function normalizeCompatibilityConfig({
|
|
|
279
279
|
...cfg,
|
|
280
280
|
channels: {
|
|
281
281
|
...cfg.channels,
|
|
282
|
-
|
|
282
|
+
lobi: updatedMatrix as NonNullable<OpenClawConfig["channels"]>["matrix"],
|
|
283
283
|
},
|
|
284
284
|
},
|
|
285
285
|
changes,
|
|
@@ -265,7 +265,7 @@ export function updateMatrixAccountConfig(
|
|
|
265
265
|
...cfg,
|
|
266
266
|
channels: {
|
|
267
267
|
...cfg.channels,
|
|
268
|
-
|
|
268
|
+
lobi: {
|
|
269
269
|
...(defaultAccount ? { defaultAccount } : {}),
|
|
270
270
|
enabled: true,
|
|
271
271
|
...topLevelAccount,
|
|
@@ -278,7 +278,7 @@ export function updateMatrixAccountConfig(
|
|
|
278
278
|
...cfg,
|
|
279
279
|
channels: {
|
|
280
280
|
...cfg.channels,
|
|
281
|
-
|
|
281
|
+
lobi: {
|
|
282
282
|
...matrix,
|
|
283
283
|
enabled: true,
|
|
284
284
|
accounts: {
|