@smplkit/sdk 3.0.66 → 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.cjs.map +1 -1
- package/dist/index.d.cts +9 -9
- package/dist/index.d.ts +9 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -209,13 +209,13 @@ interface HttpHeader {
|
|
|
209
209
|
* policies) and will get its own type if customer demand warrants.
|
|
210
210
|
*/
|
|
211
211
|
declare enum ForwarderType {
|
|
212
|
-
DATADOG = "
|
|
213
|
-
ELASTIC = "
|
|
214
|
-
HONEYCOMB = "
|
|
215
|
-
HTTP = "
|
|
216
|
-
NEW_RELIC = "
|
|
217
|
-
SPLUNK_HEC = "
|
|
218
|
-
SUMO_LOGIC = "
|
|
212
|
+
DATADOG = "datadog",
|
|
213
|
+
ELASTIC = "elastic",
|
|
214
|
+
HONEYCOMB = "honeycomb",
|
|
215
|
+
HTTP = "http",
|
|
216
|
+
NEW_RELIC = "new_relic",
|
|
217
|
+
SPLUNK_HEC = "splunk_hec",
|
|
218
|
+
SUMO_LOGIC = "sumo_logic"
|
|
219
219
|
}
|
|
220
220
|
/**
|
|
221
221
|
* HTTP verb used by a forwarder's outbound delivery.
|
|
@@ -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
|
@@ -209,13 +209,13 @@ interface HttpHeader {
|
|
|
209
209
|
* policies) and will get its own type if customer demand warrants.
|
|
210
210
|
*/
|
|
211
211
|
declare enum ForwarderType {
|
|
212
|
-
DATADOG = "
|
|
213
|
-
ELASTIC = "
|
|
214
|
-
HONEYCOMB = "
|
|
215
|
-
HTTP = "
|
|
216
|
-
NEW_RELIC = "
|
|
217
|
-
SPLUNK_HEC = "
|
|
218
|
-
SUMO_LOGIC = "
|
|
212
|
+
DATADOG = "datadog",
|
|
213
|
+
ELASTIC = "elastic",
|
|
214
|
+
HONEYCOMB = "honeycomb",
|
|
215
|
+
HTTP = "http",
|
|
216
|
+
NEW_RELIC = "new_relic",
|
|
217
|
+
SPLUNK_HEC = "splunk_hec",
|
|
218
|
+
SUMO_LOGIC = "sumo_logic"
|
|
219
219
|
}
|
|
220
220
|
/**
|
|
221
221
|
* HTTP verb used by a forwarder's outbound delivery.
|
|
@@ -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
|