(scopeId: string, secretId: string)
| 1359 | // the orphans (migrate-all). Keyed `${scopeId} ${secretId}`. |
| 1360 | const consumed = new Set<string>(); |
| 1361 | const consume = (scopeId: string, secretId: string): void => { |
| 1362 | consumed.add(`${scopeId} ${secretId}`); |
| 1363 | }; |
| 1364 | // Connection rows actually bound to a source (and thus migrated). v1 leaves |
| 1365 | // stale, unbound connection rows behind (disconnect/re-auth residue); they have |
| 1366 | // no source to attach to in v2, so they're not migrated — their tokens fall to |