| 57 | |
| 58 | // Bundle Types |
| 59 | export interface Bundle { |
| 60 | id: string; |
| 61 | environmentId: string; |
| 62 | versionId: string; |
| 63 | appId: string; |
| 64 | sequenceId: number; |
| 65 | hash: string; |
| 66 | size: number; |
| 67 | downloadFile: string; |
| 68 | isMandatory: boolean; |
| 69 | failed: number; |
| 70 | installed: number; |
| 71 | active: number; |
| 72 | description: string; |
| 73 | label: string; |
| 74 | isValid: boolean; |
| 75 | createdBy: string; |
| 76 | createdAt: string; |
| 77 | updatedAt: string; |
| 78 | isActive?: boolean; // UI state to track if bundle is active |
| 79 | } |
nothing calls this directly
no outgoing calls
no test coverage detected