| 4 | export type { ConnectionAuth } from "@trigger.dev/core"; |
| 5 | |
| 6 | export interface TriggerIntegration { |
| 7 | id: string; |
| 8 | metadata: IntegrationMetadata; |
| 9 | authSource: "LOCAL" | "HOSTED"; |
| 10 | cloneForRun: (io: IO, connectionKey: string, auth?: ConnectionAuth) => TriggerIntegration; |
| 11 | } |
| 12 | |
| 13 | export type IOWithIntegrations<TIntegrations extends Record<string, TriggerIntegration>> = IO & |
| 14 | TIntegrations; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…