@supernova-studio/client 1.30.1 → 1.31.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 +209 -1911
- package/dist/index.d.ts +209 -1911
- package/dist/index.js +36 -56
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +101 -121
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -68873,6 +68873,7 @@ declare const DTOFeatureIterationArtifactDiff: z__default.ZodObject<{
|
|
|
68873
68873
|
type DTOFeatureIterationArtifactDiff = z__default.infer<typeof DTOFeatureIterationArtifactDiff>;
|
|
68874
68874
|
declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
|
|
68875
68875
|
id: z__default.ZodString;
|
|
68876
|
+
name: z__default.ZodOptional<z__default.ZodString>;
|
|
68876
68877
|
artifactDiff: z__default.ZodObject<{
|
|
68877
68878
|
/**
|
|
68878
68879
|
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
@@ -68908,6 +68909,7 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
|
|
|
68908
68909
|
}>;
|
|
68909
68910
|
remove: string[];
|
|
68910
68911
|
};
|
|
68912
|
+
name?: string | undefined;
|
|
68911
68913
|
}, {
|
|
68912
68914
|
id: string;
|
|
68913
68915
|
artifactDiff: {
|
|
@@ -68916,6 +68918,7 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
|
|
|
68916
68918
|
}>;
|
|
68917
68919
|
remove: string[];
|
|
68918
68920
|
};
|
|
68921
|
+
name?: string | undefined;
|
|
68919
68922
|
}>;
|
|
68920
68923
|
type DTOFeatureIterationUpdateArtifactsInput = z__default.infer<typeof DTOFeatureIterationUpdateArtifactsInput>;
|
|
68921
68924
|
declare const DTOFeatureAgentWorkFinalizeInput: z__default.ZodObject<{
|
|
@@ -83706,7 +83709,7 @@ declare const DTOForgeProjectInvitation: z$1.ZodObject<{
|
|
|
83706
83709
|
email: z$1.ZodString;
|
|
83707
83710
|
forgeProjectId: z$1.ZodString;
|
|
83708
83711
|
workspaceInvitationId: z$1.ZodString;
|
|
83709
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
83712
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
83710
83713
|
createdAt: z$1.ZodDate;
|
|
83711
83714
|
updatedAt: z$1.ZodDate;
|
|
83712
83715
|
createdById: z$1.ZodString;
|
|
@@ -83714,7 +83717,7 @@ declare const DTOForgeProjectInvitation: z$1.ZodObject<{
|
|
|
83714
83717
|
email: string;
|
|
83715
83718
|
createdAt: Date;
|
|
83716
83719
|
updatedAt: Date;
|
|
83717
|
-
role: "Admin" | "Viewer" | "
|
|
83720
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83718
83721
|
workspaceInvitationId: string;
|
|
83719
83722
|
forgeProjectId: string;
|
|
83720
83723
|
createdById: string;
|
|
@@ -83722,7 +83725,7 @@ declare const DTOForgeProjectInvitation: z$1.ZodObject<{
|
|
|
83722
83725
|
email: string;
|
|
83723
83726
|
createdAt: Date;
|
|
83724
83727
|
updatedAt: Date;
|
|
83725
|
-
role: "Admin" | "Viewer" | "
|
|
83728
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83726
83729
|
workspaceInvitationId: string;
|
|
83727
83730
|
forgeProjectId: string;
|
|
83728
83731
|
createdById: string;
|
|
@@ -83732,7 +83735,7 @@ declare const DTOCreateForgeProjectInvitation: z$1.ZodObject<Pick<{
|
|
|
83732
83735
|
email: z$1.ZodString;
|
|
83733
83736
|
forgeProjectId: z$1.ZodString;
|
|
83734
83737
|
workspaceInvitationId: z$1.ZodString;
|
|
83735
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
83738
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
83736
83739
|
createdAt: z$1.ZodDate;
|
|
83737
83740
|
updatedAt: z$1.ZodDate;
|
|
83738
83741
|
createdById: z$1.ZodString;
|
|
@@ -83740,11 +83743,11 @@ declare const DTOCreateForgeProjectInvitation: z$1.ZodObject<Pick<{
|
|
|
83740
83743
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
83741
83744
|
}, "strip", z$1.ZodTypeAny, {
|
|
83742
83745
|
email: string;
|
|
83743
|
-
role: "Admin" | "Viewer" | "
|
|
83746
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83744
83747
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
83745
83748
|
}, {
|
|
83746
83749
|
email: string;
|
|
83747
|
-
role: "Admin" | "Viewer" | "
|
|
83750
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83748
83751
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
83749
83752
|
}>;
|
|
83750
83753
|
type DTOCreateForgeProjectInvitation = z$1.infer<typeof DTOCreateForgeProjectInvitation>;
|
|
@@ -83752,23 +83755,25 @@ declare const DTOUpdateForgeProjectInvitation: z$1.ZodObject<Omit<Pick<{
|
|
|
83752
83755
|
email: z$1.ZodString;
|
|
83753
83756
|
forgeProjectId: z$1.ZodString;
|
|
83754
83757
|
workspaceInvitationId: z$1.ZodString;
|
|
83755
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
83758
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
83756
83759
|
createdAt: z$1.ZodDate;
|
|
83757
83760
|
updatedAt: z$1.ZodDate;
|
|
83758
83761
|
createdById: z$1.ZodString;
|
|
83759
83762
|
}, "email" | "role"> & {
|
|
83760
83763
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
83761
|
-
}, "
|
|
83762
|
-
|
|
83764
|
+
}, "workspaceRole">, "strip", z$1.ZodTypeAny, {
|
|
83765
|
+
email: string;
|
|
83766
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83763
83767
|
}, {
|
|
83764
|
-
|
|
83768
|
+
email: string;
|
|
83769
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83765
83770
|
}>;
|
|
83766
83771
|
type DTOUpdateForgeProjectInvitation = z$1.infer<typeof DTOUpdateForgeProjectInvitation>;
|
|
83767
83772
|
declare const DTORemoveForgeProjectInvitation: z$1.ZodObject<Pick<Pick<{
|
|
83768
83773
|
email: z$1.ZodString;
|
|
83769
83774
|
forgeProjectId: z$1.ZodString;
|
|
83770
83775
|
workspaceInvitationId: z$1.ZodString;
|
|
83771
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
83776
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
83772
83777
|
createdAt: z$1.ZodDate;
|
|
83773
83778
|
updatedAt: z$1.ZodDate;
|
|
83774
83779
|
createdById: z$1.ZodString;
|
|
@@ -83785,7 +83790,7 @@ declare const DTOForgeProjectInvitationsListResponse: z$1.ZodObject<{
|
|
|
83785
83790
|
email: z$1.ZodString;
|
|
83786
83791
|
forgeProjectId: z$1.ZodString;
|
|
83787
83792
|
workspaceInvitationId: z$1.ZodString;
|
|
83788
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
83793
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
83789
83794
|
createdAt: z$1.ZodDate;
|
|
83790
83795
|
updatedAt: z$1.ZodDate;
|
|
83791
83796
|
createdById: z$1.ZodString;
|
|
@@ -83793,7 +83798,7 @@ declare const DTOForgeProjectInvitationsListResponse: z$1.ZodObject<{
|
|
|
83793
83798
|
email: string;
|
|
83794
83799
|
createdAt: Date;
|
|
83795
83800
|
updatedAt: Date;
|
|
83796
|
-
role: "Admin" | "Viewer" | "
|
|
83801
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83797
83802
|
workspaceInvitationId: string;
|
|
83798
83803
|
forgeProjectId: string;
|
|
83799
83804
|
createdById: string;
|
|
@@ -83801,7 +83806,7 @@ declare const DTOForgeProjectInvitationsListResponse: z$1.ZodObject<{
|
|
|
83801
83806
|
email: string;
|
|
83802
83807
|
createdAt: Date;
|
|
83803
83808
|
updatedAt: Date;
|
|
83804
|
-
role: "Admin" | "Viewer" | "
|
|
83809
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83805
83810
|
workspaceInvitationId: string;
|
|
83806
83811
|
forgeProjectId: string;
|
|
83807
83812
|
createdById: string;
|
|
@@ -83811,7 +83816,7 @@ declare const DTOForgeProjectInvitationsListResponse: z$1.ZodObject<{
|
|
|
83811
83816
|
email: string;
|
|
83812
83817
|
createdAt: Date;
|
|
83813
83818
|
updatedAt: Date;
|
|
83814
|
-
role: "Admin" | "Viewer" | "
|
|
83819
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83815
83820
|
workspaceInvitationId: string;
|
|
83816
83821
|
forgeProjectId: string;
|
|
83817
83822
|
createdById: string;
|
|
@@ -83821,7 +83826,7 @@ declare const DTOForgeProjectInvitationsListResponse: z$1.ZodObject<{
|
|
|
83821
83826
|
email: string;
|
|
83822
83827
|
createdAt: Date;
|
|
83823
83828
|
updatedAt: Date;
|
|
83824
|
-
role: "Admin" | "Viewer" | "
|
|
83829
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83825
83830
|
workspaceInvitationId: string;
|
|
83826
83831
|
forgeProjectId: string;
|
|
83827
83832
|
createdById: string;
|
|
@@ -83833,7 +83838,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
83833
83838
|
email: z$1.ZodString;
|
|
83834
83839
|
forgeProjectId: z$1.ZodString;
|
|
83835
83840
|
workspaceInvitationId: z$1.ZodString;
|
|
83836
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
83841
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
83837
83842
|
createdAt: z$1.ZodDate;
|
|
83838
83843
|
updatedAt: z$1.ZodDate;
|
|
83839
83844
|
createdById: z$1.ZodString;
|
|
@@ -83841,7 +83846,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
83841
83846
|
email: string;
|
|
83842
83847
|
createdAt: Date;
|
|
83843
83848
|
updatedAt: Date;
|
|
83844
|
-
role: "Admin" | "Viewer" | "
|
|
83849
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83845
83850
|
workspaceInvitationId: string;
|
|
83846
83851
|
forgeProjectId: string;
|
|
83847
83852
|
createdById: string;
|
|
@@ -83849,7 +83854,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
83849
83854
|
email: string;
|
|
83850
83855
|
createdAt: Date;
|
|
83851
83856
|
updatedAt: Date;
|
|
83852
|
-
role: "Admin" | "Viewer" | "
|
|
83857
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83853
83858
|
workspaceInvitationId: string;
|
|
83854
83859
|
forgeProjectId: string;
|
|
83855
83860
|
createdById: string;
|
|
@@ -83859,7 +83864,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
83859
83864
|
email: string;
|
|
83860
83865
|
createdAt: Date;
|
|
83861
83866
|
updatedAt: Date;
|
|
83862
|
-
role: "Admin" | "Viewer" | "
|
|
83867
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83863
83868
|
workspaceInvitationId: string;
|
|
83864
83869
|
forgeProjectId: string;
|
|
83865
83870
|
createdById: string;
|
|
@@ -83869,7 +83874,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
83869
83874
|
email: string;
|
|
83870
83875
|
createdAt: Date;
|
|
83871
83876
|
updatedAt: Date;
|
|
83872
|
-
role: "Admin" | "Viewer" | "
|
|
83877
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83873
83878
|
workspaceInvitationId: string;
|
|
83874
83879
|
forgeProjectId: string;
|
|
83875
83880
|
createdById: string;
|
|
@@ -83881,7 +83886,7 @@ declare const DTOForgeProjectInvitationCreateResponse: z$1.ZodObject<{
|
|
|
83881
83886
|
email: z$1.ZodString;
|
|
83882
83887
|
forgeProjectId: z$1.ZodString;
|
|
83883
83888
|
workspaceInvitationId: z$1.ZodString;
|
|
83884
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
83889
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
83885
83890
|
createdAt: z$1.ZodDate;
|
|
83886
83891
|
updatedAt: z$1.ZodDate;
|
|
83887
83892
|
createdById: z$1.ZodString;
|
|
@@ -83889,7 +83894,7 @@ declare const DTOForgeProjectInvitationCreateResponse: z$1.ZodObject<{
|
|
|
83889
83894
|
email: string;
|
|
83890
83895
|
createdAt: Date;
|
|
83891
83896
|
updatedAt: Date;
|
|
83892
|
-
role: "Admin" | "Viewer" | "
|
|
83897
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83893
83898
|
workspaceInvitationId: string;
|
|
83894
83899
|
forgeProjectId: string;
|
|
83895
83900
|
createdById: string;
|
|
@@ -83897,7 +83902,7 @@ declare const DTOForgeProjectInvitationCreateResponse: z$1.ZodObject<{
|
|
|
83897
83902
|
email: string;
|
|
83898
83903
|
createdAt: Date;
|
|
83899
83904
|
updatedAt: Date;
|
|
83900
|
-
role: "Admin" | "Viewer" | "
|
|
83905
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83901
83906
|
workspaceInvitationId: string;
|
|
83902
83907
|
forgeProjectId: string;
|
|
83903
83908
|
createdById: string;
|
|
@@ -83907,7 +83912,7 @@ declare const DTOForgeProjectInvitationCreateResponse: z$1.ZodObject<{
|
|
|
83907
83912
|
email: string;
|
|
83908
83913
|
createdAt: Date;
|
|
83909
83914
|
updatedAt: Date;
|
|
83910
|
-
role: "Admin" | "Viewer" | "
|
|
83915
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83911
83916
|
workspaceInvitationId: string;
|
|
83912
83917
|
forgeProjectId: string;
|
|
83913
83918
|
createdById: string;
|
|
@@ -83917,7 +83922,7 @@ declare const DTOForgeProjectInvitationCreateResponse: z$1.ZodObject<{
|
|
|
83917
83922
|
email: string;
|
|
83918
83923
|
createdAt: Date;
|
|
83919
83924
|
updatedAt: Date;
|
|
83920
|
-
role: "Admin" | "Viewer" | "
|
|
83925
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83921
83926
|
workspaceInvitationId: string;
|
|
83922
83927
|
forgeProjectId: string;
|
|
83923
83928
|
createdById: string;
|
|
@@ -83929,7 +83934,7 @@ declare const DTOForgeProjectInvitationUpdateResponse: z$1.ZodObject<{
|
|
|
83929
83934
|
email: z$1.ZodString;
|
|
83930
83935
|
forgeProjectId: z$1.ZodString;
|
|
83931
83936
|
workspaceInvitationId: z$1.ZodString;
|
|
83932
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
83937
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
83933
83938
|
createdAt: z$1.ZodDate;
|
|
83934
83939
|
updatedAt: z$1.ZodDate;
|
|
83935
83940
|
createdById: z$1.ZodString;
|
|
@@ -83937,7 +83942,7 @@ declare const DTOForgeProjectInvitationUpdateResponse: z$1.ZodObject<{
|
|
|
83937
83942
|
email: string;
|
|
83938
83943
|
createdAt: Date;
|
|
83939
83944
|
updatedAt: Date;
|
|
83940
|
-
role: "Admin" | "Viewer" | "
|
|
83945
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83941
83946
|
workspaceInvitationId: string;
|
|
83942
83947
|
forgeProjectId: string;
|
|
83943
83948
|
createdById: string;
|
|
@@ -83945,7 +83950,7 @@ declare const DTOForgeProjectInvitationUpdateResponse: z$1.ZodObject<{
|
|
|
83945
83950
|
email: string;
|
|
83946
83951
|
createdAt: Date;
|
|
83947
83952
|
updatedAt: Date;
|
|
83948
|
-
role: "Admin" | "Viewer" | "
|
|
83953
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83949
83954
|
workspaceInvitationId: string;
|
|
83950
83955
|
forgeProjectId: string;
|
|
83951
83956
|
createdById: string;
|
|
@@ -83955,7 +83960,7 @@ declare const DTOForgeProjectInvitationUpdateResponse: z$1.ZodObject<{
|
|
|
83955
83960
|
email: string;
|
|
83956
83961
|
createdAt: Date;
|
|
83957
83962
|
updatedAt: Date;
|
|
83958
|
-
role: "Admin" | "Viewer" | "
|
|
83963
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83959
83964
|
workspaceInvitationId: string;
|
|
83960
83965
|
forgeProjectId: string;
|
|
83961
83966
|
createdById: string;
|
|
@@ -83965,7 +83970,7 @@ declare const DTOForgeProjectInvitationUpdateResponse: z$1.ZodObject<{
|
|
|
83965
83970
|
email: string;
|
|
83966
83971
|
createdAt: Date;
|
|
83967
83972
|
updatedAt: Date;
|
|
83968
|
-
role: "Admin" | "Viewer" | "
|
|
83973
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
83969
83974
|
workspaceInvitationId: string;
|
|
83970
83975
|
forgeProjectId: string;
|
|
83971
83976
|
createdById: string;
|
|
@@ -97834,14 +97839,14 @@ declare const DTODeleteForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
97834
97839
|
}>;
|
|
97835
97840
|
type DTODeleteForgeProjectIterationResponse = z$1.infer<typeof DTODeleteForgeProjectIterationResponse>;
|
|
97836
97841
|
|
|
97837
|
-
declare const DTOForgeProjectMemberRole: z$1.ZodEnum<["Viewer", "
|
|
97842
|
+
declare const DTOForgeProjectMemberRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
97838
97843
|
type DTOForgeProjectMemberRole = z$1.infer<typeof DTOForgeProjectMemberRole>;
|
|
97839
97844
|
declare const DTOForgeProjectMember: z$1.ZodObject<{
|
|
97840
97845
|
userId: z$1.ZodString;
|
|
97841
97846
|
forgeProjectId: z$1.ZodString;
|
|
97842
97847
|
workspaceMembershipId: z$1.ZodString;
|
|
97843
97848
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97844
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
97849
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
97845
97850
|
} & {
|
|
97846
97851
|
user: z$1.ZodObject<{
|
|
97847
97852
|
id: z$1.ZodString;
|
|
@@ -97876,7 +97881,7 @@ declare const DTOForgeProjectMember: z$1.ZodObject<{
|
|
|
97876
97881
|
avatar?: string | undefined;
|
|
97877
97882
|
};
|
|
97878
97883
|
}>;
|
|
97879
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "
|
|
97884
|
+
effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
97880
97885
|
}, "strip", z$1.ZodTypeAny, {
|
|
97881
97886
|
user: {
|
|
97882
97887
|
id: string;
|
|
@@ -97888,8 +97893,8 @@ declare const DTOForgeProjectMember: z$1.ZodObject<{
|
|
|
97888
97893
|
};
|
|
97889
97894
|
};
|
|
97890
97895
|
userId: string;
|
|
97891
|
-
role: "Admin" | "Viewer" | "
|
|
97892
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
97896
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
97897
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
97893
97898
|
forgeProjectId: string;
|
|
97894
97899
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97895
97900
|
workspaceMembershipId: string;
|
|
@@ -97904,8 +97909,8 @@ declare const DTOForgeProjectMember: z$1.ZodObject<{
|
|
|
97904
97909
|
};
|
|
97905
97910
|
};
|
|
97906
97911
|
userId: string;
|
|
97907
|
-
role: "Admin" | "Viewer" | "
|
|
97908
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
97912
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
97913
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
97909
97914
|
forgeProjectId: string;
|
|
97910
97915
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97911
97916
|
workspaceMembershipId: string;
|
|
@@ -97916,7 +97921,7 @@ declare const DTOCreateForgeProjectMember: z$1.ZodObject<Pick<{
|
|
|
97916
97921
|
forgeProjectId: z$1.ZodString;
|
|
97917
97922
|
workspaceMembershipId: z$1.ZodString;
|
|
97918
97923
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97919
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
97924
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
97920
97925
|
} & {
|
|
97921
97926
|
user: z$1.ZodObject<{
|
|
97922
97927
|
id: z$1.ZodString;
|
|
@@ -97951,21 +97956,21 @@ declare const DTOCreateForgeProjectMember: z$1.ZodObject<Pick<{
|
|
|
97951
97956
|
avatar?: string | undefined;
|
|
97952
97957
|
};
|
|
97953
97958
|
}>;
|
|
97954
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "
|
|
97959
|
+
effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
97955
97960
|
}, "userId" | "role">, "strip", z$1.ZodTypeAny, {
|
|
97956
97961
|
userId: string;
|
|
97957
|
-
role: "Admin" | "Viewer" | "
|
|
97962
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
97958
97963
|
}, {
|
|
97959
97964
|
userId: string;
|
|
97960
|
-
role: "Admin" | "Viewer" | "
|
|
97965
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
97961
97966
|
}>;
|
|
97962
97967
|
type DTOCreateForgeProjectMember = z$1.infer<typeof DTOCreateForgeProjectMember>;
|
|
97963
|
-
declare const DTOUpdateForgeProjectMember: z$1.ZodObject<
|
|
97968
|
+
declare const DTOUpdateForgeProjectMember: z$1.ZodObject<Pick<{
|
|
97964
97969
|
userId: z$1.ZodString;
|
|
97965
97970
|
forgeProjectId: z$1.ZodString;
|
|
97966
97971
|
workspaceMembershipId: z$1.ZodString;
|
|
97967
97972
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97968
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
97973
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
97969
97974
|
} & {
|
|
97970
97975
|
user: z$1.ZodObject<{
|
|
97971
97976
|
id: z$1.ZodString;
|
|
@@ -98000,11 +98005,13 @@ declare const DTOUpdateForgeProjectMember: z$1.ZodObject<Omit<Pick<{
|
|
|
98000
98005
|
avatar?: string | undefined;
|
|
98001
98006
|
};
|
|
98002
98007
|
}>;
|
|
98003
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "
|
|
98004
|
-
}, "userId" | "role">, "
|
|
98005
|
-
|
|
98008
|
+
effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98009
|
+
}, "userId" | "role">, "strip", z$1.ZodTypeAny, {
|
|
98010
|
+
userId: string;
|
|
98011
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98006
98012
|
}, {
|
|
98007
|
-
|
|
98013
|
+
userId: string;
|
|
98014
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98008
98015
|
}>;
|
|
98009
98016
|
type DTOUpdateForgeProjectMember = z$1.infer<typeof DTOUpdateForgeProjectMember>;
|
|
98010
98017
|
declare const DTORemoveForgeProjectMember: z$1.ZodObject<Pick<{
|
|
@@ -98012,7 +98019,7 @@ declare const DTORemoveForgeProjectMember: z$1.ZodObject<Pick<{
|
|
|
98012
98019
|
forgeProjectId: z$1.ZodString;
|
|
98013
98020
|
workspaceMembershipId: z$1.ZodString;
|
|
98014
98021
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98015
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
98022
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98016
98023
|
} & {
|
|
98017
98024
|
user: z$1.ZodObject<{
|
|
98018
98025
|
id: z$1.ZodString;
|
|
@@ -98047,7 +98054,7 @@ declare const DTORemoveForgeProjectMember: z$1.ZodObject<Pick<{
|
|
|
98047
98054
|
avatar?: string | undefined;
|
|
98048
98055
|
};
|
|
98049
98056
|
}>;
|
|
98050
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "
|
|
98057
|
+
effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98051
98058
|
}, "userId">, "strip", z$1.ZodTypeAny, {
|
|
98052
98059
|
userId: string;
|
|
98053
98060
|
}, {
|
|
@@ -98060,7 +98067,7 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98060
98067
|
forgeProjectId: z$1.ZodString;
|
|
98061
98068
|
workspaceMembershipId: z$1.ZodString;
|
|
98062
98069
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98063
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
98070
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98064
98071
|
} & {
|
|
98065
98072
|
user: z$1.ZodObject<{
|
|
98066
98073
|
id: z$1.ZodString;
|
|
@@ -98095,7 +98102,7 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98095
98102
|
avatar?: string | undefined;
|
|
98096
98103
|
};
|
|
98097
98104
|
}>;
|
|
98098
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "
|
|
98105
|
+
effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98099
98106
|
}, "strip", z$1.ZodTypeAny, {
|
|
98100
98107
|
user: {
|
|
98101
98108
|
id: string;
|
|
@@ -98107,8 +98114,8 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98107
98114
|
};
|
|
98108
98115
|
};
|
|
98109
98116
|
userId: string;
|
|
98110
|
-
role: "Admin" | "Viewer" | "
|
|
98111
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98117
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98118
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98112
98119
|
forgeProjectId: string;
|
|
98113
98120
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98114
98121
|
workspaceMembershipId: string;
|
|
@@ -98123,8 +98130,8 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98123
98130
|
};
|
|
98124
98131
|
};
|
|
98125
98132
|
userId: string;
|
|
98126
|
-
role: "Admin" | "Viewer" | "
|
|
98127
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98133
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98134
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98128
98135
|
forgeProjectId: string;
|
|
98129
98136
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98130
98137
|
workspaceMembershipId: string;
|
|
@@ -98133,7 +98140,7 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98133
98140
|
email: z$1.ZodString;
|
|
98134
98141
|
forgeProjectId: z$1.ZodString;
|
|
98135
98142
|
workspaceInvitationId: z$1.ZodString;
|
|
98136
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
98143
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98137
98144
|
createdAt: z$1.ZodDate;
|
|
98138
98145
|
updatedAt: z$1.ZodDate;
|
|
98139
98146
|
createdById: z$1.ZodString;
|
|
@@ -98141,7 +98148,7 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98141
98148
|
email: string;
|
|
98142
98149
|
createdAt: Date;
|
|
98143
98150
|
updatedAt: Date;
|
|
98144
|
-
role: "Admin" | "Viewer" | "
|
|
98151
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98145
98152
|
workspaceInvitationId: string;
|
|
98146
98153
|
forgeProjectId: string;
|
|
98147
98154
|
createdById: string;
|
|
@@ -98149,7 +98156,7 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98149
98156
|
email: string;
|
|
98150
98157
|
createdAt: Date;
|
|
98151
98158
|
updatedAt: Date;
|
|
98152
|
-
role: "Admin" | "Viewer" | "
|
|
98159
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98153
98160
|
workspaceInvitationId: string;
|
|
98154
98161
|
forgeProjectId: string;
|
|
98155
98162
|
createdById: string;
|
|
@@ -98166,8 +98173,8 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98166
98173
|
};
|
|
98167
98174
|
};
|
|
98168
98175
|
userId: string;
|
|
98169
|
-
role: "Admin" | "Viewer" | "
|
|
98170
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98176
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98177
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98171
98178
|
forgeProjectId: string;
|
|
98172
98179
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98173
98180
|
workspaceMembershipId: string;
|
|
@@ -98176,7 +98183,7 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98176
98183
|
email: string;
|
|
98177
98184
|
createdAt: Date;
|
|
98178
98185
|
updatedAt: Date;
|
|
98179
|
-
role: "Admin" | "Viewer" | "
|
|
98186
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98180
98187
|
workspaceInvitationId: string;
|
|
98181
98188
|
forgeProjectId: string;
|
|
98182
98189
|
createdById: string;
|
|
@@ -98193,8 +98200,8 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98193
98200
|
};
|
|
98194
98201
|
};
|
|
98195
98202
|
userId: string;
|
|
98196
|
-
role: "Admin" | "Viewer" | "
|
|
98197
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98203
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98204
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98198
98205
|
forgeProjectId: string;
|
|
98199
98206
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98200
98207
|
workspaceMembershipId: string;
|
|
@@ -98203,7 +98210,7 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
98203
98210
|
email: string;
|
|
98204
98211
|
createdAt: Date;
|
|
98205
98212
|
updatedAt: Date;
|
|
98206
|
-
role: "Admin" | "Viewer" | "
|
|
98213
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98207
98214
|
workspaceInvitationId: string;
|
|
98208
98215
|
forgeProjectId: string;
|
|
98209
98216
|
createdById: string;
|
|
@@ -98216,7 +98223,7 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
98216
98223
|
forgeProjectId: z$1.ZodString;
|
|
98217
98224
|
workspaceMembershipId: z$1.ZodString;
|
|
98218
98225
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98219
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
98226
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98220
98227
|
} & {
|
|
98221
98228
|
user: z$1.ZodObject<{
|
|
98222
98229
|
id: z$1.ZodString;
|
|
@@ -98251,7 +98258,7 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
98251
98258
|
avatar?: string | undefined;
|
|
98252
98259
|
};
|
|
98253
98260
|
}>;
|
|
98254
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "
|
|
98261
|
+
effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98255
98262
|
}, "strip", z$1.ZodTypeAny, {
|
|
98256
98263
|
user: {
|
|
98257
98264
|
id: string;
|
|
@@ -98263,8 +98270,8 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
98263
98270
|
};
|
|
98264
98271
|
};
|
|
98265
98272
|
userId: string;
|
|
98266
|
-
role: "Admin" | "Viewer" | "
|
|
98267
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98273
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98274
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98268
98275
|
forgeProjectId: string;
|
|
98269
98276
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98270
98277
|
workspaceMembershipId: string;
|
|
@@ -98279,8 +98286,8 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
98279
98286
|
};
|
|
98280
98287
|
};
|
|
98281
98288
|
userId: string;
|
|
98282
|
-
role: "Admin" | "Viewer" | "
|
|
98283
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98289
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98290
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98284
98291
|
forgeProjectId: string;
|
|
98285
98292
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98286
98293
|
workspaceMembershipId: string;
|
|
@@ -98297,8 +98304,8 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
98297
98304
|
};
|
|
98298
98305
|
};
|
|
98299
98306
|
userId: string;
|
|
98300
|
-
role: "Admin" | "Viewer" | "
|
|
98301
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98307
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98308
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98302
98309
|
forgeProjectId: string;
|
|
98303
98310
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98304
98311
|
workspaceMembershipId: string;
|
|
@@ -98315,8 +98322,8 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
98315
98322
|
};
|
|
98316
98323
|
};
|
|
98317
98324
|
userId: string;
|
|
98318
|
-
role: "Admin" | "Viewer" | "
|
|
98319
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98325
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98326
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98320
98327
|
forgeProjectId: string;
|
|
98321
98328
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98322
98329
|
workspaceMembershipId: string;
|
|
@@ -98329,7 +98336,7 @@ declare const DTOForgeProjectMemberCreateResponse: z$1.ZodObject<{
|
|
|
98329
98336
|
forgeProjectId: z$1.ZodString;
|
|
98330
98337
|
workspaceMembershipId: z$1.ZodString;
|
|
98331
98338
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98332
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
98339
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98333
98340
|
} & {
|
|
98334
98341
|
user: z$1.ZodObject<{
|
|
98335
98342
|
id: z$1.ZodString;
|
|
@@ -98364,7 +98371,7 @@ declare const DTOForgeProjectMemberCreateResponse: z$1.ZodObject<{
|
|
|
98364
98371
|
avatar?: string | undefined;
|
|
98365
98372
|
};
|
|
98366
98373
|
}>;
|
|
98367
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "
|
|
98374
|
+
effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98368
98375
|
}, "strip", z$1.ZodTypeAny, {
|
|
98369
98376
|
user: {
|
|
98370
98377
|
id: string;
|
|
@@ -98376,8 +98383,8 @@ declare const DTOForgeProjectMemberCreateResponse: z$1.ZodObject<{
|
|
|
98376
98383
|
};
|
|
98377
98384
|
};
|
|
98378
98385
|
userId: string;
|
|
98379
|
-
role: "Admin" | "Viewer" | "
|
|
98380
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98386
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98387
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98381
98388
|
forgeProjectId: string;
|
|
98382
98389
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98383
98390
|
workspaceMembershipId: string;
|
|
@@ -98392,8 +98399,8 @@ declare const DTOForgeProjectMemberCreateResponse: z$1.ZodObject<{
|
|
|
98392
98399
|
};
|
|
98393
98400
|
};
|
|
98394
98401
|
userId: string;
|
|
98395
|
-
role: "Admin" | "Viewer" | "
|
|
98396
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98402
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98403
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98397
98404
|
forgeProjectId: string;
|
|
98398
98405
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98399
98406
|
workspaceMembershipId: string;
|
|
@@ -98410,8 +98417,8 @@ declare const DTOForgeProjectMemberCreateResponse: z$1.ZodObject<{
|
|
|
98410
98417
|
};
|
|
98411
98418
|
};
|
|
98412
98419
|
userId: string;
|
|
98413
|
-
role: "Admin" | "Viewer" | "
|
|
98414
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98420
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98421
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98415
98422
|
forgeProjectId: string;
|
|
98416
98423
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98417
98424
|
workspaceMembershipId: string;
|
|
@@ -98428,8 +98435,8 @@ declare const DTOForgeProjectMemberCreateResponse: z$1.ZodObject<{
|
|
|
98428
98435
|
};
|
|
98429
98436
|
};
|
|
98430
98437
|
userId: string;
|
|
98431
|
-
role: "Admin" | "Viewer" | "
|
|
98432
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98438
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98439
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98433
98440
|
forgeProjectId: string;
|
|
98434
98441
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98435
98442
|
workspaceMembershipId: string;
|
|
@@ -98442,7 +98449,7 @@ declare const DTOForgeProjectMemberUpdateResponse: z$1.ZodObject<{
|
|
|
98442
98449
|
forgeProjectId: z$1.ZodString;
|
|
98443
98450
|
workspaceMembershipId: z$1.ZodString;
|
|
98444
98451
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98445
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
98452
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98446
98453
|
} & {
|
|
98447
98454
|
user: z$1.ZodObject<{
|
|
98448
98455
|
id: z$1.ZodString;
|
|
@@ -98477,7 +98484,7 @@ declare const DTOForgeProjectMemberUpdateResponse: z$1.ZodObject<{
|
|
|
98477
98484
|
avatar?: string | undefined;
|
|
98478
98485
|
};
|
|
98479
98486
|
}>;
|
|
98480
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "
|
|
98487
|
+
effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98481
98488
|
}, "strip", z$1.ZodTypeAny, {
|
|
98482
98489
|
user: {
|
|
98483
98490
|
id: string;
|
|
@@ -98489,8 +98496,8 @@ declare const DTOForgeProjectMemberUpdateResponse: z$1.ZodObject<{
|
|
|
98489
98496
|
};
|
|
98490
98497
|
};
|
|
98491
98498
|
userId: string;
|
|
98492
|
-
role: "Admin" | "Viewer" | "
|
|
98493
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98499
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98500
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98494
98501
|
forgeProjectId: string;
|
|
98495
98502
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98496
98503
|
workspaceMembershipId: string;
|
|
@@ -98505,8 +98512,8 @@ declare const DTOForgeProjectMemberUpdateResponse: z$1.ZodObject<{
|
|
|
98505
98512
|
};
|
|
98506
98513
|
};
|
|
98507
98514
|
userId: string;
|
|
98508
|
-
role: "Admin" | "Viewer" | "
|
|
98509
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98515
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98516
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98510
98517
|
forgeProjectId: string;
|
|
98511
98518
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98512
98519
|
workspaceMembershipId: string;
|
|
@@ -98523,8 +98530,8 @@ declare const DTOForgeProjectMemberUpdateResponse: z$1.ZodObject<{
|
|
|
98523
98530
|
};
|
|
98524
98531
|
};
|
|
98525
98532
|
userId: string;
|
|
98526
|
-
role: "Admin" | "Viewer" | "
|
|
98527
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98533
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98534
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98528
98535
|
forgeProjectId: string;
|
|
98529
98536
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98530
98537
|
workspaceMembershipId: string;
|
|
@@ -98541,8 +98548,8 @@ declare const DTOForgeProjectMemberUpdateResponse: z$1.ZodObject<{
|
|
|
98541
98548
|
};
|
|
98542
98549
|
};
|
|
98543
98550
|
userId: string;
|
|
98544
|
-
role: "Admin" | "Viewer" | "
|
|
98545
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
98551
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98552
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
98546
98553
|
forgeProjectId: string;
|
|
98547
98554
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98548
98555
|
workspaceMembershipId: string;
|
|
@@ -98562,7 +98569,7 @@ declare const DTOAddMembersToForgeProject: z$1.ZodObject<{
|
|
|
98562
98569
|
email: z$1.ZodString;
|
|
98563
98570
|
forgeProjectId: z$1.ZodString;
|
|
98564
98571
|
workspaceInvitationId: z$1.ZodString;
|
|
98565
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
98572
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
98566
98573
|
createdAt: z$1.ZodDate;
|
|
98567
98574
|
updatedAt: z$1.ZodDate;
|
|
98568
98575
|
createdById: z$1.ZodString;
|
|
@@ -98570,23 +98577,23 @@ declare const DTOAddMembersToForgeProject: z$1.ZodObject<{
|
|
|
98570
98577
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98571
98578
|
}, "strip", z$1.ZodTypeAny, {
|
|
98572
98579
|
email: string;
|
|
98573
|
-
role: "Admin" | "Viewer" | "
|
|
98580
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98574
98581
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98575
98582
|
}, {
|
|
98576
98583
|
email: string;
|
|
98577
|
-
role: "Admin" | "Viewer" | "
|
|
98584
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98578
98585
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98579
98586
|
}>, "many">;
|
|
98580
98587
|
}, "strip", z$1.ZodTypeAny, {
|
|
98581
98588
|
membersToInvite: {
|
|
98582
98589
|
email: string;
|
|
98583
|
-
role: "Admin" | "Viewer" | "
|
|
98590
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98584
98591
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98585
98592
|
}[];
|
|
98586
98593
|
}, {
|
|
98587
98594
|
membersToInvite: {
|
|
98588
98595
|
email: string;
|
|
98589
|
-
role: "Admin" | "Viewer" | "
|
|
98596
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
98590
98597
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98591
98598
|
}[];
|
|
98592
98599
|
}>;
|
|
@@ -98754,7 +98761,8 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
98754
98761
|
tags: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
98755
98762
|
updatedAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
98756
98763
|
workspaceId: z$1.ZodString;
|
|
98757
|
-
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
98764
|
+
accessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
98765
|
+
defaultRole: z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>;
|
|
98758
98766
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
98759
98767
|
emoji: z$1.ZodOptional<z$1.ZodString>;
|
|
98760
98768
|
}, "fpContextId"> & {
|
|
@@ -98951,105 +98959,6 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
98951
98959
|
content: string;
|
|
98952
98960
|
} | undefined;
|
|
98953
98961
|
}>;
|
|
98954
|
-
members: z$1.ZodArray<z$1.ZodObject<{
|
|
98955
|
-
userId: z$1.ZodString;
|
|
98956
|
-
forgeProjectId: z$1.ZodString;
|
|
98957
|
-
workspaceMembershipId: z$1.ZodString;
|
|
98958
|
-
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98959
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98960
|
-
} & {
|
|
98961
|
-
user: z$1.ZodObject<{
|
|
98962
|
-
id: z$1.ZodString;
|
|
98963
|
-
email: z$1.ZodString;
|
|
98964
|
-
profile: z$1.ZodObject<{
|
|
98965
|
-
name: z$1.ZodString;
|
|
98966
|
-
nickname: z$1.ZodOptional<z$1.ZodString>;
|
|
98967
|
-
avatar: z$1.ZodOptional<z$1.ZodString>;
|
|
98968
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
98969
|
-
name: string;
|
|
98970
|
-
nickname?: string | undefined;
|
|
98971
|
-
avatar?: string | undefined;
|
|
98972
|
-
}, {
|
|
98973
|
-
name: string;
|
|
98974
|
-
nickname?: string | undefined;
|
|
98975
|
-
avatar?: string | undefined;
|
|
98976
|
-
}>;
|
|
98977
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
98978
|
-
id: string;
|
|
98979
|
-
email: string;
|
|
98980
|
-
profile: {
|
|
98981
|
-
name: string;
|
|
98982
|
-
nickname?: string | undefined;
|
|
98983
|
-
avatar?: string | undefined;
|
|
98984
|
-
};
|
|
98985
|
-
}, {
|
|
98986
|
-
id: string;
|
|
98987
|
-
email: string;
|
|
98988
|
-
profile: {
|
|
98989
|
-
name: string;
|
|
98990
|
-
nickname?: string | undefined;
|
|
98991
|
-
avatar?: string | undefined;
|
|
98992
|
-
};
|
|
98993
|
-
}>;
|
|
98994
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98995
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
98996
|
-
user: {
|
|
98997
|
-
id: string;
|
|
98998
|
-
email: string;
|
|
98999
|
-
profile: {
|
|
99000
|
-
name: string;
|
|
99001
|
-
nickname?: string | undefined;
|
|
99002
|
-
avatar?: string | undefined;
|
|
99003
|
-
};
|
|
99004
|
-
};
|
|
99005
|
-
userId: string;
|
|
99006
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99007
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99008
|
-
forgeProjectId: string;
|
|
99009
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99010
|
-
workspaceMembershipId: string;
|
|
99011
|
-
}, {
|
|
99012
|
-
user: {
|
|
99013
|
-
id: string;
|
|
99014
|
-
email: string;
|
|
99015
|
-
profile: {
|
|
99016
|
-
name: string;
|
|
99017
|
-
nickname?: string | undefined;
|
|
99018
|
-
avatar?: string | undefined;
|
|
99019
|
-
};
|
|
99020
|
-
};
|
|
99021
|
-
userId: string;
|
|
99022
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99023
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99024
|
-
forgeProjectId: string;
|
|
99025
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99026
|
-
workspaceMembershipId: string;
|
|
99027
|
-
}>, "many">;
|
|
99028
|
-
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
99029
|
-
email: z$1.ZodString;
|
|
99030
|
-
forgeProjectId: z$1.ZodString;
|
|
99031
|
-
workspaceInvitationId: z$1.ZodString;
|
|
99032
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99033
|
-
createdAt: z$1.ZodDate;
|
|
99034
|
-
updatedAt: z$1.ZodDate;
|
|
99035
|
-
createdById: z$1.ZodString;
|
|
99036
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
99037
|
-
email: string;
|
|
99038
|
-
createdAt: Date;
|
|
99039
|
-
updatedAt: Date;
|
|
99040
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99041
|
-
workspaceInvitationId: string;
|
|
99042
|
-
forgeProjectId: string;
|
|
99043
|
-
createdById: string;
|
|
99044
|
-
}, {
|
|
99045
|
-
email: string;
|
|
99046
|
-
createdAt: Date;
|
|
99047
|
-
updatedAt: Date;
|
|
99048
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99049
|
-
workspaceInvitationId: string;
|
|
99050
|
-
forgeProjectId: string;
|
|
99051
|
-
createdById: string;
|
|
99052
|
-
}>, "many">;
|
|
99053
98962
|
}, "strip", z$1.ZodTypeAny, {
|
|
99054
98963
|
id: string;
|
|
99055
98964
|
createdAt: Date;
|
|
@@ -99059,34 +98968,8 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
99059
98968
|
description?: string | undefined;
|
|
99060
98969
|
};
|
|
99061
98970
|
tags: string[];
|
|
99062
|
-
members: {
|
|
99063
|
-
user: {
|
|
99064
|
-
id: string;
|
|
99065
|
-
email: string;
|
|
99066
|
-
profile: {
|
|
99067
|
-
name: string;
|
|
99068
|
-
nickname?: string | undefined;
|
|
99069
|
-
avatar?: string | undefined;
|
|
99070
|
-
};
|
|
99071
|
-
};
|
|
99072
|
-
userId: string;
|
|
99073
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99074
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99075
|
-
forgeProjectId: string;
|
|
99076
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99077
|
-
workspaceMembershipId: string;
|
|
99078
|
-
}[];
|
|
99079
|
-
invitations: {
|
|
99080
|
-
email: string;
|
|
99081
|
-
createdAt: Date;
|
|
99082
|
-
updatedAt: Date;
|
|
99083
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99084
|
-
workspaceInvitationId: string;
|
|
99085
|
-
forgeProjectId: string;
|
|
99086
|
-
createdById: string;
|
|
99087
|
-
}[];
|
|
99088
98971
|
workspaceId: string;
|
|
99089
|
-
accessMode: "Open" | "InviteOnly";
|
|
98972
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
99090
98973
|
context: {
|
|
99091
98974
|
id: string;
|
|
99092
98975
|
name: string;
|
|
@@ -99133,6 +99016,7 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
99133
99016
|
} | undefined;
|
|
99134
99017
|
};
|
|
99135
99018
|
instruction: string | null;
|
|
99019
|
+
defaultRole: "Viewer" | "Builder";
|
|
99136
99020
|
emoji?: string | undefined;
|
|
99137
99021
|
updatedAt?: Date | undefined;
|
|
99138
99022
|
createdByUserId?: string | undefined;
|
|
@@ -99145,34 +99029,8 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
99145
99029
|
name: string;
|
|
99146
99030
|
description?: string | undefined;
|
|
99147
99031
|
};
|
|
99148
|
-
members: {
|
|
99149
|
-
user: {
|
|
99150
|
-
id: string;
|
|
99151
|
-
email: string;
|
|
99152
|
-
profile: {
|
|
99153
|
-
name: string;
|
|
99154
|
-
nickname?: string | undefined;
|
|
99155
|
-
avatar?: string | undefined;
|
|
99156
|
-
};
|
|
99157
|
-
};
|
|
99158
|
-
userId: string;
|
|
99159
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99160
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99161
|
-
forgeProjectId: string;
|
|
99162
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99163
|
-
workspaceMembershipId: string;
|
|
99164
|
-
}[];
|
|
99165
|
-
invitations: {
|
|
99166
|
-
email: string;
|
|
99167
|
-
createdAt: Date;
|
|
99168
|
-
updatedAt: Date;
|
|
99169
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99170
|
-
workspaceInvitationId: string;
|
|
99171
|
-
forgeProjectId: string;
|
|
99172
|
-
createdById: string;
|
|
99173
|
-
}[];
|
|
99174
99032
|
workspaceId: string;
|
|
99175
|
-
accessMode: "Open" | "InviteOnly";
|
|
99033
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
99176
99034
|
context: {
|
|
99177
99035
|
id: string;
|
|
99178
99036
|
name: string;
|
|
@@ -99224,6 +99082,7 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
99224
99082
|
updatedAt?: Date | undefined;
|
|
99225
99083
|
createdByUserId?: string | undefined;
|
|
99226
99084
|
isArchived?: boolean | undefined;
|
|
99085
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
99227
99086
|
}>;
|
|
99228
99087
|
type DTOForgeProject = z$1.infer<typeof DTOForgeProject>;
|
|
99229
99088
|
declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
@@ -99247,7 +99106,8 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99247
99106
|
tags: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
99248
99107
|
updatedAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
99249
99108
|
workspaceId: z$1.ZodString;
|
|
99250
|
-
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
99109
|
+
accessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
99110
|
+
defaultRole: z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>;
|
|
99251
99111
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
99252
99112
|
emoji: z$1.ZodOptional<z$1.ZodString>;
|
|
99253
99113
|
}, "fpContextId"> & {
|
|
@@ -99444,105 +99304,6 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99444
99304
|
content: string;
|
|
99445
99305
|
} | undefined;
|
|
99446
99306
|
}>;
|
|
99447
|
-
members: z$1.ZodArray<z$1.ZodObject<{
|
|
99448
|
-
userId: z$1.ZodString;
|
|
99449
|
-
forgeProjectId: z$1.ZodString;
|
|
99450
|
-
workspaceMembershipId: z$1.ZodString;
|
|
99451
|
-
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
99452
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99453
|
-
} & {
|
|
99454
|
-
user: z$1.ZodObject<{
|
|
99455
|
-
id: z$1.ZodString;
|
|
99456
|
-
email: z$1.ZodString;
|
|
99457
|
-
profile: z$1.ZodObject<{
|
|
99458
|
-
name: z$1.ZodString;
|
|
99459
|
-
nickname: z$1.ZodOptional<z$1.ZodString>;
|
|
99460
|
-
avatar: z$1.ZodOptional<z$1.ZodString>;
|
|
99461
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
99462
|
-
name: string;
|
|
99463
|
-
nickname?: string | undefined;
|
|
99464
|
-
avatar?: string | undefined;
|
|
99465
|
-
}, {
|
|
99466
|
-
name: string;
|
|
99467
|
-
nickname?: string | undefined;
|
|
99468
|
-
avatar?: string | undefined;
|
|
99469
|
-
}>;
|
|
99470
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
99471
|
-
id: string;
|
|
99472
|
-
email: string;
|
|
99473
|
-
profile: {
|
|
99474
|
-
name: string;
|
|
99475
|
-
nickname?: string | undefined;
|
|
99476
|
-
avatar?: string | undefined;
|
|
99477
|
-
};
|
|
99478
|
-
}, {
|
|
99479
|
-
id: string;
|
|
99480
|
-
email: string;
|
|
99481
|
-
profile: {
|
|
99482
|
-
name: string;
|
|
99483
|
-
nickname?: string | undefined;
|
|
99484
|
-
avatar?: string | undefined;
|
|
99485
|
-
};
|
|
99486
|
-
}>;
|
|
99487
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99488
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
99489
|
-
user: {
|
|
99490
|
-
id: string;
|
|
99491
|
-
email: string;
|
|
99492
|
-
profile: {
|
|
99493
|
-
name: string;
|
|
99494
|
-
nickname?: string | undefined;
|
|
99495
|
-
avatar?: string | undefined;
|
|
99496
|
-
};
|
|
99497
|
-
};
|
|
99498
|
-
userId: string;
|
|
99499
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99500
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99501
|
-
forgeProjectId: string;
|
|
99502
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99503
|
-
workspaceMembershipId: string;
|
|
99504
|
-
}, {
|
|
99505
|
-
user: {
|
|
99506
|
-
id: string;
|
|
99507
|
-
email: string;
|
|
99508
|
-
profile: {
|
|
99509
|
-
name: string;
|
|
99510
|
-
nickname?: string | undefined;
|
|
99511
|
-
avatar?: string | undefined;
|
|
99512
|
-
};
|
|
99513
|
-
};
|
|
99514
|
-
userId: string;
|
|
99515
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99516
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99517
|
-
forgeProjectId: string;
|
|
99518
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99519
|
-
workspaceMembershipId: string;
|
|
99520
|
-
}>, "many">;
|
|
99521
|
-
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
99522
|
-
email: z$1.ZodString;
|
|
99523
|
-
forgeProjectId: z$1.ZodString;
|
|
99524
|
-
workspaceInvitationId: z$1.ZodString;
|
|
99525
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99526
|
-
createdAt: z$1.ZodDate;
|
|
99527
|
-
updatedAt: z$1.ZodDate;
|
|
99528
|
-
createdById: z$1.ZodString;
|
|
99529
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
99530
|
-
email: string;
|
|
99531
|
-
createdAt: Date;
|
|
99532
|
-
updatedAt: Date;
|
|
99533
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99534
|
-
workspaceInvitationId: string;
|
|
99535
|
-
forgeProjectId: string;
|
|
99536
|
-
createdById: string;
|
|
99537
|
-
}, {
|
|
99538
|
-
email: string;
|
|
99539
|
-
createdAt: Date;
|
|
99540
|
-
updatedAt: Date;
|
|
99541
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99542
|
-
workspaceInvitationId: string;
|
|
99543
|
-
forgeProjectId: string;
|
|
99544
|
-
createdById: string;
|
|
99545
|
-
}>, "many">;
|
|
99546
99307
|
}, "strip", z$1.ZodTypeAny, {
|
|
99547
99308
|
id: string;
|
|
99548
99309
|
createdAt: Date;
|
|
@@ -99552,34 +99313,8 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99552
99313
|
description?: string | undefined;
|
|
99553
99314
|
};
|
|
99554
99315
|
tags: string[];
|
|
99555
|
-
members: {
|
|
99556
|
-
user: {
|
|
99557
|
-
id: string;
|
|
99558
|
-
email: string;
|
|
99559
|
-
profile: {
|
|
99560
|
-
name: string;
|
|
99561
|
-
nickname?: string | undefined;
|
|
99562
|
-
avatar?: string | undefined;
|
|
99563
|
-
};
|
|
99564
|
-
};
|
|
99565
|
-
userId: string;
|
|
99566
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99567
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99568
|
-
forgeProjectId: string;
|
|
99569
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99570
|
-
workspaceMembershipId: string;
|
|
99571
|
-
}[];
|
|
99572
|
-
invitations: {
|
|
99573
|
-
email: string;
|
|
99574
|
-
createdAt: Date;
|
|
99575
|
-
updatedAt: Date;
|
|
99576
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99577
|
-
workspaceInvitationId: string;
|
|
99578
|
-
forgeProjectId: string;
|
|
99579
|
-
createdById: string;
|
|
99580
|
-
}[];
|
|
99581
99316
|
workspaceId: string;
|
|
99582
|
-
accessMode: "Open" | "InviteOnly";
|
|
99317
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
99583
99318
|
context: {
|
|
99584
99319
|
id: string;
|
|
99585
99320
|
name: string;
|
|
@@ -99626,6 +99361,7 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99626
99361
|
} | undefined;
|
|
99627
99362
|
};
|
|
99628
99363
|
instruction: string | null;
|
|
99364
|
+
defaultRole: "Viewer" | "Builder";
|
|
99629
99365
|
emoji?: string | undefined;
|
|
99630
99366
|
updatedAt?: Date | undefined;
|
|
99631
99367
|
createdByUserId?: string | undefined;
|
|
@@ -99638,34 +99374,8 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99638
99374
|
name: string;
|
|
99639
99375
|
description?: string | undefined;
|
|
99640
99376
|
};
|
|
99641
|
-
members: {
|
|
99642
|
-
user: {
|
|
99643
|
-
id: string;
|
|
99644
|
-
email: string;
|
|
99645
|
-
profile: {
|
|
99646
|
-
name: string;
|
|
99647
|
-
nickname?: string | undefined;
|
|
99648
|
-
avatar?: string | undefined;
|
|
99649
|
-
};
|
|
99650
|
-
};
|
|
99651
|
-
userId: string;
|
|
99652
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99653
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99654
|
-
forgeProjectId: string;
|
|
99655
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99656
|
-
workspaceMembershipId: string;
|
|
99657
|
-
}[];
|
|
99658
|
-
invitations: {
|
|
99659
|
-
email: string;
|
|
99660
|
-
createdAt: Date;
|
|
99661
|
-
updatedAt: Date;
|
|
99662
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99663
|
-
workspaceInvitationId: string;
|
|
99664
|
-
forgeProjectId: string;
|
|
99665
|
-
createdById: string;
|
|
99666
|
-
}[];
|
|
99667
99377
|
workspaceId: string;
|
|
99668
|
-
accessMode: "Open" | "InviteOnly";
|
|
99378
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
99669
99379
|
context: {
|
|
99670
99380
|
id: string;
|
|
99671
99381
|
name: string;
|
|
@@ -99717,6 +99427,7 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99717
99427
|
updatedAt?: Date | undefined;
|
|
99718
99428
|
createdByUserId?: string | undefined;
|
|
99719
99429
|
isArchived?: boolean | undefined;
|
|
99430
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
99720
99431
|
}>>;
|
|
99721
99432
|
}, "strip", z$1.ZodTypeAny, {
|
|
99722
99433
|
project: {
|
|
@@ -99728,34 +99439,8 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99728
99439
|
description?: string | undefined;
|
|
99729
99440
|
};
|
|
99730
99441
|
tags: string[];
|
|
99731
|
-
members: {
|
|
99732
|
-
user: {
|
|
99733
|
-
id: string;
|
|
99734
|
-
email: string;
|
|
99735
|
-
profile: {
|
|
99736
|
-
name: string;
|
|
99737
|
-
nickname?: string | undefined;
|
|
99738
|
-
avatar?: string | undefined;
|
|
99739
|
-
};
|
|
99740
|
-
};
|
|
99741
|
-
userId: string;
|
|
99742
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99743
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99744
|
-
forgeProjectId: string;
|
|
99745
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99746
|
-
workspaceMembershipId: string;
|
|
99747
|
-
}[];
|
|
99748
|
-
invitations: {
|
|
99749
|
-
email: string;
|
|
99750
|
-
createdAt: Date;
|
|
99751
|
-
updatedAt: Date;
|
|
99752
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99753
|
-
workspaceInvitationId: string;
|
|
99754
|
-
forgeProjectId: string;
|
|
99755
|
-
createdById: string;
|
|
99756
|
-
}[];
|
|
99757
99442
|
workspaceId: string;
|
|
99758
|
-
accessMode: "Open" | "InviteOnly";
|
|
99443
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
99759
99444
|
context: {
|
|
99760
99445
|
id: string;
|
|
99761
99446
|
name: string;
|
|
@@ -99802,6 +99487,7 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99802
99487
|
} | undefined;
|
|
99803
99488
|
};
|
|
99804
99489
|
instruction: string | null;
|
|
99490
|
+
defaultRole: "Viewer" | "Builder";
|
|
99805
99491
|
emoji?: string | undefined;
|
|
99806
99492
|
updatedAt?: Date | undefined;
|
|
99807
99493
|
createdByUserId?: string | undefined;
|
|
@@ -99816,34 +99502,8 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99816
99502
|
name: string;
|
|
99817
99503
|
description?: string | undefined;
|
|
99818
99504
|
};
|
|
99819
|
-
members: {
|
|
99820
|
-
user: {
|
|
99821
|
-
id: string;
|
|
99822
|
-
email: string;
|
|
99823
|
-
profile: {
|
|
99824
|
-
name: string;
|
|
99825
|
-
nickname?: string | undefined;
|
|
99826
|
-
avatar?: string | undefined;
|
|
99827
|
-
};
|
|
99828
|
-
};
|
|
99829
|
-
userId: string;
|
|
99830
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99831
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99832
|
-
forgeProjectId: string;
|
|
99833
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99834
|
-
workspaceMembershipId: string;
|
|
99835
|
-
}[];
|
|
99836
|
-
invitations: {
|
|
99837
|
-
email: string;
|
|
99838
|
-
createdAt: Date;
|
|
99839
|
-
updatedAt: Date;
|
|
99840
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
99841
|
-
workspaceInvitationId: string;
|
|
99842
|
-
forgeProjectId: string;
|
|
99843
|
-
createdById: string;
|
|
99844
|
-
}[];
|
|
99845
99505
|
workspaceId: string;
|
|
99846
|
-
accessMode: "Open" | "InviteOnly";
|
|
99506
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
99847
99507
|
context: {
|
|
99848
99508
|
id: string;
|
|
99849
99509
|
name: string;
|
|
@@ -99895,10 +99555,11 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
99895
99555
|
updatedAt?: Date | undefined;
|
|
99896
99556
|
createdByUserId?: string | undefined;
|
|
99897
99557
|
isArchived?: boolean | undefined;
|
|
99558
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
99898
99559
|
} | null;
|
|
99899
99560
|
}>;
|
|
99900
99561
|
type DTOForgeProjectGetResponse = z$1.infer<typeof DTOForgeProjectGetResponse>;
|
|
99901
|
-
declare const
|
|
99562
|
+
declare const DTOForgeProjectListResponse: z$1.ZodObject<{
|
|
99902
99563
|
projects: z$1.ZodArray<z$1.ZodObject<Omit<{
|
|
99903
99564
|
createdAt: z$1.ZodDate;
|
|
99904
99565
|
createdByUserId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -99919,7 +99580,8 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
99919
99580
|
tags: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
99920
99581
|
updatedAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
99921
99582
|
workspaceId: z$1.ZodString;
|
|
99922
|
-
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
99583
|
+
accessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
99584
|
+
defaultRole: z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>;
|
|
99923
99585
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
99924
99586
|
emoji: z$1.ZodOptional<z$1.ZodString>;
|
|
99925
99587
|
}, "fpContextId"> & {
|
|
@@ -100116,105 +99778,6 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100116
99778
|
content: string;
|
|
100117
99779
|
} | undefined;
|
|
100118
99780
|
}>;
|
|
100119
|
-
members: z$1.ZodArray<z$1.ZodObject<{
|
|
100120
|
-
userId: z$1.ZodString;
|
|
100121
|
-
forgeProjectId: z$1.ZodString;
|
|
100122
|
-
workspaceMembershipId: z$1.ZodString;
|
|
100123
|
-
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
100124
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
100125
|
-
} & {
|
|
100126
|
-
user: z$1.ZodObject<{
|
|
100127
|
-
id: z$1.ZodString;
|
|
100128
|
-
email: z$1.ZodString;
|
|
100129
|
-
profile: z$1.ZodObject<{
|
|
100130
|
-
name: z$1.ZodString;
|
|
100131
|
-
nickname: z$1.ZodOptional<z$1.ZodString>;
|
|
100132
|
-
avatar: z$1.ZodOptional<z$1.ZodString>;
|
|
100133
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
100134
|
-
name: string;
|
|
100135
|
-
nickname?: string | undefined;
|
|
100136
|
-
avatar?: string | undefined;
|
|
100137
|
-
}, {
|
|
100138
|
-
name: string;
|
|
100139
|
-
nickname?: string | undefined;
|
|
100140
|
-
avatar?: string | undefined;
|
|
100141
|
-
}>;
|
|
100142
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
100143
|
-
id: string;
|
|
100144
|
-
email: string;
|
|
100145
|
-
profile: {
|
|
100146
|
-
name: string;
|
|
100147
|
-
nickname?: string | undefined;
|
|
100148
|
-
avatar?: string | undefined;
|
|
100149
|
-
};
|
|
100150
|
-
}, {
|
|
100151
|
-
id: string;
|
|
100152
|
-
email: string;
|
|
100153
|
-
profile: {
|
|
100154
|
-
name: string;
|
|
100155
|
-
nickname?: string | undefined;
|
|
100156
|
-
avatar?: string | undefined;
|
|
100157
|
-
};
|
|
100158
|
-
}>;
|
|
100159
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
100160
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
100161
|
-
user: {
|
|
100162
|
-
id: string;
|
|
100163
|
-
email: string;
|
|
100164
|
-
profile: {
|
|
100165
|
-
name: string;
|
|
100166
|
-
nickname?: string | undefined;
|
|
100167
|
-
avatar?: string | undefined;
|
|
100168
|
-
};
|
|
100169
|
-
};
|
|
100170
|
-
userId: string;
|
|
100171
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100172
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100173
|
-
forgeProjectId: string;
|
|
100174
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100175
|
-
workspaceMembershipId: string;
|
|
100176
|
-
}, {
|
|
100177
|
-
user: {
|
|
100178
|
-
id: string;
|
|
100179
|
-
email: string;
|
|
100180
|
-
profile: {
|
|
100181
|
-
name: string;
|
|
100182
|
-
nickname?: string | undefined;
|
|
100183
|
-
avatar?: string | undefined;
|
|
100184
|
-
};
|
|
100185
|
-
};
|
|
100186
|
-
userId: string;
|
|
100187
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100188
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100189
|
-
forgeProjectId: string;
|
|
100190
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100191
|
-
workspaceMembershipId: string;
|
|
100192
|
-
}>, "many">;
|
|
100193
|
-
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
100194
|
-
email: z$1.ZodString;
|
|
100195
|
-
forgeProjectId: z$1.ZodString;
|
|
100196
|
-
workspaceInvitationId: z$1.ZodString;
|
|
100197
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
100198
|
-
createdAt: z$1.ZodDate;
|
|
100199
|
-
updatedAt: z$1.ZodDate;
|
|
100200
|
-
createdById: z$1.ZodString;
|
|
100201
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
100202
|
-
email: string;
|
|
100203
|
-
createdAt: Date;
|
|
100204
|
-
updatedAt: Date;
|
|
100205
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100206
|
-
workspaceInvitationId: string;
|
|
100207
|
-
forgeProjectId: string;
|
|
100208
|
-
createdById: string;
|
|
100209
|
-
}, {
|
|
100210
|
-
email: string;
|
|
100211
|
-
createdAt: Date;
|
|
100212
|
-
updatedAt: Date;
|
|
100213
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100214
|
-
workspaceInvitationId: string;
|
|
100215
|
-
forgeProjectId: string;
|
|
100216
|
-
createdById: string;
|
|
100217
|
-
}>, "many">;
|
|
100218
99781
|
}, "strip", z$1.ZodTypeAny, {
|
|
100219
99782
|
id: string;
|
|
100220
99783
|
createdAt: Date;
|
|
@@ -100224,34 +99787,8 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100224
99787
|
description?: string | undefined;
|
|
100225
99788
|
};
|
|
100226
99789
|
tags: string[];
|
|
100227
|
-
members: {
|
|
100228
|
-
user: {
|
|
100229
|
-
id: string;
|
|
100230
|
-
email: string;
|
|
100231
|
-
profile: {
|
|
100232
|
-
name: string;
|
|
100233
|
-
nickname?: string | undefined;
|
|
100234
|
-
avatar?: string | undefined;
|
|
100235
|
-
};
|
|
100236
|
-
};
|
|
100237
|
-
userId: string;
|
|
100238
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100239
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100240
|
-
forgeProjectId: string;
|
|
100241
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100242
|
-
workspaceMembershipId: string;
|
|
100243
|
-
}[];
|
|
100244
|
-
invitations: {
|
|
100245
|
-
email: string;
|
|
100246
|
-
createdAt: Date;
|
|
100247
|
-
updatedAt: Date;
|
|
100248
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100249
|
-
workspaceInvitationId: string;
|
|
100250
|
-
forgeProjectId: string;
|
|
100251
|
-
createdById: string;
|
|
100252
|
-
}[];
|
|
100253
99790
|
workspaceId: string;
|
|
100254
|
-
accessMode: "Open" | "InviteOnly";
|
|
99791
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
100255
99792
|
context: {
|
|
100256
99793
|
id: string;
|
|
100257
99794
|
name: string;
|
|
@@ -100298,6 +99835,7 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100298
99835
|
} | undefined;
|
|
100299
99836
|
};
|
|
100300
99837
|
instruction: string | null;
|
|
99838
|
+
defaultRole: "Viewer" | "Builder";
|
|
100301
99839
|
emoji?: string | undefined;
|
|
100302
99840
|
updatedAt?: Date | undefined;
|
|
100303
99841
|
createdByUserId?: string | undefined;
|
|
@@ -100310,34 +99848,8 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100310
99848
|
name: string;
|
|
100311
99849
|
description?: string | undefined;
|
|
100312
99850
|
};
|
|
100313
|
-
members: {
|
|
100314
|
-
user: {
|
|
100315
|
-
id: string;
|
|
100316
|
-
email: string;
|
|
100317
|
-
profile: {
|
|
100318
|
-
name: string;
|
|
100319
|
-
nickname?: string | undefined;
|
|
100320
|
-
avatar?: string | undefined;
|
|
100321
|
-
};
|
|
100322
|
-
};
|
|
100323
|
-
userId: string;
|
|
100324
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100325
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100326
|
-
forgeProjectId: string;
|
|
100327
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100328
|
-
workspaceMembershipId: string;
|
|
100329
|
-
}[];
|
|
100330
|
-
invitations: {
|
|
100331
|
-
email: string;
|
|
100332
|
-
createdAt: Date;
|
|
100333
|
-
updatedAt: Date;
|
|
100334
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100335
|
-
workspaceInvitationId: string;
|
|
100336
|
-
forgeProjectId: string;
|
|
100337
|
-
createdById: string;
|
|
100338
|
-
}[];
|
|
100339
99851
|
workspaceId: string;
|
|
100340
|
-
accessMode: "Open" | "InviteOnly";
|
|
99852
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
100341
99853
|
context: {
|
|
100342
99854
|
id: string;
|
|
100343
99855
|
name: string;
|
|
@@ -100389,6 +99901,7 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100389
99901
|
updatedAt?: Date | undefined;
|
|
100390
99902
|
createdByUserId?: string | undefined;
|
|
100391
99903
|
isArchived?: boolean | undefined;
|
|
99904
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
100392
99905
|
}>, "many">;
|
|
100393
99906
|
}, "strip", z$1.ZodTypeAny, {
|
|
100394
99907
|
projects: {
|
|
@@ -100400,34 +99913,8 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100400
99913
|
description?: string | undefined;
|
|
100401
99914
|
};
|
|
100402
99915
|
tags: string[];
|
|
100403
|
-
members: {
|
|
100404
|
-
user: {
|
|
100405
|
-
id: string;
|
|
100406
|
-
email: string;
|
|
100407
|
-
profile: {
|
|
100408
|
-
name: string;
|
|
100409
|
-
nickname?: string | undefined;
|
|
100410
|
-
avatar?: string | undefined;
|
|
100411
|
-
};
|
|
100412
|
-
};
|
|
100413
|
-
userId: string;
|
|
100414
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100415
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100416
|
-
forgeProjectId: string;
|
|
100417
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100418
|
-
workspaceMembershipId: string;
|
|
100419
|
-
}[];
|
|
100420
|
-
invitations: {
|
|
100421
|
-
email: string;
|
|
100422
|
-
createdAt: Date;
|
|
100423
|
-
updatedAt: Date;
|
|
100424
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100425
|
-
workspaceInvitationId: string;
|
|
100426
|
-
forgeProjectId: string;
|
|
100427
|
-
createdById: string;
|
|
100428
|
-
}[];
|
|
100429
99916
|
workspaceId: string;
|
|
100430
|
-
accessMode: "Open" | "InviteOnly";
|
|
99917
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
100431
99918
|
context: {
|
|
100432
99919
|
id: string;
|
|
100433
99920
|
name: string;
|
|
@@ -100474,6 +99961,7 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100474
99961
|
} | undefined;
|
|
100475
99962
|
};
|
|
100476
99963
|
instruction: string | null;
|
|
99964
|
+
defaultRole: "Viewer" | "Builder";
|
|
100477
99965
|
emoji?: string | undefined;
|
|
100478
99966
|
updatedAt?: Date | undefined;
|
|
100479
99967
|
createdByUserId?: string | undefined;
|
|
@@ -100488,34 +99976,8 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100488
99976
|
name: string;
|
|
100489
99977
|
description?: string | undefined;
|
|
100490
99978
|
};
|
|
100491
|
-
members: {
|
|
100492
|
-
user: {
|
|
100493
|
-
id: string;
|
|
100494
|
-
email: string;
|
|
100495
|
-
profile: {
|
|
100496
|
-
name: string;
|
|
100497
|
-
nickname?: string | undefined;
|
|
100498
|
-
avatar?: string | undefined;
|
|
100499
|
-
};
|
|
100500
|
-
};
|
|
100501
|
-
userId: string;
|
|
100502
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100503
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100504
|
-
forgeProjectId: string;
|
|
100505
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100506
|
-
workspaceMembershipId: string;
|
|
100507
|
-
}[];
|
|
100508
|
-
invitations: {
|
|
100509
|
-
email: string;
|
|
100510
|
-
createdAt: Date;
|
|
100511
|
-
updatedAt: Date;
|
|
100512
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100513
|
-
workspaceInvitationId: string;
|
|
100514
|
-
forgeProjectId: string;
|
|
100515
|
-
createdById: string;
|
|
100516
|
-
}[];
|
|
100517
99979
|
workspaceId: string;
|
|
100518
|
-
accessMode: "Open" | "InviteOnly";
|
|
99980
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
100519
99981
|
context: {
|
|
100520
99982
|
id: string;
|
|
100521
99983
|
name: string;
|
|
@@ -100567,10 +100029,11 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
100567
100029
|
updatedAt?: Date | undefined;
|
|
100568
100030
|
createdByUserId?: string | undefined;
|
|
100569
100031
|
isArchived?: boolean | undefined;
|
|
100032
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
100570
100033
|
}[];
|
|
100571
100034
|
}>;
|
|
100572
|
-
type
|
|
100573
|
-
declare const
|
|
100035
|
+
type DTOForgeProjectListResponse = z$1.infer<typeof DTOForgeProjectListResponse>;
|
|
100036
|
+
declare const DTOForgeProjectCreateResponse: z$1.ZodObject<{
|
|
100574
100037
|
project: z$1.ZodObject<Omit<{
|
|
100575
100038
|
createdAt: z$1.ZodDate;
|
|
100576
100039
|
createdByUserId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -100591,7 +100054,8 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
100591
100054
|
tags: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
100592
100055
|
updatedAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
100593
100056
|
workspaceId: z$1.ZodString;
|
|
100594
|
-
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
100057
|
+
accessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
100058
|
+
defaultRole: z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>;
|
|
100595
100059
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
100596
100060
|
emoji: z$1.ZodOptional<z$1.ZodString>;
|
|
100597
100061
|
}, "fpContextId"> & {
|
|
@@ -100788,105 +100252,6 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
100788
100252
|
content: string;
|
|
100789
100253
|
} | undefined;
|
|
100790
100254
|
}>;
|
|
100791
|
-
members: z$1.ZodArray<z$1.ZodObject<{
|
|
100792
|
-
userId: z$1.ZodString;
|
|
100793
|
-
forgeProjectId: z$1.ZodString;
|
|
100794
|
-
workspaceMembershipId: z$1.ZodString;
|
|
100795
|
-
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
100796
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
100797
|
-
} & {
|
|
100798
|
-
user: z$1.ZodObject<{
|
|
100799
|
-
id: z$1.ZodString;
|
|
100800
|
-
email: z$1.ZodString;
|
|
100801
|
-
profile: z$1.ZodObject<{
|
|
100802
|
-
name: z$1.ZodString;
|
|
100803
|
-
nickname: z$1.ZodOptional<z$1.ZodString>;
|
|
100804
|
-
avatar: z$1.ZodOptional<z$1.ZodString>;
|
|
100805
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
100806
|
-
name: string;
|
|
100807
|
-
nickname?: string | undefined;
|
|
100808
|
-
avatar?: string | undefined;
|
|
100809
|
-
}, {
|
|
100810
|
-
name: string;
|
|
100811
|
-
nickname?: string | undefined;
|
|
100812
|
-
avatar?: string | undefined;
|
|
100813
|
-
}>;
|
|
100814
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
100815
|
-
id: string;
|
|
100816
|
-
email: string;
|
|
100817
|
-
profile: {
|
|
100818
|
-
name: string;
|
|
100819
|
-
nickname?: string | undefined;
|
|
100820
|
-
avatar?: string | undefined;
|
|
100821
|
-
};
|
|
100822
|
-
}, {
|
|
100823
|
-
id: string;
|
|
100824
|
-
email: string;
|
|
100825
|
-
profile: {
|
|
100826
|
-
name: string;
|
|
100827
|
-
nickname?: string | undefined;
|
|
100828
|
-
avatar?: string | undefined;
|
|
100829
|
-
};
|
|
100830
|
-
}>;
|
|
100831
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
100832
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
100833
|
-
user: {
|
|
100834
|
-
id: string;
|
|
100835
|
-
email: string;
|
|
100836
|
-
profile: {
|
|
100837
|
-
name: string;
|
|
100838
|
-
nickname?: string | undefined;
|
|
100839
|
-
avatar?: string | undefined;
|
|
100840
|
-
};
|
|
100841
|
-
};
|
|
100842
|
-
userId: string;
|
|
100843
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100844
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100845
|
-
forgeProjectId: string;
|
|
100846
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100847
|
-
workspaceMembershipId: string;
|
|
100848
|
-
}, {
|
|
100849
|
-
user: {
|
|
100850
|
-
id: string;
|
|
100851
|
-
email: string;
|
|
100852
|
-
profile: {
|
|
100853
|
-
name: string;
|
|
100854
|
-
nickname?: string | undefined;
|
|
100855
|
-
avatar?: string | undefined;
|
|
100856
|
-
};
|
|
100857
|
-
};
|
|
100858
|
-
userId: string;
|
|
100859
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100860
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100861
|
-
forgeProjectId: string;
|
|
100862
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100863
|
-
workspaceMembershipId: string;
|
|
100864
|
-
}>, "many">;
|
|
100865
|
-
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
100866
|
-
email: z$1.ZodString;
|
|
100867
|
-
forgeProjectId: z$1.ZodString;
|
|
100868
|
-
workspaceInvitationId: z$1.ZodString;
|
|
100869
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
100870
|
-
createdAt: z$1.ZodDate;
|
|
100871
|
-
updatedAt: z$1.ZodDate;
|
|
100872
|
-
createdById: z$1.ZodString;
|
|
100873
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
100874
|
-
email: string;
|
|
100875
|
-
createdAt: Date;
|
|
100876
|
-
updatedAt: Date;
|
|
100877
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100878
|
-
workspaceInvitationId: string;
|
|
100879
|
-
forgeProjectId: string;
|
|
100880
|
-
createdById: string;
|
|
100881
|
-
}, {
|
|
100882
|
-
email: string;
|
|
100883
|
-
createdAt: Date;
|
|
100884
|
-
updatedAt: Date;
|
|
100885
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100886
|
-
workspaceInvitationId: string;
|
|
100887
|
-
forgeProjectId: string;
|
|
100888
|
-
createdById: string;
|
|
100889
|
-
}>, "many">;
|
|
100890
100255
|
}, "strip", z$1.ZodTypeAny, {
|
|
100891
100256
|
id: string;
|
|
100892
100257
|
createdAt: Date;
|
|
@@ -100896,34 +100261,8 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
100896
100261
|
description?: string | undefined;
|
|
100897
100262
|
};
|
|
100898
100263
|
tags: string[];
|
|
100899
|
-
members: {
|
|
100900
|
-
user: {
|
|
100901
|
-
id: string;
|
|
100902
|
-
email: string;
|
|
100903
|
-
profile: {
|
|
100904
|
-
name: string;
|
|
100905
|
-
nickname?: string | undefined;
|
|
100906
|
-
avatar?: string | undefined;
|
|
100907
|
-
};
|
|
100908
|
-
};
|
|
100909
|
-
userId: string;
|
|
100910
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100911
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100912
|
-
forgeProjectId: string;
|
|
100913
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100914
|
-
workspaceMembershipId: string;
|
|
100915
|
-
}[];
|
|
100916
|
-
invitations: {
|
|
100917
|
-
email: string;
|
|
100918
|
-
createdAt: Date;
|
|
100919
|
-
updatedAt: Date;
|
|
100920
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100921
|
-
workspaceInvitationId: string;
|
|
100922
|
-
forgeProjectId: string;
|
|
100923
|
-
createdById: string;
|
|
100924
|
-
}[];
|
|
100925
100264
|
workspaceId: string;
|
|
100926
|
-
accessMode: "Open" | "InviteOnly";
|
|
100265
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
100927
100266
|
context: {
|
|
100928
100267
|
id: string;
|
|
100929
100268
|
name: string;
|
|
@@ -100970,6 +100309,7 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
100970
100309
|
} | undefined;
|
|
100971
100310
|
};
|
|
100972
100311
|
instruction: string | null;
|
|
100312
|
+
defaultRole: "Viewer" | "Builder";
|
|
100973
100313
|
emoji?: string | undefined;
|
|
100974
100314
|
updatedAt?: Date | undefined;
|
|
100975
100315
|
createdByUserId?: string | undefined;
|
|
@@ -100982,706 +100322,8 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
100982
100322
|
name: string;
|
|
100983
100323
|
description?: string | undefined;
|
|
100984
100324
|
};
|
|
100985
|
-
members: {
|
|
100986
|
-
user: {
|
|
100987
|
-
id: string;
|
|
100988
|
-
email: string;
|
|
100989
|
-
profile: {
|
|
100990
|
-
name: string;
|
|
100991
|
-
nickname?: string | undefined;
|
|
100992
|
-
avatar?: string | undefined;
|
|
100993
|
-
};
|
|
100994
|
-
};
|
|
100995
|
-
userId: string;
|
|
100996
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
100997
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100998
|
-
forgeProjectId: string;
|
|
100999
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101000
|
-
workspaceMembershipId: string;
|
|
101001
|
-
}[];
|
|
101002
|
-
invitations: {
|
|
101003
|
-
email: string;
|
|
101004
|
-
createdAt: Date;
|
|
101005
|
-
updatedAt: Date;
|
|
101006
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101007
|
-
workspaceInvitationId: string;
|
|
101008
|
-
forgeProjectId: string;
|
|
101009
|
-
createdById: string;
|
|
101010
|
-
}[];
|
|
101011
|
-
workspaceId: string;
|
|
101012
|
-
accessMode: "Open" | "InviteOnly";
|
|
101013
|
-
context: {
|
|
101014
|
-
id: string;
|
|
101015
|
-
name: string;
|
|
101016
|
-
createdAt: Date;
|
|
101017
|
-
updatedAt: Date;
|
|
101018
|
-
workspaceId: string;
|
|
101019
|
-
designSystemId: string;
|
|
101020
|
-
dependencies: {
|
|
101021
|
-
type: "npm";
|
|
101022
|
-
packageName: string;
|
|
101023
|
-
version?: string | undefined;
|
|
101024
|
-
}[];
|
|
101025
|
-
meta: {
|
|
101026
|
-
name: string;
|
|
101027
|
-
description?: string | undefined;
|
|
101028
|
-
};
|
|
101029
|
-
definition: string;
|
|
101030
|
-
npmProxySettings: {
|
|
101031
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
101032
|
-
enabledScopes: string[];
|
|
101033
|
-
customRegistryUrl?: string | undefined;
|
|
101034
|
-
bypassProxy?: boolean | undefined;
|
|
101035
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
101036
|
-
npmProxyVersion?: number | undefined;
|
|
101037
|
-
} & ({
|
|
101038
|
-
password: string;
|
|
101039
|
-
username: string;
|
|
101040
|
-
authType: "Basic";
|
|
101041
|
-
} | {
|
|
101042
|
-
accessToken: string;
|
|
101043
|
-
authType: "Bearer";
|
|
101044
|
-
} | {
|
|
101045
|
-
authType: "None";
|
|
101046
|
-
} | {
|
|
101047
|
-
authType: "Custom";
|
|
101048
|
-
authHeaderName: string;
|
|
101049
|
-
authHeaderValue: string;
|
|
101050
|
-
});
|
|
101051
|
-
platform: "Angular" | "Vue" | "React";
|
|
101052
|
-
styling: "CSS" | "Tailwind";
|
|
101053
|
-
tailwindConfig?: {
|
|
101054
|
-
version: string;
|
|
101055
|
-
content: string;
|
|
101056
|
-
} | undefined;
|
|
101057
|
-
};
|
|
101058
|
-
instruction: string | null;
|
|
101059
|
-
emoji?: string | undefined;
|
|
101060
|
-
tags?: string[] | undefined;
|
|
101061
|
-
updatedAt?: Date | undefined;
|
|
101062
|
-
createdByUserId?: string | undefined;
|
|
101063
|
-
isArchived?: boolean | undefined;
|
|
101064
|
-
}>;
|
|
101065
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101066
|
-
project: {
|
|
101067
|
-
id: string;
|
|
101068
|
-
createdAt: Date;
|
|
101069
|
-
name: string;
|
|
101070
|
-
meta: {
|
|
101071
|
-
name: string;
|
|
101072
|
-
description?: string | undefined;
|
|
101073
|
-
};
|
|
101074
|
-
tags: string[];
|
|
101075
|
-
members: {
|
|
101076
|
-
user: {
|
|
101077
|
-
id: string;
|
|
101078
|
-
email: string;
|
|
101079
|
-
profile: {
|
|
101080
|
-
name: string;
|
|
101081
|
-
nickname?: string | undefined;
|
|
101082
|
-
avatar?: string | undefined;
|
|
101083
|
-
};
|
|
101084
|
-
};
|
|
101085
|
-
userId: string;
|
|
101086
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101087
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
101088
|
-
forgeProjectId: string;
|
|
101089
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101090
|
-
workspaceMembershipId: string;
|
|
101091
|
-
}[];
|
|
101092
|
-
invitations: {
|
|
101093
|
-
email: string;
|
|
101094
|
-
createdAt: Date;
|
|
101095
|
-
updatedAt: Date;
|
|
101096
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101097
|
-
workspaceInvitationId: string;
|
|
101098
|
-
forgeProjectId: string;
|
|
101099
|
-
createdById: string;
|
|
101100
|
-
}[];
|
|
101101
|
-
workspaceId: string;
|
|
101102
|
-
accessMode: "Open" | "InviteOnly";
|
|
101103
|
-
context: {
|
|
101104
|
-
id: string;
|
|
101105
|
-
name: string;
|
|
101106
|
-
createdAt: Date;
|
|
101107
|
-
updatedAt: Date;
|
|
101108
|
-
workspaceId: string;
|
|
101109
|
-
designSystemId: string;
|
|
101110
|
-
dependencies: {
|
|
101111
|
-
type: "npm";
|
|
101112
|
-
version: string;
|
|
101113
|
-
packageName: string;
|
|
101114
|
-
}[];
|
|
101115
|
-
meta: {
|
|
101116
|
-
name: string;
|
|
101117
|
-
description?: string | undefined;
|
|
101118
|
-
};
|
|
101119
|
-
definition: string;
|
|
101120
|
-
npmProxySettings: {
|
|
101121
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
101122
|
-
enabledScopes: string[];
|
|
101123
|
-
bypassProxy: boolean;
|
|
101124
|
-
customRegistryUrl?: string | undefined;
|
|
101125
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
101126
|
-
npmProxyVersion?: number | undefined;
|
|
101127
|
-
} & ({
|
|
101128
|
-
password: string;
|
|
101129
|
-
username: string;
|
|
101130
|
-
authType: "Basic";
|
|
101131
|
-
} | {
|
|
101132
|
-
accessToken: string;
|
|
101133
|
-
authType: "Bearer";
|
|
101134
|
-
} | {
|
|
101135
|
-
authType: "None";
|
|
101136
|
-
} | {
|
|
101137
|
-
authType: "Custom";
|
|
101138
|
-
authHeaderName: string;
|
|
101139
|
-
authHeaderValue: string;
|
|
101140
|
-
});
|
|
101141
|
-
platform: "Angular" | "Vue" | "React";
|
|
101142
|
-
styling: "CSS" | "Tailwind";
|
|
101143
|
-
tailwindConfig?: {
|
|
101144
|
-
version: string;
|
|
101145
|
-
content: string;
|
|
101146
|
-
} | undefined;
|
|
101147
|
-
};
|
|
101148
|
-
instruction: string | null;
|
|
101149
|
-
emoji?: string | undefined;
|
|
101150
|
-
updatedAt?: Date | undefined;
|
|
101151
|
-
createdByUserId?: string | undefined;
|
|
101152
|
-
isArchived?: boolean | undefined;
|
|
101153
|
-
};
|
|
101154
|
-
}, {
|
|
101155
|
-
project: {
|
|
101156
|
-
id: string;
|
|
101157
|
-
createdAt: Date;
|
|
101158
|
-
name: string;
|
|
101159
|
-
meta: {
|
|
101160
|
-
name: string;
|
|
101161
|
-
description?: string | undefined;
|
|
101162
|
-
};
|
|
101163
|
-
members: {
|
|
101164
|
-
user: {
|
|
101165
|
-
id: string;
|
|
101166
|
-
email: string;
|
|
101167
|
-
profile: {
|
|
101168
|
-
name: string;
|
|
101169
|
-
nickname?: string | undefined;
|
|
101170
|
-
avatar?: string | undefined;
|
|
101171
|
-
};
|
|
101172
|
-
};
|
|
101173
|
-
userId: string;
|
|
101174
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101175
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
101176
|
-
forgeProjectId: string;
|
|
101177
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101178
|
-
workspaceMembershipId: string;
|
|
101179
|
-
}[];
|
|
101180
|
-
invitations: {
|
|
101181
|
-
email: string;
|
|
101182
|
-
createdAt: Date;
|
|
101183
|
-
updatedAt: Date;
|
|
101184
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101185
|
-
workspaceInvitationId: string;
|
|
101186
|
-
forgeProjectId: string;
|
|
101187
|
-
createdById: string;
|
|
101188
|
-
}[];
|
|
101189
|
-
workspaceId: string;
|
|
101190
|
-
accessMode: "Open" | "InviteOnly";
|
|
101191
|
-
context: {
|
|
101192
|
-
id: string;
|
|
101193
|
-
name: string;
|
|
101194
|
-
createdAt: Date;
|
|
101195
|
-
updatedAt: Date;
|
|
101196
|
-
workspaceId: string;
|
|
101197
|
-
designSystemId: string;
|
|
101198
|
-
dependencies: {
|
|
101199
|
-
type: "npm";
|
|
101200
|
-
packageName: string;
|
|
101201
|
-
version?: string | undefined;
|
|
101202
|
-
}[];
|
|
101203
|
-
meta: {
|
|
101204
|
-
name: string;
|
|
101205
|
-
description?: string | undefined;
|
|
101206
|
-
};
|
|
101207
|
-
definition: string;
|
|
101208
|
-
npmProxySettings: {
|
|
101209
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
101210
|
-
enabledScopes: string[];
|
|
101211
|
-
customRegistryUrl?: string | undefined;
|
|
101212
|
-
bypassProxy?: boolean | undefined;
|
|
101213
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
101214
|
-
npmProxyVersion?: number | undefined;
|
|
101215
|
-
} & ({
|
|
101216
|
-
password: string;
|
|
101217
|
-
username: string;
|
|
101218
|
-
authType: "Basic";
|
|
101219
|
-
} | {
|
|
101220
|
-
accessToken: string;
|
|
101221
|
-
authType: "Bearer";
|
|
101222
|
-
} | {
|
|
101223
|
-
authType: "None";
|
|
101224
|
-
} | {
|
|
101225
|
-
authType: "Custom";
|
|
101226
|
-
authHeaderName: string;
|
|
101227
|
-
authHeaderValue: string;
|
|
101228
|
-
});
|
|
101229
|
-
platform: "Angular" | "Vue" | "React";
|
|
101230
|
-
styling: "CSS" | "Tailwind";
|
|
101231
|
-
tailwindConfig?: {
|
|
101232
|
-
version: string;
|
|
101233
|
-
content: string;
|
|
101234
|
-
} | undefined;
|
|
101235
|
-
};
|
|
101236
|
-
instruction: string | null;
|
|
101237
|
-
emoji?: string | undefined;
|
|
101238
|
-
tags?: string[] | undefined;
|
|
101239
|
-
updatedAt?: Date | undefined;
|
|
101240
|
-
createdByUserId?: string | undefined;
|
|
101241
|
-
isArchived?: boolean | undefined;
|
|
101242
|
-
};
|
|
101243
|
-
}>;
|
|
101244
|
-
type DTOCreateForgeProjectResponse = z$1.infer<typeof DTOCreateForgeProjectResponse>;
|
|
101245
|
-
declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
101246
|
-
project: z$1.ZodObject<Omit<{
|
|
101247
|
-
createdAt: z$1.ZodDate;
|
|
101248
|
-
createdByUserId: z$1.ZodOptional<z$1.ZodString>;
|
|
101249
|
-
fpContextId: z$1.ZodString;
|
|
101250
|
-
id: z$1.ZodString;
|
|
101251
|
-
instruction: z$1.ZodNullable<z$1.ZodString>;
|
|
101252
|
-
meta: z$1.ZodObject<{
|
|
101253
|
-
name: z$1.ZodString;
|
|
101254
|
-
description: z$1.ZodOptional<z$1.ZodString>;
|
|
101255
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101256
|
-
name: string;
|
|
101257
|
-
description?: string | undefined;
|
|
101258
|
-
}, {
|
|
101259
|
-
name: string;
|
|
101260
|
-
description?: string | undefined;
|
|
101261
|
-
}>;
|
|
101262
|
-
name: z$1.ZodString;
|
|
101263
|
-
tags: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
101264
|
-
updatedAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
101265
|
-
workspaceId: z$1.ZodString;
|
|
101266
|
-
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
101267
|
-
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
101268
|
-
emoji: z$1.ZodOptional<z$1.ZodString>;
|
|
101269
|
-
}, "fpContextId"> & {
|
|
101270
|
-
context: z$1.ZodObject<{
|
|
101271
|
-
createdAt: z$1.ZodDate;
|
|
101272
|
-
definition: z$1.ZodString;
|
|
101273
|
-
dependencies: z$1.ZodArray<z$1.ZodObject<{
|
|
101274
|
-
packageName: z$1.ZodString;
|
|
101275
|
-
type: z$1.ZodLiteral<"npm">;
|
|
101276
|
-
version: z$1.ZodDefault<z$1.ZodString>;
|
|
101277
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101278
|
-
type: "npm";
|
|
101279
|
-
version: string;
|
|
101280
|
-
packageName: string;
|
|
101281
|
-
}, {
|
|
101282
|
-
type: "npm";
|
|
101283
|
-
packageName: string;
|
|
101284
|
-
version?: string | undefined;
|
|
101285
|
-
}>, "many">;
|
|
101286
|
-
designSystemId: z$1.ZodString;
|
|
101287
|
-
id: z$1.ZodString;
|
|
101288
|
-
meta: z$1.ZodObject<{
|
|
101289
|
-
name: z$1.ZodString;
|
|
101290
|
-
description: z$1.ZodOptional<z$1.ZodString>;
|
|
101291
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101292
|
-
name: string;
|
|
101293
|
-
description?: string | undefined;
|
|
101294
|
-
}, {
|
|
101295
|
-
name: string;
|
|
101296
|
-
description?: string | undefined;
|
|
101297
|
-
}>;
|
|
101298
|
-
name: z$1.ZodString;
|
|
101299
|
-
npmProxySettings: z$1.ZodIntersection<z$1.ZodObject<{
|
|
101300
|
-
registryType: z$1.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
101301
|
-
enabledScopes: z$1.ZodArray<z$1.ZodString, "many">;
|
|
101302
|
-
customRegistryUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
101303
|
-
bypassProxy: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
101304
|
-
npmProxyRegistryConfigId: z$1.ZodOptional<z$1.ZodString>;
|
|
101305
|
-
npmProxyVersion: z$1.ZodOptional<z$1.ZodNumber>;
|
|
101306
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101307
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
101308
|
-
enabledScopes: string[];
|
|
101309
|
-
bypassProxy: boolean;
|
|
101310
|
-
customRegistryUrl?: string | undefined;
|
|
101311
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
101312
|
-
npmProxyVersion?: number | undefined;
|
|
101313
|
-
}, {
|
|
101314
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
101315
|
-
enabledScopes: string[];
|
|
101316
|
-
customRegistryUrl?: string | undefined;
|
|
101317
|
-
bypassProxy?: boolean | undefined;
|
|
101318
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
101319
|
-
npmProxyVersion?: number | undefined;
|
|
101320
|
-
}>, z$1.ZodDiscriminatedUnion<"authType", [z$1.ZodObject<{
|
|
101321
|
-
authType: z$1.ZodLiteral<"Basic">;
|
|
101322
|
-
username: z$1.ZodString;
|
|
101323
|
-
password: z$1.ZodString;
|
|
101324
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101325
|
-
password: string;
|
|
101326
|
-
username: string;
|
|
101327
|
-
authType: "Basic";
|
|
101328
|
-
}, {
|
|
101329
|
-
password: string;
|
|
101330
|
-
username: string;
|
|
101331
|
-
authType: "Basic";
|
|
101332
|
-
}>, z$1.ZodObject<{
|
|
101333
|
-
authType: z$1.ZodLiteral<"Bearer">;
|
|
101334
|
-
accessToken: z$1.ZodString;
|
|
101335
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101336
|
-
accessToken: string;
|
|
101337
|
-
authType: "Bearer";
|
|
101338
|
-
}, {
|
|
101339
|
-
accessToken: string;
|
|
101340
|
-
authType: "Bearer";
|
|
101341
|
-
}>, z$1.ZodObject<{
|
|
101342
|
-
authType: z$1.ZodLiteral<"None">;
|
|
101343
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101344
|
-
authType: "None";
|
|
101345
|
-
}, {
|
|
101346
|
-
authType: "None";
|
|
101347
|
-
}>, z$1.ZodObject<{
|
|
101348
|
-
authType: z$1.ZodLiteral<"Custom">;
|
|
101349
|
-
authHeaderName: z$1.ZodString;
|
|
101350
|
-
authHeaderValue: z$1.ZodString;
|
|
101351
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101352
|
-
authType: "Custom";
|
|
101353
|
-
authHeaderName: string;
|
|
101354
|
-
authHeaderValue: string;
|
|
101355
|
-
}, {
|
|
101356
|
-
authType: "Custom";
|
|
101357
|
-
authHeaderName: string;
|
|
101358
|
-
authHeaderValue: string;
|
|
101359
|
-
}>]>>;
|
|
101360
|
-
platform: z$1.ZodEnum<["React", "Vue", "Angular"]>;
|
|
101361
|
-
styling: z$1.ZodEnum<["CSS", "Tailwind"]>;
|
|
101362
|
-
tailwindConfig: z$1.ZodOptional<z$1.ZodObject<{
|
|
101363
|
-
content: z$1.ZodString;
|
|
101364
|
-
version: z$1.ZodString;
|
|
101365
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101366
|
-
version: string;
|
|
101367
|
-
content: string;
|
|
101368
|
-
}, {
|
|
101369
|
-
version: string;
|
|
101370
|
-
content: string;
|
|
101371
|
-
}>>;
|
|
101372
|
-
updatedAt: z$1.ZodDate;
|
|
101373
|
-
workspaceId: z$1.ZodString;
|
|
101374
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101375
|
-
id: string;
|
|
101376
|
-
name: string;
|
|
101377
|
-
createdAt: Date;
|
|
101378
|
-
updatedAt: Date;
|
|
101379
|
-
workspaceId: string;
|
|
101380
|
-
designSystemId: string;
|
|
101381
|
-
dependencies: {
|
|
101382
|
-
type: "npm";
|
|
101383
|
-
version: string;
|
|
101384
|
-
packageName: string;
|
|
101385
|
-
}[];
|
|
101386
|
-
meta: {
|
|
101387
|
-
name: string;
|
|
101388
|
-
description?: string | undefined;
|
|
101389
|
-
};
|
|
101390
|
-
definition: string;
|
|
101391
|
-
npmProxySettings: {
|
|
101392
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
101393
|
-
enabledScopes: string[];
|
|
101394
|
-
bypassProxy: boolean;
|
|
101395
|
-
customRegistryUrl?: string | undefined;
|
|
101396
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
101397
|
-
npmProxyVersion?: number | undefined;
|
|
101398
|
-
} & ({
|
|
101399
|
-
password: string;
|
|
101400
|
-
username: string;
|
|
101401
|
-
authType: "Basic";
|
|
101402
|
-
} | {
|
|
101403
|
-
accessToken: string;
|
|
101404
|
-
authType: "Bearer";
|
|
101405
|
-
} | {
|
|
101406
|
-
authType: "None";
|
|
101407
|
-
} | {
|
|
101408
|
-
authType: "Custom";
|
|
101409
|
-
authHeaderName: string;
|
|
101410
|
-
authHeaderValue: string;
|
|
101411
|
-
});
|
|
101412
|
-
platform: "Angular" | "Vue" | "React";
|
|
101413
|
-
styling: "CSS" | "Tailwind";
|
|
101414
|
-
tailwindConfig?: {
|
|
101415
|
-
version: string;
|
|
101416
|
-
content: string;
|
|
101417
|
-
} | undefined;
|
|
101418
|
-
}, {
|
|
101419
|
-
id: string;
|
|
101420
|
-
name: string;
|
|
101421
|
-
createdAt: Date;
|
|
101422
|
-
updatedAt: Date;
|
|
101423
|
-
workspaceId: string;
|
|
101424
|
-
designSystemId: string;
|
|
101425
|
-
dependencies: {
|
|
101426
|
-
type: "npm";
|
|
101427
|
-
packageName: string;
|
|
101428
|
-
version?: string | undefined;
|
|
101429
|
-
}[];
|
|
101430
|
-
meta: {
|
|
101431
|
-
name: string;
|
|
101432
|
-
description?: string | undefined;
|
|
101433
|
-
};
|
|
101434
|
-
definition: string;
|
|
101435
|
-
npmProxySettings: {
|
|
101436
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
101437
|
-
enabledScopes: string[];
|
|
101438
|
-
customRegistryUrl?: string | undefined;
|
|
101439
|
-
bypassProxy?: boolean | undefined;
|
|
101440
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
101441
|
-
npmProxyVersion?: number | undefined;
|
|
101442
|
-
} & ({
|
|
101443
|
-
password: string;
|
|
101444
|
-
username: string;
|
|
101445
|
-
authType: "Basic";
|
|
101446
|
-
} | {
|
|
101447
|
-
accessToken: string;
|
|
101448
|
-
authType: "Bearer";
|
|
101449
|
-
} | {
|
|
101450
|
-
authType: "None";
|
|
101451
|
-
} | {
|
|
101452
|
-
authType: "Custom";
|
|
101453
|
-
authHeaderName: string;
|
|
101454
|
-
authHeaderValue: string;
|
|
101455
|
-
});
|
|
101456
|
-
platform: "Angular" | "Vue" | "React";
|
|
101457
|
-
styling: "CSS" | "Tailwind";
|
|
101458
|
-
tailwindConfig?: {
|
|
101459
|
-
version: string;
|
|
101460
|
-
content: string;
|
|
101461
|
-
} | undefined;
|
|
101462
|
-
}>;
|
|
101463
|
-
members: z$1.ZodArray<z$1.ZodObject<{
|
|
101464
|
-
userId: z$1.ZodString;
|
|
101465
|
-
forgeProjectId: z$1.ZodString;
|
|
101466
|
-
workspaceMembershipId: z$1.ZodString;
|
|
101467
|
-
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
101468
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
101469
|
-
} & {
|
|
101470
|
-
user: z$1.ZodObject<{
|
|
101471
|
-
id: z$1.ZodString;
|
|
101472
|
-
email: z$1.ZodString;
|
|
101473
|
-
profile: z$1.ZodObject<{
|
|
101474
|
-
name: z$1.ZodString;
|
|
101475
|
-
nickname: z$1.ZodOptional<z$1.ZodString>;
|
|
101476
|
-
avatar: z$1.ZodOptional<z$1.ZodString>;
|
|
101477
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101478
|
-
name: string;
|
|
101479
|
-
nickname?: string | undefined;
|
|
101480
|
-
avatar?: string | undefined;
|
|
101481
|
-
}, {
|
|
101482
|
-
name: string;
|
|
101483
|
-
nickname?: string | undefined;
|
|
101484
|
-
avatar?: string | undefined;
|
|
101485
|
-
}>;
|
|
101486
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101487
|
-
id: string;
|
|
101488
|
-
email: string;
|
|
101489
|
-
profile: {
|
|
101490
|
-
name: string;
|
|
101491
|
-
nickname?: string | undefined;
|
|
101492
|
-
avatar?: string | undefined;
|
|
101493
|
-
};
|
|
101494
|
-
}, {
|
|
101495
|
-
id: string;
|
|
101496
|
-
email: string;
|
|
101497
|
-
profile: {
|
|
101498
|
-
name: string;
|
|
101499
|
-
nickname?: string | undefined;
|
|
101500
|
-
avatar?: string | undefined;
|
|
101501
|
-
};
|
|
101502
|
-
}>;
|
|
101503
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
101504
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101505
|
-
user: {
|
|
101506
|
-
id: string;
|
|
101507
|
-
email: string;
|
|
101508
|
-
profile: {
|
|
101509
|
-
name: string;
|
|
101510
|
-
nickname?: string | undefined;
|
|
101511
|
-
avatar?: string | undefined;
|
|
101512
|
-
};
|
|
101513
|
-
};
|
|
101514
|
-
userId: string;
|
|
101515
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101516
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
101517
|
-
forgeProjectId: string;
|
|
101518
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101519
|
-
workspaceMembershipId: string;
|
|
101520
|
-
}, {
|
|
101521
|
-
user: {
|
|
101522
|
-
id: string;
|
|
101523
|
-
email: string;
|
|
101524
|
-
profile: {
|
|
101525
|
-
name: string;
|
|
101526
|
-
nickname?: string | undefined;
|
|
101527
|
-
avatar?: string | undefined;
|
|
101528
|
-
};
|
|
101529
|
-
};
|
|
101530
|
-
userId: string;
|
|
101531
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101532
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
101533
|
-
forgeProjectId: string;
|
|
101534
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101535
|
-
workspaceMembershipId: string;
|
|
101536
|
-
}>, "many">;
|
|
101537
|
-
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
101538
|
-
email: z$1.ZodString;
|
|
101539
|
-
forgeProjectId: z$1.ZodString;
|
|
101540
|
-
workspaceInvitationId: z$1.ZodString;
|
|
101541
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
101542
|
-
createdAt: z$1.ZodDate;
|
|
101543
|
-
updatedAt: z$1.ZodDate;
|
|
101544
|
-
createdById: z$1.ZodString;
|
|
101545
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101546
|
-
email: string;
|
|
101547
|
-
createdAt: Date;
|
|
101548
|
-
updatedAt: Date;
|
|
101549
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101550
|
-
workspaceInvitationId: string;
|
|
101551
|
-
forgeProjectId: string;
|
|
101552
|
-
createdById: string;
|
|
101553
|
-
}, {
|
|
101554
|
-
email: string;
|
|
101555
|
-
createdAt: Date;
|
|
101556
|
-
updatedAt: Date;
|
|
101557
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101558
|
-
workspaceInvitationId: string;
|
|
101559
|
-
forgeProjectId: string;
|
|
101560
|
-
createdById: string;
|
|
101561
|
-
}>, "many">;
|
|
101562
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
101563
|
-
id: string;
|
|
101564
|
-
createdAt: Date;
|
|
101565
|
-
name: string;
|
|
101566
|
-
meta: {
|
|
101567
|
-
name: string;
|
|
101568
|
-
description?: string | undefined;
|
|
101569
|
-
};
|
|
101570
|
-
tags: string[];
|
|
101571
|
-
members: {
|
|
101572
|
-
user: {
|
|
101573
|
-
id: string;
|
|
101574
|
-
email: string;
|
|
101575
|
-
profile: {
|
|
101576
|
-
name: string;
|
|
101577
|
-
nickname?: string | undefined;
|
|
101578
|
-
avatar?: string | undefined;
|
|
101579
|
-
};
|
|
101580
|
-
};
|
|
101581
|
-
userId: string;
|
|
101582
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101583
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
101584
|
-
forgeProjectId: string;
|
|
101585
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101586
|
-
workspaceMembershipId: string;
|
|
101587
|
-
}[];
|
|
101588
|
-
invitations: {
|
|
101589
|
-
email: string;
|
|
101590
|
-
createdAt: Date;
|
|
101591
|
-
updatedAt: Date;
|
|
101592
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101593
|
-
workspaceInvitationId: string;
|
|
101594
|
-
forgeProjectId: string;
|
|
101595
|
-
createdById: string;
|
|
101596
|
-
}[];
|
|
101597
|
-
workspaceId: string;
|
|
101598
|
-
accessMode: "Open" | "InviteOnly";
|
|
101599
|
-
context: {
|
|
101600
|
-
id: string;
|
|
101601
|
-
name: string;
|
|
101602
|
-
createdAt: Date;
|
|
101603
|
-
updatedAt: Date;
|
|
101604
|
-
workspaceId: string;
|
|
101605
|
-
designSystemId: string;
|
|
101606
|
-
dependencies: {
|
|
101607
|
-
type: "npm";
|
|
101608
|
-
version: string;
|
|
101609
|
-
packageName: string;
|
|
101610
|
-
}[];
|
|
101611
|
-
meta: {
|
|
101612
|
-
name: string;
|
|
101613
|
-
description?: string | undefined;
|
|
101614
|
-
};
|
|
101615
|
-
definition: string;
|
|
101616
|
-
npmProxySettings: {
|
|
101617
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
101618
|
-
enabledScopes: string[];
|
|
101619
|
-
bypassProxy: boolean;
|
|
101620
|
-
customRegistryUrl?: string | undefined;
|
|
101621
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
101622
|
-
npmProxyVersion?: number | undefined;
|
|
101623
|
-
} & ({
|
|
101624
|
-
password: string;
|
|
101625
|
-
username: string;
|
|
101626
|
-
authType: "Basic";
|
|
101627
|
-
} | {
|
|
101628
|
-
accessToken: string;
|
|
101629
|
-
authType: "Bearer";
|
|
101630
|
-
} | {
|
|
101631
|
-
authType: "None";
|
|
101632
|
-
} | {
|
|
101633
|
-
authType: "Custom";
|
|
101634
|
-
authHeaderName: string;
|
|
101635
|
-
authHeaderValue: string;
|
|
101636
|
-
});
|
|
101637
|
-
platform: "Angular" | "Vue" | "React";
|
|
101638
|
-
styling: "CSS" | "Tailwind";
|
|
101639
|
-
tailwindConfig?: {
|
|
101640
|
-
version: string;
|
|
101641
|
-
content: string;
|
|
101642
|
-
} | undefined;
|
|
101643
|
-
};
|
|
101644
|
-
instruction: string | null;
|
|
101645
|
-
emoji?: string | undefined;
|
|
101646
|
-
updatedAt?: Date | undefined;
|
|
101647
|
-
createdByUserId?: string | undefined;
|
|
101648
|
-
isArchived?: boolean | undefined;
|
|
101649
|
-
}, {
|
|
101650
|
-
id: string;
|
|
101651
|
-
createdAt: Date;
|
|
101652
|
-
name: string;
|
|
101653
|
-
meta: {
|
|
101654
|
-
name: string;
|
|
101655
|
-
description?: string | undefined;
|
|
101656
|
-
};
|
|
101657
|
-
members: {
|
|
101658
|
-
user: {
|
|
101659
|
-
id: string;
|
|
101660
|
-
email: string;
|
|
101661
|
-
profile: {
|
|
101662
|
-
name: string;
|
|
101663
|
-
nickname?: string | undefined;
|
|
101664
|
-
avatar?: string | undefined;
|
|
101665
|
-
};
|
|
101666
|
-
};
|
|
101667
|
-
userId: string;
|
|
101668
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101669
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
101670
|
-
forgeProjectId: string;
|
|
101671
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101672
|
-
workspaceMembershipId: string;
|
|
101673
|
-
}[];
|
|
101674
|
-
invitations: {
|
|
101675
|
-
email: string;
|
|
101676
|
-
createdAt: Date;
|
|
101677
|
-
updatedAt: Date;
|
|
101678
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101679
|
-
workspaceInvitationId: string;
|
|
101680
|
-
forgeProjectId: string;
|
|
101681
|
-
createdById: string;
|
|
101682
|
-
}[];
|
|
101683
100325
|
workspaceId: string;
|
|
101684
|
-
accessMode: "Open" | "InviteOnly";
|
|
100326
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
101685
100327
|
context: {
|
|
101686
100328
|
id: string;
|
|
101687
100329
|
name: string;
|
|
@@ -101733,6 +100375,7 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
101733
100375
|
updatedAt?: Date | undefined;
|
|
101734
100376
|
createdByUserId?: string | undefined;
|
|
101735
100377
|
isArchived?: boolean | undefined;
|
|
100378
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
101736
100379
|
}>;
|
|
101737
100380
|
}, "strip", z$1.ZodTypeAny, {
|
|
101738
100381
|
project: {
|
|
@@ -101744,34 +100387,8 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
101744
100387
|
description?: string | undefined;
|
|
101745
100388
|
};
|
|
101746
100389
|
tags: string[];
|
|
101747
|
-
members: {
|
|
101748
|
-
user: {
|
|
101749
|
-
id: string;
|
|
101750
|
-
email: string;
|
|
101751
|
-
profile: {
|
|
101752
|
-
name: string;
|
|
101753
|
-
nickname?: string | undefined;
|
|
101754
|
-
avatar?: string | undefined;
|
|
101755
|
-
};
|
|
101756
|
-
};
|
|
101757
|
-
userId: string;
|
|
101758
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101759
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
101760
|
-
forgeProjectId: string;
|
|
101761
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101762
|
-
workspaceMembershipId: string;
|
|
101763
|
-
}[];
|
|
101764
|
-
invitations: {
|
|
101765
|
-
email: string;
|
|
101766
|
-
createdAt: Date;
|
|
101767
|
-
updatedAt: Date;
|
|
101768
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101769
|
-
workspaceInvitationId: string;
|
|
101770
|
-
forgeProjectId: string;
|
|
101771
|
-
createdById: string;
|
|
101772
|
-
}[];
|
|
101773
100390
|
workspaceId: string;
|
|
101774
|
-
accessMode: "Open" | "InviteOnly";
|
|
100391
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
101775
100392
|
context: {
|
|
101776
100393
|
id: string;
|
|
101777
100394
|
name: string;
|
|
@@ -101818,6 +100435,7 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
101818
100435
|
} | undefined;
|
|
101819
100436
|
};
|
|
101820
100437
|
instruction: string | null;
|
|
100438
|
+
defaultRole: "Viewer" | "Builder";
|
|
101821
100439
|
emoji?: string | undefined;
|
|
101822
100440
|
updatedAt?: Date | undefined;
|
|
101823
100441
|
createdByUserId?: string | undefined;
|
|
@@ -101832,34 +100450,8 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
101832
100450
|
name: string;
|
|
101833
100451
|
description?: string | undefined;
|
|
101834
100452
|
};
|
|
101835
|
-
members: {
|
|
101836
|
-
user: {
|
|
101837
|
-
id: string;
|
|
101838
|
-
email: string;
|
|
101839
|
-
profile: {
|
|
101840
|
-
name: string;
|
|
101841
|
-
nickname?: string | undefined;
|
|
101842
|
-
avatar?: string | undefined;
|
|
101843
|
-
};
|
|
101844
|
-
};
|
|
101845
|
-
userId: string;
|
|
101846
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101847
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
101848
|
-
forgeProjectId: string;
|
|
101849
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
101850
|
-
workspaceMembershipId: string;
|
|
101851
|
-
}[];
|
|
101852
|
-
invitations: {
|
|
101853
|
-
email: string;
|
|
101854
|
-
createdAt: Date;
|
|
101855
|
-
updatedAt: Date;
|
|
101856
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
101857
|
-
workspaceInvitationId: string;
|
|
101858
|
-
forgeProjectId: string;
|
|
101859
|
-
createdById: string;
|
|
101860
|
-
}[];
|
|
101861
100453
|
workspaceId: string;
|
|
101862
|
-
accessMode: "Open" | "InviteOnly";
|
|
100454
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
101863
100455
|
context: {
|
|
101864
100456
|
id: string;
|
|
101865
100457
|
name: string;
|
|
@@ -101911,10 +100503,11 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
101911
100503
|
updatedAt?: Date | undefined;
|
|
101912
100504
|
createdByUserId?: string | undefined;
|
|
101913
100505
|
isArchived?: boolean | undefined;
|
|
100506
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
101914
100507
|
};
|
|
101915
100508
|
}>;
|
|
101916
|
-
type
|
|
101917
|
-
declare const
|
|
100509
|
+
type DTOForgeProjectCreateResponse = z$1.infer<typeof DTOForgeProjectCreateResponse>;
|
|
100510
|
+
declare const DTOForgeProjectUpdateResponse: z$1.ZodObject<{
|
|
101918
100511
|
project: z$1.ZodObject<Omit<{
|
|
101919
100512
|
createdAt: z$1.ZodDate;
|
|
101920
100513
|
createdByUserId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -101935,7 +100528,8 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
101935
100528
|
tags: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
101936
100529
|
updatedAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
101937
100530
|
workspaceId: z$1.ZodString;
|
|
101938
|
-
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
100531
|
+
accessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
100532
|
+
defaultRole: z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>;
|
|
101939
100533
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
101940
100534
|
emoji: z$1.ZodOptional<z$1.ZodString>;
|
|
101941
100535
|
}, "fpContextId"> & {
|
|
@@ -102132,105 +100726,6 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102132
100726
|
content: string;
|
|
102133
100727
|
} | undefined;
|
|
102134
100728
|
}>;
|
|
102135
|
-
members: z$1.ZodArray<z$1.ZodObject<{
|
|
102136
|
-
userId: z$1.ZodString;
|
|
102137
|
-
forgeProjectId: z$1.ZodString;
|
|
102138
|
-
workspaceMembershipId: z$1.ZodString;
|
|
102139
|
-
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
102140
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
102141
|
-
} & {
|
|
102142
|
-
user: z$1.ZodObject<{
|
|
102143
|
-
id: z$1.ZodString;
|
|
102144
|
-
email: z$1.ZodString;
|
|
102145
|
-
profile: z$1.ZodObject<{
|
|
102146
|
-
name: z$1.ZodString;
|
|
102147
|
-
nickname: z$1.ZodOptional<z$1.ZodString>;
|
|
102148
|
-
avatar: z$1.ZodOptional<z$1.ZodString>;
|
|
102149
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
102150
|
-
name: string;
|
|
102151
|
-
nickname?: string | undefined;
|
|
102152
|
-
avatar?: string | undefined;
|
|
102153
|
-
}, {
|
|
102154
|
-
name: string;
|
|
102155
|
-
nickname?: string | undefined;
|
|
102156
|
-
avatar?: string | undefined;
|
|
102157
|
-
}>;
|
|
102158
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
102159
|
-
id: string;
|
|
102160
|
-
email: string;
|
|
102161
|
-
profile: {
|
|
102162
|
-
name: string;
|
|
102163
|
-
nickname?: string | undefined;
|
|
102164
|
-
avatar?: string | undefined;
|
|
102165
|
-
};
|
|
102166
|
-
}, {
|
|
102167
|
-
id: string;
|
|
102168
|
-
email: string;
|
|
102169
|
-
profile: {
|
|
102170
|
-
name: string;
|
|
102171
|
-
nickname?: string | undefined;
|
|
102172
|
-
avatar?: string | undefined;
|
|
102173
|
-
};
|
|
102174
|
-
}>;
|
|
102175
|
-
effectiveRole: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
102176
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
102177
|
-
user: {
|
|
102178
|
-
id: string;
|
|
102179
|
-
email: string;
|
|
102180
|
-
profile: {
|
|
102181
|
-
name: string;
|
|
102182
|
-
nickname?: string | undefined;
|
|
102183
|
-
avatar?: string | undefined;
|
|
102184
|
-
};
|
|
102185
|
-
};
|
|
102186
|
-
userId: string;
|
|
102187
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102188
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
102189
|
-
forgeProjectId: string;
|
|
102190
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102191
|
-
workspaceMembershipId: string;
|
|
102192
|
-
}, {
|
|
102193
|
-
user: {
|
|
102194
|
-
id: string;
|
|
102195
|
-
email: string;
|
|
102196
|
-
profile: {
|
|
102197
|
-
name: string;
|
|
102198
|
-
nickname?: string | undefined;
|
|
102199
|
-
avatar?: string | undefined;
|
|
102200
|
-
};
|
|
102201
|
-
};
|
|
102202
|
-
userId: string;
|
|
102203
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102204
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
102205
|
-
forgeProjectId: string;
|
|
102206
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102207
|
-
workspaceMembershipId: string;
|
|
102208
|
-
}>, "many">;
|
|
102209
|
-
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
102210
|
-
email: z$1.ZodString;
|
|
102211
|
-
forgeProjectId: z$1.ZodString;
|
|
102212
|
-
workspaceInvitationId: z$1.ZodString;
|
|
102213
|
-
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
102214
|
-
createdAt: z$1.ZodDate;
|
|
102215
|
-
updatedAt: z$1.ZodDate;
|
|
102216
|
-
createdById: z$1.ZodString;
|
|
102217
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
102218
|
-
email: string;
|
|
102219
|
-
createdAt: Date;
|
|
102220
|
-
updatedAt: Date;
|
|
102221
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102222
|
-
workspaceInvitationId: string;
|
|
102223
|
-
forgeProjectId: string;
|
|
102224
|
-
createdById: string;
|
|
102225
|
-
}, {
|
|
102226
|
-
email: string;
|
|
102227
|
-
createdAt: Date;
|
|
102228
|
-
updatedAt: Date;
|
|
102229
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102230
|
-
workspaceInvitationId: string;
|
|
102231
|
-
forgeProjectId: string;
|
|
102232
|
-
createdById: string;
|
|
102233
|
-
}>, "many">;
|
|
102234
100729
|
}, "strip", z$1.ZodTypeAny, {
|
|
102235
100730
|
id: string;
|
|
102236
100731
|
createdAt: Date;
|
|
@@ -102240,34 +100735,8 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102240
100735
|
description?: string | undefined;
|
|
102241
100736
|
};
|
|
102242
100737
|
tags: string[];
|
|
102243
|
-
members: {
|
|
102244
|
-
user: {
|
|
102245
|
-
id: string;
|
|
102246
|
-
email: string;
|
|
102247
|
-
profile: {
|
|
102248
|
-
name: string;
|
|
102249
|
-
nickname?: string | undefined;
|
|
102250
|
-
avatar?: string | undefined;
|
|
102251
|
-
};
|
|
102252
|
-
};
|
|
102253
|
-
userId: string;
|
|
102254
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102255
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
102256
|
-
forgeProjectId: string;
|
|
102257
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102258
|
-
workspaceMembershipId: string;
|
|
102259
|
-
}[];
|
|
102260
|
-
invitations: {
|
|
102261
|
-
email: string;
|
|
102262
|
-
createdAt: Date;
|
|
102263
|
-
updatedAt: Date;
|
|
102264
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102265
|
-
workspaceInvitationId: string;
|
|
102266
|
-
forgeProjectId: string;
|
|
102267
|
-
createdById: string;
|
|
102268
|
-
}[];
|
|
102269
100738
|
workspaceId: string;
|
|
102270
|
-
accessMode: "Open" | "InviteOnly";
|
|
100739
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
102271
100740
|
context: {
|
|
102272
100741
|
id: string;
|
|
102273
100742
|
name: string;
|
|
@@ -102314,6 +100783,7 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102314
100783
|
} | undefined;
|
|
102315
100784
|
};
|
|
102316
100785
|
instruction: string | null;
|
|
100786
|
+
defaultRole: "Viewer" | "Builder";
|
|
102317
100787
|
emoji?: string | undefined;
|
|
102318
100788
|
updatedAt?: Date | undefined;
|
|
102319
100789
|
createdByUserId?: string | undefined;
|
|
@@ -102326,34 +100796,8 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102326
100796
|
name: string;
|
|
102327
100797
|
description?: string | undefined;
|
|
102328
100798
|
};
|
|
102329
|
-
members: {
|
|
102330
|
-
user: {
|
|
102331
|
-
id: string;
|
|
102332
|
-
email: string;
|
|
102333
|
-
profile: {
|
|
102334
|
-
name: string;
|
|
102335
|
-
nickname?: string | undefined;
|
|
102336
|
-
avatar?: string | undefined;
|
|
102337
|
-
};
|
|
102338
|
-
};
|
|
102339
|
-
userId: string;
|
|
102340
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102341
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
102342
|
-
forgeProjectId: string;
|
|
102343
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102344
|
-
workspaceMembershipId: string;
|
|
102345
|
-
}[];
|
|
102346
|
-
invitations: {
|
|
102347
|
-
email: string;
|
|
102348
|
-
createdAt: Date;
|
|
102349
|
-
updatedAt: Date;
|
|
102350
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102351
|
-
workspaceInvitationId: string;
|
|
102352
|
-
forgeProjectId: string;
|
|
102353
|
-
createdById: string;
|
|
102354
|
-
}[];
|
|
102355
100799
|
workspaceId: string;
|
|
102356
|
-
accessMode: "Open" | "InviteOnly";
|
|
100800
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
102357
100801
|
context: {
|
|
102358
100802
|
id: string;
|
|
102359
100803
|
name: string;
|
|
@@ -102405,6 +100849,7 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102405
100849
|
updatedAt?: Date | undefined;
|
|
102406
100850
|
createdByUserId?: string | undefined;
|
|
102407
100851
|
isArchived?: boolean | undefined;
|
|
100852
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
102408
100853
|
}>;
|
|
102409
100854
|
}, "strip", z$1.ZodTypeAny, {
|
|
102410
100855
|
project: {
|
|
@@ -102416,34 +100861,8 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102416
100861
|
description?: string | undefined;
|
|
102417
100862
|
};
|
|
102418
100863
|
tags: string[];
|
|
102419
|
-
members: {
|
|
102420
|
-
user: {
|
|
102421
|
-
id: string;
|
|
102422
|
-
email: string;
|
|
102423
|
-
profile: {
|
|
102424
|
-
name: string;
|
|
102425
|
-
nickname?: string | undefined;
|
|
102426
|
-
avatar?: string | undefined;
|
|
102427
|
-
};
|
|
102428
|
-
};
|
|
102429
|
-
userId: string;
|
|
102430
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102431
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
102432
|
-
forgeProjectId: string;
|
|
102433
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102434
|
-
workspaceMembershipId: string;
|
|
102435
|
-
}[];
|
|
102436
|
-
invitations: {
|
|
102437
|
-
email: string;
|
|
102438
|
-
createdAt: Date;
|
|
102439
|
-
updatedAt: Date;
|
|
102440
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102441
|
-
workspaceInvitationId: string;
|
|
102442
|
-
forgeProjectId: string;
|
|
102443
|
-
createdById: string;
|
|
102444
|
-
}[];
|
|
102445
100864
|
workspaceId: string;
|
|
102446
|
-
accessMode: "Open" | "InviteOnly";
|
|
100865
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
102447
100866
|
context: {
|
|
102448
100867
|
id: string;
|
|
102449
100868
|
name: string;
|
|
@@ -102490,6 +100909,7 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102490
100909
|
} | undefined;
|
|
102491
100910
|
};
|
|
102492
100911
|
instruction: string | null;
|
|
100912
|
+
defaultRole: "Viewer" | "Builder";
|
|
102493
100913
|
emoji?: string | undefined;
|
|
102494
100914
|
updatedAt?: Date | undefined;
|
|
102495
100915
|
createdByUserId?: string | undefined;
|
|
@@ -102504,34 +100924,8 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102504
100924
|
name: string;
|
|
102505
100925
|
description?: string | undefined;
|
|
102506
100926
|
};
|
|
102507
|
-
members: {
|
|
102508
|
-
user: {
|
|
102509
|
-
id: string;
|
|
102510
|
-
email: string;
|
|
102511
|
-
profile: {
|
|
102512
|
-
name: string;
|
|
102513
|
-
nickname?: string | undefined;
|
|
102514
|
-
avatar?: string | undefined;
|
|
102515
|
-
};
|
|
102516
|
-
};
|
|
102517
|
-
userId: string;
|
|
102518
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102519
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
102520
|
-
forgeProjectId: string;
|
|
102521
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102522
|
-
workspaceMembershipId: string;
|
|
102523
|
-
}[];
|
|
102524
|
-
invitations: {
|
|
102525
|
-
email: string;
|
|
102526
|
-
createdAt: Date;
|
|
102527
|
-
updatedAt: Date;
|
|
102528
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
102529
|
-
workspaceInvitationId: string;
|
|
102530
|
-
forgeProjectId: string;
|
|
102531
|
-
createdById: string;
|
|
102532
|
-
}[];
|
|
102533
100927
|
workspaceId: string;
|
|
102534
|
-
accessMode: "Open" | "InviteOnly";
|
|
100928
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
102535
100929
|
context: {
|
|
102536
100930
|
id: string;
|
|
102537
100931
|
name: string;
|
|
@@ -102583,10 +100977,11 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
102583
100977
|
updatedAt?: Date | undefined;
|
|
102584
100978
|
createdByUserId?: string | undefined;
|
|
102585
100979
|
isArchived?: boolean | undefined;
|
|
100980
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
102586
100981
|
};
|
|
102587
100982
|
}>;
|
|
102588
|
-
type
|
|
102589
|
-
declare const
|
|
100983
|
+
type DTOForgeProjectUpdateResponse = z$1.infer<typeof DTOForgeProjectUpdateResponse>;
|
|
100984
|
+
declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
102590
100985
|
createdAt: z$1.ZodDate;
|
|
102591
100986
|
createdByUserId: z$1.ZodOptional<z$1.ZodString>;
|
|
102592
100987
|
fpContextId: z$1.ZodString;
|
|
@@ -102606,15 +101001,16 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
102606
101001
|
tags: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
102607
101002
|
updatedAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
102608
101003
|
workspaceId: z$1.ZodString;
|
|
102609
|
-
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
101004
|
+
accessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
101005
|
+
defaultRole: z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>;
|
|
102610
101006
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
102611
101007
|
emoji: z$1.ZodOptional<z$1.ZodString>;
|
|
102612
|
-
}, "name" | "meta" | "emoji" | "tags" | "accessMode" | "isArchived" | "fpContextId" | "instruction"> & {
|
|
101008
|
+
}, "name" | "meta" | "emoji" | "tags" | "accessMode" | "isArchived" | "fpContextId" | "instruction" | "defaultRole"> & {
|
|
102613
101009
|
membersToInvite: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
102614
101010
|
email: z$1.ZodString;
|
|
102615
101011
|
forgeProjectId: z$1.ZodString;
|
|
102616
101012
|
workspaceInvitationId: z$1.ZodString;
|
|
102617
|
-
role: z$1.ZodEnum<["Viewer", "
|
|
101013
|
+
role: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
102618
101014
|
createdAt: z$1.ZodDate;
|
|
102619
101015
|
updatedAt: z$1.ZodDate;
|
|
102620
101016
|
createdById: z$1.ZodString;
|
|
@@ -102622,11 +101018,11 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
102622
101018
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
102623
101019
|
}, "strip", z$1.ZodTypeAny, {
|
|
102624
101020
|
email: string;
|
|
102625
|
-
role: "Admin" | "Viewer" | "
|
|
101021
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
102626
101022
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102627
101023
|
}, {
|
|
102628
101024
|
email: string;
|
|
102629
|
-
role: "Admin" | "Viewer" | "
|
|
101025
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
102630
101026
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102631
101027
|
}>, "many">>;
|
|
102632
101028
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -102636,14 +101032,15 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
102636
101032
|
description?: string | undefined;
|
|
102637
101033
|
};
|
|
102638
101034
|
tags: string[];
|
|
102639
|
-
accessMode: "Open" | "InviteOnly";
|
|
101035
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
102640
101036
|
fpContextId: string;
|
|
102641
101037
|
instruction: string | null;
|
|
101038
|
+
defaultRole: "Viewer" | "Builder";
|
|
102642
101039
|
emoji?: string | undefined;
|
|
102643
101040
|
isArchived?: boolean | undefined;
|
|
102644
101041
|
membersToInvite?: {
|
|
102645
101042
|
email: string;
|
|
102646
|
-
role: "Admin" | "Viewer" | "
|
|
101043
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
102647
101044
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102648
101045
|
}[] | undefined;
|
|
102649
101046
|
}, {
|
|
@@ -102652,7 +101049,7 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
102652
101049
|
name: string;
|
|
102653
101050
|
description?: string | undefined;
|
|
102654
101051
|
};
|
|
102655
|
-
accessMode: "Open" | "InviteOnly";
|
|
101052
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
102656
101053
|
fpContextId: string;
|
|
102657
101054
|
instruction: string | null;
|
|
102658
101055
|
emoji?: string | undefined;
|
|
@@ -102660,12 +101057,13 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
102660
101057
|
isArchived?: boolean | undefined;
|
|
102661
101058
|
membersToInvite?: {
|
|
102662
101059
|
email: string;
|
|
102663
|
-
role: "Admin" | "Viewer" | "
|
|
101060
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
102664
101061
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
102665
101062
|
}[] | undefined;
|
|
101063
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
102666
101064
|
}>;
|
|
102667
|
-
type
|
|
102668
|
-
declare const
|
|
101065
|
+
type DTOForgeProjectCreate = z$1.infer<typeof DTOForgeProjectCreate>;
|
|
101066
|
+
declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
102669
101067
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
102670
101068
|
meta: z$1.ZodOptional<z$1.ZodObject<{
|
|
102671
101069
|
name: z$1.ZodString;
|
|
@@ -102679,13 +101077,13 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
|
|
|
102679
101077
|
}>>;
|
|
102680
101078
|
emoji: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
102681
101079
|
tags: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>>;
|
|
102682
|
-
accessMode: z$1.ZodOptional<z$1.ZodEnum<["InviteOnly", "Open"]>>;
|
|
101080
|
+
accessMode: z$1.ZodOptional<z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>>;
|
|
102683
101081
|
isArchived: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodBoolean>>;
|
|
102684
101082
|
fpContextId: z$1.ZodOptional<z$1.ZodString>;
|
|
102685
101083
|
instruction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
101084
|
+
defaultRole: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>>;
|
|
102686
101085
|
} & {
|
|
102687
101086
|
id: z$1.ZodString;
|
|
102688
|
-
membersToRetain: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
102689
101087
|
}, "strip", z$1.ZodTypeAny, {
|
|
102690
101088
|
id: string;
|
|
102691
101089
|
name?: string | undefined;
|
|
@@ -102695,11 +101093,11 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
|
|
|
102695
101093
|
} | undefined;
|
|
102696
101094
|
emoji?: string | undefined;
|
|
102697
101095
|
tags?: string[] | undefined;
|
|
102698
|
-
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
101096
|
+
accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
102699
101097
|
isArchived?: boolean | undefined;
|
|
102700
101098
|
fpContextId?: string | undefined;
|
|
102701
101099
|
instruction?: string | null | undefined;
|
|
102702
|
-
|
|
101100
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
102703
101101
|
}, {
|
|
102704
101102
|
id: string;
|
|
102705
101103
|
name?: string | undefined;
|
|
@@ -102709,21 +101107,21 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
|
|
|
102709
101107
|
} | undefined;
|
|
102710
101108
|
emoji?: string | undefined;
|
|
102711
101109
|
tags?: string[] | undefined;
|
|
102712
|
-
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
101110
|
+
accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
102713
101111
|
isArchived?: boolean | undefined;
|
|
102714
101112
|
fpContextId?: string | undefined;
|
|
102715
101113
|
instruction?: string | null | undefined;
|
|
102716
|
-
|
|
101114
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
102717
101115
|
}>;
|
|
102718
|
-
type
|
|
102719
|
-
declare const
|
|
101116
|
+
type DTOForgeProjectUpdate = z$1.infer<typeof DTOForgeProjectUpdate>;
|
|
101117
|
+
declare const DTOForgeProjectRemoveResponse: z$1.ZodObject<{
|
|
102720
101118
|
ok: z$1.ZodLiteral<true>;
|
|
102721
101119
|
}, "strip", z$1.ZodTypeAny, {
|
|
102722
101120
|
ok: true;
|
|
102723
101121
|
}, {
|
|
102724
101122
|
ok: true;
|
|
102725
101123
|
}>;
|
|
102726
|
-
type
|
|
101124
|
+
type DTOForgeProjectRemoveResponse = z$1.infer<typeof DTOForgeProjectRemoveResponse>;
|
|
102727
101125
|
|
|
102728
101126
|
declare const DTOForgeChatMessage: z$1.ZodObject<{
|
|
102729
101127
|
id: z$1.ZodString;
|
|
@@ -142085,34 +140483,8 @@ declare class ForgeProjectsEndpoint {
|
|
|
142085
140483
|
description?: string | undefined;
|
|
142086
140484
|
};
|
|
142087
140485
|
tags: string[];
|
|
142088
|
-
members: {
|
|
142089
|
-
user: {
|
|
142090
|
-
id: string;
|
|
142091
|
-
email: string;
|
|
142092
|
-
profile: {
|
|
142093
|
-
name: string;
|
|
142094
|
-
nickname?: string | undefined;
|
|
142095
|
-
avatar?: string | undefined;
|
|
142096
|
-
};
|
|
142097
|
-
};
|
|
142098
|
-
userId: string;
|
|
142099
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
142100
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142101
|
-
forgeProjectId: string;
|
|
142102
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142103
|
-
workspaceMembershipId: string;
|
|
142104
|
-
}[];
|
|
142105
|
-
invitations: {
|
|
142106
|
-
email: string;
|
|
142107
|
-
createdAt: Date;
|
|
142108
|
-
updatedAt: Date;
|
|
142109
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
142110
|
-
workspaceInvitationId: string;
|
|
142111
|
-
forgeProjectId: string;
|
|
142112
|
-
createdById: string;
|
|
142113
|
-
}[];
|
|
142114
140486
|
workspaceId: string;
|
|
142115
|
-
accessMode: "Open" | "InviteOnly";
|
|
140487
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
142116
140488
|
context: {
|
|
142117
140489
|
id: string;
|
|
142118
140490
|
name: string;
|
|
@@ -142159,13 +140531,14 @@ declare class ForgeProjectsEndpoint {
|
|
|
142159
140531
|
} | undefined;
|
|
142160
140532
|
};
|
|
142161
140533
|
instruction: string | null;
|
|
140534
|
+
defaultRole: "Viewer" | "Builder";
|
|
142162
140535
|
emoji?: string | undefined;
|
|
142163
140536
|
updatedAt?: Date | undefined;
|
|
142164
140537
|
createdByUserId?: string | undefined;
|
|
142165
140538
|
isArchived?: boolean | undefined;
|
|
142166
140539
|
}[];
|
|
142167
140540
|
}>;
|
|
142168
|
-
create(workspaceId: string, body:
|
|
140541
|
+
create(workspaceId: string, body: DTOForgeProjectCreate): Promise<{
|
|
142169
140542
|
project: {
|
|
142170
140543
|
id: string;
|
|
142171
140544
|
createdAt: Date;
|
|
@@ -142175,34 +140548,8 @@ declare class ForgeProjectsEndpoint {
|
|
|
142175
140548
|
description?: string | undefined;
|
|
142176
140549
|
};
|
|
142177
140550
|
tags: string[];
|
|
142178
|
-
members: {
|
|
142179
|
-
user: {
|
|
142180
|
-
id: string;
|
|
142181
|
-
email: string;
|
|
142182
|
-
profile: {
|
|
142183
|
-
name: string;
|
|
142184
|
-
nickname?: string | undefined;
|
|
142185
|
-
avatar?: string | undefined;
|
|
142186
|
-
};
|
|
142187
|
-
};
|
|
142188
|
-
userId: string;
|
|
142189
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
142190
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142191
|
-
forgeProjectId: string;
|
|
142192
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142193
|
-
workspaceMembershipId: string;
|
|
142194
|
-
}[];
|
|
142195
|
-
invitations: {
|
|
142196
|
-
email: string;
|
|
142197
|
-
createdAt: Date;
|
|
142198
|
-
updatedAt: Date;
|
|
142199
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
142200
|
-
workspaceInvitationId: string;
|
|
142201
|
-
forgeProjectId: string;
|
|
142202
|
-
createdById: string;
|
|
142203
|
-
}[];
|
|
142204
140551
|
workspaceId: string;
|
|
142205
|
-
accessMode: "Open" | "InviteOnly";
|
|
140552
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
142206
140553
|
context: {
|
|
142207
140554
|
id: string;
|
|
142208
140555
|
name: string;
|
|
@@ -142249,6 +140596,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
142249
140596
|
} | undefined;
|
|
142250
140597
|
};
|
|
142251
140598
|
instruction: string | null;
|
|
140599
|
+
defaultRole: "Viewer" | "Builder";
|
|
142252
140600
|
emoji?: string | undefined;
|
|
142253
140601
|
updatedAt?: Date | undefined;
|
|
142254
140602
|
createdByUserId?: string | undefined;
|
|
@@ -142265,34 +140613,8 @@ declare class ForgeProjectsEndpoint {
|
|
|
142265
140613
|
description?: string | undefined;
|
|
142266
140614
|
};
|
|
142267
140615
|
tags: string[];
|
|
142268
|
-
members: {
|
|
142269
|
-
user: {
|
|
142270
|
-
id: string;
|
|
142271
|
-
email: string;
|
|
142272
|
-
profile: {
|
|
142273
|
-
name: string;
|
|
142274
|
-
nickname?: string | undefined;
|
|
142275
|
-
avatar?: string | undefined;
|
|
142276
|
-
};
|
|
142277
|
-
};
|
|
142278
|
-
userId: string;
|
|
142279
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
142280
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142281
|
-
forgeProjectId: string;
|
|
142282
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142283
|
-
workspaceMembershipId: string;
|
|
142284
|
-
}[];
|
|
142285
|
-
invitations: {
|
|
142286
|
-
email: string;
|
|
142287
|
-
createdAt: Date;
|
|
142288
|
-
updatedAt: Date;
|
|
142289
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
142290
|
-
workspaceInvitationId: string;
|
|
142291
|
-
forgeProjectId: string;
|
|
142292
|
-
createdById: string;
|
|
142293
|
-
}[];
|
|
142294
140616
|
workspaceId: string;
|
|
142295
|
-
accessMode: "Open" | "InviteOnly";
|
|
140617
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
142296
140618
|
context: {
|
|
142297
140619
|
id: string;
|
|
142298
140620
|
name: string;
|
|
@@ -142339,13 +140661,14 @@ declare class ForgeProjectsEndpoint {
|
|
|
142339
140661
|
} | undefined;
|
|
142340
140662
|
};
|
|
142341
140663
|
instruction: string | null;
|
|
140664
|
+
defaultRole: "Viewer" | "Builder";
|
|
142342
140665
|
emoji?: string | undefined;
|
|
142343
140666
|
updatedAt?: Date | undefined;
|
|
142344
140667
|
createdByUserId?: string | undefined;
|
|
142345
140668
|
isArchived?: boolean | undefined;
|
|
142346
140669
|
} | null;
|
|
142347
140670
|
}>;
|
|
142348
|
-
update(workspaceId: string, projectId: string, body:
|
|
140671
|
+
update(workspaceId: string, projectId: string, body: DTOForgeProjectUpdate): Promise<{
|
|
142349
140672
|
project: {
|
|
142350
140673
|
id: string;
|
|
142351
140674
|
createdAt: Date;
|
|
@@ -142355,34 +140678,8 @@ declare class ForgeProjectsEndpoint {
|
|
|
142355
140678
|
description?: string | undefined;
|
|
142356
140679
|
};
|
|
142357
140680
|
tags: string[];
|
|
142358
|
-
members: {
|
|
142359
|
-
user: {
|
|
142360
|
-
id: string;
|
|
142361
|
-
email: string;
|
|
142362
|
-
profile: {
|
|
142363
|
-
name: string;
|
|
142364
|
-
nickname?: string | undefined;
|
|
142365
|
-
avatar?: string | undefined;
|
|
142366
|
-
};
|
|
142367
|
-
};
|
|
142368
|
-
userId: string;
|
|
142369
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
142370
|
-
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142371
|
-
forgeProjectId: string;
|
|
142372
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142373
|
-
workspaceMembershipId: string;
|
|
142374
|
-
}[];
|
|
142375
|
-
invitations: {
|
|
142376
|
-
email: string;
|
|
142377
|
-
createdAt: Date;
|
|
142378
|
-
updatedAt: Date;
|
|
142379
|
-
role: "Admin" | "Viewer" | "Editor";
|
|
142380
|
-
workspaceInvitationId: string;
|
|
142381
|
-
forgeProjectId: string;
|
|
142382
|
-
createdById: string;
|
|
142383
|
-
}[];
|
|
142384
140681
|
workspaceId: string;
|
|
142385
|
-
accessMode: "Open" | "InviteOnly";
|
|
140682
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
142386
140683
|
context: {
|
|
142387
140684
|
id: string;
|
|
142388
140685
|
name: string;
|
|
@@ -142429,6 +140726,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
142429
140726
|
} | undefined;
|
|
142430
140727
|
};
|
|
142431
140728
|
instruction: string | null;
|
|
140729
|
+
defaultRole: "Viewer" | "Builder";
|
|
142432
140730
|
emoji?: string | undefined;
|
|
142433
140731
|
updatedAt?: Date | undefined;
|
|
142434
140732
|
createdByUserId?: string | undefined;
|
|
@@ -142604,8 +140902,8 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142604
140902
|
};
|
|
142605
140903
|
};
|
|
142606
140904
|
userId: string;
|
|
142607
|
-
role: "Admin" | "Viewer" | "
|
|
142608
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
140905
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
140906
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
142609
140907
|
forgeProjectId: string;
|
|
142610
140908
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142611
140909
|
workspaceMembershipId: string;
|
|
@@ -142614,7 +140912,7 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142614
140912
|
email: string;
|
|
142615
140913
|
createdAt: Date;
|
|
142616
140914
|
updatedAt: Date;
|
|
142617
|
-
role: "Admin" | "Viewer" | "
|
|
140915
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
142618
140916
|
workspaceInvitationId: string;
|
|
142619
140917
|
forgeProjectId: string;
|
|
142620
140918
|
createdById: string;
|
|
@@ -142632,8 +140930,8 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142632
140930
|
};
|
|
142633
140931
|
};
|
|
142634
140932
|
userId: string;
|
|
142635
|
-
role: "Admin" | "Viewer" | "
|
|
142636
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
140933
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
140934
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
142637
140935
|
forgeProjectId: string;
|
|
142638
140936
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142639
140937
|
workspaceMembershipId: string;
|
|
@@ -142642,7 +140940,7 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142642
140940
|
email: string;
|
|
142643
140941
|
createdAt: Date;
|
|
142644
140942
|
updatedAt: Date;
|
|
142645
|
-
role: "Admin" | "Viewer" | "
|
|
140943
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
142646
140944
|
workspaceInvitationId: string;
|
|
142647
140945
|
forgeProjectId: string;
|
|
142648
140946
|
createdById: string;
|
|
@@ -142660,8 +140958,8 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142660
140958
|
};
|
|
142661
140959
|
};
|
|
142662
140960
|
userId: string;
|
|
142663
|
-
role: "Admin" | "Viewer" | "
|
|
142664
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
140961
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
140962
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
142665
140963
|
forgeProjectId: string;
|
|
142666
140964
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142667
140965
|
workspaceMembershipId: string;
|
|
@@ -143340,8 +141638,8 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
143340
141638
|
};
|
|
143341
141639
|
};
|
|
143342
141640
|
userId: string;
|
|
143343
|
-
role: "Admin" | "Viewer" | "
|
|
143344
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
141641
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
141642
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
143345
141643
|
forgeProjectId: string;
|
|
143346
141644
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143347
141645
|
workspaceMembershipId: string;
|
|
@@ -143350,7 +141648,7 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
143350
141648
|
email: string;
|
|
143351
141649
|
createdAt: Date;
|
|
143352
141650
|
updatedAt: Date;
|
|
143353
|
-
role: "Admin" | "Viewer" | "
|
|
141651
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
143354
141652
|
workspaceInvitationId: string;
|
|
143355
141653
|
forgeProjectId: string;
|
|
143356
141654
|
createdById: string;
|
|
@@ -143368,8 +141666,8 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
143368
141666
|
};
|
|
143369
141667
|
};
|
|
143370
141668
|
userId: string;
|
|
143371
|
-
role: "Admin" | "Viewer" | "
|
|
143372
|
-
effectiveRole: "Admin" | "Viewer" | "
|
|
141669
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
141670
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
143373
141671
|
forgeProjectId: string;
|
|
143374
141672
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143375
141673
|
workspaceMembershipId: string;
|
|
@@ -143378,7 +141676,7 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
143378
141676
|
email: string;
|
|
143379
141677
|
createdAt: Date;
|
|
143380
141678
|
updatedAt: Date;
|
|
143381
|
-
role: "Admin" | "Viewer" | "
|
|
141679
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
143382
141680
|
workspaceInvitationId: string;
|
|
143383
141681
|
forgeProjectId: string;
|
|
143384
141682
|
createdById: string;
|
|
@@ -143389,7 +141687,7 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
143389
141687
|
email: string;
|
|
143390
141688
|
createdAt: Date;
|
|
143391
141689
|
updatedAt: Date;
|
|
143392
|
-
role: "Admin" | "Viewer" | "
|
|
141690
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
143393
141691
|
workspaceInvitationId: string;
|
|
143394
141692
|
forgeProjectId: string;
|
|
143395
141693
|
createdById: string;
|
|
@@ -146905,4 +145203,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
146905
145203
|
reason: ValidationErrorReason | undefined;
|
|
146906
145204
|
};
|
|
146907
145205
|
|
|
146908
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeatureMessagesEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
145206
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeatureMessagesEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|