@supernova-studio/client 1.12.2 → 1.14.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 +875 -186
- package/dist/index.d.ts +875 -186
- package/dist/index.js +50 -51
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1796 -1797
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -80698,9 +80698,9 @@ declare const DTOForgeProjectContextRemoveResponse: z$1.ZodObject<{
|
|
|
80698
80698
|
}>;
|
|
80699
80699
|
type DTOForgeProjectContextRemoveResponse = z$1.infer<typeof DTOForgeProjectContextRemoveResponse>;
|
|
80700
80700
|
|
|
80701
|
-
declare const DTOForgeProjectFeature: z__default.ZodObject<
|
|
80701
|
+
declare const DTOForgeProjectFeature: z__default.ZodObject<{
|
|
80702
80702
|
createdAt: z__default.ZodDate;
|
|
80703
|
-
createdByUserId: z__default.
|
|
80703
|
+
createdByUserId: z__default.ZodString;
|
|
80704
80704
|
description: z__default.ZodString;
|
|
80705
80705
|
id: z__default.ZodString;
|
|
80706
80706
|
isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
@@ -80709,22 +80709,34 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<Pick<{
|
|
|
80709
80709
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
80710
80710
|
sortOrder: z__default.ZodNumber;
|
|
80711
80711
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
80712
|
-
}, "
|
|
80712
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80713
80713
|
id: string;
|
|
80714
80714
|
name: string;
|
|
80715
|
+
createdAt: Date;
|
|
80715
80716
|
description: string;
|
|
80717
|
+
sortOrder: number;
|
|
80718
|
+
createdByUserId: string;
|
|
80719
|
+
projectId: string;
|
|
80720
|
+
updatedAt?: Date | undefined;
|
|
80716
80721
|
isArchived?: boolean | undefined;
|
|
80722
|
+
sectionId?: string | undefined;
|
|
80717
80723
|
}, {
|
|
80718
80724
|
id: string;
|
|
80719
80725
|
name: string;
|
|
80726
|
+
createdAt: Date;
|
|
80720
80727
|
description: string;
|
|
80728
|
+
sortOrder: number;
|
|
80729
|
+
createdByUserId: string;
|
|
80730
|
+
projectId: string;
|
|
80731
|
+
updatedAt?: Date | undefined;
|
|
80721
80732
|
isArchived?: boolean | undefined;
|
|
80733
|
+
sectionId?: string | undefined;
|
|
80722
80734
|
}>;
|
|
80723
80735
|
type DTOForgeProjectFeature = z__default.infer<typeof DTOForgeProjectFeature>;
|
|
80724
80736
|
declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
80725
|
-
features: z__default.ZodArray<z__default.ZodObject<
|
|
80737
|
+
features: z__default.ZodArray<z__default.ZodObject<{
|
|
80726
80738
|
createdAt: z__default.ZodDate;
|
|
80727
|
-
createdByUserId: z__default.
|
|
80739
|
+
createdByUserId: z__default.ZodString;
|
|
80728
80740
|
description: z__default.ZodString;
|
|
80729
80741
|
id: z__default.ZodString;
|
|
80730
80742
|
isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
@@ -80733,30 +80745,54 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
80733
80745
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
80734
80746
|
sortOrder: z__default.ZodNumber;
|
|
80735
80747
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
80736
|
-
}, "
|
|
80748
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80737
80749
|
id: string;
|
|
80738
80750
|
name: string;
|
|
80751
|
+
createdAt: Date;
|
|
80739
80752
|
description: string;
|
|
80753
|
+
sortOrder: number;
|
|
80754
|
+
createdByUserId: string;
|
|
80755
|
+
projectId: string;
|
|
80756
|
+
updatedAt?: Date | undefined;
|
|
80740
80757
|
isArchived?: boolean | undefined;
|
|
80758
|
+
sectionId?: string | undefined;
|
|
80741
80759
|
}, {
|
|
80742
80760
|
id: string;
|
|
80743
80761
|
name: string;
|
|
80762
|
+
createdAt: Date;
|
|
80744
80763
|
description: string;
|
|
80764
|
+
sortOrder: number;
|
|
80765
|
+
createdByUserId: string;
|
|
80766
|
+
projectId: string;
|
|
80767
|
+
updatedAt?: Date | undefined;
|
|
80745
80768
|
isArchived?: boolean | undefined;
|
|
80769
|
+
sectionId?: string | undefined;
|
|
80746
80770
|
}>, "many">;
|
|
80747
80771
|
}, "strip", z__default.ZodTypeAny, {
|
|
80748
80772
|
features: {
|
|
80749
80773
|
id: string;
|
|
80750
80774
|
name: string;
|
|
80775
|
+
createdAt: Date;
|
|
80751
80776
|
description: string;
|
|
80777
|
+
sortOrder: number;
|
|
80778
|
+
createdByUserId: string;
|
|
80779
|
+
projectId: string;
|
|
80780
|
+
updatedAt?: Date | undefined;
|
|
80752
80781
|
isArchived?: boolean | undefined;
|
|
80782
|
+
sectionId?: string | undefined;
|
|
80753
80783
|
}[];
|
|
80754
80784
|
}, {
|
|
80755
80785
|
features: {
|
|
80756
80786
|
id: string;
|
|
80757
80787
|
name: string;
|
|
80788
|
+
createdAt: Date;
|
|
80758
80789
|
description: string;
|
|
80790
|
+
sortOrder: number;
|
|
80791
|
+
createdByUserId: string;
|
|
80792
|
+
projectId: string;
|
|
80793
|
+
updatedAt?: Date | undefined;
|
|
80759
80794
|
isArchived?: boolean | undefined;
|
|
80795
|
+
sectionId?: string | undefined;
|
|
80760
80796
|
}[];
|
|
80761
80797
|
}>;
|
|
80762
80798
|
type DTOForgeProjectFeatureListResponse = z__default.infer<typeof DTOForgeProjectFeatureListResponse>;
|
|
@@ -80819,10 +80855,10 @@ declare const DTOForgeProjectFeatureMoveInput: z__default.ZodObject<{
|
|
|
80819
80855
|
afterFeatureId?: string | null | undefined;
|
|
80820
80856
|
}>;
|
|
80821
80857
|
type DTOForgeProjectFeatureMoveInput = z__default.infer<typeof DTOForgeProjectFeatureMoveInput>;
|
|
80822
|
-
declare const
|
|
80823
|
-
feature: z__default.ZodObject<
|
|
80858
|
+
declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
80859
|
+
feature: z__default.ZodObject<{
|
|
80824
80860
|
createdAt: z__default.ZodDate;
|
|
80825
|
-
createdByUserId: z__default.
|
|
80861
|
+
createdByUserId: z__default.ZodString;
|
|
80826
80862
|
description: z__default.ZodString;
|
|
80827
80863
|
id: z__default.ZodString;
|
|
80828
80864
|
isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
@@ -80831,33 +80867,57 @@ declare const DTOForgeProjectFeatureResponse: z__default.ZodObject<{
|
|
|
80831
80867
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
80832
80868
|
sortOrder: z__default.ZodNumber;
|
|
80833
80869
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
80834
|
-
}, "
|
|
80870
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80835
80871
|
id: string;
|
|
80836
80872
|
name: string;
|
|
80873
|
+
createdAt: Date;
|
|
80837
80874
|
description: string;
|
|
80875
|
+
sortOrder: number;
|
|
80876
|
+
createdByUserId: string;
|
|
80877
|
+
projectId: string;
|
|
80878
|
+
updatedAt?: Date | undefined;
|
|
80838
80879
|
isArchived?: boolean | undefined;
|
|
80880
|
+
sectionId?: string | undefined;
|
|
80839
80881
|
}, {
|
|
80840
80882
|
id: string;
|
|
80841
80883
|
name: string;
|
|
80884
|
+
createdAt: Date;
|
|
80842
80885
|
description: string;
|
|
80886
|
+
sortOrder: number;
|
|
80887
|
+
createdByUserId: string;
|
|
80888
|
+
projectId: string;
|
|
80889
|
+
updatedAt?: Date | undefined;
|
|
80843
80890
|
isArchived?: boolean | undefined;
|
|
80891
|
+
sectionId?: string | undefined;
|
|
80844
80892
|
}>;
|
|
80845
80893
|
}, "strip", z__default.ZodTypeAny, {
|
|
80846
80894
|
feature: {
|
|
80847
80895
|
id: string;
|
|
80848
80896
|
name: string;
|
|
80897
|
+
createdAt: Date;
|
|
80849
80898
|
description: string;
|
|
80899
|
+
sortOrder: number;
|
|
80900
|
+
createdByUserId: string;
|
|
80901
|
+
projectId: string;
|
|
80902
|
+
updatedAt?: Date | undefined;
|
|
80850
80903
|
isArchived?: boolean | undefined;
|
|
80904
|
+
sectionId?: string | undefined;
|
|
80851
80905
|
};
|
|
80852
80906
|
}, {
|
|
80853
80907
|
feature: {
|
|
80854
80908
|
id: string;
|
|
80855
80909
|
name: string;
|
|
80910
|
+
createdAt: Date;
|
|
80856
80911
|
description: string;
|
|
80912
|
+
sortOrder: number;
|
|
80913
|
+
createdByUserId: string;
|
|
80914
|
+
projectId: string;
|
|
80915
|
+
updatedAt?: Date | undefined;
|
|
80857
80916
|
isArchived?: boolean | undefined;
|
|
80917
|
+
sectionId?: string | undefined;
|
|
80858
80918
|
};
|
|
80859
80919
|
}>;
|
|
80860
|
-
type
|
|
80920
|
+
type DTOForgeProjectFeatureGetResponse = z__default.infer<typeof DTOForgeProjectFeatureGetResponse>;
|
|
80861
80921
|
|
|
80862
80922
|
declare const DTOForgeProjectInvitation: z$1.ZodObject<{
|
|
80863
80923
|
email: z$1.ZodString;
|
|
@@ -80915,12 +80975,10 @@ declare const DTOUpdateForgeProjectInvitation: z$1.ZodObject<Omit<Pick<{
|
|
|
80915
80975
|
createdById: z$1.ZodString;
|
|
80916
80976
|
}, "email" | "role"> & {
|
|
80917
80977
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
80918
|
-
}, "email">, "strip", z$1.ZodTypeAny, {
|
|
80978
|
+
}, "email" | "workspaceRole">, "strip", z$1.ZodTypeAny, {
|
|
80919
80979
|
role: "Admin" | "Viewer" | "Editor";
|
|
80920
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
80921
80980
|
}, {
|
|
80922
80981
|
role: "Admin" | "Viewer" | "Editor";
|
|
80923
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
80924
80982
|
}>;
|
|
80925
80983
|
type DTOUpdateForgeProjectInvitation = z$1.infer<typeof DTOUpdateForgeProjectInvitation>;
|
|
80926
80984
|
declare const DTORemoveForgeProjectInvitation: z$1.ZodObject<Pick<Pick<{
|
|
@@ -80988,7 +81046,7 @@ declare const DTOForgeProjectInvitationsListResponse: z$1.ZodObject<{
|
|
|
80988
81046
|
}>;
|
|
80989
81047
|
type DTOForgeProjectInvitationsListResponse = z$1.infer<typeof DTOForgeProjectInvitationsListResponse>;
|
|
80990
81048
|
declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
80991
|
-
invitation: z$1.
|
|
81049
|
+
invitation: z$1.ZodObject<{
|
|
80992
81050
|
email: z$1.ZodString;
|
|
80993
81051
|
forgeProjectId: z$1.ZodString;
|
|
80994
81052
|
workspaceInvitationId: z$1.ZodString;
|
|
@@ -81012,7 +81070,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
81012
81070
|
workspaceInvitationId: string;
|
|
81013
81071
|
forgeProjectId: string;
|
|
81014
81072
|
createdById: string;
|
|
81015
|
-
}
|
|
81073
|
+
}>;
|
|
81016
81074
|
}, "strip", z$1.ZodTypeAny, {
|
|
81017
81075
|
invitation: {
|
|
81018
81076
|
email: string;
|
|
@@ -81022,7 +81080,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
81022
81080
|
workspaceInvitationId: string;
|
|
81023
81081
|
forgeProjectId: string;
|
|
81024
81082
|
createdById: string;
|
|
81025
|
-
}
|
|
81083
|
+
};
|
|
81026
81084
|
}, {
|
|
81027
81085
|
invitation: {
|
|
81028
81086
|
email: string;
|
|
@@ -81032,7 +81090,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
81032
81090
|
workspaceInvitationId: string;
|
|
81033
81091
|
forgeProjectId: string;
|
|
81034
81092
|
createdById: string;
|
|
81035
|
-
}
|
|
81093
|
+
};
|
|
81036
81094
|
}>;
|
|
81037
81095
|
type DTOForgeProjectInvitationGetResponse = z$1.infer<typeof DTOForgeProjectInvitationGetResponse>;
|
|
81038
81096
|
declare const DTOForgeProjectInvitationCreateResponse: z$1.ZodObject<{
|
|
@@ -95288,6 +95346,31 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
95288
95346
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95289
95347
|
workspaceMembershipId: string;
|
|
95290
95348
|
}>, "many">;
|
|
95349
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
95350
|
+
email: z$1.ZodString;
|
|
95351
|
+
forgeProjectId: z$1.ZodString;
|
|
95352
|
+
workspaceInvitationId: z$1.ZodString;
|
|
95353
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
95354
|
+
createdAt: z$1.ZodDate;
|
|
95355
|
+
updatedAt: z$1.ZodDate;
|
|
95356
|
+
createdById: z$1.ZodString;
|
|
95357
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
95358
|
+
email: string;
|
|
95359
|
+
createdAt: Date;
|
|
95360
|
+
updatedAt: Date;
|
|
95361
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95362
|
+
workspaceInvitationId: string;
|
|
95363
|
+
forgeProjectId: string;
|
|
95364
|
+
createdById: string;
|
|
95365
|
+
}, {
|
|
95366
|
+
email: string;
|
|
95367
|
+
createdAt: Date;
|
|
95368
|
+
updatedAt: Date;
|
|
95369
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95370
|
+
workspaceInvitationId: string;
|
|
95371
|
+
forgeProjectId: string;
|
|
95372
|
+
createdById: string;
|
|
95373
|
+
}>, "many">;
|
|
95291
95374
|
}, "strip", z$1.ZodTypeAny, {
|
|
95292
95375
|
members: {
|
|
95293
95376
|
user: {
|
|
@@ -95306,6 +95389,15 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
95306
95389
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95307
95390
|
workspaceMembershipId: string;
|
|
95308
95391
|
}[];
|
|
95392
|
+
invitations: {
|
|
95393
|
+
email: string;
|
|
95394
|
+
createdAt: Date;
|
|
95395
|
+
updatedAt: Date;
|
|
95396
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95397
|
+
workspaceInvitationId: string;
|
|
95398
|
+
forgeProjectId: string;
|
|
95399
|
+
createdById: string;
|
|
95400
|
+
}[];
|
|
95309
95401
|
}, {
|
|
95310
95402
|
members: {
|
|
95311
95403
|
user: {
|
|
@@ -95324,10 +95416,19 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
95324
95416
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95325
95417
|
workspaceMembershipId: string;
|
|
95326
95418
|
}[];
|
|
95419
|
+
invitations: {
|
|
95420
|
+
email: string;
|
|
95421
|
+
createdAt: Date;
|
|
95422
|
+
updatedAt: Date;
|
|
95423
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95424
|
+
workspaceInvitationId: string;
|
|
95425
|
+
forgeProjectId: string;
|
|
95426
|
+
createdById: string;
|
|
95427
|
+
}[];
|
|
95327
95428
|
}>;
|
|
95328
95429
|
type DTOForgeProjectMembersListResponse = z$1.infer<typeof DTOForgeProjectMembersListResponse>;
|
|
95329
95430
|
declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
95330
|
-
member: z$1.
|
|
95431
|
+
member: z$1.ZodObject<{
|
|
95331
95432
|
userId: z$1.ZodString;
|
|
95332
95433
|
forgeProjectId: z$1.ZodString;
|
|
95333
95434
|
workspaceMembershipId: z$1.ZodString;
|
|
@@ -95400,7 +95501,7 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
95400
95501
|
forgeProjectId: string;
|
|
95401
95502
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95402
95503
|
workspaceMembershipId: string;
|
|
95403
|
-
}
|
|
95504
|
+
}>;
|
|
95404
95505
|
}, "strip", z$1.ZodTypeAny, {
|
|
95405
95506
|
member: {
|
|
95406
95507
|
user: {
|
|
@@ -95418,7 +95519,7 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
95418
95519
|
forgeProjectId: string;
|
|
95419
95520
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95420
95521
|
workspaceMembershipId: string;
|
|
95421
|
-
}
|
|
95522
|
+
};
|
|
95422
95523
|
}, {
|
|
95423
95524
|
member: {
|
|
95424
95525
|
user: {
|
|
@@ -95436,7 +95537,7 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
95436
95537
|
forgeProjectId: string;
|
|
95437
95538
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95438
95539
|
workspaceMembershipId: string;
|
|
95439
|
-
}
|
|
95540
|
+
};
|
|
95440
95541
|
}>;
|
|
95441
95542
|
type DTOForgeProjectMemberGetResponse = z$1.infer<typeof DTOForgeProjectMemberGetResponse>;
|
|
95442
95543
|
declare const DTOForgeProjectMemberCreateResponse: z$1.ZodObject<{
|
|
@@ -95673,6 +95774,40 @@ declare const DTOForgeProjectMemberRemoveResponse: z$1.ZodObject<{
|
|
|
95673
95774
|
ok: true;
|
|
95674
95775
|
}>;
|
|
95675
95776
|
type DTOForgeProjectMemberRemoveResponse = z$1.infer<typeof DTOForgeProjectMemberRemoveResponse>;
|
|
95777
|
+
declare const DTOAddMembersToForgeProject: z$1.ZodObject<{
|
|
95778
|
+
membersToInvite: z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
95779
|
+
email: z$1.ZodString;
|
|
95780
|
+
forgeProjectId: z$1.ZodString;
|
|
95781
|
+
workspaceInvitationId: z$1.ZodString;
|
|
95782
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
95783
|
+
createdAt: z$1.ZodDate;
|
|
95784
|
+
updatedAt: z$1.ZodDate;
|
|
95785
|
+
createdById: z$1.ZodString;
|
|
95786
|
+
}, "email" | "role"> & {
|
|
95787
|
+
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
95788
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
95789
|
+
email: string;
|
|
95790
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95791
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95792
|
+
}, {
|
|
95793
|
+
email: string;
|
|
95794
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95795
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95796
|
+
}>, "many">;
|
|
95797
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
95798
|
+
membersToInvite: {
|
|
95799
|
+
email: string;
|
|
95800
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95801
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95802
|
+
}[];
|
|
95803
|
+
}, {
|
|
95804
|
+
membersToInvite: {
|
|
95805
|
+
email: string;
|
|
95806
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95807
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95808
|
+
}[];
|
|
95809
|
+
}>;
|
|
95810
|
+
type DTOAddMembersToForgeProject = z$1.infer<typeof DTOAddMembersToForgeProject>;
|
|
95676
95811
|
|
|
95677
95812
|
declare const DTOForgeProjectRoom: z$1.ZodObject<{
|
|
95678
95813
|
id: z$1.ZodString;
|
|
@@ -95991,6 +96126,31 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
95991
96126
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95992
96127
|
workspaceMembershipId: string;
|
|
95993
96128
|
}>, "many">;
|
|
96129
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
96130
|
+
email: z$1.ZodString;
|
|
96131
|
+
forgeProjectId: z$1.ZodString;
|
|
96132
|
+
workspaceInvitationId: z$1.ZodString;
|
|
96133
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
96134
|
+
createdAt: z$1.ZodDate;
|
|
96135
|
+
updatedAt: z$1.ZodDate;
|
|
96136
|
+
createdById: z$1.ZodString;
|
|
96137
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
96138
|
+
email: string;
|
|
96139
|
+
createdAt: Date;
|
|
96140
|
+
updatedAt: Date;
|
|
96141
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96142
|
+
workspaceInvitationId: string;
|
|
96143
|
+
forgeProjectId: string;
|
|
96144
|
+
createdById: string;
|
|
96145
|
+
}, {
|
|
96146
|
+
email: string;
|
|
96147
|
+
createdAt: Date;
|
|
96148
|
+
updatedAt: Date;
|
|
96149
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96150
|
+
workspaceInvitationId: string;
|
|
96151
|
+
forgeProjectId: string;
|
|
96152
|
+
createdById: string;
|
|
96153
|
+
}>, "many">;
|
|
95994
96154
|
}, "strip", z$1.ZodTypeAny, {
|
|
95995
96155
|
id: string;
|
|
95996
96156
|
createdAt: Date;
|
|
@@ -96017,81 +96177,14 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
96017
96177
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96018
96178
|
workspaceMembershipId: string;
|
|
96019
96179
|
}[];
|
|
96020
|
-
|
|
96021
|
-
|
|
96022
|
-
context: {
|
|
96023
|
-
id: string;
|
|
96024
|
-
name: string;
|
|
96180
|
+
invitations: {
|
|
96181
|
+
email: string;
|
|
96025
96182
|
createdAt: Date;
|
|
96026
96183
|
updatedAt: Date;
|
|
96027
|
-
workspaceId: string;
|
|
96028
|
-
designSystemId: string;
|
|
96029
|
-
dependencies: {
|
|
96030
|
-
type: "npm";
|
|
96031
|
-
version: string;
|
|
96032
|
-
packageName: string;
|
|
96033
|
-
}[];
|
|
96034
|
-
meta: {
|
|
96035
|
-
name: string;
|
|
96036
|
-
description?: string | undefined;
|
|
96037
|
-
};
|
|
96038
|
-
definition: string;
|
|
96039
|
-
npmProxySettings: {
|
|
96040
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
96041
|
-
enabledScopes: string[];
|
|
96042
|
-
bypassProxy: boolean;
|
|
96043
|
-
customRegistryUrl?: string | undefined;
|
|
96044
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
96045
|
-
npmProxyVersion?: number | undefined;
|
|
96046
|
-
} & ({
|
|
96047
|
-
password: string;
|
|
96048
|
-
username: string;
|
|
96049
|
-
authType: "Basic";
|
|
96050
|
-
} | {
|
|
96051
|
-
accessToken: string;
|
|
96052
|
-
authType: "Bearer";
|
|
96053
|
-
} | {
|
|
96054
|
-
authType: "None";
|
|
96055
|
-
} | {
|
|
96056
|
-
authType: "Custom";
|
|
96057
|
-
authHeaderName: string;
|
|
96058
|
-
authHeaderValue: string;
|
|
96059
|
-
});
|
|
96060
|
-
platform: "Angular" | "Vue" | "React";
|
|
96061
|
-
styling: "CSS" | "Tailwind";
|
|
96062
|
-
tailwindConfig?: {
|
|
96063
|
-
version: string;
|
|
96064
|
-
content: string;
|
|
96065
|
-
} | undefined;
|
|
96066
|
-
};
|
|
96067
|
-
instruction: string | null;
|
|
96068
|
-
updatedAt?: Date | undefined;
|
|
96069
|
-
createdByUserId?: string | undefined;
|
|
96070
|
-
isArchived?: boolean | undefined;
|
|
96071
|
-
}, {
|
|
96072
|
-
id: string;
|
|
96073
|
-
createdAt: Date;
|
|
96074
|
-
name: string;
|
|
96075
|
-
meta: {
|
|
96076
|
-
name: string;
|
|
96077
|
-
description?: string | undefined;
|
|
96078
|
-
};
|
|
96079
|
-
members: {
|
|
96080
|
-
user: {
|
|
96081
|
-
id: string;
|
|
96082
|
-
email: string;
|
|
96083
|
-
profile: {
|
|
96084
|
-
name: string;
|
|
96085
|
-
nickname?: string | undefined;
|
|
96086
|
-
avatar?: string | undefined;
|
|
96087
|
-
};
|
|
96088
|
-
};
|
|
96089
|
-
userId: string;
|
|
96090
96184
|
role: "Admin" | "Viewer" | "Editor";
|
|
96091
|
-
|
|
96185
|
+
workspaceInvitationId: string;
|
|
96092
96186
|
forgeProjectId: string;
|
|
96093
|
-
|
|
96094
|
-
workspaceMembershipId: string;
|
|
96187
|
+
createdById: string;
|
|
96095
96188
|
}[];
|
|
96096
96189
|
workspaceId: string;
|
|
96097
96190
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -96104,8 +96197,8 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
96104
96197
|
designSystemId: string;
|
|
96105
96198
|
dependencies: {
|
|
96106
96199
|
type: "npm";
|
|
96200
|
+
version: string;
|
|
96107
96201
|
packageName: string;
|
|
96108
|
-
version?: string | undefined;
|
|
96109
96202
|
}[];
|
|
96110
96203
|
meta: {
|
|
96111
96204
|
name: string;
|
|
@@ -96115,8 +96208,93 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
96115
96208
|
npmProxySettings: {
|
|
96116
96209
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
96117
96210
|
enabledScopes: string[];
|
|
96211
|
+
bypassProxy: boolean;
|
|
96118
96212
|
customRegistryUrl?: string | undefined;
|
|
96119
|
-
|
|
96213
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
96214
|
+
npmProxyVersion?: number | undefined;
|
|
96215
|
+
} & ({
|
|
96216
|
+
password: string;
|
|
96217
|
+
username: string;
|
|
96218
|
+
authType: "Basic";
|
|
96219
|
+
} | {
|
|
96220
|
+
accessToken: string;
|
|
96221
|
+
authType: "Bearer";
|
|
96222
|
+
} | {
|
|
96223
|
+
authType: "None";
|
|
96224
|
+
} | {
|
|
96225
|
+
authType: "Custom";
|
|
96226
|
+
authHeaderName: string;
|
|
96227
|
+
authHeaderValue: string;
|
|
96228
|
+
});
|
|
96229
|
+
platform: "Angular" | "Vue" | "React";
|
|
96230
|
+
styling: "CSS" | "Tailwind";
|
|
96231
|
+
tailwindConfig?: {
|
|
96232
|
+
version: string;
|
|
96233
|
+
content: string;
|
|
96234
|
+
} | undefined;
|
|
96235
|
+
};
|
|
96236
|
+
instruction: string | null;
|
|
96237
|
+
updatedAt?: Date | undefined;
|
|
96238
|
+
createdByUserId?: string | undefined;
|
|
96239
|
+
isArchived?: boolean | undefined;
|
|
96240
|
+
}, {
|
|
96241
|
+
id: string;
|
|
96242
|
+
createdAt: Date;
|
|
96243
|
+
name: string;
|
|
96244
|
+
meta: {
|
|
96245
|
+
name: string;
|
|
96246
|
+
description?: string | undefined;
|
|
96247
|
+
};
|
|
96248
|
+
members: {
|
|
96249
|
+
user: {
|
|
96250
|
+
id: string;
|
|
96251
|
+
email: string;
|
|
96252
|
+
profile: {
|
|
96253
|
+
name: string;
|
|
96254
|
+
nickname?: string | undefined;
|
|
96255
|
+
avatar?: string | undefined;
|
|
96256
|
+
};
|
|
96257
|
+
};
|
|
96258
|
+
userId: string;
|
|
96259
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96260
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
96261
|
+
forgeProjectId: string;
|
|
96262
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96263
|
+
workspaceMembershipId: string;
|
|
96264
|
+
}[];
|
|
96265
|
+
invitations: {
|
|
96266
|
+
email: string;
|
|
96267
|
+
createdAt: Date;
|
|
96268
|
+
updatedAt: Date;
|
|
96269
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96270
|
+
workspaceInvitationId: string;
|
|
96271
|
+
forgeProjectId: string;
|
|
96272
|
+
createdById: string;
|
|
96273
|
+
}[];
|
|
96274
|
+
workspaceId: string;
|
|
96275
|
+
accessMode: "Open" | "InviteOnly";
|
|
96276
|
+
context: {
|
|
96277
|
+
id: string;
|
|
96278
|
+
name: string;
|
|
96279
|
+
createdAt: Date;
|
|
96280
|
+
updatedAt: Date;
|
|
96281
|
+
workspaceId: string;
|
|
96282
|
+
designSystemId: string;
|
|
96283
|
+
dependencies: {
|
|
96284
|
+
type: "npm";
|
|
96285
|
+
packageName: string;
|
|
96286
|
+
version?: string | undefined;
|
|
96287
|
+
}[];
|
|
96288
|
+
meta: {
|
|
96289
|
+
name: string;
|
|
96290
|
+
description?: string | undefined;
|
|
96291
|
+
};
|
|
96292
|
+
definition: string;
|
|
96293
|
+
npmProxySettings: {
|
|
96294
|
+
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
96295
|
+
enabledScopes: string[];
|
|
96296
|
+
customRegistryUrl?: string | undefined;
|
|
96297
|
+
bypassProxy?: boolean | undefined;
|
|
96120
96298
|
npmProxyRegistryConfigId?: string | undefined;
|
|
96121
96299
|
npmProxyVersion?: number | undefined;
|
|
96122
96300
|
} & ({
|
|
@@ -96438,6 +96616,31 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96438
96616
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96439
96617
|
workspaceMembershipId: string;
|
|
96440
96618
|
}>, "many">;
|
|
96619
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
96620
|
+
email: z$1.ZodString;
|
|
96621
|
+
forgeProjectId: z$1.ZodString;
|
|
96622
|
+
workspaceInvitationId: z$1.ZodString;
|
|
96623
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
96624
|
+
createdAt: z$1.ZodDate;
|
|
96625
|
+
updatedAt: z$1.ZodDate;
|
|
96626
|
+
createdById: z$1.ZodString;
|
|
96627
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
96628
|
+
email: string;
|
|
96629
|
+
createdAt: Date;
|
|
96630
|
+
updatedAt: Date;
|
|
96631
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96632
|
+
workspaceInvitationId: string;
|
|
96633
|
+
forgeProjectId: string;
|
|
96634
|
+
createdById: string;
|
|
96635
|
+
}, {
|
|
96636
|
+
email: string;
|
|
96637
|
+
createdAt: Date;
|
|
96638
|
+
updatedAt: Date;
|
|
96639
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96640
|
+
workspaceInvitationId: string;
|
|
96641
|
+
forgeProjectId: string;
|
|
96642
|
+
createdById: string;
|
|
96643
|
+
}>, "many">;
|
|
96441
96644
|
}, "strip", z$1.ZodTypeAny, {
|
|
96442
96645
|
id: string;
|
|
96443
96646
|
createdAt: Date;
|
|
@@ -96464,6 +96667,15 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96464
96667
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96465
96668
|
workspaceMembershipId: string;
|
|
96466
96669
|
}[];
|
|
96670
|
+
invitations: {
|
|
96671
|
+
email: string;
|
|
96672
|
+
createdAt: Date;
|
|
96673
|
+
updatedAt: Date;
|
|
96674
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96675
|
+
workspaceInvitationId: string;
|
|
96676
|
+
forgeProjectId: string;
|
|
96677
|
+
createdById: string;
|
|
96678
|
+
}[];
|
|
96467
96679
|
workspaceId: string;
|
|
96468
96680
|
accessMode: "Open" | "InviteOnly";
|
|
96469
96681
|
context: {
|
|
@@ -96540,6 +96752,15 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96540
96752
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96541
96753
|
workspaceMembershipId: string;
|
|
96542
96754
|
}[];
|
|
96755
|
+
invitations: {
|
|
96756
|
+
email: string;
|
|
96757
|
+
createdAt: Date;
|
|
96758
|
+
updatedAt: Date;
|
|
96759
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96760
|
+
workspaceInvitationId: string;
|
|
96761
|
+
forgeProjectId: string;
|
|
96762
|
+
createdById: string;
|
|
96763
|
+
}[];
|
|
96543
96764
|
workspaceId: string;
|
|
96544
96765
|
accessMode: "Open" | "InviteOnly";
|
|
96545
96766
|
context: {
|
|
@@ -96620,6 +96841,15 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96620
96841
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96621
96842
|
workspaceMembershipId: string;
|
|
96622
96843
|
}[];
|
|
96844
|
+
invitations: {
|
|
96845
|
+
email: string;
|
|
96846
|
+
createdAt: Date;
|
|
96847
|
+
updatedAt: Date;
|
|
96848
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96849
|
+
workspaceInvitationId: string;
|
|
96850
|
+
forgeProjectId: string;
|
|
96851
|
+
createdById: string;
|
|
96852
|
+
}[];
|
|
96623
96853
|
workspaceId: string;
|
|
96624
96854
|
accessMode: "Open" | "InviteOnly";
|
|
96625
96855
|
context: {
|
|
@@ -96698,6 +96928,15 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96698
96928
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96699
96929
|
workspaceMembershipId: string;
|
|
96700
96930
|
}[];
|
|
96931
|
+
invitations: {
|
|
96932
|
+
email: string;
|
|
96933
|
+
createdAt: Date;
|
|
96934
|
+
updatedAt: Date;
|
|
96935
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96936
|
+
workspaceInvitationId: string;
|
|
96937
|
+
forgeProjectId: string;
|
|
96938
|
+
createdById: string;
|
|
96939
|
+
}[];
|
|
96701
96940
|
workspaceId: string;
|
|
96702
96941
|
accessMode: "Open" | "InviteOnly";
|
|
96703
96942
|
context: {
|
|
@@ -97044,6 +97283,31 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97044
97283
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97045
97284
|
workspaceMembershipId: string;
|
|
97046
97285
|
}>, "many">;
|
|
97286
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
97287
|
+
email: z$1.ZodString;
|
|
97288
|
+
forgeProjectId: z$1.ZodString;
|
|
97289
|
+
workspaceInvitationId: z$1.ZodString;
|
|
97290
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97291
|
+
createdAt: z$1.ZodDate;
|
|
97292
|
+
updatedAt: z$1.ZodDate;
|
|
97293
|
+
createdById: z$1.ZodString;
|
|
97294
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
97295
|
+
email: string;
|
|
97296
|
+
createdAt: Date;
|
|
97297
|
+
updatedAt: Date;
|
|
97298
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97299
|
+
workspaceInvitationId: string;
|
|
97300
|
+
forgeProjectId: string;
|
|
97301
|
+
createdById: string;
|
|
97302
|
+
}, {
|
|
97303
|
+
email: string;
|
|
97304
|
+
createdAt: Date;
|
|
97305
|
+
updatedAt: Date;
|
|
97306
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97307
|
+
workspaceInvitationId: string;
|
|
97308
|
+
forgeProjectId: string;
|
|
97309
|
+
createdById: string;
|
|
97310
|
+
}>, "many">;
|
|
97047
97311
|
}, "strip", z$1.ZodTypeAny, {
|
|
97048
97312
|
id: string;
|
|
97049
97313
|
createdAt: Date;
|
|
@@ -97070,6 +97334,15 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97070
97334
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97071
97335
|
workspaceMembershipId: string;
|
|
97072
97336
|
}[];
|
|
97337
|
+
invitations: {
|
|
97338
|
+
email: string;
|
|
97339
|
+
createdAt: Date;
|
|
97340
|
+
updatedAt: Date;
|
|
97341
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97342
|
+
workspaceInvitationId: string;
|
|
97343
|
+
forgeProjectId: string;
|
|
97344
|
+
createdById: string;
|
|
97345
|
+
}[];
|
|
97073
97346
|
workspaceId: string;
|
|
97074
97347
|
accessMode: "Open" | "InviteOnly";
|
|
97075
97348
|
context: {
|
|
@@ -97146,85 +97419,14 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97146
97419
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97147
97420
|
workspaceMembershipId: string;
|
|
97148
97421
|
}[];
|
|
97149
|
-
|
|
97150
|
-
|
|
97151
|
-
context: {
|
|
97152
|
-
id: string;
|
|
97153
|
-
name: string;
|
|
97422
|
+
invitations: {
|
|
97423
|
+
email: string;
|
|
97154
97424
|
createdAt: Date;
|
|
97155
97425
|
updatedAt: Date;
|
|
97156
|
-
workspaceId: string;
|
|
97157
|
-
designSystemId: string;
|
|
97158
|
-
dependencies: {
|
|
97159
|
-
type: "npm";
|
|
97160
|
-
packageName: string;
|
|
97161
|
-
version?: string | undefined;
|
|
97162
|
-
}[];
|
|
97163
|
-
meta: {
|
|
97164
|
-
name: string;
|
|
97165
|
-
description?: string | undefined;
|
|
97166
|
-
};
|
|
97167
|
-
definition: string;
|
|
97168
|
-
npmProxySettings: {
|
|
97169
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
97170
|
-
enabledScopes: string[];
|
|
97171
|
-
customRegistryUrl?: string | undefined;
|
|
97172
|
-
bypassProxy?: boolean | undefined;
|
|
97173
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
97174
|
-
npmProxyVersion?: number | undefined;
|
|
97175
|
-
} & ({
|
|
97176
|
-
password: string;
|
|
97177
|
-
username: string;
|
|
97178
|
-
authType: "Basic";
|
|
97179
|
-
} | {
|
|
97180
|
-
accessToken: string;
|
|
97181
|
-
authType: "Bearer";
|
|
97182
|
-
} | {
|
|
97183
|
-
authType: "None";
|
|
97184
|
-
} | {
|
|
97185
|
-
authType: "Custom";
|
|
97186
|
-
authHeaderName: string;
|
|
97187
|
-
authHeaderValue: string;
|
|
97188
|
-
});
|
|
97189
|
-
platform: "Angular" | "Vue" | "React";
|
|
97190
|
-
styling: "CSS" | "Tailwind";
|
|
97191
|
-
tailwindConfig?: {
|
|
97192
|
-
version: string;
|
|
97193
|
-
content: string;
|
|
97194
|
-
} | undefined;
|
|
97195
|
-
};
|
|
97196
|
-
instruction: string | null;
|
|
97197
|
-
tags?: string[] | undefined;
|
|
97198
|
-
updatedAt?: Date | undefined;
|
|
97199
|
-
createdByUserId?: string | undefined;
|
|
97200
|
-
isArchived?: boolean | undefined;
|
|
97201
|
-
}>, "many">;
|
|
97202
|
-
}, "strip", z$1.ZodTypeAny, {
|
|
97203
|
-
projects: {
|
|
97204
|
-
id: string;
|
|
97205
|
-
createdAt: Date;
|
|
97206
|
-
name: string;
|
|
97207
|
-
meta: {
|
|
97208
|
-
name: string;
|
|
97209
|
-
description?: string | undefined;
|
|
97210
|
-
};
|
|
97211
|
-
tags: string[];
|
|
97212
|
-
members: {
|
|
97213
|
-
user: {
|
|
97214
|
-
id: string;
|
|
97215
|
-
email: string;
|
|
97216
|
-
profile: {
|
|
97217
|
-
name: string;
|
|
97218
|
-
nickname?: string | undefined;
|
|
97219
|
-
avatar?: string | undefined;
|
|
97220
|
-
};
|
|
97221
|
-
};
|
|
97222
|
-
userId: string;
|
|
97223
97426
|
role: "Admin" | "Viewer" | "Editor";
|
|
97224
|
-
|
|
97427
|
+
workspaceInvitationId: string;
|
|
97225
97428
|
forgeProjectId: string;
|
|
97226
|
-
|
|
97227
|
-
workspaceMembershipId: string;
|
|
97429
|
+
createdById: string;
|
|
97228
97430
|
}[];
|
|
97229
97431
|
workspaceId: string;
|
|
97230
97432
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -97237,8 +97439,8 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97237
97439
|
designSystemId: string;
|
|
97238
97440
|
dependencies: {
|
|
97239
97441
|
type: "npm";
|
|
97240
|
-
version: string;
|
|
97241
97442
|
packageName: string;
|
|
97443
|
+
version?: string | undefined;
|
|
97242
97444
|
}[];
|
|
97243
97445
|
meta: {
|
|
97244
97446
|
name: string;
|
|
@@ -97248,7 +97450,96 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97248
97450
|
npmProxySettings: {
|
|
97249
97451
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
97250
97452
|
enabledScopes: string[];
|
|
97251
|
-
|
|
97453
|
+
customRegistryUrl?: string | undefined;
|
|
97454
|
+
bypassProxy?: boolean | undefined;
|
|
97455
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
97456
|
+
npmProxyVersion?: number | undefined;
|
|
97457
|
+
} & ({
|
|
97458
|
+
password: string;
|
|
97459
|
+
username: string;
|
|
97460
|
+
authType: "Basic";
|
|
97461
|
+
} | {
|
|
97462
|
+
accessToken: string;
|
|
97463
|
+
authType: "Bearer";
|
|
97464
|
+
} | {
|
|
97465
|
+
authType: "None";
|
|
97466
|
+
} | {
|
|
97467
|
+
authType: "Custom";
|
|
97468
|
+
authHeaderName: string;
|
|
97469
|
+
authHeaderValue: string;
|
|
97470
|
+
});
|
|
97471
|
+
platform: "Angular" | "Vue" | "React";
|
|
97472
|
+
styling: "CSS" | "Tailwind";
|
|
97473
|
+
tailwindConfig?: {
|
|
97474
|
+
version: string;
|
|
97475
|
+
content: string;
|
|
97476
|
+
} | undefined;
|
|
97477
|
+
};
|
|
97478
|
+
instruction: string | null;
|
|
97479
|
+
tags?: string[] | undefined;
|
|
97480
|
+
updatedAt?: Date | undefined;
|
|
97481
|
+
createdByUserId?: string | undefined;
|
|
97482
|
+
isArchived?: boolean | undefined;
|
|
97483
|
+
}>, "many">;
|
|
97484
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
97485
|
+
projects: {
|
|
97486
|
+
id: string;
|
|
97487
|
+
createdAt: Date;
|
|
97488
|
+
name: string;
|
|
97489
|
+
meta: {
|
|
97490
|
+
name: string;
|
|
97491
|
+
description?: string | undefined;
|
|
97492
|
+
};
|
|
97493
|
+
tags: string[];
|
|
97494
|
+
members: {
|
|
97495
|
+
user: {
|
|
97496
|
+
id: string;
|
|
97497
|
+
email: string;
|
|
97498
|
+
profile: {
|
|
97499
|
+
name: string;
|
|
97500
|
+
nickname?: string | undefined;
|
|
97501
|
+
avatar?: string | undefined;
|
|
97502
|
+
};
|
|
97503
|
+
};
|
|
97504
|
+
userId: string;
|
|
97505
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97506
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97507
|
+
forgeProjectId: string;
|
|
97508
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97509
|
+
workspaceMembershipId: string;
|
|
97510
|
+
}[];
|
|
97511
|
+
invitations: {
|
|
97512
|
+
email: string;
|
|
97513
|
+
createdAt: Date;
|
|
97514
|
+
updatedAt: Date;
|
|
97515
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97516
|
+
workspaceInvitationId: string;
|
|
97517
|
+
forgeProjectId: string;
|
|
97518
|
+
createdById: string;
|
|
97519
|
+
}[];
|
|
97520
|
+
workspaceId: string;
|
|
97521
|
+
accessMode: "Open" | "InviteOnly";
|
|
97522
|
+
context: {
|
|
97523
|
+
id: string;
|
|
97524
|
+
name: string;
|
|
97525
|
+
createdAt: Date;
|
|
97526
|
+
updatedAt: Date;
|
|
97527
|
+
workspaceId: string;
|
|
97528
|
+
designSystemId: string;
|
|
97529
|
+
dependencies: {
|
|
97530
|
+
type: "npm";
|
|
97531
|
+
version: string;
|
|
97532
|
+
packageName: string;
|
|
97533
|
+
}[];
|
|
97534
|
+
meta: {
|
|
97535
|
+
name: string;
|
|
97536
|
+
description?: string | undefined;
|
|
97537
|
+
};
|
|
97538
|
+
definition: string;
|
|
97539
|
+
npmProxySettings: {
|
|
97540
|
+
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
97541
|
+
enabledScopes: string[];
|
|
97542
|
+
bypassProxy: boolean;
|
|
97252
97543
|
customRegistryUrl?: string | undefined;
|
|
97253
97544
|
npmProxyRegistryConfigId?: string | undefined;
|
|
97254
97545
|
npmProxyVersion?: number | undefined;
|
|
@@ -97304,6 +97595,15 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97304
97595
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97305
97596
|
workspaceMembershipId: string;
|
|
97306
97597
|
}[];
|
|
97598
|
+
invitations: {
|
|
97599
|
+
email: string;
|
|
97600
|
+
createdAt: Date;
|
|
97601
|
+
updatedAt: Date;
|
|
97602
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97603
|
+
workspaceInvitationId: string;
|
|
97604
|
+
forgeProjectId: string;
|
|
97605
|
+
createdById: string;
|
|
97606
|
+
}[];
|
|
97307
97607
|
workspaceId: string;
|
|
97308
97608
|
accessMode: "Open" | "InviteOnly";
|
|
97309
97609
|
context: {
|
|
@@ -97650,6 +97950,31 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97650
97950
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97651
97951
|
workspaceMembershipId: string;
|
|
97652
97952
|
}>, "many">;
|
|
97953
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
97954
|
+
email: z$1.ZodString;
|
|
97955
|
+
forgeProjectId: z$1.ZodString;
|
|
97956
|
+
workspaceInvitationId: z$1.ZodString;
|
|
97957
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97958
|
+
createdAt: z$1.ZodDate;
|
|
97959
|
+
updatedAt: z$1.ZodDate;
|
|
97960
|
+
createdById: z$1.ZodString;
|
|
97961
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
97962
|
+
email: string;
|
|
97963
|
+
createdAt: Date;
|
|
97964
|
+
updatedAt: Date;
|
|
97965
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97966
|
+
workspaceInvitationId: string;
|
|
97967
|
+
forgeProjectId: string;
|
|
97968
|
+
createdById: string;
|
|
97969
|
+
}, {
|
|
97970
|
+
email: string;
|
|
97971
|
+
createdAt: Date;
|
|
97972
|
+
updatedAt: Date;
|
|
97973
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97974
|
+
workspaceInvitationId: string;
|
|
97975
|
+
forgeProjectId: string;
|
|
97976
|
+
createdById: string;
|
|
97977
|
+
}>, "many">;
|
|
97653
97978
|
}, "strip", z$1.ZodTypeAny, {
|
|
97654
97979
|
id: string;
|
|
97655
97980
|
createdAt: Date;
|
|
@@ -97676,6 +98001,15 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97676
98001
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97677
98002
|
workspaceMembershipId: string;
|
|
97678
98003
|
}[];
|
|
98004
|
+
invitations: {
|
|
98005
|
+
email: string;
|
|
98006
|
+
createdAt: Date;
|
|
98007
|
+
updatedAt: Date;
|
|
98008
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98009
|
+
workspaceInvitationId: string;
|
|
98010
|
+
forgeProjectId: string;
|
|
98011
|
+
createdById: string;
|
|
98012
|
+
}[];
|
|
97679
98013
|
workspaceId: string;
|
|
97680
98014
|
accessMode: "Open" | "InviteOnly";
|
|
97681
98015
|
context: {
|
|
@@ -97752,6 +98086,15 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97752
98086
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97753
98087
|
workspaceMembershipId: string;
|
|
97754
98088
|
}[];
|
|
98089
|
+
invitations: {
|
|
98090
|
+
email: string;
|
|
98091
|
+
createdAt: Date;
|
|
98092
|
+
updatedAt: Date;
|
|
98093
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98094
|
+
workspaceInvitationId: string;
|
|
98095
|
+
forgeProjectId: string;
|
|
98096
|
+
createdById: string;
|
|
98097
|
+
}[];
|
|
97755
98098
|
workspaceId: string;
|
|
97756
98099
|
accessMode: "Open" | "InviteOnly";
|
|
97757
98100
|
context: {
|
|
@@ -97832,6 +98175,15 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97832
98175
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97833
98176
|
workspaceMembershipId: string;
|
|
97834
98177
|
}[];
|
|
98178
|
+
invitations: {
|
|
98179
|
+
email: string;
|
|
98180
|
+
createdAt: Date;
|
|
98181
|
+
updatedAt: Date;
|
|
98182
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98183
|
+
workspaceInvitationId: string;
|
|
98184
|
+
forgeProjectId: string;
|
|
98185
|
+
createdById: string;
|
|
98186
|
+
}[];
|
|
97835
98187
|
workspaceId: string;
|
|
97836
98188
|
accessMode: "Open" | "InviteOnly";
|
|
97837
98189
|
context: {
|
|
@@ -97910,6 +98262,15 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97910
98262
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97911
98263
|
workspaceMembershipId: string;
|
|
97912
98264
|
}[];
|
|
98265
|
+
invitations: {
|
|
98266
|
+
email: string;
|
|
98267
|
+
createdAt: Date;
|
|
98268
|
+
updatedAt: Date;
|
|
98269
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98270
|
+
workspaceInvitationId: string;
|
|
98271
|
+
forgeProjectId: string;
|
|
98272
|
+
createdById: string;
|
|
98273
|
+
}[];
|
|
97913
98274
|
workspaceId: string;
|
|
97914
98275
|
accessMode: "Open" | "InviteOnly";
|
|
97915
98276
|
context: {
|
|
@@ -97966,7 +98327,7 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97966
98327
|
}>;
|
|
97967
98328
|
type DTOCreateForgeProjectResponse = z$1.infer<typeof DTOCreateForgeProjectResponse>;
|
|
97968
98329
|
declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
97969
|
-
project: z$1.
|
|
98330
|
+
project: z$1.ZodObject<Omit<{
|
|
97970
98331
|
createdAt: z$1.ZodDate;
|
|
97971
98332
|
createdByUserId: z$1.ZodOptional<z$1.ZodString>;
|
|
97972
98333
|
fpContextId: z$1.ZodString;
|
|
@@ -98256,6 +98617,31 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98256
98617
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98257
98618
|
workspaceMembershipId: string;
|
|
98258
98619
|
}>, "many">;
|
|
98620
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
98621
|
+
email: z$1.ZodString;
|
|
98622
|
+
forgeProjectId: z$1.ZodString;
|
|
98623
|
+
workspaceInvitationId: z$1.ZodString;
|
|
98624
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98625
|
+
createdAt: z$1.ZodDate;
|
|
98626
|
+
updatedAt: z$1.ZodDate;
|
|
98627
|
+
createdById: z$1.ZodString;
|
|
98628
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
98629
|
+
email: string;
|
|
98630
|
+
createdAt: Date;
|
|
98631
|
+
updatedAt: Date;
|
|
98632
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98633
|
+
workspaceInvitationId: string;
|
|
98634
|
+
forgeProjectId: string;
|
|
98635
|
+
createdById: string;
|
|
98636
|
+
}, {
|
|
98637
|
+
email: string;
|
|
98638
|
+
createdAt: Date;
|
|
98639
|
+
updatedAt: Date;
|
|
98640
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98641
|
+
workspaceInvitationId: string;
|
|
98642
|
+
forgeProjectId: string;
|
|
98643
|
+
createdById: string;
|
|
98644
|
+
}>, "many">;
|
|
98259
98645
|
}, "strip", z$1.ZodTypeAny, {
|
|
98260
98646
|
id: string;
|
|
98261
98647
|
createdAt: Date;
|
|
@@ -98282,6 +98668,15 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98282
98668
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98283
98669
|
workspaceMembershipId: string;
|
|
98284
98670
|
}[];
|
|
98671
|
+
invitations: {
|
|
98672
|
+
email: string;
|
|
98673
|
+
createdAt: Date;
|
|
98674
|
+
updatedAt: Date;
|
|
98675
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98676
|
+
workspaceInvitationId: string;
|
|
98677
|
+
forgeProjectId: string;
|
|
98678
|
+
createdById: string;
|
|
98679
|
+
}[];
|
|
98285
98680
|
workspaceId: string;
|
|
98286
98681
|
accessMode: "Open" | "InviteOnly";
|
|
98287
98682
|
context: {
|
|
@@ -98358,6 +98753,15 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98358
98753
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98359
98754
|
workspaceMembershipId: string;
|
|
98360
98755
|
}[];
|
|
98756
|
+
invitations: {
|
|
98757
|
+
email: string;
|
|
98758
|
+
createdAt: Date;
|
|
98759
|
+
updatedAt: Date;
|
|
98760
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98761
|
+
workspaceInvitationId: string;
|
|
98762
|
+
forgeProjectId: string;
|
|
98763
|
+
createdById: string;
|
|
98764
|
+
}[];
|
|
98361
98765
|
workspaceId: string;
|
|
98362
98766
|
accessMode: "Open" | "InviteOnly";
|
|
98363
98767
|
context: {
|
|
@@ -98410,7 +98814,7 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98410
98814
|
updatedAt?: Date | undefined;
|
|
98411
98815
|
createdByUserId?: string | undefined;
|
|
98412
98816
|
isArchived?: boolean | undefined;
|
|
98413
|
-
}
|
|
98817
|
+
}>;
|
|
98414
98818
|
}, "strip", z$1.ZodTypeAny, {
|
|
98415
98819
|
project: {
|
|
98416
98820
|
id: string;
|
|
@@ -98438,6 +98842,15 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98438
98842
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98439
98843
|
workspaceMembershipId: string;
|
|
98440
98844
|
}[];
|
|
98845
|
+
invitations: {
|
|
98846
|
+
email: string;
|
|
98847
|
+
createdAt: Date;
|
|
98848
|
+
updatedAt: Date;
|
|
98849
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98850
|
+
workspaceInvitationId: string;
|
|
98851
|
+
forgeProjectId: string;
|
|
98852
|
+
createdById: string;
|
|
98853
|
+
}[];
|
|
98441
98854
|
workspaceId: string;
|
|
98442
98855
|
accessMode: "Open" | "InviteOnly";
|
|
98443
98856
|
context: {
|
|
@@ -98489,7 +98902,7 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98489
98902
|
updatedAt?: Date | undefined;
|
|
98490
98903
|
createdByUserId?: string | undefined;
|
|
98491
98904
|
isArchived?: boolean | undefined;
|
|
98492
|
-
}
|
|
98905
|
+
};
|
|
98493
98906
|
}, {
|
|
98494
98907
|
project: {
|
|
98495
98908
|
id: string;
|
|
@@ -98516,6 +98929,15 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98516
98929
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98517
98930
|
workspaceMembershipId: string;
|
|
98518
98931
|
}[];
|
|
98932
|
+
invitations: {
|
|
98933
|
+
email: string;
|
|
98934
|
+
createdAt: Date;
|
|
98935
|
+
updatedAt: Date;
|
|
98936
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98937
|
+
workspaceInvitationId: string;
|
|
98938
|
+
forgeProjectId: string;
|
|
98939
|
+
createdById: string;
|
|
98940
|
+
}[];
|
|
98519
98941
|
workspaceId: string;
|
|
98520
98942
|
accessMode: "Open" | "InviteOnly";
|
|
98521
98943
|
context: {
|
|
@@ -98568,7 +98990,7 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98568
98990
|
updatedAt?: Date | undefined;
|
|
98569
98991
|
createdByUserId?: string | undefined;
|
|
98570
98992
|
isArchived?: boolean | undefined;
|
|
98571
|
-
}
|
|
98993
|
+
};
|
|
98572
98994
|
}>;
|
|
98573
98995
|
type DTOUpdateForgeProjectResponse = z$1.infer<typeof DTOUpdateForgeProjectResponse>;
|
|
98574
98996
|
declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
@@ -98862,6 +99284,31 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
98862
99284
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98863
99285
|
workspaceMembershipId: string;
|
|
98864
99286
|
}>, "many">;
|
|
99287
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
99288
|
+
email: z$1.ZodString;
|
|
99289
|
+
forgeProjectId: z$1.ZodString;
|
|
99290
|
+
workspaceInvitationId: z$1.ZodString;
|
|
99291
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99292
|
+
createdAt: z$1.ZodDate;
|
|
99293
|
+
updatedAt: z$1.ZodDate;
|
|
99294
|
+
createdById: z$1.ZodString;
|
|
99295
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99296
|
+
email: string;
|
|
99297
|
+
createdAt: Date;
|
|
99298
|
+
updatedAt: Date;
|
|
99299
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99300
|
+
workspaceInvitationId: string;
|
|
99301
|
+
forgeProjectId: string;
|
|
99302
|
+
createdById: string;
|
|
99303
|
+
}, {
|
|
99304
|
+
email: string;
|
|
99305
|
+
createdAt: Date;
|
|
99306
|
+
updatedAt: Date;
|
|
99307
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99308
|
+
workspaceInvitationId: string;
|
|
99309
|
+
forgeProjectId: string;
|
|
99310
|
+
createdById: string;
|
|
99311
|
+
}>, "many">;
|
|
98865
99312
|
}, "strip", z$1.ZodTypeAny, {
|
|
98866
99313
|
id: string;
|
|
98867
99314
|
createdAt: Date;
|
|
@@ -98888,6 +99335,15 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
98888
99335
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98889
99336
|
workspaceMembershipId: string;
|
|
98890
99337
|
}[];
|
|
99338
|
+
invitations: {
|
|
99339
|
+
email: string;
|
|
99340
|
+
createdAt: Date;
|
|
99341
|
+
updatedAt: Date;
|
|
99342
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99343
|
+
workspaceInvitationId: string;
|
|
99344
|
+
forgeProjectId: string;
|
|
99345
|
+
createdById: string;
|
|
99346
|
+
}[];
|
|
98891
99347
|
workspaceId: string;
|
|
98892
99348
|
accessMode: "Open" | "InviteOnly";
|
|
98893
99349
|
context: {
|
|
@@ -98964,6 +99420,15 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
98964
99420
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98965
99421
|
workspaceMembershipId: string;
|
|
98966
99422
|
}[];
|
|
99423
|
+
invitations: {
|
|
99424
|
+
email: string;
|
|
99425
|
+
createdAt: Date;
|
|
99426
|
+
updatedAt: Date;
|
|
99427
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99428
|
+
workspaceInvitationId: string;
|
|
99429
|
+
forgeProjectId: string;
|
|
99430
|
+
createdById: string;
|
|
99431
|
+
}[];
|
|
98967
99432
|
workspaceId: string;
|
|
98968
99433
|
accessMode: "Open" | "InviteOnly";
|
|
98969
99434
|
context: {
|
|
@@ -99044,6 +99509,15 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
99044
99509
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99045
99510
|
workspaceMembershipId: string;
|
|
99046
99511
|
}[];
|
|
99512
|
+
invitations: {
|
|
99513
|
+
email: string;
|
|
99514
|
+
createdAt: Date;
|
|
99515
|
+
updatedAt: Date;
|
|
99516
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99517
|
+
workspaceInvitationId: string;
|
|
99518
|
+
forgeProjectId: string;
|
|
99519
|
+
createdById: string;
|
|
99520
|
+
}[];
|
|
99047
99521
|
workspaceId: string;
|
|
99048
99522
|
accessMode: "Open" | "InviteOnly";
|
|
99049
99523
|
context: {
|
|
@@ -99122,6 +99596,15 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
99122
99596
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99123
99597
|
workspaceMembershipId: string;
|
|
99124
99598
|
}[];
|
|
99599
|
+
invitations: {
|
|
99600
|
+
email: string;
|
|
99601
|
+
createdAt: Date;
|
|
99602
|
+
updatedAt: Date;
|
|
99603
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99604
|
+
workspaceInvitationId: string;
|
|
99605
|
+
forgeProjectId: string;
|
|
99606
|
+
createdById: string;
|
|
99607
|
+
}[];
|
|
99125
99608
|
workspaceId: string;
|
|
99126
99609
|
accessMode: "Open" | "InviteOnly";
|
|
99127
99610
|
context: {
|
|
@@ -99199,7 +99682,27 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
99199
99682
|
workspaceId: z$1.ZodString;
|
|
99200
99683
|
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
99201
99684
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
99202
|
-
}, "name" | "meta" | "tags" | "accessMode" | "isArchived" | "fpContextId" | "instruction"
|
|
99685
|
+
}, "name" | "meta" | "tags" | "accessMode" | "isArchived" | "fpContextId" | "instruction"> & {
|
|
99686
|
+
membersToInvite: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
99687
|
+
email: z$1.ZodString;
|
|
99688
|
+
forgeProjectId: z$1.ZodString;
|
|
99689
|
+
workspaceInvitationId: z$1.ZodString;
|
|
99690
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99691
|
+
createdAt: z$1.ZodDate;
|
|
99692
|
+
updatedAt: z$1.ZodDate;
|
|
99693
|
+
createdById: z$1.ZodString;
|
|
99694
|
+
}, "email" | "role"> & {
|
|
99695
|
+
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
99696
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99697
|
+
email: string;
|
|
99698
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99699
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99700
|
+
}, {
|
|
99701
|
+
email: string;
|
|
99702
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99703
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99704
|
+
}>, "many">>;
|
|
99705
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99203
99706
|
name: string;
|
|
99204
99707
|
meta: {
|
|
99205
99708
|
name: string;
|
|
@@ -99210,6 +99713,11 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
99210
99713
|
fpContextId: string;
|
|
99211
99714
|
instruction: string | null;
|
|
99212
99715
|
isArchived?: boolean | undefined;
|
|
99716
|
+
membersToInvite?: {
|
|
99717
|
+
email: string;
|
|
99718
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99719
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99720
|
+
}[] | undefined;
|
|
99213
99721
|
}, {
|
|
99214
99722
|
name: string;
|
|
99215
99723
|
meta: {
|
|
@@ -99221,6 +99729,11 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
99221
99729
|
instruction: string | null;
|
|
99222
99730
|
tags?: string[] | undefined;
|
|
99223
99731
|
isArchived?: boolean | undefined;
|
|
99732
|
+
membersToInvite?: {
|
|
99733
|
+
email: string;
|
|
99734
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99735
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99736
|
+
}[] | undefined;
|
|
99224
99737
|
}>;
|
|
99225
99738
|
type DTOCreateForgeProject = z$1.infer<typeof DTOCreateForgeProject>;
|
|
99226
99739
|
declare const DTOUpdateForgeProject: z$1.ZodObject<{
|
|
@@ -123891,6 +124404,19 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
123891
124404
|
errorReason: string;
|
|
123892
124405
|
max?: number | undefined;
|
|
123893
124406
|
}>;
|
|
124407
|
+
forgeActiveProjects: z__default.ZodObject<{
|
|
124408
|
+
max: z__default.ZodOptional<z__default.ZodNumber>;
|
|
124409
|
+
errorMessage: z__default.ZodString;
|
|
124410
|
+
errorReason: z__default.ZodString;
|
|
124411
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
124412
|
+
errorMessage: string;
|
|
124413
|
+
errorReason: string;
|
|
124414
|
+
max?: number | undefined;
|
|
124415
|
+
}, {
|
|
124416
|
+
errorMessage: string;
|
|
124417
|
+
errorReason: string;
|
|
124418
|
+
max?: number | undefined;
|
|
124419
|
+
}>;
|
|
123894
124420
|
}, "strip", z__default.ZodTypeAny, {
|
|
123895
124421
|
analytics: {
|
|
123896
124422
|
errorMessage: string;
|
|
@@ -124019,6 +124545,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124019
124545
|
errorReason: string;
|
|
124020
124546
|
max?: number | undefined;
|
|
124021
124547
|
};
|
|
124548
|
+
forgeActiveProjects: {
|
|
124549
|
+
errorMessage: string;
|
|
124550
|
+
errorReason: string;
|
|
124551
|
+
max?: number | undefined;
|
|
124552
|
+
};
|
|
124022
124553
|
}, {
|
|
124023
124554
|
analytics: {
|
|
124024
124555
|
errorMessage: string;
|
|
@@ -124147,6 +124678,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124147
124678
|
errorReason: string;
|
|
124148
124679
|
max?: number | undefined;
|
|
124149
124680
|
};
|
|
124681
|
+
forgeActiveProjects: {
|
|
124682
|
+
errorMessage: string;
|
|
124683
|
+
errorReason: string;
|
|
124684
|
+
max?: number | undefined;
|
|
124685
|
+
};
|
|
124150
124686
|
}>>;
|
|
124151
124687
|
stripeProductDescription: z__default.ZodOptional<z__default.ZodString>;
|
|
124152
124688
|
stripeProductFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -124384,6 +124920,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124384
124920
|
errorReason: string;
|
|
124385
124921
|
max?: number | undefined;
|
|
124386
124922
|
};
|
|
124923
|
+
forgeActiveProjects: {
|
|
124924
|
+
errorMessage: string;
|
|
124925
|
+
errorReason: string;
|
|
124926
|
+
max?: number | undefined;
|
|
124927
|
+
};
|
|
124387
124928
|
} | undefined;
|
|
124388
124929
|
stripeProductDescription?: string | undefined;
|
|
124389
124930
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -124559,6 +125100,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124559
125100
|
errorReason: string;
|
|
124560
125101
|
max?: number | undefined;
|
|
124561
125102
|
};
|
|
125103
|
+
forgeActiveProjects: {
|
|
125104
|
+
errorMessage: string;
|
|
125105
|
+
errorReason: string;
|
|
125106
|
+
max?: number | undefined;
|
|
125107
|
+
};
|
|
124562
125108
|
} | undefined;
|
|
124563
125109
|
stripeProductDescription?: string | undefined;
|
|
124564
125110
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -124936,6 +125482,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
124936
125482
|
errorReason: string;
|
|
124937
125483
|
max?: number | undefined;
|
|
124938
125484
|
}>;
|
|
125485
|
+
forgeActiveProjects: z__default.ZodObject<{
|
|
125486
|
+
max: z__default.ZodOptional<z__default.ZodNumber>;
|
|
125487
|
+
errorMessage: z__default.ZodString;
|
|
125488
|
+
errorReason: z__default.ZodString;
|
|
125489
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
125490
|
+
errorMessage: string;
|
|
125491
|
+
errorReason: string;
|
|
125492
|
+
max?: number | undefined;
|
|
125493
|
+
}, {
|
|
125494
|
+
errorMessage: string;
|
|
125495
|
+
errorReason: string;
|
|
125496
|
+
max?: number | undefined;
|
|
125497
|
+
}>;
|
|
124939
125498
|
}, "strip", z__default.ZodTypeAny, {
|
|
124940
125499
|
analytics: {
|
|
124941
125500
|
errorMessage: string;
|
|
@@ -125064,6 +125623,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125064
125623
|
errorReason: string;
|
|
125065
125624
|
max?: number | undefined;
|
|
125066
125625
|
};
|
|
125626
|
+
forgeActiveProjects: {
|
|
125627
|
+
errorMessage: string;
|
|
125628
|
+
errorReason: string;
|
|
125629
|
+
max?: number | undefined;
|
|
125630
|
+
};
|
|
125067
125631
|
}, {
|
|
125068
125632
|
analytics: {
|
|
125069
125633
|
errorMessage: string;
|
|
@@ -125192,6 +125756,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125192
125756
|
errorReason: string;
|
|
125193
125757
|
max?: number | undefined;
|
|
125194
125758
|
};
|
|
125759
|
+
forgeActiveProjects: {
|
|
125760
|
+
errorMessage: string;
|
|
125761
|
+
errorReason: string;
|
|
125762
|
+
max?: number | undefined;
|
|
125763
|
+
};
|
|
125195
125764
|
}>>;
|
|
125196
125765
|
stripeProductDescription: z__default.ZodOptional<z__default.ZodString>;
|
|
125197
125766
|
stripeProductFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -125429,6 +125998,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125429
125998
|
errorReason: string;
|
|
125430
125999
|
max?: number | undefined;
|
|
125431
126000
|
};
|
|
126001
|
+
forgeActiveProjects: {
|
|
126002
|
+
errorMessage: string;
|
|
126003
|
+
errorReason: string;
|
|
126004
|
+
max?: number | undefined;
|
|
126005
|
+
};
|
|
125432
126006
|
} | undefined;
|
|
125433
126007
|
stripeProductDescription?: string | undefined;
|
|
125434
126008
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -125604,6 +126178,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125604
126178
|
errorReason: string;
|
|
125605
126179
|
max?: number | undefined;
|
|
125606
126180
|
};
|
|
126181
|
+
forgeActiveProjects: {
|
|
126182
|
+
errorMessage: string;
|
|
126183
|
+
errorReason: string;
|
|
126184
|
+
max?: number | undefined;
|
|
126185
|
+
};
|
|
125607
126186
|
} | undefined;
|
|
125608
126187
|
stripeProductDescription?: string | undefined;
|
|
125609
126188
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -125781,6 +126360,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125781
126360
|
errorReason: string;
|
|
125782
126361
|
max?: number | undefined;
|
|
125783
126362
|
};
|
|
126363
|
+
forgeActiveProjects: {
|
|
126364
|
+
errorMessage: string;
|
|
126365
|
+
errorReason: string;
|
|
126366
|
+
max?: number | undefined;
|
|
126367
|
+
};
|
|
125784
126368
|
} | undefined;
|
|
125785
126369
|
stripeProductDescription?: string | undefined;
|
|
125786
126370
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -125958,6 +126542,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125958
126542
|
errorReason: string;
|
|
125959
126543
|
max?: number | undefined;
|
|
125960
126544
|
};
|
|
126545
|
+
forgeActiveProjects: {
|
|
126546
|
+
errorMessage: string;
|
|
126547
|
+
errorReason: string;
|
|
126548
|
+
max?: number | undefined;
|
|
126549
|
+
};
|
|
125961
126550
|
} | undefined;
|
|
125962
126551
|
stripeProductDescription?: string | undefined;
|
|
125963
126552
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -138105,23 +138694,35 @@ declare class ForgeArtifactsEndpoint {
|
|
|
138105
138694
|
}>;
|
|
138106
138695
|
}
|
|
138107
138696
|
|
|
138108
|
-
declare class
|
|
138697
|
+
declare class ForgeProjectFeaturesEndpoint {
|
|
138109
138698
|
private readonly requestExecutor;
|
|
138110
138699
|
constructor(requestExecutor: RequestExecutor);
|
|
138111
138700
|
list(workspaceId: string, projectId: string): Promise<{
|
|
138112
138701
|
features: {
|
|
138113
138702
|
id: string;
|
|
138114
138703
|
name: string;
|
|
138704
|
+
createdAt: Date;
|
|
138115
138705
|
description: string;
|
|
138706
|
+
sortOrder: number;
|
|
138707
|
+
createdByUserId: string;
|
|
138708
|
+
projectId: string;
|
|
138709
|
+
updatedAt?: Date | undefined;
|
|
138116
138710
|
isArchived?: boolean | undefined;
|
|
138711
|
+
sectionId?: string | undefined;
|
|
138117
138712
|
}[];
|
|
138118
138713
|
}>;
|
|
138119
138714
|
get(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
138120
138715
|
feature: {
|
|
138121
138716
|
id: string;
|
|
138122
138717
|
name: string;
|
|
138718
|
+
createdAt: Date;
|
|
138123
138719
|
description: string;
|
|
138720
|
+
sortOrder: number;
|
|
138721
|
+
createdByUserId: string;
|
|
138722
|
+
projectId: string;
|
|
138723
|
+
updatedAt?: Date | undefined;
|
|
138124
138724
|
isArchived?: boolean | undefined;
|
|
138725
|
+
sectionId?: string | undefined;
|
|
138125
138726
|
};
|
|
138126
138727
|
}>;
|
|
138127
138728
|
}
|
|
@@ -138156,6 +138757,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
138156
138757
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138157
138758
|
workspaceMembershipId: string;
|
|
138158
138759
|
}[];
|
|
138760
|
+
invitations: {
|
|
138761
|
+
email: string;
|
|
138762
|
+
createdAt: Date;
|
|
138763
|
+
updatedAt: Date;
|
|
138764
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
138765
|
+
workspaceInvitationId: string;
|
|
138766
|
+
forgeProjectId: string;
|
|
138767
|
+
createdById: string;
|
|
138768
|
+
}[];
|
|
138159
138769
|
workspaceId: string;
|
|
138160
138770
|
accessMode: "Open" | "InviteOnly";
|
|
138161
138771
|
context: {
|
|
@@ -138236,6 +138846,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
138236
138846
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138237
138847
|
workspaceMembershipId: string;
|
|
138238
138848
|
}[];
|
|
138849
|
+
invitations: {
|
|
138850
|
+
email: string;
|
|
138851
|
+
createdAt: Date;
|
|
138852
|
+
updatedAt: Date;
|
|
138853
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
138854
|
+
workspaceInvitationId: string;
|
|
138855
|
+
forgeProjectId: string;
|
|
138856
|
+
createdById: string;
|
|
138857
|
+
}[];
|
|
138239
138858
|
workspaceId: string;
|
|
138240
138859
|
accessMode: "Open" | "InviteOnly";
|
|
138241
138860
|
context: {
|
|
@@ -138316,6 +138935,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
138316
138935
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138317
138936
|
workspaceMembershipId: string;
|
|
138318
138937
|
}[];
|
|
138938
|
+
invitations: {
|
|
138939
|
+
email: string;
|
|
138940
|
+
createdAt: Date;
|
|
138941
|
+
updatedAt: Date;
|
|
138942
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
138943
|
+
workspaceInvitationId: string;
|
|
138944
|
+
forgeProjectId: string;
|
|
138945
|
+
createdById: string;
|
|
138946
|
+
}[];
|
|
138319
138947
|
workspaceId: string;
|
|
138320
138948
|
accessMode: "Open" | "InviteOnly";
|
|
138321
138949
|
context: {
|
|
@@ -138396,6 +139024,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
138396
139024
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138397
139025
|
workspaceMembershipId: string;
|
|
138398
139026
|
}[];
|
|
139027
|
+
invitations: {
|
|
139028
|
+
email: string;
|
|
139029
|
+
createdAt: Date;
|
|
139030
|
+
updatedAt: Date;
|
|
139031
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
139032
|
+
workspaceInvitationId: string;
|
|
139033
|
+
forgeProjectId: string;
|
|
139034
|
+
createdById: string;
|
|
139035
|
+
}[];
|
|
138399
139036
|
workspaceId: string;
|
|
138400
139037
|
accessMode: "Open" | "InviteOnly";
|
|
138401
139038
|
context: {
|
|
@@ -138447,7 +139084,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
138447
139084
|
updatedAt?: Date | undefined;
|
|
138448
139085
|
createdByUserId?: string | undefined;
|
|
138449
139086
|
isArchived?: boolean | undefined;
|
|
138450
|
-
}
|
|
139087
|
+
};
|
|
138451
139088
|
}>;
|
|
138452
139089
|
delete(workspaceId: string, projectId: string): Promise<{
|
|
138453
139090
|
ok: true;
|
|
@@ -138624,9 +139261,18 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
138624
139261
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138625
139262
|
workspaceMembershipId: string;
|
|
138626
139263
|
}[];
|
|
139264
|
+
invitations: {
|
|
139265
|
+
email: string;
|
|
139266
|
+
createdAt: Date;
|
|
139267
|
+
updatedAt: Date;
|
|
139268
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
139269
|
+
workspaceInvitationId: string;
|
|
139270
|
+
forgeProjectId: string;
|
|
139271
|
+
createdById: string;
|
|
139272
|
+
}[];
|
|
138627
139273
|
}>;
|
|
138628
|
-
create(projectId: string, body:
|
|
138629
|
-
|
|
139274
|
+
create(projectId: string, body: DTOAddMembersToForgeProject): Promise<{
|
|
139275
|
+
members: {
|
|
138630
139276
|
user: {
|
|
138631
139277
|
id: string;
|
|
138632
139278
|
email: string;
|
|
@@ -138642,7 +139288,16 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
138642
139288
|
forgeProjectId: string;
|
|
138643
139289
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138644
139290
|
workspaceMembershipId: string;
|
|
138645
|
-
};
|
|
139291
|
+
}[];
|
|
139292
|
+
invitations: {
|
|
139293
|
+
email: string;
|
|
139294
|
+
createdAt: Date;
|
|
139295
|
+
updatedAt: Date;
|
|
139296
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
139297
|
+
workspaceInvitationId: string;
|
|
139298
|
+
forgeProjectId: string;
|
|
139299
|
+
createdById: string;
|
|
139300
|
+
}[];
|
|
138646
139301
|
}>;
|
|
138647
139302
|
update(projectId: string, userId: string, body: DTOUpdateForgeProjectMember): Promise<{
|
|
138648
139303
|
member: {
|
|
@@ -139325,6 +139980,23 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
139325
139980
|
private readonly requestExecutor;
|
|
139326
139981
|
constructor(requestExecutor: RequestExecutor);
|
|
139327
139982
|
list(projectId: string): Promise<{
|
|
139983
|
+
members: {
|
|
139984
|
+
user: {
|
|
139985
|
+
id: string;
|
|
139986
|
+
email: string;
|
|
139987
|
+
profile: {
|
|
139988
|
+
name: string;
|
|
139989
|
+
nickname?: string | undefined;
|
|
139990
|
+
avatar?: string | undefined;
|
|
139991
|
+
};
|
|
139992
|
+
};
|
|
139993
|
+
userId: string;
|
|
139994
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
139995
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
139996
|
+
forgeProjectId: string;
|
|
139997
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
139998
|
+
workspaceMembershipId: string;
|
|
139999
|
+
}[];
|
|
139328
140000
|
invitations: {
|
|
139329
140001
|
email: string;
|
|
139330
140002
|
createdAt: Date;
|
|
@@ -139336,7 +140008,24 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
139336
140008
|
}[];
|
|
139337
140009
|
}>;
|
|
139338
140010
|
create(projectId: string, body: DTOCreateForgeProjectInvitation): Promise<{
|
|
139339
|
-
|
|
140011
|
+
members: {
|
|
140012
|
+
user: {
|
|
140013
|
+
id: string;
|
|
140014
|
+
email: string;
|
|
140015
|
+
profile: {
|
|
140016
|
+
name: string;
|
|
140017
|
+
nickname?: string | undefined;
|
|
140018
|
+
avatar?: string | undefined;
|
|
140019
|
+
};
|
|
140020
|
+
};
|
|
140021
|
+
userId: string;
|
|
140022
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
140023
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
140024
|
+
forgeProjectId: string;
|
|
140025
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
140026
|
+
workspaceMembershipId: string;
|
|
140027
|
+
}[];
|
|
140028
|
+
invitations: {
|
|
139340
140029
|
email: string;
|
|
139341
140030
|
createdAt: Date;
|
|
139342
140031
|
updatedAt: Date;
|
|
@@ -139344,7 +140033,7 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
139344
140033
|
workspaceInvitationId: string;
|
|
139345
140034
|
forgeProjectId: string;
|
|
139346
140035
|
createdById: string;
|
|
139347
|
-
};
|
|
140036
|
+
}[];
|
|
139348
140037
|
}>;
|
|
139349
140038
|
update(projectId: string, email: string, body: DTOUpdateForgeProjectInvitation): Promise<{
|
|
139350
140039
|
invitation: {
|
|
@@ -139372,7 +140061,7 @@ declare class ForgesEndpoint {
|
|
|
139372
140061
|
readonly projectMembers: ForgeProjectMembersEndpoint;
|
|
139373
140062
|
readonly projects: ForgeProjectsEndpoint;
|
|
139374
140063
|
readonly projectInvitations: ForgeProjectInvitationsEndpoint;
|
|
139375
|
-
readonly projectFeatures:
|
|
140064
|
+
readonly projectFeatures: ForgeProjectFeaturesEndpoint;
|
|
139376
140065
|
constructor(requestExecutor: RequestExecutor);
|
|
139377
140066
|
}
|
|
139378
140067
|
|
|
@@ -142475,4 +143164,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
142475
143164
|
reason: ValidationErrorReason | undefined;
|
|
142476
143165
|
};
|
|
142477
143166
|
|
|
142478
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, 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, 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, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureResponse, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, 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, 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, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, 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, 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 };
|
|
143167
|
+
export { 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, 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, 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, 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, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, 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, 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, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, 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, 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 };
|