@nordsym/apiclaw 1.2.1 → 1.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/.env.prod +1 -0
- package/convex/http.ts +32 -0
- package/data/combined-02-25.json +5602 -0
- package/data/night-batch-02-25.json +2732 -0
- package/data/night-expansion-02-25.json +2872 -0
- package/dist/credentials.d.ts.map +1 -1
- package/dist/credentials.js +15 -0
- package/dist/credentials.js.map +1 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +76 -0
- package/dist/execute.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/proxy.d.ts.map +1 -1
- package/dist/proxy.js +1 -1
- package/dist/proxy.js.map +1 -1
- package/dist/registry/apis.json +44476 -174
- package/landing/src/app/api/auth/magic-link/route.ts +8 -1
- package/landing/src/app/api/auth/verify/route.ts +7 -4
- package/landing/src/app/docs/page.tsx +20 -20
- package/landing/src/app/earn/page.tsx +8 -8
- package/landing/src/app/page.tsx +147 -15
- package/landing/src/app/providers/page.tsx +6 -5
- package/landing/src/app/providers/register/page.tsx +1 -1
- package/landing/src/lib/convex-client.ts +6 -2
- package/landing/src/lib/stats.json +1 -1
- package/package.json +2 -1
- package/scripts/merge-to-registry.py +77 -0
- package/scripts/night-batch-02-24.py +391 -0
- package/scripts/night-batch-02-25.py +479 -0
- package/scripts/night-batch-03-24-b2.py +387 -0
- package/scripts/night-batch-03-24-b3.py +284 -0
- package/scripts/night-batch-03-24.py +447 -0
- package/scripts/night-batch-06-24-b2.py +695 -0
- package/scripts/night-batch-06-24-b3.py +696 -0
- package/scripts/night-batch-06-24.py +825 -0
- package/scripts/night-expansion-02-24-02.py +708 -0
- package/scripts/night-expansion-02-25.py +668 -0
- package/src/credentials.ts +16 -0
- package/src/execute.ts +86 -0
- package/src/index.ts +2 -0
- package/src/proxy.ts +1 -1
- package/src/registry/apis.json +44476 -174
package/.env.prod
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CONVEX_DEPLOYMENT=prod:brilliant-puffin-712
|
package/convex/http.ts
CHANGED
|
@@ -54,6 +54,38 @@ const PROVIDERS = {
|
|
|
54
54
|
regions: ["Global"],
|
|
55
55
|
tags: ["tts", "voice", "audio"],
|
|
56
56
|
},
|
|
57
|
+
replicate: {
|
|
58
|
+
name: "Replicate",
|
|
59
|
+
description: "Run AI models (Whisper, SDXL, Llama, etc). Pay per prediction.",
|
|
60
|
+
category: "ai",
|
|
61
|
+
pricing: "Varies by model",
|
|
62
|
+
regions: ["Global"],
|
|
63
|
+
tags: ["ai", "ml", "whisper", "image", "audio", "transcription"],
|
|
64
|
+
},
|
|
65
|
+
firecrawl: {
|
|
66
|
+
name: "Firecrawl",
|
|
67
|
+
description: "Web scraping and crawling API. Extract clean data from any URL.",
|
|
68
|
+
category: "scraping",
|
|
69
|
+
pricing: "~$0.001/page",
|
|
70
|
+
regions: ["Global"],
|
|
71
|
+
tags: ["scraping", "web", "crawl", "extract"],
|
|
72
|
+
},
|
|
73
|
+
github: {
|
|
74
|
+
name: "GitHub",
|
|
75
|
+
description: "GitHub API. Search repos, manage code, access developer data.",
|
|
76
|
+
category: "code",
|
|
77
|
+
pricing: "Free tier available",
|
|
78
|
+
regions: ["Global"],
|
|
79
|
+
tags: ["github", "code", "repos", "developer"],
|
|
80
|
+
},
|
|
81
|
+
e2b: {
|
|
82
|
+
name: "E2B",
|
|
83
|
+
description: "Secure code sandbox for AI agents. Run Python, shell commands in isolated environments.",
|
|
84
|
+
category: "sandbox",
|
|
85
|
+
pricing: "$0.000028/s (2 vCPU)",
|
|
86
|
+
regions: ["Global"],
|
|
87
|
+
tags: ["sandbox", "code", "python", "execution", "ai", "agents"],
|
|
88
|
+
},
|
|
57
89
|
} as const;
|
|
58
90
|
|
|
59
91
|
// CORS headers
|