@smplkit/sdk 3.0.67 → 3.0.68
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/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -852,10 +852,10 @@ interface components$1 {
|
|
|
852
852
|
} | null;
|
|
853
853
|
/**
|
|
854
854
|
* Effective Levels
|
|
855
|
-
* @description Per-environment summary of what runtimes are reporting for this logger. Keyed by environment name; each
|
|
855
|
+
* @description Per-environment summary of what runtimes are reporting for this logger. Keyed by environment name; each value is the list of distinct resolved levels observed across all source rows in that environment, ordered from most-verbose (`TRACE`) to least-verbose (`SILENT`). A single-element list means every source agrees; a multi-element list means sources disagree. Environments with no observed sources are omitted — cross-reference `environments` to find environments that are configured but have not yet been reported in.
|
|
856
856
|
*/
|
|
857
857
|
readonly effective_levels?: {
|
|
858
|
-
[key: string]:
|
|
858
|
+
[key: string]: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "SILENT")[];
|
|
859
859
|
} | null;
|
|
860
860
|
/**
|
|
861
861
|
* Created At
|
package/dist/index.d.ts
CHANGED
|
@@ -852,10 +852,10 @@ interface components$1 {
|
|
|
852
852
|
} | null;
|
|
853
853
|
/**
|
|
854
854
|
* Effective Levels
|
|
855
|
-
* @description Per-environment summary of what runtimes are reporting for this logger. Keyed by environment name; each
|
|
855
|
+
* @description Per-environment summary of what runtimes are reporting for this logger. Keyed by environment name; each value is the list of distinct resolved levels observed across all source rows in that environment, ordered from most-verbose (`TRACE`) to least-verbose (`SILENT`). A single-element list means every source agrees; a multi-element list means sources disagree. Environments with no observed sources are omitted — cross-reference `environments` to find environments that are configured but have not yet been reported in.
|
|
856
856
|
*/
|
|
857
857
|
readonly effective_levels?: {
|
|
858
|
-
[key: string]:
|
|
858
|
+
[key: string]: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "SILENT")[];
|
|
859
859
|
} | null;
|
|
860
860
|
/**
|
|
861
861
|
* Created At
|