mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-03 18:20:25 +00:00
13 lines
502 B
TypeScript
13 lines
502 B
TypeScript
// Narrow plugin-sdk surface for MiniMax OAuth helpers used by the bundled minimax plugin.
|
|
// Keep this list additive and scoped to MiniMax OAuth support code.
|
|
|
|
export { definePluginEntry } from "./core.js";
|
|
export { buildOauthProviderAuthResult } from "./provider-auth-result.js";
|
|
export type {
|
|
OpenClawPluginApi,
|
|
ProviderAuthContext,
|
|
ProviderCatalogContext,
|
|
ProviderAuthResult,
|
|
} from "../plugins/types.js";
|
|
export { generatePkceVerifierChallenge, toFormUrlEncoded } from "./oauth-utils.js";
|