reportify-sdk 0.2.3 → 0.2.4

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.
package/dist/index.d.mts CHANGED
@@ -273,7 +273,7 @@ declare class StockModule {
273
273
  * Get earnings announcement calendar
274
274
  */
275
275
  earningsCalendar(options?: {
276
- area?: Market;
276
+ market?: Market;
277
277
  startDate?: string;
278
278
  endDate?: string;
279
279
  symbol?: string;
package/dist/index.d.ts CHANGED
@@ -273,7 +273,7 @@ declare class StockModule {
273
273
  * Get earnings announcement calendar
274
274
  */
275
275
  earningsCalendar(options?: {
276
- area?: Market;
276
+ market?: Market;
277
277
  startDate?: string;
278
278
  endDate?: string;
279
279
  symbol?: string;
package/dist/index.js CHANGED
@@ -237,7 +237,7 @@ var StockModule = class {
237
237
  const response = await this.client.post(
238
238
  "/v1/stock/earnings-calendar",
239
239
  {
240
- area: options.area || "us",
240
+ market: options.market || "us",
241
241
  start_date: options.startDate,
242
242
  end_date: options.endDate,
243
243
  symbol: options.symbol
package/dist/index.mjs CHANGED
@@ -201,7 +201,7 @@ var StockModule = class {
201
201
  const response = await this.client.post(
202
202
  "/v1/stock/earnings-calendar",
203
203
  {
204
- area: options.area || "us",
204
+ market: options.market || "us",
205
205
  start_date: options.startDate,
206
206
  end_date: options.endDate,
207
207
  symbol: options.symbol
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reportify-sdk",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "TypeScript SDK for Reportify API - Financial data and document search",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",