(available: readonly BindableConnection[])
| 23 | /** The caller's connection inventory, as `create-artifact` sees it when it |
| 24 | * binds an artifact's integration roles. */ |
| 25 | const connectionsPort = (available: readonly BindableConnection[]) => ({ |
| 26 | list: (): Effect.Effect<readonly BindableConnection[]> => Effect.succeed(available), |
| 27 | }); |
| 28 | |
| 29 | const conn = (integration: string, owner: "user" | "org", name: string): BindableConnection => ({ |
| 30 | integration, |
no outgoing calls
no test coverage detected