@supernova-studio/client 1.42.3 → 1.42.4
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.
- package/dist/index.d.mts +458 -5
- package/dist/index.d.ts +458 -5
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -81324,6 +81324,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81324
81324
|
afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
81325
81325
|
initialMessage: z__default.ZodObject<Pick<{
|
|
81326
81326
|
id: z__default.ZodString;
|
|
81327
|
+
threadId: z__default.ZodString;
|
|
81327
81328
|
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
81328
81329
|
type: z__default.ZodLiteral<"User">;
|
|
81329
81330
|
userId: z__default.ZodString;
|
|
@@ -81335,10 +81336,13 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81335
81336
|
userId: string;
|
|
81336
81337
|
}>, z__default.ZodObject<{
|
|
81337
81338
|
type: z__default.ZodLiteral<"Agent">;
|
|
81339
|
+
agentType: z__default.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
81338
81340
|
}, "strip", z__default.ZodTypeAny, {
|
|
81339
81341
|
type: "Agent";
|
|
81342
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
81340
81343
|
}, {
|
|
81341
81344
|
type: "Agent";
|
|
81345
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
81342
81346
|
}>, z__default.ZodObject<{
|
|
81343
81347
|
type: z__default.ZodLiteral<"System">;
|
|
81344
81348
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -81356,21 +81360,103 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81356
81360
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
81357
81361
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81358
81362
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81363
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
|
|
81364
|
+
id: z__default.ZodString;
|
|
81365
|
+
name: z__default.ZodString;
|
|
81366
|
+
deduplicationKey: z__default.ZodString;
|
|
81367
|
+
pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
81368
|
+
storagePath: z__default.ZodString;
|
|
81369
|
+
url: z__default.ZodString;
|
|
81370
|
+
size: z__default.ZodNumber;
|
|
81371
|
+
source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
81372
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
81373
|
+
userId: z__default.ZodString;
|
|
81374
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81375
|
+
type: "UserUpload";
|
|
81376
|
+
userId: string;
|
|
81377
|
+
}, {
|
|
81378
|
+
type: "UserUpload";
|
|
81379
|
+
userId: string;
|
|
81380
|
+
}>, z__default.ZodObject<{
|
|
81381
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
81382
|
+
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
81383
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81384
|
+
type: "Figma";
|
|
81385
|
+
renderMode: "Image" | "HTML";
|
|
81386
|
+
}, {
|
|
81387
|
+
type: "Figma";
|
|
81388
|
+
renderMode: "Image" | "HTML";
|
|
81389
|
+
}>]>>;
|
|
81390
|
+
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
81391
|
+
id: string;
|
|
81392
|
+
url: string;
|
|
81393
|
+
source?: {
|
|
81394
|
+
type: "UserUpload";
|
|
81395
|
+
userId: string;
|
|
81396
|
+
} | {
|
|
81397
|
+
type: "Figma";
|
|
81398
|
+
renderMode: "Image" | "HTML";
|
|
81399
|
+
} | undefined;
|
|
81400
|
+
}, {
|
|
81401
|
+
id: string;
|
|
81402
|
+
url: string;
|
|
81403
|
+
source?: {
|
|
81404
|
+
type: "UserUpload";
|
|
81405
|
+
userId: string;
|
|
81406
|
+
} | {
|
|
81407
|
+
type: "Figma";
|
|
81408
|
+
renderMode: "Image" | "HTML";
|
|
81409
|
+
} | undefined;
|
|
81410
|
+
}>, "many">>;
|
|
81359
81411
|
}, "strip", z__default.ZodTypeAny, {
|
|
81412
|
+
files?: {
|
|
81413
|
+
id: string;
|
|
81414
|
+
url: string;
|
|
81415
|
+
source?: {
|
|
81416
|
+
type: "UserUpload";
|
|
81417
|
+
userId: string;
|
|
81418
|
+
} | {
|
|
81419
|
+
type: "Figma";
|
|
81420
|
+
renderMode: "Image" | "HTML";
|
|
81421
|
+
} | undefined;
|
|
81422
|
+
}[] | undefined;
|
|
81360
81423
|
iterationId?: string | undefined;
|
|
81361
81424
|
}, {
|
|
81425
|
+
files?: {
|
|
81426
|
+
id: string;
|
|
81427
|
+
url: string;
|
|
81428
|
+
source?: {
|
|
81429
|
+
type: "UserUpload";
|
|
81430
|
+
userId: string;
|
|
81431
|
+
} | {
|
|
81432
|
+
type: "Figma";
|
|
81433
|
+
renderMode: "Image" | "HTML";
|
|
81434
|
+
} | undefined;
|
|
81435
|
+
}[] | undefined;
|
|
81362
81436
|
iterationId?: string | undefined;
|
|
81363
81437
|
}>>;
|
|
81364
81438
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
81365
81439
|
createdAt: z__default.ZodString;
|
|
81366
81440
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
81367
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
81441
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
81442
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81443
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81444
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
81445
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81446
|
+
fileIds?: string[] | undefined;
|
|
81447
|
+
iterationId?: string | undefined;
|
|
81448
|
+
}, {
|
|
81449
|
+
fileIds?: string[] | undefined;
|
|
81450
|
+
iterationId?: string | undefined;
|
|
81451
|
+
}>>;
|
|
81452
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81368
81453
|
id: string;
|
|
81369
81454
|
body: string;
|
|
81370
81455
|
isPrompt?: boolean | undefined;
|
|
81371
81456
|
startsNewThread?: boolean | undefined;
|
|
81372
81457
|
parentMessageId?: string | undefined;
|
|
81373
81458
|
attachments?: {
|
|
81459
|
+
fileIds?: string[] | undefined;
|
|
81374
81460
|
iterationId?: string | undefined;
|
|
81375
81461
|
} | undefined;
|
|
81376
81462
|
}, {
|
|
@@ -81380,6 +81466,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81380
81466
|
startsNewThread?: boolean | undefined;
|
|
81381
81467
|
parentMessageId?: string | undefined;
|
|
81382
81468
|
attachments?: {
|
|
81469
|
+
fileIds?: string[] | undefined;
|
|
81383
81470
|
iterationId?: string | undefined;
|
|
81384
81471
|
} | undefined;
|
|
81385
81472
|
}>;
|
|
@@ -81393,6 +81480,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81393
81480
|
startsNewThread?: boolean | undefined;
|
|
81394
81481
|
parentMessageId?: string | undefined;
|
|
81395
81482
|
attachments?: {
|
|
81483
|
+
fileIds?: string[] | undefined;
|
|
81396
81484
|
iterationId?: string | undefined;
|
|
81397
81485
|
} | undefined;
|
|
81398
81486
|
};
|
|
@@ -81409,6 +81497,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81409
81497
|
startsNewThread?: boolean | undefined;
|
|
81410
81498
|
parentMessageId?: string | undefined;
|
|
81411
81499
|
attachments?: {
|
|
81500
|
+
fileIds?: string[] | undefined;
|
|
81412
81501
|
iterationId?: string | undefined;
|
|
81413
81502
|
} | undefined;
|
|
81414
81503
|
};
|
|
@@ -81428,6 +81517,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81428
81517
|
startsNewThread?: boolean | undefined;
|
|
81429
81518
|
parentMessageId?: string | undefined;
|
|
81430
81519
|
attachments?: {
|
|
81520
|
+
fileIds?: string[] | undefined;
|
|
81431
81521
|
iterationId?: string | undefined;
|
|
81432
81522
|
} | undefined;
|
|
81433
81523
|
};
|
|
@@ -81447,6 +81537,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81447
81537
|
startsNewThread?: boolean | undefined;
|
|
81448
81538
|
parentMessageId?: string | undefined;
|
|
81449
81539
|
attachments?: {
|
|
81540
|
+
fileIds?: string[] | undefined;
|
|
81450
81541
|
iterationId?: string | undefined;
|
|
81451
81542
|
} | undefined;
|
|
81452
81543
|
};
|
|
@@ -82003,6 +82094,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82003
82094
|
afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
82004
82095
|
initialMessage: z__default.ZodObject<Pick<{
|
|
82005
82096
|
id: z__default.ZodString;
|
|
82097
|
+
threadId: z__default.ZodString;
|
|
82006
82098
|
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
82007
82099
|
type: z__default.ZodLiteral<"User">;
|
|
82008
82100
|
userId: z__default.ZodString;
|
|
@@ -82014,10 +82106,13 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82014
82106
|
userId: string;
|
|
82015
82107
|
}>, z__default.ZodObject<{
|
|
82016
82108
|
type: z__default.ZodLiteral<"Agent">;
|
|
82109
|
+
agentType: z__default.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
82017
82110
|
}, "strip", z__default.ZodTypeAny, {
|
|
82018
82111
|
type: "Agent";
|
|
82112
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
82019
82113
|
}, {
|
|
82020
82114
|
type: "Agent";
|
|
82115
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
82021
82116
|
}>, z__default.ZodObject<{
|
|
82022
82117
|
type: z__default.ZodLiteral<"System">;
|
|
82023
82118
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -82035,21 +82130,103 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82035
82130
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
82036
82131
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
82037
82132
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
82133
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
|
|
82134
|
+
id: z__default.ZodString;
|
|
82135
|
+
name: z__default.ZodString;
|
|
82136
|
+
deduplicationKey: z__default.ZodString;
|
|
82137
|
+
pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
82138
|
+
storagePath: z__default.ZodString;
|
|
82139
|
+
url: z__default.ZodString;
|
|
82140
|
+
size: z__default.ZodNumber;
|
|
82141
|
+
source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
82142
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
82143
|
+
userId: z__default.ZodString;
|
|
82144
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82145
|
+
type: "UserUpload";
|
|
82146
|
+
userId: string;
|
|
82147
|
+
}, {
|
|
82148
|
+
type: "UserUpload";
|
|
82149
|
+
userId: string;
|
|
82150
|
+
}>, z__default.ZodObject<{
|
|
82151
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
82152
|
+
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
82153
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82154
|
+
type: "Figma";
|
|
82155
|
+
renderMode: "Image" | "HTML";
|
|
82156
|
+
}, {
|
|
82157
|
+
type: "Figma";
|
|
82158
|
+
renderMode: "Image" | "HTML";
|
|
82159
|
+
}>]>>;
|
|
82160
|
+
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
82161
|
+
id: string;
|
|
82162
|
+
url: string;
|
|
82163
|
+
source?: {
|
|
82164
|
+
type: "UserUpload";
|
|
82165
|
+
userId: string;
|
|
82166
|
+
} | {
|
|
82167
|
+
type: "Figma";
|
|
82168
|
+
renderMode: "Image" | "HTML";
|
|
82169
|
+
} | undefined;
|
|
82170
|
+
}, {
|
|
82171
|
+
id: string;
|
|
82172
|
+
url: string;
|
|
82173
|
+
source?: {
|
|
82174
|
+
type: "UserUpload";
|
|
82175
|
+
userId: string;
|
|
82176
|
+
} | {
|
|
82177
|
+
type: "Figma";
|
|
82178
|
+
renderMode: "Image" | "HTML";
|
|
82179
|
+
} | undefined;
|
|
82180
|
+
}>, "many">>;
|
|
82038
82181
|
}, "strip", z__default.ZodTypeAny, {
|
|
82182
|
+
files?: {
|
|
82183
|
+
id: string;
|
|
82184
|
+
url: string;
|
|
82185
|
+
source?: {
|
|
82186
|
+
type: "UserUpload";
|
|
82187
|
+
userId: string;
|
|
82188
|
+
} | {
|
|
82189
|
+
type: "Figma";
|
|
82190
|
+
renderMode: "Image" | "HTML";
|
|
82191
|
+
} | undefined;
|
|
82192
|
+
}[] | undefined;
|
|
82039
82193
|
iterationId?: string | undefined;
|
|
82040
82194
|
}, {
|
|
82195
|
+
files?: {
|
|
82196
|
+
id: string;
|
|
82197
|
+
url: string;
|
|
82198
|
+
source?: {
|
|
82199
|
+
type: "UserUpload";
|
|
82200
|
+
userId: string;
|
|
82201
|
+
} | {
|
|
82202
|
+
type: "Figma";
|
|
82203
|
+
renderMode: "Image" | "HTML";
|
|
82204
|
+
} | undefined;
|
|
82205
|
+
}[] | undefined;
|
|
82041
82206
|
iterationId?: string | undefined;
|
|
82042
82207
|
}>>;
|
|
82043
82208
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
82044
82209
|
createdAt: z__default.ZodString;
|
|
82045
82210
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
82046
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
82211
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
82212
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
82213
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
82214
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
82215
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82216
|
+
fileIds?: string[] | undefined;
|
|
82217
|
+
iterationId?: string | undefined;
|
|
82218
|
+
}, {
|
|
82219
|
+
fileIds?: string[] | undefined;
|
|
82220
|
+
iterationId?: string | undefined;
|
|
82221
|
+
}>>;
|
|
82222
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82047
82223
|
id: string;
|
|
82048
82224
|
body: string;
|
|
82049
82225
|
isPrompt?: boolean | undefined;
|
|
82050
82226
|
startsNewThread?: boolean | undefined;
|
|
82051
82227
|
parentMessageId?: string | undefined;
|
|
82052
82228
|
attachments?: {
|
|
82229
|
+
fileIds?: string[] | undefined;
|
|
82053
82230
|
iterationId?: string | undefined;
|
|
82054
82231
|
} | undefined;
|
|
82055
82232
|
}, {
|
|
@@ -82059,6 +82236,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82059
82236
|
startsNewThread?: boolean | undefined;
|
|
82060
82237
|
parentMessageId?: string | undefined;
|
|
82061
82238
|
attachments?: {
|
|
82239
|
+
fileIds?: string[] | undefined;
|
|
82062
82240
|
iterationId?: string | undefined;
|
|
82063
82241
|
} | undefined;
|
|
82064
82242
|
}>;
|
|
@@ -82072,6 +82250,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82072
82250
|
startsNewThread?: boolean | undefined;
|
|
82073
82251
|
parentMessageId?: string | undefined;
|
|
82074
82252
|
attachments?: {
|
|
82253
|
+
fileIds?: string[] | undefined;
|
|
82075
82254
|
iterationId?: string | undefined;
|
|
82076
82255
|
} | undefined;
|
|
82077
82256
|
};
|
|
@@ -82088,6 +82267,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82088
82267
|
startsNewThread?: boolean | undefined;
|
|
82089
82268
|
parentMessageId?: string | undefined;
|
|
82090
82269
|
attachments?: {
|
|
82270
|
+
fileIds?: string[] | undefined;
|
|
82091
82271
|
iterationId?: string | undefined;
|
|
82092
82272
|
} | undefined;
|
|
82093
82273
|
};
|
|
@@ -82107,6 +82287,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82107
82287
|
startsNewThread?: boolean | undefined;
|
|
82108
82288
|
parentMessageId?: string | undefined;
|
|
82109
82289
|
attachments?: {
|
|
82290
|
+
fileIds?: string[] | undefined;
|
|
82110
82291
|
iterationId?: string | undefined;
|
|
82111
82292
|
} | undefined;
|
|
82112
82293
|
};
|
|
@@ -82126,6 +82307,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82126
82307
|
startsNewThread?: boolean | undefined;
|
|
82127
82308
|
parentMessageId?: string | undefined;
|
|
82128
82309
|
attachments?: {
|
|
82310
|
+
fileIds?: string[] | undefined;
|
|
82129
82311
|
iterationId?: string | undefined;
|
|
82130
82312
|
} | undefined;
|
|
82131
82313
|
};
|
|
@@ -138063,6 +138245,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138063
138245
|
afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
138064
138246
|
initialMessage: z__default.ZodObject<Pick<{
|
|
138065
138247
|
id: z__default.ZodString;
|
|
138248
|
+
threadId: z__default.ZodString;
|
|
138066
138249
|
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
138067
138250
|
type: z__default.ZodLiteral<"User">;
|
|
138068
138251
|
userId: z__default.ZodString;
|
|
@@ -138074,10 +138257,13 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138074
138257
|
userId: string;
|
|
138075
138258
|
}>, z__default.ZodObject<{
|
|
138076
138259
|
type: z__default.ZodLiteral<"Agent">;
|
|
138260
|
+
agentType: z__default.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
138077
138261
|
}, "strip", z__default.ZodTypeAny, {
|
|
138078
138262
|
type: "Agent";
|
|
138263
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
138079
138264
|
}, {
|
|
138080
138265
|
type: "Agent";
|
|
138266
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
138081
138267
|
}>, z__default.ZodObject<{
|
|
138082
138268
|
type: z__default.ZodLiteral<"System">;
|
|
138083
138269
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -138095,21 +138281,103 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138095
138281
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
138096
138282
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
138097
138283
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
138284
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
|
|
138285
|
+
id: z__default.ZodString;
|
|
138286
|
+
name: z__default.ZodString;
|
|
138287
|
+
deduplicationKey: z__default.ZodString;
|
|
138288
|
+
pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
138289
|
+
storagePath: z__default.ZodString;
|
|
138290
|
+
url: z__default.ZodString;
|
|
138291
|
+
size: z__default.ZodNumber;
|
|
138292
|
+
source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
138293
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
138294
|
+
userId: z__default.ZodString;
|
|
138295
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
138296
|
+
type: "UserUpload";
|
|
138297
|
+
userId: string;
|
|
138298
|
+
}, {
|
|
138299
|
+
type: "UserUpload";
|
|
138300
|
+
userId: string;
|
|
138301
|
+
}>, z__default.ZodObject<{
|
|
138302
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
138303
|
+
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
138304
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
138305
|
+
type: "Figma";
|
|
138306
|
+
renderMode: "Image" | "HTML";
|
|
138307
|
+
}, {
|
|
138308
|
+
type: "Figma";
|
|
138309
|
+
renderMode: "Image" | "HTML";
|
|
138310
|
+
}>]>>;
|
|
138311
|
+
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
138312
|
+
id: string;
|
|
138313
|
+
url: string;
|
|
138314
|
+
source?: {
|
|
138315
|
+
type: "UserUpload";
|
|
138316
|
+
userId: string;
|
|
138317
|
+
} | {
|
|
138318
|
+
type: "Figma";
|
|
138319
|
+
renderMode: "Image" | "HTML";
|
|
138320
|
+
} | undefined;
|
|
138321
|
+
}, {
|
|
138322
|
+
id: string;
|
|
138323
|
+
url: string;
|
|
138324
|
+
source?: {
|
|
138325
|
+
type: "UserUpload";
|
|
138326
|
+
userId: string;
|
|
138327
|
+
} | {
|
|
138328
|
+
type: "Figma";
|
|
138329
|
+
renderMode: "Image" | "HTML";
|
|
138330
|
+
} | undefined;
|
|
138331
|
+
}>, "many">>;
|
|
138098
138332
|
}, "strip", z__default.ZodTypeAny, {
|
|
138333
|
+
files?: {
|
|
138334
|
+
id: string;
|
|
138335
|
+
url: string;
|
|
138336
|
+
source?: {
|
|
138337
|
+
type: "UserUpload";
|
|
138338
|
+
userId: string;
|
|
138339
|
+
} | {
|
|
138340
|
+
type: "Figma";
|
|
138341
|
+
renderMode: "Image" | "HTML";
|
|
138342
|
+
} | undefined;
|
|
138343
|
+
}[] | undefined;
|
|
138099
138344
|
iterationId?: string | undefined;
|
|
138100
138345
|
}, {
|
|
138346
|
+
files?: {
|
|
138347
|
+
id: string;
|
|
138348
|
+
url: string;
|
|
138349
|
+
source?: {
|
|
138350
|
+
type: "UserUpload";
|
|
138351
|
+
userId: string;
|
|
138352
|
+
} | {
|
|
138353
|
+
type: "Figma";
|
|
138354
|
+
renderMode: "Image" | "HTML";
|
|
138355
|
+
} | undefined;
|
|
138356
|
+
}[] | undefined;
|
|
138101
138357
|
iterationId?: string | undefined;
|
|
138102
138358
|
}>>;
|
|
138103
138359
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
138104
138360
|
createdAt: z__default.ZodString;
|
|
138105
138361
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
138106
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
138362
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
138363
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
138364
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
138365
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
138366
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
138367
|
+
fileIds?: string[] | undefined;
|
|
138368
|
+
iterationId?: string | undefined;
|
|
138369
|
+
}, {
|
|
138370
|
+
fileIds?: string[] | undefined;
|
|
138371
|
+
iterationId?: string | undefined;
|
|
138372
|
+
}>>;
|
|
138373
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
138107
138374
|
id: string;
|
|
138108
138375
|
body: string;
|
|
138109
138376
|
isPrompt?: boolean | undefined;
|
|
138110
138377
|
startsNewThread?: boolean | undefined;
|
|
138111
138378
|
parentMessageId?: string | undefined;
|
|
138112
138379
|
attachments?: {
|
|
138380
|
+
fileIds?: string[] | undefined;
|
|
138113
138381
|
iterationId?: string | undefined;
|
|
138114
138382
|
} | undefined;
|
|
138115
138383
|
}, {
|
|
@@ -138119,6 +138387,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138119
138387
|
startsNewThread?: boolean | undefined;
|
|
138120
138388
|
parentMessageId?: string | undefined;
|
|
138121
138389
|
attachments?: {
|
|
138390
|
+
fileIds?: string[] | undefined;
|
|
138122
138391
|
iterationId?: string | undefined;
|
|
138123
138392
|
} | undefined;
|
|
138124
138393
|
}>;
|
|
@@ -138132,6 +138401,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138132
138401
|
startsNewThread?: boolean | undefined;
|
|
138133
138402
|
parentMessageId?: string | undefined;
|
|
138134
138403
|
attachments?: {
|
|
138404
|
+
fileIds?: string[] | undefined;
|
|
138135
138405
|
iterationId?: string | undefined;
|
|
138136
138406
|
} | undefined;
|
|
138137
138407
|
};
|
|
@@ -138148,6 +138418,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138148
138418
|
startsNewThread?: boolean | undefined;
|
|
138149
138419
|
parentMessageId?: string | undefined;
|
|
138150
138420
|
attachments?: {
|
|
138421
|
+
fileIds?: string[] | undefined;
|
|
138151
138422
|
iterationId?: string | undefined;
|
|
138152
138423
|
} | undefined;
|
|
138153
138424
|
};
|
|
@@ -214294,6 +214565,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214294
214565
|
afterFeatureId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
214295
214566
|
initialMessage: z$1.ZodObject<Pick<{
|
|
214296
214567
|
id: z$1.ZodString;
|
|
214568
|
+
threadId: z$1.ZodString;
|
|
214297
214569
|
sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
214298
214570
|
type: z$1.ZodLiteral<"User">;
|
|
214299
214571
|
userId: z$1.ZodString;
|
|
@@ -214305,10 +214577,13 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214305
214577
|
userId: string;
|
|
214306
214578
|
}>, z$1.ZodObject<{
|
|
214307
214579
|
type: z$1.ZodLiteral<"Agent">;
|
|
214580
|
+
agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
214308
214581
|
}, "strip", z$1.ZodTypeAny, {
|
|
214309
214582
|
type: "Agent";
|
|
214583
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
214310
214584
|
}, {
|
|
214311
214585
|
type: "Agent";
|
|
214586
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
214312
214587
|
}>, z$1.ZodObject<{
|
|
214313
214588
|
type: z$1.ZodLiteral<"System">;
|
|
214314
214589
|
onBehalfOfUserId: z$1.ZodString;
|
|
@@ -214326,21 +214601,103 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214326
214601
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
214327
214602
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
214328
214603
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
214604
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
214605
|
+
id: z$1.ZodString;
|
|
214606
|
+
name: z$1.ZodString;
|
|
214607
|
+
deduplicationKey: z$1.ZodString;
|
|
214608
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
214609
|
+
storagePath: z$1.ZodString;
|
|
214610
|
+
url: z$1.ZodString;
|
|
214611
|
+
size: z$1.ZodNumber;
|
|
214612
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
214613
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
214614
|
+
userId: z$1.ZodString;
|
|
214615
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214616
|
+
type: "UserUpload";
|
|
214617
|
+
userId: string;
|
|
214618
|
+
}, {
|
|
214619
|
+
type: "UserUpload";
|
|
214620
|
+
userId: string;
|
|
214621
|
+
}>, z$1.ZodObject<{
|
|
214622
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
214623
|
+
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
214624
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214625
|
+
type: "Figma";
|
|
214626
|
+
renderMode: "Image" | "HTML";
|
|
214627
|
+
}, {
|
|
214628
|
+
type: "Figma";
|
|
214629
|
+
renderMode: "Image" | "HTML";
|
|
214630
|
+
}>]>>;
|
|
214631
|
+
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
214632
|
+
id: string;
|
|
214633
|
+
url: string;
|
|
214634
|
+
source?: {
|
|
214635
|
+
type: "UserUpload";
|
|
214636
|
+
userId: string;
|
|
214637
|
+
} | {
|
|
214638
|
+
type: "Figma";
|
|
214639
|
+
renderMode: "Image" | "HTML";
|
|
214640
|
+
} | undefined;
|
|
214641
|
+
}, {
|
|
214642
|
+
id: string;
|
|
214643
|
+
url: string;
|
|
214644
|
+
source?: {
|
|
214645
|
+
type: "UserUpload";
|
|
214646
|
+
userId: string;
|
|
214647
|
+
} | {
|
|
214648
|
+
type: "Figma";
|
|
214649
|
+
renderMode: "Image" | "HTML";
|
|
214650
|
+
} | undefined;
|
|
214651
|
+
}>, "many">>;
|
|
214329
214652
|
}, "strip", z$1.ZodTypeAny, {
|
|
214653
|
+
files?: {
|
|
214654
|
+
id: string;
|
|
214655
|
+
url: string;
|
|
214656
|
+
source?: {
|
|
214657
|
+
type: "UserUpload";
|
|
214658
|
+
userId: string;
|
|
214659
|
+
} | {
|
|
214660
|
+
type: "Figma";
|
|
214661
|
+
renderMode: "Image" | "HTML";
|
|
214662
|
+
} | undefined;
|
|
214663
|
+
}[] | undefined;
|
|
214330
214664
|
iterationId?: string | undefined;
|
|
214331
214665
|
}, {
|
|
214666
|
+
files?: {
|
|
214667
|
+
id: string;
|
|
214668
|
+
url: string;
|
|
214669
|
+
source?: {
|
|
214670
|
+
type: "UserUpload";
|
|
214671
|
+
userId: string;
|
|
214672
|
+
} | {
|
|
214673
|
+
type: "Figma";
|
|
214674
|
+
renderMode: "Image" | "HTML";
|
|
214675
|
+
} | undefined;
|
|
214676
|
+
}[] | undefined;
|
|
214332
214677
|
iterationId?: string | undefined;
|
|
214333
214678
|
}>>;
|
|
214334
214679
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
214335
214680
|
createdAt: z$1.ZodString;
|
|
214336
214681
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
214337
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
214682
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
214683
|
+
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
214684
|
+
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
214685
|
+
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
214686
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214687
|
+
fileIds?: string[] | undefined;
|
|
214688
|
+
iterationId?: string | undefined;
|
|
214689
|
+
}, {
|
|
214690
|
+
fileIds?: string[] | undefined;
|
|
214691
|
+
iterationId?: string | undefined;
|
|
214692
|
+
}>>;
|
|
214693
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214338
214694
|
id: string;
|
|
214339
214695
|
body: string;
|
|
214340
214696
|
isPrompt?: boolean | undefined;
|
|
214341
214697
|
startsNewThread?: boolean | undefined;
|
|
214342
214698
|
parentMessageId?: string | undefined;
|
|
214343
214699
|
attachments?: {
|
|
214700
|
+
fileIds?: string[] | undefined;
|
|
214344
214701
|
iterationId?: string | undefined;
|
|
214345
214702
|
} | undefined;
|
|
214346
214703
|
}, {
|
|
@@ -214350,6 +214707,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214350
214707
|
startsNewThread?: boolean | undefined;
|
|
214351
214708
|
parentMessageId?: string | undefined;
|
|
214352
214709
|
attachments?: {
|
|
214710
|
+
fileIds?: string[] | undefined;
|
|
214353
214711
|
iterationId?: string | undefined;
|
|
214354
214712
|
} | undefined;
|
|
214355
214713
|
}>;
|
|
@@ -214363,6 +214721,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214363
214721
|
startsNewThread?: boolean | undefined;
|
|
214364
214722
|
parentMessageId?: string | undefined;
|
|
214365
214723
|
attachments?: {
|
|
214724
|
+
fileIds?: string[] | undefined;
|
|
214366
214725
|
iterationId?: string | undefined;
|
|
214367
214726
|
} | undefined;
|
|
214368
214727
|
};
|
|
@@ -214379,6 +214738,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214379
214738
|
startsNewThread?: boolean | undefined;
|
|
214380
214739
|
parentMessageId?: string | undefined;
|
|
214381
214740
|
attachments?: {
|
|
214741
|
+
fileIds?: string[] | undefined;
|
|
214382
214742
|
iterationId?: string | undefined;
|
|
214383
214743
|
} | undefined;
|
|
214384
214744
|
};
|
|
@@ -214600,6 +214960,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214600
214960
|
startsNewThread?: boolean | undefined;
|
|
214601
214961
|
parentMessageId?: string | undefined;
|
|
214602
214962
|
attachments?: {
|
|
214963
|
+
fileIds?: string[] | undefined;
|
|
214603
214964
|
iterationId?: string | undefined;
|
|
214604
214965
|
} | undefined;
|
|
214605
214966
|
};
|
|
@@ -214652,6 +215013,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214652
215013
|
startsNewThread?: boolean | undefined;
|
|
214653
215014
|
parentMessageId?: string | undefined;
|
|
214654
215015
|
attachments?: {
|
|
215016
|
+
fileIds?: string[] | undefined;
|
|
214655
215017
|
iterationId?: string | undefined;
|
|
214656
215018
|
} | undefined;
|
|
214657
215019
|
};
|
|
@@ -214705,6 +215067,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
214705
215067
|
afterFeatureId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
214706
215068
|
initialMessage: z$1.ZodObject<Pick<{
|
|
214707
215069
|
id: z$1.ZodString;
|
|
215070
|
+
threadId: z$1.ZodString;
|
|
214708
215071
|
sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
214709
215072
|
type: z$1.ZodLiteral<"User">;
|
|
214710
215073
|
userId: z$1.ZodString;
|
|
@@ -214716,10 +215079,13 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
214716
215079
|
userId: string;
|
|
214717
215080
|
}>, z$1.ZodObject<{
|
|
214718
215081
|
type: z$1.ZodLiteral<"Agent">;
|
|
215082
|
+
agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
214719
215083
|
}, "strip", z$1.ZodTypeAny, {
|
|
214720
215084
|
type: "Agent";
|
|
215085
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
214721
215086
|
}, {
|
|
214722
215087
|
type: "Agent";
|
|
215088
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
214723
215089
|
}>, z$1.ZodObject<{
|
|
214724
215090
|
type: z$1.ZodLiteral<"System">;
|
|
214725
215091
|
onBehalfOfUserId: z$1.ZodString;
|
|
@@ -214737,21 +215103,103 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
214737
215103
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
214738
215104
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
214739
215105
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
215106
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
215107
|
+
id: z$1.ZodString;
|
|
215108
|
+
name: z$1.ZodString;
|
|
215109
|
+
deduplicationKey: z$1.ZodString;
|
|
215110
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
215111
|
+
storagePath: z$1.ZodString;
|
|
215112
|
+
url: z$1.ZodString;
|
|
215113
|
+
size: z$1.ZodNumber;
|
|
215114
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
215115
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
215116
|
+
userId: z$1.ZodString;
|
|
215117
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
215118
|
+
type: "UserUpload";
|
|
215119
|
+
userId: string;
|
|
215120
|
+
}, {
|
|
215121
|
+
type: "UserUpload";
|
|
215122
|
+
userId: string;
|
|
215123
|
+
}>, z$1.ZodObject<{
|
|
215124
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
215125
|
+
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
215126
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
215127
|
+
type: "Figma";
|
|
215128
|
+
renderMode: "Image" | "HTML";
|
|
215129
|
+
}, {
|
|
215130
|
+
type: "Figma";
|
|
215131
|
+
renderMode: "Image" | "HTML";
|
|
215132
|
+
}>]>>;
|
|
215133
|
+
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
215134
|
+
id: string;
|
|
215135
|
+
url: string;
|
|
215136
|
+
source?: {
|
|
215137
|
+
type: "UserUpload";
|
|
215138
|
+
userId: string;
|
|
215139
|
+
} | {
|
|
215140
|
+
type: "Figma";
|
|
215141
|
+
renderMode: "Image" | "HTML";
|
|
215142
|
+
} | undefined;
|
|
215143
|
+
}, {
|
|
215144
|
+
id: string;
|
|
215145
|
+
url: string;
|
|
215146
|
+
source?: {
|
|
215147
|
+
type: "UserUpload";
|
|
215148
|
+
userId: string;
|
|
215149
|
+
} | {
|
|
215150
|
+
type: "Figma";
|
|
215151
|
+
renderMode: "Image" | "HTML";
|
|
215152
|
+
} | undefined;
|
|
215153
|
+
}>, "many">>;
|
|
214740
215154
|
}, "strip", z$1.ZodTypeAny, {
|
|
215155
|
+
files?: {
|
|
215156
|
+
id: string;
|
|
215157
|
+
url: string;
|
|
215158
|
+
source?: {
|
|
215159
|
+
type: "UserUpload";
|
|
215160
|
+
userId: string;
|
|
215161
|
+
} | {
|
|
215162
|
+
type: "Figma";
|
|
215163
|
+
renderMode: "Image" | "HTML";
|
|
215164
|
+
} | undefined;
|
|
215165
|
+
}[] | undefined;
|
|
214741
215166
|
iterationId?: string | undefined;
|
|
214742
215167
|
}, {
|
|
215168
|
+
files?: {
|
|
215169
|
+
id: string;
|
|
215170
|
+
url: string;
|
|
215171
|
+
source?: {
|
|
215172
|
+
type: "UserUpload";
|
|
215173
|
+
userId: string;
|
|
215174
|
+
} | {
|
|
215175
|
+
type: "Figma";
|
|
215176
|
+
renderMode: "Image" | "HTML";
|
|
215177
|
+
} | undefined;
|
|
215178
|
+
}[] | undefined;
|
|
214743
215179
|
iterationId?: string | undefined;
|
|
214744
215180
|
}>>;
|
|
214745
215181
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
214746
215182
|
createdAt: z$1.ZodString;
|
|
214747
215183
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
214748
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
215184
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
215185
|
+
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
215186
|
+
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
215187
|
+
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
215188
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
215189
|
+
fileIds?: string[] | undefined;
|
|
215190
|
+
iterationId?: string | undefined;
|
|
215191
|
+
}, {
|
|
215192
|
+
fileIds?: string[] | undefined;
|
|
215193
|
+
iterationId?: string | undefined;
|
|
215194
|
+
}>>;
|
|
215195
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214749
215196
|
id: string;
|
|
214750
215197
|
body: string;
|
|
214751
215198
|
isPrompt?: boolean | undefined;
|
|
214752
215199
|
startsNewThread?: boolean | undefined;
|
|
214753
215200
|
parentMessageId?: string | undefined;
|
|
214754
215201
|
attachments?: {
|
|
215202
|
+
fileIds?: string[] | undefined;
|
|
214755
215203
|
iterationId?: string | undefined;
|
|
214756
215204
|
} | undefined;
|
|
214757
215205
|
}, {
|
|
@@ -214761,6 +215209,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
214761
215209
|
startsNewThread?: boolean | undefined;
|
|
214762
215210
|
parentMessageId?: string | undefined;
|
|
214763
215211
|
attachments?: {
|
|
215212
|
+
fileIds?: string[] | undefined;
|
|
214764
215213
|
iterationId?: string | undefined;
|
|
214765
215214
|
} | undefined;
|
|
214766
215215
|
}>;
|
|
@@ -214774,6 +215223,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
214774
215223
|
startsNewThread?: boolean | undefined;
|
|
214775
215224
|
parentMessageId?: string | undefined;
|
|
214776
215225
|
attachments?: {
|
|
215226
|
+
fileIds?: string[] | undefined;
|
|
214777
215227
|
iterationId?: string | undefined;
|
|
214778
215228
|
} | undefined;
|
|
214779
215229
|
};
|
|
@@ -214790,6 +215240,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
214790
215240
|
startsNewThread?: boolean | undefined;
|
|
214791
215241
|
parentMessageId?: string | undefined;
|
|
214792
215242
|
attachments?: {
|
|
215243
|
+
fileIds?: string[] | undefined;
|
|
214793
215244
|
iterationId?: string | undefined;
|
|
214794
215245
|
} | undefined;
|
|
214795
215246
|
};
|
|
@@ -215009,6 +215460,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215009
215460
|
startsNewThread?: boolean | undefined;
|
|
215010
215461
|
parentMessageId?: string | undefined;
|
|
215011
215462
|
attachments?: {
|
|
215463
|
+
fileIds?: string[] | undefined;
|
|
215012
215464
|
iterationId?: string | undefined;
|
|
215013
215465
|
} | undefined;
|
|
215014
215466
|
};
|
|
@@ -215057,6 +215509,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215057
215509
|
startsNewThread?: boolean | undefined;
|
|
215058
215510
|
parentMessageId?: string | undefined;
|
|
215059
215511
|
attachments?: {
|
|
215512
|
+
fileIds?: string[] | undefined;
|
|
215060
215513
|
iterationId?: string | undefined;
|
|
215061
215514
|
} | undefined;
|
|
215062
215515
|
};
|