@supernova-studio/client 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 +371 -66
- package/dist/index.d.ts +371 -66
- 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
|
};
|
|
@@ -248558,28 +248558,6 @@ declare const DTOForgeProjectContextRemoveResponse: z.ZodObject<{
|
|
|
248558
248558
|
}>;
|
|
248559
248559
|
type DTOForgeProjectContextRemoveResponse = z.infer<typeof DTOForgeProjectContextRemoveResponse>;
|
|
248560
248560
|
|
|
248561
|
-
declare const DTOForgeProjectFeaturePublishedState: z$1.ZodObject<{
|
|
248562
|
-
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
248563
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
248564
|
-
lastPublishedAt: z$1.ZodDate;
|
|
248565
|
-
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
248566
|
-
hideSupernovaUI: z$1.ZodBoolean;
|
|
248567
|
-
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
248568
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
248569
|
-
visibility: "Public" | "WorkspaceMembers";
|
|
248570
|
-
lastPublishedAt: Date;
|
|
248571
|
-
hideSupernovaUI: boolean;
|
|
248572
|
-
userId?: string | undefined;
|
|
248573
|
-
iterationId?: string | undefined;
|
|
248574
|
-
userName?: string | undefined;
|
|
248575
|
-
}, {
|
|
248576
|
-
lastPublishedAt: Date;
|
|
248577
|
-
hideSupernovaUI: boolean;
|
|
248578
|
-
userId?: string | undefined;
|
|
248579
|
-
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248580
|
-
iterationId?: string | undefined;
|
|
248581
|
-
userName?: string | undefined;
|
|
248582
|
-
}>;
|
|
248583
248561
|
declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
248584
248562
|
createdAt: z$1.ZodDate;
|
|
248585
248563
|
createdByUserId: z$1.ZodString;
|
|
@@ -248654,22 +248632,22 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248654
248632
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
248655
248633
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
248656
248634
|
lastPublishedAt: z$1.ZodDate;
|
|
248657
|
-
iterationId: z$1.
|
|
248635
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
248658
248636
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
248659
248637
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
248660
248638
|
}, "strip", z$1.ZodTypeAny, {
|
|
248661
248639
|
visibility: "Public" | "WorkspaceMembers";
|
|
248640
|
+
iterationId: string | null;
|
|
248662
248641
|
lastPublishedAt: Date;
|
|
248663
248642
|
hideSupernovaUI: boolean;
|
|
248664
248643
|
userId?: string | undefined;
|
|
248665
|
-
iterationId?: string | undefined;
|
|
248666
248644
|
userName?: string | undefined;
|
|
248667
248645
|
}, {
|
|
248646
|
+
iterationId: string | null;
|
|
248668
248647
|
lastPublishedAt: Date;
|
|
248669
248648
|
hideSupernovaUI: boolean;
|
|
248670
248649
|
userId?: string | undefined;
|
|
248671
248650
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248672
|
-
iterationId?: string | undefined;
|
|
248673
248651
|
userName?: string | undefined;
|
|
248674
248652
|
}>>;
|
|
248675
248653
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -248704,10 +248682,10 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248704
248682
|
lastReplyTimestamp?: Date | undefined;
|
|
248705
248683
|
publishedState?: {
|
|
248706
248684
|
visibility: "Public" | "WorkspaceMembers";
|
|
248685
|
+
iterationId: string | null;
|
|
248707
248686
|
lastPublishedAt: Date;
|
|
248708
248687
|
hideSupernovaUI: boolean;
|
|
248709
248688
|
userId?: string | undefined;
|
|
248710
|
-
iterationId?: string | undefined;
|
|
248711
248689
|
userName?: string | undefined;
|
|
248712
248690
|
} | undefined;
|
|
248713
248691
|
}, {
|
|
@@ -248741,11 +248719,11 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
248741
248719
|
numberOfBookmarkedIterations?: number | undefined;
|
|
248742
248720
|
lastReplyTimestamp?: Date | undefined;
|
|
248743
248721
|
publishedState?: {
|
|
248722
|
+
iterationId: string | null;
|
|
248744
248723
|
lastPublishedAt: Date;
|
|
248745
248724
|
hideSupernovaUI: boolean;
|
|
248746
248725
|
userId?: string | undefined;
|
|
248747
248726
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248748
|
-
iterationId?: string | undefined;
|
|
248749
248727
|
userName?: string | undefined;
|
|
248750
248728
|
} | undefined;
|
|
248751
248729
|
}>;
|
|
@@ -248825,22 +248803,22 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248825
248803
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
248826
248804
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
248827
248805
|
lastPublishedAt: z$1.ZodDate;
|
|
248828
|
-
iterationId: z$1.
|
|
248806
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
248829
248807
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
248830
248808
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
248831
248809
|
}, "strip", z$1.ZodTypeAny, {
|
|
248832
248810
|
visibility: "Public" | "WorkspaceMembers";
|
|
248811
|
+
iterationId: string | null;
|
|
248833
248812
|
lastPublishedAt: Date;
|
|
248834
248813
|
hideSupernovaUI: boolean;
|
|
248835
248814
|
userId?: string | undefined;
|
|
248836
|
-
iterationId?: string | undefined;
|
|
248837
248815
|
userName?: string | undefined;
|
|
248838
248816
|
}, {
|
|
248817
|
+
iterationId: string | null;
|
|
248839
248818
|
lastPublishedAt: Date;
|
|
248840
248819
|
hideSupernovaUI: boolean;
|
|
248841
248820
|
userId?: string | undefined;
|
|
248842
248821
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248843
|
-
iterationId?: string | undefined;
|
|
248844
248822
|
userName?: string | undefined;
|
|
248845
248823
|
}>>;
|
|
248846
248824
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -248875,10 +248853,10 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248875
248853
|
lastReplyTimestamp?: Date | undefined;
|
|
248876
248854
|
publishedState?: {
|
|
248877
248855
|
visibility: "Public" | "WorkspaceMembers";
|
|
248856
|
+
iterationId: string | null;
|
|
248878
248857
|
lastPublishedAt: Date;
|
|
248879
248858
|
hideSupernovaUI: boolean;
|
|
248880
248859
|
userId?: string | undefined;
|
|
248881
|
-
iterationId?: string | undefined;
|
|
248882
248860
|
userName?: string | undefined;
|
|
248883
248861
|
} | undefined;
|
|
248884
248862
|
}, {
|
|
@@ -248912,11 +248890,11 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248912
248890
|
numberOfBookmarkedIterations?: number | undefined;
|
|
248913
248891
|
lastReplyTimestamp?: Date | undefined;
|
|
248914
248892
|
publishedState?: {
|
|
248893
|
+
iterationId: string | null;
|
|
248915
248894
|
lastPublishedAt: Date;
|
|
248916
248895
|
hideSupernovaUI: boolean;
|
|
248917
248896
|
userId?: string | undefined;
|
|
248918
248897
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248919
|
-
iterationId?: string | undefined;
|
|
248920
248898
|
userName?: string | undefined;
|
|
248921
248899
|
} | undefined;
|
|
248922
248900
|
}>, "many">;
|
|
@@ -248953,10 +248931,10 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248953
248931
|
lastReplyTimestamp?: Date | undefined;
|
|
248954
248932
|
publishedState?: {
|
|
248955
248933
|
visibility: "Public" | "WorkspaceMembers";
|
|
248934
|
+
iterationId: string | null;
|
|
248956
248935
|
lastPublishedAt: Date;
|
|
248957
248936
|
hideSupernovaUI: boolean;
|
|
248958
248937
|
userId?: string | undefined;
|
|
248959
|
-
iterationId?: string | undefined;
|
|
248960
248938
|
userName?: string | undefined;
|
|
248961
248939
|
} | undefined;
|
|
248962
248940
|
}[];
|
|
@@ -248992,11 +248970,11 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
248992
248970
|
numberOfBookmarkedIterations?: number | undefined;
|
|
248993
248971
|
lastReplyTimestamp?: Date | undefined;
|
|
248994
248972
|
publishedState?: {
|
|
248973
|
+
iterationId: string | null;
|
|
248995
248974
|
lastPublishedAt: Date;
|
|
248996
248975
|
hideSupernovaUI: boolean;
|
|
248997
248976
|
userId?: string | undefined;
|
|
248998
248977
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
248999
|
-
iterationId?: string | undefined;
|
|
249000
248978
|
userName?: string | undefined;
|
|
249001
248979
|
} | undefined;
|
|
249002
248980
|
}[];
|
|
@@ -249217,22 +249195,22 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
|
|
|
249217
249195
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249218
249196
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249219
249197
|
lastPublishedAt: z$1.ZodDate;
|
|
249220
|
-
iterationId: z$1.
|
|
249198
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249221
249199
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249222
249200
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
249223
249201
|
}, "strip", z$1.ZodTypeAny, {
|
|
249224
249202
|
visibility: "Public" | "WorkspaceMembers";
|
|
249203
|
+
iterationId: string | null;
|
|
249225
249204
|
lastPublishedAt: Date;
|
|
249226
249205
|
hideSupernovaUI: boolean;
|
|
249227
249206
|
userId?: string | undefined;
|
|
249228
|
-
iterationId?: string | undefined;
|
|
249229
249207
|
userName?: string | undefined;
|
|
249230
249208
|
}, {
|
|
249209
|
+
iterationId: string | null;
|
|
249231
249210
|
lastPublishedAt: Date;
|
|
249232
249211
|
hideSupernovaUI: boolean;
|
|
249233
249212
|
userId?: string | undefined;
|
|
249234
249213
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249235
|
-
iterationId?: string | undefined;
|
|
249236
249214
|
userName?: string | undefined;
|
|
249237
249215
|
}>>>;
|
|
249238
249216
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -249243,10 +249221,10 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
|
|
|
249243
249221
|
isArchived?: boolean | undefined;
|
|
249244
249222
|
publishedState?: {
|
|
249245
249223
|
visibility: "Public" | "WorkspaceMembers";
|
|
249224
|
+
iterationId: string | null;
|
|
249246
249225
|
lastPublishedAt: Date;
|
|
249247
249226
|
hideSupernovaUI: boolean;
|
|
249248
249227
|
userId?: string | undefined;
|
|
249249
|
-
iterationId?: string | undefined;
|
|
249250
249228
|
userName?: string | undefined;
|
|
249251
249229
|
} | null | undefined;
|
|
249252
249230
|
}, {
|
|
@@ -249256,11 +249234,11 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
|
|
|
249256
249234
|
description?: string | undefined;
|
|
249257
249235
|
isArchived?: boolean | undefined;
|
|
249258
249236
|
publishedState?: {
|
|
249237
|
+
iterationId: string | null;
|
|
249259
249238
|
lastPublishedAt: Date;
|
|
249260
249239
|
hideSupernovaUI: boolean;
|
|
249261
249240
|
userId?: string | undefined;
|
|
249262
249241
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249263
|
-
iterationId?: string | undefined;
|
|
249264
249242
|
userName?: string | undefined;
|
|
249265
249243
|
} | null | undefined;
|
|
249266
249244
|
}>;
|
|
@@ -249370,22 +249348,22 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249370
249348
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249371
249349
|
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249372
249350
|
lastPublishedAt: z$1.ZodDate;
|
|
249373
|
-
iterationId: z$1.
|
|
249351
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249374
249352
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249375
249353
|
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
249376
249354
|
}, "strip", z$1.ZodTypeAny, {
|
|
249377
249355
|
visibility: "Public" | "WorkspaceMembers";
|
|
249356
|
+
iterationId: string | null;
|
|
249378
249357
|
lastPublishedAt: Date;
|
|
249379
249358
|
hideSupernovaUI: boolean;
|
|
249380
249359
|
userId?: string | undefined;
|
|
249381
|
-
iterationId?: string | undefined;
|
|
249382
249360
|
userName?: string | undefined;
|
|
249383
249361
|
}, {
|
|
249362
|
+
iterationId: string | null;
|
|
249384
249363
|
lastPublishedAt: Date;
|
|
249385
249364
|
hideSupernovaUI: boolean;
|
|
249386
249365
|
userId?: string | undefined;
|
|
249387
249366
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249388
|
-
iterationId?: string | undefined;
|
|
249389
249367
|
userName?: string | undefined;
|
|
249390
249368
|
}>>;
|
|
249391
249369
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -249420,10 +249398,10 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249420
249398
|
lastReplyTimestamp?: Date | undefined;
|
|
249421
249399
|
publishedState?: {
|
|
249422
249400
|
visibility: "Public" | "WorkspaceMembers";
|
|
249401
|
+
iterationId: string | null;
|
|
249423
249402
|
lastPublishedAt: Date;
|
|
249424
249403
|
hideSupernovaUI: boolean;
|
|
249425
249404
|
userId?: string | undefined;
|
|
249426
|
-
iterationId?: string | undefined;
|
|
249427
249405
|
userName?: string | undefined;
|
|
249428
249406
|
} | undefined;
|
|
249429
249407
|
}, {
|
|
@@ -249457,11 +249435,11 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249457
249435
|
numberOfBookmarkedIterations?: number | undefined;
|
|
249458
249436
|
lastReplyTimestamp?: Date | undefined;
|
|
249459
249437
|
publishedState?: {
|
|
249438
|
+
iterationId: string | null;
|
|
249460
249439
|
lastPublishedAt: Date;
|
|
249461
249440
|
hideSupernovaUI: boolean;
|
|
249462
249441
|
userId?: string | undefined;
|
|
249463
249442
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249464
|
-
iterationId?: string | undefined;
|
|
249465
249443
|
userName?: string | undefined;
|
|
249466
249444
|
} | undefined;
|
|
249467
249445
|
}>;
|
|
@@ -249498,10 +249476,10 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249498
249476
|
lastReplyTimestamp?: Date | undefined;
|
|
249499
249477
|
publishedState?: {
|
|
249500
249478
|
visibility: "Public" | "WorkspaceMembers";
|
|
249479
|
+
iterationId: string | null;
|
|
249501
249480
|
lastPublishedAt: Date;
|
|
249502
249481
|
hideSupernovaUI: boolean;
|
|
249503
249482
|
userId?: string | undefined;
|
|
249504
|
-
iterationId?: string | undefined;
|
|
249505
249483
|
userName?: string | undefined;
|
|
249506
249484
|
} | undefined;
|
|
249507
249485
|
};
|
|
@@ -249537,11 +249515,11 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249537
249515
|
numberOfBookmarkedIterations?: number | undefined;
|
|
249538
249516
|
lastReplyTimestamp?: Date | undefined;
|
|
249539
249517
|
publishedState?: {
|
|
249518
|
+
iterationId: string | null;
|
|
249540
249519
|
lastPublishedAt: Date;
|
|
249541
249520
|
hideSupernovaUI: boolean;
|
|
249542
249521
|
userId?: string | undefined;
|
|
249543
249522
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249544
|
-
iterationId?: string | undefined;
|
|
249545
249523
|
userName?: string | undefined;
|
|
249546
249524
|
} | undefined;
|
|
249547
249525
|
};
|
|
@@ -249613,6 +249591,29 @@ declare const DTOForgeProjectPublishedFeatureGetResponse: z$1.ZodObject<{
|
|
|
249613
249591
|
};
|
|
249614
249592
|
}>;
|
|
249615
249593
|
type DTOForgeProjectPublishedFeatureGetResponse = z$1.infer<typeof DTOForgeProjectPublishedFeatureGetResponse>;
|
|
249594
|
+
declare const DTOForgeProjectFeaturePublishedState: z$1.ZodObject<{
|
|
249595
|
+
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249596
|
+
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249597
|
+
lastPublishedAt: z$1.ZodDate;
|
|
249598
|
+
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249599
|
+
hideSupernovaUI: z$1.ZodBoolean;
|
|
249600
|
+
visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
|
|
249601
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
249602
|
+
visibility: "Public" | "WorkspaceMembers";
|
|
249603
|
+
iterationId: string | null;
|
|
249604
|
+
lastPublishedAt: Date;
|
|
249605
|
+
hideSupernovaUI: boolean;
|
|
249606
|
+
userId?: string | undefined;
|
|
249607
|
+
userName?: string | undefined;
|
|
249608
|
+
}, {
|
|
249609
|
+
iterationId: string | null;
|
|
249610
|
+
lastPublishedAt: Date;
|
|
249611
|
+
hideSupernovaUI: boolean;
|
|
249612
|
+
userId?: string | undefined;
|
|
249613
|
+
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249614
|
+
userName?: string | undefined;
|
|
249615
|
+
}>;
|
|
249616
|
+
type DTOForgeProjectFeaturePublishedState = z$1.infer<typeof DTOForgeProjectFeaturePublishedState>;
|
|
249616
249617
|
declare const DTOFeatureArtifactListQuery: z$1.ZodObject<{
|
|
249617
249618
|
messageId: z$1.ZodOptional<z$1.ZodString>;
|
|
249618
249619
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -337654,6 +337655,74 @@ declare const DTOTrailEvent: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
337654
337655
|
payload: {
|
|
337655
337656
|
contextId: number;
|
|
337656
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
|
+
};
|
|
337657
337726
|
}>]>, z.ZodObject<{
|
|
337658
337727
|
id: z.ZodString;
|
|
337659
337728
|
projectId: z.ZodString;
|
|
@@ -338040,6 +338109,74 @@ declare const DTOTrailEventWithDetails: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
338040
338109
|
payload: {
|
|
338041
338110
|
contextId: number;
|
|
338042
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
|
+
};
|
|
338043
338180
|
}>]>, z.ZodObject<{
|
|
338044
338181
|
id: z.ZodString;
|
|
338045
338182
|
projectId: z.ZodString;
|
|
@@ -338444,6 +338581,74 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338444
338581
|
payload: {
|
|
338445
338582
|
contextId: number;
|
|
338446
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
|
+
};
|
|
338447
338652
|
}>]>, z.ZodObject<{
|
|
338448
338653
|
id: z.ZodString;
|
|
338449
338654
|
projectId: z.ZodString;
|
|
@@ -338563,6 +338768,22 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338563
338768
|
payload: {
|
|
338564
338769
|
contextId: number;
|
|
338565
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
|
+
};
|
|
338566
338787
|
}) & {
|
|
338567
338788
|
id: string;
|
|
338568
338789
|
createdAt: Date;
|
|
@@ -338664,6 +338885,22 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338664
338885
|
payload: {
|
|
338665
338886
|
contextId: number;
|
|
338666
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
|
+
};
|
|
338667
338904
|
}) & {
|
|
338668
338905
|
id: string;
|
|
338669
338906
|
createdAt: Date;
|
|
@@ -338676,7 +338913,7 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
338676
338913
|
})[];
|
|
338677
338914
|
}>;
|
|
338678
338915
|
type DTOTrailEventListResponse = z.infer<typeof DTOTrailEventListResponse>;
|
|
338679
|
-
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"]>;
|
|
338680
338917
|
type DTOTrailEventType = z.infer<typeof DTOTrailEventType>;
|
|
338681
338918
|
declare const DTOTrailEventCreate: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
338682
338919
|
type: z.ZodLiteral<"IterationCreated">;
|
|
@@ -339044,6 +339281,74 @@ declare const DTOTrailEventCreate: z.ZodIntersection<z.ZodDiscriminatedUnion<"ty
|
|
|
339044
339281
|
payload: {
|
|
339045
339282
|
contextId: number;
|
|
339046
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
|
+
};
|
|
339047
339352
|
}>]>, z.ZodObject<Omit<{
|
|
339048
339353
|
id: z.ZodString;
|
|
339049
339354
|
projectId: z.ZodString;
|
|
@@ -361675,10 +361980,10 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
361675
361980
|
lastReplyTimestamp?: Date | undefined;
|
|
361676
361981
|
publishedState?: {
|
|
361677
361982
|
visibility: "Public" | "WorkspaceMembers";
|
|
361983
|
+
iterationId: string | null;
|
|
361678
361984
|
lastPublishedAt: Date;
|
|
361679
361985
|
hideSupernovaUI: boolean;
|
|
361680
361986
|
userId?: string | undefined;
|
|
361681
|
-
iterationId?: string | undefined;
|
|
361682
361987
|
userName?: string | undefined;
|
|
361683
361988
|
} | undefined;
|
|
361684
361989
|
}[];
|
|
@@ -361716,10 +362021,10 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
361716
362021
|
lastReplyTimestamp?: Date | undefined;
|
|
361717
362022
|
publishedState?: {
|
|
361718
362023
|
visibility: "Public" | "WorkspaceMembers";
|
|
362024
|
+
iterationId: string | null;
|
|
361719
362025
|
lastPublishedAt: Date;
|
|
361720
362026
|
hideSupernovaUI: boolean;
|
|
361721
362027
|
userId?: string | undefined;
|
|
361722
|
-
iterationId?: string | undefined;
|
|
361723
362028
|
userName?: string | undefined;
|
|
361724
362029
|
} | undefined;
|
|
361725
362030
|
};
|
|
@@ -361757,10 +362062,10 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
361757
362062
|
lastReplyTimestamp?: Date | undefined;
|
|
361758
362063
|
publishedState?: {
|
|
361759
362064
|
visibility: "Public" | "WorkspaceMembers";
|
|
362065
|
+
iterationId: string | null;
|
|
361760
362066
|
lastPublishedAt: Date;
|
|
361761
362067
|
hideSupernovaUI: boolean;
|
|
361762
362068
|
userId?: string | undefined;
|
|
361763
|
-
iterationId?: string | undefined;
|
|
361764
362069
|
userName?: string | undefined;
|
|
361765
362070
|
} | undefined;
|
|
361766
362071
|
};
|
|
@@ -375076,10 +375381,10 @@ declare function applyProjectActionsLocally(input: Input): {
|
|
|
375076
375381
|
lastReplyTimestamp?: Date | undefined;
|
|
375077
375382
|
publishedState?: {
|
|
375078
375383
|
visibility: "Public" | "WorkspaceMembers";
|
|
375384
|
+
iterationId: string | null;
|
|
375079
375385
|
lastPublishedAt: Date;
|
|
375080
375386
|
hideSupernovaUI: boolean;
|
|
375081
375387
|
userId?: string | undefined;
|
|
375082
|
-
iterationId?: string | undefined;
|
|
375083
375388
|
userName?: string | undefined;
|
|
375084
375389
|
} | undefined;
|
|
375085
375390
|
}[];
|
|
@@ -375180,10 +375485,10 @@ declare class LocalProjectActionExecutor {
|
|
|
375180
375485
|
lastReplyTimestamp?: Date | undefined;
|
|
375181
375486
|
publishedState?: {
|
|
375182
375487
|
visibility: "Public" | "WorkspaceMembers";
|
|
375488
|
+
iterationId: string | null;
|
|
375183
375489
|
lastPublishedAt: Date;
|
|
375184
375490
|
hideSupernovaUI: boolean;
|
|
375185
375491
|
userId?: string | undefined;
|
|
375186
|
-
iterationId?: string | undefined;
|
|
375187
375492
|
userName?: string | undefined;
|
|
375188
375493
|
} | undefined;
|
|
375189
375494
|
}[];
|