@extrimian/did-core
Advanced tools
Comparing version 1.0.8 to 1.1.0
@@ -8,1 +8,2 @@ export * from './models/did-document'; | ||
export * from "./models/messaging/didcom-message"; | ||
export * from "./storage"; |
@@ -24,2 +24,3 @@ "use strict"; | ||
__exportStar(require("./models/messaging/didcom-message"), exports); | ||
__exportStar(require("./storage"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -6,5 +6,5 @@ export declare class DIDCommMessage<TBody = any, TAttachment = any> { | ||
from: string; | ||
to: string[]; | ||
body: TBody; | ||
attachments: TAttachment; | ||
to?: string[]; | ||
body?: TBody; | ||
attachments?: TAttachment; | ||
} |
@@ -1,2 +0,2 @@ | ||
export declare type Service = { | ||
export type Service = { | ||
id: string; | ||
@@ -3,0 +3,0 @@ type: string; |
{ | ||
"name": "@extrimian/did-core", | ||
"version": "1.0.8", | ||
"version": "1.1.0", | ||
"description": "", | ||
@@ -25,2 +25,2 @@ "main": "dist/index.js", | ||
} | ||
} | ||
} |
@@ -7,2 +7,3 @@ export * from './models/did-document'; | ||
export * from './models/service'; | ||
export * from "./models/messaging/didcom-message"; | ||
export * from "./models/messaging/didcom-message"; | ||
export * from "./storage" |
@@ -6,5 +6,5 @@ export class DIDCommMessage<TBody = any, TAttachment = any> { | ||
from: string; | ||
to: string[]; | ||
body: TBody; | ||
attachments: TAttachment; | ||
to?: string[]; | ||
body?: TBody; | ||
attachments?: TAttachment; | ||
} |
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
76485
59
1354