(parts: CatalogParts)
| 372 | |
| 373 | /** Build the catalog-trimmed `description:` block. */ |
| 374 | export function buildTrimmedDescription(parts: CatalogParts): string { |
| 375 | const lead = parts.lead.trim(); |
| 376 | const suffix = parts.hasGstackTag ? ' (gstack)' : ''; |
| 377 | return `${lead}${suffix}`; |
| 378 | } |
| 379 | |
| 380 | /** Build the body section that holds the routing/voice prose. */ |
| 381 | export function buildWhenToInvokeSection(parts: CatalogParts): string { |
no outgoing calls
no test coverage detected