@bitwarden/sdk-internal 0.2.0-main.155 → 0.2.0-main.157
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/VERSION +1 -1
- package/bitwarden_wasm_internal.d.ts +5 -1
- package/bitwarden_wasm_internal_bg.js +1 -1
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +5 -1
- package/node/bitwarden_wasm_internal.js +1 -1
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
6a9ca8ce0d1559c52dacd21225c32528dedabf44
|
|
@@ -930,7 +930,11 @@ export class AttachmentsClient {
|
|
|
930
930
|
/**
|
|
931
931
|
* Decrypts an attachment's encrypted content
|
|
932
932
|
*/
|
|
933
|
-
decrypt_buffer(
|
|
933
|
+
decrypt_buffer(
|
|
934
|
+
cipher: Cipher,
|
|
935
|
+
attachment: AttachmentView,
|
|
936
|
+
encrypted_buffer: Uint8Array,
|
|
937
|
+
): Uint8Array;
|
|
934
938
|
}
|
|
935
939
|
export class BitwardenClient {
|
|
936
940
|
free(): void;
|
|
@@ -774,7 +774,7 @@ export class AttachmentsClient {
|
|
|
774
774
|
/**
|
|
775
775
|
* Decrypts an attachment's encrypted content
|
|
776
776
|
* @param {Cipher} cipher
|
|
777
|
-
* @param {
|
|
777
|
+
* @param {AttachmentView} attachment
|
|
778
778
|
* @param {Uint8Array} encrypted_buffer
|
|
779
779
|
* @returns {Uint8Array}
|
|
780
780
|
*/
|
|
Binary file
|