@insitue/sdk 0.1.9 → 0.1.10

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.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  mountCaptureOnly
3
- } from "./chunk-BNREKX5C.js";
3
+ } from "./chunk-2MZGFEX6.js";
4
4
  import "./chunk-CPPXBTE5.js";
5
5
  export {
6
6
  mountCaptureOnly
@@ -351,11 +351,19 @@ function CaptureOnlyApp(props) {
351
351
  style: `display:flex;justify-content:space-between;padding:9px 16px;border-top:1px solid ${C.line};color:${C.faint};font-size:11px`
352
352
  },
353
353
  [
354
- k("span", {}, "\u{1F512} Secrets scrubbed automatically"),
354
+ // No "Secrets scrubbed" badge — the redaction is narrow
355
+ // (regex on attr-names + console.log args; see
356
+ // packages/sdk/src/runtime.ts safeArg, capture-core/dom.ts
357
+ // serializeNode). Visible password VALUES, URL query
358
+ // params, and any text rendered in the screenshot pixels
359
+ // are NOT scrubbed — claiming otherwise misleads reporters
360
+ // about what's safe to capture. If we ever build real
361
+ // form-value redaction the badge can come back.
362
+ k("span", {}, ""),
355
363
  k(
356
364
  "span",
357
- { title: `@insitue/sdk@${"0.1.9"}` },
358
- `InSitue \xB7 v${"0.1.9"}`
365
+ { title: `@insitue/sdk@${"0.1.10"}` },
366
+ `InSitue \xB7 v${"0.1.10"}`
359
367
  )
360
368
  ]
361
369
  )
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  mountCaptureOnly
3
- } from "./chunk-BNREKX5C.js";
3
+ } from "./chunk-2MZGFEX6.js";
4
4
  import {
5
5
  mountInSitue
6
6
  } from "./chunk-DSHJX2LF.js";
@@ -52,7 +52,7 @@ function InSitueCapture({
52
52
  }
53
53
 
54
54
  // src/index.ts
55
- var SDK_VERSION = "0.1.9";
55
+ var SDK_VERSION = "0.1.10";
56
56
  export {
57
57
  InSitue,
58
58
  InSitueCapture,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insitue/sdk",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "InSitue capture SDK — drop one snippet into your deployed app; your users point at a bug, InSitue opens a verified pull request.",
5
5
  "license": "MIT",
6
6
  "type": "module",