@ccci/micro-server 1.0.121 → 1.0.123

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/dist/index.d.ts CHANGED
@@ -13,6 +13,7 @@ export { default as DatabaseConnector } from './utils/DatabaseConnector';
13
13
  export { default as WebSocketServer } from './utils/WebSocketServer';
14
14
  export { default as BaseSocketHandler } from './utils/BaseSocketHandler';
15
15
  export type { WebSocketData } from './types/BaseSocketType';
16
+ export type { UploadedFileType } from './types/UploadedFileType';
16
17
  export { default as Uploader } from './utils/Uploader';
17
18
  export type { NotificationType, NotificationOptions } from './types/NotificationTypes';
18
19
  export { default as PushNotifier } from './utils/PushNotifier';
package/dist/index.js CHANGED
@@ -245429,7 +245429,6 @@ function generate(payload) {
245429
245429
  return import_jsonwebtoken.default.sign(payload, SECRET_KEY, { expiresIn: EXPIRY, issuer: ISSUER });
245430
245430
  }
245431
245431
  function verify(token) {
245432
- console.log("process.env.JWT_SECRET_KEY :>> ", process.env.JWT_SECRET_KEY);
245433
245432
  let decoded = import_jsonwebtoken.default.verify(token, SECRET_KEY);
245434
245433
  return decoded;
245435
245434
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ccci/micro-server",
3
- "version": "1.0.121",
3
+ "version": "1.0.123",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",