@xyo-network/crypto-asset-plugin 4.1.1 → 4.2.0
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/index.d.ts +4 -26
- package/package.json +15 -16
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,26 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
|
|
6
|
-
|
|
7
|
-
type CryptoMarketAssetDivinerQuerySchema = 'network.xyo.crypto.asset.diviner.query';
|
|
8
|
-
declare const CryptoMarketAssetDivinerQuerySchema: CryptoMarketAssetDivinerQuerySchema;
|
|
9
|
-
type CryptoMarketAssetDivinerConfigSchema = 'network.xyo.crypto.asset.diviner.config';
|
|
10
|
-
declare const CryptoMarketAssetDivinerConfigSchema: CryptoMarketAssetDivinerConfigSchema;
|
|
11
|
-
|
|
12
|
-
type CryptoMarketAssetDivinerConfig = DivinerConfig<{
|
|
13
|
-
schema: CryptoMarketAssetDivinerConfigSchema;
|
|
14
|
-
}>;
|
|
15
|
-
type CryptoMarketAssetDivinerParams = DivinerParams<AnyConfigSchema<CryptoMarketAssetDivinerConfig>>;
|
|
16
|
-
declare class CryptoMarketAssetDiviner<TParams extends CryptoMarketAssetDivinerParams = CryptoMarketAssetDivinerParams> extends AbstractDiviner<TParams> implements DivinerModule, Module {
|
|
17
|
-
static readonly configSchemas: Schema[];
|
|
18
|
-
static readonly defaultConfigSchema: Schema;
|
|
19
|
-
static readonly targetSchema: "network.xyo.crypto.asset";
|
|
20
|
-
protected divineHandler(payloads?: Payload[]): Payload[];
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
declare const CryptoMarketAssetPlugin: () => _xyo_network_payloadset_plugin.PayloadSetDivinerPlugin<CryptoMarketAssetDiviner<CryptoMarketAssetDivinerParams>>;
|
|
24
|
-
|
|
25
|
-
export { CryptoMarketAssetDiviner, CryptoMarketAssetDivinerConfigSchema, CryptoMarketAssetDivinerQuerySchema, CryptoMarketAssetPlugin, CryptoMarketAssetPlugin as default };
|
|
26
|
-
export type { CryptoMarketAssetDivinerConfig, CryptoMarketAssetDivinerParams };
|
|
1
|
+
export * from './Diviner.ts';
|
|
2
|
+
export { CryptoMarketAssetPlugin, CryptoMarketAssetPlugin as default } from './Plugin.ts';
|
|
3
|
+
export * from './Schema.ts';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/crypto-asset-plugin",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,23 +29,22 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/assert": "^4.
|
|
33
|
-
"@xylabs/exists": "^4.
|
|
34
|
-
"@xyo-network/coingecko-crypto-market-payload-plugin": "^4.
|
|
35
|
-
"@xyo-network/crypto-asset-payload-plugin": "^4.
|
|
36
|
-
"@xyo-network/diviner-abstract": "^4.
|
|
37
|
-
"@xyo-network/diviner-model": "^4.
|
|
38
|
-
"@xyo-network/module-model": "^4.
|
|
39
|
-
"@xyo-network/payload-builder": "^4.
|
|
40
|
-
"@xyo-network/payload-model": "^4.
|
|
41
|
-
"@xyo-network/payloadset-plugin": "^4.
|
|
42
|
-
"@xyo-network/uniswap-crypto-market-payload-plugin": "^4.
|
|
32
|
+
"@xylabs/assert": "^4.15.1",
|
|
33
|
+
"@xylabs/exists": "^4.15.1",
|
|
34
|
+
"@xyo-network/coingecko-crypto-market-payload-plugin": "^4.2.0",
|
|
35
|
+
"@xyo-network/crypto-asset-payload-plugin": "^4.2.0",
|
|
36
|
+
"@xyo-network/diviner-abstract": "^4.3.0",
|
|
37
|
+
"@xyo-network/diviner-model": "^4.3.0",
|
|
38
|
+
"@xyo-network/module-model": "^4.3.0",
|
|
39
|
+
"@xyo-network/payload-builder": "^4.3.0",
|
|
40
|
+
"@xyo-network/payload-model": "^4.3.0",
|
|
41
|
+
"@xyo-network/payloadset-plugin": "^4.3.0",
|
|
42
|
+
"@xyo-network/uniswap-crypto-market-payload-plugin": "^4.2.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.
|
|
46
|
-
"@xylabs/tsconfig": "^7.0.
|
|
47
|
-
"@xylabs/vitest-extended": "^4.
|
|
48
|
-
"knip": "^5.62.0",
|
|
45
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.1",
|
|
46
|
+
"@xylabs/tsconfig": "^7.0.1",
|
|
47
|
+
"@xylabs/vitest-extended": "^4.15.1",
|
|
49
48
|
"typescript": "^5.8.3",
|
|
50
49
|
"vitest": "^3.2.4"
|
|
51
50
|
},
|