(target: TargetShape, identity: Identity, slug: string)
| 197 | ); |
| 198 | |
| 199 | const deleteSource = (target: TargetShape, identity: Identity, slug: string): Effect.Effect<void> => |
| 200 | Effect.promise(() => |
| 201 | request(target, identity, `/api/apps/sources/${slug}`, { method: "DELETE" }).then( |
| 202 | () => undefined, |
| 203 | ), |
| 204 | ).pipe(Effect.ignore); |
| 205 | |
| 206 | const syncAndInvoke = (input: { |
| 207 | readonly target: TargetShape; |
no test coverage detected