@supernova-studio/model 1.57.1 → 1.59.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 +22 -22
- package/dist/index.d.ts +22 -22
- 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
|
@@ -158976,22 +158976,22 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158976
158976
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
158977
158977
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
158978
158978
|
lastPublishedAt: z$1.ZodDate;
|
|
158979
|
-
iterationId: z$1.
|
|
158979
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
158980
158980
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
158981
158981
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
158982
158982
|
}, "strip", z$1.ZodTypeAny, {
|
|
158983
158983
|
visibility: "Public" | "WorkspaceMembers";
|
|
158984
|
+
iterationId: string | null;
|
|
158984
158985
|
lastPublishedAt: Date;
|
|
158985
158986
|
hideSupernovaUI: boolean;
|
|
158986
158987
|
userId?: string | undefined;
|
|
158987
|
-
iterationId?: string | undefined;
|
|
158988
158988
|
userName?: string | undefined;
|
|
158989
158989
|
}, {
|
|
158990
|
+
iterationId: string | null;
|
|
158990
158991
|
lastPublishedAt: Date;
|
|
158991
158992
|
hideSupernovaUI: boolean;
|
|
158992
158993
|
userId?: string | undefined;
|
|
158993
158994
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
158994
|
-
iterationId?: string | undefined;
|
|
158995
158995
|
userName?: string | undefined;
|
|
158996
158996
|
}>>;
|
|
158997
158997
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -159026,10 +159026,10 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
159026
159026
|
lastReplyTimestamp?: Date | undefined;
|
|
159027
159027
|
publishedState?: {
|
|
159028
159028
|
visibility: "Public" | "WorkspaceMembers";
|
|
159029
|
+
iterationId: string | null;
|
|
159029
159030
|
lastPublishedAt: Date;
|
|
159030
159031
|
hideSupernovaUI: boolean;
|
|
159031
159032
|
userId?: string | undefined;
|
|
159032
|
-
iterationId?: string | undefined;
|
|
159033
159033
|
userName?: string | undefined;
|
|
159034
159034
|
} | undefined;
|
|
159035
159035
|
}, {
|
|
@@ -159063,11 +159063,11 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
159063
159063
|
numberOfBookmarkedIterations?: number | undefined;
|
|
159064
159064
|
lastReplyTimestamp?: Date | undefined;
|
|
159065
159065
|
publishedState?: {
|
|
159066
|
+
iterationId: string | null;
|
|
159066
159067
|
lastPublishedAt: Date;
|
|
159067
159068
|
hideSupernovaUI: boolean;
|
|
159068
159069
|
userId?: string | undefined;
|
|
159069
159070
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159070
|
-
iterationId?: string | undefined;
|
|
159071
159071
|
userName?: string | undefined;
|
|
159072
159072
|
} | undefined;
|
|
159073
159073
|
}>;
|
|
@@ -159078,22 +159078,22 @@ declare const FeaturePublishedState: z$1.ZodObject<{
|
|
|
159078
159078
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
159079
159079
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
159080
159080
|
lastPublishedAt: z$1.ZodDate;
|
|
159081
|
-
iterationId: z$1.
|
|
159081
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
159082
159082
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
159083
159083
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
159084
159084
|
}, "strip", z$1.ZodTypeAny, {
|
|
159085
159085
|
visibility: "Public" | "WorkspaceMembers";
|
|
159086
|
+
iterationId: string | null;
|
|
159086
159087
|
lastPublishedAt: Date;
|
|
159087
159088
|
hideSupernovaUI: boolean;
|
|
159088
159089
|
userId?: string | undefined;
|
|
159089
|
-
iterationId?: string | undefined;
|
|
159090
159090
|
userName?: string | undefined;
|
|
159091
159091
|
}, {
|
|
159092
|
+
iterationId: string | null;
|
|
159092
159093
|
lastPublishedAt: Date;
|
|
159093
159094
|
hideSupernovaUI: boolean;
|
|
159094
159095
|
userId?: string | undefined;
|
|
159095
159096
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159096
|
-
iterationId?: string | undefined;
|
|
159097
159097
|
userName?: string | undefined;
|
|
159098
159098
|
}>;
|
|
159099
159099
|
type FeaturePublishedState = z$1.infer<typeof FeaturePublishedState>;
|
|
@@ -189882,22 +189882,22 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189882
189882
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
189883
189883
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
189884
189884
|
lastPublishedAt: z$1.ZodDate;
|
|
189885
|
-
iterationId: z$1.
|
|
189885
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
189886
189886
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
189887
189887
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
189888
189888
|
}, "strip", z$1.ZodTypeAny, {
|
|
189889
189889
|
visibility: "Public" | "WorkspaceMembers";
|
|
189890
|
+
iterationId: string | null;
|
|
189890
189891
|
lastPublishedAt: Date;
|
|
189891
189892
|
hideSupernovaUI: boolean;
|
|
189892
189893
|
userId?: string | undefined;
|
|
189893
|
-
iterationId?: string | undefined;
|
|
189894
189894
|
userName?: string | undefined;
|
|
189895
189895
|
}, {
|
|
189896
|
+
iterationId: string | null;
|
|
189896
189897
|
lastPublishedAt: Date;
|
|
189897
189898
|
hideSupernovaUI: boolean;
|
|
189898
189899
|
userId?: string | undefined;
|
|
189899
189900
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
189900
|
-
iterationId?: string | undefined;
|
|
189901
189901
|
userName?: string | undefined;
|
|
189902
189902
|
}>>;
|
|
189903
189903
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -189932,10 +189932,10 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189932
189932
|
lastReplyTimestamp?: Date | undefined;
|
|
189933
189933
|
publishedState?: {
|
|
189934
189934
|
visibility: "Public" | "WorkspaceMembers";
|
|
189935
|
+
iterationId: string | null;
|
|
189935
189936
|
lastPublishedAt: Date;
|
|
189936
189937
|
hideSupernovaUI: boolean;
|
|
189937
189938
|
userId?: string | undefined;
|
|
189938
|
-
iterationId?: string | undefined;
|
|
189939
189939
|
userName?: string | undefined;
|
|
189940
189940
|
} | undefined;
|
|
189941
189941
|
}, {
|
|
@@ -189969,11 +189969,11 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189969
189969
|
numberOfBookmarkedIterations?: number | undefined;
|
|
189970
189970
|
lastReplyTimestamp?: Date | undefined;
|
|
189971
189971
|
publishedState?: {
|
|
189972
|
+
iterationId: string | null;
|
|
189972
189973
|
lastPublishedAt: Date;
|
|
189973
189974
|
hideSupernovaUI: boolean;
|
|
189974
189975
|
userId?: string | undefined;
|
|
189975
189976
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
189976
|
-
iterationId?: string | undefined;
|
|
189977
189977
|
userName?: string | undefined;
|
|
189978
189978
|
} | undefined;
|
|
189979
189979
|
}>, "many">;
|
|
@@ -190085,10 +190085,10 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
190085
190085
|
lastReplyTimestamp?: Date | undefined;
|
|
190086
190086
|
publishedState?: {
|
|
190087
190087
|
visibility: "Public" | "WorkspaceMembers";
|
|
190088
|
+
iterationId: string | null;
|
|
190088
190089
|
lastPublishedAt: Date;
|
|
190089
190090
|
hideSupernovaUI: boolean;
|
|
190090
190091
|
userId?: string | undefined;
|
|
190091
|
-
iterationId?: string | undefined;
|
|
190092
190092
|
userName?: string | undefined;
|
|
190093
190093
|
} | undefined;
|
|
190094
190094
|
}[];
|
|
@@ -190177,11 +190177,11 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
190177
190177
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190178
190178
|
lastReplyTimestamp?: Date | undefined;
|
|
190179
190179
|
publishedState?: {
|
|
190180
|
+
iterationId: string | null;
|
|
190180
190181
|
lastPublishedAt: Date;
|
|
190181
190182
|
hideSupernovaUI: boolean;
|
|
190182
190183
|
userId?: string | undefined;
|
|
190183
190184
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190184
|
-
iterationId?: string | undefined;
|
|
190185
190185
|
userName?: string | undefined;
|
|
190186
190186
|
} | undefined;
|
|
190187
190187
|
}[];
|
|
@@ -190432,22 +190432,22 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190432
190432
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
190433
190433
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
190434
190434
|
lastPublishedAt: z$1.ZodDate;
|
|
190435
|
-
iterationId: z$1.
|
|
190435
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
190436
190436
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
190437
190437
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
190438
190438
|
}, "strip", z$1.ZodTypeAny, {
|
|
190439
190439
|
visibility: "Public" | "WorkspaceMembers";
|
|
190440
|
+
iterationId: string | null;
|
|
190440
190441
|
lastPublishedAt: Date;
|
|
190441
190442
|
hideSupernovaUI: boolean;
|
|
190442
190443
|
userId?: string | undefined;
|
|
190443
|
-
iterationId?: string | undefined;
|
|
190444
190444
|
userName?: string | undefined;
|
|
190445
190445
|
}, {
|
|
190446
|
+
iterationId: string | null;
|
|
190446
190447
|
lastPublishedAt: Date;
|
|
190447
190448
|
hideSupernovaUI: boolean;
|
|
190448
190449
|
userId?: string | undefined;
|
|
190449
190450
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190450
|
-
iterationId?: string | undefined;
|
|
190451
190451
|
userName?: string | undefined;
|
|
190452
190452
|
}>>;
|
|
190453
190453
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -190482,10 +190482,10 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190482
190482
|
lastReplyTimestamp?: Date | undefined;
|
|
190483
190483
|
publishedState?: {
|
|
190484
190484
|
visibility: "Public" | "WorkspaceMembers";
|
|
190485
|
+
iterationId: string | null;
|
|
190485
190486
|
lastPublishedAt: Date;
|
|
190486
190487
|
hideSupernovaUI: boolean;
|
|
190487
190488
|
userId?: string | undefined;
|
|
190488
|
-
iterationId?: string | undefined;
|
|
190489
190489
|
userName?: string | undefined;
|
|
190490
190490
|
} | undefined;
|
|
190491
190491
|
}, {
|
|
@@ -190519,11 +190519,11 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190519
190519
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190520
190520
|
lastReplyTimestamp?: Date | undefined;
|
|
190521
190521
|
publishedState?: {
|
|
190522
|
+
iterationId: string | null;
|
|
190522
190523
|
lastPublishedAt: Date;
|
|
190523
190524
|
hideSupernovaUI: boolean;
|
|
190524
190525
|
userId?: string | undefined;
|
|
190525
190526
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190526
|
-
iterationId?: string | undefined;
|
|
190527
190527
|
userName?: string | undefined;
|
|
190528
190528
|
} | undefined;
|
|
190529
190529
|
}>, "many">>;
|
|
@@ -190639,10 +190639,10 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190639
190639
|
lastReplyTimestamp?: Date | undefined;
|
|
190640
190640
|
publishedState?: {
|
|
190641
190641
|
visibility: "Public" | "WorkspaceMembers";
|
|
190642
|
+
iterationId: string | null;
|
|
190642
190643
|
lastPublishedAt: Date;
|
|
190643
190644
|
hideSupernovaUI: boolean;
|
|
190644
190645
|
userId?: string | undefined;
|
|
190645
|
-
iterationId?: string | undefined;
|
|
190646
190646
|
userName?: string | undefined;
|
|
190647
190647
|
} | undefined;
|
|
190648
190648
|
}[] | undefined;
|
|
@@ -190736,11 +190736,11 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190736
190736
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190737
190737
|
lastReplyTimestamp?: Date | undefined;
|
|
190738
190738
|
publishedState?: {
|
|
190739
|
+
iterationId: string | null;
|
|
190739
190740
|
lastPublishedAt: Date;
|
|
190740
190741
|
hideSupernovaUI: boolean;
|
|
190741
190742
|
userId?: string | undefined;
|
|
190742
190743
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190743
|
-
iterationId?: string | undefined;
|
|
190744
190744
|
userName?: string | undefined;
|
|
190745
190745
|
} | undefined;
|
|
190746
190746
|
}[] | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -158976,22 +158976,22 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
158976
158976
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
158977
158977
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
158978
158978
|
lastPublishedAt: z$1.ZodDate;
|
|
158979
|
-
iterationId: z$1.
|
|
158979
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
158980
158980
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
158981
158981
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
158982
158982
|
}, "strip", z$1.ZodTypeAny, {
|
|
158983
158983
|
visibility: "Public" | "WorkspaceMembers";
|
|
158984
|
+
iterationId: string | null;
|
|
158984
158985
|
lastPublishedAt: Date;
|
|
158985
158986
|
hideSupernovaUI: boolean;
|
|
158986
158987
|
userId?: string | undefined;
|
|
158987
|
-
iterationId?: string | undefined;
|
|
158988
158988
|
userName?: string | undefined;
|
|
158989
158989
|
}, {
|
|
158990
|
+
iterationId: string | null;
|
|
158990
158991
|
lastPublishedAt: Date;
|
|
158991
158992
|
hideSupernovaUI: boolean;
|
|
158992
158993
|
userId?: string | undefined;
|
|
158993
158994
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
158994
|
-
iterationId?: string | undefined;
|
|
158995
158995
|
userName?: string | undefined;
|
|
158996
158996
|
}>>;
|
|
158997
158997
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -159026,10 +159026,10 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
159026
159026
|
lastReplyTimestamp?: Date | undefined;
|
|
159027
159027
|
publishedState?: {
|
|
159028
159028
|
visibility: "Public" | "WorkspaceMembers";
|
|
159029
|
+
iterationId: string | null;
|
|
159029
159030
|
lastPublishedAt: Date;
|
|
159030
159031
|
hideSupernovaUI: boolean;
|
|
159031
159032
|
userId?: string | undefined;
|
|
159032
|
-
iterationId?: string | undefined;
|
|
159033
159033
|
userName?: string | undefined;
|
|
159034
159034
|
} | undefined;
|
|
159035
159035
|
}, {
|
|
@@ -159063,11 +159063,11 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
159063
159063
|
numberOfBookmarkedIterations?: number | undefined;
|
|
159064
159064
|
lastReplyTimestamp?: Date | undefined;
|
|
159065
159065
|
publishedState?: {
|
|
159066
|
+
iterationId: string | null;
|
|
159066
159067
|
lastPublishedAt: Date;
|
|
159067
159068
|
hideSupernovaUI: boolean;
|
|
159068
159069
|
userId?: string | undefined;
|
|
159069
159070
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159070
|
-
iterationId?: string | undefined;
|
|
159071
159071
|
userName?: string | undefined;
|
|
159072
159072
|
} | undefined;
|
|
159073
159073
|
}>;
|
|
@@ -159078,22 +159078,22 @@ declare const FeaturePublishedState: z$1.ZodObject<{
|
|
|
159078
159078
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
159079
159079
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
159080
159080
|
lastPublishedAt: z$1.ZodDate;
|
|
159081
|
-
iterationId: z$1.
|
|
159081
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
159082
159082
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
159083
159083
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
159084
159084
|
}, "strip", z$1.ZodTypeAny, {
|
|
159085
159085
|
visibility: "Public" | "WorkspaceMembers";
|
|
159086
|
+
iterationId: string | null;
|
|
159086
159087
|
lastPublishedAt: Date;
|
|
159087
159088
|
hideSupernovaUI: boolean;
|
|
159088
159089
|
userId?: string | undefined;
|
|
159089
|
-
iterationId?: string | undefined;
|
|
159090
159090
|
userName?: string | undefined;
|
|
159091
159091
|
}, {
|
|
159092
|
+
iterationId: string | null;
|
|
159092
159093
|
lastPublishedAt: Date;
|
|
159093
159094
|
hideSupernovaUI: boolean;
|
|
159094
159095
|
userId?: string | undefined;
|
|
159095
159096
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
159096
|
-
iterationId?: string | undefined;
|
|
159097
159097
|
userName?: string | undefined;
|
|
159098
159098
|
}>;
|
|
159099
159099
|
type FeaturePublishedState = z$1.infer<typeof FeaturePublishedState>;
|
|
@@ -189882,22 +189882,22 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189882
189882
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
189883
189883
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
189884
189884
|
lastPublishedAt: z$1.ZodDate;
|
|
189885
|
-
iterationId: z$1.
|
|
189885
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
189886
189886
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
189887
189887
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
189888
189888
|
}, "strip", z$1.ZodTypeAny, {
|
|
189889
189889
|
visibility: "Public" | "WorkspaceMembers";
|
|
189890
|
+
iterationId: string | null;
|
|
189890
189891
|
lastPublishedAt: Date;
|
|
189891
189892
|
hideSupernovaUI: boolean;
|
|
189892
189893
|
userId?: string | undefined;
|
|
189893
|
-
iterationId?: string | undefined;
|
|
189894
189894
|
userName?: string | undefined;
|
|
189895
189895
|
}, {
|
|
189896
|
+
iterationId: string | null;
|
|
189896
189897
|
lastPublishedAt: Date;
|
|
189897
189898
|
hideSupernovaUI: boolean;
|
|
189898
189899
|
userId?: string | undefined;
|
|
189899
189900
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
189900
|
-
iterationId?: string | undefined;
|
|
189901
189901
|
userName?: string | undefined;
|
|
189902
189902
|
}>>;
|
|
189903
189903
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -189932,10 +189932,10 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189932
189932
|
lastReplyTimestamp?: Date | undefined;
|
|
189933
189933
|
publishedState?: {
|
|
189934
189934
|
visibility: "Public" | "WorkspaceMembers";
|
|
189935
|
+
iterationId: string | null;
|
|
189935
189936
|
lastPublishedAt: Date;
|
|
189936
189937
|
hideSupernovaUI: boolean;
|
|
189937
189938
|
userId?: string | undefined;
|
|
189938
|
-
iterationId?: string | undefined;
|
|
189939
189939
|
userName?: string | undefined;
|
|
189940
189940
|
} | undefined;
|
|
189941
189941
|
}, {
|
|
@@ -189969,11 +189969,11 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
189969
189969
|
numberOfBookmarkedIterations?: number | undefined;
|
|
189970
189970
|
lastReplyTimestamp?: Date | undefined;
|
|
189971
189971
|
publishedState?: {
|
|
189972
|
+
iterationId: string | null;
|
|
189972
189973
|
lastPublishedAt: Date;
|
|
189973
189974
|
hideSupernovaUI: boolean;
|
|
189974
189975
|
userId?: string | undefined;
|
|
189975
189976
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
189976
|
-
iterationId?: string | undefined;
|
|
189977
189977
|
userName?: string | undefined;
|
|
189978
189978
|
} | undefined;
|
|
189979
189979
|
}>, "many">;
|
|
@@ -190085,10 +190085,10 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
190085
190085
|
lastReplyTimestamp?: Date | undefined;
|
|
190086
190086
|
publishedState?: {
|
|
190087
190087
|
visibility: "Public" | "WorkspaceMembers";
|
|
190088
|
+
iterationId: string | null;
|
|
190088
190089
|
lastPublishedAt: Date;
|
|
190089
190090
|
hideSupernovaUI: boolean;
|
|
190090
190091
|
userId?: string | undefined;
|
|
190091
|
-
iterationId?: string | undefined;
|
|
190092
190092
|
userName?: string | undefined;
|
|
190093
190093
|
} | undefined;
|
|
190094
190094
|
}[];
|
|
@@ -190177,11 +190177,11 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
190177
190177
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190178
190178
|
lastReplyTimestamp?: Date | undefined;
|
|
190179
190179
|
publishedState?: {
|
|
190180
|
+
iterationId: string | null;
|
|
190180
190181
|
lastPublishedAt: Date;
|
|
190181
190182
|
hideSupernovaUI: boolean;
|
|
190182
190183
|
userId?: string | undefined;
|
|
190183
190184
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190184
|
-
iterationId?: string | undefined;
|
|
190185
190185
|
userName?: string | undefined;
|
|
190186
190186
|
} | undefined;
|
|
190187
190187
|
}[];
|
|
@@ -190432,22 +190432,22 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190432
190432
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
190433
190433
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
190434
190434
|
lastPublishedAt: z$1.ZodDate;
|
|
190435
|
-
iterationId: z$1.
|
|
190435
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
190436
190436
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
190437
190437
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
190438
190438
|
}, "strip", z$1.ZodTypeAny, {
|
|
190439
190439
|
visibility: "Public" | "WorkspaceMembers";
|
|
190440
|
+
iterationId: string | null;
|
|
190440
190441
|
lastPublishedAt: Date;
|
|
190441
190442
|
hideSupernovaUI: boolean;
|
|
190442
190443
|
userId?: string | undefined;
|
|
190443
|
-
iterationId?: string | undefined;
|
|
190444
190444
|
userName?: string | undefined;
|
|
190445
190445
|
}, {
|
|
190446
|
+
iterationId: string | null;
|
|
190446
190447
|
lastPublishedAt: Date;
|
|
190447
190448
|
hideSupernovaUI: boolean;
|
|
190448
190449
|
userId?: string | undefined;
|
|
190449
190450
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190450
|
-
iterationId?: string | undefined;
|
|
190451
190451
|
userName?: string | undefined;
|
|
190452
190452
|
}>>;
|
|
190453
190453
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -190482,10 +190482,10 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190482
190482
|
lastReplyTimestamp?: Date | undefined;
|
|
190483
190483
|
publishedState?: {
|
|
190484
190484
|
visibility: "Public" | "WorkspaceMembers";
|
|
190485
|
+
iterationId: string | null;
|
|
190485
190486
|
lastPublishedAt: Date;
|
|
190486
190487
|
hideSupernovaUI: boolean;
|
|
190487
190488
|
userId?: string | undefined;
|
|
190488
|
-
iterationId?: string | undefined;
|
|
190489
190489
|
userName?: string | undefined;
|
|
190490
190490
|
} | undefined;
|
|
190491
190491
|
}, {
|
|
@@ -190519,11 +190519,11 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190519
190519
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190520
190520
|
lastReplyTimestamp?: Date | undefined;
|
|
190521
190521
|
publishedState?: {
|
|
190522
|
+
iterationId: string | null;
|
|
190522
190523
|
lastPublishedAt: Date;
|
|
190523
190524
|
hideSupernovaUI: boolean;
|
|
190524
190525
|
userId?: string | undefined;
|
|
190525
190526
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190526
|
-
iterationId?: string | undefined;
|
|
190527
190527
|
userName?: string | undefined;
|
|
190528
190528
|
} | undefined;
|
|
190529
190529
|
}>, "many">>;
|
|
@@ -190639,10 +190639,10 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190639
190639
|
lastReplyTimestamp?: Date | undefined;
|
|
190640
190640
|
publishedState?: {
|
|
190641
190641
|
visibility: "Public" | "WorkspaceMembers";
|
|
190642
|
+
iterationId: string | null;
|
|
190642
190643
|
lastPublishedAt: Date;
|
|
190643
190644
|
hideSupernovaUI: boolean;
|
|
190644
190645
|
userId?: string | undefined;
|
|
190645
|
-
iterationId?: string | undefined;
|
|
190646
190646
|
userName?: string | undefined;
|
|
190647
190647
|
} | undefined;
|
|
190648
190648
|
}[] | undefined;
|
|
@@ -190736,11 +190736,11 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
190736
190736
|
numberOfBookmarkedIterations?: number | undefined;
|
|
190737
190737
|
lastReplyTimestamp?: Date | undefined;
|
|
190738
190738
|
publishedState?: {
|
|
190739
|
+
iterationId: string | null;
|
|
190739
190740
|
lastPublishedAt: Date;
|
|
190740
190741
|
hideSupernovaUI: boolean;
|
|
190741
190742
|
userId?: string | undefined;
|
|
190742
190743
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
190743
|
-
iterationId?: string | undefined;
|
|
190744
190744
|
userName?: string | undefined;
|
|
190745
190745
|
} | undefined;
|
|
190746
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
|
});
|