@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 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 === "full" ? level : "redacted";
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 === "full" ? level : "redacted";
2080
+ return level === "metadata" || level === "redacted" ? level : "full";
2081
2081
  }
2082
2082
  function emitDiagnostic(diagnostics, event) {
2083
2083
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@replayci/replay",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "ReplayCI SDK for deterministic tool-call validation and observation.",
5
5
  "license": "ISC",
6
6
  "author": "ReplayCI",