()
| 421 | } |
| 422 | |
| 423 | private getAllSecretState(): SecretState { |
| 424 | return Object.fromEntries([ |
| 425 | ...SECRET_STATE_KEYS.map((key) => [key, this.getSecret(key as SecretStateKey)]), |
| 426 | ...GLOBAL_SECRET_KEYS.map((key) => [key, this.getSecret(key as SecretStateKey)]), |
| 427 | ]) |
| 428 | } |
| 429 | |
| 430 | /** |
| 431 | * GlobalSettings |