Skip to content

Commit

Permalink
feat(typings): Add AccountingPeriod types
Browse files Browse the repository at this point in the history
  • Loading branch information
kiri-um-bh committed Feb 21, 2024
1 parent 0434b34 commit 8dfefed
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

// Utility Classes
export class EntityTypes {
static AccountingPeriod: 'AccountingPeriod' = 'AccountingPeriod';
static ActivityGoal: 'ActivityGoal' = 'ActivityGoal';
static ActivityGoalConfiguration: 'ActivityGoalConfiguration' = 'ActivityGoalConfiguration';
static ActivityGoalTarget: 'ActivityGoalTarget' = 'ActivityGoalTarget';
Expand Down Expand Up @@ -758,6 +759,11 @@ export interface ToManyRef<T> {
data: T[];
}

export interface AccountingPeriod {
id?: number;
accountingPeriodDate?: Date;
}

export interface Address {
address1?: string;
address2?: string;
Expand Down Expand Up @@ -1104,6 +1110,8 @@ export interface BillableCharge {
invoicedTransactions?: ToMany<BillableChargeInvoicedTransaction>;
isInvoiced?: boolean;
jobOrder?: JobOrder;
maxAccountingPeriod?: AccountingPeriod;
minAccountingPeriod?: AccountingPeriod;
periodEndDate?: Date;
placement?: Placement;
readyToBillOverride?: boolean;
Expand Down

0 comments on commit 8dfefed

Please sign in to comment.