@orangecheck/legal 0.3.0 → 0.4.0
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.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1397,6 +1397,10 @@ var privacy3 = {
|
|
|
1397
1397
|
k: "encrypted blobs",
|
|
1398
1398
|
v: "opaque ciphertext keyed to your identity address \u2014 OrangeCheck cannot decrypt it"
|
|
1399
1399
|
},
|
|
1400
|
+
{
|
|
1401
|
+
k: "per-item metadata",
|
|
1402
|
+
v: 'one row per stored item, carrying its opaque envelope id and a last-updated timestamp. That means we CAN see how many items you store and when each last changed \u2014 the count is what enforces the per-account item ceiling in the service limits, and the timestamp is what lets a second device know which items to re-sync. We cannot see what any item is: not its contents, not its name, not its type. This entry previously appeared on the "what we cannot see" list, which was wrong.'
|
|
1403
|
+
},
|
|
1400
1404
|
{
|
|
1401
1405
|
k: "access tokens",
|
|
1402
1406
|
v: "for developer / CLI / CI access: an SHA-256 hash of each token, an optional label, the granted scope (read or read-write), creation / last-used / optional expiry timestamps. We never store the token itself \u2014 only its hash."
|
|
@@ -1418,7 +1422,6 @@ var privacy3 = {
|
|
|
1418
1422
|
items: [
|
|
1419
1423
|
"The contents of any vault item",
|
|
1420
1424
|
"The names, titles, or types of your items",
|
|
1421
|
-
"How many items you store or how often you use them",
|
|
1422
1425
|
"Your vault key or any recovery material",
|
|
1423
1426
|
"Your access tokens (only the SHA-256 hash is stored)",
|
|
1424
1427
|
"Which sites the browser extension autofilled on \u2014 origin matching happens locally in your browser"
|