Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Wire Codex login SDK entrypoint inventory
  • Loading branch information
Eva authored and obviyus committed Jul 1, 2026
commit 11c6eaf84dbac102b83dfc6e8e24e6172378c66c
7 changes: 5 additions & 2 deletions extensions/qa-lab/src/crabline-transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,13 @@ async function postCrablineInbound(params: {
providerInbound: OpenClawCrablineInbound;
}) {
const { response, release } = await fetchWithSsrFGuard({
url: params.providerInbound.providerUrl,
url: params.adapter.manifest.endpoints.adminInboundUrl,
init: {
body: JSON.stringify(params.providerInbound.providerBody),
headers: params.providerInbound.providerHeaders,
headers: {
"content-type": "application/json",
"x-crabline-admin-token": params.adapter.manifest.adminToken,
},
method: "POST",
},
policy: { allowPrivateNetwork: true },
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1249,6 +1249,10 @@
"types": "./dist/plugin-sdk/provider-auth-runtime.d.ts",
"default": "./dist/plugin-sdk/provider-auth-runtime.js"
},
"./plugin-sdk/provider-auth-login-flow-runtime": {
"types": "./dist/plugin-sdk/provider-auth-login-flow-runtime.d.ts",
"default": "./dist/plugin-sdk/provider-auth-login-flow-runtime.js"
},
"./plugin-sdk/provider-auth-api-key": {
"types": "./dist/plugin-sdk/provider-auth-api-key.d.ts",
"default": "./dist/plugin-sdk/provider-auth-api-key.js"
Expand Down
1 change: 1 addition & 0 deletions scripts/lib/plugin-sdk-entrypoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@
"provider-auth",
"provider-oauth-runtime",
"provider-auth-runtime",
"provider-auth-login-flow-runtime",
"provider-auth-api-key",
"provider-auth-result",
"provider-auth-login",
Expand Down
2 changes: 1 addition & 1 deletion scripts/plugin-sdk-surface-report.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ let budgets;
let publicDeprecatedExportsByEntrypointBudget;
try {
budgets = {
publicEntrypoints: readBudgetEnv("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_ENTRYPOINTS", 322),
publicEntrypoints: readBudgetEnv("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_ENTRYPOINTS", 323),
publicExports: readBudgetEnv("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS", 10405),
publicFunctionExports: readBudgetEnv("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_FUNCTION_EXPORTS", 5223),
publicDeprecatedExports: readBudgetEnv(
Expand Down