sec-edgar-api 1.0.4 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -111,8 +111,8 @@ exports.calculationMapCondensed = {
111
111
  ['incomeNet', 1, 1],
112
112
  ],
113
113
  ],
114
- eps: [[['us-gaap:EarningsPerShareBasic', 1, 0]]],
115
- epsDiluted: [[['us-gaap:EarningsPerShareDiluted', 1, 0]]],
114
+ eps: [[['us-gaap:EarningsPerShareBasic', 1, 0]], [['us-gaap:EarningsPerShareBasicAndDiluted', 1, 0]]],
115
+ epsDiluted: [[['us-gaap:EarningsPerShareDiluted', 1, 0]], [['us-gaap:EarningsPerShareBasicAndDiluted', 1, 0]]],
116
116
  equityRetainedEarnings: [[['us-gaap:RetainedEarningsAccumulatedDeficit', 1, 0]]],
117
117
  equityTotal: [
118
118
  [['us-gaap:StockholdersEquity', 1, 0]],
@@ -287,6 +287,10 @@ exports.calculationMapCondensed = {
287
287
  [['us-gaap:WeightedAverageNumberOfSharesOutstandingBasic', 1, 0]],
288
288
  [['us-gaap:CommonStockSharesOutstanding', 1, 0]],
289
289
  [['dei:EntityCommonStockSharesOutstanding', 1, 0]],
290
+ [['us-gaap:WeightedAverageNumberOfSharesOutstandingBasicAndDiluted', 1, 0]],
291
+ ],
292
+ sharesOutstandingDiluted: [
293
+ [['us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding', 1, 0]],
294
+ [['us-gaap:WeightedAverageNumberOfSharesOutstandingBasicAndDiluted', 1, 0]],
290
295
  ],
291
- sharesOutstandingDiluted: [[['us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding', 1, 0]]],
292
296
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sec-edgar-api",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Fetch and parse SEC earnings reports and other filings. Useful for financial analysis.",
5
5
  "main": "build/index.js",
6
6
  "author": "Andrew Evers (https://github.com/andyevers)",