@smplkit/sdk 3.0.67 → 3.0.69
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 +14 -12
- package/dist/index.d.ts +14 -12
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -705,11 +705,8 @@ interface components$1 {
|
|
|
705
705
|
* @description Human-readable label for the group.
|
|
706
706
|
*/
|
|
707
707
|
name: string;
|
|
708
|
-
/**
|
|
709
|
-
|
|
710
|
-
* @description Default level applied to every logger in the group. `null` leaves member loggers to inherit from elsewhere.
|
|
711
|
-
*/
|
|
712
|
-
level?: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "SILENT") | null;
|
|
708
|
+
/** @description Default level applied to every logger in the group. `null` leaves member loggers to inherit from elsewhere. */
|
|
709
|
+
level?: components$1["schemas"]["LogLevel"] | null;
|
|
713
710
|
/**
|
|
714
711
|
* Parent Id
|
|
715
712
|
* @description Reserved for nested groups. Must be `null` in this version; nested groups are not yet supported.
|
|
@@ -789,6 +786,14 @@ interface components$1 {
|
|
|
789
786
|
LogGroupResponse: {
|
|
790
787
|
data: components$1["schemas"]["LogGroupResource"];
|
|
791
788
|
};
|
|
789
|
+
/**
|
|
790
|
+
* LogLevel
|
|
791
|
+
* @description Severity level of a logger.
|
|
792
|
+
*
|
|
793
|
+
* Ordered from most-verbose (`TRACE`) to least-verbose (`SILENT`).
|
|
794
|
+
* @enum {string}
|
|
795
|
+
*/
|
|
796
|
+
LogLevel: "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "SILENT";
|
|
792
797
|
/**
|
|
793
798
|
* Logger
|
|
794
799
|
* @description A logger configured for the account.
|
|
@@ -821,11 +826,8 @@ interface components$1 {
|
|
|
821
826
|
* @description Human-readable label for the logger.
|
|
822
827
|
*/
|
|
823
828
|
name: string;
|
|
824
|
-
/**
|
|
825
|
-
|
|
826
|
-
* @description Account-wide log level applied to this logger. `null` means no override at the logger level — the level is inherited from the logger's group or the framework default.
|
|
827
|
-
*/
|
|
828
|
-
level?: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "SILENT") | null;
|
|
829
|
+
/** @description Account-wide log level applied to this logger. `null` means no override at the logger level — the level is inherited from the logger's group or the framework default. */
|
|
830
|
+
level?: components$1["schemas"]["LogLevel"] | null;
|
|
829
831
|
/**
|
|
830
832
|
* Group
|
|
831
833
|
* @description Key of the log group this logger belongs to, or `null` if the logger is not grouped. Assigning a logger to a group promotes it to managed; assigning a group cascades to unmanaged descendants by clearing their group reference.
|
|
@@ -852,10 +854,10 @@ interface components$1 {
|
|
|
852
854
|
} | null;
|
|
853
855
|
/**
|
|
854
856
|
* Effective Levels
|
|
855
|
-
* @description Per-environment summary of what runtimes are reporting for this logger. Keyed by environment name; each
|
|
857
|
+
* @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
858
|
*/
|
|
857
859
|
readonly effective_levels?: {
|
|
858
|
-
[key: string]:
|
|
860
|
+
[key: string]: components$1["schemas"]["LogLevel"][];
|
|
859
861
|
} | null;
|
|
860
862
|
/**
|
|
861
863
|
* Created At
|
package/dist/index.d.ts
CHANGED
|
@@ -705,11 +705,8 @@ interface components$1 {
|
|
|
705
705
|
* @description Human-readable label for the group.
|
|
706
706
|
*/
|
|
707
707
|
name: string;
|
|
708
|
-
/**
|
|
709
|
-
|
|
710
|
-
* @description Default level applied to every logger in the group. `null` leaves member loggers to inherit from elsewhere.
|
|
711
|
-
*/
|
|
712
|
-
level?: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "SILENT") | null;
|
|
708
|
+
/** @description Default level applied to every logger in the group. `null` leaves member loggers to inherit from elsewhere. */
|
|
709
|
+
level?: components$1["schemas"]["LogLevel"] | null;
|
|
713
710
|
/**
|
|
714
711
|
* Parent Id
|
|
715
712
|
* @description Reserved for nested groups. Must be `null` in this version; nested groups are not yet supported.
|
|
@@ -789,6 +786,14 @@ interface components$1 {
|
|
|
789
786
|
LogGroupResponse: {
|
|
790
787
|
data: components$1["schemas"]["LogGroupResource"];
|
|
791
788
|
};
|
|
789
|
+
/**
|
|
790
|
+
* LogLevel
|
|
791
|
+
* @description Severity level of a logger.
|
|
792
|
+
*
|
|
793
|
+
* Ordered from most-verbose (`TRACE`) to least-verbose (`SILENT`).
|
|
794
|
+
* @enum {string}
|
|
795
|
+
*/
|
|
796
|
+
LogLevel: "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "SILENT";
|
|
792
797
|
/**
|
|
793
798
|
* Logger
|
|
794
799
|
* @description A logger configured for the account.
|
|
@@ -821,11 +826,8 @@ interface components$1 {
|
|
|
821
826
|
* @description Human-readable label for the logger.
|
|
822
827
|
*/
|
|
823
828
|
name: string;
|
|
824
|
-
/**
|
|
825
|
-
|
|
826
|
-
* @description Account-wide log level applied to this logger. `null` means no override at the logger level — the level is inherited from the logger's group or the framework default.
|
|
827
|
-
*/
|
|
828
|
-
level?: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "SILENT") | null;
|
|
829
|
+
/** @description Account-wide log level applied to this logger. `null` means no override at the logger level — the level is inherited from the logger's group or the framework default. */
|
|
830
|
+
level?: components$1["schemas"]["LogLevel"] | null;
|
|
829
831
|
/**
|
|
830
832
|
* Group
|
|
831
833
|
* @description Key of the log group this logger belongs to, or `null` if the logger is not grouped. Assigning a logger to a group promotes it to managed; assigning a group cascades to unmanaged descendants by clearing their group reference.
|
|
@@ -852,10 +854,10 @@ interface components$1 {
|
|
|
852
854
|
} | null;
|
|
853
855
|
/**
|
|
854
856
|
* Effective Levels
|
|
855
|
-
* @description Per-environment summary of what runtimes are reporting for this logger. Keyed by environment name; each
|
|
857
|
+
* @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
858
|
*/
|
|
857
859
|
readonly effective_levels?: {
|
|
858
|
-
[key: string]:
|
|
860
|
+
[key: string]: components$1["schemas"]["LogLevel"][];
|
|
859
861
|
} | null;
|
|
860
862
|
/**
|
|
861
863
|
* Created At
|