@xyo-network/crypto-plugins 3.4.1 → 3.4.3
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 +3 -4
- package/dist/neutral/index.d.ts.map +1 -0
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/index.ts +1 -1
- package/xy.config.ts +1 -1
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export * from '@xyo-network/crypto-cards-plugins';
|
|
2
2
|
export * from '@xyo-network/crypto-market-plugins';
|
|
3
3
|
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export { CryptoPlugins, CryptoPlugins as default };
|
|
4
|
+
export declare const CryptoPlugins: PayloadSetPluginFunc[];
|
|
5
|
+
export default CryptoPlugins;
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAIlD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,aAAa,EAAE,oBAAoB,EAAoD,CAAA;AAEpG,eAAe,aAAa,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/crypto-cards-plugins'\nexport * from '@xyo-network/crypto-market-plugins'\n\nimport { CryptoCardsPlugins } from '@xyo-network/crypto-cards-plugins'\nimport { CryptoMarketPlugins } from '@xyo-network/crypto-market-plugins'\nimport
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/crypto-cards-plugins'\nexport * from '@xyo-network/crypto-market-plugins'\n\nimport { CryptoCardsPlugins } from '@xyo-network/crypto-cards-plugins'\nimport { CryptoMarketPlugins } from '@xyo-network/crypto-market-plugins'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const CryptoPlugins: PayloadSetPluginFunc[] = [...CryptoCardsPlugins, ...CryptoMarketPlugins]\n\nexport default CryptoPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AAEd,SAAS,0BAA0B;AACnC,SAAS,2BAA2B;AAG7B,IAAM,gBAAwC,CAAC,GAAG,oBAAoB,GAAG,mBAAmB;AAEnG,IAAO,gBAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/crypto-plugins",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.3",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/crypto-cards-plugins": "^3.4.
|
|
33
|
-
"@xyo-network/crypto-market-plugins": "^3.4.
|
|
34
|
-
"@xyo-network/payloadset-plugin": "^3.
|
|
32
|
+
"@xyo-network/crypto-cards-plugins": "^3.4.3",
|
|
33
|
+
"@xyo-network/crypto-market-plugins": "^3.4.3",
|
|
34
|
+
"@xyo-network/payloadset-plugin": "^3.9.23"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
38
|
-
"@xylabs/tsconfig": "^5.0.
|
|
39
|
-
"typescript": "^5.
|
|
37
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.39",
|
|
38
|
+
"@xylabs/tsconfig": "^5.0.39",
|
|
39
|
+
"typescript": "^5.8.2"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
package/src/index.ts
CHANGED
|
@@ -3,7 +3,7 @@ export * from '@xyo-network/crypto-market-plugins'
|
|
|
3
3
|
|
|
4
4
|
import { CryptoCardsPlugins } from '@xyo-network/crypto-cards-plugins'
|
|
5
5
|
import { CryptoMarketPlugins } from '@xyo-network/crypto-market-plugins'
|
|
6
|
-
import
|
|
6
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'
|
|
7
7
|
|
|
8
8
|
export const CryptoPlugins: PayloadSetPluginFunc[] = [...CryptoCardsPlugins, ...CryptoMarketPlugins]
|
|
9
9
|
|
package/xy.config.ts
CHANGED