@xyo-network/bridge-http 5.3.7 → 5.3.9
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 +21 -21
- package/src/spec/HttpBridge.spec.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/bridge-http",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.9",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -36,34 +36,34 @@
|
|
|
36
36
|
"package.json"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@xyo-network/account": "~5.3.
|
|
40
|
-
"@xyo-network/boundwitness-model": "~5.3.
|
|
41
|
-
"@xyo-network/bridge-abstract": "~5.3.
|
|
42
|
-
"@xyo-network/bridge-model": "~5.3.
|
|
43
|
-
"@xyo-network/config-payload-plugin": "~5.3.
|
|
44
|
-
"@xyo-network/manifest-model": "~5.3.
|
|
45
|
-
"@xyo-network/module-model": "~5.3.
|
|
46
|
-
"@xyo-network/node-model": "~5.3.
|
|
47
|
-
"@xyo-network/payload-model": "~5.3.
|
|
39
|
+
"@xyo-network/account": "~5.3.9",
|
|
40
|
+
"@xyo-network/boundwitness-model": "~5.3.9",
|
|
41
|
+
"@xyo-network/bridge-abstract": "~5.3.9",
|
|
42
|
+
"@xyo-network/bridge-model": "~5.3.9",
|
|
43
|
+
"@xyo-network/config-payload-plugin": "~5.3.9",
|
|
44
|
+
"@xyo-network/manifest-model": "~5.3.9",
|
|
45
|
+
"@xyo-network/module-model": "~5.3.9",
|
|
46
|
+
"@xyo-network/node-model": "~5.3.9",
|
|
47
|
+
"@xyo-network/payload-model": "~5.3.9",
|
|
48
48
|
"async-mutex": "~0.5.0",
|
|
49
49
|
"lru-cache": "^11.2.6"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@types/node": "^25.
|
|
52
|
+
"@types/node": "^25.3.0",
|
|
53
53
|
"@xylabs/sdk-js": "^5.0.80",
|
|
54
54
|
"@xylabs/ts-scripts-yarn3": "~7.3.2",
|
|
55
55
|
"@xylabs/tsconfig": "~7.3.2",
|
|
56
56
|
"@xylabs/vitest-extended": "~5.0.80",
|
|
57
|
-
"@xyo-network/api-models": "~5.3.
|
|
58
|
-
"@xyo-network/archivist-model": "~5.3.
|
|
59
|
-
"@xyo-network/bridge-abstract": "~5.3.
|
|
60
|
-
"@xyo-network/diviner-model": "~5.3.
|
|
61
|
-
"@xyo-network/module-resolver": "~5.3.
|
|
62
|
-
"@xyo-network/node-memory": "~5.3.
|
|
63
|
-
"@xyo-network/node-model": "~5.3.
|
|
64
|
-
"@xyo-network/payload-builder": "~5.3.
|
|
65
|
-
"@xyo-network/payload-wrapper": "~5.3.
|
|
66
|
-
"@xyo-network/wallet": "~5.3.
|
|
57
|
+
"@xyo-network/api-models": "~5.3.9",
|
|
58
|
+
"@xyo-network/archivist-model": "~5.3.9",
|
|
59
|
+
"@xyo-network/bridge-abstract": "~5.3.9",
|
|
60
|
+
"@xyo-network/diviner-model": "~5.3.9",
|
|
61
|
+
"@xyo-network/module-resolver": "~5.3.9",
|
|
62
|
+
"@xyo-network/node-memory": "~5.3.9",
|
|
63
|
+
"@xyo-network/node-model": "~5.3.9",
|
|
64
|
+
"@xyo-network/payload-builder": "~5.3.9",
|
|
65
|
+
"@xyo-network/payload-wrapper": "~5.3.9",
|
|
66
|
+
"@xyo-network/wallet": "~5.3.9",
|
|
67
67
|
"axios": "^1.13.5",
|
|
68
68
|
"typescript": "~5.9.3",
|
|
69
69
|
"vitest": "~4.0.18",
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
} from '@xyo-network/archivist-model'
|
|
14
14
|
import type { ModuleDescriptionPayload } from '@xyo-network/module-model'
|
|
15
15
|
import {
|
|
16
|
-
|
|
16
|
+
isModuleInstance, isQueryableModule, isQueryableModuleObject,
|
|
17
17
|
ModuleDescriptionSchema,
|
|
18
18
|
} from '@xyo-network/module-model'
|
|
19
19
|
import { MemoryNode } from '@xyo-network/node-memory'
|
|
@@ -163,8 +163,8 @@ describe('HttpBridge', () => {
|
|
|
163
163
|
const mod = await bridge.resolve('XYOPublic')
|
|
164
164
|
|
|
165
165
|
expect(mod).toBeDefined()
|
|
166
|
-
expect(
|
|
167
|
-
expect(
|
|
166
|
+
expect(isQueryableModule(mod)).toBeTrue()
|
|
167
|
+
expect(isQueryableModuleObject(mod)).toBeTrue()
|
|
168
168
|
|
|
169
169
|
const remoteNode = asAttachableNodeInstance(
|
|
170
170
|
mod,
|