()
| 548 | } |
| 549 | |
| 550 | public getValues(): RooCodeSettings { |
| 551 | const globalState = this.getAllGlobalState() |
| 552 | const secretState = this.getAllSecretState() |
| 553 | |
| 554 | // Simply merge all states - no nested secrets to handle |
| 555 | return { ...globalState, ...secretState } |
| 556 | } |
| 557 | |
| 558 | public async setValues(values: RooCodeSettings) { |
| 559 | const entries = Object.entries(values) as [RooCodeSettingsKey, unknown][] |
no test coverage detected