@nikcli-ai/sdk 1.45.0 → 1.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v2/gen/types.gen.d.ts +33 -0
- package/package.json +1 -1
|
@@ -1918,6 +1918,39 @@ export type Config = {
|
|
|
1918
1918
|
* Theme name to use for the interface
|
|
1919
1919
|
*/
|
|
1920
1920
|
theme?: string;
|
|
1921
|
+
/**
|
|
1922
|
+
* Localization: UI language, region, formatting, and model reply language
|
|
1923
|
+
*/
|
|
1924
|
+
locale?: {
|
|
1925
|
+
/**
|
|
1926
|
+
* UI and reply language as a BCP-47 primary subtag, e.g. 'it', 'en'
|
|
1927
|
+
*/
|
|
1928
|
+
language?: string;
|
|
1929
|
+
/**
|
|
1930
|
+
* ISO-3166 country code, e.g. 'IT', 'US'
|
|
1931
|
+
*/
|
|
1932
|
+
region?: string;
|
|
1933
|
+
/**
|
|
1934
|
+
* Full BCP-47 tag, e.g. 'it-IT'; overrides language + region when set
|
|
1935
|
+
*/
|
|
1936
|
+
locale?: string;
|
|
1937
|
+
/**
|
|
1938
|
+
* IANA timezone, e.g. 'Europe/Rome'
|
|
1939
|
+
*/
|
|
1940
|
+
timezone?: string;
|
|
1941
|
+
/**
|
|
1942
|
+
* ISO-4217 currency code, e.g. 'EUR'; defaults from region
|
|
1943
|
+
*/
|
|
1944
|
+
currency?: string;
|
|
1945
|
+
/**
|
|
1946
|
+
* Auto-detect locale from environment and system (default true)
|
|
1947
|
+
*/
|
|
1948
|
+
autoDetect?: boolean;
|
|
1949
|
+
/**
|
|
1950
|
+
* Instruct the model to reply in the user's language. true = detected language, a tag like 'it' = fixed language, false = off. Defaults to on for non-English locales.
|
|
1951
|
+
*/
|
|
1952
|
+
replyLanguage?: boolean | string;
|
|
1953
|
+
};
|
|
1921
1954
|
keybinds?: KeybindsConfig;
|
|
1922
1955
|
logLevel?: LogLevel;
|
|
1923
1956
|
/**
|