Skip to content

Commit

Permalink
Merge pull request #92 from bullhorn/bullhorn/f/BH-70993-bullhornType
Browse files Browse the repository at this point in the history
feat(typings): add federaltaxform, statetaxform, and localtaxform to entity types
  • Loading branch information
EthanMcM authored Jul 9, 2021
2 parents 7d762da + f67df7b commit 152addd
Showing 1 changed file with 119 additions and 0 deletions.
119 changes: 119 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ export class EntityTypes {
static ExternalAccountProfile: 'ExternalAccountProfile' = 'ExternalAccountProfile';
static ExternalBatchStatusRequest: 'ExternalBatchStatusRequest' = 'ExternalBatchStatusRequest';
static ExternalSystem: 'ExternalSystem' = 'ExternalSystem';
static FederalTaxForm: 'FederalTaxForm' = 'FederalTaxForm';
static FieldMapInteraction: 'FieldMapInteraction' = 'FieldMapInteraction';
static File: 'File' = 'File';
static FormTrigger: 'FormTrigger' = 'FormTrigger';
Expand Down Expand Up @@ -353,6 +354,7 @@ export class EntityTypes {
static Lead: 'Lead' = 'Lead';
static LeadHistory: 'LeadHistory' = 'LeadHistory';
static LegalBusinessEntity: 'LegalBusinessEntity' = 'LegalBusinessEntity';
static LocalTaxForm: 'LocalTaxForm' = 'LocalTaxForm';
static Location: 'Location' = 'Location';
static LocationEditHistory: 'LocationEditHistory' = 'LocationEditHistory';
static LocationEditHistoryFieldChange: 'LocationEditHistoryFieldChange' = 'LocationEditHistoryFieldChange';
Expand Down Expand Up @@ -542,6 +544,7 @@ export class EntityTypes {
static Specialty: 'Specialty' = 'Specialty';
static State: 'State' = 'State';
static StateSalesTaxRate: 'StateSalesTaxRate' = 'StateSalesTaxRate';
static StateTaxForm: 'StateTaxForm' = 'StateTaxForm';
static StatusLookup: 'StatusLookup' = 'StatusLookup';
static StopWord: 'StopWord' = 'StopWord';
static SubmissionTemplate: 'SubmissionTemplate' = 'SubmissionTemplate';
Expand Down Expand Up @@ -4893,6 +4896,47 @@ export interface ExternalSystem {
name?: Strings;
webServiceURL?: Strings;
}
export interface FederalTaxForm {
id?: number;
candidate?: Candidate;
customDate1?: Date;
customDate2?: Date;
customDate3?: Date;
customDate4?: Date;
customDate5?: Date;
customInt1?: number;
customInt2?: number;
customInt3?: number;
customInt4?: number;
customInt5?: number;
customMoney1?: number;
customMoney2?: number;
customMoney3?: number;
customMoney4?: number;
customMoney5?: number;
customText1?: Strings;
customText10?: Strings;
customText2?: Strings;
customText3?: Strings;
customText4?: Strings;
customText5?: Strings;
customText6?: Strings;
customText7?: Strings;
customText8?: Strings;
customText9?: Strings;
dateAdded?: Date;
dateLastModified?: Date;
federalAdditionalWithholdingsAmount?: number;
federalExemptions?: number;
federalExtraWithholdingAmount?: number;
federalFilingStatus?: Strings;
isDeleted?: boolean;
isExempt?: boolean;
otherDeductionsAmount?: number;
otherIncomeAmount?: number;
totalDependentClaimAmount?: number;
twoJobs?: boolean;
}
export interface FieldMapInteraction {
id?: number;
dateLastModified?: Date;
Expand Down Expand Up @@ -7617,6 +7661,44 @@ export interface LegalBusinessEntity {
shortName?: Strings;
statusLookup?: StatusLookup;
}
export interface LocalTaxForm {
id?: number;
candidate?: Candidate;
customDate1?: Date;
customDate2?: Date;
customDate3?: Date;
customDate4?: Date;
customDate5?: Date;
customInt1?: number;
customInt2?: number;
customInt3?: number;
customInt4?: number;
customInt5?: number;
customMoney1?: number;
customMoney2?: number;
customMoney3?: number;
customMoney4?: number;
customMoney5?: number;
customText1?: Strings;
customText10?: Strings;
customText2?: Strings;
customText3?: Strings;
customText4?: Strings;
customText5?: Strings;
customText6?: Strings;
customText7?: Strings;
customText8?: Strings;
customText9?: Strings;
dateAdded?: Date;
dateLastModified?: Date;
isDeleted?: boolean;
isExempt?: boolean;
localAdditionalWithholdingsAmount?: number;
localExemptions?: number;
localFilingStatus?: Strings;
localTaxCode?: Strings;
localTaxStateID?: number;
}
export interface Location {
id?: number;
address?: Address;
Expand Down Expand Up @@ -13592,6 +13674,43 @@ export interface StatusLookup {
isDeleted?: boolean;
label?: Strings;
}
export interface StateTaxForm {
id?: number;
candidate?: Candidate;
customDate1?: Date;
customDate2?: Date;
customDate3?: Date;
customDate4?: Date;
customDate5?: Date;
customInt1?: number;
customInt2?: number;
customInt3?: number;
customInt4?: number;
customInt5?: number;
customMoney1?: number;
customMoney2?: number;
customMoney3?: number;
customMoney4?: number;
customMoney5?: number;
customText1?: Strings;
customText10?: Strings;
customText2?: Strings;
customText3?: Strings;
customText4?: Strings;
customText5?: Strings;
customText6?: Strings;
customText7?: Strings;
customText8?: Strings;
customText9?: Strings;
dateAdded?: Date;
dateLastModified?: Date;
isDeleted?: boolean;
isExempt?: boolean;
stateAdditionalWithholdingsAmount?: number;
stateExemptions?: number;
stateFilingStatus?: Strings;
taxStateID?: number;
}
export interface StopWord {
id?: number;
dateAdded?: Date;
Expand Down

0 comments on commit 152addd

Please sign in to comment.