@supernova-studio/model 1.31.2 → 1.31.3
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 +26 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -157064,6 +157064,8 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157064
157064
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
157065
157065
|
initialPrompt: z.ZodString;
|
|
157066
157066
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
157067
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
157068
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
157067
157069
|
}, "strip", z.ZodTypeAny, {
|
|
157068
157070
|
status: "Draft" | "ReadyForDevelopment";
|
|
157069
157071
|
id: string;
|
|
@@ -157074,9 +157076,11 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157074
157076
|
createdByUserId: string;
|
|
157075
157077
|
projectId: string;
|
|
157076
157078
|
initialPrompt: string;
|
|
157079
|
+
numberOfIterations: 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;
|
|
@@ -157090,6 +157094,8 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157090
157094
|
sortOrder?: number | undefined;
|
|
157091
157095
|
sectionId?: string | undefined;
|
|
157092
157096
|
isArchived?: boolean | undefined;
|
|
157097
|
+
numberOfIterations?: 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">;
|
|
@@ -187713,6 +187719,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187713
187719
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187714
187720
|
initialPrompt: z.ZodString;
|
|
187715
187721
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187722
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
187723
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
187716
187724
|
}, "strip", z.ZodTypeAny, {
|
|
187717
187725
|
status: "Draft" | "ReadyForDevelopment";
|
|
187718
187726
|
id: string;
|
|
@@ -187723,9 +187731,11 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187723
187731
|
createdByUserId: string;
|
|
187724
187732
|
projectId: string;
|
|
187725
187733
|
initialPrompt: string;
|
|
187734
|
+
numberOfIterations: 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;
|
|
@@ -187739,6 +187749,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187739
187749
|
sortOrder?: number | undefined;
|
|
187740
187750
|
sectionId?: string | undefined;
|
|
187741
187751
|
isArchived?: boolean | undefined;
|
|
187752
|
+
numberOfIterations?: number | undefined;
|
|
187753
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187742
187754
|
}>, "many">;
|
|
187743
187755
|
artifactSections: z.ZodArray<z.ZodObject<{
|
|
187744
187756
|
id: z.ZodString;
|
|
@@ -187801,9 +187813,11 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187801
187813
|
createdByUserId: string;
|
|
187802
187814
|
projectId: string;
|
|
187803
187815
|
initialPrompt: string;
|
|
187816
|
+
numberOfIterations: 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;
|
|
@@ -187849,6 +187863,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187849
187863
|
sortOrder?: number | undefined;
|
|
187850
187864
|
sectionId?: string | undefined;
|
|
187851
187865
|
isArchived?: boolean | undefined;
|
|
187866
|
+
numberOfIterations?: number | undefined;
|
|
187867
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187852
187868
|
}[];
|
|
187853
187869
|
artifacts: {
|
|
187854
187870
|
id: string;
|
|
@@ -187931,6 +187947,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187931
187947
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187932
187948
|
initialPrompt: z.ZodString;
|
|
187933
187949
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187950
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
187951
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
187934
187952
|
}, "strip", z.ZodTypeAny, {
|
|
187935
187953
|
status: "Draft" | "ReadyForDevelopment";
|
|
187936
187954
|
id: string;
|
|
@@ -187941,9 +187959,11 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187941
187959
|
createdByUserId: string;
|
|
187942
187960
|
projectId: string;
|
|
187943
187961
|
initialPrompt: string;
|
|
187962
|
+
numberOfIterations: 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;
|
|
@@ -187957,6 +187977,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187957
187977
|
sortOrder?: number | undefined;
|
|
187958
187978
|
sectionId?: string | undefined;
|
|
187959
187979
|
isArchived?: boolean | undefined;
|
|
187980
|
+
numberOfIterations?: 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<{
|
|
@@ -188023,9 +188045,11 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188023
188045
|
createdByUserId: string;
|
|
188024
188046
|
projectId: string;
|
|
188025
188047
|
initialPrompt: string;
|
|
188048
|
+
numberOfIterations: 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?: {
|
|
@@ -188076,6 +188100,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188076
188100
|
sortOrder?: number | undefined;
|
|
188077
188101
|
sectionId?: string | undefined;
|
|
188078
188102
|
isArchived?: boolean | undefined;
|
|
188103
|
+
numberOfIterations?: number | undefined;
|
|
188104
|
+
lastReplyTimestamp?: Date | undefined;
|
|
188079
188105
|
}[] | undefined;
|
|
188080
188106
|
executedTransactionIds?: string[] | undefined;
|
|
188081
188107
|
artifacts?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -157064,6 +157064,8 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157064
157064
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
157065
157065
|
initialPrompt: z.ZodString;
|
|
157066
157066
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
157067
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
157068
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
157067
157069
|
}, "strip", z.ZodTypeAny, {
|
|
157068
157070
|
status: "Draft" | "ReadyForDevelopment";
|
|
157069
157071
|
id: string;
|
|
@@ -157074,9 +157076,11 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157074
157076
|
createdByUserId: string;
|
|
157075
157077
|
projectId: string;
|
|
157076
157078
|
initialPrompt: string;
|
|
157079
|
+
numberOfIterations: 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;
|
|
@@ -157090,6 +157094,8 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157090
157094
|
sortOrder?: number | undefined;
|
|
157091
157095
|
sectionId?: string | undefined;
|
|
157092
157096
|
isArchived?: boolean | undefined;
|
|
157097
|
+
numberOfIterations?: 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">;
|
|
@@ -187713,6 +187719,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187713
187719
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187714
187720
|
initialPrompt: z.ZodString;
|
|
187715
187721
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187722
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
187723
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
187716
187724
|
}, "strip", z.ZodTypeAny, {
|
|
187717
187725
|
status: "Draft" | "ReadyForDevelopment";
|
|
187718
187726
|
id: string;
|
|
@@ -187723,9 +187731,11 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187723
187731
|
createdByUserId: string;
|
|
187724
187732
|
projectId: string;
|
|
187725
187733
|
initialPrompt: string;
|
|
187734
|
+
numberOfIterations: 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;
|
|
@@ -187739,6 +187749,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187739
187749
|
sortOrder?: number | undefined;
|
|
187740
187750
|
sectionId?: string | undefined;
|
|
187741
187751
|
isArchived?: boolean | undefined;
|
|
187752
|
+
numberOfIterations?: number | undefined;
|
|
187753
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187742
187754
|
}>, "many">;
|
|
187743
187755
|
artifactSections: z.ZodArray<z.ZodObject<{
|
|
187744
187756
|
id: z.ZodString;
|
|
@@ -187801,9 +187813,11 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187801
187813
|
createdByUserId: string;
|
|
187802
187814
|
projectId: string;
|
|
187803
187815
|
initialPrompt: string;
|
|
187816
|
+
numberOfIterations: 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;
|
|
@@ -187849,6 +187863,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187849
187863
|
sortOrder?: number | undefined;
|
|
187850
187864
|
sectionId?: string | undefined;
|
|
187851
187865
|
isArchived?: boolean | undefined;
|
|
187866
|
+
numberOfIterations?: number | undefined;
|
|
187867
|
+
lastReplyTimestamp?: Date | undefined;
|
|
187852
187868
|
}[];
|
|
187853
187869
|
artifacts: {
|
|
187854
187870
|
id: string;
|
|
@@ -187931,6 +187947,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187931
187947
|
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187932
187948
|
initialPrompt: z.ZodString;
|
|
187933
187949
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187950
|
+
numberOfIterations: z.ZodDefault<z.ZodNumber>;
|
|
187951
|
+
lastReplyTimestamp: z.ZodOptional<z.ZodDate>;
|
|
187934
187952
|
}, "strip", z.ZodTypeAny, {
|
|
187935
187953
|
status: "Draft" | "ReadyForDevelopment";
|
|
187936
187954
|
id: string;
|
|
@@ -187941,9 +187959,11 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187941
187959
|
createdByUserId: string;
|
|
187942
187960
|
projectId: string;
|
|
187943
187961
|
initialPrompt: string;
|
|
187962
|
+
numberOfIterations: 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;
|
|
@@ -187957,6 +187977,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187957
187977
|
sortOrder?: number | undefined;
|
|
187958
187978
|
sectionId?: string | undefined;
|
|
187959
187979
|
isArchived?: boolean | undefined;
|
|
187980
|
+
numberOfIterations?: 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<{
|
|
@@ -188023,9 +188045,11 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188023
188045
|
createdByUserId: string;
|
|
188024
188046
|
projectId: string;
|
|
188025
188047
|
initialPrompt: string;
|
|
188048
|
+
numberOfIterations: 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?: {
|
|
@@ -188076,6 +188100,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188076
188100
|
sortOrder?: number | undefined;
|
|
188077
188101
|
sectionId?: string | undefined;
|
|
188078
188102
|
isArchived?: boolean | undefined;
|
|
188103
|
+
numberOfIterations?: number | undefined;
|
|
188104
|
+
lastReplyTimestamp?: Date | undefined;
|
|
188079
188105
|
}[] | undefined;
|
|
188080
188106
|
executedTransactionIds?: string[] | undefined;
|
|
188081
188107
|
artifacts?: {
|
package/dist/index.js
CHANGED
|
@@ -5955,7 +5955,9 @@ var ProjectFeature = _zod.z.object({
|
|
|
5955
5955
|
sortOrder: SortOrder.default(0),
|
|
5956
5956
|
status: ProjectFeatureStatus.default("Draft"),
|
|
5957
5957
|
initialPrompt: _zod.z.string(),
|
|
5958
|
-
updatedAt: _zod.z.coerce.date().optional()
|
|
5958
|
+
updatedAt: _zod.z.coerce.date().optional(),
|
|
5959
|
+
numberOfIterations: _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
|