reportify-sdk 0.3.22 → 0.3.23

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 CHANGED
@@ -853,7 +853,7 @@ var QuantModule = class {
853
853
  * ```
854
854
  */
855
855
  async kline1m(params) {
856
- const response = await this.client.post("/v1/quant/quotes/1mkline", {
856
+ const response = await this.client.get("/v1/quant/quotes/1mkline", {
857
857
  symbol: params.symbol,
858
858
  start_datetime: params.startDateTime,
859
859
  end_datetime: params.endDateTime,
@@ -903,7 +903,7 @@ var QuantModule = class {
903
903
  * ```
904
904
  */
905
905
  async minute(params) {
906
- const response = await this.client.post("/v1/quant/quotes/minute", {
906
+ const response = await this.client.get("/v1/quant/quotes/minute", {
907
907
  symbol: params.symbol,
908
908
  start_datetime: params.startDateTime,
909
909
  end_datetime: params.endDateTime,
package/dist/index.mjs CHANGED
@@ -809,7 +809,7 @@ var QuantModule = class {
809
809
  * ```
810
810
  */
811
811
  async kline1m(params) {
812
- const response = await this.client.post("/v1/quant/quotes/1mkline", {
812
+ const response = await this.client.get("/v1/quant/quotes/1mkline", {
813
813
  symbol: params.symbol,
814
814
  start_datetime: params.startDateTime,
815
815
  end_datetime: params.endDateTime,
@@ -859,7 +859,7 @@ var QuantModule = class {
859
859
  * ```
860
860
  */
861
861
  async minute(params) {
862
- const response = await this.client.post("/v1/quant/quotes/minute", {
862
+ const response = await this.client.get("/v1/quant/quotes/minute", {
863
863
  symbol: params.symbol,
864
864
  start_datetime: params.startDateTime,
865
865
  end_datetime: params.endDateTime,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reportify-sdk",
3
- "version": "0.3.22",
3
+ "version": "0.3.23",
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",