@aikdna/kdna-core 0.11.1 → 0.12.1
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/LICENSE +202 -0
- package/NOTICE +9 -0
- package/README.md +63 -154
- package/package.json +7 -4
- package/schema/load-plan.schema.json +119 -0
- package/src/types.d.ts +50 -0
- package/src/v1/index.js +605 -17
- package/src/v1/index.mjs +2 -0
package/src/v1/index.mjs
CHANGED
|
@@ -9,6 +9,8 @@ export const detectContainerFormat = v1.detectContainerFormat;
|
|
|
9
9
|
export const readV1Layout = v1.readV1Layout;
|
|
10
10
|
export const inspect = v1.inspect;
|
|
11
11
|
export const validate = v1.validate;
|
|
12
|
+
export const planLoad = v1.planLoad;
|
|
13
|
+
export const loadAuthorized = v1.loadAuthorized;
|
|
12
14
|
export const buildChecksumsV1 = v1.buildChecksumsV1;
|
|
13
15
|
export const pack = v1.pack;
|
|
14
16
|
export const unpack = v1.unpack;
|