@meistrari/chat-nuxt 1.12.0 → 1.13.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,899 @@
1
+ {
2
+ "id": "aa88aa54-e3a8-4f8b-8fa7-13472e2dd855",
3
+ "prevId": "7d96ca18-99cf-4ebd-b478-4d77e254efc7",
4
+ "version": "7",
5
+ "dialect": "postgresql",
6
+ "tables": {
7
+ "chat.conversation_groups": {
8
+ "name": "conversation_groups",
9
+ "schema": "chat",
10
+ "columns": {
11
+ "id": {
12
+ "name": "id",
13
+ "type": "uuid",
14
+ "primaryKey": true,
15
+ "notNull": true,
16
+ "default": "gen_random_uuid()"
17
+ },
18
+ "workspace_id": {
19
+ "name": "workspace_id",
20
+ "type": "text",
21
+ "primaryKey": false,
22
+ "notNull": true
23
+ },
24
+ "tela_agent_id": {
25
+ "name": "tela_agent_id",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": false
29
+ },
30
+ "conversation_scope": {
31
+ "name": "conversation_scope",
32
+ "type": "text",
33
+ "primaryKey": false,
34
+ "notNull": false
35
+ },
36
+ "name": {
37
+ "name": "name",
38
+ "type": "text",
39
+ "primaryKey": false,
40
+ "notNull": true
41
+ },
42
+ "created_by": {
43
+ "name": "created_by",
44
+ "type": "text",
45
+ "primaryKey": false,
46
+ "notNull": false
47
+ },
48
+ "created_at": {
49
+ "name": "created_at",
50
+ "type": "timestamp with time zone",
51
+ "primaryKey": false,
52
+ "notNull": true,
53
+ "default": "now()"
54
+ },
55
+ "updated_at": {
56
+ "name": "updated_at",
57
+ "type": "timestamp with time zone",
58
+ "primaryKey": false,
59
+ "notNull": true,
60
+ "default": "now()"
61
+ }
62
+ },
63
+ "indexes": {
64
+ "idx_conversation_groups_workspace": {
65
+ "name": "idx_conversation_groups_workspace",
66
+ "columns": [
67
+ {
68
+ "expression": "workspace_id",
69
+ "isExpression": false,
70
+ "asc": true,
71
+ "nulls": "last"
72
+ }
73
+ ],
74
+ "isUnique": false,
75
+ "concurrently": false,
76
+ "method": "btree",
77
+ "with": {}
78
+ },
79
+ "idx_conversation_groups_runtime_created_at": {
80
+ "name": "idx_conversation_groups_runtime_created_at",
81
+ "columns": [
82
+ {
83
+ "expression": "workspace_id",
84
+ "isExpression": false,
85
+ "asc": true,
86
+ "nulls": "last"
87
+ },
88
+ {
89
+ "expression": "tela_agent_id",
90
+ "isExpression": false,
91
+ "asc": true,
92
+ "nulls": "last"
93
+ },
94
+ {
95
+ "expression": "conversation_scope",
96
+ "isExpression": false,
97
+ "asc": true,
98
+ "nulls": "last"
99
+ },
100
+ {
101
+ "expression": "created_at",
102
+ "isExpression": false,
103
+ "asc": true,
104
+ "nulls": "last"
105
+ }
106
+ ],
107
+ "isUnique": false,
108
+ "concurrently": false,
109
+ "method": "btree",
110
+ "with": {}
111
+ }
112
+ },
113
+ "foreignKeys": {},
114
+ "compositePrimaryKeys": {},
115
+ "uniqueConstraints": {},
116
+ "policies": {},
117
+ "checkConstraints": {},
118
+ "isRLSEnabled": false
119
+ },
120
+ "chat.conversation_usage": {
121
+ "name": "conversation_usage",
122
+ "schema": "chat",
123
+ "columns": {
124
+ "id": {
125
+ "name": "id",
126
+ "type": "uuid",
127
+ "primaryKey": true,
128
+ "notNull": true,
129
+ "default": "gen_random_uuid()"
130
+ },
131
+ "workspace_id": {
132
+ "name": "workspace_id",
133
+ "type": "text",
134
+ "primaryKey": false,
135
+ "notNull": true
136
+ },
137
+ "conversation_id": {
138
+ "name": "conversation_id",
139
+ "type": "uuid",
140
+ "primaryKey": false,
141
+ "notNull": true
142
+ },
143
+ "prompt_tokens": {
144
+ "name": "prompt_tokens",
145
+ "type": "integer",
146
+ "primaryKey": false,
147
+ "notNull": true
148
+ },
149
+ "completion_tokens": {
150
+ "name": "completion_tokens",
151
+ "type": "integer",
152
+ "primaryKey": false,
153
+ "notNull": true
154
+ },
155
+ "total_tokens": {
156
+ "name": "total_tokens",
157
+ "type": "integer",
158
+ "primaryKey": false,
159
+ "notNull": true
160
+ },
161
+ "prompt_cost": {
162
+ "name": "prompt_cost",
163
+ "type": "numeric(12, 8)",
164
+ "primaryKey": false,
165
+ "notNull": true
166
+ },
167
+ "completion_cost": {
168
+ "name": "completion_cost",
169
+ "type": "numeric(12, 8)",
170
+ "primaryKey": false,
171
+ "notNull": true
172
+ },
173
+ "total_cost": {
174
+ "name": "total_cost",
175
+ "type": "numeric(12, 8)",
176
+ "primaryKey": false,
177
+ "notNull": true
178
+ },
179
+ "duration_ms": {
180
+ "name": "duration_ms",
181
+ "type": "integer",
182
+ "primaryKey": false,
183
+ "notNull": false
184
+ },
185
+ "turns": {
186
+ "name": "turns",
187
+ "type": "integer",
188
+ "primaryKey": false,
189
+ "notNull": false
190
+ },
191
+ "user_id": {
192
+ "name": "user_id",
193
+ "type": "text",
194
+ "primaryKey": false,
195
+ "notNull": true
196
+ },
197
+ "user_email": {
198
+ "name": "user_email",
199
+ "type": "text",
200
+ "primaryKey": false,
201
+ "notNull": false
202
+ },
203
+ "model": {
204
+ "name": "model",
205
+ "type": "text",
206
+ "primaryKey": false,
207
+ "notNull": false
208
+ },
209
+ "session_id": {
210
+ "name": "session_id",
211
+ "type": "text",
212
+ "primaryKey": false,
213
+ "notNull": false
214
+ },
215
+ "cache_read_input_tokens": {
216
+ "name": "cache_read_input_tokens",
217
+ "type": "integer",
218
+ "primaryKey": false,
219
+ "notNull": false
220
+ },
221
+ "cache_creation_input_tokens": {
222
+ "name": "cache_creation_input_tokens",
223
+ "type": "integer",
224
+ "primaryKey": false,
225
+ "notNull": false
226
+ },
227
+ "model_usage": {
228
+ "name": "model_usage",
229
+ "type": "jsonb",
230
+ "primaryKey": false,
231
+ "notNull": false
232
+ },
233
+ "duration_api_ms": {
234
+ "name": "duration_api_ms",
235
+ "type": "integer",
236
+ "primaryKey": false,
237
+ "notNull": false
238
+ },
239
+ "web_search_requests": {
240
+ "name": "web_search_requests",
241
+ "type": "integer",
242
+ "primaryKey": false,
243
+ "notNull": false
244
+ },
245
+ "web_fetch_requests": {
246
+ "name": "web_fetch_requests",
247
+ "type": "integer",
248
+ "primaryKey": false,
249
+ "notNull": false
250
+ },
251
+ "metadata": {
252
+ "name": "metadata",
253
+ "type": "jsonb",
254
+ "primaryKey": false,
255
+ "notNull": false
256
+ },
257
+ "created_at": {
258
+ "name": "created_at",
259
+ "type": "timestamp with time zone",
260
+ "primaryKey": false,
261
+ "notNull": true,
262
+ "default": "now()"
263
+ },
264
+ "updated_at": {
265
+ "name": "updated_at",
266
+ "type": "timestamp with time zone",
267
+ "primaryKey": false,
268
+ "notNull": true,
269
+ "default": "now()"
270
+ }
271
+ },
272
+ "indexes": {
273
+ "idx_usage_workspace": {
274
+ "name": "idx_usage_workspace",
275
+ "columns": [
276
+ {
277
+ "expression": "workspace_id",
278
+ "isExpression": false,
279
+ "asc": true,
280
+ "nulls": "last"
281
+ }
282
+ ],
283
+ "isUnique": false,
284
+ "concurrently": false,
285
+ "method": "btree",
286
+ "with": {}
287
+ },
288
+ "idx_usage_workspace_created": {
289
+ "name": "idx_usage_workspace_created",
290
+ "columns": [
291
+ {
292
+ "expression": "workspace_id",
293
+ "isExpression": false,
294
+ "asc": true,
295
+ "nulls": "last"
296
+ },
297
+ {
298
+ "expression": "created_at",
299
+ "isExpression": false,
300
+ "asc": true,
301
+ "nulls": "last"
302
+ }
303
+ ],
304
+ "isUnique": false,
305
+ "concurrently": false,
306
+ "method": "btree",
307
+ "with": {}
308
+ },
309
+ "idx_usage_conversation": {
310
+ "name": "idx_usage_conversation",
311
+ "columns": [
312
+ {
313
+ "expression": "conversation_id",
314
+ "isExpression": false,
315
+ "asc": true,
316
+ "nulls": "last"
317
+ }
318
+ ],
319
+ "isUnique": false,
320
+ "concurrently": false,
321
+ "method": "btree",
322
+ "with": {}
323
+ },
324
+ "idx_usage_user": {
325
+ "name": "idx_usage_user",
326
+ "columns": [
327
+ {
328
+ "expression": "user_id",
329
+ "isExpression": false,
330
+ "asc": true,
331
+ "nulls": "last"
332
+ }
333
+ ],
334
+ "isUnique": false,
335
+ "concurrently": false,
336
+ "method": "btree",
337
+ "with": {}
338
+ }
339
+ },
340
+ "foreignKeys": {
341
+ "conversation_usage_conversation_id_conversations_id_fk": {
342
+ "name": "conversation_usage_conversation_id_conversations_id_fk",
343
+ "tableFrom": "conversation_usage",
344
+ "tableTo": "conversations",
345
+ "schemaTo": "chat",
346
+ "columnsFrom": [
347
+ "conversation_id"
348
+ ],
349
+ "columnsTo": [
350
+ "id"
351
+ ],
352
+ "onDelete": "cascade",
353
+ "onUpdate": "no action"
354
+ }
355
+ },
356
+ "compositePrimaryKeys": {},
357
+ "uniqueConstraints": {
358
+ "conversation_usage_conversation_id_unique": {
359
+ "name": "conversation_usage_conversation_id_unique",
360
+ "nullsNotDistinct": false,
361
+ "columns": [
362
+ "conversation_id"
363
+ ]
364
+ }
365
+ },
366
+ "policies": {},
367
+ "checkConstraints": {},
368
+ "isRLSEnabled": false
369
+ },
370
+ "chat.conversations": {
371
+ "name": "conversations",
372
+ "schema": "chat",
373
+ "columns": {
374
+ "id": {
375
+ "name": "id",
376
+ "type": "uuid",
377
+ "primaryKey": true,
378
+ "notNull": true,
379
+ "default": "gen_random_uuid()"
380
+ },
381
+ "workspace_id": {
382
+ "name": "workspace_id",
383
+ "type": "text",
384
+ "primaryKey": false,
385
+ "notNull": true
386
+ },
387
+ "group_id": {
388
+ "name": "group_id",
389
+ "type": "uuid",
390
+ "primaryKey": false,
391
+ "notNull": false
392
+ },
393
+ "user_id": {
394
+ "name": "user_id",
395
+ "type": "text",
396
+ "primaryKey": false,
397
+ "notNull": true
398
+ },
399
+ "title": {
400
+ "name": "title",
401
+ "type": "text",
402
+ "primaryKey": false,
403
+ "notNull": true,
404
+ "default": "'Nova conversa'"
405
+ },
406
+ "thread_session_id": {
407
+ "name": "thread_session_id",
408
+ "type": "text",
409
+ "primaryKey": false,
410
+ "notNull": false
411
+ },
412
+ "tela_agent_id": {
413
+ "name": "tela_agent_id",
414
+ "type": "text",
415
+ "primaryKey": false,
416
+ "notNull": false
417
+ },
418
+ "conversation_scope": {
419
+ "name": "conversation_scope",
420
+ "type": "text",
421
+ "primaryKey": false,
422
+ "notNull": false
423
+ },
424
+ "model": {
425
+ "name": "model",
426
+ "type": "text",
427
+ "primaryKey": false,
428
+ "notNull": false,
429
+ "default": "'claude-sonnet-4-5'"
430
+ },
431
+ "applied_settings_at": {
432
+ "name": "applied_settings_at",
433
+ "type": "timestamp with time zone",
434
+ "primaryKey": false,
435
+ "notNull": false
436
+ },
437
+ "applied_settings_snapshot": {
438
+ "name": "applied_settings_snapshot",
439
+ "type": "jsonb",
440
+ "primaryKey": false,
441
+ "notNull": false
442
+ },
443
+ "created_by": {
444
+ "name": "created_by",
445
+ "type": "text",
446
+ "primaryKey": false,
447
+ "notNull": false
448
+ },
449
+ "created_at": {
450
+ "name": "created_at",
451
+ "type": "timestamp with time zone",
452
+ "primaryKey": false,
453
+ "notNull": true,
454
+ "default": "now()"
455
+ },
456
+ "updated_at": {
457
+ "name": "updated_at",
458
+ "type": "timestamp with time zone",
459
+ "primaryKey": false,
460
+ "notNull": true,
461
+ "default": "now()"
462
+ }
463
+ },
464
+ "indexes": {
465
+ "idx_conversations_workspace": {
466
+ "name": "idx_conversations_workspace",
467
+ "columns": [
468
+ {
469
+ "expression": "workspace_id",
470
+ "isExpression": false,
471
+ "asc": true,
472
+ "nulls": "last"
473
+ }
474
+ ],
475
+ "isUnique": false,
476
+ "concurrently": false,
477
+ "method": "btree",
478
+ "with": {}
479
+ },
480
+ "idx_conversations_group": {
481
+ "name": "idx_conversations_group",
482
+ "columns": [
483
+ {
484
+ "expression": "group_id",
485
+ "isExpression": false,
486
+ "asc": true,
487
+ "nulls": "last"
488
+ }
489
+ ],
490
+ "isUnique": false,
491
+ "concurrently": false,
492
+ "method": "btree",
493
+ "with": {}
494
+ },
495
+ "idx_conversations_user": {
496
+ "name": "idx_conversations_user",
497
+ "columns": [
498
+ {
499
+ "expression": "user_id",
500
+ "isExpression": false,
501
+ "asc": true,
502
+ "nulls": "last"
503
+ }
504
+ ],
505
+ "isUnique": false,
506
+ "concurrently": false,
507
+ "method": "btree",
508
+ "with": {}
509
+ },
510
+ "idx_conversations_updated": {
511
+ "name": "idx_conversations_updated",
512
+ "columns": [
513
+ {
514
+ "expression": "updated_at",
515
+ "isExpression": false,
516
+ "asc": true,
517
+ "nulls": "last"
518
+ }
519
+ ],
520
+ "isUnique": false,
521
+ "concurrently": false,
522
+ "method": "btree",
523
+ "with": {}
524
+ },
525
+ "idx_conversations_workspace_tela_agent_updated": {
526
+ "name": "idx_conversations_workspace_tela_agent_updated",
527
+ "columns": [
528
+ {
529
+ "expression": "workspace_id",
530
+ "isExpression": false,
531
+ "asc": true,
532
+ "nulls": "last"
533
+ },
534
+ {
535
+ "expression": "tela_agent_id",
536
+ "isExpression": false,
537
+ "asc": true,
538
+ "nulls": "last"
539
+ },
540
+ {
541
+ "expression": "updated_at",
542
+ "isExpression": false,
543
+ "asc": true,
544
+ "nulls": "last"
545
+ }
546
+ ],
547
+ "isUnique": false,
548
+ "concurrently": false,
549
+ "method": "btree",
550
+ "with": {}
551
+ }
552
+ },
553
+ "foreignKeys": {
554
+ "conversations_group_id_conversation_groups_id_fk": {
555
+ "name": "conversations_group_id_conversation_groups_id_fk",
556
+ "tableFrom": "conversations",
557
+ "tableTo": "conversation_groups",
558
+ "schemaTo": "chat",
559
+ "columnsFrom": [
560
+ "group_id"
561
+ ],
562
+ "columnsTo": [
563
+ "id"
564
+ ],
565
+ "onDelete": "set null",
566
+ "onUpdate": "no action"
567
+ }
568
+ },
569
+ "compositePrimaryKeys": {},
570
+ "uniqueConstraints": {},
571
+ "policies": {},
572
+ "checkConstraints": {},
573
+ "isRLSEnabled": false
574
+ },
575
+ "chat.external_skills": {
576
+ "name": "external_skills",
577
+ "schema": "chat",
578
+ "columns": {
579
+ "id": {
580
+ "name": "id",
581
+ "type": "serial",
582
+ "primaryKey": true,
583
+ "notNull": true
584
+ },
585
+ "workspace_id": {
586
+ "name": "workspace_id",
587
+ "type": "text",
588
+ "primaryKey": false,
589
+ "notNull": true
590
+ },
591
+ "ref": {
592
+ "name": "ref",
593
+ "type": "text",
594
+ "primaryKey": false,
595
+ "notNull": true
596
+ },
597
+ "name": {
598
+ "name": "name",
599
+ "type": "text",
600
+ "primaryKey": false,
601
+ "notNull": true
602
+ },
603
+ "description": {
604
+ "name": "description",
605
+ "type": "text",
606
+ "primaryKey": false,
607
+ "notNull": true,
608
+ "default": "''"
609
+ },
610
+ "runtime": {
611
+ "name": "runtime",
612
+ "type": "text",
613
+ "primaryKey": false,
614
+ "notNull": true,
615
+ "default": "'unknown'"
616
+ },
617
+ "allowed_tools": {
618
+ "name": "allowed_tools",
619
+ "type": "jsonb",
620
+ "primaryKey": false,
621
+ "notNull": true,
622
+ "default": "'[]'::jsonb"
623
+ },
624
+ "is_public": {
625
+ "name": "is_public",
626
+ "type": "boolean",
627
+ "primaryKey": false,
628
+ "notNull": true,
629
+ "default": true
630
+ },
631
+ "added_by_user_id": {
632
+ "name": "added_by_user_id",
633
+ "type": "text",
634
+ "primaryKey": false,
635
+ "notNull": true
636
+ },
637
+ "added_by_username": {
638
+ "name": "added_by_username",
639
+ "type": "text",
640
+ "primaryKey": false,
641
+ "notNull": true
642
+ },
643
+ "added_at": {
644
+ "name": "added_at",
645
+ "type": "timestamp with time zone",
646
+ "primaryKey": false,
647
+ "notNull": true,
648
+ "default": "now()"
649
+ },
650
+ "created_at": {
651
+ "name": "created_at",
652
+ "type": "timestamp with time zone",
653
+ "primaryKey": false,
654
+ "notNull": true,
655
+ "default": "now()"
656
+ },
657
+ "updated_at": {
658
+ "name": "updated_at",
659
+ "type": "timestamp with time zone",
660
+ "primaryKey": false,
661
+ "notNull": true,
662
+ "default": "now()"
663
+ }
664
+ },
665
+ "indexes": {},
666
+ "foreignKeys": {},
667
+ "compositePrimaryKeys": {},
668
+ "uniqueConstraints": {
669
+ "external_skills_workspace_ref_unique": {
670
+ "name": "external_skills_workspace_ref_unique",
671
+ "nullsNotDistinct": false,
672
+ "columns": [
673
+ "workspace_id",
674
+ "ref"
675
+ ]
676
+ }
677
+ },
678
+ "policies": {},
679
+ "checkConstraints": {},
680
+ "isRLSEnabled": false
681
+ },
682
+ "chat.messages": {
683
+ "name": "messages",
684
+ "schema": "chat",
685
+ "columns": {
686
+ "id": {
687
+ "name": "id",
688
+ "type": "uuid",
689
+ "primaryKey": true,
690
+ "notNull": true,
691
+ "default": "gen_random_uuid()"
692
+ },
693
+ "conversation_id": {
694
+ "name": "conversation_id",
695
+ "type": "uuid",
696
+ "primaryKey": false,
697
+ "notNull": true
698
+ },
699
+ "role": {
700
+ "name": "role",
701
+ "type": "text",
702
+ "primaryKey": false,
703
+ "notNull": true
704
+ },
705
+ "content": {
706
+ "name": "content",
707
+ "type": "text",
708
+ "primaryKey": false,
709
+ "notNull": true
710
+ },
711
+ "status": {
712
+ "name": "status",
713
+ "type": "text",
714
+ "primaryKey": false,
715
+ "notNull": false,
716
+ "default": "'completed'"
717
+ },
718
+ "reasoning_data": {
719
+ "name": "reasoning_data",
720
+ "type": "jsonb",
721
+ "primaryKey": false,
722
+ "notNull": false
723
+ },
724
+ "files": {
725
+ "name": "files",
726
+ "type": "jsonb",
727
+ "primaryKey": false,
728
+ "notNull": false
729
+ },
730
+ "external_uuid": {
731
+ "name": "external_uuid",
732
+ "type": "text",
733
+ "primaryKey": false,
734
+ "notNull": false
735
+ },
736
+ "agent_session_cursor": {
737
+ "name": "agent_session_cursor",
738
+ "type": "integer",
739
+ "primaryKey": false,
740
+ "notNull": false
741
+ },
742
+ "agent_session_id": {
743
+ "name": "agent_session_id",
744
+ "type": "text",
745
+ "primaryKey": false,
746
+ "notNull": false
747
+ },
748
+ "ttft": {
749
+ "name": "ttft",
750
+ "type": "text",
751
+ "primaryKey": false,
752
+ "notNull": false
753
+ },
754
+ "created_by": {
755
+ "name": "created_by",
756
+ "type": "text",
757
+ "primaryKey": false,
758
+ "notNull": false
759
+ },
760
+ "created_at": {
761
+ "name": "created_at",
762
+ "type": "timestamp with time zone",
763
+ "primaryKey": false,
764
+ "notNull": true,
765
+ "default": "now()"
766
+ },
767
+ "updated_at": {
768
+ "name": "updated_at",
769
+ "type": "timestamp with time zone",
770
+ "primaryKey": false,
771
+ "notNull": false
772
+ }
773
+ },
774
+ "indexes": {
775
+ "idx_messages_conversation": {
776
+ "name": "idx_messages_conversation",
777
+ "columns": [
778
+ {
779
+ "expression": "conversation_id",
780
+ "isExpression": false,
781
+ "asc": true,
782
+ "nulls": "last"
783
+ }
784
+ ],
785
+ "isUnique": false,
786
+ "concurrently": false,
787
+ "method": "btree",
788
+ "with": {}
789
+ },
790
+ "idx_messages_created": {
791
+ "name": "idx_messages_created",
792
+ "columns": [
793
+ {
794
+ "expression": "created_at",
795
+ "isExpression": false,
796
+ "asc": true,
797
+ "nulls": "last"
798
+ }
799
+ ],
800
+ "isUnique": false,
801
+ "concurrently": false,
802
+ "method": "btree",
803
+ "with": {}
804
+ }
805
+ },
806
+ "foreignKeys": {
807
+ "messages_conversation_id_conversations_id_fk": {
808
+ "name": "messages_conversation_id_conversations_id_fk",
809
+ "tableFrom": "messages",
810
+ "tableTo": "conversations",
811
+ "schemaTo": "chat",
812
+ "columnsFrom": [
813
+ "conversation_id"
814
+ ],
815
+ "columnsTo": [
816
+ "id"
817
+ ],
818
+ "onDelete": "cascade",
819
+ "onUpdate": "no action"
820
+ }
821
+ },
822
+ "compositePrimaryKeys": {},
823
+ "uniqueConstraints": {},
824
+ "policies": {},
825
+ "checkConstraints": {},
826
+ "isRLSEnabled": false
827
+ },
828
+ "chat.workspace_settings": {
829
+ "name": "workspace_settings",
830
+ "schema": "chat",
831
+ "columns": {
832
+ "workspace_id": {
833
+ "name": "workspace_id",
834
+ "type": "text",
835
+ "primaryKey": true,
836
+ "notNull": true
837
+ },
838
+ "system_message": {
839
+ "name": "system_message",
840
+ "type": "text",
841
+ "primaryKey": false,
842
+ "notNull": false
843
+ },
844
+ "context_files": {
845
+ "name": "context_files",
846
+ "type": "jsonb",
847
+ "primaryKey": false,
848
+ "notNull": false
849
+ },
850
+ "canvas_tools": {
851
+ "name": "canvas_tools",
852
+ "type": "jsonb",
853
+ "primaryKey": false,
854
+ "notNull": false
855
+ },
856
+ "knowledge_sources": {
857
+ "name": "knowledge_sources",
858
+ "type": "jsonb",
859
+ "primaryKey": false,
860
+ "notNull": false
861
+ },
862
+ "created_at": {
863
+ "name": "created_at",
864
+ "type": "timestamp with time zone",
865
+ "primaryKey": false,
866
+ "notNull": true,
867
+ "default": "now()"
868
+ },
869
+ "updated_at": {
870
+ "name": "updated_at",
871
+ "type": "timestamp with time zone",
872
+ "primaryKey": false,
873
+ "notNull": true,
874
+ "default": "now()"
875
+ }
876
+ },
877
+ "indexes": {},
878
+ "foreignKeys": {},
879
+ "compositePrimaryKeys": {},
880
+ "uniqueConstraints": {},
881
+ "policies": {},
882
+ "checkConstraints": {},
883
+ "isRLSEnabled": false
884
+ }
885
+ },
886
+ "enums": {},
887
+ "schemas": {
888
+ "chat": "chat"
889
+ },
890
+ "sequences": {},
891
+ "roles": {},
892
+ "policies": {},
893
+ "views": {},
894
+ "_meta": {
895
+ "columns": {},
896
+ "schemas": {},
897
+ "tables": {}
898
+ }
899
+ }