@nordsym/apiclaw 1.4.2 → 1.4.3
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/AGENTS.md +115 -0
- package/CHANGELOG.md +78 -0
- package/CONTRIBUTING.md +84 -0
- package/README.md +178 -438
- package/convex/_generated/api.d.ts +4 -0
- package/convex/adminActivate.ts +54 -0
- package/convex/mou.ts +74 -0
- package/convex/schema.ts +20 -0
- package/convex/workspaces.ts +76 -0
- package/landing/.env.local.stripe +2 -0
- package/landing/package-lock.json +916 -2
- package/landing/package.json +2 -0
- package/landing/public/.well-known/ai-plugin.json +17 -0
- package/landing/public/llms-full.txt +322 -0
- package/landing/public/llms.txt +61 -72
- package/landing/public/robots.txt +28 -0
- package/landing/src/app/admin/page.tsx +1 -1
- package/landing/src/app/api/auth/magic-link/route.ts +1 -1
- package/landing/src/app/api/auth/session/route.ts +1 -1
- package/landing/src/app/api/auth/verify/route.ts +1 -1
- package/landing/src/app/api/billing/checkout/route.ts +1 -1
- package/landing/src/app/api/billing/payment-method/route.ts +1 -1
- package/landing/src/app/api/billing/portal/route.ts +1 -1
- package/landing/src/app/api/mou/sign/route.ts +314 -0
- package/landing/src/app/api/stripe/webhook/route.ts +1 -1
- package/landing/src/app/api/workspace-auth/magic-link/route.ts +1 -1
- package/landing/src/app/api/workspace-auth/session/route.ts +1 -1
- package/landing/src/app/api/workspace-auth/verify/route.ts +1 -1
- package/landing/src/app/auth/verify/page.tsx +1 -1
- package/landing/src/app/mou/[partnerId]/page.tsx +424 -0
- package/landing/src/app/mou/coaccept/page.tsx +416 -0
- package/landing/src/app/page.tsx +35 -7
- package/landing/src/app/providers/dashboard/[apiId]/actions/[actionId]/edit/page.tsx +1 -1
- package/landing/src/app/providers/dashboard/[apiId]/actions/new/page.tsx +1 -1
- package/landing/src/app/providers/dashboard/[apiId]/actions/page.tsx +1 -1
- package/landing/src/app/providers/register/page.tsx +2 -2
- package/landing/src/app/upgrade/page.tsx +1 -1
- package/landing/src/app/workspace/chains/page.tsx +1 -1
- package/landing/src/app/workspace/page.tsx +1 -1
- package/landing/src/components/EarnCreditsTab.tsx +1 -1
- package/landing/src/components/HeroTabs.tsx +2 -2
- package/landing/src/lib/convex-client.ts +1 -1
- package/landing/src/lib/pdf.ts +24 -0
- package/landing/src/lib/stats.json +3 -2
- package/landing/src/middleware.ts +1 -1
- package/landing/vercel.json +8 -0
- package/package.json +2 -2
- package/scripts/activate-hivr-workspace.ts +20 -0
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
"openApiCount": 1636,
|
|
4
4
|
"directCallCount": 18,
|
|
5
5
|
"categoryCount": 13,
|
|
6
|
+
"npmDownloads": 3396,
|
|
6
7
|
"lastUpdated": "2026-02-27T09:10:41.344767",
|
|
7
|
-
"generatedAt": "2026-03-
|
|
8
|
+
"generatedAt": "2026-03-05T09:30:00.000Z",
|
|
8
9
|
"categoryBreakdown": {
|
|
9
10
|
"Finance": 1179,
|
|
10
11
|
"Auth & Security": 491,
|
|
@@ -20,4 +21,4 @@
|
|
|
20
21
|
"Entertainment": 1212,
|
|
21
22
|
"Health & Fitness": 740
|
|
22
23
|
}
|
|
23
|
-
}
|
|
24
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NextResponse } from "next/server";
|
|
2
2
|
import type { NextRequest } from "next/server";
|
|
3
3
|
|
|
4
|
-
const CONVEX_URL = process.env.NEXT_PUBLIC_CONVEX_URL || "https://
|
|
4
|
+
const CONVEX_URL = process.env.NEXT_PUBLIC_CONVEX_URL || "https://brilliant-puffin-712.eu-west-1.convex.cloud";
|
|
5
5
|
|
|
6
6
|
export async function middleware(request: NextRequest) {
|
|
7
7
|
const pathname = request.nextUrl.pathname;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nordsym/apiclaw",
|
|
3
|
-
"version": "1.4.
|
|
4
|
-
"description": "The API layer for AI agents.
|
|
3
|
+
"version": "1.4.3",
|
|
4
|
+
"description": "The API layer for AI agents. Dashboard + 22K APIs + 18 Direct Call providers. MCP native.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"homepage": "https://apiclaw.nordsym.com",
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Run this with: npx ts-node scripts/activate-hivr-workspace.ts
|
|
2
|
+
import { ConvexHttpClient } from "convex/browser";
|
|
3
|
+
|
|
4
|
+
const client = new ConvexHttpClient("https://brilliant-puffin-712.eu-west-1.convex.cloud");
|
|
5
|
+
|
|
6
|
+
async function main() {
|
|
7
|
+
// The workspace ID for symbot@nordsym.com
|
|
8
|
+
const workspaceId = "n172qdtk5zcss0mkz0yetecab182953p";
|
|
9
|
+
|
|
10
|
+
// We need to use a direct mutation - but we don't have one for setting status
|
|
11
|
+
// Let's send a magic link instead
|
|
12
|
+
const result = await client.mutation("workspaces:createMagicLink", {
|
|
13
|
+
email: "symbot@nordsym.com"
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
console.log("Magic link result:", result);
|
|
17
|
+
console.log("\nGustav: Check your email (symbot@nordsym.com alias) and click the link to activate!");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
main().catch(console.error);
|