mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
refactor(plugins): localize private config types (#101452)
This commit is contained in:
parent
735b7b2f34
commit
1aeed5ec26
2 changed files with 3 additions and 3 deletions
|
|
@ -45,7 +45,7 @@ type OpenRouterVideoModelsResponse = {
|
|||
data?: OpenRouterVideoModel[];
|
||||
};
|
||||
|
||||
export type OpenRouterVideoModelCatalogCapabilities = VideoGenerationProviderCapabilities & {
|
||||
type OpenRouterVideoModelCatalogCapabilities = VideoGenerationProviderCapabilities & {
|
||||
allowedPassthroughParameters?: readonly string[];
|
||||
canonicalSlug?: string;
|
||||
created?: number;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue