(params: SendblueBaseParams)
| 12 | * the `sb-api-key-id` and `sb-api-secret-key` headers. |
| 13 | */ |
| 14 | export function sendblueHeaders(params: SendblueBaseParams): Record<string, string> { |
| 15 | return { |
| 16 | 'sb-api-key-id': params.apiKeyId.trim(), |
| 17 | 'sb-api-secret-key': params.apiSecretKey.trim(), |
| 18 | 'Content-Type': 'application/json', |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Shared credential param definitions reused across all Sendblue tools. |
no outgoing calls
no test coverage detected