()
| 26 | // rest. The generic on getDynamicConfig is a type assertion, not a validator — |
| 27 | // GB returning a partial object would otherwise surface undefined fields. |
| 28 | function readConfig(): ChicagoConfig { |
| 29 | return { |
| 30 | ...DEFAULTS, |
| 31 | ...getDynamicConfig_CACHED_MAY_BE_STALE<Partial<ChicagoConfig>>( |
| 32 | 'ncode_malort_pedway', |
| 33 | DEFAULTS, |
| 34 | ), |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | // Max/Pro only for external rollout. Ant bypass so dogfooding continues |
| 39 | // regardless of subscription tier — not all ants are max/pro, and per |
no test coverage detected