@plyaz/types 1.37.1 → 1.37.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.
|
@@ -14,8 +14,8 @@ export type FrameworkType = 'nextjs' | 'express' | 'nestjs';
|
|
|
14
14
|
* Base configuration for framework adapters
|
|
15
15
|
*/
|
|
16
16
|
export interface FrameworkAdapterConfig {
|
|
17
|
-
/** Adapter name for logging */
|
|
18
|
-
name
|
|
17
|
+
/** Adapter name for logging (defaults to class name) */
|
|
18
|
+
name?: string;
|
|
19
19
|
/** Whether adapter is enabled */
|
|
20
20
|
enabled?: boolean;
|
|
21
21
|
}
|
package/package.json
CHANGED