@ganaka/sdk 1.10.0 → 1.10.2

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/README.md CHANGED
@@ -51,7 +51,7 @@ const quote = await client.fetchQuote({
51
51
 
52
52
  // Fetch shortlist
53
53
  const shortlist = await client.fetchShortlist({
54
- type: "top-gainers",
54
+ type: "TOP_GAINERS",
55
55
  datetime: "2026-01-20T10:30:00",
56
56
  });
57
57
  ```
@@ -187,7 +187,7 @@ Fetch shortlist for a specific type and datetime.
187
187
 
188
188
  ```typescript
189
189
  const shortlist = await client.fetchShortlist({
190
- type: "top-gainers", // or "top-losers", etc.
190
+ type: "TOP_GAINERS",
191
191
  datetime: "2026-01-20T10:30:00", // IST format
192
192
  });
193
193
  ```
@@ -198,7 +198,7 @@ Fetch shortlist persistence - stocks that consistently appeared in a shortlist o
198
198
 
199
199
  ```typescript
200
200
  const persistence = await client.fetchShortlistPersistence({
201
- type: "top-gainers",
201
+ type: "TOP_GAINERS",
202
202
  start_datetime: "2026-01-20T09:15:00", // IST format
203
203
  end_datetime: "2026-01-20T15:30:00", // IST format
204
204
  });