@keystrokehq/polygon 0.1.3 → 0.1.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.
Files changed (33) hide show
  1. package/dist/actions/get-aggregates.d.cts +2 -2
  2. package/dist/actions/get-aggregates.d.mts +2 -2
  3. package/dist/actions/get-crypto-aggregates.d.cts +2 -2
  4. package/dist/actions/get-crypto-aggregates.d.mts +2 -2
  5. package/dist/actions/get-crypto-ema.d.cts +2 -2
  6. package/dist/actions/get-crypto-ema.d.mts +2 -2
  7. package/dist/actions/get-crypto-rsi.d.cts +2 -2
  8. package/dist/actions/get-crypto-rsi.d.mts +2 -2
  9. package/dist/actions/get-crypto-sma.d.cts +2 -2
  10. package/dist/actions/get-crypto-sma.d.mts +2 -2
  11. package/dist/actions/get-forex-aggregates.d.cts +2 -2
  12. package/dist/actions/get-forex-aggregates.d.mts +2 -2
  13. package/dist/actions/get-forex-ema.d.cts +2 -2
  14. package/dist/actions/get-forex-ema.d.mts +2 -2
  15. package/dist/actions/get-forex-rsi.d.cts +2 -2
  16. package/dist/actions/get-forex-rsi.d.mts +2 -2
  17. package/dist/actions/get-forex-sma.d.cts +2 -2
  18. package/dist/actions/get-forex-sma.d.mts +2 -2
  19. package/dist/actions/get-options-custom-bars.d.cts +2 -2
  20. package/dist/actions/get-options-custom-bars.d.mts +2 -2
  21. package/dist/actions/get-options-rsi.d.cts +2 -2
  22. package/dist/actions/get-options-rsi.d.mts +2 -2
  23. package/dist/actions/get-options-sma.d.cts +2 -2
  24. package/dist/actions/get-options-sma.d.mts +2 -2
  25. package/dist/actions/get-stocks-custom-bars.d.cts +2 -2
  26. package/dist/actions/get-stocks-custom-bars.d.mts +2 -2
  27. package/dist/catalog.cjs +1 -1
  28. package/dist/catalog.cjs.map +1 -1
  29. package/dist/catalog.d.cts +1 -1
  30. package/dist/catalog.d.mts +1 -1
  31. package/dist/catalog.mjs +1 -1
  32. package/dist/catalog.mjs.map +1 -1
  33. package/package.json +1 -1
@@ -12,9 +12,9 @@ declare const PolygonGetAggregatesInput: z.ZodObject<{
12
12
  ticker: z.ZodString;
13
13
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
14
14
  timespan: z.ZodEnum<{
15
- day: "day";
16
15
  minute: "minute";
17
16
  hour: "hour";
17
+ day: "day";
18
18
  week: "week";
19
19
  month: "month";
20
20
  quarter: "quarter";
@@ -46,7 +46,7 @@ declare const polygonGetAggregates: import("@keystrokehq/action").WorkflowAction
46
46
  to: string;
47
47
  from_: string;
48
48
  ticker: string;
49
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
49
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
50
50
  multiplier: number;
51
51
  sort?: "asc" | "desc" | undefined;
52
52
  limit?: number | undefined;
@@ -12,9 +12,9 @@ declare const PolygonGetAggregatesInput: z.ZodObject<{
12
12
  ticker: z.ZodString;
13
13
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
14
14
  timespan: z.ZodEnum<{
15
- day: "day";
16
15
  minute: "minute";
17
16
  hour: "hour";
17
+ day: "day";
18
18
  week: "week";
19
19
  month: "month";
20
20
  quarter: "quarter";
@@ -46,7 +46,7 @@ declare const polygonGetAggregates: import("@keystrokehq/action").WorkflowAction
46
46
  to: string;
47
47
  from_: string;
48
48
  ticker: string;
49
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
49
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
50
50
  multiplier: number;
51
51
  sort?: "asc" | "desc" | undefined;
52
52
  limit?: number | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetCryptoAggregatesInput: z.ZodObject<{
10
10
  to_date: z.ZodString;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -43,7 +43,7 @@ declare const PolygonGetCryptoAggregatesOutput: z.ZodObject<{
43
43
  }, z.core.$loose>;
44
44
  declare const polygonGetCryptoAggregates: import("@keystrokehq/action").WorkflowActionDefinition<{
45
45
  to_date: string;
46
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | "second";
46
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | "second";
47
47
  from_date: string;
48
48
  multiplier: number;
49
49
  crypto_ticker: string;
@@ -10,9 +10,9 @@ declare const PolygonGetCryptoAggregatesInput: z.ZodObject<{
10
10
  to_date: z.ZodString;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -43,7 +43,7 @@ declare const PolygonGetCryptoAggregatesOutput: z.ZodObject<{
43
43
  }, z.core.$loose>;
44
44
  declare const polygonGetCryptoAggregates: import("@keystrokehq/action").WorkflowActionDefinition<{
45
45
  to_date: string;
46
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | "second";
46
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | "second";
47
47
  from_date: string;
48
48
  multiplier: number;
49
49
  crypto_ticker: string;
@@ -10,9 +10,9 @@ declare const PolygonGetCryptoEmaInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -62,7 +62,7 @@ declare const polygonGetCryptoEma: import("@keystrokehq/action").WorkflowActionD
62
62
  order?: "asc" | "desc" | undefined;
63
63
  window?: number | undefined;
64
64
  adjusted?: boolean | undefined;
65
- timespan?: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | undefined;
65
+ timespan?: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | undefined;
66
66
  timestamp?: string | undefined;
67
67
  series_type?: "open" | "high" | "low" | "close" | undefined;
68
68
  "timestamp.gt"?: string | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetCryptoEmaInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -62,7 +62,7 @@ declare const polygonGetCryptoEma: import("@keystrokehq/action").WorkflowActionD
62
62
  order?: "asc" | "desc" | undefined;
63
63
  window?: number | undefined;
64
64
  adjusted?: boolean | undefined;
65
- timespan?: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | undefined;
65
+ timespan?: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | undefined;
66
66
  timestamp?: string | undefined;
67
67
  series_type?: "open" | "high" | "low" | "close" | undefined;
68
68
  "timestamp.gt"?: string | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetCryptoRsiInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -52,7 +52,7 @@ declare const polygonGetCryptoRsi: import("@keystrokehq/action").WorkflowActionD
52
52
  order?: "asc" | "desc" | undefined;
53
53
  window?: number | undefined;
54
54
  adjusted?: boolean | undefined;
55
- timespan?: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | undefined;
55
+ timespan?: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | undefined;
56
56
  timestamp?: string | undefined;
57
57
  series_type?: "open" | "high" | "low" | "close" | undefined;
58
58
  "timestamp.gt"?: string | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetCryptoRsiInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -52,7 +52,7 @@ declare const polygonGetCryptoRsi: import("@keystrokehq/action").WorkflowActionD
52
52
  order?: "asc" | "desc" | undefined;
53
53
  window?: number | undefined;
54
54
  adjusted?: boolean | undefined;
55
- timespan?: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | undefined;
55
+ timespan?: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | undefined;
56
56
  timestamp?: string | undefined;
57
57
  series_type?: "open" | "high" | "low" | "close" | undefined;
58
58
  "timestamp.gt"?: string | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetCryptoSmaInput: z.ZodObject<{
10
10
  window: z.ZodNumber;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -48,7 +48,7 @@ declare const PolygonGetCryptoSmaOutput: z.ZodObject<{
48
48
  }, z.core.$loose>;
49
49
  declare const polygonGetCryptoSma: import("@keystrokehq/action").WorkflowActionDefinition<{
50
50
  window: number;
51
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
51
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
52
52
  crypto_ticker: string;
53
53
  limit?: number | undefined;
54
54
  order?: "asc" | "desc" | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetCryptoSmaInput: z.ZodObject<{
10
10
  window: z.ZodNumber;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -48,7 +48,7 @@ declare const PolygonGetCryptoSmaOutput: z.ZodObject<{
48
48
  }, z.core.$loose>;
49
49
  declare const polygonGetCryptoSma: import("@keystrokehq/action").WorkflowActionDefinition<{
50
50
  window: number;
51
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
51
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
52
52
  crypto_ticker: string;
53
53
  limit?: number | undefined;
54
54
  order?: "asc" | "desc" | undefined;
@@ -11,9 +11,9 @@ declare const PolygonGetForexAggregatesInput: z.ZodObject<{
11
11
  limit: z.ZodOptional<z.ZodNumber>;
12
12
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
13
13
  timespan: z.ZodEnum<{
14
- day: "day";
15
14
  minute: "minute";
16
15
  hour: "hour";
16
+ day: "day";
17
17
  week: "week";
18
18
  month: "month";
19
19
  quarter: "quarter";
@@ -44,7 +44,7 @@ declare const PolygonGetForexAggregatesOutput: z.ZodObject<{
44
44
  declare const polygonGetForexAggregates: import("@keystrokehq/action").WorkflowActionDefinition<{
45
45
  to: string;
46
46
  from_: string;
47
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | "second";
47
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | "second";
48
48
  multiplier: number;
49
49
  forex_ticker: string;
50
50
  sort?: "asc" | "desc" | undefined;
@@ -11,9 +11,9 @@ declare const PolygonGetForexAggregatesInput: z.ZodObject<{
11
11
  limit: z.ZodOptional<z.ZodNumber>;
12
12
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
13
13
  timespan: z.ZodEnum<{
14
- day: "day";
15
14
  minute: "minute";
16
15
  hour: "hour";
16
+ day: "day";
17
17
  week: "week";
18
18
  month: "month";
19
19
  quarter: "quarter";
@@ -44,7 +44,7 @@ declare const PolygonGetForexAggregatesOutput: z.ZodObject<{
44
44
  declare const polygonGetForexAggregates: import("@keystrokehq/action").WorkflowActionDefinition<{
45
45
  to: string;
46
46
  from_: string;
47
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | "second";
47
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | "second";
48
48
  multiplier: number;
49
49
  forex_ticker: string;
50
50
  sort?: "asc" | "desc" | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetForexEmaInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -57,7 +57,7 @@ declare const polygonGetForexEma: import("@keystrokehq/action").WorkflowActionDe
57
57
  order?: "asc" | "desc" | undefined;
58
58
  window?: number | undefined;
59
59
  adjusted?: boolean | undefined;
60
- timespan?: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | undefined;
60
+ timespan?: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | undefined;
61
61
  timestamp?: string | undefined;
62
62
  series_type?: "open" | "high" | "low" | "close" | undefined;
63
63
  expand_underlying?: boolean | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetForexEmaInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -57,7 +57,7 @@ declare const polygonGetForexEma: import("@keystrokehq/action").WorkflowActionDe
57
57
  order?: "asc" | "desc" | undefined;
58
58
  window?: number | undefined;
59
59
  adjusted?: boolean | undefined;
60
- timespan?: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | undefined;
60
+ timespan?: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | undefined;
61
61
  timestamp?: string | undefined;
62
62
  series_type?: "open" | "high" | "low" | "close" | undefined;
63
63
  expand_underlying?: boolean | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetForexRsiInput: z.ZodObject<{
10
10
  window: z.ZodNumber;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -48,7 +48,7 @@ declare const PolygonGetForexRsiOutput: z.ZodObject<{
48
48
  }, z.core.$loose>;
49
49
  declare const polygonGetForexRsi: import("@keystrokehq/action").WorkflowActionDefinition<{
50
50
  window: number;
51
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
51
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
52
52
  forex_ticker: string;
53
53
  limit?: number | undefined;
54
54
  order?: "asc" | "desc" | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetForexRsiInput: z.ZodObject<{
10
10
  window: z.ZodNumber;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -48,7 +48,7 @@ declare const PolygonGetForexRsiOutput: z.ZodObject<{
48
48
  }, z.core.$loose>;
49
49
  declare const polygonGetForexRsi: import("@keystrokehq/action").WorkflowActionDefinition<{
50
50
  window: number;
51
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
51
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
52
52
  forex_ticker: string;
53
53
  limit?: number | undefined;
54
54
  order?: "asc" | "desc" | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetForexSmaInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -62,7 +62,7 @@ declare const polygonGetForexSma: import("@keystrokehq/action").WorkflowActionDe
62
62
  order?: "asc" | "desc" | undefined;
63
63
  window?: number | undefined;
64
64
  adjusted?: boolean | undefined;
65
- timespan?: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | undefined;
65
+ timespan?: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | undefined;
66
66
  timestamp?: string | undefined;
67
67
  series_type?: "open" | "high" | "low" | "close" | undefined;
68
68
  "timestamp.gt"?: string | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetForexSmaInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -62,7 +62,7 @@ declare const polygonGetForexSma: import("@keystrokehq/action").WorkflowActionDe
62
62
  order?: "asc" | "desc" | undefined;
63
63
  window?: number | undefined;
64
64
  adjusted?: boolean | undefined;
65
- timespan?: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | undefined;
65
+ timespan?: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | undefined;
66
66
  timestamp?: string | undefined;
67
67
  series_type?: "open" | "high" | "low" | "close" | undefined;
68
68
  "timestamp.gt"?: string | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetOptionsCustomBarsInput: z.ZodObject<{
10
10
  to_date: z.ZodString;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -45,7 +45,7 @@ declare const PolygonGetOptionsCustomBarsOutput: z.ZodObject<{
45
45
  }, z.core.$loose>;
46
46
  declare const polygonGetOptionsCustomBars: import("@keystrokehq/action").WorkflowActionDefinition<{
47
47
  to_date: string;
48
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | "second";
48
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | "second";
49
49
  from_date: string;
50
50
  multiplier: number;
51
51
  options_ticker: string;
@@ -10,9 +10,9 @@ declare const PolygonGetOptionsCustomBarsInput: z.ZodObject<{
10
10
  to_date: z.ZodString;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -45,7 +45,7 @@ declare const PolygonGetOptionsCustomBarsOutput: z.ZodObject<{
45
45
  }, z.core.$loose>;
46
46
  declare const polygonGetOptionsCustomBars: import("@keystrokehq/action").WorkflowActionDefinition<{
47
47
  to_date: string;
48
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year" | "second";
48
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year" | "second";
49
49
  from_date: string;
50
50
  multiplier: number;
51
51
  options_ticker: string;
@@ -10,9 +10,9 @@ declare const PolygonGetOptionsRsiInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -47,7 +47,7 @@ declare const PolygonGetOptionsRsiOutput: z.ZodObject<{
47
47
  request_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
48
48
  }, z.core.$loose>;
49
49
  declare const polygonGetOptionsRsi: import("@keystrokehq/action").WorkflowActionDefinition<{
50
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
50
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
51
51
  options_ticker: string;
52
52
  limit?: number | undefined;
53
53
  order?: "asc" | "desc" | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetOptionsRsiInput: z.ZodObject<{
10
10
  window: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -47,7 +47,7 @@ declare const PolygonGetOptionsRsiOutput: z.ZodObject<{
47
47
  request_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
48
48
  }, z.core.$loose>;
49
49
  declare const polygonGetOptionsRsi: import("@keystrokehq/action").WorkflowActionDefinition<{
50
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
50
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
51
51
  options_ticker: string;
52
52
  limit?: number | undefined;
53
53
  order?: "asc" | "desc" | undefined;
@@ -11,9 +11,9 @@ declare const PolygonGetOptionsSmaInput: z.ZodObject<{
11
11
  window: z.ZodNumber;
12
12
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
13
13
  timespan: z.ZodEnum<{
14
- day: "day";
15
14
  minute: "minute";
16
15
  hour: "hour";
16
+ day: "day";
17
17
  week: "week";
18
18
  month: "month";
19
19
  quarter: "quarter";
@@ -59,7 +59,7 @@ declare const PolygonGetOptionsSmaOutput: z.ZodObject<{
59
59
  }, z.core.$loose>;
60
60
  declare const polygonGetOptionsSma: import("@keystrokehq/action").WorkflowActionDefinition<{
61
61
  window: number;
62
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
62
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
63
63
  options_ticker: string;
64
64
  limit?: number | undefined;
65
65
  order?: "asc" | "desc" | undefined;
@@ -11,9 +11,9 @@ declare const PolygonGetOptionsSmaInput: z.ZodObject<{
11
11
  window: z.ZodNumber;
12
12
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
13
13
  timespan: z.ZodEnum<{
14
- day: "day";
15
14
  minute: "minute";
16
15
  hour: "hour";
16
+ day: "day";
17
17
  week: "week";
18
18
  month: "month";
19
19
  quarter: "quarter";
@@ -59,7 +59,7 @@ declare const PolygonGetOptionsSmaOutput: z.ZodObject<{
59
59
  }, z.core.$loose>;
60
60
  declare const polygonGetOptionsSma: import("@keystrokehq/action").WorkflowActionDefinition<{
61
61
  window: number;
62
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
62
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
63
63
  options_ticker: string;
64
64
  limit?: number | undefined;
65
65
  order?: "asc" | "desc" | undefined;
@@ -10,9 +10,9 @@ declare const PolygonGetStocksCustomBarsInput: z.ZodObject<{
10
10
  to_date: z.ZodString;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -41,7 +41,7 @@ declare const PolygonGetStocksCustomBarsOutput: z.ZodObject<{
41
41
  }, z.core.$loose>;
42
42
  declare const polygonGetStocksCustomBars: import("@keystrokehq/action").WorkflowActionDefinition<{
43
43
  to_date: string;
44
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
44
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
45
45
  from_date: string;
46
46
  multiplier: number;
47
47
  stocks_ticker: string;
@@ -10,9 +10,9 @@ declare const PolygonGetStocksCustomBarsInput: z.ZodObject<{
10
10
  to_date: z.ZodString;
11
11
  adjusted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
12
12
  timespan: z.ZodEnum<{
13
- day: "day";
14
13
  minute: "minute";
15
14
  hour: "hour";
15
+ day: "day";
16
16
  week: "week";
17
17
  month: "month";
18
18
  quarter: "quarter";
@@ -41,7 +41,7 @@ declare const PolygonGetStocksCustomBarsOutput: z.ZodObject<{
41
41
  }, z.core.$loose>;
42
42
  declare const polygonGetStocksCustomBars: import("@keystrokehq/action").WorkflowActionDefinition<{
43
43
  to_date: string;
44
- timespan: "day" | "minute" | "hour" | "week" | "month" | "quarter" | "year";
44
+ timespan: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
45
45
  from_date: string;
46
46
  multiplier: number;
47
47
  stocks_ticker: string;
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const polygonCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/polygon",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "Polygon API Key",
13
13
  "secret": true,
14
14
  "description": "Your Polygon.io API key, used to authorize every market data request. Sign in and copy it from Dashboard → API Keys: polygon.io/dashboard/keys"
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const polygonCatalog = {\n \"slug\": \"polygon\",\n \"name\": \"Polygon\",\n \"description\": \"Polygon.io provides real-time and historical market data APIs for stocks, options, forex, and cryptocurrencies.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/polygon\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Polygon API Key\",\n \"secret\": true,\n \"description\": \"Your Polygon.io API key, used to authorize every market data request. Sign in and copy it from Dashboard → API Keys: polygon.io/dashboard/keys\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const polygonCatalog = {\n \"slug\": \"polygon\",\n \"name\": \"Polygon\",\n \"description\": \"Polygon.io provides real-time and historical market data APIs for stocks, options, forex, and cryptocurrencies.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/polygon\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Polygon API Key\",\n \"secret\": true,\n \"description\": \"Your Polygon.io API key, used to authorize every market data request. Sign in and copy it from Dashboard → API Keys: polygon.io/dashboard/keys\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -9,7 +9,7 @@ declare const polygonCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "Polygon API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Your Polygon.io API key, used to authorize every market data request. Sign in and copy it from Dashboard → API Keys: polygon.io/dashboard/keys";
@@ -9,7 +9,7 @@ declare const polygonCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "Polygon API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Your Polygon.io API key, used to authorize every market data request. Sign in and copy it from Dashboard → API Keys: polygon.io/dashboard/keys";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const polygonCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/polygon",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "Polygon API Key",
13
13
  "secret": true,
14
14
  "description": "Your Polygon.io API key, used to authorize every market data request. Sign in and copy it from Dashboard → API Keys: polygon.io/dashboard/keys"
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const polygonCatalog = {\n \"slug\": \"polygon\",\n \"name\": \"Polygon\",\n \"description\": \"Polygon.io provides real-time and historical market data APIs for stocks, options, forex, and cryptocurrencies.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/polygon\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Polygon API Key\",\n \"secret\": true,\n \"description\": \"Your Polygon.io API key, used to authorize every market data request. Sign in and copy it from Dashboard → API Keys: polygon.io/dashboard/keys\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const polygonCatalog = {\n \"slug\": \"polygon\",\n \"name\": \"Polygon\",\n \"description\": \"Polygon.io provides real-time and historical market data APIs for stocks, options, forex, and cryptocurrencies.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/polygon\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Polygon API Key\",\n \"secret\": true,\n \"description\": \"Your Polygon.io API key, used to authorize every market data request. Sign in and copy it from Dashboard → API Keys: polygon.io/dashboard/keys\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/polygon",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"