Skip to content

Commit

Permalink
fix(quoteSummary): more incomeStatement nulls; THYAO.IS; fixes #517
Browse files Browse the repository at this point in the history
  • Loading branch information
gadicc committed Aug 13, 2022
1 parent 6a63acd commit 46cb9eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6308,7 +6308,7 @@
"yahooFinanceType": "number|null"
},
"incomeBeforeTax": {
"yahooFinanceType": "number"
"yahooFinanceType": "number|null"
},
"incomeTaxExpense": {
"yahooFinanceType": "number"
Expand All @@ -6317,7 +6317,7 @@
"yahooFinanceType": "number|null"
},
"netIncomeFromContinuingOps": {
"yahooFinanceType": "number"
"yahooFinanceType": "number|null"
},
"discontinuedOperations": {
"yahooFinanceType": "number|null"
Expand All @@ -6335,7 +6335,7 @@
"yahooFinanceType": "number"
},
"netIncomeApplicableToCommonShares": {
"yahooFinanceType": "number"
"yahooFinanceType": "number|null"
}
},
"required": [
Expand Down
6 changes: 3 additions & 3 deletions src/modules/quoteSummary-iface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -567,16 +567,16 @@ export interface IncomeStatementHistoryElement {
totalOtherIncomeExpenseNet: number;
ebit: number;
interestExpense: number | null;
incomeBeforeTax: number;
incomeBeforeTax: number | null;
incomeTaxExpense: number;
minorityInterest: number | null;
netIncomeFromContinuingOps: number;
netIncomeFromContinuingOps: number | null;
discontinuedOperations: number | null;
extraordinaryItems: number | null;
effectOfAccountingCharges: number | null;
otherItems: number | null;
netIncome: number;
netIncomeApplicableToCommonShares: number;
netIncomeApplicableToCommonShares: number | null;
}

export interface IndexTrend {
Expand Down

0 comments on commit 46cb9eb

Please sign in to comment.