From f05691d9113fe1b8f06193c793f5df09cc652484 Mon Sep 17 00:00:00 2001 From: James Collins Date: Tue, 28 Feb 2023 08:47:59 +1000 Subject: [PATCH] expand user type --- resources/js/helpers/api.types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/js/helpers/api.types.ts b/resources/js/helpers/api.types.ts index 7375fed..ee4a9f9 100644 --- a/resources/js/helpers/api.types.ts +++ b/resources/js/helpers/api.types.ts @@ -66,6 +66,10 @@ export interface PostCollection { export interface User { id: string; username: string; + email: string; + first_name: string; + last_name: string; + phone: string; } export interface UserResponse {