This is an automated email from the ASF dual-hosted git repository. ocket8888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git
commit 170062d09c47fa40811dd0543531b68870b45c6d Author: ocket8888 <[email protected]> AuthorDate: Mon Jan 30 19:13:39 2023 -0700 Fix current user model missing properties --- src/user.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/user.ts b/src/user.ts index 0fa9972..c500b97 100644 --- a/src/user.ts +++ b/src/user.ts @@ -128,6 +128,7 @@ export type User = RequestUser | ResponseUser; export interface ResponseCurrentUser { addressLine1: string | null; addressLine2: string | null; + readonly changeLogCount: number; city: string | null; company: string | null; country: string | null; @@ -147,6 +148,7 @@ export interface ResponseCurrentUser { stateOrProvince: string | null; tenant: string; tenantId: number; + ucdn: string; uid: number | null; username: string; } @@ -183,6 +185,7 @@ export interface RequestCurrentUser { role: string; stateOrProvince?: string | null; tenantId: number; + ucdn?: string | null; /** * @deprecated This serves no purpose and is subject to removal in the * future.
