Skip to content

Commit ae1bd4a

Browse files
committed
refactor(plugins): localize private config types
1 parent 735b7b2 commit ae1bd4a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/openrouter/video-model-catalog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type OpenRouterVideoModelsResponse = {
4545
data?: OpenRouterVideoModel[];
4646
};
4747

48-
export type OpenRouterVideoModelCatalogCapabilities = VideoGenerationProviderCapabilities & {
48+
type OpenRouterVideoModelCatalogCapabilities = VideoGenerationProviderCapabilities & {
4949
allowedPassthroughParameters?: readonly string[];
5050
canonicalSlug?: string;
5151
created?: number;

extensions/sms/src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Sms type declarations define plugin contracts.
22
import type { SecretInput } from "openclaw/plugin-sdk/secret-input";
33

4-
export type SmsChannelConfigFields = {
4+
type SmsChannelConfigFields = {
55
enabled?: boolean;
66
accountSid?: string;
77
authToken?: SecretInput;
@@ -21,7 +21,7 @@ export interface SmsChannelConfig extends SmsChannelConfigFields {
2121
defaultAccount?: string;
2222
}
2323

24-
export interface SmsAccountRaw extends SmsChannelConfigFields {}
24+
interface SmsAccountRaw extends SmsChannelConfigFields {}
2525

2626
export interface ResolvedSmsAccount {
2727
accountId: string;

0 commit comments

Comments
 (0)