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,887 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "4d751122-18ca-4dae-91f4-e89551cbc0d0",
5
+ "prevId": "28afe10f-85a4-45c9-a1e7-6f4b808b821e",
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": [
189
+ "occurred_at"
190
+ ],
191
+ "isUnique": false
192
+ },
193
+ "idx_activity_category": {
194
+ "name": "idx_activity_category",
195
+ "columns": [
196
+ "category"
197
+ ],
198
+ "isUnique": false
199
+ },
200
+ "idx_activity_actor_type": {
201
+ "name": "idx_activity_actor_type",
202
+ "columns": [
203
+ "actor_type"
204
+ ],
205
+ "isUnique": false
206
+ }
207
+ },
208
+ "foreignKeys": {},
209
+ "compositePrimaryKeys": {},
210
+ "uniqueConstraints": {},
211
+ "checkConstraints": {}
212
+ },
213
+ "pulse_runs": {
214
+ "name": "pulse_runs",
215
+ "columns": {
216
+ "id": {
217
+ "name": "id",
218
+ "type": "text",
219
+ "primaryKey": true,
220
+ "notNull": true,
221
+ "autoincrement": false
222
+ },
223
+ "schedule_id": {
224
+ "name": "schedule_id",
225
+ "type": "text",
226
+ "primaryKey": false,
227
+ "notNull": true,
228
+ "autoincrement": false
229
+ },
230
+ "status": {
231
+ "name": "status",
232
+ "type": "text",
233
+ "primaryKey": false,
234
+ "notNull": true,
235
+ "autoincrement": false
236
+ },
237
+ "started_at": {
238
+ "name": "started_at",
239
+ "type": "text",
240
+ "primaryKey": false,
241
+ "notNull": true,
242
+ "autoincrement": false
243
+ },
244
+ "finished_at": {
245
+ "name": "finished_at",
246
+ "type": "text",
247
+ "primaryKey": false,
248
+ "notNull": false,
249
+ "autoincrement": false
250
+ },
251
+ "duration_ms": {
252
+ "name": "duration_ms",
253
+ "type": "integer",
254
+ "primaryKey": false,
255
+ "notNull": false,
256
+ "autoincrement": false
257
+ },
258
+ "output": {
259
+ "name": "output",
260
+ "type": "text",
261
+ "primaryKey": false,
262
+ "notNull": false,
263
+ "autoincrement": false
264
+ },
265
+ "error": {
266
+ "name": "error",
267
+ "type": "text",
268
+ "primaryKey": false,
269
+ "notNull": false,
270
+ "autoincrement": false
271
+ },
272
+ "session_id": {
273
+ "name": "session_id",
274
+ "type": "text",
275
+ "primaryKey": false,
276
+ "notNull": false,
277
+ "autoincrement": false
278
+ },
279
+ "trigger": {
280
+ "name": "trigger",
281
+ "type": "text",
282
+ "primaryKey": false,
283
+ "notNull": true,
284
+ "autoincrement": false,
285
+ "default": "'scheduled'"
286
+ },
287
+ "created_at": {
288
+ "name": "created_at",
289
+ "type": "text",
290
+ "primaryKey": false,
291
+ "notNull": true,
292
+ "autoincrement": false
293
+ }
294
+ },
295
+ "indexes": {},
296
+ "foreignKeys": {
297
+ "pulse_runs_schedule_id_pulse_schedules_id_fk": {
298
+ "name": "pulse_runs_schedule_id_pulse_schedules_id_fk",
299
+ "tableFrom": "pulse_runs",
300
+ "tableTo": "pulse_schedules",
301
+ "columnsFrom": [
302
+ "schedule_id"
303
+ ],
304
+ "columnsTo": [
305
+ "id"
306
+ ],
307
+ "onDelete": "no action",
308
+ "onUpdate": "no action"
309
+ }
310
+ },
311
+ "compositePrimaryKeys": {},
312
+ "uniqueConstraints": {},
313
+ "checkConstraints": {}
314
+ },
315
+ "pulse_schedules": {
316
+ "name": "pulse_schedules",
317
+ "columns": {
318
+ "id": {
319
+ "name": "id",
320
+ "type": "text",
321
+ "primaryKey": true,
322
+ "notNull": true,
323
+ "autoincrement": false
324
+ },
325
+ "name": {
326
+ "name": "name",
327
+ "type": "text",
328
+ "primaryKey": false,
329
+ "notNull": true,
330
+ "autoincrement": false
331
+ },
332
+ "description": {
333
+ "name": "description",
334
+ "type": "text",
335
+ "primaryKey": false,
336
+ "notNull": false,
337
+ "autoincrement": false
338
+ },
339
+ "cron": {
340
+ "name": "cron",
341
+ "type": "text",
342
+ "primaryKey": false,
343
+ "notNull": true,
344
+ "autoincrement": false
345
+ },
346
+ "timezone": {
347
+ "name": "timezone",
348
+ "type": "text",
349
+ "primaryKey": false,
350
+ "notNull": true,
351
+ "autoincrement": false,
352
+ "default": "'UTC'"
353
+ },
354
+ "prompt": {
355
+ "name": "prompt",
356
+ "type": "text",
357
+ "primaryKey": false,
358
+ "notNull": true,
359
+ "autoincrement": false
360
+ },
361
+ "cwd": {
362
+ "name": "cwd",
363
+ "type": "text",
364
+ "primaryKey": false,
365
+ "notNull": false,
366
+ "autoincrement": false
367
+ },
368
+ "agent_id": {
369
+ "name": "agent_id",
370
+ "type": "text",
371
+ "primaryKey": false,
372
+ "notNull": false,
373
+ "autoincrement": false
374
+ },
375
+ "enabled": {
376
+ "name": "enabled",
377
+ "type": "integer",
378
+ "primaryKey": false,
379
+ "notNull": true,
380
+ "autoincrement": false,
381
+ "default": true
382
+ },
383
+ "max_runtime": {
384
+ "name": "max_runtime",
385
+ "type": "integer",
386
+ "primaryKey": false,
387
+ "notNull": false,
388
+ "autoincrement": false
389
+ },
390
+ "permission_mode": {
391
+ "name": "permission_mode",
392
+ "type": "text",
393
+ "primaryKey": false,
394
+ "notNull": true,
395
+ "autoincrement": false,
396
+ "default": "'acceptEdits'"
397
+ },
398
+ "status": {
399
+ "name": "status",
400
+ "type": "text",
401
+ "primaryKey": false,
402
+ "notNull": true,
403
+ "autoincrement": false,
404
+ "default": "'active'"
405
+ },
406
+ "created_at": {
407
+ "name": "created_at",
408
+ "type": "text",
409
+ "primaryKey": false,
410
+ "notNull": true,
411
+ "autoincrement": false
412
+ },
413
+ "updated_at": {
414
+ "name": "updated_at",
415
+ "type": "text",
416
+ "primaryKey": false,
417
+ "notNull": true,
418
+ "autoincrement": false
419
+ }
420
+ },
421
+ "indexes": {},
422
+ "foreignKeys": {},
423
+ "compositePrimaryKeys": {},
424
+ "uniqueConstraints": {},
425
+ "checkConstraints": {}
426
+ },
427
+ "relay_index": {
428
+ "name": "relay_index",
429
+ "columns": {
430
+ "id": {
431
+ "name": "id",
432
+ "type": "text",
433
+ "primaryKey": true,
434
+ "notNull": true,
435
+ "autoincrement": false
436
+ },
437
+ "subject": {
438
+ "name": "subject",
439
+ "type": "text",
440
+ "primaryKey": false,
441
+ "notNull": true,
442
+ "autoincrement": false
443
+ },
444
+ "endpoint_hash": {
445
+ "name": "endpoint_hash",
446
+ "type": "text",
447
+ "primaryKey": false,
448
+ "notNull": true,
449
+ "autoincrement": false
450
+ },
451
+ "status": {
452
+ "name": "status",
453
+ "type": "text",
454
+ "primaryKey": false,
455
+ "notNull": true,
456
+ "autoincrement": false,
457
+ "default": "'pending'"
458
+ },
459
+ "expires_at": {
460
+ "name": "expires_at",
461
+ "type": "text",
462
+ "primaryKey": false,
463
+ "notNull": false,
464
+ "autoincrement": false
465
+ },
466
+ "sender": {
467
+ "name": "sender",
468
+ "type": "text",
469
+ "primaryKey": false,
470
+ "notNull": false,
471
+ "autoincrement": false
472
+ },
473
+ "payload": {
474
+ "name": "payload",
475
+ "type": "text",
476
+ "primaryKey": false,
477
+ "notNull": false,
478
+ "autoincrement": false
479
+ },
480
+ "metadata": {
481
+ "name": "metadata",
482
+ "type": "text",
483
+ "primaryKey": false,
484
+ "notNull": false,
485
+ "autoincrement": false
486
+ },
487
+ "created_at": {
488
+ "name": "created_at",
489
+ "type": "text",
490
+ "primaryKey": false,
491
+ "notNull": true,
492
+ "autoincrement": false
493
+ }
494
+ },
495
+ "indexes": {},
496
+ "foreignKeys": {},
497
+ "compositePrimaryKeys": {},
498
+ "uniqueConstraints": {},
499
+ "checkConstraints": {}
500
+ },
501
+ "relay_traces": {
502
+ "name": "relay_traces",
503
+ "columns": {
504
+ "id": {
505
+ "name": "id",
506
+ "type": "text",
507
+ "primaryKey": true,
508
+ "notNull": true,
509
+ "autoincrement": false
510
+ },
511
+ "message_id": {
512
+ "name": "message_id",
513
+ "type": "text",
514
+ "primaryKey": false,
515
+ "notNull": true,
516
+ "autoincrement": false
517
+ },
518
+ "trace_id": {
519
+ "name": "trace_id",
520
+ "type": "text",
521
+ "primaryKey": false,
522
+ "notNull": true,
523
+ "autoincrement": false
524
+ },
525
+ "subject": {
526
+ "name": "subject",
527
+ "type": "text",
528
+ "primaryKey": false,
529
+ "notNull": true,
530
+ "autoincrement": false
531
+ },
532
+ "status": {
533
+ "name": "status",
534
+ "type": "text",
535
+ "primaryKey": false,
536
+ "notNull": true,
537
+ "autoincrement": false
538
+ },
539
+ "sent_at": {
540
+ "name": "sent_at",
541
+ "type": "text",
542
+ "primaryKey": false,
543
+ "notNull": true,
544
+ "autoincrement": false
545
+ },
546
+ "delivered_at": {
547
+ "name": "delivered_at",
548
+ "type": "text",
549
+ "primaryKey": false,
550
+ "notNull": false,
551
+ "autoincrement": false
552
+ },
553
+ "processed_at": {
554
+ "name": "processed_at",
555
+ "type": "text",
556
+ "primaryKey": false,
557
+ "notNull": false,
558
+ "autoincrement": false
559
+ },
560
+ "error_message": {
561
+ "name": "error_message",
562
+ "type": "text",
563
+ "primaryKey": false,
564
+ "notNull": false,
565
+ "autoincrement": false
566
+ },
567
+ "metadata": {
568
+ "name": "metadata",
569
+ "type": "text",
570
+ "primaryKey": false,
571
+ "notNull": false,
572
+ "autoincrement": false
573
+ }
574
+ },
575
+ "indexes": {
576
+ "relay_traces_message_id_unique": {
577
+ "name": "relay_traces_message_id_unique",
578
+ "columns": [
579
+ "message_id"
580
+ ],
581
+ "isUnique": true
582
+ }
583
+ },
584
+ "foreignKeys": {},
585
+ "compositePrimaryKeys": {},
586
+ "uniqueConstraints": {},
587
+ "checkConstraints": {}
588
+ },
589
+ "agent_denials": {
590
+ "name": "agent_denials",
591
+ "columns": {
592
+ "id": {
593
+ "name": "id",
594
+ "type": "text",
595
+ "primaryKey": true,
596
+ "notNull": true,
597
+ "autoincrement": false
598
+ },
599
+ "path": {
600
+ "name": "path",
601
+ "type": "text",
602
+ "primaryKey": false,
603
+ "notNull": true,
604
+ "autoincrement": false
605
+ },
606
+ "reason": {
607
+ "name": "reason",
608
+ "type": "text",
609
+ "primaryKey": false,
610
+ "notNull": false,
611
+ "autoincrement": false
612
+ },
613
+ "denier": {
614
+ "name": "denier",
615
+ "type": "text",
616
+ "primaryKey": false,
617
+ "notNull": false,
618
+ "autoincrement": false
619
+ },
620
+ "created_at": {
621
+ "name": "created_at",
622
+ "type": "text",
623
+ "primaryKey": false,
624
+ "notNull": true,
625
+ "autoincrement": false
626
+ }
627
+ },
628
+ "indexes": {
629
+ "agent_denials_path_unique": {
630
+ "name": "agent_denials_path_unique",
631
+ "columns": [
632
+ "path"
633
+ ],
634
+ "isUnique": true
635
+ }
636
+ },
637
+ "foreignKeys": {},
638
+ "compositePrimaryKeys": {},
639
+ "uniqueConstraints": {},
640
+ "checkConstraints": {}
641
+ },
642
+ "agents": {
643
+ "name": "agents",
644
+ "columns": {
645
+ "id": {
646
+ "name": "id",
647
+ "type": "text",
648
+ "primaryKey": true,
649
+ "notNull": true,
650
+ "autoincrement": false
651
+ },
652
+ "name": {
653
+ "name": "name",
654
+ "type": "text",
655
+ "primaryKey": false,
656
+ "notNull": true,
657
+ "autoincrement": false
658
+ },
659
+ "runtime": {
660
+ "name": "runtime",
661
+ "type": "text",
662
+ "primaryKey": false,
663
+ "notNull": true,
664
+ "autoincrement": false
665
+ },
666
+ "project_path": {
667
+ "name": "project_path",
668
+ "type": "text",
669
+ "primaryKey": false,
670
+ "notNull": true,
671
+ "autoincrement": false
672
+ },
673
+ "namespace": {
674
+ "name": "namespace",
675
+ "type": "text",
676
+ "primaryKey": false,
677
+ "notNull": true,
678
+ "autoincrement": false,
679
+ "default": "'default'"
680
+ },
681
+ "capabilities_json": {
682
+ "name": "capabilities_json",
683
+ "type": "text",
684
+ "primaryKey": false,
685
+ "notNull": true,
686
+ "autoincrement": false,
687
+ "default": "'[]'"
688
+ },
689
+ "entrypoint": {
690
+ "name": "entrypoint",
691
+ "type": "text",
692
+ "primaryKey": false,
693
+ "notNull": false,
694
+ "autoincrement": false
695
+ },
696
+ "version": {
697
+ "name": "version",
698
+ "type": "text",
699
+ "primaryKey": false,
700
+ "notNull": false,
701
+ "autoincrement": false
702
+ },
703
+ "description": {
704
+ "name": "description",
705
+ "type": "text",
706
+ "primaryKey": false,
707
+ "notNull": false,
708
+ "autoincrement": false
709
+ },
710
+ "approver": {
711
+ "name": "approver",
712
+ "type": "text",
713
+ "primaryKey": false,
714
+ "notNull": false,
715
+ "autoincrement": false
716
+ },
717
+ "status": {
718
+ "name": "status",
719
+ "type": "text",
720
+ "primaryKey": false,
721
+ "notNull": true,
722
+ "autoincrement": false,
723
+ "default": "'active'"
724
+ },
725
+ "scan_root": {
726
+ "name": "scan_root",
727
+ "type": "text",
728
+ "primaryKey": false,
729
+ "notNull": true,
730
+ "autoincrement": false,
731
+ "default": "''"
732
+ },
733
+ "behavior_json": {
734
+ "name": "behavior_json",
735
+ "type": "text",
736
+ "primaryKey": false,
737
+ "notNull": true,
738
+ "autoincrement": false,
739
+ "default": "'{\"responseMode\":\"always\"}'"
740
+ },
741
+ "budget_json": {
742
+ "name": "budget_json",
743
+ "type": "text",
744
+ "primaryKey": false,
745
+ "notNull": true,
746
+ "autoincrement": false,
747
+ "default": "'{\"maxHopsPerMessage\":5,\"maxCallsPerHour\":100}'"
748
+ },
749
+ "last_seen_at": {
750
+ "name": "last_seen_at",
751
+ "type": "text",
752
+ "primaryKey": false,
753
+ "notNull": false,
754
+ "autoincrement": false
755
+ },
756
+ "last_seen_event": {
757
+ "name": "last_seen_event",
758
+ "type": "text",
759
+ "primaryKey": false,
760
+ "notNull": false,
761
+ "autoincrement": false
762
+ },
763
+ "persona": {
764
+ "name": "persona",
765
+ "type": "text",
766
+ "primaryKey": false,
767
+ "notNull": false,
768
+ "autoincrement": false
769
+ },
770
+ "persona_enabled": {
771
+ "name": "persona_enabled",
772
+ "type": "integer",
773
+ "primaryKey": false,
774
+ "notNull": true,
775
+ "autoincrement": false,
776
+ "default": true
777
+ },
778
+ "traits_json": {
779
+ "name": "traits_json",
780
+ "type": "text",
781
+ "primaryKey": false,
782
+ "notNull": false,
783
+ "autoincrement": false
784
+ },
785
+ "conventions_json": {
786
+ "name": "conventions_json",
787
+ "type": "text",
788
+ "primaryKey": false,
789
+ "notNull": false,
790
+ "autoincrement": false
791
+ },
792
+ "color": {
793
+ "name": "color",
794
+ "type": "text",
795
+ "primaryKey": false,
796
+ "notNull": false,
797
+ "autoincrement": false
798
+ },
799
+ "icon": {
800
+ "name": "icon",
801
+ "type": "text",
802
+ "primaryKey": false,
803
+ "notNull": false,
804
+ "autoincrement": false
805
+ },
806
+ "registered_at": {
807
+ "name": "registered_at",
808
+ "type": "text",
809
+ "primaryKey": false,
810
+ "notNull": true,
811
+ "autoincrement": false
812
+ },
813
+ "updated_at": {
814
+ "name": "updated_at",
815
+ "type": "text",
816
+ "primaryKey": false,
817
+ "notNull": true,
818
+ "autoincrement": false
819
+ }
820
+ },
821
+ "indexes": {
822
+ "agents_project_path_unique": {
823
+ "name": "agents_project_path_unique",
824
+ "columns": [
825
+ "project_path"
826
+ ],
827
+ "isUnique": true
828
+ }
829
+ },
830
+ "foreignKeys": {},
831
+ "compositePrimaryKeys": {},
832
+ "uniqueConstraints": {},
833
+ "checkConstraints": {}
834
+ },
835
+ "rate_limit_buckets": {
836
+ "name": "rate_limit_buckets",
837
+ "columns": {
838
+ "agent_id": {
839
+ "name": "agent_id",
840
+ "type": "text",
841
+ "primaryKey": false,
842
+ "notNull": true,
843
+ "autoincrement": false
844
+ },
845
+ "bucket_minute": {
846
+ "name": "bucket_minute",
847
+ "type": "integer",
848
+ "primaryKey": false,
849
+ "notNull": true,
850
+ "autoincrement": false
851
+ },
852
+ "count": {
853
+ "name": "count",
854
+ "type": "integer",
855
+ "primaryKey": false,
856
+ "notNull": true,
857
+ "autoincrement": false,
858
+ "default": 0
859
+ }
860
+ },
861
+ "indexes": {
862
+ "idx_rate_limit_agent_minute": {
863
+ "name": "idx_rate_limit_agent_minute",
864
+ "columns": [
865
+ "agent_id",
866
+ "bucket_minute"
867
+ ],
868
+ "isUnique": true
869
+ }
870
+ },
871
+ "foreignKeys": {},
872
+ "compositePrimaryKeys": {},
873
+ "uniqueConstraints": {},
874
+ "checkConstraints": {}
875
+ }
876
+ },
877
+ "views": {},
878
+ "enums": {},
879
+ "_meta": {
880
+ "schemas": {},
881
+ "tables": {},
882
+ "columns": {}
883
+ },
884
+ "internal": {
885
+ "indexes": {}
886
+ }
887
+ }