Commit 9d24fec
authored
Merging pull request #18445
* feat: upgrade tokens endpoint to v3 API
- Update base URL from v2 to v3
- Add slug parameter for token filtering
- Add expand parameter with exchange_list/category_list options
- Update component version to 0.1.0
- Enhance endpoint description with market data details
* feat: update trading signals endpoint for v3 API
- Add slug parameter for token filtering
- Add token_name parameter support
- Fix marketcap parameter name (was market_cap)
- Reorder parameters to match v3 API specification
- Update component version to 0.1.0
* feat: update price endpoint for v3 API
- Add token_name, symbol, and slug parameters
- Update endpoint description to match v3 specification
- Update component version to 0.1.0
- Enable enhanced token filtering capabilities
* feat: update OHLCV and moonshot endpoints for v3 API
- Add slug parameter to daily and hourly OHLCV endpoints
- Add sort_by parameter to moonshot tokens endpoint
- Reorder parameters to match v3 API specification
- Update all component versions to 0.1.0
- Enable enhanced filtering and sorting capabilities
* feat: update technology grades and quantmetrics endpoints for v3 API
- Add slug parameter to all three endpoints
- Add token_name parameter to quantmetrics endpoint
- Fix marketcap parameter name in quantmetrics
- Update all component versions to 0.1.0
- Enable enhanced token filtering and identification across endpoints
* feat: update grades and signals endpoints for v3 API
- Add slug parameter to all four endpoints
- Add token_name and symbol parameters to hourly trading signals
- Add token_name parameter to resistance & support endpoint
- Update all component versions to 0.1.0
- Enable enhanced token filtering and identification across all endpoints
- Remove required constraint from hourly trading signals token_id parameter
* feat: update TM grades, price prediction, and market metrics endpoints for v3 API
- Add slug parameter to tm-grades and tm-grades-historical endpoints
- Rename scenario-analysis to price-prediction endpoint
- Update SCENARIO_ANALYSIS constant to PRICE_PREDICTION in constants
- Add token_name and slug parameters to price-prediction endpoint
- Update getPricePrediction method name in token_metrics.app.mjs
- Update market-metrics component version to 0.1.0
- Remove old scenario-analysis directory after migration
- Update all affected component versions to 0.1.0
* feat: update AI reports, top market cap, and crypto investors endpoints for v3 API
- Add token_name parameter to ai-reports endpoint
- Add expand parameter to top-market-cap-tokens endpoint
- Update crypto-investors endpoint version
- Update all component versions to 0.1.0
- Enable enhanced filtering and data expansion capabilities
* feat: update indices and correlation endpoints for v3 API
- Add token_name and slug parameters to correlation endpoint
- Update indices, indices-holdings, and indices-performance endpoint versions
- Update component versions to 0.1.0
- Enable enhanced filtering capabilities for correlation analysis
* refactor: remove unused token-metrics-ai endpoint
- Remove get-token-metrics-ai component as it's not needed
- Clean up unused TMAI endpoint implementation
- Maintain clean codebase for v3 API migration
* chore: update token_metrics package version to 0.1.0
- Increment package version to reflect v3 API migration
- Align with Pipedream versioning guidelines for updated components
- All component versions now consistently at 0.1.0
* fix: update tokenName description in hourly-ohlcv component
- Simplify example from 'Bitcoin,Ethereum' to 'Bitcoin' for clarity
- Maintain consistency with other component descriptions
* refactor: make expand parameter multi-select for better UX
- Change expand prop type from 'string' to 'string[]'
- Allow users to select both exchange_list and category_list simultaneously
- Update description to clarify comma-separated sending behavior
- Improve flexibility for data expansion options
Addresses coderabbitai suggestion for enhanced user experience1 parent b52da0e commit 9d24fec
File tree
27 files changed
+330
-82
lines changed- components/token_metrics
- actions
- get-ai-reports
- get-correlation
- get-crypto-investors
- get-daily-ohlcv
- get-fundamental-grades-historical
- get-fundamental-grades
- get-hourly-ohlcv
- get-hourly-trading-signals
- get-indices-holdings
- get-indices-performance
- get-indices
- get-market-metrics
- get-moonshot-tokens
- get-price-prediction
- get-price
- get-quantmetrics
- get-resistance-support
- get-technology-grades-historical
- get-technology-grades
- get-tm-grades-historical
- get-tm-grades
- get-tokens
- get-top-market-cap-tokens
- get-trading-signals
- common
27 files changed
+330
-82
lines changedLines changed: 8 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
25 | 31 | | |
26 | 32 | | |
27 | 33 | | |
| |||
Lines changed: 14 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
24 | 30 | | |
25 | 31 | | |
26 | 32 | | |
27 | 33 | | |
28 | 34 | | |
29 | 35 | | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
30 | 42 | | |
31 | 43 | | |
32 | 44 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
Lines changed: 11 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
24 | 31 | | |
25 | 32 | | |
26 | 33 | | |
27 | 34 | | |
28 | 35 | | |
29 | 36 | | |
30 | | - | |
| 37 | + | |
31 | 38 | | |
32 | 39 | | |
33 | | - | |
| 40 | + | |
34 | 41 | | |
35 | | - | |
36 | 42 | | |
37 | 43 | | |
38 | 44 | | |
| |||
Lines changed: 8 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
37 | 43 | | |
38 | 44 | | |
39 | 45 | | |
| |||
Lines changed: 8 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
37 | 43 | | |
38 | 44 | | |
39 | 45 | | |
| |||
Lines changed: 11 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
24 | 31 | | |
25 | 32 | | |
26 | 33 | | |
27 | 34 | | |
28 | 35 | | |
29 | 36 | | |
30 | | - | |
| 37 | + | |
31 | 38 | | |
32 | 39 | | |
33 | | - | |
| 40 | + | |
34 | 41 | | |
35 | | - | |
36 | 42 | | |
37 | 43 | | |
38 | 44 | | |
| |||
Lines changed: 20 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
25 | 42 | | |
26 | 43 | | |
27 | 44 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments