chore: fix prettier formatting, regenerate phase9 manifest, add missing config files (.env.example, .node-version, .nvmrc, CI workflow)
CI / test (push) Failing after 28s

This commit is contained in:
root
2026-06-25 20:12:15 -04:00
parent c43620a005
commit b7a640735c
36 changed files with 3402 additions and 1857 deletions
@@ -1,5 +1,23 @@
export const fleetSizeValues = ["1-9","10-24","25-49","50-99","100-249","250+"] as const;
export type FleetSize = typeof fleetSizeValues[number];
export interface DemoRequest { fullName:string; workEmail:string; company:string; fleetSize:FleetSize; market?:string; preferredLanguage?:"en"|"fr"|"ar"; message?:string; idempotencyKey:string; source:string; }
export interface DemoSuccess { requestId:string; acceptedAt:string; nextStepCode:"sales_followup"|"manual_review"; }
export interface DemoFailure { code:"validation"|"rate_limited"|"duplicate"|"unavailable"|"unknown"; retryable:boolean; fieldErrors?:Record<string,string>; }
export const fleetSizeValues = ['1-9', '10-24', '25-49', '50-99', '100-249', '250+'] as const;
export type FleetSize = (typeof fleetSizeValues)[number];
export interface DemoRequest {
fullName: string;
workEmail: string;
company: string;
fleetSize: FleetSize;
market?: string;
preferredLanguage?: 'en' | 'fr' | 'ar';
message?: string;
idempotencyKey: string;
source: string;
}
export interface DemoSuccess {
requestId: string;
acceptedAt: string;
nextStepCode: 'sales_followup' | 'manual_review';
}
export interface DemoFailure {
code: 'validation' | 'rate_limited' | 'duplicate' | 'unavailable' | 'unknown';
retryable: boolean;
fieldErrors?: Record<string, string>;
}