diff --git a/ts/type/api.ts b/ts/type/api.ts index af9bf45d..a26805c5 100644 --- a/ts/type/api.ts +++ b/ts/type/api.ts @@ -533,6 +533,7 @@ export interface CommunicationDTO { created: string; id: string; source: string; + status: string; type: string; uri: string; } @@ -541,6 +542,7 @@ export class Communication { public created: Date, public id: string, public source: string, + public status: string, public type: string, public uri: string, ) {} @@ -549,6 +551,7 @@ export class Communication { new Date(json.created), json.id, json.source, + json.status, json.type, json.uri, ); diff --git a/ts/view/Communication.vue b/ts/view/Communication.vue index 40ee01b6..fd0a29f2 100644 --- a/ts/view/Communication.vue +++ b/ts/view/Communication.vue @@ -14,7 +14,7 @@