@replayci/replay 0.1.3 → 0.1.4
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2095,7 +2095,7 @@ function isTruthyEnvFlag(value) {
|
|
|
2095
2095
|
return normalized === "1" || normalized === "true" || normalized === "yes" || normalized === "on";
|
|
2096
2096
|
}
|
|
2097
2097
|
function normalizeCaptureLevel(level) {
|
|
2098
|
-
return level === "metadata" || level === "
|
|
2098
|
+
return level === "metadata" || level === "redacted" ? level : "full";
|
|
2099
2099
|
}
|
|
2100
2100
|
function emitDiagnostic(diagnostics, event) {
|
|
2101
2101
|
try {
|
package/dist/index.js
CHANGED
|
@@ -2077,7 +2077,7 @@ function isTruthyEnvFlag(value) {
|
|
|
2077
2077
|
return normalized === "1" || normalized === "true" || normalized === "yes" || normalized === "on";
|
|
2078
2078
|
}
|
|
2079
2079
|
function normalizeCaptureLevel(level) {
|
|
2080
|
-
return level === "metadata" || level === "
|
|
2080
|
+
return level === "metadata" || level === "redacted" ? level : "full";
|
|
2081
2081
|
}
|
|
2082
2082
|
function emitDiagnostic(diagnostics, event) {
|
|
2083
2083
|
try {
|