@xyo-network/sdk-js 3.3.0 → 3.3.1

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": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -70,29 +70,29 @@
70
70
  "quick-lru": "^5"
71
71
  },
72
72
  "dependencies": {
73
- "@xyo-network/core-payload-plugins": "^3.3.0",
74
- "@xyo-network/manifest": "^3.3.0",
75
- "@xyo-network/modules": "^3.3.0",
76
- "@xyo-network/protocol": "^3.3.0",
77
- "@xyo-network/sdk-utils": "^3.3.0",
78
- "@xyo-network/shared": "^3.3.0"
73
+ "@xyo-network/core-payload-plugins": "^3.3.1",
74
+ "@xyo-network/manifest": "^3.3.1",
75
+ "@xyo-network/modules": "^3.3.1",
76
+ "@xyo-network/protocol": "^3.3.1",
77
+ "@xyo-network/sdk-utils": "^3.3.1",
78
+ "@xyo-network/shared": "^3.3.1"
79
79
  },
80
80
  "devDependencies": {
81
- "@babel/core": "^7.25.8",
81
+ "@babel/core": "^7.25.9",
82
82
  "@jest/globals": "^29.7.0",
83
83
  "@stylistic/eslint-plugin": "^2.9.0",
84
84
  "@types/jest": "^29.5.13",
85
85
  "@types/supertest": "^6.0.2",
86
- "@typescript-eslint/eslint-plugin": "^8.10.0",
87
- "@typescript-eslint/parser": "^8.10.0",
88
- "@xylabs/eslint-config-flat": "^4.2.1",
89
- "@xylabs/forget": "^4.2.2",
90
- "@xylabs/ts-scripts-yarn3": "^4.2.1",
91
- "@xylabs/tsconfig": "^4.2.1",
86
+ "@typescript-eslint/eslint-plugin": "^8.11.0",
87
+ "@typescript-eslint/parser": "^8.11.0",
88
+ "@xylabs/eslint-config-flat": "^4.2.3",
89
+ "@xylabs/forget": "^4.3.2",
90
+ "@xylabs/ts-scripts-yarn3": "^4.2.3",
91
+ "@xylabs/tsconfig": "^4.2.3",
92
92
  "@xylabs/tsconfig-dom-jest": "^4.1.0",
93
93
  "babel-jest": "^29.7.0",
94
94
  "dotenv": "^16.4.5",
95
- "eslint": "^9.12.0",
95
+ "eslint": "^9.13.0",
96
96
  "eslint-import-resolver-typescript": "^3.6.3",
97
97
  "jest": "^29.7.0",
98
98
  "jest-docblock": "^29.7.0",
@@ -112,7 +112,7 @@
112
112
  "typescript": "^5.6.3",
113
113
  "vitest": "^2.1.3"
114
114
  },
115
- "packageManager": "yarn@4.5.0",
115
+ "packageManager": "yarn@4.5.1",
116
116
  "volta": {
117
117
  "node": "22.3.0",
118
118
  "yarn": "1.22.22"
@@ -1,20 +0,0 @@
1
- import { config } from 'dotenv'
2
- config()
3
- import '@jest/globals'
4
-
5
- import type { Config } from 'jest'
6
- import type { SuperTest, Test } from 'supertest'
7
-
8
- // Augment global scope with shared variables (must be var)
9
- declare global {
10
- var req: SuperTest<Test>
11
- }
12
-
13
- /**
14
- * Jest global setup method runs before any tests are run
15
- * https://jestjs.io/docs/configuration#globalsetup-string
16
- */
17
-
18
- const setup = async (_globalConfig: Config, _projectConfig: Config) => {}
19
-
20
- module.exports = setup
@@ -1,12 +0,0 @@
1
- import { config } from 'dotenv'
2
- config()
3
- import type { Config } from 'jest'
4
-
5
- /**
6
- * Jest global teardown method runs after all tests are run
7
- * https://jestjs.io/docs/configuration#globalteardown-string
8
- */
9
-
10
- const teardown = async (_globalConfig: Config, _projectConfig: Config) => {}
11
-
12
- module.exports = teardown
@@ -1,10 +0,0 @@
1
- import { ForgetPromise } from '@xylabs/forget'
2
-
3
- beforeAll(() => {
4
- // Can be async, before each test file
5
- })
6
-
7
- afterAll(async () => {
8
- // Can be async, after each test file
9
- await ForgetPromise.awaitInactive()
10
- })