09a5cb69a7
CI / build-and-push (push) Successful in 42s
Replaces the simplified single-subscriber market with a full competitive simulation: shared TAM with softmax market shares across 4 segments, multi-tier consumer subscriptions (Free/Plus/Pro/Team) and API tiers (Free/PAYG/Scale/Enterprise), enterprise sales pipeline (Lead→Qualification→POC→Negotiation→Active→Renewal) with SLA tracking, developer ecosystem flywheel, technology obsolescence pressure, seasonal demand cycles, and two new product lines (Code Assistant, AI Agents Platform). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
1.8 KiB
TypeScript
32 lines
1.8 KiB
TypeScript
import type { EnterpriseSegment } from '@ai-tycoon/shared';
|
|
|
|
export const ENTERPRISE_NAMES: Record<EnterpriseSegment, string[]> = {
|
|
startup: [
|
|
'PixelForge', 'NovaByte', 'CloudSpark', 'DataLeap', 'VectorVault',
|
|
'SynthWave AI', 'CodePilot', 'BrightLoop', 'Innova Labs', 'ScaleKit',
|
|
'DeepRoot', 'FluxPoint', 'MindBridge', 'HyperNode', 'NeuralSeed',
|
|
'LatticeAI', 'StreamForge', 'QuantumLeaf', 'VeloCity AI', 'ArcStack',
|
|
],
|
|
'mid-market': [
|
|
'Meridian Health', 'Cascade Logistics', 'PrimeRetail Group', 'Atlas Financial',
|
|
'TerraForm Solutions', 'NorthStar Analytics', 'BridgePoint Media', 'Keystone Legal',
|
|
'Orion Pharmaceuticals', 'Summit Education', 'ClearView Insurance', 'Horizon Dynamics',
|
|
'PeakWare Systems', 'CorePath Consulting', 'BlueStar Manufacturing', 'Vertex Commerce',
|
|
'RiverStone Banking', 'Zenith Telecom', 'IronGate Security', 'ElmBridge Tech',
|
|
],
|
|
enterprise: [
|
|
'GlobalBank Corp', 'TransContinental Airlines', 'MegaRetail Holdings', 'United Telecom',
|
|
'Pinnacle Pharmaceuticals', 'Imperial Energy', 'Vanguard Insurance', 'Sterling Automotive',
|
|
'Apex Media Group', 'Continental Healthcare', 'Sovereign Financial', 'Atlas Industries',
|
|
'Dominion Logistics', 'Pacific Semiconductor', 'NorthAm Rail Systems', 'OceanGate Maritime',
|
|
'Crown Broadcasting', 'Titan Manufacturing', 'Citadel Consulting', 'Granite Resources',
|
|
],
|
|
government: [
|
|
'Dept. of National Intelligence', 'Federal Research Authority', 'National Health Service AI',
|
|
'Defense Advanced Projects', 'Central Tax Administration', 'State Education Bureau',
|
|
'Environmental Protection AI', 'National Cybersecurity Center', 'Federal Aviation Systems',
|
|
'Dept. of Energy Computing', 'National Weather Service', 'Census Analytics Division',
|
|
'Judicial Analytics Office', 'Immigration Processing AI', 'Veterans Affairs Digital',
|
|
],
|
|
};
|