Skip to content

Commit

Permalink
Include created / updated attributes to resume typings
Browse files Browse the repository at this point in the history
  • Loading branch information
joonvena committed Mar 4, 2024
1 parent 3d7c43e commit d8087e2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,20 @@ export interface CompanyUserResumeBase {

companyUserId?: number | null;

created?: {
companyUserId: number | null;
firstName: string | null;
lastName: string | null;
time: string | null;
} | null;

updated?: {
companyUserId: number | null;
firstName: string | null;
lastName: string | null;
time: string | null;
} | null;

companyId?: number | null;
title?: string | null;
description?: string | null;
Expand Down

0 comments on commit d8087e2

Please sign in to comment.