()
| 26 | |
| 27 | /** Compaction summary message IDs: summary-{timestamp}-{random} */ |
| 28 | export const createCompactionSummaryMessageId = (): string => |
| 29 | `summary-${Date.now()}-${randomSuffix(9)}`; |
| 30 | |
| 31 | /** Context reset boundary IDs: context-reset-{timestamp}-{random} */ |
| 32 | export const createContextResetBoundaryMessageId = (): string => |
no test coverage detected