@stigg/node-server-sdk 4.19.0 → 4.21.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/CHANGELOG.md +48 -0
- package/package.json +11 -44
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# [4.19.0](https://github.com/stiggio/node-server-sdk/compare/4.18.0...4.19.0) (2026-02-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* update api-client-js to 5.248.4 ([#495](https://github.com/stiggio/node-server-sdk/issues/495)) ([5686d0d](https://github.com/stiggio/node-server-sdk/commit/5686d0d2ec3c9213c352996595bc7ef7305f8663))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# [4.18.0](https://github.com/stiggio/node-server-sdk/compare/4.17.0...4.18.0) (2026-02-23)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* update api-client-js to 5.248.1 ([#486](https://github.com/stiggio/node-server-sdk/issues/486)) ([4314858](https://github.com/stiggio/node-server-sdk/commit/4314858042532016c31c00f4aed19f192eaaa326))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
# [4.17.0](https://github.com/stiggio/node-server-sdk/compare/4.16.0...4.17.0) (2026-02-22)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **STIGG-6791:** upgrade typescript ^4.7 to ^5.9.3, jest ^27 to ^30.2.0 ([#488](https://github.com/stiggio/node-server-sdk/issues/488)) ([bbf7d7d](https://github.com/stiggio/node-server-sdk/commit/bbf7d7d30d02bd52b0f37cd84056ae7bbdaf4cc4))
|
|
25
|
+
* **STIGG-6792:** upgrade prettier ^2 to ^3.8.1 ([#489](https://github.com/stiggio/node-server-sdk/issues/489)) ([f473f1f](https://github.com/stiggio/node-server-sdk/commit/f473f1f66ab8f556701f72a01efd7db75c3b1d4f))
|
|
26
|
+
* **STIGG-6797:** upgrade msw from 0.35 to 2.x with WebSocket interception ([#490](https://github.com/stiggio/node-server-sdk/issues/490)) ([1031874](https://github.com/stiggio/node-server-sdk/commit/103187479f7802ec676cd75cd81e9bf7e016f2bf))
|
|
27
|
+
* **STIGG-6801:** upgrade ESLint 10 with flat config ([#491](https://github.com/stiggio/node-server-sdk/issues/491)) ([4713d76](https://github.com/stiggio/node-server-sdk/commit/4713d762ec89f462adee5d764f86c68193ddbd52))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
# [4.16.0](https://github.com/stiggio/node-server-sdk/compare/4.15.1...4.16.0) (2026-02-19)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* **STIGG-6622:** add package entitlements to pawyall ([#487](https://github.com/stiggio/node-server-sdk/issues/487)) ([73a06ea](https://github.com/stiggio/node-server-sdk/commit/73a06eadacb1c085688794dcf1f45655459f0248))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## [4.15.1](https://github.com/stiggio/node-server-sdk/compare/4.15.0...4.15.1) (2026-02-16)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Bug Fixes
|
|
44
|
+
|
|
45
|
+
* **stigg-6324:** expose getEntitlementV2 enhance getEntitlementsStateV2 ([#481](https://github.com/stiggio/node-server-sdk/issues/481)) ([#485](https://github.com/stiggio/node-server-sdk/issues/485)) ([a8b7509](https://github.com/stiggio/node-server-sdk/commit/a8b750925a6e7c1093091701871e569050ddd617))
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
package/package.json
CHANGED
|
@@ -1,26 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stigg/node-server-sdk",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.21.0",
|
|
4
4
|
"description": "Stigg server-side node SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
7
|
-
"repository":
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/stiggio/stigg-sdk.git",
|
|
10
|
+
"directory": "packages/node-server-sdk"
|
|
11
|
+
},
|
|
8
12
|
"license": "MIT",
|
|
9
|
-
"keywords": [],
|
|
10
13
|
"scripts": {
|
|
11
|
-
"build": "tsc -p tsconfig.build.json",
|
|
12
|
-
"
|
|
13
|
-
"fix": "run-s fix:*",
|
|
14
|
-
"fix:prettier": "prettier \"{src,test}/**/*.ts\" --write",
|
|
15
|
-
"fix:lint": "eslint src --fix",
|
|
16
|
-
"test": "jest --forceExit",
|
|
17
|
-
"test:watch": "jest --watch",
|
|
18
|
-
"test:cov": "jest --coverage",
|
|
19
|
-
"reset-hard": "git clean -dfx && git reset --hard && yarn",
|
|
20
|
-
"prepare-release": "run-s reset-hard test doc:html",
|
|
21
|
-
"prepare": "husky install",
|
|
14
|
+
"build": "yarn run -T tsc -p tsconfig.build.json",
|
|
15
|
+
"test": "yarn run -T jest --forceExit",
|
|
22
16
|
"run": "ts-node examples/runSdk.ts",
|
|
23
|
-
"lint": "eslint \"{src,examples,test}/**/*.ts\"
|
|
17
|
+
"lint": "yarn run -T eslint \"{src,examples,test}/**/*.ts\"",
|
|
24
18
|
"docs": "typedoc"
|
|
25
19
|
},
|
|
26
20
|
"files": [
|
|
@@ -41,7 +35,6 @@
|
|
|
41
35
|
"dayjs": "^1.11.13",
|
|
42
36
|
"graphql": "^15.6.1",
|
|
43
37
|
"graphql-ws": "^5.6.0",
|
|
44
|
-
"husky": "^7.0.2",
|
|
45
38
|
"ioredis": "^5.2.4",
|
|
46
39
|
"isomorphic-ws": "^4.0.1",
|
|
47
40
|
"lodash": "^4.17.21",
|
|
@@ -52,40 +45,14 @@
|
|
|
52
45
|
"ws": "^8.17.1"
|
|
53
46
|
},
|
|
54
47
|
"devDependencies": {
|
|
55
|
-
"@commitlint/cli": "^13.2.1",
|
|
56
|
-
"@commitlint/config-conventional": "^13.2.0",
|
|
57
|
-
"@eslint/js": "^10.0.0",
|
|
58
48
|
"@types/glob": "^8.0.1",
|
|
59
|
-
"@types/jest": "^30.0.0",
|
|
60
49
|
"@types/lodash": "^4.14.175",
|
|
61
|
-
"@types/node": "^16.11.1",
|
|
62
50
|
"@types/tmp": "^0.2.3",
|
|
63
|
-
"eslint": "^10.0.0",
|
|
64
|
-
"eslint-config-prettier": "^10.1.8",
|
|
65
|
-
"eslint-plugin-import-x": "^4.12.2",
|
|
66
|
-
"eslint-plugin-prettier": "^5.5.5",
|
|
67
51
|
"glob": "^8.1.0",
|
|
68
|
-
"jest": "^30.2.0",
|
|
69
|
-
"lint-staged": "^11.2.3",
|
|
70
52
|
"msw": "^2.12.10",
|
|
71
|
-
"
|
|
72
|
-
"prettier": "^3.8.1",
|
|
73
|
-
"redis-memory-server": "^0.12.1",
|
|
74
|
-
"standard-version": "^9.0.0",
|
|
75
|
-
"ts-jest": "^29.4.6",
|
|
76
|
-
"ts-node": "^10.9.0",
|
|
77
|
-
"typedoc": "^0.22.13",
|
|
78
|
-
"typedoc-plugin-rename-defaults": "^0.4.0",
|
|
79
|
-
"typescript": "^5.9.3",
|
|
80
|
-
"typescript-eslint": "^8.56.0"
|
|
53
|
+
"redis-memory-server": "^0.12.1"
|
|
81
54
|
},
|
|
82
55
|
"publishConfig": {
|
|
83
56
|
"access": "public"
|
|
84
|
-
},
|
|
85
|
-
"lint-staged": {
|
|
86
|
-
"*.{js,jsx,ts,tsx}": [
|
|
87
|
-
"prettier --write",
|
|
88
|
-
"eslint --cache --fix"
|
|
89
|
-
]
|
|
90
57
|
}
|
|
91
|
-
}
|
|
58
|
+
}
|