From 796c335d15014ab04ab94ec8cd22bdd60f2b6526 Mon Sep 17 00:00:00 2001 From: Jacob Singer Date: Mon, 15 May 2023 07:12:46 -0700 Subject: [PATCH] feat: add cardImageUrl to CardDetailsDto (#16) --- index.d.ts | 1 + package-lock.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index 3570350..6af8be0 100644 --- a/index.d.ts +++ b/index.d.ts @@ -302,6 +302,7 @@ export interface CardDto { export interface CardDetailsDto { issuerUuid: string; // uuid of the issuing brand issuerName: string; // issuerName of the issuing brand + cardImageUrl: string; // cardImageUrl of the issuing brand createdAt: string; // ms since epoch, unix timestamp of the first credential issued by the brand updatedAt: string; // ms since epoch, unix timestamp of the last credential updated by the brand credentials: CredentialDto[]; // credentials issued by the brand to the user diff --git a/package-lock.json b/package-lock.json index 3090d47..dcab177 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@unumid/core-types", - "version": "0.11.0", + "version": "0.12.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@unumid/core-types", - "version": "0.11.0", + "version": "0.12.0", "license": "ISC", "devDependencies": { "typescript": "^4.9.5"