@xyo-network/system-payload-plugins 2.41.12 → 2.42.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/cjs/index.d.ts +2 -2
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/docs.json +184 -5019
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +3 -3
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from '@xyo-network/info-system-payload-plugins';
|
|
2
|
-
import {
|
|
3
|
-
export declare const XyoSystemPlugins:
|
|
2
|
+
import { XyoPayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
+
export declare const XyoSystemPlugins: XyoPayloadPluginFunc[];
|
|
4
4
|
export default XyoSystemPlugins;
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAA;AAGxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAA;AAGxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAA;AAElE,eAAO,MAAM,gBAAgB,EAAE,oBAAoB,EAAqC,CAAA;AAGxF,eAAe,gBAAgB,CAAA"}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from '@xyo-network/info-system-payload-plugins';
|
|
2
|
-
import {
|
|
3
|
-
export const XyoSystemPlugins = [...
|
|
2
|
+
import { XyoSystemInfoPayloadPlugins } from '@xyo-network/info-system-payload-plugins';
|
|
3
|
+
export const XyoSystemPlugins = [...XyoSystemInfoPayloadPlugins];
|
|
4
4
|
// eslint-disable-next-line import/no-default-export
|
|
5
5
|
export default XyoSystemPlugins;
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAA;AAExD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAA;AAExD,OAAO,EAAE,2BAA2B,EAAE,MAAM,0CAA0C,CAAA;AAGtF,MAAM,CAAC,MAAM,gBAAgB,GAA2B,CAAC,GAAG,2BAA2B,CAAC,CAAA;AAExF,oDAAoD;AACpD,eAAe,gBAAgB,CAAA"}
|
package/package.json
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/info-system-payload-plugins": "^2.
|
|
14
|
-
"@xyo-network/
|
|
13
|
+
"@xyo-network/info-system-payload-plugins": "^2.42.0",
|
|
14
|
+
"@xyo-network/payload-plugin": "^2.42.0",
|
|
15
15
|
"tslib": "^2.4.1"
|
|
16
16
|
},
|
|
17
17
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
},
|
|
48
48
|
"sideEffects": false,
|
|
49
49
|
"types": "dist/esm/index.d.ts",
|
|
50
|
-
"version": "2.
|
|
50
|
+
"version": "2.42.0"
|
|
51
51
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export * from '@xyo-network/info-system-payload-plugins'
|
|
2
2
|
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { XyoSystemInfoPayloadPlugins } from '@xyo-network/info-system-payload-plugins'
|
|
4
|
+
import { XyoPayloadPluginFunc } from '@xyo-network/payload-plugin'
|
|
5
5
|
|
|
6
|
-
export const XyoSystemPlugins:
|
|
6
|
+
export const XyoSystemPlugins: XyoPayloadPluginFunc[] = [...XyoSystemInfoPayloadPlugins]
|
|
7
7
|
|
|
8
8
|
// eslint-disable-next-line import/no-default-export
|
|
9
9
|
export default XyoSystemPlugins
|