Comparing version 7.0.0-beta.10 to 7.0.0-beta.11
export declare abstract class AbstractSecretBox { | ||
abstract encrypt(message: string): Promise<string>; | ||
abstract decrypt(encryptedMessageHex: string): Promise<string>; | ||
abstract encrypt(message: string): Promise<string> | ||
abstract decrypt(encryptedMessageHex: string): Promise<string> | ||
} | ||
//# sourceMappingURL=abstract-secret-box.d.ts.map | ||
//# sourceMappingURL=abstract-secret-box.d.ts.map |
@@ -1,10 +0,9 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AbstractSecretBox = void 0; | ||
'use strict' | ||
Object.defineProperty(exports, '__esModule', { value: true }) | ||
exports.AbstractSecretBox = void 0 | ||
var AbstractSecretBox = /** @class */ (function () { | ||
function AbstractSecretBox() { | ||
} | ||
return AbstractSecretBox; | ||
}()); | ||
exports.AbstractSecretBox = AbstractSecretBox; | ||
//# sourceMappingURL=abstract-secret-box.js.map | ||
function AbstractSecretBox() {} | ||
return AbstractSecretBox | ||
})() | ||
exports.AbstractSecretBox = AbstractSecretBox | ||
//# sourceMappingURL=abstract-secret-box.js.map |
@@ -97,3 +97,5 @@ import { DIDDocument } from 'did-resolver'; | ||
* ```typescript | ||
* const doc = await agent.resolveDid({ didUrl: 'did:web:uport.me' }) | ||
* const doc = await agent.resolveDid({ | ||
* didUrl: 'did:web:uport.me' | ||
* }) | ||
* ``` | ||
@@ -100,0 +102,0 @@ * |
@@ -6,2 +6,10 @@ # Change Log | ||
# [7.0.0-beta.11](https://github.com/uport-project/daf/compare/v7.0.0-beta.10...v7.0.0-beta.11) (2020-08-17) | ||
**Note:** Version bump only for package daf-core | ||
# [7.0.0-beta.10](https://github.com/uport-project/daf/compare/v7.0.0-beta.9...v7.0.0-beta.10) (2020-08-17) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "daf-core", | ||
"description": "DID Agent Framework Core", | ||
"version": "7.0.0-beta.10", | ||
"version": "7.0.0-beta.11", | ||
"main": "build/index.js", | ||
@@ -30,3 +30,3 @@ "types": "build/index.d.ts", | ||
"keywords": [], | ||
"gitHead": "1ada75a686a8b2d2e7f743be59b10b5dfa2f80ce" | ||
"gitHead": "9ecf98cd1126f26998679b3fd92c6dc5b7c83bff" | ||
} |
@@ -183,3 +183,3 @@ import { AbstractIdentityProvider } from './abstract/abstract-identity-provider' | ||
const result = await provider.removeKey({ identity, kid, options }, context) | ||
identity.keys = identity.keys.filter(k => k.kid !== kid) | ||
identity.keys = identity.keys.filter((k) => k.kid !== kid) | ||
await this.store.import(identity) | ||
@@ -208,3 +208,3 @@ return result | ||
const result = await provider.removeService({ identity, id, options }, context) | ||
identity.services = identity.services.filter(s => s.id !== id) | ||
identity.services = identity.services.filter((s) => s.id !== id) | ||
await this.store.import(identity) | ||
@@ -211,0 +211,0 @@ return result |
@@ -115,3 +115,5 @@ import { DIDDocument } from 'did-resolver' | ||
* ```typescript | ||
* const doc = await agent.resolveDid({ didUrl: 'did:web:uport.me' }) | ||
* const doc = await agent.resolveDid({ | ||
* didUrl: 'did:web:uport.me' | ||
* }) | ||
* ``` | ||
@@ -118,0 +120,0 @@ * |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
163430
2297