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,868 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "d631eed2-cdd7-4620-904a-9d4fcb5162db",
5
+ "prevId": "4d751122-18ca-4dae-91f4-e89551cbc0d0",
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": false,
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
+ "created_at": {
397
+ "name": "created_at",
398
+ "type": "text",
399
+ "primaryKey": false,
400
+ "notNull": true,
401
+ "autoincrement": false
402
+ },
403
+ "updated_at": {
404
+ "name": "updated_at",
405
+ "type": "text",
406
+ "primaryKey": false,
407
+ "notNull": true,
408
+ "autoincrement": false
409
+ }
410
+ },
411
+ "indexes": {},
412
+ "foreignKeys": {},
413
+ "compositePrimaryKeys": {},
414
+ "uniqueConstraints": {},
415
+ "checkConstraints": {}
416
+ },
417
+ "relay_index": {
418
+ "name": "relay_index",
419
+ "columns": {
420
+ "id": {
421
+ "name": "id",
422
+ "type": "text",
423
+ "primaryKey": true,
424
+ "notNull": true,
425
+ "autoincrement": false
426
+ },
427
+ "subject": {
428
+ "name": "subject",
429
+ "type": "text",
430
+ "primaryKey": false,
431
+ "notNull": true,
432
+ "autoincrement": false
433
+ },
434
+ "endpoint_hash": {
435
+ "name": "endpoint_hash",
436
+ "type": "text",
437
+ "primaryKey": false,
438
+ "notNull": true,
439
+ "autoincrement": false
440
+ },
441
+ "status": {
442
+ "name": "status",
443
+ "type": "text",
444
+ "primaryKey": false,
445
+ "notNull": true,
446
+ "autoincrement": false,
447
+ "default": "'pending'"
448
+ },
449
+ "expires_at": {
450
+ "name": "expires_at",
451
+ "type": "text",
452
+ "primaryKey": false,
453
+ "notNull": false,
454
+ "autoincrement": false
455
+ },
456
+ "sender": {
457
+ "name": "sender",
458
+ "type": "text",
459
+ "primaryKey": false,
460
+ "notNull": false,
461
+ "autoincrement": false
462
+ },
463
+ "payload": {
464
+ "name": "payload",
465
+ "type": "text",
466
+ "primaryKey": false,
467
+ "notNull": false,
468
+ "autoincrement": false
469
+ },
470
+ "metadata": {
471
+ "name": "metadata",
472
+ "type": "text",
473
+ "primaryKey": false,
474
+ "notNull": false,
475
+ "autoincrement": false
476
+ },
477
+ "created_at": {
478
+ "name": "created_at",
479
+ "type": "text",
480
+ "primaryKey": false,
481
+ "notNull": true,
482
+ "autoincrement": false
483
+ }
484
+ },
485
+ "indexes": {},
486
+ "foreignKeys": {},
487
+ "compositePrimaryKeys": {},
488
+ "uniqueConstraints": {},
489
+ "checkConstraints": {}
490
+ },
491
+ "relay_traces": {
492
+ "name": "relay_traces",
493
+ "columns": {
494
+ "id": {
495
+ "name": "id",
496
+ "type": "text",
497
+ "primaryKey": true,
498
+ "notNull": true,
499
+ "autoincrement": false
500
+ },
501
+ "message_id": {
502
+ "name": "message_id",
503
+ "type": "text",
504
+ "primaryKey": false,
505
+ "notNull": true,
506
+ "autoincrement": false
507
+ },
508
+ "trace_id": {
509
+ "name": "trace_id",
510
+ "type": "text",
511
+ "primaryKey": false,
512
+ "notNull": true,
513
+ "autoincrement": false
514
+ },
515
+ "subject": {
516
+ "name": "subject",
517
+ "type": "text",
518
+ "primaryKey": false,
519
+ "notNull": true,
520
+ "autoincrement": false
521
+ },
522
+ "status": {
523
+ "name": "status",
524
+ "type": "text",
525
+ "primaryKey": false,
526
+ "notNull": true,
527
+ "autoincrement": false
528
+ },
529
+ "sent_at": {
530
+ "name": "sent_at",
531
+ "type": "text",
532
+ "primaryKey": false,
533
+ "notNull": true,
534
+ "autoincrement": false
535
+ },
536
+ "delivered_at": {
537
+ "name": "delivered_at",
538
+ "type": "text",
539
+ "primaryKey": false,
540
+ "notNull": false,
541
+ "autoincrement": false
542
+ },
543
+ "processed_at": {
544
+ "name": "processed_at",
545
+ "type": "text",
546
+ "primaryKey": false,
547
+ "notNull": false,
548
+ "autoincrement": false
549
+ },
550
+ "error_message": {
551
+ "name": "error_message",
552
+ "type": "text",
553
+ "primaryKey": false,
554
+ "notNull": false,
555
+ "autoincrement": false
556
+ },
557
+ "metadata": {
558
+ "name": "metadata",
559
+ "type": "text",
560
+ "primaryKey": false,
561
+ "notNull": false,
562
+ "autoincrement": false
563
+ }
564
+ },
565
+ "indexes": {
566
+ "relay_traces_message_id_unique": {
567
+ "name": "relay_traces_message_id_unique",
568
+ "columns": ["message_id"],
569
+ "isUnique": true
570
+ }
571
+ },
572
+ "foreignKeys": {},
573
+ "compositePrimaryKeys": {},
574
+ "uniqueConstraints": {},
575
+ "checkConstraints": {}
576
+ },
577
+ "agent_denials": {
578
+ "name": "agent_denials",
579
+ "columns": {
580
+ "id": {
581
+ "name": "id",
582
+ "type": "text",
583
+ "primaryKey": true,
584
+ "notNull": true,
585
+ "autoincrement": false
586
+ },
587
+ "path": {
588
+ "name": "path",
589
+ "type": "text",
590
+ "primaryKey": false,
591
+ "notNull": true,
592
+ "autoincrement": false
593
+ },
594
+ "reason": {
595
+ "name": "reason",
596
+ "type": "text",
597
+ "primaryKey": false,
598
+ "notNull": false,
599
+ "autoincrement": false
600
+ },
601
+ "denier": {
602
+ "name": "denier",
603
+ "type": "text",
604
+ "primaryKey": false,
605
+ "notNull": false,
606
+ "autoincrement": false
607
+ },
608
+ "created_at": {
609
+ "name": "created_at",
610
+ "type": "text",
611
+ "primaryKey": false,
612
+ "notNull": true,
613
+ "autoincrement": false
614
+ }
615
+ },
616
+ "indexes": {
617
+ "agent_denials_path_unique": {
618
+ "name": "agent_denials_path_unique",
619
+ "columns": ["path"],
620
+ "isUnique": true
621
+ }
622
+ },
623
+ "foreignKeys": {},
624
+ "compositePrimaryKeys": {},
625
+ "uniqueConstraints": {},
626
+ "checkConstraints": {}
627
+ },
628
+ "agents": {
629
+ "name": "agents",
630
+ "columns": {
631
+ "id": {
632
+ "name": "id",
633
+ "type": "text",
634
+ "primaryKey": true,
635
+ "notNull": true,
636
+ "autoincrement": false
637
+ },
638
+ "name": {
639
+ "name": "name",
640
+ "type": "text",
641
+ "primaryKey": false,
642
+ "notNull": true,
643
+ "autoincrement": false
644
+ },
645
+ "runtime": {
646
+ "name": "runtime",
647
+ "type": "text",
648
+ "primaryKey": false,
649
+ "notNull": true,
650
+ "autoincrement": false
651
+ },
652
+ "project_path": {
653
+ "name": "project_path",
654
+ "type": "text",
655
+ "primaryKey": false,
656
+ "notNull": true,
657
+ "autoincrement": false
658
+ },
659
+ "namespace": {
660
+ "name": "namespace",
661
+ "type": "text",
662
+ "primaryKey": false,
663
+ "notNull": true,
664
+ "autoincrement": false,
665
+ "default": "'default'"
666
+ },
667
+ "capabilities_json": {
668
+ "name": "capabilities_json",
669
+ "type": "text",
670
+ "primaryKey": false,
671
+ "notNull": true,
672
+ "autoincrement": false,
673
+ "default": "'[]'"
674
+ },
675
+ "entrypoint": {
676
+ "name": "entrypoint",
677
+ "type": "text",
678
+ "primaryKey": false,
679
+ "notNull": false,
680
+ "autoincrement": false
681
+ },
682
+ "version": {
683
+ "name": "version",
684
+ "type": "text",
685
+ "primaryKey": false,
686
+ "notNull": false,
687
+ "autoincrement": false
688
+ },
689
+ "description": {
690
+ "name": "description",
691
+ "type": "text",
692
+ "primaryKey": false,
693
+ "notNull": false,
694
+ "autoincrement": false
695
+ },
696
+ "approver": {
697
+ "name": "approver",
698
+ "type": "text",
699
+ "primaryKey": false,
700
+ "notNull": false,
701
+ "autoincrement": false
702
+ },
703
+ "status": {
704
+ "name": "status",
705
+ "type": "text",
706
+ "primaryKey": false,
707
+ "notNull": true,
708
+ "autoincrement": false,
709
+ "default": "'active'"
710
+ },
711
+ "scan_root": {
712
+ "name": "scan_root",
713
+ "type": "text",
714
+ "primaryKey": false,
715
+ "notNull": true,
716
+ "autoincrement": false,
717
+ "default": "''"
718
+ },
719
+ "behavior_json": {
720
+ "name": "behavior_json",
721
+ "type": "text",
722
+ "primaryKey": false,
723
+ "notNull": true,
724
+ "autoincrement": false,
725
+ "default": "'{\"responseMode\":\"always\"}'"
726
+ },
727
+ "budget_json": {
728
+ "name": "budget_json",
729
+ "type": "text",
730
+ "primaryKey": false,
731
+ "notNull": true,
732
+ "autoincrement": false,
733
+ "default": "'{\"maxHopsPerMessage\":5,\"maxCallsPerHour\":100}'"
734
+ },
735
+ "last_seen_at": {
736
+ "name": "last_seen_at",
737
+ "type": "text",
738
+ "primaryKey": false,
739
+ "notNull": false,
740
+ "autoincrement": false
741
+ },
742
+ "last_seen_event": {
743
+ "name": "last_seen_event",
744
+ "type": "text",
745
+ "primaryKey": false,
746
+ "notNull": false,
747
+ "autoincrement": false
748
+ },
749
+ "persona": {
750
+ "name": "persona",
751
+ "type": "text",
752
+ "primaryKey": false,
753
+ "notNull": false,
754
+ "autoincrement": false
755
+ },
756
+ "persona_enabled": {
757
+ "name": "persona_enabled",
758
+ "type": "integer",
759
+ "primaryKey": false,
760
+ "notNull": true,
761
+ "autoincrement": false,
762
+ "default": true
763
+ },
764
+ "traits_json": {
765
+ "name": "traits_json",
766
+ "type": "text",
767
+ "primaryKey": false,
768
+ "notNull": false,
769
+ "autoincrement": false
770
+ },
771
+ "conventions_json": {
772
+ "name": "conventions_json",
773
+ "type": "text",
774
+ "primaryKey": false,
775
+ "notNull": false,
776
+ "autoincrement": false
777
+ },
778
+ "color": {
779
+ "name": "color",
780
+ "type": "text",
781
+ "primaryKey": false,
782
+ "notNull": false,
783
+ "autoincrement": false
784
+ },
785
+ "icon": {
786
+ "name": "icon",
787
+ "type": "text",
788
+ "primaryKey": false,
789
+ "notNull": false,
790
+ "autoincrement": false
791
+ },
792
+ "registered_at": {
793
+ "name": "registered_at",
794
+ "type": "text",
795
+ "primaryKey": false,
796
+ "notNull": true,
797
+ "autoincrement": false
798
+ },
799
+ "updated_at": {
800
+ "name": "updated_at",
801
+ "type": "text",
802
+ "primaryKey": false,
803
+ "notNull": true,
804
+ "autoincrement": false
805
+ }
806
+ },
807
+ "indexes": {
808
+ "agents_project_path_unique": {
809
+ "name": "agents_project_path_unique",
810
+ "columns": ["project_path"],
811
+ "isUnique": true
812
+ }
813
+ },
814
+ "foreignKeys": {},
815
+ "compositePrimaryKeys": {},
816
+ "uniqueConstraints": {},
817
+ "checkConstraints": {}
818
+ },
819
+ "rate_limit_buckets": {
820
+ "name": "rate_limit_buckets",
821
+ "columns": {
822
+ "agent_id": {
823
+ "name": "agent_id",
824
+ "type": "text",
825
+ "primaryKey": false,
826
+ "notNull": true,
827
+ "autoincrement": false
828
+ },
829
+ "bucket_minute": {
830
+ "name": "bucket_minute",
831
+ "type": "integer",
832
+ "primaryKey": false,
833
+ "notNull": true,
834
+ "autoincrement": false
835
+ },
836
+ "count": {
837
+ "name": "count",
838
+ "type": "integer",
839
+ "primaryKey": false,
840
+ "notNull": true,
841
+ "autoincrement": false,
842
+ "default": 0
843
+ }
844
+ },
845
+ "indexes": {
846
+ "idx_rate_limit_agent_minute": {
847
+ "name": "idx_rate_limit_agent_minute",
848
+ "columns": ["agent_id", "bucket_minute"],
849
+ "isUnique": true
850
+ }
851
+ },
852
+ "foreignKeys": {},
853
+ "compositePrimaryKeys": {},
854
+ "uniqueConstraints": {},
855
+ "checkConstraints": {}
856
+ }
857
+ },
858
+ "views": {},
859
+ "enums": {},
860
+ "_meta": {
861
+ "schemas": {},
862
+ "tables": {},
863
+ "columns": {}
864
+ },
865
+ "internal": {
866
+ "indexes": {}
867
+ }
868
+ }