@supernova-studio/model 1.46.5 → 1.47.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 +49 -13
- package/dist/index.d.ts +49 -13
- package/dist/index.js +21 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +38 -34
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -939,6 +939,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
939
939
|
errorReason: string;
|
|
940
940
|
enabled: boolean;
|
|
941
941
|
}>;
|
|
942
|
+
forgeActiveProjectContexts: z$1.ZodObject<{
|
|
943
|
+
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
944
|
+
errorMessage: z$1.ZodString;
|
|
945
|
+
errorReason: z$1.ZodString;
|
|
946
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
947
|
+
errorMessage: string;
|
|
948
|
+
errorReason: string;
|
|
949
|
+
max?: number | undefined;
|
|
950
|
+
}, {
|
|
951
|
+
errorMessage: string;
|
|
952
|
+
errorReason: string;
|
|
953
|
+
max?: number | undefined;
|
|
954
|
+
}>;
|
|
942
955
|
}, "strip", z$1.ZodTypeAny, {
|
|
943
956
|
analytics: {
|
|
944
957
|
errorMessage: string;
|
|
@@ -1092,6 +1105,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
1092
1105
|
errorReason: string;
|
|
1093
1106
|
enabled: boolean;
|
|
1094
1107
|
};
|
|
1108
|
+
forgeActiveProjectContexts: {
|
|
1109
|
+
errorMessage: string;
|
|
1110
|
+
errorReason: string;
|
|
1111
|
+
max?: number | undefined;
|
|
1112
|
+
};
|
|
1095
1113
|
}, {
|
|
1096
1114
|
analytics: {
|
|
1097
1115
|
errorMessage: string;
|
|
@@ -1245,6 +1263,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
1245
1263
|
errorReason: string;
|
|
1246
1264
|
enabled: boolean;
|
|
1247
1265
|
};
|
|
1266
|
+
forgeActiveProjectContexts: {
|
|
1267
|
+
errorMessage: string;
|
|
1268
|
+
errorReason: string;
|
|
1269
|
+
max?: number | undefined;
|
|
1270
|
+
};
|
|
1248
1271
|
}>;
|
|
1249
1272
|
type FeaturesSummary = z$1.infer<typeof FeaturesSummary>;
|
|
1250
1273
|
|
|
@@ -158006,6 +158029,7 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
158006
158029
|
renderMode: "Image" | "HTML" | "JSON";
|
|
158007
158030
|
} | undefined;
|
|
158008
158031
|
}>>;
|
|
158032
|
+
isArchived: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
158009
158033
|
}, "strip", z$1.ZodTypeAny, {
|
|
158010
158034
|
id: string;
|
|
158011
158035
|
createdAt: Date;
|
|
@@ -158014,6 +158038,7 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
158014
158038
|
sortOrder: number;
|
|
158015
158039
|
createdByUserId: string;
|
|
158016
158040
|
projectId: string;
|
|
158041
|
+
isArchived: boolean;
|
|
158017
158042
|
threadId?: string | undefined;
|
|
158018
158043
|
previewUrl?: string | null | undefined;
|
|
158019
158044
|
thumbnail?: {
|
|
@@ -158054,6 +158079,7 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
158054
158079
|
} | undefined;
|
|
158055
158080
|
iterationId?: string | null | undefined;
|
|
158056
158081
|
sectionId?: string | undefined;
|
|
158082
|
+
isArchived?: boolean | undefined;
|
|
158057
158083
|
}>;
|
|
158058
158084
|
type ForgeProjectArtifact = z$1.infer<typeof ForgeProjectArtifact>;
|
|
158059
158085
|
|
|
@@ -158063,7 +158089,7 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158063
158089
|
createdByUserId: z$1.ZodString;
|
|
158064
158090
|
description: z$1.ZodString;
|
|
158065
158091
|
id: z$1.ZodString;
|
|
158066
|
-
isArchived: z$1.
|
|
158092
|
+
isArchived: z$1.ZodBoolean;
|
|
158067
158093
|
name: z$1.ZodString;
|
|
158068
158094
|
projectId: z$1.ZodString;
|
|
158069
158095
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -158137,6 +158163,7 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158137
158163
|
sortOrder: number;
|
|
158138
158164
|
createdByUserId: string;
|
|
158139
158165
|
projectId: string;
|
|
158166
|
+
isArchived: boolean;
|
|
158140
158167
|
numberOfIterations: number;
|
|
158141
158168
|
numberOfBookmarkedIterations: number;
|
|
158142
158169
|
updatedAt?: Date | undefined;
|
|
@@ -158154,7 +158181,6 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158154
158181
|
} | undefined;
|
|
158155
158182
|
} | undefined;
|
|
158156
158183
|
sectionId?: string | undefined;
|
|
158157
|
-
isArchived?: boolean | undefined;
|
|
158158
158184
|
e2bTemplateId?: string | null | undefined;
|
|
158159
158185
|
e2bIterationId?: string | null | undefined;
|
|
158160
158186
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -158165,6 +158191,7 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158165
158191
|
description: string;
|
|
158166
158192
|
createdByUserId: string;
|
|
158167
158193
|
projectId: string;
|
|
158194
|
+
isArchived: boolean;
|
|
158168
158195
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
158169
158196
|
updatedAt?: Date | undefined;
|
|
158170
158197
|
threadId?: string | undefined;
|
|
@@ -158182,7 +158209,6 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158182
158209
|
} | undefined;
|
|
158183
158210
|
} | undefined;
|
|
158184
158211
|
sectionId?: string | undefined;
|
|
158185
|
-
isArchived?: boolean | undefined;
|
|
158186
158212
|
e2bTemplateId?: string | null | undefined;
|
|
158187
158213
|
e2bIterationId?: string | null | undefined;
|
|
158188
158214
|
numberOfIterations?: number | undefined;
|
|
@@ -188847,6 +188873,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188847
188873
|
renderMode: "Image" | "HTML" | "JSON";
|
|
188848
188874
|
} | undefined;
|
|
188849
188875
|
}>>;
|
|
188876
|
+
isArchived: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
188850
188877
|
}, "strip", z$1.ZodTypeAny, {
|
|
188851
188878
|
id: string;
|
|
188852
188879
|
createdAt: Date;
|
|
@@ -188855,6 +188882,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188855
188882
|
sortOrder: number;
|
|
188856
188883
|
createdByUserId: string;
|
|
188857
188884
|
projectId: string;
|
|
188885
|
+
isArchived: boolean;
|
|
188858
188886
|
threadId?: string | undefined;
|
|
188859
188887
|
previewUrl?: string | null | undefined;
|
|
188860
188888
|
thumbnail?: {
|
|
@@ -188895,13 +188923,14 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188895
188923
|
} | undefined;
|
|
188896
188924
|
iterationId?: string | null | undefined;
|
|
188897
188925
|
sectionId?: string | undefined;
|
|
188926
|
+
isArchived?: boolean | undefined;
|
|
188898
188927
|
}>, "many">;
|
|
188899
188928
|
features: z$1.ZodArray<z$1.ZodObject<{
|
|
188900
188929
|
createdAt: z$1.ZodDate;
|
|
188901
188930
|
createdByUserId: z$1.ZodString;
|
|
188902
188931
|
description: z$1.ZodString;
|
|
188903
188932
|
id: z$1.ZodString;
|
|
188904
|
-
isArchived: z$1.
|
|
188933
|
+
isArchived: z$1.ZodBoolean;
|
|
188905
188934
|
name: z$1.ZodString;
|
|
188906
188935
|
projectId: z$1.ZodString;
|
|
188907
188936
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -188975,6 +189004,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188975
189004
|
sortOrder: number;
|
|
188976
189005
|
createdByUserId: string;
|
|
188977
189006
|
projectId: string;
|
|
189007
|
+
isArchived: boolean;
|
|
188978
189008
|
numberOfIterations: number;
|
|
188979
189009
|
numberOfBookmarkedIterations: number;
|
|
188980
189010
|
updatedAt?: Date | undefined;
|
|
@@ -188992,7 +189022,6 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188992
189022
|
} | undefined;
|
|
188993
189023
|
} | undefined;
|
|
188994
189024
|
sectionId?: string | undefined;
|
|
188995
|
-
isArchived?: boolean | undefined;
|
|
188996
189025
|
e2bTemplateId?: string | null | undefined;
|
|
188997
189026
|
e2bIterationId?: string | null | undefined;
|
|
188998
189027
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -189003,6 +189032,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189003
189032
|
description: string;
|
|
189004
189033
|
createdByUserId: string;
|
|
189005
189034
|
projectId: string;
|
|
189035
|
+
isArchived: boolean;
|
|
189006
189036
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
189007
189037
|
updatedAt?: Date | undefined;
|
|
189008
189038
|
threadId?: string | undefined;
|
|
@@ -189020,7 +189050,6 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189020
189050
|
} | undefined;
|
|
189021
189051
|
} | undefined;
|
|
189022
189052
|
sectionId?: string | undefined;
|
|
189023
|
-
isArchived?: boolean | undefined;
|
|
189024
189053
|
e2bTemplateId?: string | null | undefined;
|
|
189025
189054
|
e2bIterationId?: string | null | undefined;
|
|
189026
189055
|
numberOfIterations?: number | undefined;
|
|
@@ -189112,6 +189141,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189112
189141
|
sortOrder: number;
|
|
189113
189142
|
createdByUserId: string;
|
|
189114
189143
|
projectId: string;
|
|
189144
|
+
isArchived: boolean;
|
|
189115
189145
|
numberOfIterations: number;
|
|
189116
189146
|
numberOfBookmarkedIterations: number;
|
|
189117
189147
|
updatedAt?: Date | undefined;
|
|
@@ -189129,7 +189159,6 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189129
189159
|
} | undefined;
|
|
189130
189160
|
} | undefined;
|
|
189131
189161
|
sectionId?: string | undefined;
|
|
189132
|
-
isArchived?: boolean | undefined;
|
|
189133
189162
|
e2bTemplateId?: string | null | undefined;
|
|
189134
189163
|
e2bIterationId?: string | null | undefined;
|
|
189135
189164
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -189142,6 +189171,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189142
189171
|
sortOrder: number;
|
|
189143
189172
|
createdByUserId: string;
|
|
189144
189173
|
projectId: string;
|
|
189174
|
+
isArchived: boolean;
|
|
189145
189175
|
threadId?: string | undefined;
|
|
189146
189176
|
previewUrl?: string | null | undefined;
|
|
189147
189177
|
thumbnail?: {
|
|
@@ -189194,6 +189224,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189194
189224
|
description: string;
|
|
189195
189225
|
createdByUserId: string;
|
|
189196
189226
|
projectId: string;
|
|
189227
|
+
isArchived: boolean;
|
|
189197
189228
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
189198
189229
|
updatedAt?: Date | undefined;
|
|
189199
189230
|
threadId?: string | undefined;
|
|
@@ -189211,7 +189242,6 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189211
189242
|
} | undefined;
|
|
189212
189243
|
} | undefined;
|
|
189213
189244
|
sectionId?: string | undefined;
|
|
189214
|
-
isArchived?: boolean | undefined;
|
|
189215
189245
|
e2bTemplateId?: string | null | undefined;
|
|
189216
189246
|
e2bIterationId?: string | null | undefined;
|
|
189217
189247
|
numberOfIterations?: number | undefined;
|
|
@@ -189242,6 +189272,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189242
189272
|
} | undefined;
|
|
189243
189273
|
iterationId?: string | null | undefined;
|
|
189244
189274
|
sectionId?: string | undefined;
|
|
189275
|
+
isArchived?: boolean | undefined;
|
|
189245
189276
|
}[];
|
|
189246
189277
|
artifactSections: {
|
|
189247
189278
|
id: string;
|
|
@@ -189337,6 +189368,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189337
189368
|
renderMode: "Image" | "HTML" | "JSON";
|
|
189338
189369
|
} | undefined;
|
|
189339
189370
|
}>>;
|
|
189371
|
+
isArchived: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
189340
189372
|
}, "strip", z$1.ZodTypeAny, {
|
|
189341
189373
|
id: string;
|
|
189342
189374
|
createdAt: Date;
|
|
@@ -189345,6 +189377,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189345
189377
|
sortOrder: number;
|
|
189346
189378
|
createdByUserId: string;
|
|
189347
189379
|
projectId: string;
|
|
189380
|
+
isArchived: boolean;
|
|
189348
189381
|
threadId?: string | undefined;
|
|
189349
189382
|
previewUrl?: string | null | undefined;
|
|
189350
189383
|
thumbnail?: {
|
|
@@ -189385,6 +189418,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189385
189418
|
} | undefined;
|
|
189386
189419
|
iterationId?: string | null | undefined;
|
|
189387
189420
|
sectionId?: string | undefined;
|
|
189421
|
+
isArchived?: boolean | undefined;
|
|
189388
189422
|
}>, "many">>;
|
|
189389
189423
|
artifactIdsToDelete: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
189390
189424
|
features: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -189392,7 +189426,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189392
189426
|
createdByUserId: z$1.ZodString;
|
|
189393
189427
|
description: z$1.ZodString;
|
|
189394
189428
|
id: z$1.ZodString;
|
|
189395
|
-
isArchived: z$1.
|
|
189429
|
+
isArchived: z$1.ZodBoolean;
|
|
189396
189430
|
name: z$1.ZodString;
|
|
189397
189431
|
projectId: z$1.ZodString;
|
|
189398
189432
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -189466,6 +189500,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189466
189500
|
sortOrder: number;
|
|
189467
189501
|
createdByUserId: string;
|
|
189468
189502
|
projectId: string;
|
|
189503
|
+
isArchived: boolean;
|
|
189469
189504
|
numberOfIterations: number;
|
|
189470
189505
|
numberOfBookmarkedIterations: number;
|
|
189471
189506
|
updatedAt?: Date | undefined;
|
|
@@ -189483,7 +189518,6 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189483
189518
|
} | undefined;
|
|
189484
189519
|
} | undefined;
|
|
189485
189520
|
sectionId?: string | undefined;
|
|
189486
|
-
isArchived?: boolean | undefined;
|
|
189487
189521
|
e2bTemplateId?: string | null | undefined;
|
|
189488
189522
|
e2bIterationId?: string | null | undefined;
|
|
189489
189523
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -189494,6 +189528,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189494
189528
|
description: string;
|
|
189495
189529
|
createdByUserId: string;
|
|
189496
189530
|
projectId: string;
|
|
189531
|
+
isArchived: boolean;
|
|
189497
189532
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
189498
189533
|
updatedAt?: Date | undefined;
|
|
189499
189534
|
threadId?: string | undefined;
|
|
@@ -189511,7 +189546,6 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189511
189546
|
} | undefined;
|
|
189512
189547
|
} | undefined;
|
|
189513
189548
|
sectionId?: string | undefined;
|
|
189514
|
-
isArchived?: boolean | undefined;
|
|
189515
189549
|
e2bTemplateId?: string | null | undefined;
|
|
189516
189550
|
e2bIterationId?: string | null | undefined;
|
|
189517
189551
|
numberOfIterations?: number | undefined;
|
|
@@ -189607,6 +189641,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189607
189641
|
sortOrder: number;
|
|
189608
189642
|
createdByUserId: string;
|
|
189609
189643
|
projectId: string;
|
|
189644
|
+
isArchived: boolean;
|
|
189610
189645
|
numberOfIterations: number;
|
|
189611
189646
|
numberOfBookmarkedIterations: number;
|
|
189612
189647
|
updatedAt?: Date | undefined;
|
|
@@ -189624,7 +189659,6 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189624
189659
|
} | undefined;
|
|
189625
189660
|
} | undefined;
|
|
189626
189661
|
sectionId?: string | undefined;
|
|
189627
|
-
isArchived?: boolean | undefined;
|
|
189628
189662
|
e2bTemplateId?: string | null | undefined;
|
|
189629
189663
|
e2bIterationId?: string | null | undefined;
|
|
189630
189664
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -189638,6 +189672,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189638
189672
|
sortOrder: number;
|
|
189639
189673
|
createdByUserId: string;
|
|
189640
189674
|
projectId: string;
|
|
189675
|
+
isArchived: boolean;
|
|
189641
189676
|
threadId?: string | undefined;
|
|
189642
189677
|
previewUrl?: string | null | undefined;
|
|
189643
189678
|
thumbnail?: {
|
|
@@ -189694,6 +189729,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189694
189729
|
description: string;
|
|
189695
189730
|
createdByUserId: string;
|
|
189696
189731
|
projectId: string;
|
|
189732
|
+
isArchived: boolean;
|
|
189697
189733
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
189698
189734
|
updatedAt?: Date | undefined;
|
|
189699
189735
|
threadId?: string | undefined;
|
|
@@ -189711,7 +189747,6 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189711
189747
|
} | undefined;
|
|
189712
189748
|
} | undefined;
|
|
189713
189749
|
sectionId?: string | undefined;
|
|
189714
|
-
isArchived?: boolean | undefined;
|
|
189715
189750
|
e2bTemplateId?: string | null | undefined;
|
|
189716
189751
|
e2bIterationId?: string | null | undefined;
|
|
189717
189752
|
numberOfIterations?: number | undefined;
|
|
@@ -189743,6 +189778,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189743
189778
|
} | undefined;
|
|
189744
189779
|
iterationId?: string | null | undefined;
|
|
189745
189780
|
sectionId?: string | undefined;
|
|
189781
|
+
isArchived?: boolean | undefined;
|
|
189746
189782
|
}[] | undefined;
|
|
189747
189783
|
artifactSections?: {
|
|
189748
189784
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -939,6 +939,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
939
939
|
errorReason: string;
|
|
940
940
|
enabled: boolean;
|
|
941
941
|
}>;
|
|
942
|
+
forgeActiveProjectContexts: z$1.ZodObject<{
|
|
943
|
+
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
944
|
+
errorMessage: z$1.ZodString;
|
|
945
|
+
errorReason: z$1.ZodString;
|
|
946
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
947
|
+
errorMessage: string;
|
|
948
|
+
errorReason: string;
|
|
949
|
+
max?: number | undefined;
|
|
950
|
+
}, {
|
|
951
|
+
errorMessage: string;
|
|
952
|
+
errorReason: string;
|
|
953
|
+
max?: number | undefined;
|
|
954
|
+
}>;
|
|
942
955
|
}, "strip", z$1.ZodTypeAny, {
|
|
943
956
|
analytics: {
|
|
944
957
|
errorMessage: string;
|
|
@@ -1092,6 +1105,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
1092
1105
|
errorReason: string;
|
|
1093
1106
|
enabled: boolean;
|
|
1094
1107
|
};
|
|
1108
|
+
forgeActiveProjectContexts: {
|
|
1109
|
+
errorMessage: string;
|
|
1110
|
+
errorReason: string;
|
|
1111
|
+
max?: number | undefined;
|
|
1112
|
+
};
|
|
1095
1113
|
}, {
|
|
1096
1114
|
analytics: {
|
|
1097
1115
|
errorMessage: string;
|
|
@@ -1245,6 +1263,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
1245
1263
|
errorReason: string;
|
|
1246
1264
|
enabled: boolean;
|
|
1247
1265
|
};
|
|
1266
|
+
forgeActiveProjectContexts: {
|
|
1267
|
+
errorMessage: string;
|
|
1268
|
+
errorReason: string;
|
|
1269
|
+
max?: number | undefined;
|
|
1270
|
+
};
|
|
1248
1271
|
}>;
|
|
1249
1272
|
type FeaturesSummary = z$1.infer<typeof FeaturesSummary>;
|
|
1250
1273
|
|
|
@@ -158006,6 +158029,7 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
158006
158029
|
renderMode: "Image" | "HTML" | "JSON";
|
|
158007
158030
|
} | undefined;
|
|
158008
158031
|
}>>;
|
|
158032
|
+
isArchived: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
158009
158033
|
}, "strip", z$1.ZodTypeAny, {
|
|
158010
158034
|
id: string;
|
|
158011
158035
|
createdAt: Date;
|
|
@@ -158014,6 +158038,7 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
158014
158038
|
sortOrder: number;
|
|
158015
158039
|
createdByUserId: string;
|
|
158016
158040
|
projectId: string;
|
|
158041
|
+
isArchived: boolean;
|
|
158017
158042
|
threadId?: string | undefined;
|
|
158018
158043
|
previewUrl?: string | null | undefined;
|
|
158019
158044
|
thumbnail?: {
|
|
@@ -158054,6 +158079,7 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
158054
158079
|
} | undefined;
|
|
158055
158080
|
iterationId?: string | null | undefined;
|
|
158056
158081
|
sectionId?: string | undefined;
|
|
158082
|
+
isArchived?: boolean | undefined;
|
|
158057
158083
|
}>;
|
|
158058
158084
|
type ForgeProjectArtifact = z$1.infer<typeof ForgeProjectArtifact>;
|
|
158059
158085
|
|
|
@@ -158063,7 +158089,7 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158063
158089
|
createdByUserId: z$1.ZodString;
|
|
158064
158090
|
description: z$1.ZodString;
|
|
158065
158091
|
id: z$1.ZodString;
|
|
158066
|
-
isArchived: z$1.
|
|
158092
|
+
isArchived: z$1.ZodBoolean;
|
|
158067
158093
|
name: z$1.ZodString;
|
|
158068
158094
|
projectId: z$1.ZodString;
|
|
158069
158095
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -158137,6 +158163,7 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158137
158163
|
sortOrder: number;
|
|
158138
158164
|
createdByUserId: string;
|
|
158139
158165
|
projectId: string;
|
|
158166
|
+
isArchived: boolean;
|
|
158140
158167
|
numberOfIterations: number;
|
|
158141
158168
|
numberOfBookmarkedIterations: number;
|
|
158142
158169
|
updatedAt?: Date | undefined;
|
|
@@ -158154,7 +158181,6 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158154
158181
|
} | undefined;
|
|
158155
158182
|
} | undefined;
|
|
158156
158183
|
sectionId?: string | undefined;
|
|
158157
|
-
isArchived?: boolean | undefined;
|
|
158158
158184
|
e2bTemplateId?: string | null | undefined;
|
|
158159
158185
|
e2bIterationId?: string | null | undefined;
|
|
158160
158186
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -158165,6 +158191,7 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158165
158191
|
description: string;
|
|
158166
158192
|
createdByUserId: string;
|
|
158167
158193
|
projectId: string;
|
|
158194
|
+
isArchived: boolean;
|
|
158168
158195
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
158169
158196
|
updatedAt?: Date | undefined;
|
|
158170
158197
|
threadId?: string | undefined;
|
|
@@ -158182,7 +158209,6 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158182
158209
|
} | undefined;
|
|
158183
158210
|
} | undefined;
|
|
158184
158211
|
sectionId?: string | undefined;
|
|
158185
|
-
isArchived?: boolean | undefined;
|
|
158186
158212
|
e2bTemplateId?: string | null | undefined;
|
|
158187
158213
|
e2bIterationId?: string | null | undefined;
|
|
158188
158214
|
numberOfIterations?: number | undefined;
|
|
@@ -188847,6 +188873,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188847
188873
|
renderMode: "Image" | "HTML" | "JSON";
|
|
188848
188874
|
} | undefined;
|
|
188849
188875
|
}>>;
|
|
188876
|
+
isArchived: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
188850
188877
|
}, "strip", z$1.ZodTypeAny, {
|
|
188851
188878
|
id: string;
|
|
188852
188879
|
createdAt: Date;
|
|
@@ -188855,6 +188882,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188855
188882
|
sortOrder: number;
|
|
188856
188883
|
createdByUserId: string;
|
|
188857
188884
|
projectId: string;
|
|
188885
|
+
isArchived: boolean;
|
|
188858
188886
|
threadId?: string | undefined;
|
|
188859
188887
|
previewUrl?: string | null | undefined;
|
|
188860
188888
|
thumbnail?: {
|
|
@@ -188895,13 +188923,14 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188895
188923
|
} | undefined;
|
|
188896
188924
|
iterationId?: string | null | undefined;
|
|
188897
188925
|
sectionId?: string | undefined;
|
|
188926
|
+
isArchived?: boolean | undefined;
|
|
188898
188927
|
}>, "many">;
|
|
188899
188928
|
features: z$1.ZodArray<z$1.ZodObject<{
|
|
188900
188929
|
createdAt: z$1.ZodDate;
|
|
188901
188930
|
createdByUserId: z$1.ZodString;
|
|
188902
188931
|
description: z$1.ZodString;
|
|
188903
188932
|
id: z$1.ZodString;
|
|
188904
|
-
isArchived: z$1.
|
|
188933
|
+
isArchived: z$1.ZodBoolean;
|
|
188905
188934
|
name: z$1.ZodString;
|
|
188906
188935
|
projectId: z$1.ZodString;
|
|
188907
188936
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -188975,6 +189004,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188975
189004
|
sortOrder: number;
|
|
188976
189005
|
createdByUserId: string;
|
|
188977
189006
|
projectId: string;
|
|
189007
|
+
isArchived: boolean;
|
|
188978
189008
|
numberOfIterations: number;
|
|
188979
189009
|
numberOfBookmarkedIterations: number;
|
|
188980
189010
|
updatedAt?: Date | undefined;
|
|
@@ -188992,7 +189022,6 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188992
189022
|
} | undefined;
|
|
188993
189023
|
} | undefined;
|
|
188994
189024
|
sectionId?: string | undefined;
|
|
188995
|
-
isArchived?: boolean | undefined;
|
|
188996
189025
|
e2bTemplateId?: string | null | undefined;
|
|
188997
189026
|
e2bIterationId?: string | null | undefined;
|
|
188998
189027
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -189003,6 +189032,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189003
189032
|
description: string;
|
|
189004
189033
|
createdByUserId: string;
|
|
189005
189034
|
projectId: string;
|
|
189035
|
+
isArchived: boolean;
|
|
189006
189036
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
189007
189037
|
updatedAt?: Date | undefined;
|
|
189008
189038
|
threadId?: string | undefined;
|
|
@@ -189020,7 +189050,6 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189020
189050
|
} | undefined;
|
|
189021
189051
|
} | undefined;
|
|
189022
189052
|
sectionId?: string | undefined;
|
|
189023
|
-
isArchived?: boolean | undefined;
|
|
189024
189053
|
e2bTemplateId?: string | null | undefined;
|
|
189025
189054
|
e2bIterationId?: string | null | undefined;
|
|
189026
189055
|
numberOfIterations?: number | undefined;
|
|
@@ -189112,6 +189141,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189112
189141
|
sortOrder: number;
|
|
189113
189142
|
createdByUserId: string;
|
|
189114
189143
|
projectId: string;
|
|
189144
|
+
isArchived: boolean;
|
|
189115
189145
|
numberOfIterations: number;
|
|
189116
189146
|
numberOfBookmarkedIterations: number;
|
|
189117
189147
|
updatedAt?: Date | undefined;
|
|
@@ -189129,7 +189159,6 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189129
189159
|
} | undefined;
|
|
189130
189160
|
} | undefined;
|
|
189131
189161
|
sectionId?: string | undefined;
|
|
189132
|
-
isArchived?: boolean | undefined;
|
|
189133
189162
|
e2bTemplateId?: string | null | undefined;
|
|
189134
189163
|
e2bIterationId?: string | null | undefined;
|
|
189135
189164
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -189142,6 +189171,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189142
189171
|
sortOrder: number;
|
|
189143
189172
|
createdByUserId: string;
|
|
189144
189173
|
projectId: string;
|
|
189174
|
+
isArchived: boolean;
|
|
189145
189175
|
threadId?: string | undefined;
|
|
189146
189176
|
previewUrl?: string | null | undefined;
|
|
189147
189177
|
thumbnail?: {
|
|
@@ -189194,6 +189224,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189194
189224
|
description: string;
|
|
189195
189225
|
createdByUserId: string;
|
|
189196
189226
|
projectId: string;
|
|
189227
|
+
isArchived: boolean;
|
|
189197
189228
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
189198
189229
|
updatedAt?: Date | undefined;
|
|
189199
189230
|
threadId?: string | undefined;
|
|
@@ -189211,7 +189242,6 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189211
189242
|
} | undefined;
|
|
189212
189243
|
} | undefined;
|
|
189213
189244
|
sectionId?: string | undefined;
|
|
189214
|
-
isArchived?: boolean | undefined;
|
|
189215
189245
|
e2bTemplateId?: string | null | undefined;
|
|
189216
189246
|
e2bIterationId?: string | null | undefined;
|
|
189217
189247
|
numberOfIterations?: number | undefined;
|
|
@@ -189242,6 +189272,7 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189242
189272
|
} | undefined;
|
|
189243
189273
|
iterationId?: string | null | undefined;
|
|
189244
189274
|
sectionId?: string | undefined;
|
|
189275
|
+
isArchived?: boolean | undefined;
|
|
189245
189276
|
}[];
|
|
189246
189277
|
artifactSections: {
|
|
189247
189278
|
id: string;
|
|
@@ -189337,6 +189368,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189337
189368
|
renderMode: "Image" | "HTML" | "JSON";
|
|
189338
189369
|
} | undefined;
|
|
189339
189370
|
}>>;
|
|
189371
|
+
isArchived: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
189340
189372
|
}, "strip", z$1.ZodTypeAny, {
|
|
189341
189373
|
id: string;
|
|
189342
189374
|
createdAt: Date;
|
|
@@ -189345,6 +189377,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189345
189377
|
sortOrder: number;
|
|
189346
189378
|
createdByUserId: string;
|
|
189347
189379
|
projectId: string;
|
|
189380
|
+
isArchived: boolean;
|
|
189348
189381
|
threadId?: string | undefined;
|
|
189349
189382
|
previewUrl?: string | null | undefined;
|
|
189350
189383
|
thumbnail?: {
|
|
@@ -189385,6 +189418,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189385
189418
|
} | undefined;
|
|
189386
189419
|
iterationId?: string | null | undefined;
|
|
189387
189420
|
sectionId?: string | undefined;
|
|
189421
|
+
isArchived?: boolean | undefined;
|
|
189388
189422
|
}>, "many">>;
|
|
189389
189423
|
artifactIdsToDelete: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
189390
189424
|
features: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -189392,7 +189426,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189392
189426
|
createdByUserId: z$1.ZodString;
|
|
189393
189427
|
description: z$1.ZodString;
|
|
189394
189428
|
id: z$1.ZodString;
|
|
189395
|
-
isArchived: z$1.
|
|
189429
|
+
isArchived: z$1.ZodBoolean;
|
|
189396
189430
|
name: z$1.ZodString;
|
|
189397
189431
|
projectId: z$1.ZodString;
|
|
189398
189432
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -189466,6 +189500,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189466
189500
|
sortOrder: number;
|
|
189467
189501
|
createdByUserId: string;
|
|
189468
189502
|
projectId: string;
|
|
189503
|
+
isArchived: boolean;
|
|
189469
189504
|
numberOfIterations: number;
|
|
189470
189505
|
numberOfBookmarkedIterations: number;
|
|
189471
189506
|
updatedAt?: Date | undefined;
|
|
@@ -189483,7 +189518,6 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189483
189518
|
} | undefined;
|
|
189484
189519
|
} | undefined;
|
|
189485
189520
|
sectionId?: string | undefined;
|
|
189486
|
-
isArchived?: boolean | undefined;
|
|
189487
189521
|
e2bTemplateId?: string | null | undefined;
|
|
189488
189522
|
e2bIterationId?: string | null | undefined;
|
|
189489
189523
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -189494,6 +189528,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189494
189528
|
description: string;
|
|
189495
189529
|
createdByUserId: string;
|
|
189496
189530
|
projectId: string;
|
|
189531
|
+
isArchived: boolean;
|
|
189497
189532
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
189498
189533
|
updatedAt?: Date | undefined;
|
|
189499
189534
|
threadId?: string | undefined;
|
|
@@ -189511,7 +189546,6 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189511
189546
|
} | undefined;
|
|
189512
189547
|
} | undefined;
|
|
189513
189548
|
sectionId?: string | undefined;
|
|
189514
|
-
isArchived?: boolean | undefined;
|
|
189515
189549
|
e2bTemplateId?: string | null | undefined;
|
|
189516
189550
|
e2bIterationId?: string | null | undefined;
|
|
189517
189551
|
numberOfIterations?: number | undefined;
|
|
@@ -189607,6 +189641,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189607
189641
|
sortOrder: number;
|
|
189608
189642
|
createdByUserId: string;
|
|
189609
189643
|
projectId: string;
|
|
189644
|
+
isArchived: boolean;
|
|
189610
189645
|
numberOfIterations: number;
|
|
189611
189646
|
numberOfBookmarkedIterations: number;
|
|
189612
189647
|
updatedAt?: Date | undefined;
|
|
@@ -189624,7 +189659,6 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189624
189659
|
} | undefined;
|
|
189625
189660
|
} | undefined;
|
|
189626
189661
|
sectionId?: string | undefined;
|
|
189627
|
-
isArchived?: boolean | undefined;
|
|
189628
189662
|
e2bTemplateId?: string | null | undefined;
|
|
189629
189663
|
e2bIterationId?: string | null | undefined;
|
|
189630
189664
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -189638,6 +189672,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189638
189672
|
sortOrder: number;
|
|
189639
189673
|
createdByUserId: string;
|
|
189640
189674
|
projectId: string;
|
|
189675
|
+
isArchived: boolean;
|
|
189641
189676
|
threadId?: string | undefined;
|
|
189642
189677
|
previewUrl?: string | null | undefined;
|
|
189643
189678
|
thumbnail?: {
|
|
@@ -189694,6 +189729,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189694
189729
|
description: string;
|
|
189695
189730
|
createdByUserId: string;
|
|
189696
189731
|
projectId: string;
|
|
189732
|
+
isArchived: boolean;
|
|
189697
189733
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
189698
189734
|
updatedAt?: Date | undefined;
|
|
189699
189735
|
threadId?: string | undefined;
|
|
@@ -189711,7 +189747,6 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189711
189747
|
} | undefined;
|
|
189712
189748
|
} | undefined;
|
|
189713
189749
|
sectionId?: string | undefined;
|
|
189714
|
-
isArchived?: boolean | undefined;
|
|
189715
189750
|
e2bTemplateId?: string | null | undefined;
|
|
189716
189751
|
e2bIterationId?: string | null | undefined;
|
|
189717
189752
|
numberOfIterations?: number | undefined;
|
|
@@ -189743,6 +189778,7 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
189743
189778
|
} | undefined;
|
|
189744
189779
|
iterationId?: string | null | undefined;
|
|
189745
189780
|
sectionId?: string | undefined;
|
|
189781
|
+
isArchived?: boolean | undefined;
|
|
189746
189782
|
}[] | undefined;
|
|
189747
189783
|
artifactSections?: {
|
|
189748
189784
|
id: string;
|