@xyo-network/diviner-model 2.53.15 → 2.53.17
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 +1222 -462
- package/dist/types/Queries/Divine.d.ts +2 -2
- package/dist/types/Queries/Divine.d.ts.map +1 -1
- package/dist/types/Queries/index.d.ts +2 -2
- package/dist/types/Queries/index.d.ts.map +1 -1
- package/package.json +6 -6
- package/src/Queries/Divine.ts +2 -2
- package/src/Queries/index.ts +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Query } from '@xyo-network/module-model';
|
|
2
2
|
export type XyoDivinerDivineQuerySchema = 'network.xyo.query.diviner.divine';
|
|
3
3
|
export declare const XyoDivinerDivineQuerySchema: XyoDivinerDivineQuerySchema;
|
|
4
|
-
export type XyoDivinerDivineQuery =
|
|
4
|
+
export type XyoDivinerDivineQuery = Query<{
|
|
5
5
|
schema: XyoDivinerDivineQuerySchema;
|
|
6
6
|
}>;
|
|
7
7
|
//# sourceMappingURL=Divine.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Divine.d.ts","sourceRoot":"","sources":["../../../src/Queries/Divine.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"Divine.d.ts","sourceRoot":"","sources":["../../../src/Queries/Divine.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAA;AAEjD,MAAM,MAAM,2BAA2B,GAAG,kCAAkC,CAAA;AAC5E,eAAO,MAAM,2BAA2B,EAAE,2BAAgE,CAAA;AAE1G,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC;IACxC,MAAM,EAAE,2BAA2B,CAAA;CACpC,CAAC,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './Divine';
|
|
2
|
-
import { ModuleQuery,
|
|
2
|
+
import { ModuleQuery, Query } from '@xyo-network/module-model';
|
|
3
3
|
import { XyoDivinerDivineQuery } from './Divine';
|
|
4
4
|
export type XyoDivinerQueryBase = XyoDivinerDivineQuery;
|
|
5
|
-
export type XyoDivinerQuery<TQuery extends
|
|
5
|
+
export type XyoDivinerQuery<TQuery extends Query | void = void> = ModuleQuery<TQuery extends Query ? XyoDivinerQueryBase | TQuery : XyoDivinerQueryBase>;
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Queries/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AAExB,OAAO,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Queries/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AAExB,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAA;AAE9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,MAAM,mBAAmB,GAAG,qBAAqB,CAAA;AAEvD,MAAM,MAAM,eAAe,CAAC,MAAM,SAAS,KAAK,GAAG,IAAI,GAAG,IAAI,IAAI,WAAW,CAC3E,MAAM,SAAS,KAAK,GAAG,mBAAmB,GAAG,MAAM,GAAG,mBAAmB,CAC1E,CAAA"}
|
package/package.json
CHANGED
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/core": "^2.53.
|
|
14
|
-
"@xyo-network/module": "^2.53.
|
|
15
|
-
"@xyo-network/module-model": "^2.53.
|
|
16
|
-
"@xyo-network/payload-model": "^2.53.
|
|
17
|
-
"@xyo-network/promise": "^2.53.
|
|
13
|
+
"@xyo-network/core": "^2.53.17",
|
|
14
|
+
"@xyo-network/module": "^2.53.17",
|
|
15
|
+
"@xyo-network/module-model": "^2.53.17",
|
|
16
|
+
"@xyo-network/payload-model": "^2.53.17",
|
|
17
|
+
"@xyo-network/promise": "^2.53.17"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@xylabs/ts-scripts-yarn3": "^2.16.1",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
},
|
|
55
55
|
"sideEffects": false,
|
|
56
56
|
"types": "dist/types/index.d.ts",
|
|
57
|
-
"version": "2.53.
|
|
57
|
+
"version": "2.53.17"
|
|
58
58
|
}
|
package/src/Queries/Divine.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Query } from '@xyo-network/module-model'
|
|
2
2
|
|
|
3
3
|
export type XyoDivinerDivineQuerySchema = 'network.xyo.query.diviner.divine'
|
|
4
4
|
export const XyoDivinerDivineQuerySchema: XyoDivinerDivineQuerySchema = 'network.xyo.query.diviner.divine'
|
|
5
5
|
|
|
6
|
-
export type XyoDivinerDivineQuery =
|
|
6
|
+
export type XyoDivinerDivineQuery = Query<{
|
|
7
7
|
schema: XyoDivinerDivineQuerySchema
|
|
8
8
|
}>
|
package/src/Queries/index.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export * from './Divine'
|
|
2
2
|
|
|
3
|
-
import { ModuleQuery,
|
|
3
|
+
import { ModuleQuery, Query } from '@xyo-network/module-model'
|
|
4
4
|
|
|
5
5
|
import { XyoDivinerDivineQuery } from './Divine'
|
|
6
6
|
|
|
7
7
|
export type XyoDivinerQueryBase = XyoDivinerDivineQuery
|
|
8
8
|
|
|
9
|
-
export type XyoDivinerQuery<TQuery extends
|
|
10
|
-
TQuery extends
|
|
9
|
+
export type XyoDivinerQuery<TQuery extends Query | void = void> = ModuleQuery<
|
|
10
|
+
TQuery extends Query ? XyoDivinerQueryBase | TQuery : XyoDivinerQueryBase
|
|
11
11
|
>
|