dorkos 0.26.0 → 0.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,891 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "dff08b55-1a38-4bf3-b97c-c11a395b5b8b",
5
+ "prevId": "d631eed2-cdd7-4620-904a-9d4fcb5162db",
6
+ "tables": {
7
+ "a2a_tasks": {
8
+ "name": "a2a_tasks",
9
+ "columns": {
10
+ "id": {
11
+ "name": "id",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "context_id": {
18
+ "name": "context_id",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "agent_id": {
25
+ "name": "agent_id",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": true,
29
+ "autoincrement": false
30
+ },
31
+ "status": {
32
+ "name": "status",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": true,
36
+ "autoincrement": false
37
+ },
38
+ "history_json": {
39
+ "name": "history_json",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": true,
43
+ "autoincrement": false,
44
+ "default": "'[]'"
45
+ },
46
+ "artifacts_json": {
47
+ "name": "artifacts_json",
48
+ "type": "text",
49
+ "primaryKey": false,
50
+ "notNull": true,
51
+ "autoincrement": false,
52
+ "default": "'[]'"
53
+ },
54
+ "metadata_json": {
55
+ "name": "metadata_json",
56
+ "type": "text",
57
+ "primaryKey": false,
58
+ "notNull": true,
59
+ "autoincrement": false,
60
+ "default": "'{}'"
61
+ },
62
+ "created_at": {
63
+ "name": "created_at",
64
+ "type": "text",
65
+ "primaryKey": false,
66
+ "notNull": true,
67
+ "autoincrement": false
68
+ },
69
+ "updated_at": {
70
+ "name": "updated_at",
71
+ "type": "text",
72
+ "primaryKey": false,
73
+ "notNull": true,
74
+ "autoincrement": false
75
+ }
76
+ },
77
+ "indexes": {},
78
+ "foreignKeys": {},
79
+ "compositePrimaryKeys": {},
80
+ "uniqueConstraints": {},
81
+ "checkConstraints": {}
82
+ },
83
+ "activity_events": {
84
+ "name": "activity_events",
85
+ "columns": {
86
+ "id": {
87
+ "name": "id",
88
+ "type": "text",
89
+ "primaryKey": true,
90
+ "notNull": true,
91
+ "autoincrement": false
92
+ },
93
+ "occurred_at": {
94
+ "name": "occurred_at",
95
+ "type": "text",
96
+ "primaryKey": false,
97
+ "notNull": true,
98
+ "autoincrement": false
99
+ },
100
+ "actor_type": {
101
+ "name": "actor_type",
102
+ "type": "text",
103
+ "primaryKey": false,
104
+ "notNull": true,
105
+ "autoincrement": false
106
+ },
107
+ "actor_id": {
108
+ "name": "actor_id",
109
+ "type": "text",
110
+ "primaryKey": false,
111
+ "notNull": false,
112
+ "autoincrement": false
113
+ },
114
+ "actor_label": {
115
+ "name": "actor_label",
116
+ "type": "text",
117
+ "primaryKey": false,
118
+ "notNull": true,
119
+ "autoincrement": false
120
+ },
121
+ "category": {
122
+ "name": "category",
123
+ "type": "text",
124
+ "primaryKey": false,
125
+ "notNull": true,
126
+ "autoincrement": false
127
+ },
128
+ "event_type": {
129
+ "name": "event_type",
130
+ "type": "text",
131
+ "primaryKey": false,
132
+ "notNull": true,
133
+ "autoincrement": false
134
+ },
135
+ "resource_type": {
136
+ "name": "resource_type",
137
+ "type": "text",
138
+ "primaryKey": false,
139
+ "notNull": false,
140
+ "autoincrement": false
141
+ },
142
+ "resource_id": {
143
+ "name": "resource_id",
144
+ "type": "text",
145
+ "primaryKey": false,
146
+ "notNull": false,
147
+ "autoincrement": false
148
+ },
149
+ "resource_label": {
150
+ "name": "resource_label",
151
+ "type": "text",
152
+ "primaryKey": false,
153
+ "notNull": false,
154
+ "autoincrement": false
155
+ },
156
+ "summary": {
157
+ "name": "summary",
158
+ "type": "text",
159
+ "primaryKey": false,
160
+ "notNull": true,
161
+ "autoincrement": false
162
+ },
163
+ "link_path": {
164
+ "name": "link_path",
165
+ "type": "text",
166
+ "primaryKey": false,
167
+ "notNull": false,
168
+ "autoincrement": false
169
+ },
170
+ "metadata": {
171
+ "name": "metadata",
172
+ "type": "text",
173
+ "primaryKey": false,
174
+ "notNull": false,
175
+ "autoincrement": false
176
+ },
177
+ "created_at": {
178
+ "name": "created_at",
179
+ "type": "text",
180
+ "primaryKey": false,
181
+ "notNull": true,
182
+ "autoincrement": false
183
+ }
184
+ },
185
+ "indexes": {
186
+ "idx_activity_occurred_at": {
187
+ "name": "idx_activity_occurred_at",
188
+ "columns": ["occurred_at"],
189
+ "isUnique": false
190
+ },
191
+ "idx_activity_category": {
192
+ "name": "idx_activity_category",
193
+ "columns": ["category"],
194
+ "isUnique": false
195
+ },
196
+ "idx_activity_actor_type": {
197
+ "name": "idx_activity_actor_type",
198
+ "columns": ["actor_type"],
199
+ "isUnique": false
200
+ }
201
+ },
202
+ "foreignKeys": {},
203
+ "compositePrimaryKeys": {},
204
+ "uniqueConstraints": {},
205
+ "checkConstraints": {}
206
+ },
207
+ "pulse_runs": {
208
+ "name": "pulse_runs",
209
+ "columns": {
210
+ "id": {
211
+ "name": "id",
212
+ "type": "text",
213
+ "primaryKey": true,
214
+ "notNull": true,
215
+ "autoincrement": false
216
+ },
217
+ "schedule_id": {
218
+ "name": "schedule_id",
219
+ "type": "text",
220
+ "primaryKey": false,
221
+ "notNull": true,
222
+ "autoincrement": false
223
+ },
224
+ "status": {
225
+ "name": "status",
226
+ "type": "text",
227
+ "primaryKey": false,
228
+ "notNull": true,
229
+ "autoincrement": false
230
+ },
231
+ "started_at": {
232
+ "name": "started_at",
233
+ "type": "text",
234
+ "primaryKey": false,
235
+ "notNull": true,
236
+ "autoincrement": false
237
+ },
238
+ "finished_at": {
239
+ "name": "finished_at",
240
+ "type": "text",
241
+ "primaryKey": false,
242
+ "notNull": false,
243
+ "autoincrement": false
244
+ },
245
+ "duration_ms": {
246
+ "name": "duration_ms",
247
+ "type": "integer",
248
+ "primaryKey": false,
249
+ "notNull": false,
250
+ "autoincrement": false
251
+ },
252
+ "output": {
253
+ "name": "output",
254
+ "type": "text",
255
+ "primaryKey": false,
256
+ "notNull": false,
257
+ "autoincrement": false
258
+ },
259
+ "error": {
260
+ "name": "error",
261
+ "type": "text",
262
+ "primaryKey": false,
263
+ "notNull": false,
264
+ "autoincrement": false
265
+ },
266
+ "session_id": {
267
+ "name": "session_id",
268
+ "type": "text",
269
+ "primaryKey": false,
270
+ "notNull": false,
271
+ "autoincrement": false
272
+ },
273
+ "trigger": {
274
+ "name": "trigger",
275
+ "type": "text",
276
+ "primaryKey": false,
277
+ "notNull": true,
278
+ "autoincrement": false,
279
+ "default": "'scheduled'"
280
+ },
281
+ "created_at": {
282
+ "name": "created_at",
283
+ "type": "text",
284
+ "primaryKey": false,
285
+ "notNull": true,
286
+ "autoincrement": false
287
+ }
288
+ },
289
+ "indexes": {},
290
+ "foreignKeys": {
291
+ "pulse_runs_schedule_id_pulse_schedules_id_fk": {
292
+ "name": "pulse_runs_schedule_id_pulse_schedules_id_fk",
293
+ "tableFrom": "pulse_runs",
294
+ "tableTo": "pulse_schedules",
295
+ "columnsFrom": ["schedule_id"],
296
+ "columnsTo": ["id"],
297
+ "onDelete": "no action",
298
+ "onUpdate": "no action"
299
+ }
300
+ },
301
+ "compositePrimaryKeys": {},
302
+ "uniqueConstraints": {},
303
+ "checkConstraints": {}
304
+ },
305
+ "pulse_schedules": {
306
+ "name": "pulse_schedules",
307
+ "columns": {
308
+ "id": {
309
+ "name": "id",
310
+ "type": "text",
311
+ "primaryKey": true,
312
+ "notNull": true,
313
+ "autoincrement": false
314
+ },
315
+ "name": {
316
+ "name": "name",
317
+ "type": "text",
318
+ "primaryKey": false,
319
+ "notNull": true,
320
+ "autoincrement": false
321
+ },
322
+ "description": {
323
+ "name": "description",
324
+ "type": "text",
325
+ "primaryKey": false,
326
+ "notNull": false,
327
+ "autoincrement": false
328
+ },
329
+ "cron": {
330
+ "name": "cron",
331
+ "type": "text",
332
+ "primaryKey": false,
333
+ "notNull": true,
334
+ "autoincrement": false
335
+ },
336
+ "timezone": {
337
+ "name": "timezone",
338
+ "type": "text",
339
+ "primaryKey": false,
340
+ "notNull": true,
341
+ "autoincrement": false,
342
+ "default": "'UTC'"
343
+ },
344
+ "prompt": {
345
+ "name": "prompt",
346
+ "type": "text",
347
+ "primaryKey": false,
348
+ "notNull": true,
349
+ "autoincrement": false
350
+ },
351
+ "cwd": {
352
+ "name": "cwd",
353
+ "type": "text",
354
+ "primaryKey": false,
355
+ "notNull": false,
356
+ "autoincrement": false
357
+ },
358
+ "agent_id": {
359
+ "name": "agent_id",
360
+ "type": "text",
361
+ "primaryKey": false,
362
+ "notNull": false,
363
+ "autoincrement": false
364
+ },
365
+ "enabled": {
366
+ "name": "enabled",
367
+ "type": "integer",
368
+ "primaryKey": false,
369
+ "notNull": true,
370
+ "autoincrement": false,
371
+ "default": true
372
+ },
373
+ "max_runtime": {
374
+ "name": "max_runtime",
375
+ "type": "integer",
376
+ "primaryKey": false,
377
+ "notNull": false,
378
+ "autoincrement": false
379
+ },
380
+ "permission_mode": {
381
+ "name": "permission_mode",
382
+ "type": "text",
383
+ "primaryKey": false,
384
+ "notNull": true,
385
+ "autoincrement": false,
386
+ "default": "'acceptEdits'"
387
+ },
388
+ "status": {
389
+ "name": "status",
390
+ "type": "text",
391
+ "primaryKey": false,
392
+ "notNull": true,
393
+ "autoincrement": false,
394
+ "default": "'active'"
395
+ },
396
+ "file_path": {
397
+ "name": "file_path",
398
+ "type": "text",
399
+ "primaryKey": false,
400
+ "notNull": true,
401
+ "autoincrement": false
402
+ },
403
+ "tags_json": {
404
+ "name": "tags_json",
405
+ "type": "text",
406
+ "primaryKey": false,
407
+ "notNull": true,
408
+ "autoincrement": false,
409
+ "default": "'[]'"
410
+ },
411
+ "created_at": {
412
+ "name": "created_at",
413
+ "type": "text",
414
+ "primaryKey": false,
415
+ "notNull": true,
416
+ "autoincrement": false
417
+ },
418
+ "updated_at": {
419
+ "name": "updated_at",
420
+ "type": "text",
421
+ "primaryKey": false,
422
+ "notNull": true,
423
+ "autoincrement": false
424
+ }
425
+ },
426
+ "indexes": {},
427
+ "foreignKeys": {},
428
+ "compositePrimaryKeys": {},
429
+ "uniqueConstraints": {},
430
+ "checkConstraints": {}
431
+ },
432
+ "relay_index": {
433
+ "name": "relay_index",
434
+ "columns": {
435
+ "id": {
436
+ "name": "id",
437
+ "type": "text",
438
+ "primaryKey": true,
439
+ "notNull": true,
440
+ "autoincrement": false
441
+ },
442
+ "subject": {
443
+ "name": "subject",
444
+ "type": "text",
445
+ "primaryKey": false,
446
+ "notNull": true,
447
+ "autoincrement": false
448
+ },
449
+ "endpoint_hash": {
450
+ "name": "endpoint_hash",
451
+ "type": "text",
452
+ "primaryKey": false,
453
+ "notNull": true,
454
+ "autoincrement": false
455
+ },
456
+ "status": {
457
+ "name": "status",
458
+ "type": "text",
459
+ "primaryKey": false,
460
+ "notNull": true,
461
+ "autoincrement": false,
462
+ "default": "'pending'"
463
+ },
464
+ "expires_at": {
465
+ "name": "expires_at",
466
+ "type": "text",
467
+ "primaryKey": false,
468
+ "notNull": false,
469
+ "autoincrement": false
470
+ },
471
+ "sender": {
472
+ "name": "sender",
473
+ "type": "text",
474
+ "primaryKey": false,
475
+ "notNull": false,
476
+ "autoincrement": false
477
+ },
478
+ "payload": {
479
+ "name": "payload",
480
+ "type": "text",
481
+ "primaryKey": false,
482
+ "notNull": false,
483
+ "autoincrement": false
484
+ },
485
+ "metadata": {
486
+ "name": "metadata",
487
+ "type": "text",
488
+ "primaryKey": false,
489
+ "notNull": false,
490
+ "autoincrement": false
491
+ },
492
+ "created_at": {
493
+ "name": "created_at",
494
+ "type": "text",
495
+ "primaryKey": false,
496
+ "notNull": true,
497
+ "autoincrement": false
498
+ }
499
+ },
500
+ "indexes": {},
501
+ "foreignKeys": {},
502
+ "compositePrimaryKeys": {},
503
+ "uniqueConstraints": {},
504
+ "checkConstraints": {}
505
+ },
506
+ "relay_traces": {
507
+ "name": "relay_traces",
508
+ "columns": {
509
+ "id": {
510
+ "name": "id",
511
+ "type": "text",
512
+ "primaryKey": true,
513
+ "notNull": true,
514
+ "autoincrement": false
515
+ },
516
+ "message_id": {
517
+ "name": "message_id",
518
+ "type": "text",
519
+ "primaryKey": false,
520
+ "notNull": true,
521
+ "autoincrement": false
522
+ },
523
+ "trace_id": {
524
+ "name": "trace_id",
525
+ "type": "text",
526
+ "primaryKey": false,
527
+ "notNull": true,
528
+ "autoincrement": false
529
+ },
530
+ "subject": {
531
+ "name": "subject",
532
+ "type": "text",
533
+ "primaryKey": false,
534
+ "notNull": true,
535
+ "autoincrement": false
536
+ },
537
+ "status": {
538
+ "name": "status",
539
+ "type": "text",
540
+ "primaryKey": false,
541
+ "notNull": true,
542
+ "autoincrement": false
543
+ },
544
+ "sent_at": {
545
+ "name": "sent_at",
546
+ "type": "text",
547
+ "primaryKey": false,
548
+ "notNull": true,
549
+ "autoincrement": false
550
+ },
551
+ "delivered_at": {
552
+ "name": "delivered_at",
553
+ "type": "text",
554
+ "primaryKey": false,
555
+ "notNull": false,
556
+ "autoincrement": false
557
+ },
558
+ "processed_at": {
559
+ "name": "processed_at",
560
+ "type": "text",
561
+ "primaryKey": false,
562
+ "notNull": false,
563
+ "autoincrement": false
564
+ },
565
+ "error_message": {
566
+ "name": "error_message",
567
+ "type": "text",
568
+ "primaryKey": false,
569
+ "notNull": false,
570
+ "autoincrement": false
571
+ },
572
+ "metadata": {
573
+ "name": "metadata",
574
+ "type": "text",
575
+ "primaryKey": false,
576
+ "notNull": false,
577
+ "autoincrement": false
578
+ }
579
+ },
580
+ "indexes": {
581
+ "relay_traces_message_id_unique": {
582
+ "name": "relay_traces_message_id_unique",
583
+ "columns": ["message_id"],
584
+ "isUnique": true
585
+ }
586
+ },
587
+ "foreignKeys": {},
588
+ "compositePrimaryKeys": {},
589
+ "uniqueConstraints": {},
590
+ "checkConstraints": {}
591
+ },
592
+ "agent_denials": {
593
+ "name": "agent_denials",
594
+ "columns": {
595
+ "id": {
596
+ "name": "id",
597
+ "type": "text",
598
+ "primaryKey": true,
599
+ "notNull": true,
600
+ "autoincrement": false
601
+ },
602
+ "path": {
603
+ "name": "path",
604
+ "type": "text",
605
+ "primaryKey": false,
606
+ "notNull": true,
607
+ "autoincrement": false
608
+ },
609
+ "reason": {
610
+ "name": "reason",
611
+ "type": "text",
612
+ "primaryKey": false,
613
+ "notNull": false,
614
+ "autoincrement": false
615
+ },
616
+ "denier": {
617
+ "name": "denier",
618
+ "type": "text",
619
+ "primaryKey": false,
620
+ "notNull": false,
621
+ "autoincrement": false
622
+ },
623
+ "created_at": {
624
+ "name": "created_at",
625
+ "type": "text",
626
+ "primaryKey": false,
627
+ "notNull": true,
628
+ "autoincrement": false
629
+ }
630
+ },
631
+ "indexes": {
632
+ "agent_denials_path_unique": {
633
+ "name": "agent_denials_path_unique",
634
+ "columns": ["path"],
635
+ "isUnique": true
636
+ }
637
+ },
638
+ "foreignKeys": {},
639
+ "compositePrimaryKeys": {},
640
+ "uniqueConstraints": {},
641
+ "checkConstraints": {}
642
+ },
643
+ "agents": {
644
+ "name": "agents",
645
+ "columns": {
646
+ "id": {
647
+ "name": "id",
648
+ "type": "text",
649
+ "primaryKey": true,
650
+ "notNull": true,
651
+ "autoincrement": false
652
+ },
653
+ "name": {
654
+ "name": "name",
655
+ "type": "text",
656
+ "primaryKey": false,
657
+ "notNull": true,
658
+ "autoincrement": false
659
+ },
660
+ "runtime": {
661
+ "name": "runtime",
662
+ "type": "text",
663
+ "primaryKey": false,
664
+ "notNull": true,
665
+ "autoincrement": false
666
+ },
667
+ "project_path": {
668
+ "name": "project_path",
669
+ "type": "text",
670
+ "primaryKey": false,
671
+ "notNull": true,
672
+ "autoincrement": false
673
+ },
674
+ "namespace": {
675
+ "name": "namespace",
676
+ "type": "text",
677
+ "primaryKey": false,
678
+ "notNull": true,
679
+ "autoincrement": false,
680
+ "default": "'default'"
681
+ },
682
+ "capabilities_json": {
683
+ "name": "capabilities_json",
684
+ "type": "text",
685
+ "primaryKey": false,
686
+ "notNull": true,
687
+ "autoincrement": false,
688
+ "default": "'[]'"
689
+ },
690
+ "entrypoint": {
691
+ "name": "entrypoint",
692
+ "type": "text",
693
+ "primaryKey": false,
694
+ "notNull": false,
695
+ "autoincrement": false
696
+ },
697
+ "version": {
698
+ "name": "version",
699
+ "type": "text",
700
+ "primaryKey": false,
701
+ "notNull": false,
702
+ "autoincrement": false
703
+ },
704
+ "description": {
705
+ "name": "description",
706
+ "type": "text",
707
+ "primaryKey": false,
708
+ "notNull": false,
709
+ "autoincrement": false
710
+ },
711
+ "approver": {
712
+ "name": "approver",
713
+ "type": "text",
714
+ "primaryKey": false,
715
+ "notNull": false,
716
+ "autoincrement": false
717
+ },
718
+ "status": {
719
+ "name": "status",
720
+ "type": "text",
721
+ "primaryKey": false,
722
+ "notNull": true,
723
+ "autoincrement": false,
724
+ "default": "'active'"
725
+ },
726
+ "scan_root": {
727
+ "name": "scan_root",
728
+ "type": "text",
729
+ "primaryKey": false,
730
+ "notNull": true,
731
+ "autoincrement": false,
732
+ "default": "''"
733
+ },
734
+ "behavior_json": {
735
+ "name": "behavior_json",
736
+ "type": "text",
737
+ "primaryKey": false,
738
+ "notNull": true,
739
+ "autoincrement": false,
740
+ "default": "'{\"responseMode\":\"always\"}'"
741
+ },
742
+ "budget_json": {
743
+ "name": "budget_json",
744
+ "type": "text",
745
+ "primaryKey": false,
746
+ "notNull": true,
747
+ "autoincrement": false,
748
+ "default": "'{\"maxHopsPerMessage\":5,\"maxCallsPerHour\":100}'"
749
+ },
750
+ "last_seen_at": {
751
+ "name": "last_seen_at",
752
+ "type": "text",
753
+ "primaryKey": false,
754
+ "notNull": false,
755
+ "autoincrement": false
756
+ },
757
+ "last_seen_event": {
758
+ "name": "last_seen_event",
759
+ "type": "text",
760
+ "primaryKey": false,
761
+ "notNull": false,
762
+ "autoincrement": false
763
+ },
764
+ "persona": {
765
+ "name": "persona",
766
+ "type": "text",
767
+ "primaryKey": false,
768
+ "notNull": false,
769
+ "autoincrement": false
770
+ },
771
+ "persona_enabled": {
772
+ "name": "persona_enabled",
773
+ "type": "integer",
774
+ "primaryKey": false,
775
+ "notNull": true,
776
+ "autoincrement": false,
777
+ "default": true
778
+ },
779
+ "traits_json": {
780
+ "name": "traits_json",
781
+ "type": "text",
782
+ "primaryKey": false,
783
+ "notNull": false,
784
+ "autoincrement": false
785
+ },
786
+ "conventions_json": {
787
+ "name": "conventions_json",
788
+ "type": "text",
789
+ "primaryKey": false,
790
+ "notNull": false,
791
+ "autoincrement": false
792
+ },
793
+ "is_system": {
794
+ "name": "is_system",
795
+ "type": "integer",
796
+ "primaryKey": false,
797
+ "notNull": true,
798
+ "autoincrement": false,
799
+ "default": false
800
+ },
801
+ "color": {
802
+ "name": "color",
803
+ "type": "text",
804
+ "primaryKey": false,
805
+ "notNull": false,
806
+ "autoincrement": false
807
+ },
808
+ "icon": {
809
+ "name": "icon",
810
+ "type": "text",
811
+ "primaryKey": false,
812
+ "notNull": false,
813
+ "autoincrement": false
814
+ },
815
+ "registered_at": {
816
+ "name": "registered_at",
817
+ "type": "text",
818
+ "primaryKey": false,
819
+ "notNull": true,
820
+ "autoincrement": false
821
+ },
822
+ "updated_at": {
823
+ "name": "updated_at",
824
+ "type": "text",
825
+ "primaryKey": false,
826
+ "notNull": true,
827
+ "autoincrement": false
828
+ }
829
+ },
830
+ "indexes": {
831
+ "agents_project_path_unique": {
832
+ "name": "agents_project_path_unique",
833
+ "columns": ["project_path"],
834
+ "isUnique": true
835
+ }
836
+ },
837
+ "foreignKeys": {},
838
+ "compositePrimaryKeys": {},
839
+ "uniqueConstraints": {},
840
+ "checkConstraints": {}
841
+ },
842
+ "rate_limit_buckets": {
843
+ "name": "rate_limit_buckets",
844
+ "columns": {
845
+ "agent_id": {
846
+ "name": "agent_id",
847
+ "type": "text",
848
+ "primaryKey": false,
849
+ "notNull": true,
850
+ "autoincrement": false
851
+ },
852
+ "bucket_minute": {
853
+ "name": "bucket_minute",
854
+ "type": "integer",
855
+ "primaryKey": false,
856
+ "notNull": true,
857
+ "autoincrement": false
858
+ },
859
+ "count": {
860
+ "name": "count",
861
+ "type": "integer",
862
+ "primaryKey": false,
863
+ "notNull": true,
864
+ "autoincrement": false,
865
+ "default": 0
866
+ }
867
+ },
868
+ "indexes": {
869
+ "idx_rate_limit_agent_minute": {
870
+ "name": "idx_rate_limit_agent_minute",
871
+ "columns": ["agent_id", "bucket_minute"],
872
+ "isUnique": true
873
+ }
874
+ },
875
+ "foreignKeys": {},
876
+ "compositePrimaryKeys": {},
877
+ "uniqueConstraints": {},
878
+ "checkConstraints": {}
879
+ }
880
+ },
881
+ "views": {},
882
+ "enums": {},
883
+ "_meta": {
884
+ "schemas": {},
885
+ "tables": {},
886
+ "columns": {}
887
+ },
888
+ "internal": {
889
+ "indexes": {}
890
+ }
891
+ }