@triveria/wallet 0.0.160 → 0.0.161
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 +50 -0
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -300,6 +300,12 @@ export interface CredentialMetadata {
|
|
|
300
300
|
* @memberof CredentialMetadata
|
|
301
301
|
*/
|
|
302
302
|
'status': CredentialMetadataStatusEnum;
|
|
303
|
+
/**
|
|
304
|
+
* Array of objects, where each object contains display properties of a Credential Issuer for a certain language.
|
|
305
|
+
* @type {Array<IssuerDisplayItem>}
|
|
306
|
+
* @memberof CredentialMetadata
|
|
307
|
+
*/
|
|
308
|
+
'issuerDisplay'?: Array<IssuerDisplayItem>;
|
|
303
309
|
}
|
|
304
310
|
export declare const CredentialMetadataStatusEnum: {
|
|
305
311
|
readonly Draft: "draft";
|
|
@@ -905,6 +911,50 @@ export interface IssuanceQueueCredentialAdd {
|
|
|
905
911
|
*/
|
|
906
912
|
'idTokenRequestId'?: string;
|
|
907
913
|
}
|
|
914
|
+
/**
|
|
915
|
+
*
|
|
916
|
+
* @export
|
|
917
|
+
* @interface IssuerDisplayItem
|
|
918
|
+
*/
|
|
919
|
+
export interface IssuerDisplayItem {
|
|
920
|
+
/**
|
|
921
|
+
*
|
|
922
|
+
* @type {string}
|
|
923
|
+
* @memberof IssuerDisplayItem
|
|
924
|
+
*/
|
|
925
|
+
'name'?: string;
|
|
926
|
+
/**
|
|
927
|
+
*
|
|
928
|
+
* @type {string}
|
|
929
|
+
* @memberof IssuerDisplayItem
|
|
930
|
+
*/
|
|
931
|
+
'locale'?: string;
|
|
932
|
+
/**
|
|
933
|
+
*
|
|
934
|
+
* @type {IssuerLogoImage}
|
|
935
|
+
* @memberof IssuerDisplayItem
|
|
936
|
+
*/
|
|
937
|
+
'logo'?: IssuerLogoImage;
|
|
938
|
+
}
|
|
939
|
+
/**
|
|
940
|
+
*
|
|
941
|
+
* @export
|
|
942
|
+
* @interface IssuerLogoImage
|
|
943
|
+
*/
|
|
944
|
+
export interface IssuerLogoImage {
|
|
945
|
+
/**
|
|
946
|
+
*
|
|
947
|
+
* @type {string}
|
|
948
|
+
* @memberof IssuerLogoImage
|
|
949
|
+
*/
|
|
950
|
+
'uri'?: string;
|
|
951
|
+
/**
|
|
952
|
+
*
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof IssuerLogoImage
|
|
955
|
+
*/
|
|
956
|
+
'alt_text'?: string;
|
|
957
|
+
}
|
|
908
958
|
/**
|
|
909
959
|
* TBD
|
|
910
960
|
* @export
|