devdad-express-utils 1.7.1 → 1.7.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.
@@ -27,7 +27,7 @@ import { Response } from "express";
27
27
  * send(res); // Send prepared response
28
28
  *
29
29
  * @example
30
- * // Your exact use case
30
+ * // Example Login Response
31
31
  * sendSuccess(res, { accesstoken, refreshToken, user }, "Login Successful", 200)
32
32
  * .cookie("accessToken", accesstoken, HTTP_OPTIONS)
33
33
  * .cookie("refreshToken", refreshToken, HTTP_OPTIONS);
@@ -26,7 +26,7 @@
26
26
  * send(res); // Send prepared response
27
27
  *
28
28
  * @example
29
- * // Your exact use case
29
+ * // Example Login Response
30
30
  * sendSuccess(res, { accesstoken, refreshToken, user }, "Login Successful", 200)
31
31
  * .cookie("accessToken", accesstoken, HTTP_OPTIONS)
32
32
  * .cookie("refreshToken", refreshToken, HTTP_OPTIONS);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devdad-express-utils",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "Reusable Express.js utilities for error handling, async wrapping, and more",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",