@promptowl/contextnest-community 1.9.0 → 1.11.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/CONFIGURATION.md +151 -3
- package/README.md +2 -1
- package/dist/{chunk-DPHV6Q26.js → chunk-3M7677XW.js} +363 -22
- package/dist/{chunk-BYS4HDME.js → chunk-F7EKYNXG.js} +634 -70
- package/dist/{chunk-3JTODC3Y.js → chunk-GUNJTORH.js} +7 -0
- package/dist/{chunk-HRQWNRVI.js → chunk-JHIU6RZU.js} +1 -1
- package/dist/{chunk-VC3QNHHB.js → chunk-XB7T3THE.js} +685 -6
- package/dist/{chunk-TIO5XOFD.js → chunk-ZMSU7BCC.js} +2 -2
- package/dist/{client-GI74NPIW.js → client-YUOEVUFU.js} +1 -1
- package/dist/{grants-service-MDLRPMZR.js → grants-service-PS5RMMEA.js} +3 -3
- package/dist/index.js +3602 -742
- package/dist/{migrations.postgres-ORSV7UFJ.js → migrations.postgres-BRXZY2GE.js} +149 -3
- package/dist/{review-service-A3XFQTJH.js → review-service-DPN26C47.js} +7 -5
- package/dist/{stewardship-service-3KCVVXCW.js → stewardship-service-7BHI2YXB.js} +4 -3
- package/dist/{version-service-6J4OWQL6.js → version-service-YQIIQ7FN.js} +2 -2
- package/dist/web3/assets/index-BiGiarBx.css +1 -0
- package/dist/web3/assets/index-DekN5OmU.js +1026 -0
- package/dist/web3/index.html +2 -2
- package/package.json +4 -2
- package/dist/web3/assets/index-CHavHPIT.css +0 -1
- package/dist/web3/assets/index-DyvOBH92.js +0 -934
|
@@ -19,6 +19,12 @@ var ForbiddenError = class extends AppError {
|
|
|
19
19
|
this.name = "ForbiddenError";
|
|
20
20
|
}
|
|
21
21
|
};
|
|
22
|
+
var UnauthorizedError = class extends AppError {
|
|
23
|
+
constructor(message = "Unauthorized") {
|
|
24
|
+
super(401, message);
|
|
25
|
+
this.name = "UnauthorizedError";
|
|
26
|
+
}
|
|
27
|
+
};
|
|
22
28
|
var ValidationError = class extends AppError {
|
|
23
29
|
constructor(message) {
|
|
24
30
|
super(400, message);
|
|
@@ -42,6 +48,7 @@ export {
|
|
|
42
48
|
AppError,
|
|
43
49
|
NotFoundError,
|
|
44
50
|
ForbiddenError,
|
|
51
|
+
UnauthorizedError,
|
|
45
52
|
ValidationError,
|
|
46
53
|
ConflictError,
|
|
47
54
|
LockedError
|