Update http.js

This commit is contained in:
Namhyeon Go 2024-10-19 20:49:16 +09:00 committed by GitHub
parent 65d5ee120b
commit 08b10b4e4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,6 +41,12 @@ var AVAILABLE_PROXIES = [
"url": "https://serp.catswords.net/api.php?q={q}&p=1&t=0",
"documentation": "https://github.com/Ahwxorg/LibreY"
},
{
"type": "serp",
"provider": "invidious",
"url": "https://invidious.example.org/api/v1/search?q={q}",
"documentation": "https://docs.invidious.io/"
},
{
"type": "stateless-jsonrpc2",
"provider": "gnh1201/caterpillar",
@ -1222,7 +1228,7 @@ exports.parseURL = parseURL;
exports.DEFAULT_USER_AGENT = DEFAULT_USER_AGENT;
exports.defaultUserAgent = DEFAULT_USER_AGENT; // compatible
exports.VERSIONINFO = "HTTP REST Client (http.js) version 0.7.39";
exports.VERSIONINFO = "HTTP REST Client (http.js) version 0.7.40";
exports.AUTHOR = "abuse@catswords.net";
exports.global = global;
exports.require = global.require;