mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
Wire Codex login SDK entrypoint inventory
This commit is contained in:
@@ -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 },
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user