@supernova-studio/client 1.57.1 → 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 +351 -47
- package/dist/index.d.ts +351 -47
- package/dist/index.js +19 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -140674,22 +140674,22 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
|
|
|
140674
140674
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
140675
140675
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
140676
140676
|
lastPublishedAt: z$1.ZodDate;
|
|
140677
|
-
iterationId: z$1.
|
|
140677
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
140678
140678
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
140679
140679
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
140680
140680
|
}, "strip", z$1.ZodTypeAny, {
|
|
140681
140681
|
visibility: "Public" | "WorkspaceMembers";
|
|
140682
|
+
iterationId: string | null;
|
|
140682
140683
|
lastPublishedAt: Date;
|
|
140683
140684
|
hideSupernovaUI: boolean;
|
|
140684
140685
|
userId?: string | undefined;
|
|
140685
|
-
iterationId?: string | undefined;
|
|
140686
140686
|
userName?: string | undefined;
|
|
140687
140687
|
}, {
|
|
140688
|
+
iterationId: string | null;
|
|
140688
140689
|
lastPublishedAt: Date;
|
|
140689
140690
|
hideSupernovaUI: boolean;
|
|
140690
140691
|
userId?: string | undefined;
|
|
140691
140692
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
140692
|
-
iterationId?: string | undefined;
|
|
140693
140693
|
userName?: string | undefined;
|
|
140694
140694
|
}>>>;
|
|
140695
140695
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -140700,10 +140700,10 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
|
|
|
140700
140700
|
isArchived?: boolean | undefined;
|
|
140701
140701
|
publishedState?: {
|
|
140702
140702
|
visibility: "Public" | "WorkspaceMembers";
|
|
140703
|
+
iterationId: string | null;
|
|
140703
140704
|
lastPublishedAt: Date;
|
|
140704
140705
|
hideSupernovaUI: boolean;
|
|
140705
140706
|
userId?: string | undefined;
|
|
140706
|
-
iterationId?: string | undefined;
|
|
140707
140707
|
userName?: string | undefined;
|
|
140708
140708
|
} | null | undefined;
|
|
140709
140709
|
}, {
|
|
@@ -140713,11 +140713,11 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
|
|
|
140713
140713
|
description?: string | undefined;
|
|
140714
140714
|
isArchived?: boolean | undefined;
|
|
140715
140715
|
publishedState?: {
|
|
140716
|
+
iterationId: string | null;
|
|
140716
140717
|
lastPublishedAt: Date;
|
|
140717
140718
|
hideSupernovaUI: boolean;
|
|
140718
140719
|
userId?: string | undefined;
|
|
140719
140720
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
140720
|
-
iterationId?: string | undefined;
|
|
140721
140721
|
userName?: string | undefined;
|
|
140722
140722
|
} | null | undefined;
|
|
140723
140723
|
}>;
|
|
@@ -140731,10 +140731,10 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
|
|
|
140731
140731
|
isArchived?: boolean | undefined;
|
|
140732
140732
|
publishedState?: {
|
|
140733
140733
|
visibility: "Public" | "WorkspaceMembers";
|
|
140734
|
+
iterationId: string | null;
|
|
140734
140735
|
lastPublishedAt: Date;
|
|
140735
140736
|
hideSupernovaUI: boolean;
|
|
140736
140737
|
userId?: string | undefined;
|
|
140737
|
-
iterationId?: string | undefined;
|
|
140738
140738
|
userName?: string | undefined;
|
|
140739
140739
|
} | null | undefined;
|
|
140740
140740
|
};
|
|
@@ -140747,11 +140747,11 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
|
|
|
140747
140747
|
description?: string | undefined;
|
|
140748
140748
|
isArchived?: boolean | undefined;
|
|
140749
140749
|
publishedState?: {
|
|
140750
|
+
iterationId: string | null;
|
|
140750
140751
|
lastPublishedAt: Date;
|
|
140751
140752
|
hideSupernovaUI: boolean;
|
|
140752
140753
|
userId?: string | undefined;
|
|
140753
140754
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
140754
|
-
iterationId?: string | undefined;
|
|
140755
140755
|
userName?: string | undefined;
|
|
140756
140756
|
} | null | undefined;
|
|
140757
140757
|
};
|
|
@@ -141529,22 +141529,22 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
141529
141529
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
141530
141530
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
141531
141531
|
lastPublishedAt: z$1.ZodDate;
|
|
141532
|
-
iterationId: z$1.
|
|
141532
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
141533
141533
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
141534
141534
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
141535
141535
|
}, "strip", z$1.ZodTypeAny, {
|
|
141536
141536
|
visibility: "Public" | "WorkspaceMembers";
|
|
141537
|
+
iterationId: string | null;
|
|
141537
141538
|
lastPublishedAt: Date;
|
|
141538
141539
|
hideSupernovaUI: boolean;
|
|
141539
141540
|
userId?: string | undefined;
|
|
141540
|
-
iterationId?: string | undefined;
|
|
141541
141541
|
userName?: string | undefined;
|
|
141542
141542
|
}, {
|
|
141543
|
+
iterationId: string | null;
|
|
141543
141544
|
lastPublishedAt: Date;
|
|
141544
141545
|
hideSupernovaUI: boolean;
|
|
141545
141546
|
userId?: string | undefined;
|
|
141546
141547
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
141547
|
-
iterationId?: string | undefined;
|
|
141548
141548
|
userName?: string | undefined;
|
|
141549
141549
|
}>>>;
|
|
141550
141550
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -141555,10 +141555,10 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
141555
141555
|
isArchived?: boolean | undefined;
|
|
141556
141556
|
publishedState?: {
|
|
141557
141557
|
visibility: "Public" | "WorkspaceMembers";
|
|
141558
|
+
iterationId: string | null;
|
|
141558
141559
|
lastPublishedAt: Date;
|
|
141559
141560
|
hideSupernovaUI: boolean;
|
|
141560
141561
|
userId?: string | undefined;
|
|
141561
|
-
iterationId?: string | undefined;
|
|
141562
141562
|
userName?: string | undefined;
|
|
141563
141563
|
} | null | undefined;
|
|
141564
141564
|
}, {
|
|
@@ -141568,11 +141568,11 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
141568
141568
|
description?: string | undefined;
|
|
141569
141569
|
isArchived?: boolean | undefined;
|
|
141570
141570
|
publishedState?: {
|
|
141571
|
+
iterationId: string | null;
|
|
141571
141572
|
lastPublishedAt: Date;
|
|
141572
141573
|
hideSupernovaUI: boolean;
|
|
141573
141574
|
userId?: string | undefined;
|
|
141574
141575
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
141575
|
-
iterationId?: string | undefined;
|
|
141576
141576
|
userName?: string | undefined;
|
|
141577
141577
|
} | null | undefined;
|
|
141578
141578
|
}>;
|
|
@@ -141586,10 +141586,10 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
141586
141586
|
isArchived?: boolean | undefined;
|
|
141587
141587
|
publishedState?: {
|
|
141588
141588
|
visibility: "Public" | "WorkspaceMembers";
|
|
141589
|
+
iterationId: string | null;
|
|
141589
141590
|
lastPublishedAt: Date;
|
|
141590
141591
|
hideSupernovaUI: boolean;
|
|
141591
141592
|
userId?: string | undefined;
|
|
141592
|
-
iterationId?: string | undefined;
|
|
141593
141593
|
userName?: string | undefined;
|
|
141594
141594
|
} | null | undefined;
|
|
141595
141595
|
};
|
|
@@ -141602,11 +141602,11 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
141602
141602
|
description?: string | undefined;
|
|
141603
141603
|
isArchived?: boolean | undefined;
|
|
141604
141604
|
publishedState?: {
|
|
141605
|
+
iterationId: string | null;
|
|
141605
141606
|
lastPublishedAt: Date;
|
|
141606
141607
|
hideSupernovaUI: boolean;
|
|
141607
141608
|
userId?: string | undefined;
|
|
141608
141609
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
141609
|
-
iterationId?: string | undefined;
|
|
141610
141610
|
userName?: string | undefined;
|
|
141611
141611
|
} | null | undefined;
|
|
141612
141612
|
};
|
|
@@ -248632,22 +248632,22 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248632
248632
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
248633
248633
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
248634
248634
|
lastPublishedAt: z$1.ZodDate;
|
|
248635
|
-
iterationId: z$1.
|
|
248635
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
248636
248636
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
248637
248637
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
248638
248638
|
}, "strip", z$1.ZodTypeAny, {
|
|
248639
248639
|
visibility: "Public" | "WorkspaceMembers";
|
|
248640
|
+
iterationId: string | null;
|
|
248640
248641
|
lastPublishedAt: Date;
|
|
248641
248642
|
hideSupernovaUI: boolean;
|
|
248642
248643
|
userId?: string | undefined;
|
|
248643
|
-
iterationId?: string | undefined;
|
|
248644
248644
|
userName?: string | undefined;
|
|
248645
248645
|
}, {
|
|
248646
|
+
iterationId: string | null;
|
|
248646
248647
|
lastPublishedAt: Date;
|
|
248647
248648
|
hideSupernovaUI: boolean;
|
|
248648
248649
|
userId?: string | undefined;
|
|
248649
248650
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248650
|
-
iterationId?: string | undefined;
|
|
248651
248651
|
userName?: string | undefined;
|
|
248652
248652
|
}>>;
|
|
248653
248653
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -248682,10 +248682,10 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248682
248682
|
lastReplyTimestamp?: Date | undefined;
|
|
248683
248683
|
publishedState?: {
|
|
248684
248684
|
visibility: "Public" | "WorkspaceMembers";
|
|
248685
|
+
iterationId: string | null;
|
|
248685
248686
|
lastPublishedAt: Date;
|
|
248686
248687
|
hideSupernovaUI: boolean;
|
|
248687
248688
|
userId?: string | undefined;
|
|
248688
|
-
iterationId?: string | undefined;
|
|
248689
248689
|
userName?: string | undefined;
|
|
248690
248690
|
} | undefined;
|
|
248691
248691
|
}, {
|
|
@@ -248719,11 +248719,11 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248719
248719
|
numberOfBookmarkedIterations?: number | undefined;
|
|
248720
248720
|
lastReplyTimestamp?: Date | undefined;
|
|
248721
248721
|
publishedState?: {
|
|
248722
|
+
iterationId: string | null;
|
|
248722
248723
|
lastPublishedAt: Date;
|
|
248723
248724
|
hideSupernovaUI: boolean;
|
|
248724
248725
|
userId?: string | undefined;
|
|
248725
248726
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248726
|
-
iterationId?: string | undefined;
|
|
248727
248727
|
userName?: string | undefined;
|
|
248728
248728
|
} | undefined;
|
|
248729
248729
|
}>;
|
|
@@ -248803,22 +248803,22 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248803
248803
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
248804
248804
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
248805
248805
|
lastPublishedAt: z$1.ZodDate;
|
|
248806
|
-
iterationId: z$1.
|
|
248806
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
248807
248807
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
248808
248808
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
248809
248809
|
}, "strip", z$1.ZodTypeAny, {
|
|
248810
248810
|
visibility: "Public" | "WorkspaceMembers";
|
|
248811
|
+
iterationId: string | null;
|
|
248811
248812
|
lastPublishedAt: Date;
|
|
248812
248813
|
hideSupernovaUI: boolean;
|
|
248813
248814
|
userId?: string | undefined;
|
|
248814
|
-
iterationId?: string | undefined;
|
|
248815
248815
|
userName?: string | undefined;
|
|
248816
248816
|
}, {
|
|
248817
|
+
iterationId: string | null;
|
|
248817
248818
|
lastPublishedAt: Date;
|
|
248818
248819
|
hideSupernovaUI: boolean;
|
|
248819
248820
|
userId?: string | undefined;
|
|
248820
248821
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248821
|
-
iterationId?: string | undefined;
|
|
248822
248822
|
userName?: string | undefined;
|
|
248823
248823
|
}>>;
|
|
248824
248824
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -248853,10 +248853,10 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248853
248853
|
lastReplyTimestamp?: Date | undefined;
|
|
248854
248854
|
publishedState?: {
|
|
248855
248855
|
visibility: "Public" | "WorkspaceMembers";
|
|
248856
|
+
iterationId: string | null;
|
|
248856
248857
|
lastPublishedAt: Date;
|
|
248857
248858
|
hideSupernovaUI: boolean;
|
|
248858
248859
|
userId?: string | undefined;
|
|
248859
|
-
iterationId?: string | undefined;
|
|
248860
248860
|
userName?: string | undefined;
|
|
248861
248861
|
} | undefined;
|
|
248862
248862
|
}, {
|
|
@@ -248890,11 +248890,11 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248890
248890
|
numberOfBookmarkedIterations?: number | undefined;
|
|
248891
248891
|
lastReplyTimestamp?: Date | undefined;
|
|
248892
248892
|
publishedState?: {
|
|
248893
|
+
iterationId: string | null;
|
|
248893
248894
|
lastPublishedAt: Date;
|
|
248894
248895
|
hideSupernovaUI: boolean;
|
|
248895
248896
|
userId?: string | undefined;
|
|
248896
248897
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248897
|
-
iterationId?: string | undefined;
|
|
248898
248898
|
userName?: string | undefined;
|
|
248899
248899
|
} | undefined;
|
|
248900
248900
|
}>, "many">;
|
|
@@ -248931,10 +248931,10 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248931
248931
|
lastReplyTimestamp?: Date | undefined;
|
|
248932
248932
|
publishedState?: {
|
|
248933
248933
|
visibility: "Public" | "WorkspaceMembers";
|
|
248934
|
+
iterationId: string | null;
|
|
248934
248935
|
lastPublishedAt: Date;
|
|
248935
248936
|
hideSupernovaUI: boolean;
|
|
248936
248937
|
userId?: string | undefined;
|
|
248937
|
-
iterationId?: string | undefined;
|
|
248938
248938
|
userName?: string | undefined;
|
|
248939
248939
|
} | undefined;
|
|
248940
248940
|
}[];
|
|
@@ -248970,11 +248970,11 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248970
248970
|
numberOfBookmarkedIterations?: number | undefined;
|
|
248971
248971
|
lastReplyTimestamp?: Date | undefined;
|
|
248972
248972
|
publishedState?: {
|
|
248973
|
+
iterationId: string | null;
|
|
248973
248974
|
lastPublishedAt: Date;
|
|
248974
248975
|
hideSupernovaUI: boolean;
|
|
248975
248976
|
userId?: string | undefined;
|
|
248976
248977
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248977
|
-
iterationId?: string | undefined;
|
|
248978
248978
|
userName?: string | undefined;
|
|
248979
248979
|
} | undefined;
|
|
248980
248980
|
}[];
|
|
@@ -249195,22 +249195,22 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
|
|
|
249195
249195
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249196
249196
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249197
249197
|
lastPublishedAt: z$1.ZodDate;
|
|
249198
|
-
iterationId: z$1.
|
|
249198
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249199
249199
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249200
249200
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
249201
249201
|
}, "strip", z$1.ZodTypeAny, {
|
|
249202
249202
|
visibility: "Public" | "WorkspaceMembers";
|
|
249203
|
+
iterationId: string | null;
|
|
249203
249204
|
lastPublishedAt: Date;
|
|
249204
249205
|
hideSupernovaUI: boolean;
|
|
249205
249206
|
userId?: string | undefined;
|
|
249206
|
-
iterationId?: string | undefined;
|
|
249207
249207
|
userName?: string | undefined;
|
|
249208
249208
|
}, {
|
|
249209
|
+
iterationId: string | null;
|
|
249209
249210
|
lastPublishedAt: Date;
|
|
249210
249211
|
hideSupernovaUI: boolean;
|
|
249211
249212
|
userId?: string | undefined;
|
|
249212
249213
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249213
|
-
iterationId?: string | undefined;
|
|
249214
249214
|
userName?: string | undefined;
|
|
249215
249215
|
}>>>;
|
|
249216
249216
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -249221,10 +249221,10 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
|
|
|
249221
249221
|
isArchived?: boolean | undefined;
|
|
249222
249222
|
publishedState?: {
|
|
249223
249223
|
visibility: "Public" | "WorkspaceMembers";
|
|
249224
|
+
iterationId: string | null;
|
|
249224
249225
|
lastPublishedAt: Date;
|
|
249225
249226
|
hideSupernovaUI: boolean;
|
|
249226
249227
|
userId?: string | undefined;
|
|
249227
|
-
iterationId?: string | undefined;
|
|
249228
249228
|
userName?: string | undefined;
|
|
249229
249229
|
} | null | undefined;
|
|
249230
249230
|
}, {
|
|
@@ -249234,11 +249234,11 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
|
|
|
249234
249234
|
description?: string | undefined;
|
|
249235
249235
|
isArchived?: boolean | undefined;
|
|
249236
249236
|
publishedState?: {
|
|
249237
|
+
iterationId: string | null;
|
|
249237
249238
|
lastPublishedAt: Date;
|
|
249238
249239
|
hideSupernovaUI: boolean;
|
|
249239
249240
|
userId?: string | undefined;
|
|
249240
249241
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249241
|
-
iterationId?: string | undefined;
|
|
249242
249242
|
userName?: string | undefined;
|
|
249243
249243
|
} | null | undefined;
|
|
249244
249244
|
}>;
|
|
@@ -249348,22 +249348,22 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249348
249348
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249349
249349
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249350
249350
|
lastPublishedAt: z$1.ZodDate;
|
|
249351
|
-
iterationId: z$1.
|
|
249351
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249352
249352
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249353
249353
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
249354
249354
|
}, "strip", z$1.ZodTypeAny, {
|
|
249355
249355
|
visibility: "Public" | "WorkspaceMembers";
|
|
249356
|
+
iterationId: string | null;
|
|
249356
249357
|
lastPublishedAt: Date;
|
|
249357
249358
|
hideSupernovaUI: boolean;
|
|
249358
249359
|
userId?: string | undefined;
|
|
249359
|
-
iterationId?: string | undefined;
|
|
249360
249360
|
userName?: string | undefined;
|
|
249361
249361
|
}, {
|
|
249362
|
+
iterationId: string | null;
|
|
249362
249363
|
lastPublishedAt: Date;
|
|
249363
249364
|
hideSupernovaUI: boolean;
|
|
249364
249365
|
userId?: string | undefined;
|
|
249365
249366
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249366
|
-
iterationId?: string | undefined;
|
|
249367
249367
|
userName?: string | undefined;
|
|
249368
249368
|
}>>;
|
|
249369
249369
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -249398,10 +249398,10 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249398
249398
|
lastReplyTimestamp?: Date | undefined;
|
|
249399
249399
|
publishedState?: {
|
|
249400
249400
|
visibility: "Public" | "WorkspaceMembers";
|
|
249401
|
+
iterationId: string | null;
|
|
249401
249402
|
lastPublishedAt: Date;
|
|
249402
249403
|
hideSupernovaUI: boolean;
|
|
249403
249404
|
userId?: string | undefined;
|
|
249404
|
-
iterationId?: string | undefined;
|
|
249405
249405
|
userName?: string | undefined;
|
|
249406
249406
|
} | undefined;
|
|
249407
249407
|
}, {
|
|
@@ -249435,11 +249435,11 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249435
249435
|
numberOfBookmarkedIterations?: number | undefined;
|
|
249436
249436
|
lastReplyTimestamp?: Date | undefined;
|
|
249437
249437
|
publishedState?: {
|
|
249438
|
+
iterationId: string | null;
|
|
249438
249439
|
lastPublishedAt: Date;
|
|
249439
249440
|
hideSupernovaUI: boolean;
|
|
249440
249441
|
userId?: string | undefined;
|
|
249441
249442
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249442
|
-
iterationId?: string | undefined;
|
|
249443
249443
|
userName?: string | undefined;
|
|
249444
249444
|
} | undefined;
|
|
249445
249445
|
}>;
|
|
@@ -249476,10 +249476,10 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249476
249476
|
lastReplyTimestamp?: Date | undefined;
|
|
249477
249477
|
publishedState?: {
|
|
249478
249478
|
visibility: "Public" | "WorkspaceMembers";
|
|
249479
|
+
iterationId: string | null;
|
|
249479
249480
|
lastPublishedAt: Date;
|
|
249480
249481
|
hideSupernovaUI: boolean;
|
|
249481
249482
|
userId?: string | undefined;
|
|
249482
|
-
iterationId?: string | undefined;
|
|
249483
249483
|
userName?: string | undefined;
|
|
249484
249484
|
} | undefined;
|
|
249485
249485
|
};
|
|
@@ -249515,11 +249515,11 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249515
249515
|
numberOfBookmarkedIterations?: number | undefined;
|
|
249516
249516
|
lastReplyTimestamp?: Date | undefined;
|
|
249517
249517
|
publishedState?: {
|
|
249518
|
+
iterationId: string | null;
|
|
249518
249519
|
lastPublishedAt: Date;
|
|
249519
249520
|
hideSupernovaUI: boolean;
|
|
249520
249521
|
userId?: string | undefined;
|
|
249521
249522
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249522
|
-
iterationId?: string | undefined;
|
|
249523
249523
|
userName?: string | undefined;
|
|
249524
249524
|
} | undefined;
|
|
249525
249525
|
};
|
|
@@ -249595,22 +249595,22 @@ declare const DTOForgeProjectFeaturePublishedState: z$1.ZodObject<{
|
|
|
249595
249595
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249596
249596
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249597
249597
|
lastPublishedAt: z$1.ZodDate;
|
|
249598
|
-
iterationId: z$1.
|
|
249598
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249599
249599
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249600
249600
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
249601
249601
|
}, "strip", z$1.ZodTypeAny, {
|
|
249602
249602
|
visibility: "Public" | "WorkspaceMembers";
|
|
249603
|
+
iterationId: string | null;
|
|
249603
249604
|
lastPublishedAt: Date;
|
|
249604
249605
|
hideSupernovaUI: boolean;
|
|
249605
249606
|
userId?: string | undefined;
|
|
249606
|
-
iterationId?: string | undefined;
|
|
249607
249607
|
userName?: string | undefined;
|
|
249608
249608
|
}, {
|
|
249609
|
+
iterationId: string | null;
|
|
249609
249610
|
lastPublishedAt: Date;
|
|
249610
249611
|
hideSupernovaUI: boolean;
|
|
249611
249612
|
userId?: string | undefined;
|
|
249612
249613
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249613
|
-
iterationId?: string | undefined;
|
|
249614
249614
|
userName?: string | undefined;
|
|
249615
249615
|
}>;
|
|
249616
249616
|
type DTOForgeProjectFeaturePublishedState = z$1.infer<typeof DTOForgeProjectFeaturePublishedState>;
|
|
@@ -337655,6 +337655,74 @@ declare const DTOTrailEvent: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
337655
337655
|
payload: {
|
|
337656
337656
|
contextId: number;
|
|
337657
337657
|
};
|
|
337658
|
+
}>, z.ZodObject<{
|
|
337659
|
+
type: z.ZodLiteral<"FeaturePublished">;
|
|
337660
|
+
payload: z.ZodObject<{
|
|
337661
|
+
featureId: z.ZodString;
|
|
337662
|
+
featureName: z.ZodString;
|
|
337663
|
+
iterationId: z.ZodString;
|
|
337664
|
+
iterationName: z.ZodString;
|
|
337665
|
+
}, "strip", z.ZodTypeAny, {
|
|
337666
|
+
iterationId: string;
|
|
337667
|
+
featureId: string;
|
|
337668
|
+
featureName: string;
|
|
337669
|
+
iterationName: string;
|
|
337670
|
+
}, {
|
|
337671
|
+
iterationId: string;
|
|
337672
|
+
featureId: string;
|
|
337673
|
+
featureName: string;
|
|
337674
|
+
iterationName: string;
|
|
337675
|
+
}>;
|
|
337676
|
+
}, "strip", z.ZodTypeAny, {
|
|
337677
|
+
type: "FeaturePublished";
|
|
337678
|
+
payload: {
|
|
337679
|
+
iterationId: string;
|
|
337680
|
+
featureId: string;
|
|
337681
|
+
featureName: string;
|
|
337682
|
+
iterationName: string;
|
|
337683
|
+
};
|
|
337684
|
+
}, {
|
|
337685
|
+
type: "FeaturePublished";
|
|
337686
|
+
payload: {
|
|
337687
|
+
iterationId: string;
|
|
337688
|
+
featureId: string;
|
|
337689
|
+
featureName: string;
|
|
337690
|
+
iterationName: string;
|
|
337691
|
+
};
|
|
337692
|
+
}>, z.ZodObject<{
|
|
337693
|
+
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
337694
|
+
payload: z.ZodObject<{
|
|
337695
|
+
featureId: z.ZodString;
|
|
337696
|
+
featureName: z.ZodString;
|
|
337697
|
+
iterationId: z.ZodString;
|
|
337698
|
+
iterationName: z.ZodString;
|
|
337699
|
+
}, "strip", z.ZodTypeAny, {
|
|
337700
|
+
iterationId: string;
|
|
337701
|
+
featureId: string;
|
|
337702
|
+
featureName: string;
|
|
337703
|
+
iterationName: string;
|
|
337704
|
+
}, {
|
|
337705
|
+
iterationId: string;
|
|
337706
|
+
featureId: string;
|
|
337707
|
+
featureName: string;
|
|
337708
|
+
iterationName: string;
|
|
337709
|
+
}>;
|
|
337710
|
+
}, "strip", z.ZodTypeAny, {
|
|
337711
|
+
type: "FeatureUnpublished";
|
|
337712
|
+
payload: {
|
|
337713
|
+
iterationId: string;
|
|
337714
|
+
featureId: string;
|
|
337715
|
+
featureName: string;
|
|
337716
|
+
iterationName: string;
|
|
337717
|
+
};
|
|
337718
|
+
}, {
|
|
337719
|
+
type: "FeatureUnpublished";
|
|
337720
|
+
payload: {
|
|
337721
|
+
iterationId: string;
|
|
337722
|
+
featureId: string;
|
|
337723
|
+
featureName: string;
|
|
337724
|
+
iterationName: string;
|
|
337725
|
+
};
|
|
337658
337726
|
}>]>, z.ZodObject<{
|
|
337659
337727
|
id: z.ZodString;
|
|
337660
337728
|
projectId: z.ZodString;
|
|
@@ -338041,6 +338109,74 @@ declare const DTOTrailEventWithDetails: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
338041
338109
|
payload: {
|
|
338042
338110
|
contextId: number;
|
|
338043
338111
|
};
|
|
338112
|
+
}>, z.ZodObject<{
|
|
338113
|
+
type: z.ZodLiteral<"FeaturePublished">;
|
|
338114
|
+
payload: z.ZodObject<{
|
|
338115
|
+
featureId: z.ZodString;
|
|
338116
|
+
featureName: z.ZodString;
|
|
338117
|
+
iterationId: z.ZodString;
|
|
338118
|
+
iterationName: z.ZodString;
|
|
338119
|
+
}, "strip", z.ZodTypeAny, {
|
|
338120
|
+
iterationId: string;
|
|
338121
|
+
featureId: string;
|
|
338122
|
+
featureName: string;
|
|
338123
|
+
iterationName: string;
|
|
338124
|
+
}, {
|
|
338125
|
+
iterationId: string;
|
|
338126
|
+
featureId: string;
|
|
338127
|
+
featureName: string;
|
|
338128
|
+
iterationName: string;
|
|
338129
|
+
}>;
|
|
338130
|
+
}, "strip", z.ZodTypeAny, {
|
|
338131
|
+
type: "FeaturePublished";
|
|
338132
|
+
payload: {
|
|
338133
|
+
iterationId: string;
|
|
338134
|
+
featureId: string;
|
|
338135
|
+
featureName: string;
|
|
338136
|
+
iterationName: string;
|
|
338137
|
+
};
|
|
338138
|
+
}, {
|
|
338139
|
+
type: "FeaturePublished";
|
|
338140
|
+
payload: {
|
|
338141
|
+
iterationId: string;
|
|
338142
|
+
featureId: string;
|
|
338143
|
+
featureName: string;
|
|
338144
|
+
iterationName: string;
|
|
338145
|
+
};
|
|
338146
|
+
}>, z.ZodObject<{
|
|
338147
|
+
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
338148
|
+
payload: z.ZodObject<{
|
|
338149
|
+
featureId: z.ZodString;
|
|
338150
|
+
featureName: z.ZodString;
|
|
338151
|
+
iterationId: z.ZodString;
|
|
338152
|
+
iterationName: z.ZodString;
|
|
338153
|
+
}, "strip", z.ZodTypeAny, {
|
|
338154
|
+
iterationId: string;
|
|
338155
|
+
featureId: string;
|
|
338156
|
+
featureName: string;
|
|
338157
|
+
iterationName: string;
|
|
338158
|
+
}, {
|
|
338159
|
+
iterationId: string;
|
|
338160
|
+
featureId: string;
|
|
338161
|
+
featureName: string;
|
|
338162
|
+
iterationName: string;
|
|
338163
|
+
}>;
|
|
338164
|
+
}, "strip", z.ZodTypeAny, {
|
|
338165
|
+
type: "FeatureUnpublished";
|
|
338166
|
+
payload: {
|
|
338167
|
+
iterationId: string;
|
|
338168
|
+
featureId: string;
|
|
338169
|
+
featureName: string;
|
|
338170
|
+
iterationName: string;
|
|
338171
|
+
};
|
|
338172
|
+
}, {
|
|
338173
|
+
type: "FeatureUnpublished";
|
|
338174
|
+
payload: {
|
|
338175
|
+
iterationId: string;
|
|
338176
|
+
featureId: string;
|
|
338177
|
+
featureName: string;
|
|
338178
|
+
iterationName: string;
|
|
338179
|
+
};
|
|
338044
338180
|
}>]>, z.ZodObject<{
|
|
338045
338181
|
id: z.ZodString;
|
|
338046
338182
|
projectId: z.ZodString;
|
|
@@ -338445,6 +338581,74 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338445
338581
|
payload: {
|
|
338446
338582
|
contextId: number;
|
|
338447
338583
|
};
|
|
338584
|
+
}>, z.ZodObject<{
|
|
338585
|
+
type: z.ZodLiteral<"FeaturePublished">;
|
|
338586
|
+
payload: z.ZodObject<{
|
|
338587
|
+
featureId: z.ZodString;
|
|
338588
|
+
featureName: z.ZodString;
|
|
338589
|
+
iterationId: z.ZodString;
|
|
338590
|
+
iterationName: z.ZodString;
|
|
338591
|
+
}, "strip", z.ZodTypeAny, {
|
|
338592
|
+
iterationId: string;
|
|
338593
|
+
featureId: string;
|
|
338594
|
+
featureName: string;
|
|
338595
|
+
iterationName: string;
|
|
338596
|
+
}, {
|
|
338597
|
+
iterationId: string;
|
|
338598
|
+
featureId: string;
|
|
338599
|
+
featureName: string;
|
|
338600
|
+
iterationName: string;
|
|
338601
|
+
}>;
|
|
338602
|
+
}, "strip", z.ZodTypeAny, {
|
|
338603
|
+
type: "FeaturePublished";
|
|
338604
|
+
payload: {
|
|
338605
|
+
iterationId: string;
|
|
338606
|
+
featureId: string;
|
|
338607
|
+
featureName: string;
|
|
338608
|
+
iterationName: string;
|
|
338609
|
+
};
|
|
338610
|
+
}, {
|
|
338611
|
+
type: "FeaturePublished";
|
|
338612
|
+
payload: {
|
|
338613
|
+
iterationId: string;
|
|
338614
|
+
featureId: string;
|
|
338615
|
+
featureName: string;
|
|
338616
|
+
iterationName: string;
|
|
338617
|
+
};
|
|
338618
|
+
}>, z.ZodObject<{
|
|
338619
|
+
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
338620
|
+
payload: z.ZodObject<{
|
|
338621
|
+
featureId: z.ZodString;
|
|
338622
|
+
featureName: z.ZodString;
|
|
338623
|
+
iterationId: z.ZodString;
|
|
338624
|
+
iterationName: z.ZodString;
|
|
338625
|
+
}, "strip", z.ZodTypeAny, {
|
|
338626
|
+
iterationId: string;
|
|
338627
|
+
featureId: string;
|
|
338628
|
+
featureName: string;
|
|
338629
|
+
iterationName: string;
|
|
338630
|
+
}, {
|
|
338631
|
+
iterationId: string;
|
|
338632
|
+
featureId: string;
|
|
338633
|
+
featureName: string;
|
|
338634
|
+
iterationName: string;
|
|
338635
|
+
}>;
|
|
338636
|
+
}, "strip", z.ZodTypeAny, {
|
|
338637
|
+
type: "FeatureUnpublished";
|
|
338638
|
+
payload: {
|
|
338639
|
+
iterationId: string;
|
|
338640
|
+
featureId: string;
|
|
338641
|
+
featureName: string;
|
|
338642
|
+
iterationName: string;
|
|
338643
|
+
};
|
|
338644
|
+
}, {
|
|
338645
|
+
type: "FeatureUnpublished";
|
|
338646
|
+
payload: {
|
|
338647
|
+
iterationId: string;
|
|
338648
|
+
featureId: string;
|
|
338649
|
+
featureName: string;
|
|
338650
|
+
iterationName: string;
|
|
338651
|
+
};
|
|
338448
338652
|
}>]>, z.ZodObject<{
|
|
338449
338653
|
id: z.ZodString;
|
|
338450
338654
|
projectId: z.ZodString;
|
|
@@ -338564,6 +338768,22 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338564
338768
|
payload: {
|
|
338565
338769
|
contextId: number;
|
|
338566
338770
|
};
|
|
338771
|
+
} | {
|
|
338772
|
+
type: "FeaturePublished";
|
|
338773
|
+
payload: {
|
|
338774
|
+
iterationId: string;
|
|
338775
|
+
featureId: string;
|
|
338776
|
+
featureName: string;
|
|
338777
|
+
iterationName: string;
|
|
338778
|
+
};
|
|
338779
|
+
} | {
|
|
338780
|
+
type: "FeatureUnpublished";
|
|
338781
|
+
payload: {
|
|
338782
|
+
iterationId: string;
|
|
338783
|
+
featureId: string;
|
|
338784
|
+
featureName: string;
|
|
338785
|
+
iterationName: string;
|
|
338786
|
+
};
|
|
338567
338787
|
}) & {
|
|
338568
338788
|
id: string;
|
|
338569
338789
|
createdAt: Date;
|
|
@@ -338665,6 +338885,22 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338665
338885
|
payload: {
|
|
338666
338886
|
contextId: number;
|
|
338667
338887
|
};
|
|
338888
|
+
} | {
|
|
338889
|
+
type: "FeaturePublished";
|
|
338890
|
+
payload: {
|
|
338891
|
+
iterationId: string;
|
|
338892
|
+
featureId: string;
|
|
338893
|
+
featureName: string;
|
|
338894
|
+
iterationName: string;
|
|
338895
|
+
};
|
|
338896
|
+
} | {
|
|
338897
|
+
type: "FeatureUnpublished";
|
|
338898
|
+
payload: {
|
|
338899
|
+
iterationId: string;
|
|
338900
|
+
featureId: string;
|
|
338901
|
+
featureName: string;
|
|
338902
|
+
iterationName: string;
|
|
338903
|
+
};
|
|
338668
338904
|
}) & {
|
|
338669
338905
|
id: string;
|
|
338670
338906
|
createdAt: Date;
|
|
@@ -338677,7 +338913,7 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338677
338913
|
})[];
|
|
338678
338914
|
}>;
|
|
338679
338915
|
type DTOTrailEventListResponse = z.infer<typeof DTOTrailEventListResponse>;
|
|
338680
|
-
declare const DTOTrailEventType: z.ZodEnum<["IterationCreated", "IterationBookmarked", "FeatureCreated", "FeatureDeleted", "FeatureArchived", "DocumentCreated", "DocumentDeleted", "DocumentUpdated", "DocumentCommentSent", "ProjectCreated", "ProjectArchived", "IterationPromoted", "ProjectContextCreated", "ProjectContextArchived"]>;
|
|
338916
|
+
declare const DTOTrailEventType: z.ZodEnum<["IterationCreated", "IterationBookmarked", "FeatureCreated", "FeatureDeleted", "FeatureArchived", "DocumentCreated", "DocumentDeleted", "DocumentUpdated", "DocumentCommentSent", "ProjectCreated", "ProjectArchived", "IterationPromoted", "ProjectContextCreated", "ProjectContextArchived", "FeaturePublished", "FeatureUnpublished"]>;
|
|
338681
338917
|
type DTOTrailEventType = z.infer<typeof DTOTrailEventType>;
|
|
338682
338918
|
declare const DTOTrailEventCreate: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
338683
338919
|
type: z.ZodLiteral<"IterationCreated">;
|
|
@@ -339045,6 +339281,74 @@ declare const DTOTrailEventCreate: z.ZodIntersection<z.ZodDiscriminatedUnion<"ty
|
|
|
339045
339281
|
payload: {
|
|
339046
339282
|
contextId: number;
|
|
339047
339283
|
};
|
|
339284
|
+
}>, z.ZodObject<{
|
|
339285
|
+
type: z.ZodLiteral<"FeaturePublished">;
|
|
339286
|
+
payload: z.ZodObject<{
|
|
339287
|
+
featureId: z.ZodString;
|
|
339288
|
+
featureName: z.ZodString;
|
|
339289
|
+
iterationId: z.ZodString;
|
|
339290
|
+
iterationName: z.ZodString;
|
|
339291
|
+
}, "strip", z.ZodTypeAny, {
|
|
339292
|
+
iterationId: string;
|
|
339293
|
+
featureId: string;
|
|
339294
|
+
featureName: string;
|
|
339295
|
+
iterationName: string;
|
|
339296
|
+
}, {
|
|
339297
|
+
iterationId: string;
|
|
339298
|
+
featureId: string;
|
|
339299
|
+
featureName: string;
|
|
339300
|
+
iterationName: string;
|
|
339301
|
+
}>;
|
|
339302
|
+
}, "strip", z.ZodTypeAny, {
|
|
339303
|
+
type: "FeaturePublished";
|
|
339304
|
+
payload: {
|
|
339305
|
+
iterationId: string;
|
|
339306
|
+
featureId: string;
|
|
339307
|
+
featureName: string;
|
|
339308
|
+
iterationName: string;
|
|
339309
|
+
};
|
|
339310
|
+
}, {
|
|
339311
|
+
type: "FeaturePublished";
|
|
339312
|
+
payload: {
|
|
339313
|
+
iterationId: string;
|
|
339314
|
+
featureId: string;
|
|
339315
|
+
featureName: string;
|
|
339316
|
+
iterationName: string;
|
|
339317
|
+
};
|
|
339318
|
+
}>, z.ZodObject<{
|
|
339319
|
+
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
339320
|
+
payload: z.ZodObject<{
|
|
339321
|
+
featureId: z.ZodString;
|
|
339322
|
+
featureName: z.ZodString;
|
|
339323
|
+
iterationId: z.ZodString;
|
|
339324
|
+
iterationName: z.ZodString;
|
|
339325
|
+
}, "strip", z.ZodTypeAny, {
|
|
339326
|
+
iterationId: string;
|
|
339327
|
+
featureId: string;
|
|
339328
|
+
featureName: string;
|
|
339329
|
+
iterationName: string;
|
|
339330
|
+
}, {
|
|
339331
|
+
iterationId: string;
|
|
339332
|
+
featureId: string;
|
|
339333
|
+
featureName: string;
|
|
339334
|
+
iterationName: string;
|
|
339335
|
+
}>;
|
|
339336
|
+
}, "strip", z.ZodTypeAny, {
|
|
339337
|
+
type: "FeatureUnpublished";
|
|
339338
|
+
payload: {
|
|
339339
|
+
iterationId: string;
|
|
339340
|
+
featureId: string;
|
|
339341
|
+
featureName: string;
|
|
339342
|
+
iterationName: string;
|
|
339343
|
+
};
|
|
339344
|
+
}, {
|
|
339345
|
+
type: "FeatureUnpublished";
|
|
339346
|
+
payload: {
|
|
339347
|
+
iterationId: string;
|
|
339348
|
+
featureId: string;
|
|
339349
|
+
featureName: string;
|
|
339350
|
+
iterationName: string;
|
|
339351
|
+
};
|
|
339048
339352
|
}>]>, z.ZodObject<Omit<{
|
|
339049
339353
|
id: z.ZodString;
|
|
339050
339354
|
projectId: z.ZodString;
|
|
@@ -361676,10 +361980,10 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
361676
361980
|
lastReplyTimestamp?: Date | undefined;
|
|
361677
361981
|
publishedState?: {
|
|
361678
361982
|
visibility: "Public" | "WorkspaceMembers";
|
|
361983
|
+
iterationId: string | null;
|
|
361679
361984
|
lastPublishedAt: Date;
|
|
361680
361985
|
hideSupernovaUI: boolean;
|
|
361681
361986
|
userId?: string | undefined;
|
|
361682
|
-
iterationId?: string | undefined;
|
|
361683
361987
|
userName?: string | undefined;
|
|
361684
361988
|
} | undefined;
|
|
361685
361989
|
}[];
|
|
@@ -361717,10 +362021,10 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
361717
362021
|
lastReplyTimestamp?: Date | undefined;
|
|
361718
362022
|
publishedState?: {
|
|
361719
362023
|
visibility: "Public" | "WorkspaceMembers";
|
|
362024
|
+
iterationId: string | null;
|
|
361720
362025
|
lastPublishedAt: Date;
|
|
361721
362026
|
hideSupernovaUI: boolean;
|
|
361722
362027
|
userId?: string | undefined;
|
|
361723
|
-
iterationId?: string | undefined;
|
|
361724
362028
|
userName?: string | undefined;
|
|
361725
362029
|
} | undefined;
|
|
361726
362030
|
};
|
|
@@ -361758,10 +362062,10 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
361758
362062
|
lastReplyTimestamp?: Date | undefined;
|
|
361759
362063
|
publishedState?: {
|
|
361760
362064
|
visibility: "Public" | "WorkspaceMembers";
|
|
362065
|
+
iterationId: string | null;
|
|
361761
362066
|
lastPublishedAt: Date;
|
|
361762
362067
|
hideSupernovaUI: boolean;
|
|
361763
362068
|
userId?: string | undefined;
|
|
361764
|
-
iterationId?: string | undefined;
|
|
361765
362069
|
userName?: string | undefined;
|
|
361766
362070
|
} | undefined;
|
|
361767
362071
|
};
|
|
@@ -375077,10 +375381,10 @@ declare function applyProjectActionsLocally(input: Input): {
|
|
|
375077
375381
|
lastReplyTimestamp?: Date | undefined;
|
|
375078
375382
|
publishedState?: {
|
|
375079
375383
|
visibility: "Public" | "WorkspaceMembers";
|
|
375384
|
+
iterationId: string | null;
|
|
375080
375385
|
lastPublishedAt: Date;
|
|
375081
375386
|
hideSupernovaUI: boolean;
|
|
375082
375387
|
userId?: string | undefined;
|
|
375083
|
-
iterationId?: string | undefined;
|
|
375084
375388
|
userName?: string | undefined;
|
|
375085
375389
|
} | undefined;
|
|
375086
375390
|
}[];
|
|
@@ -375181,10 +375485,10 @@ declare class LocalProjectActionExecutor {
|
|
|
375181
375485
|
lastReplyTimestamp?: Date | undefined;
|
|
375182
375486
|
publishedState?: {
|
|
375183
375487
|
visibility: "Public" | "WorkspaceMembers";
|
|
375488
|
+
iterationId: string | null;
|
|
375184
375489
|
lastPublishedAt: Date;
|
|
375185
375490
|
hideSupernovaUI: boolean;
|
|
375186
375491
|
userId?: string | undefined;
|
|
375187
|
-
iterationId?: string | undefined;
|
|
375188
375492
|
userName?: string | undefined;
|
|
375189
375493
|
} | undefined;
|
|
375190
375494
|
}[];
|