@plyaz/types 1.39.0 → 1.39.1
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/dist/api/debugger/types.d.ts +10 -0
- package/package.json +1 -1
|
@@ -189,6 +189,16 @@ export interface DebugEventsConfig {
|
|
|
189
189
|
autoGenerateDebugInfo?: boolean;
|
|
190
190
|
/** Interval for debug info generation (ms) */
|
|
191
191
|
debugInfoInterval?: number;
|
|
192
|
+
/**
|
|
193
|
+
* Enable comprehensive debug report logging to console
|
|
194
|
+
* Default: false
|
|
195
|
+
*/
|
|
196
|
+
comprehensiveReport?: boolean;
|
|
197
|
+
/**
|
|
198
|
+
* Enable verbose API logging
|
|
199
|
+
* Default: false
|
|
200
|
+
*/
|
|
201
|
+
verbose?: boolean;
|
|
192
202
|
}
|
|
193
203
|
/**
|
|
194
204
|
* Alert types for monitoring
|
package/package.json
CHANGED