File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 4242
4343 - name : Release
4444 env :
45- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
45+ GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
4646 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
4747 run : npx semantic-release
Original file line number Diff line number Diff line change 1+ export const SCRAPER_API_URL = "https://scraper-api.decodo.com" ;
2+
3+ export const SCRAPER_API_ENDPOINT_SYNC = `${ SCRAPER_API_URL } /v2/scrape` ;
4+
5+ export const SCRAPER_API_ENDPOINT_ASYNC = `${ SCRAPER_API_URL } /v2/task` ;
6+
7+ export const SCRAPER_API_ENDPOINT_BATCH = `${ SCRAPER_API_URL } /v2/task/batch` ;
Original file line number Diff line number Diff line change 11export * from "./api" ;
2+ export * from "./constants" ;
23export * from "./parameters" ;
34export * from "./targets" ;
You can’t perform that action at this time.
0 commit comments