-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamples.json
More file actions
3576 lines (3576 loc) · 192 KB
/
samples.json
File metadata and controls
3576 lines (3576 loc) · 192 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
[
{
"action": "reopened",
"issue": {
"url": "https://api.github.com/repos/malilbot/malil/issues/12",
"repository_url": "https://api.github.com/repos/malilbot/malil",
"labels_url": "https://api.github.com/repos/malilbot/malil/issues/12/labels{/name}",
"comments_url": "https://api.github.com/repos/malilbot/malil/issues/12/comments",
"events_url": "https://api.github.com/repos/malilbot/malil/issues/12/events",
"html_url": "https://github.com/malilbot/malil/issues/12",
"id": 958549890,
"node_id": "MDU6SXNzdWU5NTg1NDk4OTA=",
"number": 12,
"title": "Error: Location:",
"user": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
},
"labels": [],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 7,
"created_at": "2021-08-02T22:15:53Z",
"updated_at": "2021-08-03T10:35:21Z",
"closed_at": null,
"author_association": "CONTRIBUTOR",
"active_lock_reason": null,
"body": "Error: Location:\n```js\nError: Location:\n at Object.runMethod (https://deno.land/x/discordeno@12.0.1/src/rest/run_method.ts:36:9)\n at startThread (https://deno.land/x/discordeno@12.0.1/src/helpers/channels/threads/start_thread.ts:23:16)\n at async Thread.exec (file:///home/tricked/malil/src/listeners/client/threadSupport.ts:36:84)\n at async MalilClient.<anonymous> (https://raw.githubusercontent.com/naticoo/framework/c68afc795f688ff9ebb56745e9897d84069cefa6/src/struct/listeners/ListenerHandler.ts:35:12)\n```\n\n\n# Extra Data\n\ntask-name: ThreadSupport\n",
"performed_via_github_app": null
},
"repository": {
"id": 382708838,
"node_id": "MDEwOlJlcG9zaXRvcnkzODI3MDg4Mzg=",
"name": "malil",
"full_name": "malilbot/malil",
"private": true,
"owner": {
"login": "malilbot",
"id": 82720042,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjgyNzIwMDQy",
"avatar_url": "https://avatars.githubusercontent.com/u/82720042?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/malilbot",
"html_url": "https://github.com/malilbot",
"followers_url": "https://api.github.com/users/malilbot/followers",
"following_url": "https://api.github.com/users/malilbot/following{/other_user}",
"gists_url": "https://api.github.com/users/malilbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/malilbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/malilbot/subscriptions",
"organizations_url": "https://api.github.com/users/malilbot/orgs",
"repos_url": "https://api.github.com/users/malilbot/repos",
"events_url": "https://api.github.com/users/malilbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/malilbot/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/malilbot/malil",
"description": "Malil's secret codebase",
"fork": false,
"url": "https://api.github.com/repos/malilbot/malil",
"forks_url": "https://api.github.com/repos/malilbot/malil/forks",
"keys_url": "https://api.github.com/repos/malilbot/malil/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/malilbot/malil/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/malilbot/malil/teams",
"hooks_url": "https://api.github.com/repos/malilbot/malil/hooks",
"issue_events_url": "https://api.github.com/repos/malilbot/malil/issues/events{/number}",
"events_url": "https://api.github.com/repos/malilbot/malil/events",
"assignees_url": "https://api.github.com/repos/malilbot/malil/assignees{/user}",
"branches_url": "https://api.github.com/repos/malilbot/malil/branches{/branch}",
"tags_url": "https://api.github.com/repos/malilbot/malil/tags",
"blobs_url": "https://api.github.com/repos/malilbot/malil/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/malilbot/malil/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/malilbot/malil/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/malilbot/malil/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/malilbot/malil/statuses/{sha}",
"languages_url": "https://api.github.com/repos/malilbot/malil/languages",
"stargazers_url": "https://api.github.com/repos/malilbot/malil/stargazers",
"contributors_url": "https://api.github.com/repos/malilbot/malil/contributors",
"subscribers_url": "https://api.github.com/repos/malilbot/malil/subscribers",
"subscription_url": "https://api.github.com/repos/malilbot/malil/subscription",
"commits_url": "https://api.github.com/repos/malilbot/malil/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/malilbot/malil/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/malilbot/malil/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/malilbot/malil/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/malilbot/malil/contents/{+path}",
"compare_url": "https://api.github.com/repos/malilbot/malil/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/malilbot/malil/merges",
"archive_url": "https://api.github.com/repos/malilbot/malil/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/malilbot/malil/downloads",
"issues_url": "https://api.github.com/repos/malilbot/malil/issues{/number}",
"pulls_url": "https://api.github.com/repos/malilbot/malil/pulls{/number}",
"milestones_url": "https://api.github.com/repos/malilbot/malil/milestones{/number}",
"notifications_url": "https://api.github.com/repos/malilbot/malil/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/malilbot/malil/labels{/name}",
"releases_url": "https://api.github.com/repos/malilbot/malil/releases{/id}",
"deployments_url": "https://api.github.com/repos/malilbot/malil/deployments",
"created_at": "2021-07-03T21:02:05Z",
"updated_at": "2021-08-03T10:33:39Z",
"pushed_at": "2021-08-03T10:33:37Z",
"git_url": "git://github.com/malilbot/malil.git",
"ssh_url": "git@github.com:malilbot/malil.git",
"clone_url": "https://github.com/malilbot/malil.git",
"svn_url": "https://github.com/malilbot/malil",
"homepage": "",
"size": 736,
"stargazers_count": 3,
"watchers_count": 3,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 1,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 0,
"open_issues": 1,
"watchers": 3,
"default_branch": "main"
},
"organization": {
"login": "malilbot",
"id": 82720042,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjgyNzIwMDQy",
"url": "https://api.github.com/orgs/malilbot",
"repos_url": "https://api.github.com/orgs/malilbot/repos",
"events_url": "https://api.github.com/orgs/malilbot/events",
"hooks_url": "https://api.github.com/orgs/malilbot/hooks",
"issues_url": "https://api.github.com/orgs/malilbot/issues",
"members_url": "https://api.github.com/orgs/malilbot/members{/member}",
"public_members_url": "https://api.github.com/orgs/malilbot/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/82720042?v=4",
"description": "Home of the discord bot malil"
},
"sender": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
}
},
{
"action": "closed",
"issue": {
"url": "https://api.github.com/repos/malilbot/malil/issues/12",
"repository_url": "https://api.github.com/repos/malilbot/malil",
"labels_url": "https://api.github.com/repos/malilbot/malil/issues/12/labels{/name}",
"comments_url": "https://api.github.com/repos/malilbot/malil/issues/12/comments",
"events_url": "https://api.github.com/repos/malilbot/malil/issues/12/events",
"html_url": "https://github.com/malilbot/malil/issues/12",
"id": 958549890,
"node_id": "MDU6SXNzdWU5NTg1NDk4OTA=",
"number": 12,
"title": "Error: Location:",
"user": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
},
"labels": [],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 7,
"created_at": "2021-08-02T22:15:53Z",
"updated_at": "2021-08-03T10:33:16Z",
"closed_at": "2021-08-03T10:33:16Z",
"author_association": "CONTRIBUTOR",
"active_lock_reason": null,
"body": "Error: Location:\n```js\nError: Location:\n at Object.runMethod (https://deno.land/x/discordeno@12.0.1/src/rest/run_method.ts:36:9)\n at startThread (https://deno.land/x/discordeno@12.0.1/src/helpers/channels/threads/start_thread.ts:23:16)\n at async Thread.exec (file:///home/tricked/malil/src/listeners/client/threadSupport.ts:36:84)\n at async MalilClient.<anonymous> (https://raw.githubusercontent.com/naticoo/framework/c68afc795f688ff9ebb56745e9897d84069cefa6/src/struct/listeners/ListenerHandler.ts:35:12)\n```\n\n\n# Extra Data\n\ntask-name: ThreadSupport\n",
"performed_via_github_app": null
},
"repository": {
"id": 382708838,
"node_id": "MDEwOlJlcG9zaXRvcnkzODI3MDg4Mzg=",
"name": "malil",
"full_name": "malilbot/malil",
"private": true,
"owner": {
"login": "malilbot",
"id": 82720042,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjgyNzIwMDQy",
"avatar_url": "https://avatars.githubusercontent.com/u/82720042?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/malilbot",
"html_url": "https://github.com/malilbot",
"followers_url": "https://api.github.com/users/malilbot/followers",
"following_url": "https://api.github.com/users/malilbot/following{/other_user}",
"gists_url": "https://api.github.com/users/malilbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/malilbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/malilbot/subscriptions",
"organizations_url": "https://api.github.com/users/malilbot/orgs",
"repos_url": "https://api.github.com/users/malilbot/repos",
"events_url": "https://api.github.com/users/malilbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/malilbot/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/malilbot/malil",
"description": "Malil's secret codebase",
"fork": false,
"url": "https://api.github.com/repos/malilbot/malil",
"forks_url": "https://api.github.com/repos/malilbot/malil/forks",
"keys_url": "https://api.github.com/repos/malilbot/malil/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/malilbot/malil/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/malilbot/malil/teams",
"hooks_url": "https://api.github.com/repos/malilbot/malil/hooks",
"issue_events_url": "https://api.github.com/repos/malilbot/malil/issues/events{/number}",
"events_url": "https://api.github.com/repos/malilbot/malil/events",
"assignees_url": "https://api.github.com/repos/malilbot/malil/assignees{/user}",
"branches_url": "https://api.github.com/repos/malilbot/malil/branches{/branch}",
"tags_url": "https://api.github.com/repos/malilbot/malil/tags",
"blobs_url": "https://api.github.com/repos/malilbot/malil/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/malilbot/malil/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/malilbot/malil/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/malilbot/malil/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/malilbot/malil/statuses/{sha}",
"languages_url": "https://api.github.com/repos/malilbot/malil/languages",
"stargazers_url": "https://api.github.com/repos/malilbot/malil/stargazers",
"contributors_url": "https://api.github.com/repos/malilbot/malil/contributors",
"subscribers_url": "https://api.github.com/repos/malilbot/malil/subscribers",
"subscription_url": "https://api.github.com/repos/malilbot/malil/subscription",
"commits_url": "https://api.github.com/repos/malilbot/malil/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/malilbot/malil/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/malilbot/malil/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/malilbot/malil/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/malilbot/malil/contents/{+path}",
"compare_url": "https://api.github.com/repos/malilbot/malil/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/malilbot/malil/merges",
"archive_url": "https://api.github.com/repos/malilbot/malil/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/malilbot/malil/downloads",
"issues_url": "https://api.github.com/repos/malilbot/malil/issues{/number}",
"pulls_url": "https://api.github.com/repos/malilbot/malil/pulls{/number}",
"milestones_url": "https://api.github.com/repos/malilbot/malil/milestones{/number}",
"notifications_url": "https://api.github.com/repos/malilbot/malil/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/malilbot/malil/labels{/name}",
"releases_url": "https://api.github.com/repos/malilbot/malil/releases{/id}",
"deployments_url": "https://api.github.com/repos/malilbot/malil/deployments",
"created_at": "2021-07-03T21:02:05Z",
"updated_at": "2021-08-02T17:57:44Z",
"pushed_at": "2021-08-02T17:57:41Z",
"git_url": "git://github.com/malilbot/malil.git",
"ssh_url": "git@github.com:malilbot/malil.git",
"clone_url": "https://github.com/malilbot/malil.git",
"svn_url": "https://github.com/malilbot/malil",
"homepage": "",
"size": 736,
"stargazers_count": 3,
"watchers_count": 3,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 0,
"open_issues": 0,
"watchers": 3,
"default_branch": "main"
},
"organization": {
"login": "malilbot",
"id": 82720042,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjgyNzIwMDQy",
"url": "https://api.github.com/orgs/malilbot",
"repos_url": "https://api.github.com/orgs/malilbot/repos",
"events_url": "https://api.github.com/orgs/malilbot/events",
"hooks_url": "https://api.github.com/orgs/malilbot/hooks",
"issues_url": "https://api.github.com/orgs/malilbot/issues",
"members_url": "https://api.github.com/orgs/malilbot/members{/member}",
"public_members_url": "https://api.github.com/orgs/malilbot/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/82720042?v=4",
"description": "Home of the discord bot malil"
},
"sender": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
}
},
{
"action": "created",
"issue": {
"url": "https://api.github.com/repos/malilbot/malil/issues/11",
"repository_url": "https://api.github.com/repos/malilbot/malil",
"labels_url": "https://api.github.com/repos/malilbot/malil/issues/11/labels{/name}",
"comments_url": "https://api.github.com/repos/malilbot/malil/issues/11/comments",
"events_url": "https://api.github.com/repos/malilbot/malil/issues/11/events",
"html_url": "https://github.com/malilbot/malil/issues/11",
"id": 958486163,
"node_id": "MDU6SXNzdWU5NTg0ODYxNjM=",
"number": 11,
"title": "Error: Missing Permissions: SEND_MESSAGES",
"user": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
},
"labels": [],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 1,
"created_at": "2021-08-02T20:33:02Z",
"updated_at": "2021-08-02T20:33:22Z",
"closed_at": null,
"author_association": "CONTRIBUTOR",
"active_lock_reason": null,
"body": "Error: Missing Permissions: SEND_MESSAGES\n```js\nError: Missing Permissions: SEND_MESSAGES\n at requireChannelPermissions (https://deno.land/x/discordeno@12.0.1/src/util/permissions.ts:214:11)\n at async sendMessage (https://deno.land/x/discordeno@12.0.1/src/helpers/messages/send_message.ts:44:6)\n at async MalilCommandUtil.send (file:///home/tricked/malil/src/lib/extensions/natico/MalilCommandUtil.ts:147:15)\n at async MalilCommandHandler.execCommand (file:///home/tricked/malil/src/lib/classes/malilCommandHandler.ts:528:16)\n at async MalilCommandHandler.runCommand (file:///home/tricked/malil/src/lib/classes/malilCommandHandler.ts:440:112)\n at async MalilCommandHandler.prefixCheck (file:///home/tricked/malil/src/lib/classes/malilCommandHandler.ts:249:96)\n at async MalilCommandHandler.handleCommand (file:///home/tricked/malil/src/lib/classes/malilCommandHandler.ts:229:9)\n```\n\n\n# Extra Data\n\ncommand: eval\ncontent: <@!749020331187896410> eval\n",
"performed_via_github_app": null
},
"comment": {
"url": "https://api.github.com/repos/malilbot/malil/issues/comments/891314244",
"html_url": "https://github.com/malilbot/malil/issues/11#issuecomment-891314244",
"issue_url": "https://api.github.com/repos/malilbot/malil/issues/11",
"id": 891314244,
"node_id": "IC_kwDOFs-sZs41IGBE",
"user": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2021-08-02T20:33:21Z",
"updated_at": "2021-08-02T20:33:21Z",
"author_association": "CONTRIBUTOR",
"body": "Error: Missing Permissions: SEND_MESSAGES\n```js\nError: Missing Permissions: SEND_MESSAGES\n at requireChannelPermissions (https://deno.land/x/discordeno@12.0.1/src/util/permissions.ts:214:11)\n at async sendMessage (https://deno.land/x/discordeno@12.0.1/src/helpers/messages/send_message.ts:44:6)\n at async MalilCommandUtil.send (file:///home/tricked/malil/src/lib/extensions/natico/MalilCommandUtil.ts:147:15)\n at async MalilCommandHandler.execCommand (file:///home/tricked/malil/src/lib/classes/malilCommandHandler.ts:528:16)\n at async MalilCommandHandler.runCommand (file:///home/tricked/malil/src/lib/classes/malilCommandHandler.ts:440:112)\n at async MalilCommandHandler.prefixCheck (file:///home/tricked/malil/src/lib/classes/malilCommandHandler.ts:249:96)\n at async MalilCommandHandler.handleCommand (file:///home/tricked/malil/src/lib/classes/malilCommandHandler.ts:229:9)\n```\n\n\n# Extra Data\n\ncommand: eval\ncontent: <@!749020331187896410> eval\n",
"performed_via_github_app": null
},
"repository": {
"id": 382708838,
"node_id": "MDEwOlJlcG9zaXRvcnkzODI3MDg4Mzg=",
"name": "malil",
"full_name": "malilbot/malil",
"private": true,
"owner": {
"login": "malilbot",
"id": 82720042,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjgyNzIwMDQy",
"avatar_url": "https://avatars.githubusercontent.com/u/82720042?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/malilbot",
"html_url": "https://github.com/malilbot",
"followers_url": "https://api.github.com/users/malilbot/followers",
"following_url": "https://api.github.com/users/malilbot/following{/other_user}",
"gists_url": "https://api.github.com/users/malilbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/malilbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/malilbot/subscriptions",
"organizations_url": "https://api.github.com/users/malilbot/orgs",
"repos_url": "https://api.github.com/users/malilbot/repos",
"events_url": "https://api.github.com/users/malilbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/malilbot/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/malilbot/malil",
"description": "Malil's secret codebase",
"fork": false,
"url": "https://api.github.com/repos/malilbot/malil",
"forks_url": "https://api.github.com/repos/malilbot/malil/forks",
"keys_url": "https://api.github.com/repos/malilbot/malil/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/malilbot/malil/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/malilbot/malil/teams",
"hooks_url": "https://api.github.com/repos/malilbot/malil/hooks",
"issue_events_url": "https://api.github.com/repos/malilbot/malil/issues/events{/number}",
"events_url": "https://api.github.com/repos/malilbot/malil/events",
"assignees_url": "https://api.github.com/repos/malilbot/malil/assignees{/user}",
"branches_url": "https://api.github.com/repos/malilbot/malil/branches{/branch}",
"tags_url": "https://api.github.com/repos/malilbot/malil/tags",
"blobs_url": "https://api.github.com/repos/malilbot/malil/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/malilbot/malil/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/malilbot/malil/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/malilbot/malil/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/malilbot/malil/statuses/{sha}",
"languages_url": "https://api.github.com/repos/malilbot/malil/languages",
"stargazers_url": "https://api.github.com/repos/malilbot/malil/stargazers",
"contributors_url": "https://api.github.com/repos/malilbot/malil/contributors",
"subscribers_url": "https://api.github.com/repos/malilbot/malil/subscribers",
"subscription_url": "https://api.github.com/repos/malilbot/malil/subscription",
"commits_url": "https://api.github.com/repos/malilbot/malil/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/malilbot/malil/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/malilbot/malil/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/malilbot/malil/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/malilbot/malil/contents/{+path}",
"compare_url": "https://api.github.com/repos/malilbot/malil/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/malilbot/malil/merges",
"archive_url": "https://api.github.com/repos/malilbot/malil/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/malilbot/malil/downloads",
"issues_url": "https://api.github.com/repos/malilbot/malil/issues{/number}",
"pulls_url": "https://api.github.com/repos/malilbot/malil/pulls{/number}",
"milestones_url": "https://api.github.com/repos/malilbot/malil/milestones{/number}",
"notifications_url": "https://api.github.com/repos/malilbot/malil/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/malilbot/malil/labels{/name}",
"releases_url": "https://api.github.com/repos/malilbot/malil/releases{/id}",
"deployments_url": "https://api.github.com/repos/malilbot/malil/deployments",
"created_at": "2021-07-03T21:02:05Z",
"updated_at": "2021-08-02T17:57:44Z",
"pushed_at": "2021-08-02T17:57:41Z",
"git_url": "git://github.com/malilbot/malil.git",
"ssh_url": "git@github.com:malilbot/malil.git",
"clone_url": "https://github.com/malilbot/malil.git",
"svn_url": "https://github.com/malilbot/malil",
"homepage": "",
"size": 736,
"stargazers_count": 3,
"watchers_count": 3,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 1,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 0,
"open_issues": 1,
"watchers": 3,
"default_branch": "main"
},
"organization": {
"login": "malilbot",
"id": 82720042,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjgyNzIwMDQy",
"url": "https://api.github.com/orgs/malilbot",
"repos_url": "https://api.github.com/orgs/malilbot/repos",
"events_url": "https://api.github.com/orgs/malilbot/events",
"hooks_url": "https://api.github.com/orgs/malilbot/hooks",
"issues_url": "https://api.github.com/orgs/malilbot/issues",
"members_url": "https://api.github.com/orgs/malilbot/members{/member}",
"public_members_url": "https://api.github.com/orgs/malilbot/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/82720042?v=4",
"description": "Home of the discord bot malil"
},
"sender": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
}
},
{
"action": "published",
"release": {
"url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/releases/47150791",
"assets_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/releases/47150791/assets",
"upload_url": "https://uploads.github.com/repos/SkyBlockDev/rustbotshhs/releases/47150791/assets{?name,label}",
"html_url": "https://github.com/SkyBlockDev/rustbotshhs/releases/tag/1.0.0",
"id": 47150791,
"author": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
},
"node_id": "MDc6UmVsZWFzZTQ3MTUwNzkx",
"tag_name": "1.0.0",
"target_commitish": "main",
"name": "1.0.0",
"draft": false,
"prerelease": false,
"created_at": "2021-08-02T08:40:35Z",
"published_at": "2021-08-02T11:03:24Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/tarball/1.0.0",
"zipball_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/zipball/1.0.0",
"body": ""
},
"repository": {
"id": 385738864,
"node_id": "MDEwOlJlcG9zaXRvcnkzODU3Mzg4NjQ=",
"name": "rustbotshhs",
"full_name": "SkyBlockDev/rustbotshhs",
"private": true,
"owner": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/SkyBlockDev/rustbotshhs",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs",
"forks_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/forks",
"keys_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/teams",
"hooks_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/hooks",
"issue_events_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/issues/events{/number}",
"events_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/events",
"assignees_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/assignees{/user}",
"branches_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/branches{/branch}",
"tags_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/tags",
"blobs_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/statuses/{sha}",
"languages_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/languages",
"stargazers_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/stargazers",
"contributors_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/contributors",
"subscribers_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/subscribers",
"subscription_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/subscription",
"commits_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/contents/{+path}",
"compare_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/merges",
"archive_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/downloads",
"issues_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/issues{/number}",
"pulls_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/pulls{/number}",
"milestones_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/milestones{/number}",
"notifications_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/labels{/name}",
"releases_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/releases{/id}",
"deployments_url": "https://api.github.com/repos/SkyBlockDev/rustbotshhs/deployments",
"created_at": "2021-07-13T21:25:13Z",
"updated_at": "2021-08-02T10:42:37Z",
"pushed_at": "2021-08-02T08:40:35Z",
"git_url": "git://github.com/SkyBlockDev/rustbotshhs.git",
"ssh_url": "git@github.com:SkyBlockDev/rustbotshhs.git",
"clone_url": "https://github.com/SkyBlockDev/rustbotshhs.git",
"svn_url": "https://github.com/SkyBlockDev/rustbotshhs",
"homepage": null,
"size": 53,
"stargazers_count": 1,
"watchers_count": 1,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 1,
"license": null,
"forks": 0,
"open_issues": 1,
"watchers": 1,
"default_branch": "main"
},
"sender": {
"login": "SkyBlockDev",
"id": 72335827,
"node_id": "MDQ6VXNlcjcyMzM1ODI3",
"avatar_url": "https://avatars.githubusercontent.com/u/72335827?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SkyBlockDev",
"html_url": "https://github.com/SkyBlockDev",
"followers_url": "https://api.github.com/users/SkyBlockDev/followers",
"following_url": "https://api.github.com/users/SkyBlockDev/following{/other_user}",
"gists_url": "https://api.github.com/users/SkyBlockDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SkyBlockDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SkyBlockDev/subscriptions",
"organizations_url": "https://api.github.com/users/SkyBlockDev/orgs",
"repos_url": "https://api.github.com/users/SkyBlockDev/repos",
"events_url": "https://api.github.com/users/SkyBlockDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/SkyBlockDev/received_events",
"type": "User",
"site_admin": false
}
},
{
"forkee": {
"id": 391486297,
"node_id": "MDEwOlJlcG9zaXRvcnkzOTE0ODYyOTc=",
"name": "framework",
"full_name": "HypeLevels/framework",
"private": false,
"owner": {
"login": "HypeLevels",
"id": 61633775,
"node_id": "MDQ6VXNlcjYxNjMzNzc1",
"avatar_url": "https://avatars.githubusercontent.com/u/61633775?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/HypeLevels",
"html_url": "https://github.com/HypeLevels",
"followers_url": "https://api.github.com/users/HypeLevels/followers",
"following_url": "https://api.github.com/users/HypeLevels/following{/other_user}",
"gists_url": "https://api.github.com/users/HypeLevels/gists{/gist_id}",
"starred_url": "https://api.github.com/users/HypeLevels/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/HypeLevels/subscriptions",
"organizations_url": "https://api.github.com/users/HypeLevels/orgs",
"repos_url": "https://api.github.com/users/HypeLevels/repos",
"events_url": "https://api.github.com/users/HypeLevels/events{/privacy}",
"received_events_url": "https://api.github.com/users/HypeLevels/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/HypeLevels/framework",
"description": "A powerful and customizable framework for Discordeno",
"fork": true,
"url": "https://api.github.com/repos/HypeLevels/framework",
"forks_url": "https://api.github.com/repos/HypeLevels/framework/forks",
"keys_url": "https://api.github.com/repos/HypeLevels/framework/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/HypeLevels/framework/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/HypeLevels/framework/teams",
"hooks_url": "https://api.github.com/repos/HypeLevels/framework/hooks",
"issue_events_url": "https://api.github.com/repos/HypeLevels/framework/issues/events{/number}",
"events_url": "https://api.github.com/repos/HypeLevels/framework/events",
"assignees_url": "https://api.github.com/repos/HypeLevels/framework/assignees{/user}",
"branches_url": "https://api.github.com/repos/HypeLevels/framework/branches{/branch}",
"tags_url": "https://api.github.com/repos/HypeLevels/framework/tags",
"blobs_url": "https://api.github.com/repos/HypeLevels/framework/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/HypeLevels/framework/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/HypeLevels/framework/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/HypeLevels/framework/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/HypeLevels/framework/statuses/{sha}",
"languages_url": "https://api.github.com/repos/HypeLevels/framework/languages",
"stargazers_url": "https://api.github.com/repos/HypeLevels/framework/stargazers",
"contributors_url": "https://api.github.com/repos/HypeLevels/framework/contributors",
"subscribers_url": "https://api.github.com/repos/HypeLevels/framework/subscribers",
"subscription_url": "https://api.github.com/repos/HypeLevels/framework/subscription",
"commits_url": "https://api.github.com/repos/HypeLevels/framework/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/HypeLevels/framework/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/HypeLevels/framework/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/HypeLevels/framework/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/HypeLevels/framework/contents/{+path}",
"compare_url": "https://api.github.com/repos/HypeLevels/framework/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/HypeLevels/framework/merges",
"archive_url": "https://api.github.com/repos/HypeLevels/framework/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/HypeLevels/framework/downloads",
"issues_url": "https://api.github.com/repos/HypeLevels/framework/issues{/number}",
"pulls_url": "https://api.github.com/repos/HypeLevels/framework/pulls{/number}",
"milestones_url": "https://api.github.com/repos/HypeLevels/framework/milestones{/number}",
"notifications_url": "https://api.github.com/repos/HypeLevels/framework/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/HypeLevels/framework/labels{/name}",
"releases_url": "https://api.github.com/repos/HypeLevels/framework/releases{/id}",
"deployments_url": "https://api.github.com/repos/HypeLevels/framework/deployments",
"created_at": "2021-08-01T00:10:03Z",
"updated_at": "2021-07-31T15:48:30Z",
"pushed_at": "2021-07-31T15:50:41Z",
"git_url": "git://github.com/HypeLevels/framework.git",
"ssh_url": "git@github.com:HypeLevels/framework.git",
"clone_url": "https://github.com/HypeLevels/framework.git",
"svn_url": "https://github.com/HypeLevels/framework",
"homepage": "https://deno.land/x/natico",
"size": 1334,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "gpl-3.0",
"name": "GNU General Public License v3.0",
"spdx_id": "GPL-3.0",
"url": "https://api.github.com/licenses/gpl-3.0",
"node_id": "MDc6TGljZW5zZTk="
},
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"public": true
},
"repository": {
"id": 375374526,
"node_id": "MDEwOlJlcG9zaXRvcnkzNzUzNzQ1MjY=",
"name": "framework",
"full_name": "naticoo/framework",
"private": false,
"owner": {
"login": "naticoo",
"id": 85624930,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjg1NjI0OTMw",
"avatar_url": "https://avatars.githubusercontent.com/u/85624930?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/naticoo",
"html_url": "https://github.com/naticoo",
"followers_url": "https://api.github.com/users/naticoo/followers",
"following_url": "https://api.github.com/users/naticoo/following{/other_user}",
"gists_url": "https://api.github.com/users/naticoo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/naticoo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/naticoo/subscriptions",
"organizations_url": "https://api.github.com/users/naticoo/orgs",
"repos_url": "https://api.github.com/users/naticoo/repos",
"events_url": "https://api.github.com/users/naticoo/events{/privacy}",
"received_events_url": "https://api.github.com/users/naticoo/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/naticoo/framework",
"description": "A powerful and customizable framework for Discordeno",
"fork": false,
"url": "https://api.github.com/repos/naticoo/framework",
"forks_url": "https://api.github.com/repos/naticoo/framework/forks",
"keys_url": "https://api.github.com/repos/naticoo/framework/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/naticoo/framework/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/naticoo/framework/teams",
"hooks_url": "https://api.github.com/repos/naticoo/framework/hooks",
"issue_events_url": "https://api.github.com/repos/naticoo/framework/issues/events{/number}",
"events_url": "https://api.github.com/repos/naticoo/framework/events",
"assignees_url": "https://api.github.com/repos/naticoo/framework/assignees{/user}",
"branches_url": "https://api.github.com/repos/naticoo/framework/branches{/branch}",
"tags_url": "https://api.github.com/repos/naticoo/framework/tags",
"blobs_url": "https://api.github.com/repos/naticoo/framework/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/naticoo/framework/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/naticoo/framework/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/naticoo/framework/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/naticoo/framework/statuses/{sha}",
"languages_url": "https://api.github.com/repos/naticoo/framework/languages",
"stargazers_url": "https://api.github.com/repos/naticoo/framework/stargazers",
"contributors_url": "https://api.github.com/repos/naticoo/framework/contributors",
"subscribers_url": "https://api.github.com/repos/naticoo/framework/subscribers",
"subscription_url": "https://api.github.com/repos/naticoo/framework/subscription",
"commits_url": "https://api.github.com/repos/naticoo/framework/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/naticoo/framework/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/naticoo/framework/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/naticoo/framework/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/naticoo/framework/contents/{+path}",
"compare_url": "https://api.github.com/repos/naticoo/framework/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/naticoo/framework/merges",
"archive_url": "https://api.github.com/repos/naticoo/framework/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/naticoo/framework/downloads",
"issues_url": "https://api.github.com/repos/naticoo/framework/issues{/number}",
"pulls_url": "https://api.github.com/repos/naticoo/framework/pulls{/number}",
"milestones_url": "https://api.github.com/repos/naticoo/framework/milestones{/number}",
"notifications_url": "https://api.github.com/repos/naticoo/framework/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/naticoo/framework/labels{/name}",
"releases_url": "https://api.github.com/repos/naticoo/framework/releases{/id}",
"deployments_url": "https://api.github.com/repos/naticoo/framework/deployments",
"created_at": "2021-06-09T13:58:24Z",
"updated_at": "2021-07-31T15:48:30Z",
"pushed_at": "2021-07-31T15:50:41Z",
"git_url": "git://github.com/naticoo/framework.git",
"ssh_url": "git@github.com:naticoo/framework.git",
"clone_url": "https://github.com/naticoo/framework.git",
"svn_url": "https://github.com/naticoo/framework",
"homepage": "https://deno.land/x/natico",
"size": 1334,
"stargazers_count": 5,
"watchers_count": 5,
"language": "TypeScript",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"forks_count": 3,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "gpl-3.0",
"name": "GNU General Public License v3.0",
"spdx_id": "GPL-3.0",
"url": "https://api.github.com/licenses/gpl-3.0",
"node_id": "MDc6TGljZW5zZTk="
},
"forks": 3,
"open_issues": 0,
"watchers": 5,
"default_branch": "main"
},
"organization": {
"login": "naticoo",
"id": 85624930,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjg1NjI0OTMw",
"url": "https://api.github.com/orgs/naticoo",
"repos_url": "https://api.github.com/orgs/naticoo/repos",
"events_url": "https://api.github.com/orgs/naticoo/events",
"hooks_url": "https://api.github.com/orgs/naticoo/hooks",
"issues_url": "https://api.github.com/orgs/naticoo/issues",
"members_url": "https://api.github.com/orgs/naticoo/members{/member}",
"public_members_url": "https://api.github.com/orgs/naticoo/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/85624930?v=4",
"description": ""
},
"sender": {
"login": "HypeLevels",
"id": 61633775,
"node_id": "MDQ6VXNlcjYxNjMzNzc1",
"avatar_url": "https://avatars.githubusercontent.com/u/61633775?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/HypeLevels",
"html_url": "https://github.com/HypeLevels",
"followers_url": "https://api.github.com/users/HypeLevels/followers",
"following_url": "https://api.github.com/users/HypeLevels/following{/other_user}",
"gists_url": "https://api.github.com/users/HypeLevels/gists{/gist_id}",
"starred_url": "https://api.github.com/users/HypeLevels/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/HypeLevels/subscriptions",
"organizations_url": "https://api.github.com/users/HypeLevels/orgs",
"repos_url": "https://api.github.com/users/HypeLevels/repos",
"events_url": "https://api.github.com/users/HypeLevels/events{/privacy}",
"received_events_url": "https://api.github.com/users/HypeLevels/received_events",
"type": "User",
"site_admin": false
}
},
{
"ref": "refs/tags/2.3.0-rc.1",
"before": "0000000000000000000000000000000000000000",
"after": "eb64fc43130ab7a29c262f33ca4abb4861fd6210",
"repository": {
"id": 375374526,
"node_id": "MDEwOlJlcG9zaXRvcnkzNzUzNzQ1MjY=",
"name": "framework",
"full_name": "naticoo/framework",
"private": false,
"owner": {
"name": "naticoo",
"email": null,
"login": "naticoo",
"id": 85624930,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjg1NjI0OTMw",
"avatar_url": "https://avatars.githubusercontent.com/u/85624930?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/naticoo",
"html_url": "https://github.com/naticoo",
"followers_url": "https://api.github.com/users/naticoo/followers",
"following_url": "https://api.github.com/users/naticoo/following{/other_user}",
"gists_url": "https://api.github.com/users/naticoo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/naticoo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/naticoo/subscriptions",