We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 350d735 commit 5b7d81bCopy full SHA for 5b7d81b
3 files changed
.github/workflows/release.yml
@@ -42,6 +42,6 @@ jobs:
42
43
- name: Release
44
env:
45
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
46
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
47
run: npx semantic-release
src/scraper-api/constants.ts
@@ -0,0 +1,7 @@
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`;
src/scraper-api/index.ts
@@ -1,3 +1,4 @@
export * from "./api";
+export * from "./constants";
export * from "./parameters";
export * from "./targets";
0 commit comments