()
| 136 | } |
| 137 | |
| 138 | async function getMaxVersionConfig(): Promise<MaxVersionConfig> { |
| 139 | try { |
| 140 | return await getDynamicConfig_BLOCKS_ON_INIT<MaxVersionConfig>( |
| 141 | 'ncode_max_version_config', |
| 142 | {}, |
| 143 | ) |
| 144 | } catch (error) { |
| 145 | logError(error as Error) |
| 146 | return {} |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Checks if a target version should be skipped due to user's minimumVersion setting. |
no test coverage detected