@visulima/pail 4.0.0-alpha.15 → 4.0.0-alpha.16

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 CHANGED
@@ -1,3 +1,15 @@
1
+ ## @visulima/pail [4.0.0-alpha.16](https://github.com/visulima/visulima/compare/@visulima/pail@4.0.0-alpha.15...@visulima/pail@4.0.0-alpha.16) (2026-05-14)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **error:** apply prettier and eslint formatting sweep ([25c5eaf](https://github.com/visulima/visulima/commit/25c5eaf4989bddfe860b52aea113b3e229fea84f))
6
+
7
+
8
+ ### Dependencies
9
+
10
+ * **@visulima/colorize:** upgraded to 2.0.0-alpha.11
11
+ * **@visulima/error:** upgraded to 6.0.0-alpha.24
12
+
1
13
  ## @visulima/pail [4.0.0-alpha.15](https://github.com/visulima/visulima/compare/@visulima/pail@4.0.0-alpha.14...@visulima/pail@4.0.0-alpha.15) (2026-05-07)
2
14
 
3
15
 
@@ -62,7 +62,7 @@ interface PailNextMiddlewareOptions {
62
62
  * export default middleware;
63
63
  * ```
64
64
  */
65
- declare const pailMiddleware: (NextResponseClass: NextResponseConstructor, options?: PailNextMiddlewareOptions) => ((request: NextRequest) => NextResponse);
65
+ declare const pailMiddleware: (NextResponseClass: NextResponseConstructor, options?: PailNextMiddlewareOptions) => (request: NextRequest) => NextResponse;
66
66
  /**
67
67
  * Retrieve the request-scoped WideEvent logger from AsyncLocalStorage.
68
68
  * Must be called within a `withPail()` wrapped handler or server action.
@@ -99,5 +99,5 @@ type NextPailOptions<T extends string = string> = PailMiddlewareOptions<T>;
99
99
  * });
100
100
  * ```
101
101
  */
102
- declare const createWithPail: <T extends string = string>(options: NextPailOptions<T>) => <TArgs extends unknown[], TReturn>(handler: (...args: TArgs) => Promise<TReturn> | TReturn) => ((...args: TArgs) => Promise<TReturn>);
102
+ declare const createWithPail: <T extends string = string>(options: NextPailOptions<T>) => <TArgs extends unknown[], TReturn>(handler: (...args: TArgs) => Promise<TReturn> | TReturn) => (...args: TArgs) => Promise<TReturn>;
103
103
  export { type NextPailOptions, type PailNextMiddlewareOptions, type WideEvent, createWithPail, pailMiddleware, useLogger };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/pail",
3
- "version": "4.0.0-alpha.15",
3
+ "version": "4.0.0-alpha.16",
4
4
  "description": "Highly configurable Logger for Node.js, Edge and Browser.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -240,7 +240,7 @@
240
240
  "provenance": true
241
241
  },
242
242
  "dependencies": {
243
- "@visulima/colorize": "2.0.0-alpha.10",
243
+ "@visulima/colorize": "2.0.0-alpha.11",
244
244
  "@visulima/interactive-manager": "1.0.0-alpha.2"
245
245
  },
246
246
  "peerDependencies": {