Skip to content

Commit

Permalink
feat(typings): Add interface for TimesheetVersion
Browse files Browse the repository at this point in the history
feat(typings): Add interface for TimesheetVersion
  • Loading branch information
jordanbullhorn authored Jul 29, 2024
2 parents 30637b7 + b39faf1 commit ac877f0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,7 @@ export class EntityTypes {
static TimesheetActivityType: 'TimesheetActivityType' = 'TimesheetActivityType';
static TimesheetEntry: 'TimesheetEntry' = 'TimesheetEntry';
static TimesheetEntryApprovalStatusLookup: 'TimesheetEntryApprovalStatusLookup' = 'TimesheetEntryApprovalStatusLookup';
static TimesheetVersion: 'TimesheetVersion' = 'TimesheetVersion';
static TransactionNote: 'TransactionNote' = 'TransactionNote';
static TransactionNoteType: 'TransactionNoteType' = 'TransactionNoteType';
static TransactionOrigin: 'TransactionOrigin' = 'TransactionOrigin';
Expand Down Expand Up @@ -15614,7 +15615,7 @@ export interface Timesheet {
jobOrder?: JobOrder;
lastModifiedAtUtc?: Date;
lastProcessedOn?: Date;
lastVersion?: number;
lastVersion?: TimesheetVersion;
modifyingUser?: CorporateUser;
paid?: number;
placement?: Placement;
Expand All @@ -15623,6 +15624,12 @@ export interface Timesheet {
timesheetEntryApprovalStatusLookup?: TimesheetEntryApprovalStatusLookup;
units?: boolean;
}
export interface TimesheetVersion {
versionHash?: string;
versionNumber?: number;
timesheetVersionId?: number;
timesheetId?: number;
}
export interface TimesheetActivity {
id?: number;
activityExternalId?: number;
Expand Down

0 comments on commit ac877f0

Please sign in to comment.