-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.next-dev-clean.log
More file actions
2260 lines (2241 loc) · 380 KB
/
Copy path.next-dev-clean.log
File metadata and controls
2260 lines (2241 loc) · 380 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Γû▓ Next.js 16.2.3 (Turbopack)
- Local: http://localhost:3000
- Network: http://192.168.56.1:3000
- Environments: .env
Γ£ô Ready in 897ms
GET / 200 in 752ms (next.js: 427ms, application-code: 324ms)
GET /api/auth/session 200 in 1831ms (next.js: 1616ms, application-code: 215ms)
GET / 200 in 125ms (next.js: 14ms, application-code: 111ms)
GET /api/auth/session 200 in 67ms (next.js: 38ms, application-code: 29ms)
GET /signup 200 in 88ms (next.js: 53ms, application-code: 36ms)
GET /api/auth/providers 200 in 35ms (next.js: 20ms, application-code: 15ms)
GET /api/auth/providers 200 in 38ms (next.js: 20ms, application-code: 18ms)
GET /api/auth/providers 200 in 35ms (next.js: 16ms, application-code: 18ms)
GET /api/auth/csrf 200 in 22ms (next.js: 6ms, application-code: 16ms)
POST /api/auth/signin/google 200 in 280ms (next.js: 6ms, application-code: 274ms)
GET /api/auth/callback/google?state=iPhxTlpJoZsPpE_DwGMHHq6RXufYUCSsP1ms-XyaRa0&iss=https%3A%2F%2Faccounts.google.com&code=4%2F0Aci98E-2rQjag2znaljDpNPHUmfXrW1yIPPN3rJKpjlF2zRalJVz2mF4F8kK6iwhAX3DPA&scope=email+profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+openid&authuser=0&prompt=none 302 in 621ms (next.js: 18ms, application-code: 603ms)
GET /dashboard 200 in 493ms (next.js: 86ms, application-code: 407ms)
GET /api/hackathons 200 in 276ms (next.js: 56ms, application-code: 220ms)
GET /api/gmail/mailboxes 200 in 288ms (next.js: 166ms, application-code: 122ms)
GET /api/dashboard/stats 200 in 312ms (next.js: 209ms, application-code: 103ms)
GET /api/events/timeline?days=14 200 in 324ms (next.js: 251ms, application-code: 72ms)
GET /api/auth/session 200 in 38ms (next.js: 13ms, application-code: 25ms)
node.exe : (node:13392) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland
alternative instead.
At C:\Program Files\nodejs\npx.ps1:29 char:3
+ & $NODE_EXE $NPX_CLI_JS $args
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: ((node:13392) [D...native instead.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
(Use `node --trace-deprecation ...` to show where the warning was created)
{"ts":"2026-04-17T18:42:27.081Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":true}
{"ts":"2026-04-17T18:42:27.088Z","level":"error","event":"gmail.sync.failed","error":{"name":"AppError","message":"Goog
le account not connected (missing refresh token). Reconnect with Google.","stack":"AppError: Google account not
connected (missing refresh token). Reconnect with Google.\n at getOAuthClientForUser
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1134:15)\n at
process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async gmailBootstrapSync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1947:20)\n at async POST
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2281:24)\n at async
AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"user
Id":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":true}
{"ts":"2026-04-17T18:42:27.085Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
POST /api/gmail/sync 400 in 1665ms (next.js: 1630ms, application-code: 35ms)
{"ts":"2026-04-17T18:42:27.179Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 88ms (next.js: 51ms, application-code: 37ms)
GET /api/dashboard/stats 200 in 42ms (next.js: 6ms, application-code: 36ms)
GET /api/hackathons 200 in 46ms (next.js: 13ms, application-code: 33ms)
GET /api/events/timeline?days=14 200 in 51ms (next.js: 19ms, application-code: 33ms)
GET /api/gmail/mailboxes 200 in 56ms (next.js: 31ms, application-code: 25ms)
GET /my-hackathons 200 in 112ms (next.js: 65ms, application-code: 47ms)
{"ts":"2026-04-17T18:42:31.301Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 54ms (next.js: 11ms, application-code: 43ms)
GET /api/hackathons 200 in 59ms (next.js: 30ms, application-code: 29ms)
GET /api/gmail/mailboxes 200 in 65ms (next.js: 36ms, application-code: 30ms)
{"ts":"2026-04-17T18:42:33.465Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
{"ts":"2026-04-17T18:42:33.465Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
{"ts":"2026-04-17T18:42:33.467Z","level":"error","event":"gmail.sync.failed","error":{"name":"AppError","message":"Goog
le account not connected (missing refresh token). Reconnect with Google.","stack":"AppError: Google account not
connected (missing refresh token). Reconnect with Google.\n at getOAuthClientForUser
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1134:15)\n at
process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async gmailBootstrapSync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1947:20)\n at async POST
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2281:24)\n at async
AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"user
Id":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
POST /api/gmail/sync 400 in 28ms (next.js: 8ms, application-code: 21ms)
{"ts":"2026-04-17T18:42:34.352Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
{"ts":"2026-04-17T18:42:34.352Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
{"ts":"2026-04-17T18:42:34.354Z","level":"error","event":"gmail.sync.failed","error":{"name":"AppError","message":"Goog
le account not connected (missing refresh token). Reconnect with Google.","stack":"AppError: Google account not
connected (missing refresh token). Reconnect with Google.\n at getOAuthClientForUser
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1134:15)\n at
process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async gmailBootstrapSync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1947:20)\n at async POST
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2281:24)\n at async
AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"user
Id":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
POST /api/gmail/sync 400 in 25ms (next.js: 6ms, application-code: 20ms)
{"ts":"2026-04-17T18:42:34.565Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
{"ts":"2026-04-17T18:42:34.566Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
{"ts":"2026-04-17T18:42:34.568Z","level":"error","event":"gmail.sync.failed","error":{"name":"AppError","message":"Goog
le account not connected (missing refresh token). Reconnect with Google.","stack":"AppError: Google account not
connected (missing refresh token). Reconnect with Google.\n at getOAuthClientForUser
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1134:15)\n at
process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async gmailBootstrapSync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1947:20)\n at async POST
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2281:24)\n at async
AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"user
Id":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
POST /api/gmail/sync 400 in 24ms (next.js: 6ms, application-code: 18ms)
GET /my-hackathons 200 in 1410ms (next.js: 1265ms, application-code: 145ms)
Γ£ô Compiled in 313ms
GET /my-hackathons 200 in 381ms (next.js: 230ms, application-code: 151ms)
Γ£ô Compiled in 111ms
GET /my-hackathons 200 in 309ms (next.js: 190ms, application-code: 119ms)
Γ£ô Compiled in 133ms
GET /my-hackathons 200 in 478ms (next.js: 296ms, application-code: 182ms)
Γ£ô Compiled in 141ms
GET /my-hackathons 200 in 321ms (next.js: 180ms, application-code: 141ms)
Γ£ô Compiled in 89ms
GET /my-hackathons 200 in 299ms (next.js: 187ms, application-code: 112ms)
Γ£ô Compiled in 92ms
GET /my-hackathons 200 in 330ms (next.js: 204ms, application-code: 126ms)
Γ£ô Compiled in 110ms
GET /my-hackathons 200 in 355ms (next.js: 216ms, application-code: 139ms)
Γ£ô Compiled in 106ms
GET /my-hackathons 200 in 343ms (next.js: 206ms, application-code: 137ms)
GET /api/hackathons 200 in 173ms (next.js: 139ms, application-code: 34ms)
GET /api/gmail/mailboxes 200 in 287ms (next.js: 183ms, application-code: 104ms)
{"ts":"2026-04-17T18:45:31.770Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 293ms (next.js: 221ms, application-code: 72ms)
GET /api/auth/session 200 in 104ms (next.js: 71ms, application-code: 33ms)
Γ£ô Compiled in 113ms
GET /my-hackathons 200 in 341ms (next.js: 222ms, application-code: 119ms)
GET /api/gmail/mailboxes 200 in 1016ms (next.js: 691ms, application-code: 325ms)
GET /api/hackathons 200 in 1107ms (next.js: 848ms, application-code: 259ms)
{"ts":"2026-04-17T18:45:42.890Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 1113ms (next.js: 975ms, application-code: 139ms)
GET /api/auth/session 200 in 394ms (next.js: 347ms, application-code: 47ms)
GET /my-hackathons 200 in 454ms (next.js: 224ms, application-code: 229ms)
GET /my-hackathons 200 in 88ms (next.js: 7ms, application-code: 81ms)
GET /api/hackathons 200 in 300ms (next.js: 138ms, application-code: 162ms)
GET /api/gmail/mailboxes 200 in 361ms (next.js: 269ms, application-code: 91ms)
{"ts":"2026-04-17T18:46:18.906Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 222ms (next.js: 176ms, application-code: 46ms)
GET /api/auth/session 200 in 130ms (next.js: 100ms, application-code: 29ms)
GET /my-hackathons 200 in 393ms (next.js: 12ms, application-code: 381ms)
GET /api/hackathons 200 in 24ms (next.js: 6ms, application-code: 18ms)
GET /api/gmail/mailboxes 200 in 32ms (next.js: 11ms, application-code: 21ms)
GET /api/auth/session 200 in 32ms (next.js: 14ms, application-code: 18ms)
{"ts":"2026-04-17T18:46:21.445Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 22ms (next.js: 5ms, application-code: 17ms)
GET /api/auth/providers 200 in 35ms (next.js: 18ms, application-code: 17ms)
GET /api/auth/csrf 200 in 22ms (next.js: 7ms, application-code: 15ms)
POST /api/auth/signin/google?scope=openid+email+profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fgmail.readonly+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcalendar.readonly&prompt=consent&access_type=offline&response_type=code 200 in 250ms (next.js: 6ms, application-code: 244ms)
{"ts":"2026-04-17T18:46:35.347Z","level":"info","event":"auth.gmail_mailbox_linked","userId":"cmo33pggw0000f8hgbz8i0pu6","mailboxId":"cmo35594y00009ohgb5csr4ni","provider":"gmail","hasPriorSync":false}
GET /api/auth/callback/google?state=zbq78NjzlGLK-6CqqT6PvL_v-h2Wy2Xsx_0OFaZjqok&iss=https://accounts.google.com&code=4/0Aci98E-UcSxv-UIPOD758NRVMJpJgTEW0u7HszHfssEH0Y1owDOdEhrs2qs4pik8wf9hzw&scope=email%20profile%20https://www.googleapis.com/auth/gmail.readonly%20https://www.googleapis.com/auth/calendar.readonly%20https://www.googleapis.com/auth/userinfo.profile%20https://www.googleapis.com/auth/userinfo.email%20openid&authuser=0&prompt=consent 302 in 943ms (next.js: 18ms, application-code: 925ms)
GET /my-hackathons 200 in 121ms (next.js: 17ms, application-code: 104ms)
GET /api/hackathons 200 in 27ms (next.js: 9ms, application-code: 18ms)
GET /api/gmail/mailboxes 200 in 30ms (next.js: 13ms, application-code: 17ms)
GET /api/auth/session 200 in 24ms (next.js: 12ms, application-code: 12ms)
{"ts":"2026-04-17T18:46:35.952Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 19ms (next.js: 4ms, application-code: 15ms)
GET /api/auth/providers 200 in 33ms (next.js: 17ms, application-code: 16ms)
GET /api/auth/csrf 200 in 25ms (next.js: 8ms, application-code: 17ms)
POST /api/auth/signin/google?scope=openid+email+profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fgmail.readonly+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcalendar.readonly&prompt=consent&access_type=offline&response_type=code 200 in 70ms (next.js: 6ms, application-code: 63ms)
GET /dashboard 200 in 439ms (next.js: 180ms, application-code: 259ms)
GET /api/dashboard/stats 200 in 109ms (next.js: 41ms, application-code: 68ms)
GET /api/hackathons 200 in 115ms (next.js: 49ms, application-code: 66ms)
GET /api/events/timeline?days=14 200 in 72ms (next.js: 35ms, application-code: 37ms)
GET /api/gmail/mailboxes 200 in 78ms (next.js: 42ms, application-code: 36ms)
GET /api/auth/session 200 in 32ms (next.js: 15ms, application-code: 17ms)
{"ts":"2026-04-17T18:46:45.781Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 20ms (next.js: 5ms, application-code: 15ms)
GET /team-finder 200 in 103ms (next.js: 53ms, application-code: 51ms)
{"ts":"2026-04-17T18:46:59.711Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 34ms (next.js: 7ms, application-code: 27ms)
GET /my-hackathons 200 in 58ms (next.js: 7ms, application-code: 51ms)
GET /api/hackathons 200 in 42ms (next.js: 10ms, application-code: 32ms)
GET /api/gmail/mailboxes 200 in 48ms (next.js: 20ms, application-code: 29ms)
GET /api/auth/session 200 in 155ms (next.js: 83ms, application-code: 72ms)
GET /dashboard 200 in 53ms (next.js: 9ms, application-code: 44ms)
{"ts":"2026-04-17T18:47:08.132Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 54ms (next.js: 16ms, application-code: 37ms)
GET /api/dashboard/stats 200 in 52ms (next.js: 10ms, application-code: 42ms)
GET /api/hackathons 200 in 60ms (next.js: 15ms, application-code: 45ms)
GET /api/events/timeline?days=14 200 in 47ms (next.js: 15ms, application-code: 32ms)
GET /api/gmail/mailboxes 200 in 53ms (next.js: 24ms, application-code: 29ms)
Γ£ô Compiled in 186ms
GET /dashboard 200 in 535ms (next.js: 194ms, application-code: 341ms)
GET /dashboard 200 in 227ms (next.js: 6ms, application-code: 221ms)
GET /dashboard 200 in 204ms (next.js: 40ms, application-code: 164ms)
GET /dashboard 200 in 205ms (next.js: 72ms, application-code: 133ms)
GET /dashboard 200 in 231ms (next.js: 97ms, application-code: 134ms)
GET /dashboard 200 in 235ms (next.js: 8ms, application-code: 226ms)
GET /dashboard 200 in 235ms (next.js: 5ms, application-code: 230ms)
GET /dashboard 200 in 202ms (next.js: 7ms, application-code: 195ms)
GET /dashboard 200 in 247ms (next.js: 79ms, application-code: 168ms)
GET /dashboard 200 in 251ms (next.js: 7ms, application-code: 244ms)
GET /dashboard 200 in 251ms (next.js: 31ms, application-code: 220ms)
GET /dashboard 200 in 293ms (next.js: 56ms, application-code: 237ms)
GET /dashboard 200 in 288ms (next.js: 9ms, application-code: 279ms)
GET /dashboard 200 in 231ms (next.js: 9ms, application-code: 223ms)
GET /dashboard 200 in 179ms (next.js: 7ms, application-code: 173ms)
GET /dashboard 200 in 179ms (next.js: 28ms, application-code: 151ms)
GET /dashboard 200 in 180ms (next.js: 51ms, application-code: 129ms)
GET /dashboard 200 in 180ms (next.js: 74ms, application-code: 106ms)
GET /dashboard 200 in 45ms (next.js: 4ms, application-code: 41ms)
Γ£ô Compiled in 422ms
GET /dashboard 200 in 589ms (next.js: 235ms, application-code: 354ms)
GET /dashboard 200 in 271ms (next.js: 5ms, application-code: 266ms)
GET /dashboard 200 in 323ms (next.js: 50ms, application-code: 274ms)
GET /dashboard 200 in 324ms (next.js: 89ms, application-code: 234ms)
GET /dashboard 200 in 333ms (next.js: 7ms, application-code: 326ms)
GET /dashboard 200 in 332ms (next.js: 124ms, application-code: 208ms)
GET /dashboard 200 in 288ms (next.js: 7ms, application-code: 281ms)
GET /dashboard 200 in 223ms (next.js: 12ms, application-code: 211ms)
GET /dashboard 200 in 222ms (next.js: 5ms, application-code: 217ms)
GET /dashboard 200 in 222ms (next.js: 56ms, application-code: 166ms)
GET /dashboard 200 in 230ms (next.js: 32ms, application-code: 199ms)
GET /dashboard 200 in 230ms (next.js: 89ms, application-code: 141ms)
GET /dashboard 200 in 156ms (next.js: 5ms, application-code: 150ms)
GET /dashboard 200 in 123ms (next.js: 7ms, application-code: 116ms)
GET /dashboard 200 in 80ms (next.js: 4ms, application-code: 75ms)
GET /dashboard 200 in 80ms (next.js: 29ms, application-code: 51ms)
GET /dashboard 200 in 533ms (next.js: 300ms, application-code: 233ms)
GET /dashboard 200 in 101ms (next.js: 9ms, application-code: 92ms)
GET /dashboard 200 in 395ms (next.js: 244ms, application-code: 151ms)
GET /dashboard 200 in 447ms (next.js: 261ms, application-code: 187ms)
Γ£ô Compiled in 113ms
GET /dashboard 200 in 455ms (next.js: 290ms, application-code: 165ms)
Γ£ô Compiled in 122ms
GET /dashboard 200 in 433ms (next.js: 289ms, application-code: 144ms)
Γ£ô Compiled in 99ms
GET /dashboard 200 in 341ms (next.js: 198ms, application-code: 143ms)
GET /api/dashboard/stats 200 in 947ms (next.js: 170ms, application-code: 777ms)
GET /api/hackathons 200 in 938ms (next.js: 293ms, application-code: 645ms)
GET /api/events/timeline?days=14 200 in 944ms (next.js: 479ms, application-code: 465ms)
GET /api/gmail/mailboxes 200 in 924ms (next.js: 565ms, application-code: 359ms)
{"ts":"2026-04-17T18:53:48.740Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 933ms (next.js: 736ms, application-code: 196ms)
GET /api/auth/session 200 in 601ms (next.js: 553ms, application-code: 48ms)
GET /dashboard 200 in 324ms (next.js: 7ms, application-code: 317ms)
GET /api/dashboard/stats 200 in 52ms (next.js: 9ms, application-code: 44ms)
GET /api/hackathons 200 in 57ms (next.js: 18ms, application-code: 39ms)
GET /api/events/timeline?days=14 200 in 63ms (next.js: 27ms, application-code: 36ms)
GET /api/gmail/mailboxes 200 in 47ms (next.js: 14ms, application-code: 33ms)
GET /api/auth/session 200 in 27ms (next.js: 13ms, application-code: 14ms)
{"ts":"2026-04-17T18:53:50.434Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 15ms (next.js: 3ms, application-code: 12ms)
GET /dashboard 200 in 365ms (next.js: 223ms, application-code: 142ms)
GET /dashboard 200 in 420ms (next.js: 254ms, application-code: 167ms)
GET /api/dashboard/stats 200 in 543ms (next.js: 189ms, application-code: 354ms)
GET /api/hackathons 200 in 634ms (next.js: 254ms, application-code: 379ms)
{"ts":"2026-04-17T18:54:35.588Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 647ms (next.js: 366ms, application-code: 281ms)
GET /api/events/timeline?days=14 200 in 649ms (next.js: 408ms, application-code: 241ms)
GET /api/gmail/mailboxes 200 in 659ms (next.js: 484ms, application-code: 175ms)
GET /api/auth/session 200 in 426ms (next.js: 348ms, application-code: 78ms)
GET /api/dashboard/stats 200 in 61ms (next.js: 11ms, application-code: 50ms)
GET /api/hackathons 200 in 72ms (next.js: 19ms, application-code: 53ms)
GET /api/events/timeline?days=14 200 in 81ms (next.js: 28ms, application-code: 53ms)
GET /api/gmail/mailboxes 200 in 87ms (next.js: 36ms, application-code: 51ms)
{"ts":"2026-04-17T18:54:40.928Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 93ms (next.js: 44ms, application-code: 50ms)
GET /api/auth/session 200 in 37ms (next.js: 18ms, application-code: 19ms)
GET /api/dashboard/stats 200 in 228ms (next.js: 93ms, application-code: 135ms)
GET /api/hackathons 200 in 238ms (next.js: 105ms, application-code: 133ms)
GET /api/events/timeline?days=14 200 in 245ms (next.js: 117ms, application-code: 128ms)
GET /api/gmail/mailboxes 200 in 251ms (next.js: 129ms, application-code: 121ms)
{"ts":"2026-04-17T18:54:48.208Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 257ms (next.js: 138ms, application-code: 119ms)
GET /dashboard 200 in 462ms (next.js: 10ms, application-code: 452ms)
GET /api/dashboard/stats 200 in 44ms (next.js: 8ms, application-code: 35ms)
GET /api/hackathons 200 in 59ms (next.js: 20ms, application-code: 39ms)
GET /api/events/timeline?days=14 200 in 69ms (next.js: 30ms, application-code: 39ms)
GET /api/gmail/mailboxes 200 in 51ms (next.js: 19ms, application-code: 32ms)
GET /api/auth/session 200 in 31ms (next.js: 12ms, application-code: 19ms)
{"ts":"2026-04-17T18:54:48.623Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 19ms (next.js: 4ms, application-code: 15ms)
GET /api/dashboard/stats 200 in 46ms (next.js: 22ms, application-code: 25ms)
GET /api/gmail/mailboxes 200 in 70ms (next.js: 18ms, application-code: 52ms)
{"ts":"2026-04-17T18:55:01.669Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 77ms (next.js: 26ms, application-code: 51ms)
GET /api/hackathons 200 in 82ms (next.js: 33ms, application-code: 50ms)
GET /api/events/timeline?days=14 200 in 111ms (next.js: 49ms, application-code: 62ms)
GET /api/auth/session 200 in 65ms (next.js: 37ms, application-code: 28ms)
GET /my-hackathons 200 in 205ms (next.js: 131ms, application-code: 74ms)
GET /api/hackathons 200 in 91ms (next.js: 13ms, application-code: 78ms)
GET /api/gmail/mailboxes 200 in 97ms (next.js: 26ms, application-code: 70ms)
{"ts":"2026-04-17T18:55:28.252Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 103ms (next.js: 36ms, application-code: 67ms)
GET /api/auth/session 200 in 68ms (next.js: 18ms, application-code: 50ms)
GET /api/hackathons 200 in 235ms (next.js: 71ms, application-code: 164ms)
GET /api/gmail/mailboxes 200 in 252ms (next.js: 208ms, application-code: 44ms)
{"ts":"2026-04-17T18:55:36.752Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 261ms (next.js: 215ms, application-code: 46ms)
GET / 200 in 281ms (next.js: 32ms, application-code: 249ms)
GET /api/auth/session 200 in 38ms (next.js: 15ms, application-code: 23ms)
GET /signup 200 in 168ms (next.js: 122ms, application-code: 46ms)
GET /api/auth/providers 200 in 32ms (next.js: 16ms, application-code: 15ms)
GET /api/auth/providers 200 in 17ms (next.js: 5ms, application-code: 11ms)
GET /api/auth/providers 200 in 26ms (next.js: 14ms, application-code: 12ms)
GET /api/auth/csrf 200 in 17ms (next.js: 6ms, application-code: 10ms)
POST /api/auth/signin/google?scope=openid+email+profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fgmail.readonly+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcalendar.readonly&prompt=consent&access_type=offline&response_type=code&include_granted_scopes=true 200 in 369ms (next.js: 4ms, application-code: 365ms)
{"ts":"2026-04-17T18:55:55.901Z","level":"info","event":"auth.gmail_mailbox_linked","userId":"cmo33pggw0000f8hgbz8i0pu6","mailboxId":"cmo35594y00009ohgb5csr4ni","provider":"gmail","hasPriorSync":false}
GET /api/auth/callback/google?state=-ydiwIPgxw4wNA1jq4-xQ2JWv5DxmZKcnZmuZpFjAE4&iss=https://accounts.google.com&code=4/0Aci98E8eSdV0qaPpBO831HqsHy-Ox0wcdjE8rPL3wf84M2kGxX0MKIKxYlDZoP9tw0Ll0g&scope=email%20profile%20https://www.googleapis.com/auth/gmail.readonly%20https://www.googleapis.com/auth/calendar.readonly%20https://www.googleapis.com/auth/userinfo.profile%20https://www.googleapis.com/auth/userinfo.email%20openid&authuser=0&prompt=consent 302 in 956ms (next.js: 17ms, application-code: 940ms)
GET /dashboard 200 in 140ms (next.js: 51ms, application-code: 89ms)
GET /api/dashboard/stats 200 in 49ms (next.js: 16ms, application-code: 33ms)
GET /api/hackathons 200 in 54ms (next.js: 21ms, application-code: 33ms)
GET /api/events/timeline?days=14 200 in 55ms (next.js: 22ms, application-code: 33ms)
GET /api/gmail/mailboxes 200 in 62ms (next.js: 28ms, application-code: 34ms)
GET /api/auth/session 200 in 36ms (next.js: 16ms, application-code: 20ms)
{"ts":"2026-04-17T18:55:58.232Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":true}
{"ts":"2026-04-17T18:55:58.234Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
{"ts":"2026-04-17T18:55:58.279Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 15ms (next.js: 4ms, application-code: 11ms)
GET /team-finder 200 in 65ms (next.js: 25ms, application-code: 40ms)
{"ts":"2026-04-17T18:55:59.747Z","level":"error","event":"gmail.retry.failed_attempt","error":{"name":"Error","message"
:"Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","stack":"Error:
Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
Gaxios._request (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:6465:23)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async OAuth2Client.requestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_google-auth-library_0em-niu._.js:1401:20)\n at
async createAPIRequestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:12381:25)\n at async
withRetry (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1098:20)\n at
async syncMailboxWithMessages
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1888:22)\n at async
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1977:16)\n
at async POST (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2304:24)\n
at async AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"oper
ation":"gmail.users.messages.list","attempt":1,"maxAttempts":3,"retryable":false,"userId":"cmo33pggw0000f8hgbz8i0pu6","
mode":"bootstrap"}
{"ts":"2026-04-17T18:55:59.766Z","level":"error","event":"gmail.sync.failed","error":{"name":"Error","message":"Gmail
API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","stack":"Error:
Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
Gaxios._request (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:6465:23)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async OAuth2Client.requestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_google-auth-library_0em-niu._.js:1401:20)\n at
async createAPIRequestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:12381:25)\n at async
withRetry (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1098:20)\n at
async syncMailboxWithMessages
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1888:22)\n at async
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1977:16)\n
at async POST (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2304:24)\n
at async AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"user
Id":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":true}
POST /api/gmail/sync 400 in 3.3s (next.js: 1687ms, application-code: 1564ms)
GET /my-hackathons 200 in 51ms (next.js: 5ms, application-code: 46ms)
{"ts":"2026-04-17T18:56:00.760Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 43ms (next.js: 10ms, application-code: 33ms)
GET /api/hackathons 200 in 47ms (next.js: 17ms, application-code: 30ms)
GET /api/gmail/mailboxes 200 in 52ms (next.js: 25ms, application-code: 27ms)
{"ts":"2026-04-17T18:56:02.724Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
{"ts":"2026-04-17T18:56:02.725Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
{"ts":"2026-04-17T18:56:03.535Z","level":"error","event":"gmail.retry.failed_attempt","error":{"name":"Error","message"
:"Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","stack":"Error:
Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
Gaxios._request (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:6465:23)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async OAuth2Client.requestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_google-auth-library_0em-niu._.js:1401:20)\n at
async createAPIRequestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:12381:25)\n at async
withRetry (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1098:20)\n at
async syncMailboxWithMessages
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1888:22)\n at async
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1977:16)\n
at async POST (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2304:24)\n
at async AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"oper
ation":"gmail.users.messages.list","attempt":1,"maxAttempts":3,"retryable":false,"userId":"cmo33pggw0000f8hgbz8i0pu6","
mode":"bootstrap"}
{"ts":"2026-04-17T18:56:03.538Z","level":"error","event":"gmail.sync.failed","error":{"name":"Error","message":"Gmail
API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","stack":"Error:
Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
Gaxios._request (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:6465:23)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async OAuth2Client.requestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_google-auth-library_0em-niu._.js:1401:20)\n at
async createAPIRequestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:12381:25)\n at async
withRetry (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1098:20)\n at
async syncMailboxWithMessages
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1888:22)\n at async
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1977:16)\n
at async POST (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2304:24)\n
at async AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"user
Id":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
POST /api/gmail/sync 400 in 834ms (next.js: 5ms, application-code: 828ms)
GET /api/hackathons 200 in 89ms (next.js: 20ms, application-code: 69ms)
GET /api/gmail/mailboxes 200 in 133ms (next.js: 37ms, application-code: 96ms)
{"ts":"2026-04-17T18:57:54.987Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 143ms (next.js: 57ms, application-code: 86ms)
GET /api/auth/session 200 in 84ms (next.js: 36ms, application-code: 48ms)
GET /settings 200 in 127ms (next.js: 67ms, application-code: 60ms)
{"ts":"2026-04-17T18:57:57.231Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 49ms (next.js: 14ms, application-code: 35ms)
GET /api/gmail/mailboxes 200 in 53ms (next.js: 20ms, application-code: 34ms)
GET /api/integrations/activity 200 in 359ms (next.js: 340ms, application-code: 19ms)
GET /api/extension/devices 200 in 438ms (next.js: 424ms, application-code: 14ms)
GET /leaderboard 200 in 107ms (next.js: 59ms, application-code: 48ms)
{"ts":"2026-04-17T18:58:06.525Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 36ms (next.js: 6ms, application-code: 30ms)
GET /portfolio 200 in 124ms (next.js: 79ms, application-code: 46ms)
GET /api/portfolio/profiles 200 in 79ms (next.js: 55ms, application-code: 23ms)
GET /ai 200 in 96ms (next.js: 43ms, application-code: 53ms)
{"ts":"2026-04-17T18:58:09.371Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 33ms (next.js: 7ms, application-code: 26ms)
GET /team-finder 200 in 101ms (next.js: 12ms, application-code: 89ms)
GET /my-hackathons 200 in 42ms (next.js: 6ms, application-code: 36ms)
{"ts":"2026-04-17T18:58:11.782Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 36ms (next.js: 17ms, application-code: 19ms)
GET /api/hackathons 200 in 38ms (next.js: 15ms, application-code: 24ms)
GET /api/gmail/mailboxes 200 in 43ms (next.js: 21ms, application-code: 22ms)
GET /find-hackathons 200 in 113ms (next.js: 65ms, application-code: 48ms)
GET /api/listings/match 200 in 93ms (next.js: 62ms, application-code: 31ms)
GET /dashboard 200 in 48ms (next.js: 7ms, application-code: 41ms)
{"ts":"2026-04-17T18:58:14.050Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 55ms (next.js: 7ms, application-code: 47ms)
GET /api/dashboard/stats 200 in 61ms (next.js: 12ms, application-code: 49ms)
GET /api/hackathons 200 in 66ms (next.js: 18ms, application-code: 48ms)
GET /api/events/timeline?days=14 200 in 72ms (next.js: 25ms, application-code: 47ms)
GET /api/gmail/mailboxes 200 in 78ms (next.js: 32ms, application-code: 46ms)
{"ts":"2026-04-17T18:58:14.147Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":true}
{"ts":"2026-04-17T18:58:14.149Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
{"ts":"2026-04-17T18:58:14.875Z","level":"error","event":"gmail.retry.failed_attempt","error":{"name":"Error","message"
:"Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","stack":"Error:
Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
Gaxios._request (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:6465:23)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async OAuth2Client.requestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_google-auth-library_0em-niu._.js:1401:20)\n at
async createAPIRequestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:12381:25)\n at async
withRetry (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1098:20)\n at
async syncMailboxWithMessages
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1888:22)\n at async
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1977:16)\n
at async POST (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2304:24)\n
at async AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"oper
ation":"gmail.users.messages.list","attempt":1,"maxAttempts":3,"retryable":false,"userId":"cmo33pggw0000f8hgbz8i0pu6","
mode":"bootstrap"}
{"ts":"2026-04-17T18:58:14.879Z","level":"error","event":"gmail.sync.failed","error":{"name":"Error","message":"Gmail
API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","stack":"Error:
Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
Gaxios._request (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:6465:23)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async OAuth2Client.requestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_google-auth-library_0em-niu._.js:1401:20)\n at
async createAPIRequestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:12381:25)\n at async
withRetry (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1098:20)\n at
async syncMailboxWithMessages
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1888:22)\n at async
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1977:16)\n
at async POST (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2304:24)\n
at async AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"user
Id":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":true}
POST /api/gmail/sync 400 in 817ms (next.js: 39ms, application-code: 778ms)
GET /api/dashboard/stats 200 in 72ms (next.js: 12ms, application-code: 60ms)
GET /api/hackathons 200 in 81ms (next.js: 29ms, application-code: 52ms)
GET /api/events/timeline?days=14 200 in 92ms (next.js: 40ms, application-code: 52ms)
GET /api/gmail/mailboxes 200 in 101ms (next.js: 49ms, application-code: 52ms)
GET /api/dashboard/stats 200 in 198ms (next.js: 47ms, application-code: 151ms)
GET /api/hackathons 200 in 243ms (next.js: 63ms, application-code: 180ms)
GET /api/events/timeline?days=14 200 in 239ms (next.js: 69ms, application-code: 169ms)
GET /api/gmail/mailboxes 200 in 249ms (next.js: 95ms, application-code: 154ms)
{"ts":"2026-04-17T18:58:33.661Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 258ms (next.js: 111ms, application-code: 147ms)
GET /api/auth/session 200 in 144ms (next.js: 65ms, application-code: 78ms)
GET /api/dashboard/stats 200 in 50ms (next.js: 9ms, application-code: 42ms)
GET /api/hackathons 200 in 52ms (next.js: 15ms, application-code: 37ms)
GET /api/events/timeline?days=14 200 in 73ms (next.js: 19ms, application-code: 54ms)
GET /api/gmail/mailboxes 200 in 68ms (next.js: 16ms, application-code: 52ms)
{"ts":"2026-04-17T18:58:45.849Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 72ms (next.js: 22ms, application-code: 51ms)
GET /api/auth/session 200 in 47ms (next.js: 21ms, application-code: 26ms)
GET / 500 in 791ms (next.js: 342ms, application-code: 449ms)
[browser] Uncaught Error: ./src/components/hackathons/MyHackathonsClient.tsx:84:1
'import', and 'export' cannot be used outside of module code
82 | };
83 |
> 84 | export function MyHackathonsClient({ userId }: { userId: string }) {
| ^^^^^^
85 | const { data, mutate } = useSWR<HackathonsResponse>("/api/hackathons", fetcher, { refres...
86 | const { data: mailboxesData, mutate: mutateMailboxes } = useSWR<MailboxesResponse>("/api...
87 |
Parsing ecmascript source code failed
Import trace:
Server Component:
./src/components/hackathons/MyHackathonsClient.tsx
./src/app/my-hackathons/page.tsx
at <unknown> (Error: ./src/components/hackathons/MyHackathonsClient.tsx:84:1)
at <unknown> (Error: (./src/components/hackathons/MyHackathonsClient.tsx:84:1)
[browser] ./src/components/hackathons/MyHackathonsClient.tsx:84:1
'import', and 'export' cannot be used outside of module code
82 | };
83 |
> 84 | export function MyHackathonsClient({ userId }: { userId: string }) {
| ^^^^^^
85 | const { data, mutate } = useSWR<HackathonsResponse>("/api/hackathons", fetcher, { refres...
86 | const { data: mailboxesData, mutate: mutateMailboxes } = useSWR<MailboxesResponse>("/api...
87 |
Parsing ecmascript source code failed
Import trace:
Server Component:
./src/components/hackathons/MyHackathonsClient.tsx
./src/app/my-hackathons/page.tsx
[browser] ./src/components/hackathons/MyHackathonsClient.tsx:84:1
'import', and 'export' cannot be used outside of module code
82 | };
83 |
> 84 | export function MyHackathonsClient({ userId }: { userId: string }) {
| ^^^^^^
85 | const { data, mutate } = useSWR<HackathonsResponse>("/api/hackathons", fetcher, { refres...
86 | const { data: mailboxesData, mutate: mutateMailboxes } = useSWR<MailboxesResponse>("/api...
87 |
Parsing ecmascript source code failed
Import trace:
Server Component:
./src/components/hackathons/MyHackathonsClient.tsx
./src/app/my-hackathons/page.tsx
[browser] ./src/components/hackathons/MyHackathonsClient.tsx:84:1
'import', and 'export' cannot be used outside of module code
82 | };
83 |
> 84 | export function MyHackathonsClient({ userId }: { userId: string }) {
| ^^^^^^
85 | const { data, mutate } = useSWR<HackathonsResponse>("/api/hackathons", fetcher, { refres...
86 | const { data: mailboxesData, mutate: mutateMailboxes } = useSWR<MailboxesResponse>("/api...
87 |
Parsing ecmascript source code failed
Import trace:
Server Component:
./src/components/hackathons/MyHackathonsClient.tsx
./src/app/my-hackathons/page.tsx
Γ£ô Compiled in 87ms
GET / 200 in 81ms (next.js: 6ms, application-code: 74ms)
GET /api/auth/session 200 in 201ms (next.js: 166ms, application-code: 34ms)
GET /api/auth/session 200 in 38ms (next.js: 17ms, application-code: 21ms)
GET /signup 200 in 57ms (next.js: 32ms, application-code: 25ms)
GET /api/auth/providers 200 in 29ms (next.js: 18ms, application-code: 11ms)
GET /api/auth/providers 200 in 16ms (next.js: 4ms, application-code: 12ms)
GET /api/auth/providers 200 in 24ms (next.js: 11ms, application-code: 13ms)
GET /api/auth/csrf 200 in 11ms (next.js: 3ms, application-code: 7ms)
POST /api/auth/signin/google?scope=openid+email+profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fgmail.readonly+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcalendar.readonly&prompt=consent&access_type=offline&response_type=code&include_granted_scopes=true 200 in 437ms (next.js: 3ms, application-code: 434ms)
{"ts":"2026-04-17T19:08:18.609Z","level":"info","event":"auth.gmail_mailbox_linked","userId":"cmo33pggw0000f8hgbz8i0pu6","mailboxId":"cmo35594y00009ohgb5csr4ni","provider":"gmail","hasPriorSync":false}
GET /api/auth/callback/google?state=vBS_NJV8AwwzLatlqVqq0xcF7-JrN693Yx3K_ZVpuCM&iss=https://accounts.google.com&code=4/0Aci98E-Ffx09-FsBPb4bPWg8o2UVcbmNo6m0r2f3NPHc46NqwYGBhPuDZundrPFAftMnog&scope=email%20profile%20https://www.googleapis.com/auth/gmail.readonly%20https://www.googleapis.com/auth/calendar.readonly%20https://www.googleapis.com/auth/userinfo.profile%20https://www.googleapis.com/auth/userinfo.email%20openid&authuser=0&prompt=consent 302 in 475ms (next.js: 19ms, application-code: 456ms)
GET /dashboard 200 in 566ms (next.js: 176ms, application-code: 390ms)
GET /api/dashboard/stats 200 in 224ms (next.js: 48ms, application-code: 176ms)
GET /api/hackathons 200 in 229ms (next.js: 96ms, application-code: 133ms)
GET /api/events/timeline?days=14 200 in 235ms (next.js: 141ms, application-code: 94ms)
GET /api/gmail/mailboxes 200 in 240ms (next.js: 207ms, application-code: 33ms)
GET /api/auth/session 200 in 27ms (next.js: 14ms, application-code: 13ms)
{"ts":"2026-04-17T19:08:21.659Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":true}
{"ts":"2026-04-17T19:08:21.663Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
{"ts":"2026-04-17T19:08:21.866Z","level":"info","event":"notifications.list","userId":"cmo33pggw0000f8hgbz8i0pu6","count":0}
GET /api/notifications 200 in 166ms (next.js: 136ms, application-code: 30ms)
GET /my-hackathons 200 in 250ms (next.js: 158ms, application-code: 93ms)
GET /api/hackathons 200 in 39ms (next.js: 6ms, application-code: 33ms)
GET /api/gmail/mailboxes 200 in 35ms (next.js: 8ms, application-code: 28ms)
{"ts":"2026-04-17T19:08:23.296Z","level":"error","event":"gmail.retry.failed_attempt","error":{"name":"Error","message"
:"Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","stack":"Error:
Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
Gaxios._request (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:6465:23)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async OAuth2Client.requestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_google-auth-library_0em-niu._.js:1401:20)\n at
async createAPIRequestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:12381:25)\n at async
withRetry (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1137:20)\n at
async listBootstrapMessageIds
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1202:22)\n at async
syncMailboxWithMessages
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1968:22)\n at async
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2049:16)\n
at async POST (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2378:24)\n
at async AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"oper
ation":"gmail.users.messages.list","attempt":1,"maxAttempts":3,"retryable":false,"userId":"cmo33pggw0000f8hgbz8i0pu6","
mode":"bootstrap","pageToken":null}
{"ts":"2026-04-17T19:08:23.304Z","level":"error","event":"gmail.sync.failed","error":{"name":"AppError","message":"Gmai
l API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and
retry.","stack":"AppError: Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by
visiting https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry.
If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
normalizeGmailApiError
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1108:16)\n at
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2055:33)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async POST
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2378:24)\n at async
AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async
AppRouteRouteModule.handleResponse
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:1:227216)\n
at async handleResponse
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13698:32)\n at async
Module.handler (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13752:13)\n at
async DevServer.renderToResponseWithComponentsImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1454:9)\n at async
DevServer.renderPageComponent (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1506:24)\n
at async DevServer.renderToResponseImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1556:32)\n at async DevServer.pipeImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:1043:25)\n at async
NextNodeServer.handleCatchallRenderRequest
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\next-server.js:338:17)\n at async
DevServer.handleRequestImpl (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\base-server.js:934:17)\n at
async D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:394:20\n at async
Span.traceAsyncFn (D:\\projects\\hacktrack\\node_modules\\next\\dist\\trace\\trace.js:164:20)\n at async
DevServer.handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\dev\\next-dev-server.js:390:24)\n
at async invokeRender (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:266:21)\n
at async handleRequest (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:465:24)\n
at async requestHandlerImpl
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\router-server.js:514:13)\n at async
Server.requestListener (D:\\projects\\hacktrack\\node_modules\\next\\dist\\server\\lib\\start-server.js:225:13)"},"user
Id":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":true}
{"ts":"2026-04-17T19:08:23.305Z","level":"info","event":"gmail.sync.mock_fallback","userId":"cmo33pggw0000f8hgbz8i0pu6"}
Γ¿» Error [PrismaClientKnownRequestError]:
Invalid `{imported module ./src/lib/prisma.ts}["prisma"].hackathon.create()` invocation in
D:\projects\hacktrack\.next\dev\server\chunks\[root-of-the-server]__0wj9_00._.js:2415:178
2412 dueNextWeek.setDate(dueNextWeek.getDate() + 7);
2413 const dueIn3Days = new Date();
2414 dueIn3Days.setDate(dueIn3Days.getDate() + 3);
→ 2415 await {imported module ./src/lib/prisma.ts}["prisma"].hackathon.create(
Foreign key constraint violated on the foreign key
at <unknown> (src\app\api\gmail\sync\route.ts:99:32)
at async POST (src\app\api\gmail\sync\route.ts:99:9)
97 | const dueIn3Days = new Date(); dueIn3Days.setDate(dueIn3Days.getDate() + 3);
98 |
> 99 | await prisma.hackathon.create({
| ^
100 | data: {
101 | userId, title: "Stanford TreeHacks 2026", platform: "devpost", status: "accep...
102 | events: { create: { userId, type: "accepted", source: "gmail", sourceEmailId:... {
code: 'P2003',
meta: {
modelName: 'Hackathon',
driverAdapterError: Error [DriverAdapterError]: ForeignKeyConstraintViolation
at async POST (src\app\api\gmail\sync\route.ts:99:9)
97 | const dueIn3Days = new Date(); dueIn3Days.setDate(dueIn3Days.getDate() + 3);
98 |
> 99 | await prisma.hackathon.create({
| ^
100 | data: {
101 | userId, title: "Stanford TreeHacks 2026", platform: "devpost", status: "accep...
102 | events: { create: { userId, type: "accepted", source: "gmail", sourceEmailId:... {
[cause]: [Object]
}
},
clientVersion: '7.7.0'
}
POST /api/gmail/sync 500 in 4.0s (next.js: 1890ms, application-code: 2.1s)
GET /api/hackathons 200 in 24ms (next.js: 6ms, application-code: 18ms)
GET /api/gmail/mailboxes 200 in 28ms (next.js: 11ms, application-code: 16ms)
{"ts":"2026-04-17T19:08:24.686Z","level":"info","event":"gmail.sync.request","userId":"cmo33pggw0000f8hgbz8i0pu6","bootstrap":false}
{"ts":"2026-04-17T19:08:24.686Z","level":"info","event":"gmail.sync.started","userId":"cmo33pggw0000f8hgbz8i0pu6","mode":"bootstrap"}
{"ts":"2026-04-17T19:08:25.550Z","level":"error","event":"gmail.retry.failed_attempt","error":{"name":"Error","message"
:"Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.","stack":"Error:
Gmail API has not been used in project 733623566966 before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/gmail.googleapis.com/overview?project=733623566966 then retry. If you
enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\n at
Gaxios._request (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:6465:23)\n
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async OAuth2Client.requestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_google-auth-library_0em-niu._.js:1401:20)\n at
async createAPIRequestAsync
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__08ikfzb._.js:12381:25)\n at async
withRetry (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1137:20)\n at
async listBootstrapMessageIds
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1202:22)\n at async
syncMailboxWithMessages
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:1968:22)\n at async
gmailBootstrapSync (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2049:16)\n
at async POST (D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\[root-of-the-server]__0wj9_00._.js:2378:24)\n
at async AppRouteRouteModule.do
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:40115)\n
at async AppRouteRouteModule.handle
(D:\\projects\\hacktrack\\node_modules\\next\\dist\\compiled\\next-server\\app-route-turbo.runtime.dev.js:5:47321)\n
at async responseGenerator
(D:\\projects\\hacktrack\\.next\\dev\\server\\chunks\\node_modules_next_01lws4j._.js:13635:38)\n at async