@qelos/integrator-nest 4.1.1 → 4.2.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/README.md +9 -3
- package/package.json +11 -11
- package/LICENSE +0 -20
package/README.md
CHANGED
|
@@ -163,7 +163,13 @@ QelosModule.forRoot({
|
|
|
163
163
|
});
|
|
164
164
|
```
|
|
165
165
|
|
|
166
|
-
##
|
|
166
|
+
## Version support
|
|
167
167
|
|
|
168
|
-
|
|
169
|
-
|
|
168
|
+
| Requirement | Supported range |
|
|
169
|
+
|-------------|-----------------|
|
|
170
|
+
| Node.js | >= 18 |
|
|
171
|
+
| NestJS (`@nestjs/common`, `@nestjs/core`) | 9.x, 10.x, 11.x |
|
|
172
|
+
|
|
173
|
+
Peer dependencies accept `^9.0.0 || ^10.0.0 || ^11.0.0`. Local development and CI target **Nest 11**; the integrator is verified against that major while remaining compatible with Nest 9 and 10 through the same public API.
|
|
174
|
+
|
|
175
|
+
Nest 12 prereleases are not included in the peer range until a stable release — add an explicit union when upgrading support.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qelos/integrator-nest",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"description": "NestJS module that identifies the Qelos user and active workspace before your route handlers run",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
"dist",
|
|
24
24
|
"README.md"
|
|
25
25
|
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"type-check": "tsc --noEmit",
|
|
28
|
+
"build": "tsc",
|
|
29
|
+
"pre-build": "tsc",
|
|
30
|
+
"test": "node --import tsx --test test/**/*.test.ts src/**/*.test.ts"
|
|
31
|
+
},
|
|
26
32
|
"keywords": [
|
|
27
33
|
"qelos",
|
|
28
34
|
"nest",
|
|
@@ -61,20 +67,14 @@
|
|
|
61
67
|
}
|
|
62
68
|
},
|
|
63
69
|
"dependencies": {
|
|
64
|
-
"@qelos/sdk": "
|
|
70
|
+
"@qelos/sdk": "workspace:*"
|
|
65
71
|
},
|
|
66
72
|
"devDependencies": {
|
|
67
|
-
"@nestjs/common": "^
|
|
68
|
-
"@nestjs/core": "^
|
|
73
|
+
"@nestjs/common": "^11.0.0",
|
|
74
|
+
"@nestjs/core": "^11.0.0",
|
|
69
75
|
"reflect-metadata": "^0.2.2",
|
|
70
76
|
"rxjs": "^7.8.1",
|
|
71
77
|
"tsx": "^4.21.0",
|
|
72
78
|
"typescript": "^5.6.3"
|
|
73
|
-
},
|
|
74
|
-
"scripts": {
|
|
75
|
-
"type-check": "tsc --noEmit",
|
|
76
|
-
"build": "tsc",
|
|
77
|
-
"pre-build": "tsc",
|
|
78
|
-
"test": "node --import tsx --test test/**/*.test.ts src/**/*.test.ts"
|
|
79
79
|
}
|
|
80
|
-
}
|
|
80
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Polyform Shield License 1.0.0
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Velocitech LTD
|
|
4
|
-
|
|
5
|
-
Your use of this software is governed by the Polyform Shield License 1.0.0.
|
|
6
|
-
|
|
7
|
-
You may obtain a copy of the License at:
|
|
8
|
-
https://polyformproject.org/licenses/shield/1.0.0
|
|
9
|
-
|
|
10
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
-
|
|
12
|
-
Additional Terms – Exception Notice:
|
|
13
|
-
|
|
14
|
-
The author of this software grants additional permissions beyond the Polyform Shield License 1.0.0:
|
|
15
|
-
|
|
16
|
-
✅ All uses of the software are permitted — including modification, distribution, commercial use, and sublicensing — as long as the software is not used to create, offer, or operate any product or service that competes directly with Qelos (https://qelos.io), a no-code platform for building AI-assisted SaaS applications.
|
|
17
|
-
|
|
18
|
-
❌ "Direct competition" includes platforms, tools, or services that enable users to visually or programmatically create SaaS applications with the assistance of artificial intelligence.
|
|
19
|
-
|
|
20
|
-
This exception does not modify the terms of the original Polyform Shield License for other users and applies only by explicit permission of the licensor.
|