@xyo-network/node-model 2.56.1 → 2.57.4
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/docs.json +7806 -1772
- package/dist/types/Queries/index.d.ts +2 -1
- package/dist/types/Queries/index.d.ts.map +1 -1
- package/package.json +8 -8
- package/src/Queries/index.ts +2 -2
- package/typedoc.json +5 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ModuleQuery, Query } from '@xyo-network/module-model';
|
|
1
|
+
import { ModuleQuery, ModuleQueryBase, Query } from '@xyo-network/module-model';
|
|
2
2
|
import { XyoNodeAttachQuery } from './Attach';
|
|
3
3
|
import { XyoNodeAttachedQuery } from './Attached';
|
|
4
4
|
import { XyoNodeDetachQuery } from './Detach';
|
|
@@ -8,5 +8,6 @@ export * from './Attached';
|
|
|
8
8
|
export * from './Detach';
|
|
9
9
|
export * from './Registered';
|
|
10
10
|
export type XyoNodeQueryBase = XyoNodeAttachQuery | XyoNodeDetachQuery | XyoNodeAttachedQuery | XyoNodeRegisteredQuery;
|
|
11
|
+
export type XyoNodeModuleQueries = ModuleQueryBase | XyoNodeQueryBase;
|
|
11
12
|
export type XyoNodeQuery<T extends Query | void = void> = ModuleQuery<T extends Query ? XyoNodeQueryBase | T : XyoNodeQueryBase>;
|
|
12
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Queries/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Queries/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAA;AAE/E,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAC7C,OAAO,EAAE,oBAAoB,EAAE,MAAM,YAAY,CAAA;AACjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAC7C,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAA;AAErD,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,UAAU,CAAA;AACxB,cAAc,cAAc,CAAA;AAE5B,MAAM,MAAM,gBAAgB,GAAG,kBAAkB,GAAG,kBAAkB,GAAG,oBAAoB,GAAG,sBAAsB,CAAA;AACtH,MAAM,MAAM,oBAAoB,GAAG,eAAe,GAAG,gBAAgB,CAAA;AACrE,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,KAAK,GAAG,IAAI,GAAG,IAAI,IAAI,WAAW,CAAC,CAAC,SAAS,KAAK,GAAG,gBAAgB,GAAG,CAAC,GAAG,gBAAgB,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/core": "^2.
|
|
14
|
-
"@xyo-network/module": "^2.
|
|
15
|
-
"@xyo-network/module-model": "^2.
|
|
16
|
-
"@xyo-network/payload-model": "^2.
|
|
17
|
-
"@xyo-network/promise": "^2.
|
|
13
|
+
"@xyo-network/core": "^2.57.4",
|
|
14
|
+
"@xyo-network/module": "^2.57.4",
|
|
15
|
+
"@xyo-network/module-model": "^2.57.4",
|
|
16
|
+
"@xyo-network/payload-model": "^2.57.4",
|
|
17
|
+
"@xyo-network/promise": "^2.57.4"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@xylabs/ts-scripts-yarn3": "^2.17.
|
|
21
|
-
"@xylabs/tsconfig": "^2.17.
|
|
20
|
+
"@xylabs/ts-scripts-yarn3": "^2.17.12",
|
|
21
|
+
"@xylabs/tsconfig": "^2.17.12",
|
|
22
22
|
"typescript": "^5.0.4"
|
|
23
23
|
},
|
|
24
24
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
},
|
|
55
55
|
"sideEffects": false,
|
|
56
56
|
"types": "dist/types/index.d.ts",
|
|
57
|
-
"version": "2.
|
|
57
|
+
"version": "2.57.4"
|
|
58
58
|
}
|
package/src/Queries/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ModuleQuery, Query } from '@xyo-network/module-model'
|
|
1
|
+
import { ModuleQuery, ModuleQueryBase, Query } from '@xyo-network/module-model'
|
|
2
2
|
|
|
3
3
|
import { XyoNodeAttachQuery } from './Attach'
|
|
4
4
|
import { XyoNodeAttachedQuery } from './Attached'
|
|
@@ -11,5 +11,5 @@ export * from './Detach'
|
|
|
11
11
|
export * from './Registered'
|
|
12
12
|
|
|
13
13
|
export type XyoNodeQueryBase = XyoNodeAttachQuery | XyoNodeDetachQuery | XyoNodeAttachedQuery | XyoNodeRegisteredQuery
|
|
14
|
-
|
|
14
|
+
export type XyoNodeModuleQueries = ModuleQueryBase | XyoNodeQueryBase
|
|
15
15
|
export type XyoNodeQuery<T extends Query | void = void> = ModuleQuery<T extends Query ? XyoNodeQueryBase | T : XyoNodeQueryBase>
|