MCPcopy Create free account
hub / github.com/SwishHQ/spread / Bundle

Interface Bundle

web/src/types/api.ts:59–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57
58// Bundle Types
59export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected