@xyo-network/sdk-js 3.9.17 → 3.9.19
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/browser/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,cAAc,mCAAmC,CAAA;AACjD,cAAc,uBAAuB,CAAA;AACrC,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA"}
|
package/dist/neutral/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,cAAc,mCAAmC,CAAA;AACjD,cAAc,uBAAuB,CAAA;AACrC,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA"}
|
package/dist/node/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,cAAc,mCAAmC,CAAA;AACjD,cAAc,uBAAuB,CAAA;AACrC,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA"}
|
package/eslint.config.mjs
CHANGED
|
@@ -80,16 +80,5 @@ export default [
|
|
|
80
80
|
'import-x/no-cycle': ['warn', { maxDepth: 5 }],
|
|
81
81
|
},
|
|
82
82
|
},
|
|
83
|
-
{
|
|
84
|
-
rules: {
|
|
85
|
-
// handled by eslint
|
|
86
|
-
'sonarjs/cognitive-complexity': ['off'],
|
|
87
|
-
|
|
88
|
-
'sonarjs/pseudo-random': ['off'],
|
|
89
|
-
'sonarjs/post-message': ['off'],
|
|
90
|
-
'sonarjs/no-empty-test-file': ['off'],
|
|
91
|
-
'sonarjs/no-commented-code': ['off'],
|
|
92
|
-
'sonarjs/todo-tag': ['off'],
|
|
93
|
-
},
|
|
94
|
-
},
|
|
83
|
+
{ rules: { '@typescript-eslint/consistent-type-imports': ['warn', { prefer: 'type-imports' }] } },
|
|
95
84
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/sdk-js",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.19",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -62,38 +62,38 @@
|
|
|
62
62
|
"quick-lru": "^5"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@xyo-network/core-payload-plugins": "^3.9.
|
|
66
|
-
"@xyo-network/manifest": "^3.9.
|
|
67
|
-
"@xyo-network/modules": "^3.9.
|
|
68
|
-
"@xyo-network/protocol": "^3.9.
|
|
69
|
-
"@xyo-network/sdk-utils": "^3.9.
|
|
70
|
-
"@xyo-network/shared": "^3.9.
|
|
65
|
+
"@xyo-network/core-payload-plugins": "^3.9.19",
|
|
66
|
+
"@xyo-network/manifest": "^3.9.19",
|
|
67
|
+
"@xyo-network/modules": "^3.9.19",
|
|
68
|
+
"@xyo-network/protocol": "^3.9.19",
|
|
69
|
+
"@xyo-network/sdk-utils": "^3.9.19",
|
|
70
|
+
"@xyo-network/shared": "^3.9.19"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@firebase/app": "^0.11.
|
|
74
|
-
"@firebase/app-compat": "^0.2.
|
|
75
|
-
"@stylistic/eslint-plugin": "^4.0
|
|
73
|
+
"@firebase/app": "^0.11.2",
|
|
74
|
+
"@firebase/app-compat": "^0.2.51",
|
|
75
|
+
"@stylistic/eslint-plugin": "^4.1.0",
|
|
76
76
|
"@types/supertest": "^6.0.2",
|
|
77
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
78
|
-
"@typescript-eslint/parser": "^8.
|
|
79
|
-
"@vitest/coverage-v8": "^3.0.
|
|
80
|
-
"@xylabs/eslint-config-flat": "^5.0.
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "^8.25.0",
|
|
78
|
+
"@typescript-eslint/parser": "^8.25.0",
|
|
79
|
+
"@vitest/coverage-v8": "^3.0.7",
|
|
80
|
+
"@xylabs/eslint-config-flat": "^5.0.39",
|
|
81
81
|
"@xylabs/forget": "^4.5.1",
|
|
82
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
83
|
-
"@xylabs/tsconfig": "^5.0.
|
|
82
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.39",
|
|
83
|
+
"@xylabs/tsconfig": "^5.0.39",
|
|
84
84
|
"@xylabs/vitest-extended": "^4.5.1",
|
|
85
85
|
"dotenv": "^16.4.7",
|
|
86
|
-
"eslint": "^9.
|
|
86
|
+
"eslint": "^9.21.0",
|
|
87
87
|
"eslint-import-resolver-typescript": "^3.8.3",
|
|
88
88
|
"jsdom": "^26.0.0",
|
|
89
|
-
"knip": "^5.
|
|
89
|
+
"knip": "^5.45.0",
|
|
90
90
|
"reflect-metadata": "^0.2.2",
|
|
91
91
|
"supertest": "^7.0.0",
|
|
92
92
|
"tslib": "^2.8.1",
|
|
93
|
-
"typedoc": "^0.27.
|
|
93
|
+
"typedoc": "^0.27.9",
|
|
94
94
|
"typedoc-material-theme": "^1.3.0",
|
|
95
|
-
"typescript": "^5.
|
|
96
|
-
"vitest": "^3.0.
|
|
95
|
+
"typescript": "^5.8.2",
|
|
96
|
+
"vitest": "^3.0.7"
|
|
97
97
|
},
|
|
98
98
|
"packageManager": "yarn@4.6.0",
|
|
99
99
|
"volta": {
|