@supernova-studio/model 1.57.0 → 1.58.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 +42 -41
- package/dist/index.d.ts +42 -41
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -158902,28 +158902,6 @@ type ForgeProjectArtifact = z$1.infer<typeof ForgeProjectArtifact>;
|
|
|
158902
158902
|
|
|
158903
158903
|
declare const ProjectFeatureStatus: z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>;
|
|
158904
158904
|
declare const FeaturePublishedStateVisibility: z$1.ZodEnum<["Public", "WorkspaceMembers"]>;
|
|
158905
|
-
declare const FeaturePublishedState: z$1.ZodObject<{
|
|
158906
|
-
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
158907
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
158908
|
-
lastPublishedAt: z$1.ZodDate;
|
|
158909
|
-
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
158910
|
-
hideSupernovaUI: z$1.ZodBoolean;
|
|
158911
|
-
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
158912
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
158913
|
-
visibility: "Public" | "WorkspaceMembers";
|
|
158914
|
-
lastPublishedAt: Date;
|
|
158915
|
-
hideSupernovaUI: boolean;
|
|
158916
|
-
userId?: string | undefined;
|
|
158917
|
-
iterationId?: string | undefined;
|
|
158918
|
-
userName?: string | undefined;
|
|
158919
|
-
}, {
|
|
158920
|
-
lastPublishedAt: Date;
|
|
158921
|
-
hideSupernovaUI: boolean;
|
|
158922
|
-
userId?: string | undefined;
|
|
158923
|
-
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
158924
|
-
iterationId?: string | undefined;
|
|
158925
|
-
userName?: string | undefined;
|
|
158926
|
-
}>;
|
|
158927
158905
|
declare const ProjectFeature: z$1.ZodObject<{
|
|
158928
158906
|
createdAt: z$1.ZodDate;
|
|
158929
158907
|
createdByUserId: z$1.ZodString;
|
|
@@ -158998,22 +158976,22 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158998
158976
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
158999
158977
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
159000
158978
|
lastPublishedAt: z$1.ZodDate;
|
|
159001
|
-
iterationId: z$1.
|
|
158979
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
159002
158980
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
159003
158981
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
159004
158982
|
}, "strip", z$1.ZodTypeAny, {
|
|
159005
158983
|
visibility: "Public" | "WorkspaceMembers";
|
|
158984
|
+
iterationId: string | null;
|
|
159006
158985
|
lastPublishedAt: Date;
|
|
159007
158986
|
hideSupernovaUI: boolean;
|
|
159008
158987
|
userId?: string | undefined;
|
|
159009
|
-
iterationId?: string | undefined;
|
|
159010
158988
|
userName?: string | undefined;
|
|
159011
158989
|
}, {
|
|
158990
|
+
iterationId: string | null;
|
|
159012
158991
|
lastPublishedAt: Date;
|
|
159013
158992
|
hideSupernovaUI: boolean;
|
|
159014
158993
|
userId?: string | undefined;
|
|
159015
158994
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159016
|
-
iterationId?: string | undefined;
|
|
159017
158995
|
userName?: string | undefined;
|
|
159018
158996
|
}>>;
|
|
159019
158997
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -159048,10 +159026,10 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
159048
159026
|
lastReplyTimestamp?: Date | undefined;
|
|
159049
159027
|
publishedState?: {
|
|
159050
159028
|
visibility: "Public" | "WorkspaceMembers";
|
|
159029
|
+
iterationId: string | null;
|
|
159051
159030
|
lastPublishedAt: Date;
|
|
159052
159031
|
hideSupernovaUI: boolean;
|
|
159053
159032
|
userId?: string | undefined;
|
|
159054
|
-
iterationId?: string | undefined;
|
|
159055
159033
|
userName?: string | undefined;
|
|
159056
159034
|
} | undefined;
|
|
159057
159035
|
}, {
|
|
@@ -159085,17 +159063,40 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
159085
159063
|
numberOfBookmarkedIterations?: number | undefined;
|
|
159086
159064
|
lastReplyTimestamp?: Date | undefined;
|
|
159087
159065
|
publishedState?: {
|
|
159066
|
+
iterationId: string | null;
|
|
159088
159067
|
lastPublishedAt: Date;
|
|
159089
159068
|
hideSupernovaUI: boolean;
|
|
159090
159069
|
userId?: string | undefined;
|
|
159091
159070
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159092
|
-
iterationId?: string | undefined;
|
|
159093
159071
|
userName?: string | undefined;
|
|
159094
159072
|
} | undefined;
|
|
159095
159073
|
}>;
|
|
159096
159074
|
type ProjectFeature = z$1.infer<typeof ProjectFeature>;
|
|
159097
159075
|
type CreateProjectFeature = Omit<DbCreateInputOmit<ProjectFeature>, "projectId" | "createdByUserId">;
|
|
159098
159076
|
type UpdateProjectFeature = DbUpdate<CreateProjectFeature & Pick<ProjectFeature, "id">>;
|
|
159077
|
+
declare const FeaturePublishedState: z$1.ZodObject<{
|
|
159078
|
+
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
159079
|
+
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
159080
|
+
lastPublishedAt: z$1.ZodDate;
|
|
159081
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
159082
|
+
hideSupernovaUI: z$1.ZodBoolean;
|
|
159083
|
+
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
159084
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
159085
|
+
visibility: "Public" | "WorkspaceMembers";
|
|
159086
|
+
iterationId: string | null;
|
|
159087
|
+
lastPublishedAt: Date;
|
|
159088
|
+
hideSupernovaUI: boolean;
|
|
159089
|
+
userId?: string | undefined;
|
|
159090
|
+
userName?: string | undefined;
|
|
159091
|
+
}, {
|
|
159092
|
+
iterationId: string | null;
|
|
159093
|
+
lastPublishedAt: Date;
|
|
159094
|
+
hideSupernovaUI: boolean;
|
|
159095
|
+
userId?: string | undefined;
|
|
159096
|
+
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159097
|
+
userName?: string | undefined;
|
|
159098
|
+
}>;
|
|
159099
|
+
type FeaturePublishedState = z$1.infer<typeof FeaturePublishedState>;
|
|
159099
159100
|
|
|
159100
159101
|
declare const ForgeProjectFigmaNode: z$1.ZodObject<{
|
|
159101
159102
|
id: z$1.ZodString;
|
|
@@ -189881,22 +189882,22 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189881
189882
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
189882
189883
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
189883
189884
|
lastPublishedAt: z$1.ZodDate;
|
|
189884
|
-
iterationId: z$1.
|
|
189885
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
189885
189886
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
189886
189887
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
189887
189888
|
}, "strip", z$1.ZodTypeAny, {
|
|
189888
189889
|
visibility: "Public" | "WorkspaceMembers";
|
|
189890
|
+
iterationId: string | null;
|
|
189889
189891
|
lastPublishedAt: Date;
|
|
189890
189892
|
hideSupernovaUI: boolean;
|
|
189891
189893
|
userId?: string | undefined;
|
|
189892
|
-
iterationId?: string | undefined;
|
|
189893
189894
|
userName?: string | undefined;
|
|
189894
189895
|
}, {
|
|
189896
|
+
iterationId: string | null;
|
|
189895
189897
|
lastPublishedAt: Date;
|
|
189896
189898
|
hideSupernovaUI: boolean;
|
|
189897
189899
|
userId?: string | undefined;
|
|
189898
189900
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
189899
|
-
iterationId?: string | undefined;
|
|
189900
189901
|
userName?: string | undefined;
|
|
189901
189902
|
}>>;
|
|
189902
189903
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -189931,10 +189932,10 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189931
189932
|
lastReplyTimestamp?: Date | undefined;
|
|
189932
189933
|
publishedState?: {
|
|
189933
189934
|
visibility: "Public" | "WorkspaceMembers";
|
|
189935
|
+
iterationId: string | null;
|
|
189934
189936
|
lastPublishedAt: Date;
|
|
189935
189937
|
hideSupernovaUI: boolean;
|
|
189936
189938
|
userId?: string | undefined;
|
|
189937
|
-
iterationId?: string | undefined;
|
|
189938
189939
|
userName?: string | undefined;
|
|
189939
189940
|
} | undefined;
|
|
189940
189941
|
}, {
|
|
@@ -189968,11 +189969,11 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189968
189969
|
numberOfBookmarkedIterations?: number | undefined;
|
|
189969
189970
|
lastReplyTimestamp?: Date | undefined;
|
|
189970
189971
|
publishedState?: {
|
|
189972
|
+
iterationId: string | null;
|
|
189971
189973
|
lastPublishedAt: Date;
|
|
189972
189974
|
hideSupernovaUI: boolean;
|
|
189973
189975
|
userId?: string | undefined;
|
|
189974
189976
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
189975
|
-
iterationId?: string | undefined;
|
|
189976
189977
|
userName?: string | undefined;
|
|
189977
189978
|
} | undefined;
|
|
189978
189979
|
}>, "many">;
|
|
@@ -190084,10 +190085,10 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
190084
190085
|
lastReplyTimestamp?: Date | undefined;
|
|
190085
190086
|
publishedState?: {
|
|
190086
190087
|
visibility: "Public" | "WorkspaceMembers";
|
|
190088
|
+
iterationId: string | null;
|
|
190087
190089
|
lastPublishedAt: Date;
|
|
190088
190090
|
hideSupernovaUI: boolean;
|
|
190089
190091
|
userId?: string | undefined;
|
|
190090
|
-
iterationId?: string | undefined;
|
|
190091
190092
|
userName?: string | undefined;
|
|
190092
190093
|
} | undefined;
|
|
190093
190094
|
}[];
|
|
@@ -190176,11 +190177,11 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
190176
190177
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190177
190178
|
lastReplyTimestamp?: Date | undefined;
|
|
190178
190179
|
publishedState?: {
|
|
190180
|
+
iterationId: string | null;
|
|
190179
190181
|
lastPublishedAt: Date;
|
|
190180
190182
|
hideSupernovaUI: boolean;
|
|
190181
190183
|
userId?: string | undefined;
|
|
190182
190184
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190183
|
-
iterationId?: string | undefined;
|
|
190184
190185
|
userName?: string | undefined;
|
|
190185
190186
|
} | undefined;
|
|
190186
190187
|
}[];
|
|
@@ -190431,22 +190432,22 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190431
190432
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
190432
190433
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
190433
190434
|
lastPublishedAt: z$1.ZodDate;
|
|
190434
|
-
iterationId: z$1.
|
|
190435
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
190435
190436
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
190436
190437
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
190437
190438
|
}, "strip", z$1.ZodTypeAny, {
|
|
190438
190439
|
visibility: "Public" | "WorkspaceMembers";
|
|
190440
|
+
iterationId: string | null;
|
|
190439
190441
|
lastPublishedAt: Date;
|
|
190440
190442
|
hideSupernovaUI: boolean;
|
|
190441
190443
|
userId?: string | undefined;
|
|
190442
|
-
iterationId?: string | undefined;
|
|
190443
190444
|
userName?: string | undefined;
|
|
190444
190445
|
}, {
|
|
190446
|
+
iterationId: string | null;
|
|
190445
190447
|
lastPublishedAt: Date;
|
|
190446
190448
|
hideSupernovaUI: boolean;
|
|
190447
190449
|
userId?: string | undefined;
|
|
190448
190450
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190449
|
-
iterationId?: string | undefined;
|
|
190450
190451
|
userName?: string | undefined;
|
|
190451
190452
|
}>>;
|
|
190452
190453
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -190481,10 +190482,10 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190481
190482
|
lastReplyTimestamp?: Date | undefined;
|
|
190482
190483
|
publishedState?: {
|
|
190483
190484
|
visibility: "Public" | "WorkspaceMembers";
|
|
190485
|
+
iterationId: string | null;
|
|
190484
190486
|
lastPublishedAt: Date;
|
|
190485
190487
|
hideSupernovaUI: boolean;
|
|
190486
190488
|
userId?: string | undefined;
|
|
190487
|
-
iterationId?: string | undefined;
|
|
190488
190489
|
userName?: string | undefined;
|
|
190489
190490
|
} | undefined;
|
|
190490
190491
|
}, {
|
|
@@ -190518,11 +190519,11 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190518
190519
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190519
190520
|
lastReplyTimestamp?: Date | undefined;
|
|
190520
190521
|
publishedState?: {
|
|
190522
|
+
iterationId: string | null;
|
|
190521
190523
|
lastPublishedAt: Date;
|
|
190522
190524
|
hideSupernovaUI: boolean;
|
|
190523
190525
|
userId?: string | undefined;
|
|
190524
190526
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190525
|
-
iterationId?: string | undefined;
|
|
190526
190527
|
userName?: string | undefined;
|
|
190527
190528
|
} | undefined;
|
|
190528
190529
|
}>, "many">>;
|
|
@@ -190638,10 +190639,10 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190638
190639
|
lastReplyTimestamp?: Date | undefined;
|
|
190639
190640
|
publishedState?: {
|
|
190640
190641
|
visibility: "Public" | "WorkspaceMembers";
|
|
190642
|
+
iterationId: string | null;
|
|
190641
190643
|
lastPublishedAt: Date;
|
|
190642
190644
|
hideSupernovaUI: boolean;
|
|
190643
190645
|
userId?: string | undefined;
|
|
190644
|
-
iterationId?: string | undefined;
|
|
190645
190646
|
userName?: string | undefined;
|
|
190646
190647
|
} | undefined;
|
|
190647
190648
|
}[] | undefined;
|
|
@@ -190735,11 +190736,11 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190735
190736
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190736
190737
|
lastReplyTimestamp?: Date | undefined;
|
|
190737
190738
|
publishedState?: {
|
|
190739
|
+
iterationId: string | null;
|
|
190738
190740
|
lastPublishedAt: Date;
|
|
190739
190741
|
hideSupernovaUI: boolean;
|
|
190740
190742
|
userId?: string | undefined;
|
|
190741
190743
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190742
|
-
iterationId?: string | undefined;
|
|
190743
190744
|
userName?: string | undefined;
|
|
190744
190745
|
} | undefined;
|
|
190745
190746
|
}[] | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -158902,28 +158902,6 @@ type ForgeProjectArtifact = z$1.infer<typeof ForgeProjectArtifact>;
|
|
|
158902
158902
|
|
|
158903
158903
|
declare const ProjectFeatureStatus: z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>;
|
|
158904
158904
|
declare const FeaturePublishedStateVisibility: z$1.ZodEnum<["Public", "WorkspaceMembers"]>;
|
|
158905
|
-
declare const FeaturePublishedState: z$1.ZodObject<{
|
|
158906
|
-
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
158907
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
158908
|
-
lastPublishedAt: z$1.ZodDate;
|
|
158909
|
-
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
158910
|
-
hideSupernovaUI: z$1.ZodBoolean;
|
|
158911
|
-
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
158912
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
158913
|
-
visibility: "Public" | "WorkspaceMembers";
|
|
158914
|
-
lastPublishedAt: Date;
|
|
158915
|
-
hideSupernovaUI: boolean;
|
|
158916
|
-
userId?: string | undefined;
|
|
158917
|
-
iterationId?: string | undefined;
|
|
158918
|
-
userName?: string | undefined;
|
|
158919
|
-
}, {
|
|
158920
|
-
lastPublishedAt: Date;
|
|
158921
|
-
hideSupernovaUI: boolean;
|
|
158922
|
-
userId?: string | undefined;
|
|
158923
|
-
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
158924
|
-
iterationId?: string | undefined;
|
|
158925
|
-
userName?: string | undefined;
|
|
158926
|
-
}>;
|
|
158927
158905
|
declare const ProjectFeature: z$1.ZodObject<{
|
|
158928
158906
|
createdAt: z$1.ZodDate;
|
|
158929
158907
|
createdByUserId: z$1.ZodString;
|
|
@@ -158998,22 +158976,22 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158998
158976
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
158999
158977
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
159000
158978
|
lastPublishedAt: z$1.ZodDate;
|
|
159001
|
-
iterationId: z$1.
|
|
158979
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
159002
158980
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
159003
158981
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
159004
158982
|
}, "strip", z$1.ZodTypeAny, {
|
|
159005
158983
|
visibility: "Public" | "WorkspaceMembers";
|
|
158984
|
+
iterationId: string | null;
|
|
159006
158985
|
lastPublishedAt: Date;
|
|
159007
158986
|
hideSupernovaUI: boolean;
|
|
159008
158987
|
userId?: string | undefined;
|
|
159009
|
-
iterationId?: string | undefined;
|
|
159010
158988
|
userName?: string | undefined;
|
|
159011
158989
|
}, {
|
|
158990
|
+
iterationId: string | null;
|
|
159012
158991
|
lastPublishedAt: Date;
|
|
159013
158992
|
hideSupernovaUI: boolean;
|
|
159014
158993
|
userId?: string | undefined;
|
|
159015
158994
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159016
|
-
iterationId?: string | undefined;
|
|
159017
158995
|
userName?: string | undefined;
|
|
159018
158996
|
}>>;
|
|
159019
158997
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -159048,10 +159026,10 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
159048
159026
|
lastReplyTimestamp?: Date | undefined;
|
|
159049
159027
|
publishedState?: {
|
|
159050
159028
|
visibility: "Public" | "WorkspaceMembers";
|
|
159029
|
+
iterationId: string | null;
|
|
159051
159030
|
lastPublishedAt: Date;
|
|
159052
159031
|
hideSupernovaUI: boolean;
|
|
159053
159032
|
userId?: string | undefined;
|
|
159054
|
-
iterationId?: string | undefined;
|
|
159055
159033
|
userName?: string | undefined;
|
|
159056
159034
|
} | undefined;
|
|
159057
159035
|
}, {
|
|
@@ -159085,17 +159063,40 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
159085
159063
|
numberOfBookmarkedIterations?: number | undefined;
|
|
159086
159064
|
lastReplyTimestamp?: Date | undefined;
|
|
159087
159065
|
publishedState?: {
|
|
159066
|
+
iterationId: string | null;
|
|
159088
159067
|
lastPublishedAt: Date;
|
|
159089
159068
|
hideSupernovaUI: boolean;
|
|
159090
159069
|
userId?: string | undefined;
|
|
159091
159070
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159092
|
-
iterationId?: string | undefined;
|
|
159093
159071
|
userName?: string | undefined;
|
|
159094
159072
|
} | undefined;
|
|
159095
159073
|
}>;
|
|
159096
159074
|
type ProjectFeature = z$1.infer<typeof ProjectFeature>;
|
|
159097
159075
|
type CreateProjectFeature = Omit<DbCreateInputOmit<ProjectFeature>, "projectId" | "createdByUserId">;
|
|
159098
159076
|
type UpdateProjectFeature = DbUpdate<CreateProjectFeature & Pick<ProjectFeature, "id">>;
|
|
159077
|
+
declare const FeaturePublishedState: z$1.ZodObject<{
|
|
159078
|
+
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
159079
|
+
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
159080
|
+
lastPublishedAt: z$1.ZodDate;
|
|
159081
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
159082
|
+
hideSupernovaUI: z$1.ZodBoolean;
|
|
159083
|
+
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
159084
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
159085
|
+
visibility: "Public" | "WorkspaceMembers";
|
|
159086
|
+
iterationId: string | null;
|
|
159087
|
+
lastPublishedAt: Date;
|
|
159088
|
+
hideSupernovaUI: boolean;
|
|
159089
|
+
userId?: string | undefined;
|
|
159090
|
+
userName?: string | undefined;
|
|
159091
|
+
}, {
|
|
159092
|
+
iterationId: string | null;
|
|
159093
|
+
lastPublishedAt: Date;
|
|
159094
|
+
hideSupernovaUI: boolean;
|
|
159095
|
+
userId?: string | undefined;
|
|
159096
|
+
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159097
|
+
userName?: string | undefined;
|
|
159098
|
+
}>;
|
|
159099
|
+
type FeaturePublishedState = z$1.infer<typeof FeaturePublishedState>;
|
|
159099
159100
|
|
|
159100
159101
|
declare const ForgeProjectFigmaNode: z$1.ZodObject<{
|
|
159101
159102
|
id: z$1.ZodString;
|
|
@@ -189881,22 +189882,22 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189881
189882
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
189882
189883
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
189883
189884
|
lastPublishedAt: z$1.ZodDate;
|
|
189884
|
-
iterationId: z$1.
|
|
189885
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
189885
189886
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
189886
189887
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
189887
189888
|
}, "strip", z$1.ZodTypeAny, {
|
|
189888
189889
|
visibility: "Public" | "WorkspaceMembers";
|
|
189890
|
+
iterationId: string | null;
|
|
189889
189891
|
lastPublishedAt: Date;
|
|
189890
189892
|
hideSupernovaUI: boolean;
|
|
189891
189893
|
userId?: string | undefined;
|
|
189892
|
-
iterationId?: string | undefined;
|
|
189893
189894
|
userName?: string | undefined;
|
|
189894
189895
|
}, {
|
|
189896
|
+
iterationId: string | null;
|
|
189895
189897
|
lastPublishedAt: Date;
|
|
189896
189898
|
hideSupernovaUI: boolean;
|
|
189897
189899
|
userId?: string | undefined;
|
|
189898
189900
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
189899
|
-
iterationId?: string | undefined;
|
|
189900
189901
|
userName?: string | undefined;
|
|
189901
189902
|
}>>;
|
|
189902
189903
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -189931,10 +189932,10 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189931
189932
|
lastReplyTimestamp?: Date | undefined;
|
|
189932
189933
|
publishedState?: {
|
|
189933
189934
|
visibility: "Public" | "WorkspaceMembers";
|
|
189935
|
+
iterationId: string | null;
|
|
189934
189936
|
lastPublishedAt: Date;
|
|
189935
189937
|
hideSupernovaUI: boolean;
|
|
189936
189938
|
userId?: string | undefined;
|
|
189937
|
-
iterationId?: string | undefined;
|
|
189938
189939
|
userName?: string | undefined;
|
|
189939
189940
|
} | undefined;
|
|
189940
189941
|
}, {
|
|
@@ -189968,11 +189969,11 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189968
189969
|
numberOfBookmarkedIterations?: number | undefined;
|
|
189969
189970
|
lastReplyTimestamp?: Date | undefined;
|
|
189970
189971
|
publishedState?: {
|
|
189972
|
+
iterationId: string | null;
|
|
189971
189973
|
lastPublishedAt: Date;
|
|
189972
189974
|
hideSupernovaUI: boolean;
|
|
189973
189975
|
userId?: string | undefined;
|
|
189974
189976
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
189975
|
-
iterationId?: string | undefined;
|
|
189976
189977
|
userName?: string | undefined;
|
|
189977
189978
|
} | undefined;
|
|
189978
189979
|
}>, "many">;
|
|
@@ -190084,10 +190085,10 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
190084
190085
|
lastReplyTimestamp?: Date | undefined;
|
|
190085
190086
|
publishedState?: {
|
|
190086
190087
|
visibility: "Public" | "WorkspaceMembers";
|
|
190088
|
+
iterationId: string | null;
|
|
190087
190089
|
lastPublishedAt: Date;
|
|
190088
190090
|
hideSupernovaUI: boolean;
|
|
190089
190091
|
userId?: string | undefined;
|
|
190090
|
-
iterationId?: string | undefined;
|
|
190091
190092
|
userName?: string | undefined;
|
|
190092
190093
|
} | undefined;
|
|
190093
190094
|
}[];
|
|
@@ -190176,11 +190177,11 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
190176
190177
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190177
190178
|
lastReplyTimestamp?: Date | undefined;
|
|
190178
190179
|
publishedState?: {
|
|
190180
|
+
iterationId: string | null;
|
|
190179
190181
|
lastPublishedAt: Date;
|
|
190180
190182
|
hideSupernovaUI: boolean;
|
|
190181
190183
|
userId?: string | undefined;
|
|
190182
190184
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190183
|
-
iterationId?: string | undefined;
|
|
190184
190185
|
userName?: string | undefined;
|
|
190185
190186
|
} | undefined;
|
|
190186
190187
|
}[];
|
|
@@ -190431,22 +190432,22 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190431
190432
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
190432
190433
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
190433
190434
|
lastPublishedAt: z$1.ZodDate;
|
|
190434
|
-
iterationId: z$1.
|
|
190435
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
190435
190436
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
190436
190437
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
190437
190438
|
}, "strip", z$1.ZodTypeAny, {
|
|
190438
190439
|
visibility: "Public" | "WorkspaceMembers";
|
|
190440
|
+
iterationId: string | null;
|
|
190439
190441
|
lastPublishedAt: Date;
|
|
190440
190442
|
hideSupernovaUI: boolean;
|
|
190441
190443
|
userId?: string | undefined;
|
|
190442
|
-
iterationId?: string | undefined;
|
|
190443
190444
|
userName?: string | undefined;
|
|
190444
190445
|
}, {
|
|
190446
|
+
iterationId: string | null;
|
|
190445
190447
|
lastPublishedAt: Date;
|
|
190446
190448
|
hideSupernovaUI: boolean;
|
|
190447
190449
|
userId?: string | undefined;
|
|
190448
190450
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190449
|
-
iterationId?: string | undefined;
|
|
190450
190451
|
userName?: string | undefined;
|
|
190451
190452
|
}>>;
|
|
190452
190453
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -190481,10 +190482,10 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190481
190482
|
lastReplyTimestamp?: Date | undefined;
|
|
190482
190483
|
publishedState?: {
|
|
190483
190484
|
visibility: "Public" | "WorkspaceMembers";
|
|
190485
|
+
iterationId: string | null;
|
|
190484
190486
|
lastPublishedAt: Date;
|
|
190485
190487
|
hideSupernovaUI: boolean;
|
|
190486
190488
|
userId?: string | undefined;
|
|
190487
|
-
iterationId?: string | undefined;
|
|
190488
190489
|
userName?: string | undefined;
|
|
190489
190490
|
} | undefined;
|
|
190490
190491
|
}, {
|
|
@@ -190518,11 +190519,11 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190518
190519
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190519
190520
|
lastReplyTimestamp?: Date | undefined;
|
|
190520
190521
|
publishedState?: {
|
|
190522
|
+
iterationId: string | null;
|
|
190521
190523
|
lastPublishedAt: Date;
|
|
190522
190524
|
hideSupernovaUI: boolean;
|
|
190523
190525
|
userId?: string | undefined;
|
|
190524
190526
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190525
|
-
iterationId?: string | undefined;
|
|
190526
190527
|
userName?: string | undefined;
|
|
190527
190528
|
} | undefined;
|
|
190528
190529
|
}>, "many">>;
|
|
@@ -190638,10 +190639,10 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190638
190639
|
lastReplyTimestamp?: Date | undefined;
|
|
190639
190640
|
publishedState?: {
|
|
190640
190641
|
visibility: "Public" | "WorkspaceMembers";
|
|
190642
|
+
iterationId: string | null;
|
|
190641
190643
|
lastPublishedAt: Date;
|
|
190642
190644
|
hideSupernovaUI: boolean;
|
|
190643
190645
|
userId?: string | undefined;
|
|
190644
|
-
iterationId?: string | undefined;
|
|
190645
190646
|
userName?: string | undefined;
|
|
190646
190647
|
} | undefined;
|
|
190647
190648
|
}[] | undefined;
|
|
@@ -190735,11 +190736,11 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190735
190736
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190736
190737
|
lastReplyTimestamp?: Date | undefined;
|
|
190737
190738
|
publishedState?: {
|
|
190739
|
+
iterationId: string | null;
|
|
190738
190740
|
lastPublishedAt: Date;
|
|
190739
190741
|
hideSupernovaUI: boolean;
|
|
190740
190742
|
userId?: string | undefined;
|
|
190741
190743
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190742
|
-
iterationId?: string | undefined;
|
|
190743
190744
|
userName?: string | undefined;
|
|
190744
190745
|
} | undefined;
|
|
190745
190746
|
}[] | undefined;
|
package/dist/index.js
CHANGED
|
@@ -5418,7 +5418,7 @@ var FeaturePublishedState = _zod.z.object({
|
|
|
5418
5418
|
userId: _zod.z.string().optional(),
|
|
5419
5419
|
userName: _zod.z.string().optional(),
|
|
5420
5420
|
lastPublishedAt: _zod.z.coerce.date(),
|
|
5421
|
-
iterationId: _zod.z.string().
|
|
5421
|
+
iterationId: _zod.z.string().nullable(),
|
|
5422
5422
|
hideSupernovaUI: _zod.z.boolean(),
|
|
5423
5423
|
visibility: FeaturePublishedStateVisibility.default("Public")
|
|
5424
5424
|
});
|