@supernova-studio/model 1.31.2 → 1.31.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 +39 -13
- package/dist/index.d.ts +39 -13
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -157062,8 +157062,10 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157062
157062
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
157063
157063
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
157064
157064
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
157065
|
-
initialPrompt: z.ZodString;
|
|
157066
157065
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
157066
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
157067
|
+
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
157068
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
157067
157069
|
}, "strip", z.ZodTypeAny, {
|
|
157068
157070
|
status: "Draft" | "ReadyForDevelopment";
|
|
157069
157071
|
id: string;
|
|
@@ -157073,10 +157075,12 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157073
157075
|
sortOrder: number;
|
|
157074
157076
|
createdByUserId: string;
|
|
157075
157077
|
projectId: string;
|
|
157076
|
-
|
|
157078
|
+
numberOfIterations: number;
|
|
157079
|
+
numberOfBookmarkedIterations: number;
|
|
157077
157080
|
updatedAt?: Date | undefined;
|
|
157078
157081
|
sectionId?: string | undefined;
|
|
157079
157082
|
isArchived?: boolean | undefined;
|
|
157083
|
+
lastReplyTimestamp?: Date | undefined;
|
|
157080
157084
|
}, {
|
|
157081
157085
|
id: string;
|
|
157082
157086
|
name: string;
|
|
@@ -157084,12 +157088,14 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157084
157088
|
description: string;
|
|
157085
157089
|
createdByUserId: string;
|
|
157086
157090
|
projectId: string;
|
|
157087
|
-
initialPrompt: string;
|
|
157088
157091
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
157089
157092
|
updatedAt?: Date | undefined;
|
|
157090
157093
|
sortOrder?: number | undefined;
|
|
157091
157094
|
sectionId?: string | undefined;
|
|
157092
157095
|
isArchived?: boolean | undefined;
|
|
157096
|
+
numberOfIterations?: number | undefined;
|
|
157097
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
157098
|
+
lastReplyTimestamp?: Date | undefined;
|
|
157093
157099
|
}>;
|
|
157094
157100
|
type ProjectFeature = z.infer<typeof ProjectFeature>;
|
|
157095
157101
|
type CreateProjectFeature = Omit<DbCreateInputOmit<ProjectFeature>, "projectId" | "createdByUserId">;
|
|
@@ -187711,8 +187717,10 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187711
187717
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
187712
187718
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187713
187719
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187714
|
-
initialPrompt: z.ZodString;
|
|
187715
187720
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187721
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
187722
|
+
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
187723
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
187716
187724
|
}, "strip", z.ZodTypeAny, {
|
|
187717
187725
|
status: "Draft" | "ReadyForDevelopment";
|
|
187718
187726
|
id: string;
|
|
@@ -187722,10 +187730,12 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187722
187730
|
sortOrder: number;
|
|
187723
187731
|
createdByUserId: string;
|
|
187724
187732
|
projectId: string;
|
|
187725
|
-
|
|
187733
|
+
numberOfIterations: number;
|
|
187734
|
+
numberOfBookmarkedIterations: number;
|
|
187726
187735
|
updatedAt?: Date | undefined;
|
|
187727
187736
|
sectionId?: string | undefined;
|
|
187728
187737
|
isArchived?: boolean | undefined;
|
|
187738
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187729
187739
|
}, {
|
|
187730
187740
|
id: string;
|
|
187731
187741
|
name: string;
|
|
@@ -187733,12 +187743,14 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187733
187743
|
description: string;
|
|
187734
187744
|
createdByUserId: string;
|
|
187735
187745
|
projectId: string;
|
|
187736
|
-
initialPrompt: string;
|
|
187737
187746
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187738
187747
|
updatedAt?: Date | undefined;
|
|
187739
187748
|
sortOrder?: number | undefined;
|
|
187740
187749
|
sectionId?: string | undefined;
|
|
187741
187750
|
isArchived?: boolean | undefined;
|
|
187751
|
+
numberOfIterations?: number | undefined;
|
|
187752
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
187753
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187742
187754
|
}>, "many">;
|
|
187743
187755
|
artifactSections: z.ZodArray<z.ZodObject<{
|
|
187744
187756
|
id: z.ZodString;
|
|
@@ -187800,10 +187812,12 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187800
187812
|
sortOrder: number;
|
|
187801
187813
|
createdByUserId: string;
|
|
187802
187814
|
projectId: string;
|
|
187803
|
-
|
|
187815
|
+
numberOfIterations: number;
|
|
187816
|
+
numberOfBookmarkedIterations: number;
|
|
187804
187817
|
updatedAt?: Date | undefined;
|
|
187805
187818
|
sectionId?: string | undefined;
|
|
187806
187819
|
isArchived?: boolean | undefined;
|
|
187820
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187807
187821
|
}[];
|
|
187808
187822
|
artifacts: {
|
|
187809
187823
|
id: string;
|
|
@@ -187843,12 +187857,14 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187843
187857
|
description: string;
|
|
187844
187858
|
createdByUserId: string;
|
|
187845
187859
|
projectId: string;
|
|
187846
|
-
initialPrompt: string;
|
|
187847
187860
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187848
187861
|
updatedAt?: Date | undefined;
|
|
187849
187862
|
sortOrder?: number | undefined;
|
|
187850
187863
|
sectionId?: string | undefined;
|
|
187851
187864
|
isArchived?: boolean | undefined;
|
|
187865
|
+
numberOfIterations?: number | undefined;
|
|
187866
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
187867
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187852
187868
|
}[];
|
|
187853
187869
|
artifacts: {
|
|
187854
187870
|
id: string;
|
|
@@ -187929,8 +187945,10 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187929
187945
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
187930
187946
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187931
187947
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187932
|
-
initialPrompt: z.ZodString;
|
|
187933
187948
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187949
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
187950
|
+
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
187951
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
187934
187952
|
}, "strip", z.ZodTypeAny, {
|
|
187935
187953
|
status: "Draft" | "ReadyForDevelopment";
|
|
187936
187954
|
id: string;
|
|
@@ -187940,10 +187958,12 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187940
187958
|
sortOrder: number;
|
|
187941
187959
|
createdByUserId: string;
|
|
187942
187960
|
projectId: string;
|
|
187943
|
-
|
|
187961
|
+
numberOfIterations: number;
|
|
187962
|
+
numberOfBookmarkedIterations: number;
|
|
187944
187963
|
updatedAt?: Date | undefined;
|
|
187945
187964
|
sectionId?: string | undefined;
|
|
187946
187965
|
isArchived?: boolean | undefined;
|
|
187966
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187947
187967
|
}, {
|
|
187948
187968
|
id: string;
|
|
187949
187969
|
name: string;
|
|
@@ -187951,12 +187971,14 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187951
187971
|
description: string;
|
|
187952
187972
|
createdByUserId: string;
|
|
187953
187973
|
projectId: string;
|
|
187954
|
-
initialPrompt: string;
|
|
187955
187974
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187956
187975
|
updatedAt?: Date | undefined;
|
|
187957
187976
|
sortOrder?: number | undefined;
|
|
187958
187977
|
sectionId?: string | undefined;
|
|
187959
187978
|
isArchived?: boolean | undefined;
|
|
187979
|
+
numberOfIterations?: number | undefined;
|
|
187980
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
187981
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187960
187982
|
}>, "many">>;
|
|
187961
187983
|
featureIdsToDelete: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187962
187984
|
artifactSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -188022,10 +188044,12 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188022
188044
|
sortOrder: number;
|
|
188023
188045
|
createdByUserId: string;
|
|
188024
188046
|
projectId: string;
|
|
188025
|
-
|
|
188047
|
+
numberOfIterations: number;
|
|
188048
|
+
numberOfBookmarkedIterations: number;
|
|
188026
188049
|
updatedAt?: Date | undefined;
|
|
188027
188050
|
sectionId?: string | undefined;
|
|
188028
188051
|
isArchived?: boolean | undefined;
|
|
188052
|
+
lastReplyTimestamp?: Date | undefined;
|
|
188029
188053
|
}[] | undefined;
|
|
188030
188054
|
executedTransactionIds?: string[] | undefined;
|
|
188031
188055
|
artifacts?: {
|
|
@@ -188070,12 +188094,14 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188070
188094
|
description: string;
|
|
188071
188095
|
createdByUserId: string;
|
|
188072
188096
|
projectId: string;
|
|
188073
|
-
initialPrompt: string;
|
|
188074
188097
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188075
188098
|
updatedAt?: Date | undefined;
|
|
188076
188099
|
sortOrder?: number | undefined;
|
|
188077
188100
|
sectionId?: string | undefined;
|
|
188078
188101
|
isArchived?: boolean | undefined;
|
|
188102
|
+
numberOfIterations?: number | undefined;
|
|
188103
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
188104
|
+
lastReplyTimestamp?: Date | undefined;
|
|
188079
188105
|
}[] | undefined;
|
|
188080
188106
|
executedTransactionIds?: string[] | undefined;
|
|
188081
188107
|
artifacts?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -157062,8 +157062,10 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157062
157062
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
157063
157063
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
157064
157064
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
157065
|
-
initialPrompt: z.ZodString;
|
|
157066
157065
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
157066
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
157067
|
+
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
157068
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
157067
157069
|
}, "strip", z.ZodTypeAny, {
|
|
157068
157070
|
status: "Draft" | "ReadyForDevelopment";
|
|
157069
157071
|
id: string;
|
|
@@ -157073,10 +157075,12 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157073
157075
|
sortOrder: number;
|
|
157074
157076
|
createdByUserId: string;
|
|
157075
157077
|
projectId: string;
|
|
157076
|
-
|
|
157078
|
+
numberOfIterations: number;
|
|
157079
|
+
numberOfBookmarkedIterations: number;
|
|
157077
157080
|
updatedAt?: Date | undefined;
|
|
157078
157081
|
sectionId?: string | undefined;
|
|
157079
157082
|
isArchived?: boolean | undefined;
|
|
157083
|
+
lastReplyTimestamp?: Date | undefined;
|
|
157080
157084
|
}, {
|
|
157081
157085
|
id: string;
|
|
157082
157086
|
name: string;
|
|
@@ -157084,12 +157088,14 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157084
157088
|
description: string;
|
|
157085
157089
|
createdByUserId: string;
|
|
157086
157090
|
projectId: string;
|
|
157087
|
-
initialPrompt: string;
|
|
157088
157091
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
157089
157092
|
updatedAt?: Date | undefined;
|
|
157090
157093
|
sortOrder?: number | undefined;
|
|
157091
157094
|
sectionId?: string | undefined;
|
|
157092
157095
|
isArchived?: boolean | undefined;
|
|
157096
|
+
numberOfIterations?: number | undefined;
|
|
157097
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
157098
|
+
lastReplyTimestamp?: Date | undefined;
|
|
157093
157099
|
}>;
|
|
157094
157100
|
type ProjectFeature = z.infer<typeof ProjectFeature>;
|
|
157095
157101
|
type CreateProjectFeature = Omit<DbCreateInputOmit<ProjectFeature>, "projectId" | "createdByUserId">;
|
|
@@ -187711,8 +187717,10 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187711
187717
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
187712
187718
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187713
187719
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187714
|
-
initialPrompt: z.ZodString;
|
|
187715
187720
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187721
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
187722
|
+
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
187723
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
187716
187724
|
}, "strip", z.ZodTypeAny, {
|
|
187717
187725
|
status: "Draft" | "ReadyForDevelopment";
|
|
187718
187726
|
id: string;
|
|
@@ -187722,10 +187730,12 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187722
187730
|
sortOrder: number;
|
|
187723
187731
|
createdByUserId: string;
|
|
187724
187732
|
projectId: string;
|
|
187725
|
-
|
|
187733
|
+
numberOfIterations: number;
|
|
187734
|
+
numberOfBookmarkedIterations: number;
|
|
187726
187735
|
updatedAt?: Date | undefined;
|
|
187727
187736
|
sectionId?: string | undefined;
|
|
187728
187737
|
isArchived?: boolean | undefined;
|
|
187738
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187729
187739
|
}, {
|
|
187730
187740
|
id: string;
|
|
187731
187741
|
name: string;
|
|
@@ -187733,12 +187743,14 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187733
187743
|
description: string;
|
|
187734
187744
|
createdByUserId: string;
|
|
187735
187745
|
projectId: string;
|
|
187736
|
-
initialPrompt: string;
|
|
187737
187746
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187738
187747
|
updatedAt?: Date | undefined;
|
|
187739
187748
|
sortOrder?: number | undefined;
|
|
187740
187749
|
sectionId?: string | undefined;
|
|
187741
187750
|
isArchived?: boolean | undefined;
|
|
187751
|
+
numberOfIterations?: number | undefined;
|
|
187752
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
187753
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187742
187754
|
}>, "many">;
|
|
187743
187755
|
artifactSections: z.ZodArray<z.ZodObject<{
|
|
187744
187756
|
id: z.ZodString;
|
|
@@ -187800,10 +187812,12 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187800
187812
|
sortOrder: number;
|
|
187801
187813
|
createdByUserId: string;
|
|
187802
187814
|
projectId: string;
|
|
187803
|
-
|
|
187815
|
+
numberOfIterations: number;
|
|
187816
|
+
numberOfBookmarkedIterations: number;
|
|
187804
187817
|
updatedAt?: Date | undefined;
|
|
187805
187818
|
sectionId?: string | undefined;
|
|
187806
187819
|
isArchived?: boolean | undefined;
|
|
187820
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187807
187821
|
}[];
|
|
187808
187822
|
artifacts: {
|
|
187809
187823
|
id: string;
|
|
@@ -187843,12 +187857,14 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187843
187857
|
description: string;
|
|
187844
187858
|
createdByUserId: string;
|
|
187845
187859
|
projectId: string;
|
|
187846
|
-
initialPrompt: string;
|
|
187847
187860
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187848
187861
|
updatedAt?: Date | undefined;
|
|
187849
187862
|
sortOrder?: number | undefined;
|
|
187850
187863
|
sectionId?: string | undefined;
|
|
187851
187864
|
isArchived?: boolean | undefined;
|
|
187865
|
+
numberOfIterations?: number | undefined;
|
|
187866
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
187867
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187852
187868
|
}[];
|
|
187853
187869
|
artifacts: {
|
|
187854
187870
|
id: string;
|
|
@@ -187929,8 +187945,10 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187929
187945
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
187930
187946
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187931
187947
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187932
|
-
initialPrompt: z.ZodString;
|
|
187933
187948
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187949
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
187950
|
+
numberOfBookmarkedIterations: z.ZodDefault<z.ZodNumber>;
|
|
187951
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
187934
187952
|
}, "strip", z.ZodTypeAny, {
|
|
187935
187953
|
status: "Draft" | "ReadyForDevelopment";
|
|
187936
187954
|
id: string;
|
|
@@ -187940,10 +187958,12 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187940
187958
|
sortOrder: number;
|
|
187941
187959
|
createdByUserId: string;
|
|
187942
187960
|
projectId: string;
|
|
187943
|
-
|
|
187961
|
+
numberOfIterations: number;
|
|
187962
|
+
numberOfBookmarkedIterations: number;
|
|
187944
187963
|
updatedAt?: Date | undefined;
|
|
187945
187964
|
sectionId?: string | undefined;
|
|
187946
187965
|
isArchived?: boolean | undefined;
|
|
187966
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187947
187967
|
}, {
|
|
187948
187968
|
id: string;
|
|
187949
187969
|
name: string;
|
|
@@ -187951,12 +187971,14 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187951
187971
|
description: string;
|
|
187952
187972
|
createdByUserId: string;
|
|
187953
187973
|
projectId: string;
|
|
187954
|
-
initialPrompt: string;
|
|
187955
187974
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187956
187975
|
updatedAt?: Date | undefined;
|
|
187957
187976
|
sortOrder?: number | undefined;
|
|
187958
187977
|
sectionId?: string | undefined;
|
|
187959
187978
|
isArchived?: boolean | undefined;
|
|
187979
|
+
numberOfIterations?: number | undefined;
|
|
187980
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
187981
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187960
187982
|
}>, "many">>;
|
|
187961
187983
|
featureIdsToDelete: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187962
187984
|
artifactSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -188022,10 +188044,12 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188022
188044
|
sortOrder: number;
|
|
188023
188045
|
createdByUserId: string;
|
|
188024
188046
|
projectId: string;
|
|
188025
|
-
|
|
188047
|
+
numberOfIterations: number;
|
|
188048
|
+
numberOfBookmarkedIterations: number;
|
|
188026
188049
|
updatedAt?: Date | undefined;
|
|
188027
188050
|
sectionId?: string | undefined;
|
|
188028
188051
|
isArchived?: boolean | undefined;
|
|
188052
|
+
lastReplyTimestamp?: Date | undefined;
|
|
188029
188053
|
}[] | undefined;
|
|
188030
188054
|
executedTransactionIds?: string[] | undefined;
|
|
188031
188055
|
artifacts?: {
|
|
@@ -188070,12 +188094,14 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188070
188094
|
description: string;
|
|
188071
188095
|
createdByUserId: string;
|
|
188072
188096
|
projectId: string;
|
|
188073
|
-
initialPrompt: string;
|
|
188074
188097
|
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
188075
188098
|
updatedAt?: Date | undefined;
|
|
188076
188099
|
sortOrder?: number | undefined;
|
|
188077
188100
|
sectionId?: string | undefined;
|
|
188078
188101
|
isArchived?: boolean | undefined;
|
|
188102
|
+
numberOfIterations?: number | undefined;
|
|
188103
|
+
numberOfBookmarkedIterations?: number | undefined;
|
|
188104
|
+
lastReplyTimestamp?: Date | undefined;
|
|
188079
188105
|
}[] | undefined;
|
|
188080
188106
|
executedTransactionIds?: string[] | undefined;
|
|
188081
188107
|
artifacts?: {
|
package/dist/index.js
CHANGED
|
@@ -5954,8 +5954,10 @@ var ProjectFeature = _zod.z.object({
|
|
|
5954
5954
|
sectionId: Id.optional(),
|
|
5955
5955
|
sortOrder: SortOrder.default(0),
|
|
5956
5956
|
status: ProjectFeatureStatus.default("Draft"),
|
|
5957
|
-
|
|
5958
|
-
|
|
5957
|
+
updatedAt: _zod.z.coerce.date().optional(),
|
|
5958
|
+
numberOfIterations: _zod.z.number().min(0).default(0),
|
|
5959
|
+
numberOfBookmarkedIterations: _zod.z.number().min(0).default(0),
|
|
5960
|
+
lastReplyTimestamp: _zod.z.coerce.date().optional()
|
|
5959
5961
|
});
|
|
5960
5962
|
|
|
5961
5963
|
// src/forge/project-figma-node.ts
|