forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
50 lines (47 loc) · 935 Bytes
/
Copy pathtypes.ts
File metadata and controls
50 lines (47 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
export const SALES_STAGES = [
"prospect",
"qualified",
"proposal",
"negotiation",
"closed-won",
"closed-lost",
] as const;
export type SalesStage = (typeof SALES_STAGES)[number];
export interface SalesTodo {
id: string;
title: string;
stage: SalesStage;
value: number;
dueDate: string;
assignee: string;
completed: boolean;
}
export const INITIAL_SALES_TODOS: SalesTodo[] = [
{
id: "1",
title: "Follow up with Acme Corp",
stage: "qualified",
value: 50000,
dueDate: "2026-04-20",
assignee: "Alice",
completed: false,
},
{
id: "2",
title: "Send proposal to TechStart",
stage: "proposal",
value: 120000,
dueDate: "2026-04-18",
assignee: "Bob",
completed: false,
},
{
id: "3",
title: "Schedule demo for GlobalInc",
stage: "prospect",
value: 75000,
dueDate: "2026-04-22",
assignee: "Alice",
completed: false,
},
];