mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-04 22:10:21 +00:00
12 lines
503 B
TypeScript
12 lines
503 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 { emptyPluginConfigSchema } from "../plugins/config-schema.js";
|
|
export { buildOauthProviderAuthResult } from "./provider-auth-result.js";
|
|
export type {
|
|
OpenClawPluginApi,
|
|
ProviderAuthContext,
|
|
ProviderCatalogContext,
|
|
} from "../plugins/types.js";
|
|
export { generatePkceVerifierChallenge, toFormUrlEncoded } from "./oauth-utils.js";
|