You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Derive ProviderCatalogEntry from ProviderSettings instead of duplicating its field list
src/config/index.ts:95-130 (ProviderCatalogEntry) and src/config/settings.ts:21-45
(ProviderSettings) independently declared the same provider record, so a field
added to one silently never reached the catalog conversion in
catalogEntryAsProviderSettings/buildProviderCatalog. ProviderCatalogEntry is now
Omit<ProviderSettings, "name" | "contextWindow"> plus its required name and the
OAuth-only markers (codexProfile/codexAccountId/xaiProfile) that have no
settings.json counterpart. Added a round-trip test in src/config.test.ts that
fails if a shared field stops surviving buildProviderCatalog ->
catalogEntryAsProviderSettings.
0 commit comments