@scrapeatlas/cli 0.1.0 → 0.2.2
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.
- package/LICENSE +21 -0
- package/README.md +10 -5
- package/catalog.json +51706 -2443
- package/package.json +12 -8
- package/src/http.mjs +5 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ScrapeAtlas
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -28,11 +28,10 @@ scrapeatlas reddit search --input @request.json
|
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
Commands and request schemas are generated from the API's gateway/MCP catalog.
|
|
31
|
-
`list <platform> --json` includes operation IDs, paths, JSON Schemas
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
URL refinements.
|
|
31
|
+
`list <platform> --json` includes operation IDs, paths, descriptions and JSON Schemas.
|
|
32
|
+
Update your installed catalog with `npm install -g @scrapeatlas/cli@latest`, or
|
|
33
|
+
run `npx @scrapeatlas/cli@latest list`. Check your version with `scrapeatlas --version`.
|
|
34
|
+
API validation remains authoritative for cross-field rules and URL refinements.
|
|
36
35
|
|
|
37
36
|
Use `scrapeatlas <platform> <action>`. Parameter flags accept the API's original
|
|
38
37
|
camelCase/snake_case name and its kebab-case spelling (`--user-id`). Boolean
|
|
@@ -97,3 +96,9 @@ covers headers and body: 90 seconds by default, configurable using
|
|
|
97
96
|
`--timeout <milliseconds>` from 1 to 120000. Failures never masquerade as empty
|
|
98
97
|
successes. This version exports JSON only and does not install agent configs,
|
|
99
98
|
run an MCP server, perform browser signup, or supply a TypeScript SDK.
|
|
99
|
+
|
|
100
|
+
## License and support
|
|
101
|
+
|
|
102
|
+
MIT — see [LICENSE](LICENSE).
|
|
103
|
+
For help or bug reports, [contact ScrapeAtlas](https://scrapeatlas.com/contact/)
|
|
104
|
+
or email [support@scrapeatlas.com](mailto:support@scrapeatlas.com).
|