chore(deps): upgrade snjs & sncrypto-web to npm package versions

This commit is contained in:
Baptiste Grob
2020-11-19 13:37:49 +01:00
parent 1c9337113d
commit 3a16140699
42 changed files with 106 additions and 75 deletions

View File

@@ -1,4 +1,4 @@
import { DeviceInterface, getGlobalScope, SNApplication, ApplicationIdentifier } from 'snjs';
import { DeviceInterface, getGlobalScope, SNApplication, ApplicationIdentifier } from '@standardnotes/snjs';
import { Database } from '@/database';
import { Bridge } from './services/bridge';
@@ -125,6 +125,10 @@ export class WebDeviceInterface extends DeviceInterface {
return this.bridge.getKeychainValue();
}
legacy_setRawKeychainValue(value: unknown): Promise<any> {
return this.bridge.setKeychainValue(value);
}
clearRawKeychainValue() {
return this.bridge.clearKeychainValue();
}