@lifeready/core 6.1.1 → 6.1.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/bundles/lifeready-core.umd.js +23 -74
- package/bundles/lifeready-core.umd.js.map +1 -1
- package/bundles/lifeready-core.umd.min.js +1 -1
- package/bundles/lifeready-core.umd.min.js.map +1 -1
- package/esm2015/lib/encryption/encryption.service.js +7 -6
- package/esm2015/lib/item2/item2.service.js +3 -2
- package/esm2015/lib/key/key-graph.service.js +3 -3
- package/esm2015/lib/key/key-meta.service.js +1 -57
- package/esm2015/lib/key/key.types.js +6 -1
- package/fesm2015/lifeready-core.js +23 -74
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/item2/item2.service.d.ts +1 -1
- package/lib/key/key.types.d.ts +4 -1
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ export declare class Item2Service extends LrService {
|
|
|
23
23
|
kcType: string;
|
|
24
24
|
};
|
|
25
25
|
static TEMP_DIRECTORY_PLAIN_META_FILTER: string;
|
|
26
|
-
downloadFileContent(options: DownloadFileContentOptions): Promise<
|
|
26
|
+
downloadFileContent(options: DownloadFileContentOptions): Promise<Uint8Array>;
|
|
27
27
|
getDirectoryKeyId(directoryId: LrRelayIdInput): Promise<string>;
|
|
28
28
|
getFileKeyId(fileId: LrRelayIdInput): Promise<string>;
|
|
29
29
|
getDirectoryKey(directoryId: LrRelayIdInput, directoryKeyId?: LrRelayIdInput): Promise<import("../key/key.types").Key>;
|
package/lib/key/key.types.d.ts
CHANGED
|
@@ -64,7 +64,10 @@ export interface KeyGraphResponse {
|
|
|
64
64
|
export interface HasKeyGraph {
|
|
65
65
|
keyGraph?: KeyGraphResponse;
|
|
66
66
|
}
|
|
67
|
-
export declare
|
|
67
|
+
export declare enum PayloadType {
|
|
68
|
+
JSON = "JSON",
|
|
69
|
+
UINT_8_ARRAY = "UINT_8_ARRAY"
|
|
70
|
+
}
|
|
68
71
|
export interface DeriveKeyResult {
|
|
69
72
|
jwk: JWK.Key;
|
|
70
73
|
}
|