-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.posthog-events.json
More file actions
62 lines (62 loc) · 2.57 KB
/
Copy path.posthog-events.json
File metadata and controls
62 lines (62 loc) · 2.57 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
[
{
"event": "user provisioned",
"description": "Fired when a new user completes sign-up and their org/account is provisioned. Top of the conversion funnel.",
"file": "backend/src/auth/auth-provision.controller.ts"
},
{
"event": "student enrolled",
"description": "Fired when a student enrolls in an academy. Key activation event indicating learner intent.",
"file": "backend/src/student-model/academy-student-model.controller.ts"
},
{
"event": "diagnostic started",
"description": "Fired when a student starts a diagnostic session to assess their existing knowledge.",
"file": "backend/src/diagnostic/academy-diagnostic.controller.ts"
},
{
"event": "diagnostic completed",
"description": "Fired when a student retrieves their diagnostic result, indicating the session is done.",
"file": "backend/src/diagnostic/academy-diagnostic.controller.ts"
},
{
"event": "lesson started",
"description": "Fired when a student starts a lesson for a concept. Indicates active learning engagement.",
"file": "backend/src/learning-engine/learning-engine.controller.ts"
},
{
"event": "lesson completed",
"description": "Fired when a student completes a lesson. Key activation/retention signal.",
"file": "backend/src/learning-engine/learning-engine.controller.ts"
},
{
"event": "quiz completed",
"description": "Fired when a student completes a quiz. Measures ongoing knowledge assessment engagement.",
"file": "backend/src/assessment/assessment.controller.ts"
},
{
"event": "section exam started",
"description": "Fired when a student starts a section exam. Indicates readiness to demonstrate mastery.",
"file": "backend/src/assessment/assessment.controller.ts"
},
{
"event": "section exam completed",
"description": "Fired when a student completes a section exam. Key mastery and course completion signal.",
"file": "backend/src/assessment/assessment.controller.ts"
},
{
"event": "checkout started",
"description": "Fired when an org admin initiates a billing checkout session. Top of payment funnel.",
"file": "backend/src/billing/billing.controller.ts"
},
{
"event": "subscription activated",
"description": "Fired via Stripe webhook when a checkout session completes and a subscription is created.",
"file": "backend/src/billing/stripe-webhook.controller.ts"
},
{
"event": "subscription canceled",
"description": "Fired via Stripe webhook when a subscription is deleted. Key churn signal.",
"file": "backend/src/billing/stripe-webhook.controller.ts"
}
]