@fre4x/yahoo-finance 1.0.65-beta.0 → 1.0.65
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.js +6 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -69202,7 +69202,9 @@ server.registerTool(
|
|
|
69202
69202
|
description: "Get calls or puts option chain for a ticker and expiration date.",
|
|
69203
69203
|
inputSchema: external_exports3.object({
|
|
69204
69204
|
ticker: external_exports3.string().describe("Ticker symbol e.g. 'AAPL'"),
|
|
69205
|
-
expiration_date: external_exports3.string().describe(
|
|
69205
|
+
expiration_date: external_exports3.string().describe(
|
|
69206
|
+
"Expiration date in YYYY-MM-DD format, e.g. 2026-06-19"
|
|
69207
|
+
),
|
|
69206
69208
|
option_type: external_exports3.enum(["calls", "puts"]).describe("Option type"),
|
|
69207
69209
|
...paginationSchema.shape
|
|
69208
69210
|
}).strict(),
|
|
@@ -69251,7 +69253,9 @@ server.registerTool(
|
|
|
69251
69253
|
inputSchema: external_exports3.object({
|
|
69252
69254
|
ticker: external_exports3.string().describe("Ticker symbol e.g. 'AAPL'"),
|
|
69253
69255
|
recommendation_type: external_exports3.enum(["recommendations", "upgrades_downgrades"]).default("recommendations").describe("Type of recommendation data"),
|
|
69254
|
-
months_back: external_exports3.number().int().min(1).max(120).default(12).describe(
|
|
69256
|
+
months_back: external_exports3.number().int().min(1).max(120).default(12).describe(
|
|
69257
|
+
"How many trailing months of upgrade/downgrade history to include"
|
|
69258
|
+
),
|
|
69255
69259
|
...paginationSchema.shape
|
|
69256
69260
|
}).strict(),
|
|
69257
69261
|
annotations: { readOnlyHint: true, openWorldHint: true }
|