This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "permissions": { | |
| "allow": [ | |
| "Bash(npm run:*)", | |
| "Bash(npm install:*)", | |
| "Bash(npm ls:*)", | |
| "Bash(npm outdated)", | |
| "Bash(npx tsc:*)", | |
| "Bash(npx vitest:*)", | |
| "Bash(npx playwright:*)", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use client'; | |
| import { useState } from 'react'; | |
| import { GetStocksAggregatesSortEnum, GetStocksAggregatesTimespanEnum, restClient } from '@polygon.io/client-js'; | |
| const DEFAULT_POLYGON_API_KEY = 'xxxxx'; | |
| const RestStocksAggs = () => { | |
| const [aggRes, setAggRes] = useState<unknown>(null); | |
| const [error, setError] = useState<string | null>(null); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Related Tickets: | |
| Link/s to JIRA, etc | |
| # Approximate Testing Time | |
| ~5 minutes? (give your best guess) | |
| # What this PR does: | |
| The TL;DR for this pull request | |
| # Specific Changes |