MCPcopy
hub / github.com/unicity-sphere/sphere / ProjectSummary

Interface ProjectSummary

src/services/marketplaceApi.ts:4–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2
3// ── Types ─────────────────────────────────────────────────────────────
4export interface ProjectSummary {
5 _id: string;
6 type?: 'app' | 'skill';
7 slug: string;
8 name: string;
9 tagline: string;
10 logoUrl: string;
11 bannerUrl?: string | null;
12 category: string;
13 tags: string[];
14 accentColor: string;
15 featured: boolean;
16 stats: { totalUsers: number; totalCompletions: number; activeQuests: number };
17 appUrl?: string | null;
18 websiteUrl?: string | null;
19 pricing?: { model: string; priceUCT: number | null };
20}
21
22export interface PaginatedProjects {
23 projects: ProjectSummary[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected