refactor: squash branch changes

This commit is contained in:
Hampus Kraft
2026-02-21 07:15:46 +00:00
parent c2b69be17d
commit d90464c381
153 changed files with 6598 additions and 4444 deletions

View File

@@ -36,6 +36,9 @@ export interface APIConfig {
kv: {
url: string;
mode: 'standalone' | 'cluster';
clusterNodes: Array<{host: string; port: number}>;
clusterNatMap: Record<string, {host: string; port: number}>;
};
nats: {
@@ -149,8 +152,11 @@ export interface APIConfig {
};
search: {
engine: 'meilisearch' | 'elasticsearch';
url: string;
apiKey: string;
username: string;
password: string;
};
stripe: {