team-anya-cli 0.1.6 → 0.1.7

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.
@@ -1,987 +0,0 @@
1
- {
2
- "version": "6",
3
- "dialect": "sqlite",
4
- "id": "8d264a3b-dd92-4e4b-9f16-1c199e4c3714",
5
- "prevId": "00000000-0000-0000-0000-000000000000",
6
- "tables": {
7
- "audit_events": {
8
- "name": "audit_events",
9
- "columns": {
10
- "id": {
11
- "name": "id",
12
- "type": "integer",
13
- "primaryKey": true,
14
- "notNull": true,
15
- "autoincrement": true
16
- },
17
- "event_type": {
18
- "name": "event_type",
19
- "type": "text",
20
- "primaryKey": false,
21
- "notNull": true,
22
- "autoincrement": false
23
- },
24
- "actor": {
25
- "name": "actor",
26
- "type": "text",
27
- "primaryKey": false,
28
- "notNull": true,
29
- "autoincrement": false
30
- },
31
- "task_id": {
32
- "name": "task_id",
33
- "type": "text",
34
- "primaryKey": false,
35
- "notNull": false,
36
- "autoincrement": false
37
- },
38
- "summary": {
39
- "name": "summary",
40
- "type": "text",
41
- "primaryKey": false,
42
- "notNull": true,
43
- "autoincrement": false
44
- },
45
- "detail": {
46
- "name": "detail",
47
- "type": "text",
48
- "primaryKey": false,
49
- "notNull": false,
50
- "autoincrement": false
51
- },
52
- "file_ref": {
53
- "name": "file_ref",
54
- "type": "text",
55
- "primaryKey": false,
56
- "notNull": false,
57
- "autoincrement": false
58
- },
59
- "created_at": {
60
- "name": "created_at",
61
- "type": "text",
62
- "primaryKey": false,
63
- "notNull": true,
64
- "autoincrement": false,
65
- "default": "(datetime('now'))"
66
- }
67
- },
68
- "indexes": {},
69
- "foreignKeys": {},
70
- "compositePrimaryKeys": {},
71
- "uniqueConstraints": {},
72
- "checkConstraints": {}
73
- },
74
- "commitments": {
75
- "name": "commitments",
76
- "columns": {
77
- "id": {
78
- "name": "id",
79
- "type": "integer",
80
- "primaryKey": true,
81
- "notNull": true,
82
- "autoincrement": true
83
- },
84
- "task_id": {
85
- "name": "task_id",
86
- "type": "text",
87
- "primaryKey": false,
88
- "notNull": true,
89
- "autoincrement": false
90
- },
91
- "promised_to": {
92
- "name": "promised_to",
93
- "type": "text",
94
- "primaryKey": false,
95
- "notNull": true,
96
- "autoincrement": false
97
- },
98
- "promise": {
99
- "name": "promise",
100
- "type": "text",
101
- "primaryKey": false,
102
- "notNull": true,
103
- "autoincrement": false
104
- },
105
- "deadline": {
106
- "name": "deadline",
107
- "type": "text",
108
- "primaryKey": false,
109
- "notNull": false,
110
- "autoincrement": false
111
- },
112
- "status": {
113
- "name": "status",
114
- "type": "text",
115
- "primaryKey": false,
116
- "notNull": true,
117
- "autoincrement": false,
118
- "default": "'active'"
119
- },
120
- "break_reason": {
121
- "name": "break_reason",
122
- "type": "text",
123
- "primaryKey": false,
124
- "notNull": false,
125
- "autoincrement": false
126
- },
127
- "promised_at": {
128
- "name": "promised_at",
129
- "type": "text",
130
- "primaryKey": false,
131
- "notNull": true,
132
- "autoincrement": false,
133
- "default": "(datetime('now'))"
134
- }
135
- },
136
- "indexes": {},
137
- "foreignKeys": {
138
- "commitments_task_id_tasks_task_id_fk": {
139
- "name": "commitments_task_id_tasks_task_id_fk",
140
- "tableFrom": "commitments",
141
- "tableTo": "tasks",
142
- "columnsFrom": [
143
- "task_id"
144
- ],
145
- "columnsTo": [
146
- "task_id"
147
- ],
148
- "onDelete": "no action",
149
- "onUpdate": "no action"
150
- }
151
- },
152
- "compositePrimaryKeys": {},
153
- "uniqueConstraints": {},
154
- "checkConstraints": {}
155
- },
156
- "communication_events": {
157
- "name": "communication_events",
158
- "columns": {
159
- "id": {
160
- "name": "id",
161
- "type": "integer",
162
- "primaryKey": true,
163
- "notNull": true,
164
- "autoincrement": true
165
- },
166
- "source_type": {
167
- "name": "source_type",
168
- "type": "text",
169
- "primaryKey": false,
170
- "notNull": true,
171
- "autoincrement": false
172
- },
173
- "source_ref": {
174
- "name": "source_ref",
175
- "type": "text",
176
- "primaryKey": false,
177
- "notNull": false,
178
- "autoincrement": false
179
- },
180
- "intent_level": {
181
- "name": "intent_level",
182
- "type": "integer",
183
- "primaryKey": false,
184
- "notNull": true,
185
- "autoincrement": false
186
- },
187
- "sender": {
188
- "name": "sender",
189
- "type": "text",
190
- "primaryKey": false,
191
- "notNull": false,
192
- "autoincrement": false
193
- },
194
- "summary": {
195
- "name": "summary",
196
- "type": "text",
197
- "primaryKey": false,
198
- "notNull": true,
199
- "autoincrement": false
200
- },
201
- "raw_content_path": {
202
- "name": "raw_content_path",
203
- "type": "text",
204
- "primaryKey": false,
205
- "notNull": false,
206
- "autoincrement": false
207
- },
208
- "opportunity_id": {
209
- "name": "opportunity_id",
210
- "type": "text",
211
- "primaryKey": false,
212
- "notNull": false,
213
- "autoincrement": false
214
- },
215
- "created_at": {
216
- "name": "created_at",
217
- "type": "text",
218
- "primaryKey": false,
219
- "notNull": true,
220
- "autoincrement": false,
221
- "default": "(datetime('now'))"
222
- }
223
- },
224
- "indexes": {},
225
- "foreignKeys": {},
226
- "compositePrimaryKeys": {},
227
- "uniqueConstraints": {},
228
- "checkConstraints": {}
229
- },
230
- "task_clarifications": {
231
- "name": "task_clarifications",
232
- "columns": {
233
- "id": {
234
- "name": "id",
235
- "type": "integer",
236
- "primaryKey": true,
237
- "notNull": true,
238
- "autoincrement": true
239
- },
240
- "task_id": {
241
- "name": "task_id",
242
- "type": "text",
243
- "primaryKey": false,
244
- "notNull": true,
245
- "autoincrement": false
246
- },
247
- "question": {
248
- "name": "question",
249
- "type": "text",
250
- "primaryKey": false,
251
- "notNull": true,
252
- "autoincrement": false
253
- },
254
- "answer": {
255
- "name": "answer",
256
- "type": "text",
257
- "primaryKey": false,
258
- "notNull": false,
259
- "autoincrement": false
260
- },
261
- "asked_by": {
262
- "name": "asked_by",
263
- "type": "text",
264
- "primaryKey": false,
265
- "notNull": true,
266
- "autoincrement": false,
267
- "default": "'loid'"
268
- },
269
- "answered_by": {
270
- "name": "answered_by",
271
- "type": "text",
272
- "primaryKey": false,
273
- "notNull": false,
274
- "autoincrement": false
275
- },
276
- "asked_at": {
277
- "name": "asked_at",
278
- "type": "text",
279
- "primaryKey": false,
280
- "notNull": true,
281
- "autoincrement": false,
282
- "default": "(datetime('now'))"
283
- },
284
- "answered_at": {
285
- "name": "answered_at",
286
- "type": "text",
287
- "primaryKey": false,
288
- "notNull": false,
289
- "autoincrement": false
290
- }
291
- },
292
- "indexes": {},
293
- "foreignKeys": {
294
- "task_clarifications_task_id_tasks_task_id_fk": {
295
- "name": "task_clarifications_task_id_tasks_task_id_fk",
296
- "tableFrom": "task_clarifications",
297
- "tableTo": "tasks",
298
- "columnsFrom": [
299
- "task_id"
300
- ],
301
- "columnsTo": [
302
- "task_id"
303
- ],
304
- "onDelete": "no action",
305
- "onUpdate": "no action"
306
- }
307
- },
308
- "compositePrimaryKeys": {},
309
- "uniqueConstraints": {},
310
- "checkConstraints": {}
311
- },
312
- "tasks": {
313
- "name": "tasks",
314
- "columns": {
315
- "task_id": {
316
- "name": "task_id",
317
- "type": "text",
318
- "primaryKey": true,
319
- "notNull": true,
320
- "autoincrement": false
321
- },
322
- "title": {
323
- "name": "title",
324
- "type": "text",
325
- "primaryKey": false,
326
- "notNull": true,
327
- "autoincrement": false
328
- },
329
- "status": {
330
- "name": "status",
331
- "type": "text",
332
- "primaryKey": false,
333
- "notNull": true,
334
- "autoincrement": false,
335
- "default": "'NEW'"
336
- },
337
- "source_type": {
338
- "name": "source_type",
339
- "type": "text",
340
- "primaryKey": false,
341
- "notNull": true,
342
- "autoincrement": false
343
- },
344
- "source_ref": {
345
- "name": "source_ref",
346
- "type": "text",
347
- "primaryKey": false,
348
- "notNull": false,
349
- "autoincrement": false
350
- },
351
- "objective": {
352
- "name": "objective",
353
- "type": "text",
354
- "primaryKey": false,
355
- "notNull": false,
356
- "autoincrement": false
357
- },
358
- "acceptance_criteria": {
359
- "name": "acceptance_criteria",
360
- "type": "text",
361
- "primaryKey": false,
362
- "notNull": false,
363
- "autoincrement": false
364
- },
365
- "context": {
366
- "name": "context",
367
- "type": "text",
368
- "primaryKey": false,
369
- "notNull": false,
370
- "autoincrement": false
371
- },
372
- "project_id": {
373
- "name": "project_id",
374
- "type": "text",
375
- "primaryKey": false,
376
- "notNull": false,
377
- "autoincrement": false
378
- },
379
- "assignee": {
380
- "name": "assignee",
381
- "type": "text",
382
- "primaryKey": false,
383
- "notNull": false,
384
- "autoincrement": false
385
- },
386
- "branch": {
387
- "name": "branch",
388
- "type": "text",
389
- "primaryKey": false,
390
- "notNull": false,
391
- "autoincrement": false
392
- },
393
- "pr_url": {
394
- "name": "pr_url",
395
- "type": "text",
396
- "primaryKey": false,
397
- "notNull": false,
398
- "autoincrement": false
399
- },
400
- "retry_count": {
401
- "name": "retry_count",
402
- "type": "integer",
403
- "primaryKey": false,
404
- "notNull": true,
405
- "autoincrement": false,
406
- "default": 0
407
- },
408
- "max_retries": {
409
- "name": "max_retries",
410
- "type": "integer",
411
- "primaryKey": false,
412
- "notNull": true,
413
- "autoincrement": false,
414
- "default": 3
415
- },
416
- "blocked_reason": {
417
- "name": "blocked_reason",
418
- "type": "text",
419
- "primaryKey": false,
420
- "notNull": false,
421
- "autoincrement": false
422
- },
423
- "blocked_since": {
424
- "name": "blocked_since",
425
- "type": "text",
426
- "primaryKey": false,
427
- "notNull": false,
428
- "autoincrement": false
429
- },
430
- "execution_guidance": {
431
- "name": "execution_guidance",
432
- "type": "text",
433
- "primaryKey": false,
434
- "notNull": false,
435
- "autoincrement": false
436
- },
437
- "workspace_path": {
438
- "name": "workspace_path",
439
- "type": "text",
440
- "primaryKey": false,
441
- "notNull": false,
442
- "autoincrement": false
443
- },
444
- "created_at": {
445
- "name": "created_at",
446
- "type": "text",
447
- "primaryKey": false,
448
- "notNull": true,
449
- "autoincrement": false,
450
- "default": "(datetime('now'))"
451
- },
452
- "updated_at": {
453
- "name": "updated_at",
454
- "type": "text",
455
- "primaryKey": false,
456
- "notNull": true,
457
- "autoincrement": false,
458
- "default": "(datetime('now'))"
459
- }
460
- },
461
- "indexes": {},
462
- "foreignKeys": {},
463
- "compositePrimaryKeys": {},
464
- "uniqueConstraints": {},
465
- "checkConstraints": {}
466
- },
467
- "opportunities": {
468
- "name": "opportunities",
469
- "columns": {
470
- "id": {
471
- "name": "id",
472
- "type": "text",
473
- "primaryKey": true,
474
- "notNull": true,
475
- "autoincrement": false
476
- },
477
- "status": {
478
- "name": "status",
479
- "type": "text",
480
- "primaryKey": false,
481
- "notNull": true,
482
- "autoincrement": false,
483
- "default": "'detected'"
484
- },
485
- "source_ref": {
486
- "name": "source_ref",
487
- "type": "text",
488
- "primaryKey": false,
489
- "notNull": false,
490
- "autoincrement": false
491
- },
492
- "summary": {
493
- "name": "summary",
494
- "type": "text",
495
- "primaryKey": false,
496
- "notNull": true,
497
- "autoincrement": false
498
- },
499
- "score_impact": {
500
- "name": "score_impact",
501
- "type": "real",
502
- "primaryKey": false,
503
- "notNull": false,
504
- "autoincrement": false
505
- },
506
- "score_urgency": {
507
- "name": "score_urgency",
508
- "type": "real",
509
- "primaryKey": false,
510
- "notNull": false,
511
- "autoincrement": false
512
- },
513
- "score_feasibility": {
514
- "name": "score_feasibility",
515
- "type": "real",
516
- "primaryKey": false,
517
- "notNull": false,
518
- "autoincrement": false
519
- },
520
- "score_permission": {
521
- "name": "score_permission",
522
- "type": "real",
523
- "primaryKey": false,
524
- "notNull": false,
525
- "autoincrement": false
526
- },
527
- "total_score": {
528
- "name": "total_score",
529
- "type": "real",
530
- "primaryKey": false,
531
- "notNull": false,
532
- "autoincrement": false
533
- },
534
- "converted_task_id": {
535
- "name": "converted_task_id",
536
- "type": "text",
537
- "primaryKey": false,
538
- "notNull": false,
539
- "autoincrement": false
540
- },
541
- "detected_at": {
542
- "name": "detected_at",
543
- "type": "text",
544
- "primaryKey": false,
545
- "notNull": true,
546
- "autoincrement": false,
547
- "default": "(datetime('now'))"
548
- },
549
- "claimed_at": {
550
- "name": "claimed_at",
551
- "type": "text",
552
- "primaryKey": false,
553
- "notNull": false,
554
- "autoincrement": false
555
- }
556
- },
557
- "indexes": {},
558
- "foreignKeys": {
559
- "opportunities_converted_task_id_tasks_task_id_fk": {
560
- "name": "opportunities_converted_task_id_tasks_task_id_fk",
561
- "tableFrom": "opportunities",
562
- "tableTo": "tasks",
563
- "columnsFrom": [
564
- "converted_task_id"
565
- ],
566
- "columnsTo": [
567
- "task_id"
568
- ],
569
- "onDelete": "no action",
570
- "onUpdate": "no action"
571
- }
572
- },
573
- "compositePrimaryKeys": {},
574
- "uniqueConstraints": {},
575
- "checkConstraints": {}
576
- },
577
- "message_log": {
578
- "name": "message_log",
579
- "columns": {
580
- "id": {
581
- "name": "id",
582
- "type": "integer",
583
- "primaryKey": true,
584
- "notNull": true,
585
- "autoincrement": true
586
- },
587
- "direction": {
588
- "name": "direction",
589
- "type": "text",
590
- "primaryKey": false,
591
- "notNull": true,
592
- "autoincrement": false
593
- },
594
- "source_type": {
595
- "name": "source_type",
596
- "type": "text",
597
- "primaryKey": false,
598
- "notNull": true,
599
- "autoincrement": false
600
- },
601
- "source_ref": {
602
- "name": "source_ref",
603
- "type": "text",
604
- "primaryKey": false,
605
- "notNull": false,
606
- "autoincrement": false
607
- },
608
- "sender": {
609
- "name": "sender",
610
- "type": "text",
611
- "primaryKey": false,
612
- "notNull": false,
613
- "autoincrement": false
614
- },
615
- "receiver": {
616
- "name": "receiver",
617
- "type": "text",
618
- "primaryKey": false,
619
- "notNull": false,
620
- "autoincrement": false
621
- },
622
- "chat_id": {
623
- "name": "chat_id",
624
- "type": "text",
625
- "primaryKey": false,
626
- "notNull": false,
627
- "autoincrement": false
628
- },
629
- "chat_type": {
630
- "name": "chat_type",
631
- "type": "text",
632
- "primaryKey": false,
633
- "notNull": false,
634
- "autoincrement": false
635
- },
636
- "content": {
637
- "name": "content",
638
- "type": "text",
639
- "primaryKey": false,
640
- "notNull": true,
641
- "autoincrement": false
642
- },
643
- "message_type": {
644
- "name": "message_type",
645
- "type": "text",
646
- "primaryKey": false,
647
- "notNull": false,
648
- "autoincrement": false
649
- },
650
- "intent_level": {
651
- "name": "intent_level",
652
- "type": "integer",
653
- "primaryKey": false,
654
- "notNull": false,
655
- "autoincrement": false
656
- },
657
- "related_task_id": {
658
- "name": "related_task_id",
659
- "type": "text",
660
- "primaryKey": false,
661
- "notNull": false,
662
- "autoincrement": false
663
- },
664
- "metadata": {
665
- "name": "metadata",
666
- "type": "text",
667
- "primaryKey": false,
668
- "notNull": false,
669
- "autoincrement": false
670
- },
671
- "trace_id": {
672
- "name": "trace_id",
673
- "type": "text",
674
- "primaryKey": false,
675
- "notNull": false,
676
- "autoincrement": false
677
- },
678
- "created_at": {
679
- "name": "created_at",
680
- "type": "text",
681
- "primaryKey": false,
682
- "notNull": true,
683
- "autoincrement": false,
684
- "default": "(datetime('now'))"
685
- }
686
- },
687
- "indexes": {},
688
- "foreignKeys": {},
689
- "compositePrimaryKeys": {},
690
- "uniqueConstraints": {},
691
- "checkConstraints": {}
692
- },
693
- "org_escalation_rules": {
694
- "name": "org_escalation_rules",
695
- "columns": {
696
- "id": {
697
- "name": "id",
698
- "type": "integer",
699
- "primaryKey": true,
700
- "notNull": true,
701
- "autoincrement": true
702
- },
703
- "scope": {
704
- "name": "scope",
705
- "type": "text",
706
- "primaryKey": false,
707
- "notNull": true,
708
- "autoincrement": false,
709
- "default": "'global'"
710
- },
711
- "after_minutes": {
712
- "name": "after_minutes",
713
- "type": "integer",
714
- "primaryKey": false,
715
- "notNull": true,
716
- "autoincrement": false
717
- },
718
- "action": {
719
- "name": "action",
720
- "type": "text",
721
- "primaryKey": false,
722
- "notNull": true,
723
- "autoincrement": false
724
- },
725
- "targets": {
726
- "name": "targets",
727
- "type": "text",
728
- "primaryKey": false,
729
- "notNull": true,
730
- "autoincrement": false
731
- }
732
- },
733
- "indexes": {},
734
- "foreignKeys": {},
735
- "compositePrimaryKeys": {},
736
- "uniqueConstraints": {},
737
- "checkConstraints": {}
738
- },
739
- "org_members": {
740
- "name": "org_members",
741
- "columns": {
742
- "member_id": {
743
- "name": "member_id",
744
- "type": "text",
745
- "primaryKey": true,
746
- "notNull": true,
747
- "autoincrement": false
748
- },
749
- "name": {
750
- "name": "name",
751
- "type": "text",
752
- "primaryKey": false,
753
- "notNull": true,
754
- "autoincrement": false
755
- },
756
- "role": {
757
- "name": "role",
758
- "type": "text",
759
- "primaryKey": false,
760
- "notNull": false,
761
- "autoincrement": false
762
- },
763
- "team": {
764
- "name": "team",
765
- "type": "text",
766
- "primaryKey": false,
767
- "notNull": false,
768
- "autoincrement": false
769
- },
770
- "timezone": {
771
- "name": "timezone",
772
- "type": "text",
773
- "primaryKey": false,
774
- "notNull": false,
775
- "autoincrement": false
776
- },
777
- "profile_path": {
778
- "name": "profile_path",
779
- "type": "text",
780
- "primaryKey": false,
781
- "notNull": false,
782
- "autoincrement": false
783
- },
784
- "response_pattern": {
785
- "name": "response_pattern",
786
- "type": "text",
787
- "primaryKey": false,
788
- "notNull": false,
789
- "autoincrement": false
790
- },
791
- "updated_at": {
792
- "name": "updated_at",
793
- "type": "text",
794
- "primaryKey": false,
795
- "notNull": true,
796
- "autoincrement": false,
797
- "default": "(datetime('now'))"
798
- }
799
- },
800
- "indexes": {},
801
- "foreignKeys": {},
802
- "compositePrimaryKeys": {},
803
- "uniqueConstraints": {},
804
- "checkConstraints": {}
805
- },
806
- "org_ownership": {
807
- "name": "org_ownership",
808
- "columns": {
809
- "id": {
810
- "name": "id",
811
- "type": "integer",
812
- "primaryKey": true,
813
- "notNull": true,
814
- "autoincrement": true
815
- },
816
- "scope": {
817
- "name": "scope",
818
- "type": "text",
819
- "primaryKey": false,
820
- "notNull": true,
821
- "autoincrement": false
822
- },
823
- "target": {
824
- "name": "target",
825
- "type": "text",
826
- "primaryKey": false,
827
- "notNull": true,
828
- "autoincrement": false
829
- },
830
- "member_id": {
831
- "name": "member_id",
832
- "type": "text",
833
- "primaryKey": false,
834
- "notNull": true,
835
- "autoincrement": false
836
- },
837
- "role": {
838
- "name": "role",
839
- "type": "text",
840
- "primaryKey": false,
841
- "notNull": true,
842
- "autoincrement": false,
843
- "default": "'owner'"
844
- }
845
- },
846
- "indexes": {},
847
- "foreignKeys": {
848
- "org_ownership_member_id_org_members_member_id_fk": {
849
- "name": "org_ownership_member_id_org_members_member_id_fk",
850
- "tableFrom": "org_ownership",
851
- "tableTo": "org_members",
852
- "columnsFrom": [
853
- "member_id"
854
- ],
855
- "columnsTo": [
856
- "member_id"
857
- ],
858
- "onDelete": "no action",
859
- "onUpdate": "no action"
860
- }
861
- },
862
- "compositePrimaryKeys": {},
863
- "uniqueConstraints": {},
864
- "checkConstraints": {}
865
- },
866
- "trace_spans": {
867
- "name": "trace_spans",
868
- "columns": {
869
- "id": {
870
- "name": "id",
871
- "type": "integer",
872
- "primaryKey": true,
873
- "notNull": true,
874
- "autoincrement": true
875
- },
876
- "trace_id": {
877
- "name": "trace_id",
878
- "type": "text",
879
- "primaryKey": false,
880
- "notNull": true,
881
- "autoincrement": false
882
- },
883
- "span_id": {
884
- "name": "span_id",
885
- "type": "text",
886
- "primaryKey": false,
887
- "notNull": true,
888
- "autoincrement": false
889
- },
890
- "parent_span_id": {
891
- "name": "parent_span_id",
892
- "type": "text",
893
- "primaryKey": false,
894
- "notNull": false,
895
- "autoincrement": false
896
- },
897
- "operation": {
898
- "name": "operation",
899
- "type": "text",
900
- "primaryKey": false,
901
- "notNull": true,
902
- "autoincrement": false
903
- },
904
- "status": {
905
- "name": "status",
906
- "type": "text",
907
- "primaryKey": false,
908
- "notNull": true,
909
- "autoincrement": false,
910
- "default": "'in_progress'"
911
- },
912
- "started_at": {
913
- "name": "started_at",
914
- "type": "text",
915
- "primaryKey": false,
916
- "notNull": true,
917
- "autoincrement": false
918
- },
919
- "ended_at": {
920
- "name": "ended_at",
921
- "type": "text",
922
- "primaryKey": false,
923
- "notNull": false,
924
- "autoincrement": false
925
- },
926
- "duration_ms": {
927
- "name": "duration_ms",
928
- "type": "real",
929
- "primaryKey": false,
930
- "notNull": false,
931
- "autoincrement": false
932
- },
933
- "input": {
934
- "name": "input",
935
- "type": "text",
936
- "primaryKey": false,
937
- "notNull": false,
938
- "autoincrement": false
939
- },
940
- "output": {
941
- "name": "output",
942
- "type": "text",
943
- "primaryKey": false,
944
- "notNull": false,
945
- "autoincrement": false
946
- },
947
- "error": {
948
- "name": "error",
949
- "type": "text",
950
- "primaryKey": false,
951
- "notNull": false,
952
- "autoincrement": false
953
- },
954
- "metadata": {
955
- "name": "metadata",
956
- "type": "text",
957
- "primaryKey": false,
958
- "notNull": false,
959
- "autoincrement": false
960
- },
961
- "created_at": {
962
- "name": "created_at",
963
- "type": "text",
964
- "primaryKey": false,
965
- "notNull": true,
966
- "autoincrement": false,
967
- "default": "(datetime('now'))"
968
- }
969
- },
970
- "indexes": {},
971
- "foreignKeys": {},
972
- "compositePrimaryKeys": {},
973
- "uniqueConstraints": {},
974
- "checkConstraints": {}
975
- }
976
- },
977
- "views": {},
978
- "enums": {},
979
- "_meta": {
980
- "schemas": {},
981
- "tables": {},
982
- "columns": {}
983
- },
984
- "internal": {
985
- "indexes": {}
986
- }
987
- }