@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.js
CHANGED
|
@@ -1403,6 +1403,10 @@ var privacy3 = {
|
|
|
1403
1403
|
k: "encrypted blobs",
|
|
1404
1404
|
v: "opaque ciphertext keyed to your identity address \u2014 OrangeCheck cannot decrypt it"
|
|
1405
1405
|
},
|
|
1406
|
+
{
|
|
1407
|
+
k: "per-item metadata",
|
|
1408
|
+
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.'
|
|
1409
|
+
},
|
|
1406
1410
|
{
|
|
1407
1411
|
k: "access tokens",
|
|
1408
1412
|
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."
|
|
@@ -1424,7 +1428,6 @@ var privacy3 = {
|
|
|
1424
1428
|
items: [
|
|
1425
1429
|
"The contents of any vault item",
|
|
1426
1430
|
"The names, titles, or types of your items",
|
|
1427
|
-
"How many items you store or how often you use them",
|
|
1428
1431
|
"Your vault key or any recovery material",
|
|
1429
1432
|
"Your access tokens (only the SHA-256 hash is stored)",
|
|
1430
1433
|
"Which sites the browser extension autofilled on \u2014 origin matching happens locally in your browser"
|