@xyo-network/sdk-js 5.1.22 → 5.1.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/sdk-js",
3
- "version": "5.1.22",
3
+ "version": "5.1.23",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -31,7 +31,10 @@
31
31
  "types": "./dist/neutral/index.d.ts",
32
32
  "files": [
33
33
  "dist",
34
- "src"
34
+ "src",
35
+ "!**/*.bench.*",
36
+ "!**/*.spec.*",
37
+ "!**/*.test.*"
35
38
  ],
36
39
  "workspaces": [
37
40
  "packages/**/*"
@@ -53,27 +56,27 @@
53
56
  "test": "vitest --watch false"
54
57
  },
55
58
  "dependencies": {
56
- "@xyo-network/manifest": "~5.1.22",
57
- "@xyo-network/modules": "~5.1.22",
58
- "@xyo-network/protocol": "~5.1.22"
59
+ "@xyo-network/manifest": "~5.1.23",
60
+ "@xyo-network/modules": "~5.1.23",
61
+ "@xyo-network/protocol": "~5.1.23"
59
62
  },
60
63
  "devDependencies": {
61
- "@firebase/app": "~0.14.5",
62
- "@firebase/app-compat": "~0.5.5",
64
+ "@firebase/app": "~0.14.6",
65
+ "@firebase/app-compat": "~0.5.6",
63
66
  "@opentelemetry/api": "~1.9.0",
64
67
  "@stylistic/eslint-plugin": "~5.5.0",
65
68
  "@types/supertest": "~6.0.3",
66
69
  "@typescript-eslint/eslint-plugin": "~8.46.4",
67
70
  "@typescript-eslint/parser": "~8.46.4",
68
71
  "@typescript-eslint/types": "~8.46.4",
69
- "@vitest/coverage-v8": "~4.0.8",
72
+ "@vitest/coverage-v8": "~4.0.9",
70
73
  "@xylabs/eslint-config-flat": "~7.2.8",
71
- "@xylabs/forget": "~5.0.24",
74
+ "@xylabs/forget": "~5.0.33",
72
75
  "@xylabs/ts-scripts-yarn3": "~7.2.8",
73
76
  "@xylabs/tsconfig": "~7.2.8",
74
77
  "@xylabs/tsconfig-dom": "~7.2.8",
75
- "@xylabs/vitest-extended": "~5.0.24",
76
- "@xyo-network/sdk-utils": "~5.1.22",
78
+ "@xylabs/vitest-extended": "~5.0.33",
79
+ "@xyo-network/sdk-utils": "~5.1.23",
77
80
  "chalk": "~5.6.2",
78
81
  "dependency-cruiser": "~17.2.0",
79
82
  "dotenv": "~17.2.3",
@@ -81,7 +84,7 @@
81
84
  "eslint-import-resolver-typescript": "~4.4.4",
82
85
  "glob": "~11.0.3",
83
86
  "jsdom": "~27.1.0",
84
- "knip": "~5.69.0",
87
+ "knip": "~5.69.1",
85
88
  "reflect-metadata": "~0.2.2",
86
89
  "rimraf": "~6.1.0",
87
90
  "supertest": "~7.1.4",
@@ -89,9 +92,9 @@
89
92
  "typedoc": "~0.28.14",
90
93
  "typedoc-plugin-markdown": "~4.9.0",
91
94
  "typescript": "~5.9.3",
92
- "vitest": "~4.0.8"
95
+ "vitest": "~4.0.9"
93
96
  },
94
- "packageManager": "yarn@4.10.3",
97
+ "packageManager": "yarn@4.11.0",
95
98
  "volta": {
96
99
  "node": "22.3.0",
97
100
  "yarn": "1.22.22"
@@ -1,2 +0,0 @@
1
- import '@xylabs/vitest-extended';
2
- //# sourceMappingURL=loading.spec.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"loading.spec.d.ts","sourceRoot":"","sources":["../../../src/spec/loading.spec.ts"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAA"}
@@ -1,12 +0,0 @@
1
- import '@xylabs/vitest-extended'
2
-
3
- import * as Modules from '@xyo-network/modules'
4
- import * as SdkUtils from '@xyo-network/sdk-utils'
5
- import { describe, test } from 'vitest'
6
-
7
- describe('Loading Client SDKs', () => {
8
- test('Monolithic', () => {
9
- for (const [key, value] of Object.entries(Modules)) console.log(`Modules[${key}]: ${typeof value}`)
10
- for (const [key, value] of Object.entries(SdkUtils)) console.log(`Sdk[${key}]: ${typeof value}`)
11
- })
12
- })