@raclettejs/types 0.1.11 → 0.1.13
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 +13 -1
- package/package.json +5 -4
- package/dist/dependencies.d.ts +0 -4
- package/dist/fastify.d.ts +0 -26
- package/dist/index.d.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [0.1.
|
|
10
|
+
## [0.1.13] - 29.10.2025 <a href="https://gitlab.com/raclettejs/types/-/compare/v0.1.12...v0.1.13" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
11
|
+
|
|
12
|
+
## Changed
|
|
13
|
+
|
|
14
|
+
- updated raclette versions
|
|
15
|
+
|
|
16
|
+
## [0.1.12] - 27.10.2025 <a href="https://gitlab.com/raclettejs/types/-/compare/v0.1.11...v0.1.12" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
17
|
+
|
|
18
|
+
## Changed
|
|
19
|
+
|
|
20
|
+
- set peer dependency to core to v0.1.11, needs to be updated for new core version after next 0.1.12 release
|
|
21
|
+
|
|
22
|
+
## [0.1.11] - 19.09.2025 <a href="https://gitlab.com/raclettejs/types/-/compare/v0.1.0...v0.1.11" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
11
23
|
|
|
12
24
|
### Security
|
|
13
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raclettejs/types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Type definitions for the raclette framework",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"repository": "https://gitlab.com/raclettejs/types",
|
|
@@ -21,9 +21,10 @@
|
|
|
21
21
|
"typescript": "5.9.2"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@raclettejs/core": "
|
|
24
|
+
"@raclettejs/core": "0.1.13"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@raclettejs/core": "
|
|
28
|
-
}
|
|
27
|
+
"@raclettejs/core": "0.1.13"
|
|
28
|
+
},
|
|
29
|
+
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
|
|
29
30
|
}
|
package/dist/dependencies.d.ts
DELETED
package/dist/fastify.d.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import "fastify";
|
|
2
|
-
import { MongooseConnection, SocketIO } from "./dependencies";
|
|
3
|
-
import { preHandlerHookHandler } from "fastify";
|
|
4
|
-
declare module "fastify" {
|
|
5
|
-
interface FastifyInstance {
|
|
6
|
-
db: MongooseConnection;
|
|
7
|
-
authenticate: preHandlerHookHandler;
|
|
8
|
-
wss: SocketIO;
|
|
9
|
-
eventbus: any;
|
|
10
|
-
redis: any;
|
|
11
|
-
http: any;
|
|
12
|
-
taskManager: any;
|
|
13
|
-
}
|
|
14
|
-
interface FastifyRequest {
|
|
15
|
-
db: MongooseConnection;
|
|
16
|
-
user: any;
|
|
17
|
-
requestParams: any;
|
|
18
|
-
}
|
|
19
|
-
interface RouteOptions {
|
|
20
|
-
skipHeaderValidation?: boolean;
|
|
21
|
-
}
|
|
22
|
-
interface FastifyContextConfig {
|
|
23
|
-
type?: string;
|
|
24
|
-
broadcast?: string[] | boolean;
|
|
25
|
-
}
|
|
26
|
-
}
|
package/dist/index.d.ts
DELETED