(tenant: string, externalId: string)
| 78 | const lastTouchedAt = new Map<string, number>(); |
| 79 | |
| 80 | const touchCacheKey = (tenant: string, externalId: string) => `${tenant} ${externalId}`; |
| 81 | |
| 82 | const rememberTouch = (key: string, at: number): void => { |
| 83 | // Re-insert so the key moves to the end of the Map's insertion order, making |