From f2da168a0342a03ac440e44eb68ac61b0acea05a Mon Sep 17 00:00:00 2001 From: James Collins Date: Wed, 26 Apr 2023 11:29:22 +1000 Subject: [PATCH] updated --- resources/js/helpers/api.types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/js/helpers/api.types.ts b/resources/js/helpers/api.types.ts index 6ae50d0..1571ac2 100644 --- a/resources/js/helpers/api.types.ts +++ b/resources/js/helpers/api.types.ts @@ -72,12 +72,13 @@ export interface Article { id: string; title: string; slug: string; - user_id: string; user: User; content: string; publish_at: string; hero: Media; attachments: Array; + created_at: string; + updated_at: string; } export interface ArticleResponse {