@supernova-studio/client 1.12.2 → 1.13.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 +640 -23
- package/dist/index.d.ts +640 -23
- package/dist/index.js +30 -28
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -27
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -80915,12 +80915,10 @@ declare const DTOUpdateForgeProjectInvitation: z$1.ZodObject<Omit<Pick<{
|
|
|
80915
80915
|
createdById: z$1.ZodString;
|
|
80916
80916
|
}, "email" | "role"> & {
|
|
80917
80917
|
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
80918
|
-
}, "email">, "strip", z$1.ZodTypeAny, {
|
|
80918
|
+
}, "email" | "workspaceRole">, "strip", z$1.ZodTypeAny, {
|
|
80919
80919
|
role: "Admin" | "Viewer" | "Editor";
|
|
80920
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
80921
80920
|
}, {
|
|
80922
80921
|
role: "Admin" | "Viewer" | "Editor";
|
|
80923
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
80924
80922
|
}>;
|
|
80925
80923
|
type DTOUpdateForgeProjectInvitation = z$1.infer<typeof DTOUpdateForgeProjectInvitation>;
|
|
80926
80924
|
declare const DTORemoveForgeProjectInvitation: z$1.ZodObject<Pick<Pick<{
|
|
@@ -80988,7 +80986,7 @@ declare const DTOForgeProjectInvitationsListResponse: z$1.ZodObject<{
|
|
|
80988
80986
|
}>;
|
|
80989
80987
|
type DTOForgeProjectInvitationsListResponse = z$1.infer<typeof DTOForgeProjectInvitationsListResponse>;
|
|
80990
80988
|
declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
80991
|
-
invitation: z$1.
|
|
80989
|
+
invitation: z$1.ZodObject<{
|
|
80992
80990
|
email: z$1.ZodString;
|
|
80993
80991
|
forgeProjectId: z$1.ZodString;
|
|
80994
80992
|
workspaceInvitationId: z$1.ZodString;
|
|
@@ -81012,7 +81010,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
81012
81010
|
workspaceInvitationId: string;
|
|
81013
81011
|
forgeProjectId: string;
|
|
81014
81012
|
createdById: string;
|
|
81015
|
-
}
|
|
81013
|
+
}>;
|
|
81016
81014
|
}, "strip", z$1.ZodTypeAny, {
|
|
81017
81015
|
invitation: {
|
|
81018
81016
|
email: string;
|
|
@@ -81022,7 +81020,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
81022
81020
|
workspaceInvitationId: string;
|
|
81023
81021
|
forgeProjectId: string;
|
|
81024
81022
|
createdById: string;
|
|
81025
|
-
}
|
|
81023
|
+
};
|
|
81026
81024
|
}, {
|
|
81027
81025
|
invitation: {
|
|
81028
81026
|
email: string;
|
|
@@ -81032,7 +81030,7 @@ declare const DTOForgeProjectInvitationGetResponse: z$1.ZodObject<{
|
|
|
81032
81030
|
workspaceInvitationId: string;
|
|
81033
81031
|
forgeProjectId: string;
|
|
81034
81032
|
createdById: string;
|
|
81035
|
-
}
|
|
81033
|
+
};
|
|
81036
81034
|
}>;
|
|
81037
81035
|
type DTOForgeProjectInvitationGetResponse = z$1.infer<typeof DTOForgeProjectInvitationGetResponse>;
|
|
81038
81036
|
declare const DTOForgeProjectInvitationCreateResponse: z$1.ZodObject<{
|
|
@@ -95288,6 +95286,31 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
95288
95286
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95289
95287
|
workspaceMembershipId: string;
|
|
95290
95288
|
}>, "many">;
|
|
95289
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
95290
|
+
email: z$1.ZodString;
|
|
95291
|
+
forgeProjectId: z$1.ZodString;
|
|
95292
|
+
workspaceInvitationId: z$1.ZodString;
|
|
95293
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
95294
|
+
createdAt: z$1.ZodDate;
|
|
95295
|
+
updatedAt: z$1.ZodDate;
|
|
95296
|
+
createdById: z$1.ZodString;
|
|
95297
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
95298
|
+
email: string;
|
|
95299
|
+
createdAt: Date;
|
|
95300
|
+
updatedAt: Date;
|
|
95301
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95302
|
+
workspaceInvitationId: string;
|
|
95303
|
+
forgeProjectId: string;
|
|
95304
|
+
createdById: string;
|
|
95305
|
+
}, {
|
|
95306
|
+
email: string;
|
|
95307
|
+
createdAt: Date;
|
|
95308
|
+
updatedAt: Date;
|
|
95309
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95310
|
+
workspaceInvitationId: string;
|
|
95311
|
+
forgeProjectId: string;
|
|
95312
|
+
createdById: string;
|
|
95313
|
+
}>, "many">;
|
|
95291
95314
|
}, "strip", z$1.ZodTypeAny, {
|
|
95292
95315
|
members: {
|
|
95293
95316
|
user: {
|
|
@@ -95306,6 +95329,15 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
95306
95329
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95307
95330
|
workspaceMembershipId: string;
|
|
95308
95331
|
}[];
|
|
95332
|
+
invitations: {
|
|
95333
|
+
email: string;
|
|
95334
|
+
createdAt: Date;
|
|
95335
|
+
updatedAt: Date;
|
|
95336
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95337
|
+
workspaceInvitationId: string;
|
|
95338
|
+
forgeProjectId: string;
|
|
95339
|
+
createdById: string;
|
|
95340
|
+
}[];
|
|
95309
95341
|
}, {
|
|
95310
95342
|
members: {
|
|
95311
95343
|
user: {
|
|
@@ -95324,10 +95356,19 @@ declare const DTOForgeProjectMembersListResponse: z$1.ZodObject<{
|
|
|
95324
95356
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95325
95357
|
workspaceMembershipId: string;
|
|
95326
95358
|
}[];
|
|
95359
|
+
invitations: {
|
|
95360
|
+
email: string;
|
|
95361
|
+
createdAt: Date;
|
|
95362
|
+
updatedAt: Date;
|
|
95363
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95364
|
+
workspaceInvitationId: string;
|
|
95365
|
+
forgeProjectId: string;
|
|
95366
|
+
createdById: string;
|
|
95367
|
+
}[];
|
|
95327
95368
|
}>;
|
|
95328
95369
|
type DTOForgeProjectMembersListResponse = z$1.infer<typeof DTOForgeProjectMembersListResponse>;
|
|
95329
95370
|
declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
95330
|
-
member: z$1.
|
|
95371
|
+
member: z$1.ZodObject<{
|
|
95331
95372
|
userId: z$1.ZodString;
|
|
95332
95373
|
forgeProjectId: z$1.ZodString;
|
|
95333
95374
|
workspaceMembershipId: z$1.ZodString;
|
|
@@ -95400,7 +95441,7 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
95400
95441
|
forgeProjectId: string;
|
|
95401
95442
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95402
95443
|
workspaceMembershipId: string;
|
|
95403
|
-
}
|
|
95444
|
+
}>;
|
|
95404
95445
|
}, "strip", z$1.ZodTypeAny, {
|
|
95405
95446
|
member: {
|
|
95406
95447
|
user: {
|
|
@@ -95418,7 +95459,7 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
95418
95459
|
forgeProjectId: string;
|
|
95419
95460
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95420
95461
|
workspaceMembershipId: string;
|
|
95421
|
-
}
|
|
95462
|
+
};
|
|
95422
95463
|
}, {
|
|
95423
95464
|
member: {
|
|
95424
95465
|
user: {
|
|
@@ -95436,7 +95477,7 @@ declare const DTOForgeProjectMemberGetResponse: z$1.ZodObject<{
|
|
|
95436
95477
|
forgeProjectId: string;
|
|
95437
95478
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95438
95479
|
workspaceMembershipId: string;
|
|
95439
|
-
}
|
|
95480
|
+
};
|
|
95440
95481
|
}>;
|
|
95441
95482
|
type DTOForgeProjectMemberGetResponse = z$1.infer<typeof DTOForgeProjectMemberGetResponse>;
|
|
95442
95483
|
declare const DTOForgeProjectMemberCreateResponse: z$1.ZodObject<{
|
|
@@ -95673,6 +95714,40 @@ declare const DTOForgeProjectMemberRemoveResponse: z$1.ZodObject<{
|
|
|
95673
95714
|
ok: true;
|
|
95674
95715
|
}>;
|
|
95675
95716
|
type DTOForgeProjectMemberRemoveResponse = z$1.infer<typeof DTOForgeProjectMemberRemoveResponse>;
|
|
95717
|
+
declare const DTOAddMembersToForgeProject: z$1.ZodObject<{
|
|
95718
|
+
membersToInvite: z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
95719
|
+
email: z$1.ZodString;
|
|
95720
|
+
forgeProjectId: z$1.ZodString;
|
|
95721
|
+
workspaceInvitationId: z$1.ZodString;
|
|
95722
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
95723
|
+
createdAt: z$1.ZodDate;
|
|
95724
|
+
updatedAt: z$1.ZodDate;
|
|
95725
|
+
createdById: z$1.ZodString;
|
|
95726
|
+
}, "email" | "role"> & {
|
|
95727
|
+
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
95728
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
95729
|
+
email: string;
|
|
95730
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95731
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95732
|
+
}, {
|
|
95733
|
+
email: string;
|
|
95734
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95735
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95736
|
+
}>, "many">;
|
|
95737
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
95738
|
+
membersToInvite: {
|
|
95739
|
+
email: string;
|
|
95740
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95741
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95742
|
+
}[];
|
|
95743
|
+
}, {
|
|
95744
|
+
membersToInvite: {
|
|
95745
|
+
email: string;
|
|
95746
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
95747
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95748
|
+
}[];
|
|
95749
|
+
}>;
|
|
95750
|
+
type DTOAddMembersToForgeProject = z$1.infer<typeof DTOAddMembersToForgeProject>;
|
|
95676
95751
|
|
|
95677
95752
|
declare const DTOForgeProjectRoom: z$1.ZodObject<{
|
|
95678
95753
|
id: z$1.ZodString;
|
|
@@ -95991,6 +96066,31 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
95991
96066
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
95992
96067
|
workspaceMembershipId: string;
|
|
95993
96068
|
}>, "many">;
|
|
96069
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
96070
|
+
email: z$1.ZodString;
|
|
96071
|
+
forgeProjectId: z$1.ZodString;
|
|
96072
|
+
workspaceInvitationId: z$1.ZodString;
|
|
96073
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
96074
|
+
createdAt: z$1.ZodDate;
|
|
96075
|
+
updatedAt: z$1.ZodDate;
|
|
96076
|
+
createdById: z$1.ZodString;
|
|
96077
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
96078
|
+
email: string;
|
|
96079
|
+
createdAt: Date;
|
|
96080
|
+
updatedAt: Date;
|
|
96081
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96082
|
+
workspaceInvitationId: string;
|
|
96083
|
+
forgeProjectId: string;
|
|
96084
|
+
createdById: string;
|
|
96085
|
+
}, {
|
|
96086
|
+
email: string;
|
|
96087
|
+
createdAt: Date;
|
|
96088
|
+
updatedAt: Date;
|
|
96089
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96090
|
+
workspaceInvitationId: string;
|
|
96091
|
+
forgeProjectId: string;
|
|
96092
|
+
createdById: string;
|
|
96093
|
+
}>, "many">;
|
|
95994
96094
|
}, "strip", z$1.ZodTypeAny, {
|
|
95995
96095
|
id: string;
|
|
95996
96096
|
createdAt: Date;
|
|
@@ -96017,6 +96117,15 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
96017
96117
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96018
96118
|
workspaceMembershipId: string;
|
|
96019
96119
|
}[];
|
|
96120
|
+
invitations: {
|
|
96121
|
+
email: string;
|
|
96122
|
+
createdAt: Date;
|
|
96123
|
+
updatedAt: Date;
|
|
96124
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96125
|
+
workspaceInvitationId: string;
|
|
96126
|
+
forgeProjectId: string;
|
|
96127
|
+
createdById: string;
|
|
96128
|
+
}[];
|
|
96020
96129
|
workspaceId: string;
|
|
96021
96130
|
accessMode: "Open" | "InviteOnly";
|
|
96022
96131
|
context: {
|
|
@@ -96093,6 +96202,15 @@ declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
|
96093
96202
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96094
96203
|
workspaceMembershipId: string;
|
|
96095
96204
|
}[];
|
|
96205
|
+
invitations: {
|
|
96206
|
+
email: string;
|
|
96207
|
+
createdAt: Date;
|
|
96208
|
+
updatedAt: Date;
|
|
96209
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96210
|
+
workspaceInvitationId: string;
|
|
96211
|
+
forgeProjectId: string;
|
|
96212
|
+
createdById: string;
|
|
96213
|
+
}[];
|
|
96096
96214
|
workspaceId: string;
|
|
96097
96215
|
accessMode: "Open" | "InviteOnly";
|
|
96098
96216
|
context: {
|
|
@@ -96438,6 +96556,31 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96438
96556
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96439
96557
|
workspaceMembershipId: string;
|
|
96440
96558
|
}>, "many">;
|
|
96559
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
96560
|
+
email: z$1.ZodString;
|
|
96561
|
+
forgeProjectId: z$1.ZodString;
|
|
96562
|
+
workspaceInvitationId: z$1.ZodString;
|
|
96563
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
96564
|
+
createdAt: z$1.ZodDate;
|
|
96565
|
+
updatedAt: z$1.ZodDate;
|
|
96566
|
+
createdById: z$1.ZodString;
|
|
96567
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
96568
|
+
email: string;
|
|
96569
|
+
createdAt: Date;
|
|
96570
|
+
updatedAt: Date;
|
|
96571
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96572
|
+
workspaceInvitationId: string;
|
|
96573
|
+
forgeProjectId: string;
|
|
96574
|
+
createdById: string;
|
|
96575
|
+
}, {
|
|
96576
|
+
email: string;
|
|
96577
|
+
createdAt: Date;
|
|
96578
|
+
updatedAt: Date;
|
|
96579
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96580
|
+
workspaceInvitationId: string;
|
|
96581
|
+
forgeProjectId: string;
|
|
96582
|
+
createdById: string;
|
|
96583
|
+
}>, "many">;
|
|
96441
96584
|
}, "strip", z$1.ZodTypeAny, {
|
|
96442
96585
|
id: string;
|
|
96443
96586
|
createdAt: Date;
|
|
@@ -96464,6 +96607,15 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96464
96607
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96465
96608
|
workspaceMembershipId: string;
|
|
96466
96609
|
}[];
|
|
96610
|
+
invitations: {
|
|
96611
|
+
email: string;
|
|
96612
|
+
createdAt: Date;
|
|
96613
|
+
updatedAt: Date;
|
|
96614
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96615
|
+
workspaceInvitationId: string;
|
|
96616
|
+
forgeProjectId: string;
|
|
96617
|
+
createdById: string;
|
|
96618
|
+
}[];
|
|
96467
96619
|
workspaceId: string;
|
|
96468
96620
|
accessMode: "Open" | "InviteOnly";
|
|
96469
96621
|
context: {
|
|
@@ -96540,6 +96692,15 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96540
96692
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96541
96693
|
workspaceMembershipId: string;
|
|
96542
96694
|
}[];
|
|
96695
|
+
invitations: {
|
|
96696
|
+
email: string;
|
|
96697
|
+
createdAt: Date;
|
|
96698
|
+
updatedAt: Date;
|
|
96699
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96700
|
+
workspaceInvitationId: string;
|
|
96701
|
+
forgeProjectId: string;
|
|
96702
|
+
createdById: string;
|
|
96703
|
+
}[];
|
|
96543
96704
|
workspaceId: string;
|
|
96544
96705
|
accessMode: "Open" | "InviteOnly";
|
|
96545
96706
|
context: {
|
|
@@ -96620,6 +96781,15 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96620
96781
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96621
96782
|
workspaceMembershipId: string;
|
|
96622
96783
|
}[];
|
|
96784
|
+
invitations: {
|
|
96785
|
+
email: string;
|
|
96786
|
+
createdAt: Date;
|
|
96787
|
+
updatedAt: Date;
|
|
96788
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96789
|
+
workspaceInvitationId: string;
|
|
96790
|
+
forgeProjectId: string;
|
|
96791
|
+
createdById: string;
|
|
96792
|
+
}[];
|
|
96623
96793
|
workspaceId: string;
|
|
96624
96794
|
accessMode: "Open" | "InviteOnly";
|
|
96625
96795
|
context: {
|
|
@@ -96698,6 +96868,15 @@ declare const DTOForgeProjectGetResponse: z$1.ZodObject<{
|
|
|
96698
96868
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96699
96869
|
workspaceMembershipId: string;
|
|
96700
96870
|
}[];
|
|
96871
|
+
invitations: {
|
|
96872
|
+
email: string;
|
|
96873
|
+
createdAt: Date;
|
|
96874
|
+
updatedAt: Date;
|
|
96875
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96876
|
+
workspaceInvitationId: string;
|
|
96877
|
+
forgeProjectId: string;
|
|
96878
|
+
createdById: string;
|
|
96879
|
+
}[];
|
|
96701
96880
|
workspaceId: string;
|
|
96702
96881
|
accessMode: "Open" | "InviteOnly";
|
|
96703
96882
|
context: {
|
|
@@ -97044,6 +97223,31 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97044
97223
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97045
97224
|
workspaceMembershipId: string;
|
|
97046
97225
|
}>, "many">;
|
|
97226
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
97227
|
+
email: z$1.ZodString;
|
|
97228
|
+
forgeProjectId: z$1.ZodString;
|
|
97229
|
+
workspaceInvitationId: z$1.ZodString;
|
|
97230
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97231
|
+
createdAt: z$1.ZodDate;
|
|
97232
|
+
updatedAt: z$1.ZodDate;
|
|
97233
|
+
createdById: z$1.ZodString;
|
|
97234
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
97235
|
+
email: string;
|
|
97236
|
+
createdAt: Date;
|
|
97237
|
+
updatedAt: Date;
|
|
97238
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97239
|
+
workspaceInvitationId: string;
|
|
97240
|
+
forgeProjectId: string;
|
|
97241
|
+
createdById: string;
|
|
97242
|
+
}, {
|
|
97243
|
+
email: string;
|
|
97244
|
+
createdAt: Date;
|
|
97245
|
+
updatedAt: Date;
|
|
97246
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97247
|
+
workspaceInvitationId: string;
|
|
97248
|
+
forgeProjectId: string;
|
|
97249
|
+
createdById: string;
|
|
97250
|
+
}>, "many">;
|
|
97047
97251
|
}, "strip", z$1.ZodTypeAny, {
|
|
97048
97252
|
id: string;
|
|
97049
97253
|
createdAt: Date;
|
|
@@ -97070,6 +97274,15 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97070
97274
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97071
97275
|
workspaceMembershipId: string;
|
|
97072
97276
|
}[];
|
|
97277
|
+
invitations: {
|
|
97278
|
+
email: string;
|
|
97279
|
+
createdAt: Date;
|
|
97280
|
+
updatedAt: Date;
|
|
97281
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97282
|
+
workspaceInvitationId: string;
|
|
97283
|
+
forgeProjectId: string;
|
|
97284
|
+
createdById: string;
|
|
97285
|
+
}[];
|
|
97073
97286
|
workspaceId: string;
|
|
97074
97287
|
accessMode: "Open" | "InviteOnly";
|
|
97075
97288
|
context: {
|
|
@@ -97146,6 +97359,15 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97146
97359
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97147
97360
|
workspaceMembershipId: string;
|
|
97148
97361
|
}[];
|
|
97362
|
+
invitations: {
|
|
97363
|
+
email: string;
|
|
97364
|
+
createdAt: Date;
|
|
97365
|
+
updatedAt: Date;
|
|
97366
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97367
|
+
workspaceInvitationId: string;
|
|
97368
|
+
forgeProjectId: string;
|
|
97369
|
+
createdById: string;
|
|
97370
|
+
}[];
|
|
97149
97371
|
workspaceId: string;
|
|
97150
97372
|
accessMode: "Open" | "InviteOnly";
|
|
97151
97373
|
context: {
|
|
@@ -97226,6 +97448,15 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97226
97448
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97227
97449
|
workspaceMembershipId: string;
|
|
97228
97450
|
}[];
|
|
97451
|
+
invitations: {
|
|
97452
|
+
email: string;
|
|
97453
|
+
createdAt: Date;
|
|
97454
|
+
updatedAt: Date;
|
|
97455
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97456
|
+
workspaceInvitationId: string;
|
|
97457
|
+
forgeProjectId: string;
|
|
97458
|
+
createdById: string;
|
|
97459
|
+
}[];
|
|
97229
97460
|
workspaceId: string;
|
|
97230
97461
|
accessMode: "Open" | "InviteOnly";
|
|
97231
97462
|
context: {
|
|
@@ -97304,6 +97535,15 @@ declare const DTOForgeProjectsListResponse: z$1.ZodObject<{
|
|
|
97304
97535
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97305
97536
|
workspaceMembershipId: string;
|
|
97306
97537
|
}[];
|
|
97538
|
+
invitations: {
|
|
97539
|
+
email: string;
|
|
97540
|
+
createdAt: Date;
|
|
97541
|
+
updatedAt: Date;
|
|
97542
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97543
|
+
workspaceInvitationId: string;
|
|
97544
|
+
forgeProjectId: string;
|
|
97545
|
+
createdById: string;
|
|
97546
|
+
}[];
|
|
97307
97547
|
workspaceId: string;
|
|
97308
97548
|
accessMode: "Open" | "InviteOnly";
|
|
97309
97549
|
context: {
|
|
@@ -97650,6 +97890,31 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97650
97890
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97651
97891
|
workspaceMembershipId: string;
|
|
97652
97892
|
}>, "many">;
|
|
97893
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
97894
|
+
email: z$1.ZodString;
|
|
97895
|
+
forgeProjectId: z$1.ZodString;
|
|
97896
|
+
workspaceInvitationId: z$1.ZodString;
|
|
97897
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97898
|
+
createdAt: z$1.ZodDate;
|
|
97899
|
+
updatedAt: z$1.ZodDate;
|
|
97900
|
+
createdById: z$1.ZodString;
|
|
97901
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
97902
|
+
email: string;
|
|
97903
|
+
createdAt: Date;
|
|
97904
|
+
updatedAt: Date;
|
|
97905
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97906
|
+
workspaceInvitationId: string;
|
|
97907
|
+
forgeProjectId: string;
|
|
97908
|
+
createdById: string;
|
|
97909
|
+
}, {
|
|
97910
|
+
email: string;
|
|
97911
|
+
createdAt: Date;
|
|
97912
|
+
updatedAt: Date;
|
|
97913
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97914
|
+
workspaceInvitationId: string;
|
|
97915
|
+
forgeProjectId: string;
|
|
97916
|
+
createdById: string;
|
|
97917
|
+
}>, "many">;
|
|
97653
97918
|
}, "strip", z$1.ZodTypeAny, {
|
|
97654
97919
|
id: string;
|
|
97655
97920
|
createdAt: Date;
|
|
@@ -97676,6 +97941,15 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97676
97941
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97677
97942
|
workspaceMembershipId: string;
|
|
97678
97943
|
}[];
|
|
97944
|
+
invitations: {
|
|
97945
|
+
email: string;
|
|
97946
|
+
createdAt: Date;
|
|
97947
|
+
updatedAt: Date;
|
|
97948
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97949
|
+
workspaceInvitationId: string;
|
|
97950
|
+
forgeProjectId: string;
|
|
97951
|
+
createdById: string;
|
|
97952
|
+
}[];
|
|
97679
97953
|
workspaceId: string;
|
|
97680
97954
|
accessMode: "Open" | "InviteOnly";
|
|
97681
97955
|
context: {
|
|
@@ -97752,6 +98026,15 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97752
98026
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97753
98027
|
workspaceMembershipId: string;
|
|
97754
98028
|
}[];
|
|
98029
|
+
invitations: {
|
|
98030
|
+
email: string;
|
|
98031
|
+
createdAt: Date;
|
|
98032
|
+
updatedAt: Date;
|
|
98033
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98034
|
+
workspaceInvitationId: string;
|
|
98035
|
+
forgeProjectId: string;
|
|
98036
|
+
createdById: string;
|
|
98037
|
+
}[];
|
|
97755
98038
|
workspaceId: string;
|
|
97756
98039
|
accessMode: "Open" | "InviteOnly";
|
|
97757
98040
|
context: {
|
|
@@ -97832,6 +98115,15 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97832
98115
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97833
98116
|
workspaceMembershipId: string;
|
|
97834
98117
|
}[];
|
|
98118
|
+
invitations: {
|
|
98119
|
+
email: string;
|
|
98120
|
+
createdAt: Date;
|
|
98121
|
+
updatedAt: Date;
|
|
98122
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98123
|
+
workspaceInvitationId: string;
|
|
98124
|
+
forgeProjectId: string;
|
|
98125
|
+
createdById: string;
|
|
98126
|
+
}[];
|
|
97835
98127
|
workspaceId: string;
|
|
97836
98128
|
accessMode: "Open" | "InviteOnly";
|
|
97837
98129
|
context: {
|
|
@@ -97910,6 +98202,15 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97910
98202
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97911
98203
|
workspaceMembershipId: string;
|
|
97912
98204
|
}[];
|
|
98205
|
+
invitations: {
|
|
98206
|
+
email: string;
|
|
98207
|
+
createdAt: Date;
|
|
98208
|
+
updatedAt: Date;
|
|
98209
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98210
|
+
workspaceInvitationId: string;
|
|
98211
|
+
forgeProjectId: string;
|
|
98212
|
+
createdById: string;
|
|
98213
|
+
}[];
|
|
97913
98214
|
workspaceId: string;
|
|
97914
98215
|
accessMode: "Open" | "InviteOnly";
|
|
97915
98216
|
context: {
|
|
@@ -97966,7 +98267,7 @@ declare const DTOCreateForgeProjectResponse: z$1.ZodObject<{
|
|
|
97966
98267
|
}>;
|
|
97967
98268
|
type DTOCreateForgeProjectResponse = z$1.infer<typeof DTOCreateForgeProjectResponse>;
|
|
97968
98269
|
declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
97969
|
-
project: z$1.
|
|
98270
|
+
project: z$1.ZodObject<Omit<{
|
|
97970
98271
|
createdAt: z$1.ZodDate;
|
|
97971
98272
|
createdByUserId: z$1.ZodOptional<z$1.ZodString>;
|
|
97972
98273
|
fpContextId: z$1.ZodString;
|
|
@@ -98256,6 +98557,31 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98256
98557
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98257
98558
|
workspaceMembershipId: string;
|
|
98258
98559
|
}>, "many">;
|
|
98560
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
98561
|
+
email: z$1.ZodString;
|
|
98562
|
+
forgeProjectId: z$1.ZodString;
|
|
98563
|
+
workspaceInvitationId: z$1.ZodString;
|
|
98564
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98565
|
+
createdAt: z$1.ZodDate;
|
|
98566
|
+
updatedAt: z$1.ZodDate;
|
|
98567
|
+
createdById: z$1.ZodString;
|
|
98568
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
98569
|
+
email: string;
|
|
98570
|
+
createdAt: Date;
|
|
98571
|
+
updatedAt: Date;
|
|
98572
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98573
|
+
workspaceInvitationId: string;
|
|
98574
|
+
forgeProjectId: string;
|
|
98575
|
+
createdById: string;
|
|
98576
|
+
}, {
|
|
98577
|
+
email: string;
|
|
98578
|
+
createdAt: Date;
|
|
98579
|
+
updatedAt: Date;
|
|
98580
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98581
|
+
workspaceInvitationId: string;
|
|
98582
|
+
forgeProjectId: string;
|
|
98583
|
+
createdById: string;
|
|
98584
|
+
}>, "many">;
|
|
98259
98585
|
}, "strip", z$1.ZodTypeAny, {
|
|
98260
98586
|
id: string;
|
|
98261
98587
|
createdAt: Date;
|
|
@@ -98282,6 +98608,15 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98282
98608
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98283
98609
|
workspaceMembershipId: string;
|
|
98284
98610
|
}[];
|
|
98611
|
+
invitations: {
|
|
98612
|
+
email: string;
|
|
98613
|
+
createdAt: Date;
|
|
98614
|
+
updatedAt: Date;
|
|
98615
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98616
|
+
workspaceInvitationId: string;
|
|
98617
|
+
forgeProjectId: string;
|
|
98618
|
+
createdById: string;
|
|
98619
|
+
}[];
|
|
98285
98620
|
workspaceId: string;
|
|
98286
98621
|
accessMode: "Open" | "InviteOnly";
|
|
98287
98622
|
context: {
|
|
@@ -98358,6 +98693,15 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98358
98693
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98359
98694
|
workspaceMembershipId: string;
|
|
98360
98695
|
}[];
|
|
98696
|
+
invitations: {
|
|
98697
|
+
email: string;
|
|
98698
|
+
createdAt: Date;
|
|
98699
|
+
updatedAt: Date;
|
|
98700
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98701
|
+
workspaceInvitationId: string;
|
|
98702
|
+
forgeProjectId: string;
|
|
98703
|
+
createdById: string;
|
|
98704
|
+
}[];
|
|
98361
98705
|
workspaceId: string;
|
|
98362
98706
|
accessMode: "Open" | "InviteOnly";
|
|
98363
98707
|
context: {
|
|
@@ -98410,7 +98754,7 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98410
98754
|
updatedAt?: Date | undefined;
|
|
98411
98755
|
createdByUserId?: string | undefined;
|
|
98412
98756
|
isArchived?: boolean | undefined;
|
|
98413
|
-
}
|
|
98757
|
+
}>;
|
|
98414
98758
|
}, "strip", z$1.ZodTypeAny, {
|
|
98415
98759
|
project: {
|
|
98416
98760
|
id: string;
|
|
@@ -98438,6 +98782,15 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98438
98782
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98439
98783
|
workspaceMembershipId: string;
|
|
98440
98784
|
}[];
|
|
98785
|
+
invitations: {
|
|
98786
|
+
email: string;
|
|
98787
|
+
createdAt: Date;
|
|
98788
|
+
updatedAt: Date;
|
|
98789
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98790
|
+
workspaceInvitationId: string;
|
|
98791
|
+
forgeProjectId: string;
|
|
98792
|
+
createdById: string;
|
|
98793
|
+
}[];
|
|
98441
98794
|
workspaceId: string;
|
|
98442
98795
|
accessMode: "Open" | "InviteOnly";
|
|
98443
98796
|
context: {
|
|
@@ -98489,7 +98842,7 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98489
98842
|
updatedAt?: Date | undefined;
|
|
98490
98843
|
createdByUserId?: string | undefined;
|
|
98491
98844
|
isArchived?: boolean | undefined;
|
|
98492
|
-
}
|
|
98845
|
+
};
|
|
98493
98846
|
}, {
|
|
98494
98847
|
project: {
|
|
98495
98848
|
id: string;
|
|
@@ -98516,6 +98869,15 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98516
98869
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98517
98870
|
workspaceMembershipId: string;
|
|
98518
98871
|
}[];
|
|
98872
|
+
invitations: {
|
|
98873
|
+
email: string;
|
|
98874
|
+
createdAt: Date;
|
|
98875
|
+
updatedAt: Date;
|
|
98876
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98877
|
+
workspaceInvitationId: string;
|
|
98878
|
+
forgeProjectId: string;
|
|
98879
|
+
createdById: string;
|
|
98880
|
+
}[];
|
|
98519
98881
|
workspaceId: string;
|
|
98520
98882
|
accessMode: "Open" | "InviteOnly";
|
|
98521
98883
|
context: {
|
|
@@ -98568,7 +98930,7 @@ declare const DTOUpdateForgeProjectResponse: z$1.ZodObject<{
|
|
|
98568
98930
|
updatedAt?: Date | undefined;
|
|
98569
98931
|
createdByUserId?: string | undefined;
|
|
98570
98932
|
isArchived?: boolean | undefined;
|
|
98571
|
-
}
|
|
98933
|
+
};
|
|
98572
98934
|
}>;
|
|
98573
98935
|
type DTOUpdateForgeProjectResponse = z$1.infer<typeof DTOUpdateForgeProjectResponse>;
|
|
98574
98936
|
declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
@@ -98862,6 +99224,31 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
98862
99224
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98863
99225
|
workspaceMembershipId: string;
|
|
98864
99226
|
}>, "many">;
|
|
99227
|
+
invitations: z$1.ZodArray<z$1.ZodObject<{
|
|
99228
|
+
email: z$1.ZodString;
|
|
99229
|
+
forgeProjectId: z$1.ZodString;
|
|
99230
|
+
workspaceInvitationId: z$1.ZodString;
|
|
99231
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99232
|
+
createdAt: z$1.ZodDate;
|
|
99233
|
+
updatedAt: z$1.ZodDate;
|
|
99234
|
+
createdById: z$1.ZodString;
|
|
99235
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99236
|
+
email: string;
|
|
99237
|
+
createdAt: Date;
|
|
99238
|
+
updatedAt: Date;
|
|
99239
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99240
|
+
workspaceInvitationId: string;
|
|
99241
|
+
forgeProjectId: string;
|
|
99242
|
+
createdById: string;
|
|
99243
|
+
}, {
|
|
99244
|
+
email: string;
|
|
99245
|
+
createdAt: Date;
|
|
99246
|
+
updatedAt: Date;
|
|
99247
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99248
|
+
workspaceInvitationId: string;
|
|
99249
|
+
forgeProjectId: string;
|
|
99250
|
+
createdById: string;
|
|
99251
|
+
}>, "many">;
|
|
98865
99252
|
}, "strip", z$1.ZodTypeAny, {
|
|
98866
99253
|
id: string;
|
|
98867
99254
|
createdAt: Date;
|
|
@@ -98888,6 +99275,15 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
98888
99275
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98889
99276
|
workspaceMembershipId: string;
|
|
98890
99277
|
}[];
|
|
99278
|
+
invitations: {
|
|
99279
|
+
email: string;
|
|
99280
|
+
createdAt: Date;
|
|
99281
|
+
updatedAt: Date;
|
|
99282
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99283
|
+
workspaceInvitationId: string;
|
|
99284
|
+
forgeProjectId: string;
|
|
99285
|
+
createdById: string;
|
|
99286
|
+
}[];
|
|
98891
99287
|
workspaceId: string;
|
|
98892
99288
|
accessMode: "Open" | "InviteOnly";
|
|
98893
99289
|
context: {
|
|
@@ -98964,6 +99360,15 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
98964
99360
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98965
99361
|
workspaceMembershipId: string;
|
|
98966
99362
|
}[];
|
|
99363
|
+
invitations: {
|
|
99364
|
+
email: string;
|
|
99365
|
+
createdAt: Date;
|
|
99366
|
+
updatedAt: Date;
|
|
99367
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99368
|
+
workspaceInvitationId: string;
|
|
99369
|
+
forgeProjectId: string;
|
|
99370
|
+
createdById: string;
|
|
99371
|
+
}[];
|
|
98967
99372
|
workspaceId: string;
|
|
98968
99373
|
accessMode: "Open" | "InviteOnly";
|
|
98969
99374
|
context: {
|
|
@@ -99044,6 +99449,15 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
99044
99449
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99045
99450
|
workspaceMembershipId: string;
|
|
99046
99451
|
}[];
|
|
99452
|
+
invitations: {
|
|
99453
|
+
email: string;
|
|
99454
|
+
createdAt: Date;
|
|
99455
|
+
updatedAt: Date;
|
|
99456
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99457
|
+
workspaceInvitationId: string;
|
|
99458
|
+
forgeProjectId: string;
|
|
99459
|
+
createdById: string;
|
|
99460
|
+
}[];
|
|
99047
99461
|
workspaceId: string;
|
|
99048
99462
|
accessMode: "Open" | "InviteOnly";
|
|
99049
99463
|
context: {
|
|
@@ -99122,6 +99536,15 @@ declare const DTOUGetForgeProjectResponse: z$1.ZodObject<{
|
|
|
99122
99536
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99123
99537
|
workspaceMembershipId: string;
|
|
99124
99538
|
}[];
|
|
99539
|
+
invitations: {
|
|
99540
|
+
email: string;
|
|
99541
|
+
createdAt: Date;
|
|
99542
|
+
updatedAt: Date;
|
|
99543
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99544
|
+
workspaceInvitationId: string;
|
|
99545
|
+
forgeProjectId: string;
|
|
99546
|
+
createdById: string;
|
|
99547
|
+
}[];
|
|
99125
99548
|
workspaceId: string;
|
|
99126
99549
|
accessMode: "Open" | "InviteOnly";
|
|
99127
99550
|
context: {
|
|
@@ -99199,7 +99622,27 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
99199
99622
|
workspaceId: z$1.ZodString;
|
|
99200
99623
|
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
99201
99624
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
99202
|
-
}, "name" | "meta" | "tags" | "accessMode" | "isArchived" | "fpContextId" | "instruction"
|
|
99625
|
+
}, "name" | "meta" | "tags" | "accessMode" | "isArchived" | "fpContextId" | "instruction"> & {
|
|
99626
|
+
membersToInvite: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
99627
|
+
email: z$1.ZodString;
|
|
99628
|
+
forgeProjectId: z$1.ZodString;
|
|
99629
|
+
workspaceInvitationId: z$1.ZodString;
|
|
99630
|
+
role: z$1.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99631
|
+
createdAt: z$1.ZodDate;
|
|
99632
|
+
updatedAt: z$1.ZodDate;
|
|
99633
|
+
createdById: z$1.ZodString;
|
|
99634
|
+
}, "email" | "role"> & {
|
|
99635
|
+
workspaceRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
99636
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99637
|
+
email: string;
|
|
99638
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99639
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99640
|
+
}, {
|
|
99641
|
+
email: string;
|
|
99642
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99643
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99644
|
+
}>, "many">>;
|
|
99645
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99203
99646
|
name: string;
|
|
99204
99647
|
meta: {
|
|
99205
99648
|
name: string;
|
|
@@ -99210,6 +99653,11 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
99210
99653
|
fpContextId: string;
|
|
99211
99654
|
instruction: string | null;
|
|
99212
99655
|
isArchived?: boolean | undefined;
|
|
99656
|
+
membersToInvite?: {
|
|
99657
|
+
email: string;
|
|
99658
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99659
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99660
|
+
}[] | undefined;
|
|
99213
99661
|
}, {
|
|
99214
99662
|
name: string;
|
|
99215
99663
|
meta: {
|
|
@@ -99221,6 +99669,11 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
99221
99669
|
instruction: string | null;
|
|
99222
99670
|
tags?: string[] | undefined;
|
|
99223
99671
|
isArchived?: boolean | undefined;
|
|
99672
|
+
membersToInvite?: {
|
|
99673
|
+
email: string;
|
|
99674
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99675
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99676
|
+
}[] | undefined;
|
|
99224
99677
|
}>;
|
|
99225
99678
|
type DTOCreateForgeProject = z$1.infer<typeof DTOCreateForgeProject>;
|
|
99226
99679
|
declare const DTOUpdateForgeProject: z$1.ZodObject<{
|
|
@@ -123891,6 +124344,19 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
123891
124344
|
errorReason: string;
|
|
123892
124345
|
max?: number | undefined;
|
|
123893
124346
|
}>;
|
|
124347
|
+
forgeActiveProjects: z__default.ZodObject<{
|
|
124348
|
+
max: z__default.ZodOptional<z__default.ZodNumber>;
|
|
124349
|
+
errorMessage: z__default.ZodString;
|
|
124350
|
+
errorReason: z__default.ZodString;
|
|
124351
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
124352
|
+
errorMessage: string;
|
|
124353
|
+
errorReason: string;
|
|
124354
|
+
max?: number | undefined;
|
|
124355
|
+
}, {
|
|
124356
|
+
errorMessage: string;
|
|
124357
|
+
errorReason: string;
|
|
124358
|
+
max?: number | undefined;
|
|
124359
|
+
}>;
|
|
123894
124360
|
}, "strip", z__default.ZodTypeAny, {
|
|
123895
124361
|
analytics: {
|
|
123896
124362
|
errorMessage: string;
|
|
@@ -124019,6 +124485,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124019
124485
|
errorReason: string;
|
|
124020
124486
|
max?: number | undefined;
|
|
124021
124487
|
};
|
|
124488
|
+
forgeActiveProjects: {
|
|
124489
|
+
errorMessage: string;
|
|
124490
|
+
errorReason: string;
|
|
124491
|
+
max?: number | undefined;
|
|
124492
|
+
};
|
|
124022
124493
|
}, {
|
|
124023
124494
|
analytics: {
|
|
124024
124495
|
errorMessage: string;
|
|
@@ -124147,6 +124618,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124147
124618
|
errorReason: string;
|
|
124148
124619
|
max?: number | undefined;
|
|
124149
124620
|
};
|
|
124621
|
+
forgeActiveProjects: {
|
|
124622
|
+
errorMessage: string;
|
|
124623
|
+
errorReason: string;
|
|
124624
|
+
max?: number | undefined;
|
|
124625
|
+
};
|
|
124150
124626
|
}>>;
|
|
124151
124627
|
stripeProductDescription: z__default.ZodOptional<z__default.ZodString>;
|
|
124152
124628
|
stripeProductFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -124384,6 +124860,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124384
124860
|
errorReason: string;
|
|
124385
124861
|
max?: number | undefined;
|
|
124386
124862
|
};
|
|
124863
|
+
forgeActiveProjects: {
|
|
124864
|
+
errorMessage: string;
|
|
124865
|
+
errorReason: string;
|
|
124866
|
+
max?: number | undefined;
|
|
124867
|
+
};
|
|
124387
124868
|
} | undefined;
|
|
124388
124869
|
stripeProductDescription?: string | undefined;
|
|
124389
124870
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -124559,6 +125040,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124559
125040
|
errorReason: string;
|
|
124560
125041
|
max?: number | undefined;
|
|
124561
125042
|
};
|
|
125043
|
+
forgeActiveProjects: {
|
|
125044
|
+
errorMessage: string;
|
|
125045
|
+
errorReason: string;
|
|
125046
|
+
max?: number | undefined;
|
|
125047
|
+
};
|
|
124562
125048
|
} | undefined;
|
|
124563
125049
|
stripeProductDescription?: string | undefined;
|
|
124564
125050
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -124936,6 +125422,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
124936
125422
|
errorReason: string;
|
|
124937
125423
|
max?: number | undefined;
|
|
124938
125424
|
}>;
|
|
125425
|
+
forgeActiveProjects: z__default.ZodObject<{
|
|
125426
|
+
max: z__default.ZodOptional<z__default.ZodNumber>;
|
|
125427
|
+
errorMessage: z__default.ZodString;
|
|
125428
|
+
errorReason: z__default.ZodString;
|
|
125429
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
125430
|
+
errorMessage: string;
|
|
125431
|
+
errorReason: string;
|
|
125432
|
+
max?: number | undefined;
|
|
125433
|
+
}, {
|
|
125434
|
+
errorMessage: string;
|
|
125435
|
+
errorReason: string;
|
|
125436
|
+
max?: number | undefined;
|
|
125437
|
+
}>;
|
|
124939
125438
|
}, "strip", z__default.ZodTypeAny, {
|
|
124940
125439
|
analytics: {
|
|
124941
125440
|
errorMessage: string;
|
|
@@ -125064,6 +125563,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125064
125563
|
errorReason: string;
|
|
125065
125564
|
max?: number | undefined;
|
|
125066
125565
|
};
|
|
125566
|
+
forgeActiveProjects: {
|
|
125567
|
+
errorMessage: string;
|
|
125568
|
+
errorReason: string;
|
|
125569
|
+
max?: number | undefined;
|
|
125570
|
+
};
|
|
125067
125571
|
}, {
|
|
125068
125572
|
analytics: {
|
|
125069
125573
|
errorMessage: string;
|
|
@@ -125192,6 +125696,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125192
125696
|
errorReason: string;
|
|
125193
125697
|
max?: number | undefined;
|
|
125194
125698
|
};
|
|
125699
|
+
forgeActiveProjects: {
|
|
125700
|
+
errorMessage: string;
|
|
125701
|
+
errorReason: string;
|
|
125702
|
+
max?: number | undefined;
|
|
125703
|
+
};
|
|
125195
125704
|
}>>;
|
|
125196
125705
|
stripeProductDescription: z__default.ZodOptional<z__default.ZodString>;
|
|
125197
125706
|
stripeProductFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -125429,6 +125938,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125429
125938
|
errorReason: string;
|
|
125430
125939
|
max?: number | undefined;
|
|
125431
125940
|
};
|
|
125941
|
+
forgeActiveProjects: {
|
|
125942
|
+
errorMessage: string;
|
|
125943
|
+
errorReason: string;
|
|
125944
|
+
max?: number | undefined;
|
|
125945
|
+
};
|
|
125432
125946
|
} | undefined;
|
|
125433
125947
|
stripeProductDescription?: string | undefined;
|
|
125434
125948
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -125604,6 +126118,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125604
126118
|
errorReason: string;
|
|
125605
126119
|
max?: number | undefined;
|
|
125606
126120
|
};
|
|
126121
|
+
forgeActiveProjects: {
|
|
126122
|
+
errorMessage: string;
|
|
126123
|
+
errorReason: string;
|
|
126124
|
+
max?: number | undefined;
|
|
126125
|
+
};
|
|
125607
126126
|
} | undefined;
|
|
125608
126127
|
stripeProductDescription?: string | undefined;
|
|
125609
126128
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -125781,6 +126300,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125781
126300
|
errorReason: string;
|
|
125782
126301
|
max?: number | undefined;
|
|
125783
126302
|
};
|
|
126303
|
+
forgeActiveProjects: {
|
|
126304
|
+
errorMessage: string;
|
|
126305
|
+
errorReason: string;
|
|
126306
|
+
max?: number | undefined;
|
|
126307
|
+
};
|
|
125784
126308
|
} | undefined;
|
|
125785
126309
|
stripeProductDescription?: string | undefined;
|
|
125786
126310
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -125958,6 +126482,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125958
126482
|
errorReason: string;
|
|
125959
126483
|
max?: number | undefined;
|
|
125960
126484
|
};
|
|
126485
|
+
forgeActiveProjects: {
|
|
126486
|
+
errorMessage: string;
|
|
126487
|
+
errorReason: string;
|
|
126488
|
+
max?: number | undefined;
|
|
126489
|
+
};
|
|
125961
126490
|
} | undefined;
|
|
125962
126491
|
stripeProductDescription?: string | undefined;
|
|
125963
126492
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -138156,6 +138685,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
138156
138685
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138157
138686
|
workspaceMembershipId: string;
|
|
138158
138687
|
}[];
|
|
138688
|
+
invitations: {
|
|
138689
|
+
email: string;
|
|
138690
|
+
createdAt: Date;
|
|
138691
|
+
updatedAt: Date;
|
|
138692
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
138693
|
+
workspaceInvitationId: string;
|
|
138694
|
+
forgeProjectId: string;
|
|
138695
|
+
createdById: string;
|
|
138696
|
+
}[];
|
|
138159
138697
|
workspaceId: string;
|
|
138160
138698
|
accessMode: "Open" | "InviteOnly";
|
|
138161
138699
|
context: {
|
|
@@ -138236,6 +138774,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
138236
138774
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138237
138775
|
workspaceMembershipId: string;
|
|
138238
138776
|
}[];
|
|
138777
|
+
invitations: {
|
|
138778
|
+
email: string;
|
|
138779
|
+
createdAt: Date;
|
|
138780
|
+
updatedAt: Date;
|
|
138781
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
138782
|
+
workspaceInvitationId: string;
|
|
138783
|
+
forgeProjectId: string;
|
|
138784
|
+
createdById: string;
|
|
138785
|
+
}[];
|
|
138239
138786
|
workspaceId: string;
|
|
138240
138787
|
accessMode: "Open" | "InviteOnly";
|
|
138241
138788
|
context: {
|
|
@@ -138316,6 +138863,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
138316
138863
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138317
138864
|
workspaceMembershipId: string;
|
|
138318
138865
|
}[];
|
|
138866
|
+
invitations: {
|
|
138867
|
+
email: string;
|
|
138868
|
+
createdAt: Date;
|
|
138869
|
+
updatedAt: Date;
|
|
138870
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
138871
|
+
workspaceInvitationId: string;
|
|
138872
|
+
forgeProjectId: string;
|
|
138873
|
+
createdById: string;
|
|
138874
|
+
}[];
|
|
138319
138875
|
workspaceId: string;
|
|
138320
138876
|
accessMode: "Open" | "InviteOnly";
|
|
138321
138877
|
context: {
|
|
@@ -138396,6 +138952,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
138396
138952
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138397
138953
|
workspaceMembershipId: string;
|
|
138398
138954
|
}[];
|
|
138955
|
+
invitations: {
|
|
138956
|
+
email: string;
|
|
138957
|
+
createdAt: Date;
|
|
138958
|
+
updatedAt: Date;
|
|
138959
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
138960
|
+
workspaceInvitationId: string;
|
|
138961
|
+
forgeProjectId: string;
|
|
138962
|
+
createdById: string;
|
|
138963
|
+
}[];
|
|
138399
138964
|
workspaceId: string;
|
|
138400
138965
|
accessMode: "Open" | "InviteOnly";
|
|
138401
138966
|
context: {
|
|
@@ -138447,7 +139012,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
138447
139012
|
updatedAt?: Date | undefined;
|
|
138448
139013
|
createdByUserId?: string | undefined;
|
|
138449
139014
|
isArchived?: boolean | undefined;
|
|
138450
|
-
}
|
|
139015
|
+
};
|
|
138451
139016
|
}>;
|
|
138452
139017
|
delete(workspaceId: string, projectId: string): Promise<{
|
|
138453
139018
|
ok: true;
|
|
@@ -138624,9 +139189,18 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
138624
139189
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138625
139190
|
workspaceMembershipId: string;
|
|
138626
139191
|
}[];
|
|
139192
|
+
invitations: {
|
|
139193
|
+
email: string;
|
|
139194
|
+
createdAt: Date;
|
|
139195
|
+
updatedAt: Date;
|
|
139196
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
139197
|
+
workspaceInvitationId: string;
|
|
139198
|
+
forgeProjectId: string;
|
|
139199
|
+
createdById: string;
|
|
139200
|
+
}[];
|
|
138627
139201
|
}>;
|
|
138628
|
-
create(projectId: string, body:
|
|
138629
|
-
|
|
139202
|
+
create(projectId: string, body: DTOAddMembersToForgeProject): Promise<{
|
|
139203
|
+
members: {
|
|
138630
139204
|
user: {
|
|
138631
139205
|
id: string;
|
|
138632
139206
|
email: string;
|
|
@@ -138642,7 +139216,16 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
138642
139216
|
forgeProjectId: string;
|
|
138643
139217
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138644
139218
|
workspaceMembershipId: string;
|
|
138645
|
-
};
|
|
139219
|
+
}[];
|
|
139220
|
+
invitations: {
|
|
139221
|
+
email: string;
|
|
139222
|
+
createdAt: Date;
|
|
139223
|
+
updatedAt: Date;
|
|
139224
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
139225
|
+
workspaceInvitationId: string;
|
|
139226
|
+
forgeProjectId: string;
|
|
139227
|
+
createdById: string;
|
|
139228
|
+
}[];
|
|
138646
139229
|
}>;
|
|
138647
139230
|
update(projectId: string, userId: string, body: DTOUpdateForgeProjectMember): Promise<{
|
|
138648
139231
|
member: {
|
|
@@ -139325,6 +139908,23 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
139325
139908
|
private readonly requestExecutor;
|
|
139326
139909
|
constructor(requestExecutor: RequestExecutor);
|
|
139327
139910
|
list(projectId: string): Promise<{
|
|
139911
|
+
members: {
|
|
139912
|
+
user: {
|
|
139913
|
+
id: string;
|
|
139914
|
+
email: string;
|
|
139915
|
+
profile: {
|
|
139916
|
+
name: string;
|
|
139917
|
+
nickname?: string | undefined;
|
|
139918
|
+
avatar?: string | undefined;
|
|
139919
|
+
};
|
|
139920
|
+
};
|
|
139921
|
+
userId: string;
|
|
139922
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
139923
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
139924
|
+
forgeProjectId: string;
|
|
139925
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
139926
|
+
workspaceMembershipId: string;
|
|
139927
|
+
}[];
|
|
139328
139928
|
invitations: {
|
|
139329
139929
|
email: string;
|
|
139330
139930
|
createdAt: Date;
|
|
@@ -139336,7 +139936,24 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
139336
139936
|
}[];
|
|
139337
139937
|
}>;
|
|
139338
139938
|
create(projectId: string, body: DTOCreateForgeProjectInvitation): Promise<{
|
|
139339
|
-
|
|
139939
|
+
members: {
|
|
139940
|
+
user: {
|
|
139941
|
+
id: string;
|
|
139942
|
+
email: string;
|
|
139943
|
+
profile: {
|
|
139944
|
+
name: string;
|
|
139945
|
+
nickname?: string | undefined;
|
|
139946
|
+
avatar?: string | undefined;
|
|
139947
|
+
};
|
|
139948
|
+
};
|
|
139949
|
+
userId: string;
|
|
139950
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
139951
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
139952
|
+
forgeProjectId: string;
|
|
139953
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
139954
|
+
workspaceMembershipId: string;
|
|
139955
|
+
}[];
|
|
139956
|
+
invitations: {
|
|
139340
139957
|
email: string;
|
|
139341
139958
|
createdAt: Date;
|
|
139342
139959
|
updatedAt: Date;
|
|
@@ -139344,7 +139961,7 @@ declare class ForgeProjectInvitationsEndpoint {
|
|
|
139344
139961
|
workspaceInvitationId: string;
|
|
139345
139962
|
forgeProjectId: string;
|
|
139346
139963
|
createdById: string;
|
|
139347
|
-
};
|
|
139964
|
+
}[];
|
|
139348
139965
|
}>;
|
|
139349
139966
|
update(projectId: string, email: string, body: DTOUpdateForgeProjectInvitation): Promise<{
|
|
139350
139967
|
invitation: {
|
|
@@ -142475,4 +143092,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
142475
143092
|
reason: ValidationErrorReason | undefined;
|
|
142476
143093
|
};
|
|
142477
143094
|
|
|
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 };
|
|
143095
|
+
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, 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 };
|