Skip to content

Commit

Permalink
feat(typings): Add DirectDepositAccount
Browse files Browse the repository at this point in the history
  • Loading branch information
Antony Warring committed Sep 11, 2024
1 parent 5bfc98a commit 0348e43
Showing 1 changed file with 25 additions and 18 deletions.
43 changes: 25 additions & 18 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ export class EntityTypes {
static DeductionCategoryLookup: 'DeductionCategoryLookup' = 'DeductionCategoryLookup';
static DefaultEarnCode: 'DefaultEarnCode' = 'DefaultEarnCode';
static Department: 'Department' = 'Department';
static DirectDepositAccount: 'DirectDepositAccount' = 'DirectDepositAccount';
static DirectDepositAccountTypeLookup: 'DirectDepositAccountTypeLookup' = 'DirectDepositAccountTypeLookup';
static Discount: 'Discount' = 'Discount';
static DiscountEditHistory: 'DiscountEditHistory' = 'DiscountEditHistory';
static DiscountEditHistoryFieldChange: 'DiscountEditHistoryFieldChange' = 'DiscountEditHistoryFieldChange';
Expand Down Expand Up @@ -4645,24 +4647,6 @@ export interface ClientCorporationTaxExemptionStatusLookup {
isDeleted?: boolean;
label?: Strings;
}

export interface CopilotPrompt {
id?: number;
privateLabelID?: number;
label?: Strings;
copilotRoleID?: number;
copilotTaskID?: number;
copilotToneID?: number;
copilotLengthID?: number;
copilotLanguageID?: number;
isSecondaryEntityRequired?: boolean;
customAction?: Strings;
isEnabled?: boolean;
copilotPromptLocationID?: number;
copilotPrimaryEntityTypeID?: number;
copilotSecondaryEntityTypeID?: number;
}

export interface CorpFile {
id?: number;
contentSubType?: Strings;
Expand Down Expand Up @@ -5096,6 +5080,29 @@ export interface DeliveryMethodLookup {
modifiedByUser?: CorporateUser;
shouldShowInPicker?: boolean;
}
export interface DirectDepositAccount {
id?: number;
accountNumber?: string;
amount?: number;
bankName?: string;
candidate?: Candidate;
currencyUnit?: CurrencyUnit;
dateAdded?: Date;
dateLastModified?: Date;
deletedByUser?: CorporateUser;
directDepositAccountTypeLookup?: DirectDepositAccountTypeLookup;
institutionNumber?: string;
isDeleted?: boolean;
paymentOrder?: number;
percentValue?: number;
remainder?: boolean;
transitNumber?: string;
}
export interface DirectDepositAccountTypeLookup {
id?: number;
isDeleted?: boolean;
label?: Strings;
}
export interface Discount {
id?: number;
addedByUser?: CorporateUser;
Expand Down

0 comments on commit 0348e43

Please sign in to comment.