|
| 1 | +export const ALL_APPS = { |
| 2 | + "authentication": { |
| 3 | + type: "app" as const, |
| 4 | + displayName: "Authentication", |
| 5 | + subtitle: "User sign-in and account management", |
| 6 | + tags: ["auth", "security"], |
| 7 | + }, |
| 8 | + "teams": { |
| 9 | + type: "app" as const, |
| 10 | + displayName: "Teams", |
| 11 | + subtitle: "Team collaboration and management", |
| 12 | + tags: ["collaboration", "organization"], |
| 13 | + }, |
| 14 | + "rbac": { |
| 15 | + type: "app" as const, |
| 16 | + displayName: "RBAC", |
| 17 | + subtitle: "Role-based access control and permissions", |
| 18 | + tags: ["security", "permissions"], |
| 19 | + }, |
| 20 | + "api-keys": { |
| 21 | + type: "app" as const, |
| 22 | + displayName: "API Keys", |
| 23 | + subtitle: "API key generation and management", |
| 24 | + tags: ["api", "security"], |
| 25 | + }, |
| 26 | + "payments": { |
| 27 | + type: "app" as const, |
| 28 | + displayName: "Payments", |
| 29 | + subtitle: "Payment processing and subscription management", |
| 30 | + tags: ["billing", "monetization"], |
| 31 | + }, |
| 32 | + "emails": { |
| 33 | + type: "app" as const, |
| 34 | + displayName: "Emails", |
| 35 | + subtitle: "Email template configuration and management", |
| 36 | + tags: ["communication", "templates"], |
| 37 | + }, |
| 38 | + "email-api": { |
| 39 | + type: "app" as const, |
| 40 | + displayName: "Email API", |
| 41 | + subtitle: "Programmatic email sending and delivery", |
| 42 | + tags: ["api", "communication"], |
| 43 | + }, |
| 44 | + "data-vault": { |
| 45 | + type: "app" as const, |
| 46 | + displayName: "Data Vault", |
| 47 | + subtitle: "Secure storage for sensitive user data", |
| 48 | + tags: ["security", "storage"], |
| 49 | + }, |
| 50 | + "workflows": { |
| 51 | + type: "app" as const, |
| 52 | + displayName: "Workflows", |
| 53 | + subtitle: "Automated business process orchestration", |
| 54 | + tags: ["automation", "processes"], |
| 55 | + }, |
| 56 | + "webhooks": { |
| 57 | + type: "app" as const, |
| 58 | + displayName: "Webhooks", |
| 59 | + subtitle: "Real-time event notifications and integrations", |
| 60 | + tags: ["integration", "events"], |
| 61 | + }, |
| 62 | + "tv-mode": { |
| 63 | + type: "app" as const, |
| 64 | + displayName: "TV mode", |
| 65 | + subtitle: "Dashboard display for large screens", |
| 66 | + tags: ["display", "monitoring"], |
| 67 | + }, |
| 68 | + "launch-checklist": { |
| 69 | + type: "app" as const, |
| 70 | + displayName: "Launch Checklist", |
| 71 | + subtitle: "Pre-launch verification and readiness checks", |
| 72 | + tags: ["deployment", "verification"], |
| 73 | + }, |
| 74 | + "catalyst": { |
| 75 | + type: "app" as const, |
| 76 | + displayName: "Catalyst", |
| 77 | + subtitle: "Project scaffolding and rapid development", |
| 78 | + tags: ["development", "tooling"], |
| 79 | + }, |
| 80 | + "neon": { |
| 81 | + type: "integration" as const, |
| 82 | + displayName: "Neon", |
| 83 | + subtitle: "Serverless Postgres database integration", |
| 84 | + tags: ["database", "integration"], |
| 85 | + }, |
| 86 | + "convex": { |
| 87 | + type: "integration" as const, |
| 88 | + displayName: "Convex", |
| 89 | + subtitle: "Real-time backend platform integration", |
| 90 | + tags: ["database", "integration", "realtime"], |
| 91 | + }, |
| 92 | +} as const; |
0 commit comments