refactor(plugins): localize private config types (#101452)

This commit is contained in:
Vincent Koc 2026-07-07 00:34:46 -07:00 committed by GitHub
parent 735b7b2f34
commit 1aeed5ec26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ type OpenRouterVideoModelsResponse = {
data?: OpenRouterVideoModel[];
};
export type OpenRouterVideoModelCatalogCapabilities = VideoGenerationProviderCapabilities & {
type OpenRouterVideoModelCatalogCapabilities = VideoGenerationProviderCapabilities & {
allowedPassthroughParameters?: readonly string[];
canonicalSlug?: string;
created?: number;

View file

@ -1,7 +1,7 @@
// Sms type declarations define plugin contracts.
import type { SecretInput } from "openclaw/plugin-sdk/secret-input";
export type SmsChannelConfigFields = {
type SmsChannelConfigFields = {
enabled?: boolean;
accountSid?: string;
authToken?: SecretInput;
@ -21,7 +21,7 @@ export interface SmsChannelConfig extends SmsChannelConfigFields {
defaultAccount?: string;
}
export interface SmsAccountRaw extends SmsChannelConfigFields {}
interface SmsAccountRaw extends SmsChannelConfigFields {}
export interface ResolvedSmsAccount {
accountId: string;