@supernova-studio/model 1.38.0 → 1.39.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.
- package/dist/index.d.mts +27 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -157214,6 +157214,7 @@ declare const ForgeProjectArtifact: z.ZodObject<{
|
|
|
157214
157214
|
updatedAt: z.ZodDate;
|
|
157215
157215
|
createdByUserId: z.ZodString;
|
|
157216
157216
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
157217
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
157217
157218
|
}, "strip", z.ZodTypeAny, {
|
|
157218
157219
|
id: string;
|
|
157219
157220
|
createdAt: Date;
|
|
@@ -157222,6 +157223,7 @@ declare const ForgeProjectArtifact: z.ZodObject<{
|
|
|
157222
157223
|
sortOrder: number;
|
|
157223
157224
|
createdByUserId: string;
|
|
157224
157225
|
projectId: string;
|
|
157226
|
+
threadId?: string | undefined;
|
|
157225
157227
|
previewUrl?: string | null | undefined;
|
|
157226
157228
|
iterationId?: string | null | undefined;
|
|
157227
157229
|
sectionId?: string | undefined;
|
|
@@ -157232,6 +157234,7 @@ declare const ForgeProjectArtifact: z.ZodObject<{
|
|
|
157232
157234
|
title: string;
|
|
157233
157235
|
createdByUserId: string;
|
|
157234
157236
|
projectId: string;
|
|
157237
|
+
threadId?: string | undefined;
|
|
157235
157238
|
sortOrder?: number | undefined;
|
|
157236
157239
|
previewUrl?: string | null | undefined;
|
|
157237
157240
|
iterationId?: string | null | undefined;
|
|
@@ -157265,7 +157268,6 @@ declare const ForgeProjectContextTailwindConfig: z.ZodObject<{
|
|
|
157265
157268
|
}>;
|
|
157266
157269
|
type ForgeProjectContextTailwindConfig = z.infer<typeof ForgeProjectContextTailwindConfig>;
|
|
157267
157270
|
declare const ForgeProjectContext: z.ZodObject<{
|
|
157268
|
-
createdAt: z.ZodDate;
|
|
157269
157271
|
definition: z.ZodString;
|
|
157270
157272
|
dependencies: z.ZodArray<z.ZodObject<{
|
|
157271
157273
|
packageName: z.ZodString;
|
|
@@ -157366,6 +157368,7 @@ declare const ForgeProjectContext: z.ZodObject<{
|
|
|
157366
157368
|
version: string;
|
|
157367
157369
|
content: string;
|
|
157368
157370
|
}>>;
|
|
157371
|
+
createdAt: z.ZodDate;
|
|
157369
157372
|
updatedAt: z.ZodDate;
|
|
157370
157373
|
workspaceId: z.ZodString;
|
|
157371
157374
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -157477,6 +157480,7 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157477
157480
|
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
157478
157481
|
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
157479
157482
|
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
157483
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
157480
157484
|
}, "strip", z.ZodTypeAny, {
|
|
157481
157485
|
status: "Draft" | "ReadyForDevelopment";
|
|
157482
157486
|
id: string;
|
|
@@ -157489,6 +157493,7 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157489
157493
|
numberOfIterations: number;
|
|
157490
157494
|
numberOfBookmarkedIterations: number;
|
|
157491
157495
|
updatedAt?: Date | undefined;
|
|
157496
|
+
threadId?: string | undefined;
|
|
157492
157497
|
sectionId?: string | undefined;
|
|
157493
157498
|
isArchived?: boolean | undefined;
|
|
157494
157499
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -157501,6 +157506,7 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157501
157506
|
projectId: string;
|
|
157502
157507
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
157503
157508
|
updatedAt?: Date | undefined;
|
|
157509
|
+
threadId?: string | undefined;
|
|
157504
157510
|
sortOrder?: number | undefined;
|
|
157505
157511
|
sectionId?: string | undefined;
|
|
157506
157512
|
isArchived?: boolean | undefined;
|
|
@@ -188094,6 +188100,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188094
188100
|
updatedAt: z.ZodDate;
|
|
188095
188101
|
createdByUserId: z.ZodString;
|
|
188096
188102
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
188103
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
188097
188104
|
}, "strip", z.ZodTypeAny, {
|
|
188098
188105
|
id: string;
|
|
188099
188106
|
createdAt: Date;
|
|
@@ -188102,6 +188109,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188102
188109
|
sortOrder: number;
|
|
188103
188110
|
createdByUserId: string;
|
|
188104
188111
|
projectId: string;
|
|
188112
|
+
threadId?: string | undefined;
|
|
188105
188113
|
previewUrl?: string | null | undefined;
|
|
188106
188114
|
iterationId?: string | null | undefined;
|
|
188107
188115
|
sectionId?: string | undefined;
|
|
@@ -188112,6 +188120,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188112
188120
|
title: string;
|
|
188113
188121
|
createdByUserId: string;
|
|
188114
188122
|
projectId: string;
|
|
188123
|
+
threadId?: string | undefined;
|
|
188115
188124
|
sortOrder?: number | undefined;
|
|
188116
188125
|
previewUrl?: string | null | undefined;
|
|
188117
188126
|
iterationId?: string | null | undefined;
|
|
@@ -188132,6 +188141,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188132
188141
|
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
188133
188142
|
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
188134
188143
|
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
188144
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
188135
188145
|
}, "strip", z.ZodTypeAny, {
|
|
188136
188146
|
status: "Draft" | "ReadyForDevelopment";
|
|
188137
188147
|
id: string;
|
|
@@ -188144,6 +188154,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188144
188154
|
numberOfIterations: number;
|
|
188145
188155
|
numberOfBookmarkedIterations: number;
|
|
188146
188156
|
updatedAt?: Date | undefined;
|
|
188157
|
+
threadId?: string | undefined;
|
|
188147
188158
|
sectionId?: string | undefined;
|
|
188148
188159
|
isArchived?: boolean | undefined;
|
|
188149
188160
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188156,6 +188167,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188156
188167
|
projectId: string;
|
|
188157
188168
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188158
188169
|
updatedAt?: Date | undefined;
|
|
188170
|
+
threadId?: string | undefined;
|
|
188159
188171
|
sortOrder?: number | undefined;
|
|
188160
188172
|
sectionId?: string | undefined;
|
|
188161
188173
|
isArchived?: boolean | undefined;
|
|
@@ -188226,6 +188238,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188226
188238
|
numberOfIterations: number;
|
|
188227
188239
|
numberOfBookmarkedIterations: number;
|
|
188228
188240
|
updatedAt?: Date | undefined;
|
|
188241
|
+
threadId?: string | undefined;
|
|
188229
188242
|
sectionId?: string | undefined;
|
|
188230
188243
|
isArchived?: boolean | undefined;
|
|
188231
188244
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188238,6 +188251,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188238
188251
|
sortOrder: number;
|
|
188239
188252
|
createdByUserId: string;
|
|
188240
188253
|
projectId: string;
|
|
188254
|
+
threadId?: string | undefined;
|
|
188241
188255
|
previewUrl?: string | null | undefined;
|
|
188242
188256
|
iterationId?: string | null | undefined;
|
|
188243
188257
|
sectionId?: string | undefined;
|
|
@@ -188270,6 +188284,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188270
188284
|
projectId: string;
|
|
188271
188285
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188272
188286
|
updatedAt?: Date | undefined;
|
|
188287
|
+
threadId?: string | undefined;
|
|
188273
188288
|
sortOrder?: number | undefined;
|
|
188274
188289
|
sectionId?: string | undefined;
|
|
188275
188290
|
isArchived?: boolean | undefined;
|
|
@@ -188284,6 +188299,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188284
188299
|
title: string;
|
|
188285
188300
|
createdByUserId: string;
|
|
188286
188301
|
projectId: string;
|
|
188302
|
+
threadId?: string | undefined;
|
|
188287
188303
|
sortOrder?: number | undefined;
|
|
188288
188304
|
previewUrl?: string | null | undefined;
|
|
188289
188305
|
iterationId?: string | null | undefined;
|
|
@@ -188321,6 +188337,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188321
188337
|
updatedAt: z.ZodDate;
|
|
188322
188338
|
createdByUserId: z.ZodString;
|
|
188323
188339
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
188340
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
188324
188341
|
}, "strip", z.ZodTypeAny, {
|
|
188325
188342
|
id: string;
|
|
188326
188343
|
createdAt: Date;
|
|
@@ -188329,6 +188346,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188329
188346
|
sortOrder: number;
|
|
188330
188347
|
createdByUserId: string;
|
|
188331
188348
|
projectId: string;
|
|
188349
|
+
threadId?: string | undefined;
|
|
188332
188350
|
previewUrl?: string | null | undefined;
|
|
188333
188351
|
iterationId?: string | null | undefined;
|
|
188334
188352
|
sectionId?: string | undefined;
|
|
@@ -188339,6 +188357,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188339
188357
|
title: string;
|
|
188340
188358
|
createdByUserId: string;
|
|
188341
188359
|
projectId: string;
|
|
188360
|
+
threadId?: string | undefined;
|
|
188342
188361
|
sortOrder?: number | undefined;
|
|
188343
188362
|
previewUrl?: string | null | undefined;
|
|
188344
188363
|
iterationId?: string | null | undefined;
|
|
@@ -188360,6 +188379,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188360
188379
|
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
188361
188380
|
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
188362
188381
|
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
188382
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
188363
188383
|
}, "strip", z.ZodTypeAny, {
|
|
188364
188384
|
status: "Draft" | "ReadyForDevelopment";
|
|
188365
188385
|
id: string;
|
|
@@ -188372,6 +188392,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188372
188392
|
numberOfIterations: number;
|
|
188373
188393
|
numberOfBookmarkedIterations: number;
|
|
188374
188394
|
updatedAt?: Date | undefined;
|
|
188395
|
+
threadId?: string | undefined;
|
|
188375
188396
|
sectionId?: string | undefined;
|
|
188376
188397
|
isArchived?: boolean | undefined;
|
|
188377
188398
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188384,6 +188405,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188384
188405
|
projectId: string;
|
|
188385
188406
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188386
188407
|
updatedAt?: Date | undefined;
|
|
188408
|
+
threadId?: string | undefined;
|
|
188387
188409
|
sortOrder?: number | undefined;
|
|
188388
188410
|
sectionId?: string | undefined;
|
|
188389
188411
|
isArchived?: boolean | undefined;
|
|
@@ -188458,6 +188480,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188458
188480
|
numberOfIterations: number;
|
|
188459
188481
|
numberOfBookmarkedIterations: number;
|
|
188460
188482
|
updatedAt?: Date | undefined;
|
|
188483
|
+
threadId?: string | undefined;
|
|
188461
188484
|
sectionId?: string | undefined;
|
|
188462
188485
|
isArchived?: boolean | undefined;
|
|
188463
188486
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188471,6 +188494,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188471
188494
|
sortOrder: number;
|
|
188472
188495
|
createdByUserId: string;
|
|
188473
188496
|
projectId: string;
|
|
188497
|
+
threadId?: string | undefined;
|
|
188474
188498
|
previewUrl?: string | null | undefined;
|
|
188475
188499
|
iterationId?: string | null | undefined;
|
|
188476
188500
|
sectionId?: string | undefined;
|
|
@@ -188507,6 +188531,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188507
188531
|
projectId: string;
|
|
188508
188532
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188509
188533
|
updatedAt?: Date | undefined;
|
|
188534
|
+
threadId?: string | undefined;
|
|
188510
188535
|
sortOrder?: number | undefined;
|
|
188511
188536
|
sectionId?: string | undefined;
|
|
188512
188537
|
isArchived?: boolean | undefined;
|
|
@@ -188522,6 +188547,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188522
188547
|
title: string;
|
|
188523
188548
|
createdByUserId: string;
|
|
188524
188549
|
projectId: string;
|
|
188550
|
+
threadId?: string | undefined;
|
|
188525
188551
|
sortOrder?: number | undefined;
|
|
188526
188552
|
previewUrl?: string | null | undefined;
|
|
188527
188553
|
iterationId?: string | null | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -157214,6 +157214,7 @@ declare const ForgeProjectArtifact: z.ZodObject<{
|
|
|
157214
157214
|
updatedAt: z.ZodDate;
|
|
157215
157215
|
createdByUserId: z.ZodString;
|
|
157216
157216
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
157217
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
157217
157218
|
}, "strip", z.ZodTypeAny, {
|
|
157218
157219
|
id: string;
|
|
157219
157220
|
createdAt: Date;
|
|
@@ -157222,6 +157223,7 @@ declare const ForgeProjectArtifact: z.ZodObject<{
|
|
|
157222
157223
|
sortOrder: number;
|
|
157223
157224
|
createdByUserId: string;
|
|
157224
157225
|
projectId: string;
|
|
157226
|
+
threadId?: string | undefined;
|
|
157225
157227
|
previewUrl?: string | null | undefined;
|
|
157226
157228
|
iterationId?: string | null | undefined;
|
|
157227
157229
|
sectionId?: string | undefined;
|
|
@@ -157232,6 +157234,7 @@ declare const ForgeProjectArtifact: z.ZodObject<{
|
|
|
157232
157234
|
title: string;
|
|
157233
157235
|
createdByUserId: string;
|
|
157234
157236
|
projectId: string;
|
|
157237
|
+
threadId?: string | undefined;
|
|
157235
157238
|
sortOrder?: number | undefined;
|
|
157236
157239
|
previewUrl?: string | null | undefined;
|
|
157237
157240
|
iterationId?: string | null | undefined;
|
|
@@ -157265,7 +157268,6 @@ declare const ForgeProjectContextTailwindConfig: z.ZodObject<{
|
|
|
157265
157268
|
}>;
|
|
157266
157269
|
type ForgeProjectContextTailwindConfig = z.infer<typeof ForgeProjectContextTailwindConfig>;
|
|
157267
157270
|
declare const ForgeProjectContext: z.ZodObject<{
|
|
157268
|
-
createdAt: z.ZodDate;
|
|
157269
157271
|
definition: z.ZodString;
|
|
157270
157272
|
dependencies: z.ZodArray<z.ZodObject<{
|
|
157271
157273
|
packageName: z.ZodString;
|
|
@@ -157366,6 +157368,7 @@ declare const ForgeProjectContext: z.ZodObject<{
|
|
|
157366
157368
|
version: string;
|
|
157367
157369
|
content: string;
|
|
157368
157370
|
}>>;
|
|
157371
|
+
createdAt: z.ZodDate;
|
|
157369
157372
|
updatedAt: z.ZodDate;
|
|
157370
157373
|
workspaceId: z.ZodString;
|
|
157371
157374
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -157477,6 +157480,7 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157477
157480
|
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
157478
157481
|
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
157479
157482
|
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
157483
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
157480
157484
|
}, "strip", z.ZodTypeAny, {
|
|
157481
157485
|
status: "Draft" | "ReadyForDevelopment";
|
|
157482
157486
|
id: string;
|
|
@@ -157489,6 +157493,7 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157489
157493
|
numberOfIterations: number;
|
|
157490
157494
|
numberOfBookmarkedIterations: number;
|
|
157491
157495
|
updatedAt?: Date | undefined;
|
|
157496
|
+
threadId?: string | undefined;
|
|
157492
157497
|
sectionId?: string | undefined;
|
|
157493
157498
|
isArchived?: boolean | undefined;
|
|
157494
157499
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -157501,6 +157506,7 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157501
157506
|
projectId: string;
|
|
157502
157507
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
157503
157508
|
updatedAt?: Date | undefined;
|
|
157509
|
+
threadId?: string | undefined;
|
|
157504
157510
|
sortOrder?: number | undefined;
|
|
157505
157511
|
sectionId?: string | undefined;
|
|
157506
157512
|
isArchived?: boolean | undefined;
|
|
@@ -188094,6 +188100,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188094
188100
|
updatedAt: z.ZodDate;
|
|
188095
188101
|
createdByUserId: z.ZodString;
|
|
188096
188102
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
188103
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
188097
188104
|
}, "strip", z.ZodTypeAny, {
|
|
188098
188105
|
id: string;
|
|
188099
188106
|
createdAt: Date;
|
|
@@ -188102,6 +188109,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188102
188109
|
sortOrder: number;
|
|
188103
188110
|
createdByUserId: string;
|
|
188104
188111
|
projectId: string;
|
|
188112
|
+
threadId?: string | undefined;
|
|
188105
188113
|
previewUrl?: string | null | undefined;
|
|
188106
188114
|
iterationId?: string | null | undefined;
|
|
188107
188115
|
sectionId?: string | undefined;
|
|
@@ -188112,6 +188120,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188112
188120
|
title: string;
|
|
188113
188121
|
createdByUserId: string;
|
|
188114
188122
|
projectId: string;
|
|
188123
|
+
threadId?: string | undefined;
|
|
188115
188124
|
sortOrder?: number | undefined;
|
|
188116
188125
|
previewUrl?: string | null | undefined;
|
|
188117
188126
|
iterationId?: string | null | undefined;
|
|
@@ -188132,6 +188141,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188132
188141
|
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
188133
188142
|
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
188134
188143
|
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
188144
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
188135
188145
|
}, "strip", z.ZodTypeAny, {
|
|
188136
188146
|
status: "Draft" | "ReadyForDevelopment";
|
|
188137
188147
|
id: string;
|
|
@@ -188144,6 +188154,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188144
188154
|
numberOfIterations: number;
|
|
188145
188155
|
numberOfBookmarkedIterations: number;
|
|
188146
188156
|
updatedAt?: Date | undefined;
|
|
188157
|
+
threadId?: string | undefined;
|
|
188147
188158
|
sectionId?: string | undefined;
|
|
188148
188159
|
isArchived?: boolean | undefined;
|
|
188149
188160
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188156,6 +188167,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188156
188167
|
projectId: string;
|
|
188157
188168
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188158
188169
|
updatedAt?: Date | undefined;
|
|
188170
|
+
threadId?: string | undefined;
|
|
188159
188171
|
sortOrder?: number | undefined;
|
|
188160
188172
|
sectionId?: string | undefined;
|
|
188161
188173
|
isArchived?: boolean | undefined;
|
|
@@ -188226,6 +188238,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188226
188238
|
numberOfIterations: number;
|
|
188227
188239
|
numberOfBookmarkedIterations: number;
|
|
188228
188240
|
updatedAt?: Date | undefined;
|
|
188241
|
+
threadId?: string | undefined;
|
|
188229
188242
|
sectionId?: string | undefined;
|
|
188230
188243
|
isArchived?: boolean | undefined;
|
|
188231
188244
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188238,6 +188251,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188238
188251
|
sortOrder: number;
|
|
188239
188252
|
createdByUserId: string;
|
|
188240
188253
|
projectId: string;
|
|
188254
|
+
threadId?: string | undefined;
|
|
188241
188255
|
previewUrl?: string | null | undefined;
|
|
188242
188256
|
iterationId?: string | null | undefined;
|
|
188243
188257
|
sectionId?: string | undefined;
|
|
@@ -188270,6 +188284,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188270
188284
|
projectId: string;
|
|
188271
188285
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188272
188286
|
updatedAt?: Date | undefined;
|
|
188287
|
+
threadId?: string | undefined;
|
|
188273
188288
|
sortOrder?: number | undefined;
|
|
188274
188289
|
sectionId?: string | undefined;
|
|
188275
188290
|
isArchived?: boolean | undefined;
|
|
@@ -188284,6 +188299,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188284
188299
|
title: string;
|
|
188285
188300
|
createdByUserId: string;
|
|
188286
188301
|
projectId: string;
|
|
188302
|
+
threadId?: string | undefined;
|
|
188287
188303
|
sortOrder?: number | undefined;
|
|
188288
188304
|
previewUrl?: string | null | undefined;
|
|
188289
188305
|
iterationId?: string | null | undefined;
|
|
@@ -188321,6 +188337,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188321
188337
|
updatedAt: z.ZodDate;
|
|
188322
188338
|
createdByUserId: z.ZodString;
|
|
188323
188339
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
188340
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
188324
188341
|
}, "strip", z.ZodTypeAny, {
|
|
188325
188342
|
id: string;
|
|
188326
188343
|
createdAt: Date;
|
|
@@ -188329,6 +188346,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188329
188346
|
sortOrder: number;
|
|
188330
188347
|
createdByUserId: string;
|
|
188331
188348
|
projectId: string;
|
|
188349
|
+
threadId?: string | undefined;
|
|
188332
188350
|
previewUrl?: string | null | undefined;
|
|
188333
188351
|
iterationId?: string | null | undefined;
|
|
188334
188352
|
sectionId?: string | undefined;
|
|
@@ -188339,6 +188357,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188339
188357
|
title: string;
|
|
188340
188358
|
createdByUserId: string;
|
|
188341
188359
|
projectId: string;
|
|
188360
|
+
threadId?: string | undefined;
|
|
188342
188361
|
sortOrder?: number | undefined;
|
|
188343
188362
|
previewUrl?: string | null | undefined;
|
|
188344
188363
|
iterationId?: string | null | undefined;
|
|
@@ -188360,6 +188379,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188360
188379
|
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
188361
188380
|
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
188362
188381
|
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
188382
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
188363
188383
|
}, "strip", z.ZodTypeAny, {
|
|
188364
188384
|
status: "Draft" | "ReadyForDevelopment";
|
|
188365
188385
|
id: string;
|
|
@@ -188372,6 +188392,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188372
188392
|
numberOfIterations: number;
|
|
188373
188393
|
numberOfBookmarkedIterations: number;
|
|
188374
188394
|
updatedAt?: Date | undefined;
|
|
188395
|
+
threadId?: string | undefined;
|
|
188375
188396
|
sectionId?: string | undefined;
|
|
188376
188397
|
isArchived?: boolean | undefined;
|
|
188377
188398
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188384,6 +188405,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188384
188405
|
projectId: string;
|
|
188385
188406
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188386
188407
|
updatedAt?: Date | undefined;
|
|
188408
|
+
threadId?: string | undefined;
|
|
188387
188409
|
sortOrder?: number | undefined;
|
|
188388
188410
|
sectionId?: string | undefined;
|
|
188389
188411
|
isArchived?: boolean | undefined;
|
|
@@ -188458,6 +188480,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188458
188480
|
numberOfIterations: number;
|
|
188459
188481
|
numberOfBookmarkedIterations: number;
|
|
188460
188482
|
updatedAt?: Date | undefined;
|
|
188483
|
+
threadId?: string | undefined;
|
|
188461
188484
|
sectionId?: string | undefined;
|
|
188462
188485
|
isArchived?: boolean | undefined;
|
|
188463
188486
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188471,6 +188494,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188471
188494
|
sortOrder: number;
|
|
188472
188495
|
createdByUserId: string;
|
|
188473
188496
|
projectId: string;
|
|
188497
|
+
threadId?: string | undefined;
|
|
188474
188498
|
previewUrl?: string | null | undefined;
|
|
188475
188499
|
iterationId?: string | null | undefined;
|
|
188476
188500
|
sectionId?: string | undefined;
|
|
@@ -188507,6 +188531,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188507
188531
|
projectId: string;
|
|
188508
188532
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188509
188533
|
updatedAt?: Date | undefined;
|
|
188534
|
+
threadId?: string | undefined;
|
|
188510
188535
|
sortOrder?: number | undefined;
|
|
188511
188536
|
sectionId?: string | undefined;
|
|
188512
188537
|
isArchived?: boolean | undefined;
|
|
@@ -188522,6 +188547,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188522
188547
|
title: string;
|
|
188523
188548
|
createdByUserId: string;
|
|
188524
188549
|
projectId: string;
|
|
188550
|
+
threadId?: string | undefined;
|
|
188525
188551
|
sortOrder?: number | undefined;
|
|
188526
188552
|
previewUrl?: string | null | undefined;
|
|
188527
188553
|
iterationId?: string | null | undefined;
|
package/dist/index.js
CHANGED
|
@@ -5923,7 +5923,8 @@ var ForgeProjectArtifact = _zod.z.object({
|
|
|
5923
5923
|
createdAt: _zod.z.coerce.date(),
|
|
5924
5924
|
updatedAt: _zod.z.coerce.date(),
|
|
5925
5925
|
createdByUserId: _zod.z.string(),
|
|
5926
|
-
sectionId: Id.optional()
|
|
5926
|
+
sectionId: Id.optional(),
|
|
5927
|
+
threadId: _zod.z.string().optional()
|
|
5927
5928
|
});
|
|
5928
5929
|
|
|
5929
5930
|
// src/forge/project-context.ts
|
|
@@ -5938,7 +5939,6 @@ var ForgeProjectContextTailwindConfig = _zod.z.object({
|
|
|
5938
5939
|
version: _zod.z.string()
|
|
5939
5940
|
});
|
|
5940
5941
|
var ForgeProjectContext = _zod.z.object({
|
|
5941
|
-
createdAt: _zod.z.coerce.date(),
|
|
5942
5942
|
definition: _zod.z.string(),
|
|
5943
5943
|
dependencies: _zod.z.array(ForgeProjectContextDependency),
|
|
5944
5944
|
designSystemId: _zod.z.string(),
|
|
@@ -5949,6 +5949,7 @@ var ForgeProjectContext = _zod.z.object({
|
|
|
5949
5949
|
platform: _zod.z.enum(["React", "Vue", "Angular"]),
|
|
5950
5950
|
styling: _zod.z.enum(["CSS", "Tailwind"]),
|
|
5951
5951
|
tailwindConfig: ForgeProjectContextTailwindConfig.optional(),
|
|
5952
|
+
createdAt: _zod.z.coerce.date(),
|
|
5952
5953
|
updatedAt: _zod.z.coerce.date(),
|
|
5953
5954
|
workspaceId: _zod.z.string()
|
|
5954
5955
|
});
|
|
@@ -5970,7 +5971,8 @@ var ProjectFeature = _zod.z.object({
|
|
|
5970
5971
|
updatedAt: _zod.z.coerce.date().optional(),
|
|
5971
5972
|
numberOfIterations: _zod.z.number().min(0).default(0),
|
|
5972
5973
|
numberOfBookmarkedIterations: _zod.z.number().min(0).default(0),
|
|
5973
|
-
lastReplyTimestamp: _zod.z.coerce.date().optional()
|
|
5974
|
+
lastReplyTimestamp: _zod.z.coerce.date().optional(),
|
|
5975
|
+
threadId: _zod.z.string().optional()
|
|
5974
5976
|
});
|
|
5975
5977
|
|
|
5976
5978
|
// src/forge/project-figma-node.ts
|