From 105ed0912db2586a01f302b042106f6a39962ec1 Mon Sep 17 00:00:00 2001 From: predatorx7 Date: Fri, 7 Aug 2026 06:17:06 +0530 Subject: [PATCH] add updated events --- content/docs/troubleshooting/analytics-event.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/docs/troubleshooting/analytics-event.mdx b/content/docs/troubleshooting/analytics-event.mdx index 1bee203..53b7c9d 100644 --- a/content/docs/troubleshooting/analytics-event.mdx +++ b/content/docs/troubleshooting/analytics-event.mdx @@ -50,6 +50,8 @@ export type LogType = | 'PROOF_GENERATION_FAILED' | 'PROOF_SUBMITTED' | 'AI_PROOF_SUBMITTED' + | 'USER_INTERACTED' + | 'USER_TYPED' | 'PROOF_SUBMISSION_FAILED' // This spelling mistake is intentional to match the backend. | 'PROOF_MANUAL_VERIFICATION_SUBMITED' @@ -178,6 +180,8 @@ export interface AnalyticsLogEntry { | `PROOF_GENERATION_FAILED` | ERROR | Proof generation failed. | | `PROOF_SUBMITTED` | INFO | The proof has been successfully submitted. | | `AI_PROOF_SUBMITTED` | INFO | AI proof has been submitted. | +| `USER_INTERACTED` | INFO | User interacted with the page after web page opens | +| `USER_TYPED` | INFO | User typed on the web page | | `PROOF_SUBMISSION_FAILED` | ERROR | Proof submission failed. | | `PROOF_MANUAL_VERIFICATION_SUBMITED` | INFO | Manual verification proof submitted. | | `ERROR_SUBMITTED` | INFO | Error details (Right now happens on cancellation) have been submitted. |