From 1d0d48e3d5c1592d73676a4a05bfb0eedcaeb01a Mon Sep 17 00:00:00 2001 From: Gadi Cohen Date: Mon, 5 Feb 2024 10:55:05 +0200 Subject: [PATCH] fix(quoteSummary): allow totalOtherIncomeExpenseNet null (fixes #734) --- schema.json | 2 +- src/modules/quoteSummary-iface.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/schema.json b/schema.json index c11d8c69..55696323 100644 --- a/schema.json +++ b/schema.json @@ -7157,7 +7157,7 @@ "yahooFinanceType": "number|null" }, "totalOtherIncomeExpenseNet": { - "yahooFinanceType": "number" + "yahooFinanceType": "number|null" }, "ebit": { "yahooFinanceType": "number" diff --git a/src/modules/quoteSummary-iface.ts b/src/modules/quoteSummary-iface.ts index 8a5efb95..c6b9151a 100644 --- a/src/modules/quoteSummary-iface.ts +++ b/src/modules/quoteSummary-iface.ts @@ -569,7 +569,7 @@ export interface IncomeStatementHistoryElement { otherOperatingExpenses: number | null; totalOperatingExpenses: number; operatingIncome: number | null; // Example of null in EREGL.IS (#517) - totalOtherIncomeExpenseNet: number; + totalOtherIncomeExpenseNet: number | null; // null since Since Feb 22 (#734) ebit: number; interestExpense: number | null; incomeBeforeTax: number | null;