@plyaz/types 1.27.17 → 1.27.18

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.
@@ -772,6 +772,18 @@ export interface CoreInitOptionsBase<TDb = unknown, TApi = unknown, TStorage = u
772
772
  skipNotifications?: boolean;
773
773
  /** Enable verbose logging */
774
774
  verbose?: boolean;
775
+ /**
776
+ * Logger configuration for Core's internal PackageLogger.
777
+ * Controls how initialization and service logs are output.
778
+ */
779
+ logger?: {
780
+ /**
781
+ * Logger transport type.
782
+ * - 'pino': JSON structured logs (default, good for production/log aggregators)
783
+ * - 'console': Human-readable console output (good for development)
784
+ */
785
+ transport?: 'pino' | 'console';
786
+ };
775
787
  /** Error handler configuration */
776
788
  errorHandler?: CoreErrorHandlerInitConfig;
777
789
  /** Feature flags configuration */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.27.17",
3
+ "version": "1.27.18",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",