@naturalcycles/js-lib 14.63.0 → 14.64.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.
@@ -36,6 +36,12 @@ export interface HttpErrorData extends ErrorData {
36
36
  * @default 500
37
37
  */
38
38
  httpStatusCode: number;
39
+ /**
40
+ * @example
41
+ *
42
+ * GET /api/some-endpoint
43
+ */
44
+ endpoint?: string;
39
45
  /**
40
46
  * Set to true when the error was thrown after response headers were sent.
41
47
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/js-lib",
3
- "version": "14.63.0",
3
+ "version": "14.64.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "build-prod": "build-prod-esm-cjs",
@@ -43,6 +43,13 @@ export interface HttpErrorData extends ErrorData {
43
43
  */
44
44
  httpStatusCode: number
45
45
 
46
+ /**
47
+ * @example
48
+ *
49
+ * GET /api/some-endpoint
50
+ */
51
+ endpoint?: string
52
+
46
53
  /**
47
54
  * Set to true when the error was thrown after response headers were sent.
48
55
  */