@triveria/wallet 0.0.227 → 0.0.228
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/api.d.ts +13 -1
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -277,11 +277,17 @@ export interface CredentialIssuanceInitResult {
|
|
|
277
277
|
*/
|
|
278
278
|
export interface CredentialIssuerDefinition {
|
|
279
279
|
/**
|
|
280
|
-
* Human readable
|
|
280
|
+
* Human readable issuer name
|
|
281
281
|
* @type {string}
|
|
282
282
|
* @memberof CredentialIssuerDefinition
|
|
283
283
|
*/
|
|
284
284
|
'name': string;
|
|
285
|
+
/**
|
|
286
|
+
* Human readable issuer description
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof CredentialIssuerDefinition
|
|
289
|
+
*/
|
|
290
|
+
'description'?: string;
|
|
285
291
|
/**
|
|
286
292
|
* Unique identifier of the issuer
|
|
287
293
|
* @type {string}
|
|
@@ -742,6 +748,12 @@ export interface CredentialVerifierDefinition {
|
|
|
742
748
|
* @memberof CredentialVerifierDefinition
|
|
743
749
|
*/
|
|
744
750
|
'name': string;
|
|
751
|
+
/**
|
|
752
|
+
*
|
|
753
|
+
* @type {string}
|
|
754
|
+
* @memberof CredentialVerifierDefinition
|
|
755
|
+
*/
|
|
756
|
+
'description'?: string;
|
|
745
757
|
/**
|
|
746
758
|
* Unique ID of the definition
|
|
747
759
|
* @type {string}
|