@xyo-network/xns-payload-plugins 5.3.2 → 5.3.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.
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from '@xyo-network/xns-record-payload-plugins';
|
|
2
|
+
import type { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
+
export declare const XnsRecordPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
+
export default XnsRecordPayloadPlugins;
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yCAAyC,CAAA;AAEvD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAEpE,eAAO,MAAM,uBAAuB,EAAE,iBAAiB,EAEtD,CAAA;AAED,eAAe,uBAAuB,CAAA"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "@xyo-network/xns-record-payload-plugins";
|
|
3
|
+
var XnsRecordPayloadPlugins = [
|
|
4
|
+
// TODO: Exports from xns-record-payload-plugins
|
|
5
|
+
];
|
|
6
|
+
var index_default = XnsRecordPayloadPlugins;
|
|
7
|
+
export {
|
|
8
|
+
XnsRecordPayloadPlugins,
|
|
9
|
+
index_default as default
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/xns-record-payload-plugins'\n\nimport type { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const XnsRecordPayloadPlugins: PayloadPluginFunc[] = [\n // TODO: Exports from xns-record-payload-plugins\n]\n\nexport default XnsRecordPayloadPlugins\n"],"mappings":";AAAA,cAAc;AAIP,IAAM,0BAA+C;AAAA;AAE5D;AAEA,IAAO,gBAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/xns-payload-plugins",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.4",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -30,13 +30,14 @@
|
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"files": [
|
|
32
32
|
"dist",
|
|
33
|
-
"
|
|
34
|
-
"!**/*.bench.*",
|
|
35
|
-
"!**/*.spec.*",
|
|
36
|
-
"!**/*.test.*"
|
|
33
|
+
"README.md"
|
|
37
34
|
],
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@xyo-network/xns-record-payload-plugins": "~5.3.4"
|
|
37
|
+
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@xylabs/sdk-js": "^5.0.90",
|
|
40
|
+
"@xylabs/ts-scripts-common": "~7.5.10",
|
|
40
41
|
"@xylabs/ts-scripts-yarn3": "~7.5.10",
|
|
41
42
|
"@xylabs/tsconfig": "~7.5.10",
|
|
42
43
|
"@xylabs/vitest-extended": "~5.0.90",
|
|
@@ -52,13 +53,13 @@
|
|
|
52
53
|
"@xyo-network/wallet": "~5.3.5",
|
|
53
54
|
"@xyo-network/wallet-model": "~5.3.5",
|
|
54
55
|
"@xyo-network/witness-model": "~5.3.5",
|
|
55
|
-
"@xyo-network/xns-record-payload-plugins": "5.3.2",
|
|
56
56
|
"typescript": "~5.9.3",
|
|
57
57
|
"vitest": "~4.1.2",
|
|
58
58
|
"zod": "^4.3.6"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"@xylabs/sdk-js": "^5",
|
|
62
|
+
"@xyo-network/payload-plugin": "^5",
|
|
62
63
|
"zod": "^4"
|
|
63
64
|
},
|
|
64
65
|
"publishConfig": {
|
package/src/index.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/xns-record-payload-plugins'
|
|
2
|
-
|
|
3
|
-
import type { PayloadPluginFunc } from '@xyo-network/payload-plugin'
|
|
4
|
-
|
|
5
|
-
export const XnsRecordPayloadPlugins: PayloadPluginFunc[] = [
|
|
6
|
-
// TODO: Exports from xns-record-payload-plugins
|
|
7
|
-
]
|
|
8
|
-
|
|
9
|
-
export default XnsRecordPayloadPlugins
|