mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-04 20:20:21 +00:00
15 lines
724 B
TypeScript
15 lines
724 B
TypeScript
// Narrow plugin-sdk surface for the bundled qwen-portal-auth plugin.
|
|
// Keep this list additive and scoped to symbols used under extensions/qwen-portal-auth.
|
|
|
|
export { definePluginEntry } from "./core.js";
|
|
export { buildOauthProviderAuthResult } from "./provider-auth-result.js";
|
|
export type {
|
|
OpenClawPluginApi,
|
|
ProviderAuthContext,
|
|
ProviderCatalogContext,
|
|
} from "../plugins/types.js";
|
|
export { ensureAuthProfileStore, listProfilesForProvider } from "../agents/auth-profiles.js";
|
|
export { QWEN_OAUTH_MARKER } from "../agents/model-auth-markers.js";
|
|
export { refreshQwenPortalCredentials } from "../providers/qwen-portal-oauth.js";
|
|
export { generatePkceVerifierChallenge, toFormUrlEncoded } from "./oauth-utils.js";
|