@xyo-network/module-wrapper 5.3.5 → 5.3.7
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/neutral/ModuleWrapper.d.ts +1 -1
- package/package.json +13 -11
|
@@ -49,7 +49,7 @@ export declare class ModuleWrapper<TWrappedModule extends Module = Module> exten
|
|
|
49
49
|
get status(): ModuleStatus;
|
|
50
50
|
get upResolver(): ModuleResolverInstance;
|
|
51
51
|
protected set status(value: ModuleStatus);
|
|
52
|
-
static canWrap(mod?: Module): mod is Module<import("@xyo-network/module-model").
|
|
52
|
+
static canWrap(mod?: Module): mod is Module<import("@xyo-network/module-model").QueryableModuleParams<import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>>, import("@xyo-network/module-model").ModuleEventData<object>>;
|
|
53
53
|
static hasRequiredQueries(mod: Module): boolean;
|
|
54
54
|
static is<TModuleWrapper extends ModuleWrapper>(this: ConstructableModuleWrapper<TModuleWrapper>, wrapper: any): wrapper is TModuleWrapper;
|
|
55
55
|
static missingRequiredQueries(mod: Module): string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/module-wrapper",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.7",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -36,23 +36,25 @@
|
|
|
36
36
|
"!**/*.test.*"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@xyo-network/account-model": "~5.3.
|
|
40
|
-
"@xyo-network/boundwitness-builder": "~5.3.
|
|
41
|
-
"@xyo-network/boundwitness-model": "~5.3.
|
|
42
|
-
"@xyo-network/boundwitness-wrapper": "~5.3.
|
|
43
|
-
"@xyo-network/manifest-model": "~5.3.
|
|
44
|
-
"@xyo-network/module-model": "~5.3.
|
|
45
|
-
"@xyo-network/payload-model": "~5.3.
|
|
39
|
+
"@xyo-network/account-model": "~5.3.7",
|
|
40
|
+
"@xyo-network/boundwitness-builder": "~5.3.7",
|
|
41
|
+
"@xyo-network/boundwitness-model": "~5.3.7",
|
|
42
|
+
"@xyo-network/boundwitness-wrapper": "~5.3.7",
|
|
43
|
+
"@xyo-network/manifest-model": "~5.3.7",
|
|
44
|
+
"@xyo-network/module-model": "~5.3.7",
|
|
45
|
+
"@xyo-network/payload-model": "~5.3.7",
|
|
46
46
|
"lru-cache": "^11.2.6"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@xylabs/sdk-js": "^5.0.
|
|
49
|
+
"@xylabs/sdk-js": "^5.0.80",
|
|
50
50
|
"@xylabs/ts-scripts-yarn3": "~7.3.2",
|
|
51
51
|
"@xylabs/tsconfig": "~7.3.2",
|
|
52
|
-
"typescript": "~5.9.3"
|
|
52
|
+
"typescript": "~5.9.3",
|
|
53
|
+
"zod": "^4.3.6"
|
|
53
54
|
},
|
|
54
55
|
"peerDependencies": {
|
|
55
|
-
"@xylabs/sdk-js": "^5"
|
|
56
|
+
"@xylabs/sdk-js": "^5",
|
|
57
|
+
"zod": "^4"
|
|
56
58
|
},
|
|
57
59
|
"publishConfig": {
|
|
58
60
|
"access": "public"
|