Skip to content

Commit c559f16

Browse files
committed
bring files back :(
1 parent 273ffa3 commit c559f16

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

example/convex/_generated/api.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ export declare const components: {
306306
embeddingId?: string;
307307
error?: string;
308308
fileIds?: Array<string>;
309+
files?: Array<any>;
309310
finishReason?:
310311
| "stop"
311312
| "length"
@@ -471,6 +472,7 @@ export declare const components: {
471472
embeddingId?: string;
472473
error?: string;
473474
fileIds?: Array<string>;
475+
files?: Array<any>;
474476
finishReason?:
475477
| "stop"
476478
| "length"
@@ -1012,6 +1014,7 @@ export declare const components: {
10121014
embeddingId?: string;
10131015
error?: string;
10141016
fileIds?: Array<string>;
1017+
files?: Array<any>;
10151018
finishReason?:
10161019
| "stop"
10171020
| "length"
@@ -1160,6 +1163,7 @@ export declare const components: {
11601163
embeddingId?: string;
11611164
error?: string;
11621165
fileIds?: Array<string>;
1166+
files?: Array<any>;
11631167
finishReason?:
11641168
| "stop"
11651169
| "length"
@@ -1305,6 +1309,7 @@ export declare const components: {
13051309
embeddingId?: string;
13061310
error?: string;
13071311
fileIds?: Array<string>;
1312+
files?: Array<any>;
13081313
finishReason?:
13091314
| "stop"
13101315
| "length"
@@ -1496,6 +1501,7 @@ export declare const components: {
14961501
embeddingId?: string;
14971502
error?: string;
14981503
fileIds?: Array<string>;
1504+
files?: Array<any>;
14991505
finishReason?:
15001506
| "stop"
15011507
| "length"
@@ -1685,6 +1691,7 @@ export declare const components: {
16851691
embeddingId?: string;
16861692
error?: string;
16871693
fileIds?: Array<string>;
1694+
files?: Array<any>;
16881695
finishReason?:
16891696
| "stop"
16901697
| "length"
@@ -1833,6 +1840,7 @@ export declare const components: {
18331840
embeddingId?: string;
18341841
error?: string;
18351842
fileIds?: Array<string>;
1843+
files?: Array<any>;
18361844
finishReason?:
18371845
| "stop"
18381846
| "length"
@@ -2603,6 +2611,7 @@ export declare const components: {
26032611
{
26042612
maxParallelism?: number;
26052613
onComplete?: { context?: any; fnHandle: string };
2614+
validateAsync?: boolean;
26062615
workflowArgs: any;
26072616
workflowHandle: string;
26082617
workflowName: string;

src/component/schema.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export const schema = defineSchema({
6363
// DEPRECATED
6464
parentMessageId: v.optional(v.id("messages")),
6565
stepId: v.optional(v.id("steps")),
66+
files: v.optional(v.array(v.any())),
6667
})
6768
// Allows finding successful visible messages in order
6869
// Also surface pending messages separately to e.g. stream

0 commit comments

Comments
 (0)