(identity: Identity)
| 66 | // responses re-seal the session when the active org changes. |
| 67 | |
| 68 | const cookieOf = (identity: Identity): string => identity.headers?.["cookie"] ?? ""; |
| 69 | |
| 70 | const postJson = (target: TargetShape, path: string, identity: Identity, body: unknown) => |
| 71 | Effect.promise(async () => { |
no outgoing calls
no test coverage detected