Wire Codex login SDK entrypoint inventory

This commit is contained in:
Eva
2026-06-30 12:27:32 +07:00
committed by Ayaan Zaidi
parent af8a4540ed
commit c188dbbbf7
4 changed files with 11 additions and 3 deletions
+5 -2
View File
@@ -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 },
+4
View File
@@ -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"
+1
View File
@@ -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",
+1 -1
View File
@@ -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(