@xenterprises/fastify-xconfig 1.1.0 → 1.1.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@xenterprises/fastify-xconfig",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.1.2",
5
5
  "description": "Fastify configuration plugin for setting up middleware, services, and route handling.",
6
6
  "main": "src/xConfig.js",
7
7
  "scripts": {
@@ -21,16 +21,14 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@fastify/autoload": "^6.0.2",
24
- "@fastify/cookie": "^9.4.0",
25
24
  "@fastify/cors": "^9.0.1",
26
25
  "@fastify/multipart": "^8.3.0",
27
26
  "@fastify/rate-limit": "^9.1.0",
28
27
  "@fastify/sensible": "^5.6.0",
29
- "@fastify/under-pressure": "^9.0.1",
30
- "@prisma/client": "^6.3.1",
28
+ "@fastify/under-pressure": "^8.0.1",
29
+ "@prisma/client": "^6.8.2",
31
30
  "@sendgrid/client": "^8.1.3",
32
31
  "@sendgrid/mail": "^8.1.3",
33
- "bcrypt": "^5.1.1",
34
32
  "check-disk-space": "^3.4.0",
35
33
  "fastify": "^4.28.1",
36
34
  "fastify-bugsnag": "^4.1.4",
@@ -788,11 +788,6 @@ async function xConfig(fastify, options) {
788
788
  sharing no code between them.
789
789
  */
790
790
 
791
- // Register @fastify/cookie plugin
792
- fastify.register(import("@fastify/cookie"));
793
-
794
- console.info(" ✅ @fastify/cookie Enabled");
795
-
796
791
  /*
797
792
  ===== Admin Authentication =====
798
793
  */
@@ -1,5 +0,0 @@
1
- export async function setupCookie(fastify, options) {
2
- fastify.register(import("@fastify/cookie"));
3
-
4
- console.info(" ✅ @fastify/cookie Enabled");
5
- }