(enumValue)
| 540 | |
| 541 | /** Reverse-lookup a Model enum number to our catalog keys. */ |
| 542 | export function getModelKeysByEnum(enumValue) { |
| 543 | return _enumToKeys.get(enumValue) || []; |
| 544 | } |
| 545 | |
| 546 | // ─── Tier access ─────────────────────────────────────────── |
| 547 |