| 108 | } |
| 109 | |
| 110 | export interface AgentExecutionContext { |
| 111 | runId: string; |
| 112 | channelId: string; |
| 113 | jobId?: string; |
| 114 | triggerType: RuntimePlatform; |
| 115 | } |
| 116 | |
| 117 | export type RequestHeadersProvider = ( |
| 118 | context: AgentExecutionContext, |
| 119 | ) => Record<string, string> | Promise<Record<string, string>>; |
| 120 | |
| 121 | export interface PackAgentOptions { |
| 122 | apiKey: string; |
nothing calls this directly
no outgoing calls
no test coverage detected