(
newValues: Partial<SharedConfigSchema>,
)
| 159 | } |
| 160 | |
| 161 | updateSharedConfig( |
| 162 | newValues: Partial<SharedConfigSchema>, |
| 163 | ): SharedConfigSchema { |
| 164 | const currentSharedConfig = this.getSharedConfig(); |
| 165 | const updatedSharedConfig = { ...currentSharedConfig, ...newValues }; |
| 166 | this.update("sharedConfig", updatedSharedConfig); |
| 167 | return updatedSharedConfig; |
| 168 | } |
| 169 | |
| 170 | updateSelectedModel( |
| 171 | profileId: string, |
no test coverage detected