@k-msg/provider
Version:
Complete provider system with adapters and implementations for K-Message platform
14 lines (13 loc) • 479 B
TypeScript
import { KMsgError, type ProviderRequestContext, type Result } from "@k-msg/core";
export declare function requestAligo(params: {
host: string;
endpoint: string;
data: Record<string, unknown>;
providerId: string;
context?: ProviderRequestContext;
}): Promise<Record<string, unknown>>;
export declare function ensureAligoKakaoOk(params: {
providerId: string;
response: Record<string, unknown>;
fallbackMessage: string;
}): Result<void, KMsgError>;