@noy-db/hub 0.7.0-pre.0 → 0.7.0-pre.2
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/CHANGELOG.md +52 -0
- package/codemods/0.7.0-pre.json +36 -0
- package/dist/cargo/index.js +1 -1
- package/dist/{chunk-Y3YLJORD.js → chunk-3SMSERQU.js} +4 -4
- package/dist/{chunk-Y3YLJORD.js.map → chunk-3SMSERQU.js.map} +1 -1
- package/dist/{chunk-YKPGQJFU.js → chunk-H3VG6XBC.js} +2 -2
- package/dist/{chunk-ATV637J7.js → chunk-ISSU3OH6.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/kernel/vault.d.ts +3 -3
- package/dist/{noydb-EDJA4JNJ.js → noydb-4VV2ZGLZ.js} +2 -2
- package/dist/pod/index.js +2 -2
- package/package.json +3 -3
- /package/dist/{chunk-YKPGQJFU.js.map → chunk-H3VG6XBC.js.map} +0 -0
- /package/dist/{chunk-ATV637J7.js.map → chunk-ISSU3OH6.js.map} +0 -0
- /package/dist/{noydb-EDJA4JNJ.js.map → noydb-4VV2ZGLZ.js.map} +0 -0
|
@@ -250,7 +250,7 @@ async function createOwnerOnAdoptedPartition(store, vaultName, opts) {
|
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
252
|
if (isManaged(opts)) {
|
|
253
|
-
const { createNoydb } = await import("./noydb-
|
|
253
|
+
const { createNoydb } = await import("./noydb-4VV2ZGLZ.js");
|
|
254
254
|
const db = await createNoydb({
|
|
255
255
|
store,
|
|
256
256
|
user: userId,
|
|
@@ -305,4 +305,4 @@ export {
|
|
|
305
305
|
withCargo,
|
|
306
306
|
describeExtraction
|
|
307
307
|
};
|
|
308
|
-
//# sourceMappingURL=chunk-
|
|
308
|
+
//# sourceMappingURL=chunk-H3VG6XBC.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createNoydb
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-3SMSERQU.js";
|
|
4
4
|
import {
|
|
5
5
|
deriveSchemaManifest
|
|
6
6
|
} from "./chunk-QHJKK77B.js";
|
|
@@ -286,4 +286,4 @@ export {
|
|
|
286
286
|
followRedirects,
|
|
287
287
|
open
|
|
288
288
|
};
|
|
289
|
-
//# sourceMappingURL=chunk-
|
|
289
|
+
//# sourceMappingURL=chunk-ISSU3OH6.js.map
|
package/dist/index.js
CHANGED
|
@@ -63,7 +63,7 @@ import {
|
|
|
63
63
|
import {
|
|
64
64
|
decryptExtractedPartition,
|
|
65
65
|
withCargo
|
|
66
|
-
} from "./chunk-
|
|
66
|
+
} from "./chunk-H3VG6XBC.js";
|
|
67
67
|
import "./chunk-OWLVBOWO.js";
|
|
68
68
|
import {
|
|
69
69
|
diffVault
|
|
@@ -123,7 +123,7 @@ import {
|
|
|
123
123
|
signRedirect,
|
|
124
124
|
verifyRedirect,
|
|
125
125
|
wrapPodStore
|
|
126
|
-
} from "./chunk-
|
|
126
|
+
} from "./chunk-ISSU3OH6.js";
|
|
127
127
|
import {
|
|
128
128
|
Collection,
|
|
129
129
|
ELEVATION_AUDIT_COLLECTION,
|
|
@@ -142,7 +142,7 @@ import {
|
|
|
142
142
|
refArray,
|
|
143
143
|
via,
|
|
144
144
|
withArchive
|
|
145
|
-
} from "./chunk-
|
|
145
|
+
} from "./chunk-3SMSERQU.js";
|
|
146
146
|
import "./chunk-VAG47QHV.js";
|
|
147
147
|
import {
|
|
148
148
|
deriveSchemaManifest,
|
package/dist/kernel/vault.d.ts
CHANGED
|
@@ -1165,9 +1165,9 @@ export declare class Vault {
|
|
|
1165
1165
|
* - The keyring must already carry a wrap for the target tier on
|
|
1166
1166
|
* at least one collection (or be `owner` / `admin`, who can
|
|
1167
1167
|
* auto-mint). Otherwise throws {@link TierNotGrantedError}.
|
|
1168
|
-
* -
|
|
1169
|
-
* `
|
|
1170
|
-
* projection, not a privilege escalation path.
|
|
1168
|
+
* - The export gates (`assertCanExport('plaintext', fmt)` and
|
|
1169
|
+
* `assertCanExport('bundle')`) are NOT bypassed — elevation is a
|
|
1170
|
+
* tier projection, not a privilege escalation path.
|
|
1171
1171
|
* - Only one elevation can be active per vault at a time.
|
|
1172
1172
|
* Calling `elevate(...)` while another is live throws
|
|
1173
1173
|
* {@link AlreadyElevatedError}.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Noydb,
|
|
3
3
|
createNoydb
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-3SMSERQU.js";
|
|
5
5
|
import "./chunk-VAG47QHV.js";
|
|
6
6
|
import "./chunk-EPFF7LOX.js";
|
|
7
7
|
import "./chunk-WLLUM35R.js";
|
|
@@ -83,4 +83,4 @@ export {
|
|
|
83
83
|
Noydb,
|
|
84
84
|
createNoydb
|
|
85
85
|
};
|
|
86
|
-
//# sourceMappingURL=noydb-
|
|
86
|
+
//# sourceMappingURL=noydb-4VV2ZGLZ.js.map
|
package/dist/pod/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noy-db/hub",
|
|
3
|
-
"version": "0.7.0-pre.
|
|
3
|
+
"version": "0.7.0-pre.2",
|
|
4
4
|
"description": "Zero-knowledge, offline-first, encrypted document store — core library with AES-256-GCM, PBKDF2, multi-user keyring, and sync engine",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "vLannaAi <vicio@lanna.ai>",
|
|
@@ -233,14 +233,14 @@
|
|
|
233
233
|
"node": ">=22.0.0"
|
|
234
234
|
},
|
|
235
235
|
"dependencies": {
|
|
236
|
-
"@noy-db/attestation": "0.7.0-pre.
|
|
236
|
+
"@noy-db/attestation": "0.7.0-pre.2"
|
|
237
237
|
},
|
|
238
238
|
"devDependencies": {
|
|
239
239
|
"@types/node": "^22.0.0",
|
|
240
240
|
"esbuild": "^0.25.0",
|
|
241
241
|
"zod": "^4.0.0",
|
|
242
242
|
"zod-to-json-schema": "^3.25.2",
|
|
243
|
-
"@noy-db/on-shamir": "0.7.0-pre.
|
|
243
|
+
"@noy-db/on-shamir": "0.7.0-pre.2"
|
|
244
244
|
},
|
|
245
245
|
"peerDependencies": {
|
|
246
246
|
"zod-to-json-schema": "^3.25.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|