| 61 | } |
| 62 | |
| 63 | export interface CachedProcessedEntry { |
| 64 | id: string; |
| 65 | nodeHash: string | null; |
| 66 | nodeEntryPersistentId: string | null; |
| 67 | nodeId: string | null; |
| 68 | projectId: string; |
| 69 | incomingInputHash: string; |
| 70 | incomingOutputHash: string | null; |
| 71 | outgoingInputHash: string | null; |
| 72 | outgoingOutputHash: string | null; |
| 73 | outgoingSplit: "TEST" | "TRAIN" | null; |
| 74 | filterOutcome: string | null; |
| 75 | explanation: string | null; |
| 76 | createdAt: Generated<Timestamp>; |
| 77 | updatedAt: Timestamp; |
| 78 | } |
| 79 | |
| 80 | export interface CachedResponse { |
| 81 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected