File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
example/convex/_generated Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -306,6 +306,7 @@ export declare const components: {
306
306
embeddingId ?: string ;
307
307
error ?: string ;
308
308
fileIds ?: Array < string > ;
309
+ files ?: Array < any > ;
309
310
finishReason ?:
310
311
| "stop"
311
312
| "length"
@@ -471,6 +472,7 @@ export declare const components: {
471
472
embeddingId ?: string ;
472
473
error ?: string ;
473
474
fileIds ?: Array < string > ;
475
+ files ?: Array < any > ;
474
476
finishReason ?:
475
477
| "stop"
476
478
| "length"
@@ -1012,6 +1014,7 @@ export declare const components: {
1012
1014
embeddingId ?: string ;
1013
1015
error ?: string ;
1014
1016
fileIds ?: Array < string > ;
1017
+ files ?: Array < any > ;
1015
1018
finishReason ?:
1016
1019
| "stop"
1017
1020
| "length"
@@ -1160,6 +1163,7 @@ export declare const components: {
1160
1163
embeddingId ?: string ;
1161
1164
error ?: string ;
1162
1165
fileIds ?: Array < string > ;
1166
+ files ?: Array < any > ;
1163
1167
finishReason ?:
1164
1168
| "stop"
1165
1169
| "length"
@@ -1305,6 +1309,7 @@ export declare const components: {
1305
1309
embeddingId ?: string ;
1306
1310
error ?: string ;
1307
1311
fileIds ?: Array < string > ;
1312
+ files ?: Array < any > ;
1308
1313
finishReason ?:
1309
1314
| "stop"
1310
1315
| "length"
@@ -1496,6 +1501,7 @@ export declare const components: {
1496
1501
embeddingId ?: string ;
1497
1502
error ?: string ;
1498
1503
fileIds ?: Array < string > ;
1504
+ files ?: Array < any > ;
1499
1505
finishReason ?:
1500
1506
| "stop"
1501
1507
| "length"
@@ -1685,6 +1691,7 @@ export declare const components: {
1685
1691
embeddingId ?: string ;
1686
1692
error ?: string ;
1687
1693
fileIds ?: Array < string > ;
1694
+ files ?: Array < any > ;
1688
1695
finishReason ?:
1689
1696
| "stop"
1690
1697
| "length"
@@ -1833,6 +1840,7 @@ export declare const components: {
1833
1840
embeddingId ?: string ;
1834
1841
error ?: string ;
1835
1842
fileIds ?: Array < string > ;
1843
+ files ?: Array < any > ;
1836
1844
finishReason ?:
1837
1845
| "stop"
1838
1846
| "length"
@@ -2603,6 +2611,7 @@ export declare const components: {
2603
2611
{
2604
2612
maxParallelism ?: number ;
2605
2613
onComplete ?: { context ?: any ; fnHandle : string } ;
2614
+ validateAsync ?: boolean ;
2606
2615
workflowArgs : any ;
2607
2616
workflowHandle : string ;
2608
2617
workflowName : string ;
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ export const schema = defineSchema({
63
63
// DEPRECATED
64
64
parentMessageId : v . optional ( v . id ( "messages" ) ) ,
65
65
stepId : v . optional ( v . id ( "steps" ) ) ,
66
+ files : v . optional ( v . array ( v . any ( ) ) ) ,
66
67
} )
67
68
// Allows finding successful visible messages in order
68
69
// Also surface pending messages separately to e.g. stream
You can’t perform that action at this time.
0 commit comments