refactor: fix rebase fallout in plugin auth seams

This commit is contained in:
Peter Steinberger 2026-03-16 22:51:39 -07:00
parent 5dd2245094
commit 78a4d12e9a
No known key found for this signature in database
3 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,6 @@ import {
collectAllowlistProviderRestrictSendersWarnings,
} from "openclaw/plugin-sdk/channel-config-helpers";
import { resolveOutboundSendDep } from "openclaw/plugin-sdk/channel-runtime";
import { resolveOutboundSendDep } from "openclaw/plugin-sdk/channel-runtime";
import {
collectStatusIssuesFromLastError,
DEFAULT_ACCOUNT_ID,

View File

@ -1,7 +1,6 @@
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import { clearRuntimeAuthProfileStoreSnapshots } from "../../agents/auth-profiles/store.js";
import type { AuthChoice } from "../../commands/onboard-types.js";
import { applyAuthChoiceLoadedPluginProvider } from "../../plugins/provider-auth-choice.js";
import {
createAuthTestLifecycle,
createExitThrowingRuntime,
@ -10,6 +9,7 @@ import {
requireOpenClawAgentDir,
setupAuthTestEnv,
} from "../../commands/test-wizard-helpers.js";
import { applyAuthChoiceLoadedPluginProvider } from "../../plugins/provider-auth-choice.js";
import { buildProviderPluginMethodChoice } from "../provider-wizard.js";
import { requireProviderContractProvider, uniqueProviderContractProviders } from "./registry.js";
import { registerProviders, requireProvider } from "./testkit.js";

View File

@ -19,7 +19,7 @@ import {
import { applyAuthProfileConfig } from "./provider-auth-helpers.js";
import { createVpsAwareOAuthHandlers } from "./provider-oauth-flow.js";
import { isRemoteEnvironment, openUrl } from "./setup-browser.js";
import type { ProviderAuthMethod, ProviderAuthOptionBag, ProviderPlugin } from "./types.js";
import type { ProviderAuthMethod, ProviderAuthOptionBag } from "./types.js";
export type ApplyProviderAuthChoiceParams = {
authChoice: string;