@supernova-studio/client 1.10.11 → 1.10.13
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 +557 -80
- package/dist/index.d.ts +557 -80
- package/dist/index.js +21 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -96938,7 +96938,15 @@ declare const DTODeleteForgeProjectIterationResponse: z.ZodObject<{
|
|
|
96938
96938
|
}>;
|
|
96939
96939
|
type DTODeleteForgeProjectIterationResponse = z.infer<typeof DTODeleteForgeProjectIterationResponse>;
|
|
96940
96940
|
|
|
96941
|
+
declare const DTOForgeProjectMemberRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
96942
|
+
type DTOForgeProjectMemberRole = z.infer<typeof DTOForgeProjectMemberRole>;
|
|
96941
96943
|
declare const DTOForgeProjectMember: z.ZodObject<{
|
|
96944
|
+
userId: z.ZodString;
|
|
96945
|
+
fpId: z.ZodString;
|
|
96946
|
+
workspaceMembershipId: z.ZodString;
|
|
96947
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
96948
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
96949
|
+
} & {
|
|
96942
96950
|
user: z.ZodObject<{
|
|
96943
96951
|
id: z.ZodString;
|
|
96944
96952
|
email: z.ZodString;
|
|
@@ -96972,7 +96980,7 @@ declare const DTOForgeProjectMember: z.ZodObject<{
|
|
|
96972
96980
|
avatar?: string | undefined;
|
|
96973
96981
|
};
|
|
96974
96982
|
}>;
|
|
96975
|
-
|
|
96983
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
96976
96984
|
}, "strip", z.ZodTypeAny, {
|
|
96977
96985
|
user: {
|
|
96978
96986
|
id: string;
|
|
@@ -96983,7 +96991,12 @@ declare const DTOForgeProjectMember: z.ZodObject<{
|
|
|
96983
96991
|
avatar?: string | undefined;
|
|
96984
96992
|
};
|
|
96985
96993
|
};
|
|
96986
|
-
|
|
96994
|
+
userId: string;
|
|
96995
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
96996
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
96997
|
+
fpId: string;
|
|
96998
|
+
workspaceMembershipId: string;
|
|
96999
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96987
97000
|
}, {
|
|
96988
97001
|
user: {
|
|
96989
97002
|
id: string;
|
|
@@ -96994,34 +97007,152 @@ declare const DTOForgeProjectMember: z.ZodObject<{
|
|
|
96994
97007
|
avatar?: string | undefined;
|
|
96995
97008
|
};
|
|
96996
97009
|
};
|
|
96997
|
-
|
|
97010
|
+
userId: string;
|
|
97011
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97012
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97013
|
+
fpId: string;
|
|
97014
|
+
workspaceMembershipId: string;
|
|
97015
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
96998
97016
|
}>;
|
|
96999
97017
|
type DTOForgeProjectMember = z.infer<typeof DTOForgeProjectMember>;
|
|
97000
|
-
declare const DTOCreateForgeProjectMember: z.ZodObject<{
|
|
97018
|
+
declare const DTOCreateForgeProjectMember: z.ZodObject<Pick<{
|
|
97001
97019
|
userId: z.ZodString;
|
|
97002
|
-
|
|
97003
|
-
|
|
97020
|
+
fpId: z.ZodString;
|
|
97021
|
+
workspaceMembershipId: z.ZodString;
|
|
97022
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97023
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97024
|
+
} & {
|
|
97025
|
+
user: z.ZodObject<{
|
|
97026
|
+
id: z.ZodString;
|
|
97027
|
+
email: z.ZodString;
|
|
97028
|
+
profile: z.ZodObject<{
|
|
97029
|
+
name: z.ZodString;
|
|
97030
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
97031
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
97032
|
+
}, "strip", z.ZodTypeAny, {
|
|
97033
|
+
name: string;
|
|
97034
|
+
nickname?: string | undefined;
|
|
97035
|
+
avatar?: string | undefined;
|
|
97036
|
+
}, {
|
|
97037
|
+
name: string;
|
|
97038
|
+
nickname?: string | undefined;
|
|
97039
|
+
avatar?: string | undefined;
|
|
97040
|
+
}>;
|
|
97041
|
+
}, "strip", z.ZodTypeAny, {
|
|
97042
|
+
id: string;
|
|
97043
|
+
email: string;
|
|
97044
|
+
profile: {
|
|
97045
|
+
name: string;
|
|
97046
|
+
nickname?: string | undefined;
|
|
97047
|
+
avatar?: string | undefined;
|
|
97048
|
+
};
|
|
97049
|
+
}, {
|
|
97050
|
+
id: string;
|
|
97051
|
+
email: string;
|
|
97052
|
+
profile: {
|
|
97053
|
+
name: string;
|
|
97054
|
+
nickname?: string | undefined;
|
|
97055
|
+
avatar?: string | undefined;
|
|
97056
|
+
};
|
|
97057
|
+
}>;
|
|
97058
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97059
|
+
}, "userId" | "role">, "strip", z.ZodTypeAny, {
|
|
97004
97060
|
userId: string;
|
|
97005
|
-
role:
|
|
97061
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97006
97062
|
}, {
|
|
97007
97063
|
userId: string;
|
|
97008
|
-
role:
|
|
97064
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97009
97065
|
}>;
|
|
97010
97066
|
type DTOCreateForgeProjectMember = z.infer<typeof DTOCreateForgeProjectMember>;
|
|
97011
|
-
declare const DTOUpdateForgeProjectMember: z.ZodObject<{
|
|
97067
|
+
declare const DTOUpdateForgeProjectMember: z.ZodObject<Omit<Pick<{
|
|
97012
97068
|
userId: z.ZodString;
|
|
97013
|
-
|
|
97014
|
-
|
|
97015
|
-
|
|
97016
|
-
role:
|
|
97069
|
+
fpId: z.ZodString;
|
|
97070
|
+
workspaceMembershipId: z.ZodString;
|
|
97071
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97072
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97073
|
+
} & {
|
|
97074
|
+
user: z.ZodObject<{
|
|
97075
|
+
id: z.ZodString;
|
|
97076
|
+
email: z.ZodString;
|
|
97077
|
+
profile: z.ZodObject<{
|
|
97078
|
+
name: z.ZodString;
|
|
97079
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
97080
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
97081
|
+
}, "strip", z.ZodTypeAny, {
|
|
97082
|
+
name: string;
|
|
97083
|
+
nickname?: string | undefined;
|
|
97084
|
+
avatar?: string | undefined;
|
|
97085
|
+
}, {
|
|
97086
|
+
name: string;
|
|
97087
|
+
nickname?: string | undefined;
|
|
97088
|
+
avatar?: string | undefined;
|
|
97089
|
+
}>;
|
|
97090
|
+
}, "strip", z.ZodTypeAny, {
|
|
97091
|
+
id: string;
|
|
97092
|
+
email: string;
|
|
97093
|
+
profile: {
|
|
97094
|
+
name: string;
|
|
97095
|
+
nickname?: string | undefined;
|
|
97096
|
+
avatar?: string | undefined;
|
|
97097
|
+
};
|
|
97098
|
+
}, {
|
|
97099
|
+
id: string;
|
|
97100
|
+
email: string;
|
|
97101
|
+
profile: {
|
|
97102
|
+
name: string;
|
|
97103
|
+
nickname?: string | undefined;
|
|
97104
|
+
avatar?: string | undefined;
|
|
97105
|
+
};
|
|
97106
|
+
}>;
|
|
97107
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97108
|
+
}, "userId" | "role">, "userId">, "strip", z.ZodTypeAny, {
|
|
97109
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97017
97110
|
}, {
|
|
97018
|
-
|
|
97019
|
-
role: string;
|
|
97111
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97020
97112
|
}>;
|
|
97021
97113
|
type DTOUpdateForgeProjectMember = z.infer<typeof DTOUpdateForgeProjectMember>;
|
|
97022
|
-
declare const DTORemoveForgeProjectMember: z.ZodObject<{
|
|
97114
|
+
declare const DTORemoveForgeProjectMember: z.ZodObject<Pick<{
|
|
97023
97115
|
userId: z.ZodString;
|
|
97024
|
-
|
|
97116
|
+
fpId: z.ZodString;
|
|
97117
|
+
workspaceMembershipId: z.ZodString;
|
|
97118
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97119
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97120
|
+
} & {
|
|
97121
|
+
user: z.ZodObject<{
|
|
97122
|
+
id: z.ZodString;
|
|
97123
|
+
email: z.ZodString;
|
|
97124
|
+
profile: z.ZodObject<{
|
|
97125
|
+
name: z.ZodString;
|
|
97126
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
97127
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
97128
|
+
}, "strip", z.ZodTypeAny, {
|
|
97129
|
+
name: string;
|
|
97130
|
+
nickname?: string | undefined;
|
|
97131
|
+
avatar?: string | undefined;
|
|
97132
|
+
}, {
|
|
97133
|
+
name: string;
|
|
97134
|
+
nickname?: string | undefined;
|
|
97135
|
+
avatar?: string | undefined;
|
|
97136
|
+
}>;
|
|
97137
|
+
}, "strip", z.ZodTypeAny, {
|
|
97138
|
+
id: string;
|
|
97139
|
+
email: string;
|
|
97140
|
+
profile: {
|
|
97141
|
+
name: string;
|
|
97142
|
+
nickname?: string | undefined;
|
|
97143
|
+
avatar?: string | undefined;
|
|
97144
|
+
};
|
|
97145
|
+
}, {
|
|
97146
|
+
id: string;
|
|
97147
|
+
email: string;
|
|
97148
|
+
profile: {
|
|
97149
|
+
name: string;
|
|
97150
|
+
nickname?: string | undefined;
|
|
97151
|
+
avatar?: string | undefined;
|
|
97152
|
+
};
|
|
97153
|
+
}>;
|
|
97154
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97155
|
+
}, "userId">, "strip", z.ZodTypeAny, {
|
|
97025
97156
|
userId: string;
|
|
97026
97157
|
}, {
|
|
97027
97158
|
userId: string;
|
|
@@ -97029,6 +97160,12 @@ declare const DTORemoveForgeProjectMember: z.ZodObject<{
|
|
|
97029
97160
|
type DTORemoveForgeProjectMember = z.infer<typeof DTORemoveForgeProjectMember>;
|
|
97030
97161
|
declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
97031
97162
|
members: z.ZodArray<z.ZodObject<{
|
|
97163
|
+
userId: z.ZodString;
|
|
97164
|
+
fpId: z.ZodString;
|
|
97165
|
+
workspaceMembershipId: z.ZodString;
|
|
97166
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97167
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97168
|
+
} & {
|
|
97032
97169
|
user: z.ZodObject<{
|
|
97033
97170
|
id: z.ZodString;
|
|
97034
97171
|
email: z.ZodString;
|
|
@@ -97062,7 +97199,7 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97062
97199
|
avatar?: string | undefined;
|
|
97063
97200
|
};
|
|
97064
97201
|
}>;
|
|
97065
|
-
|
|
97202
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97066
97203
|
}, "strip", z.ZodTypeAny, {
|
|
97067
97204
|
user: {
|
|
97068
97205
|
id: string;
|
|
@@ -97073,7 +97210,12 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97073
97210
|
avatar?: string | undefined;
|
|
97074
97211
|
};
|
|
97075
97212
|
};
|
|
97076
|
-
|
|
97213
|
+
userId: string;
|
|
97214
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97215
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97216
|
+
fpId: string;
|
|
97217
|
+
workspaceMembershipId: string;
|
|
97218
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97077
97219
|
}, {
|
|
97078
97220
|
user: {
|
|
97079
97221
|
id: string;
|
|
@@ -97084,7 +97226,12 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97084
97226
|
avatar?: string | undefined;
|
|
97085
97227
|
};
|
|
97086
97228
|
};
|
|
97087
|
-
|
|
97229
|
+
userId: string;
|
|
97230
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97231
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97232
|
+
fpId: string;
|
|
97233
|
+
workspaceMembershipId: string;
|
|
97234
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97088
97235
|
}>, "many">;
|
|
97089
97236
|
}, "strip", z.ZodTypeAny, {
|
|
97090
97237
|
members: {
|
|
@@ -97097,7 +97244,12 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97097
97244
|
avatar?: string | undefined;
|
|
97098
97245
|
};
|
|
97099
97246
|
};
|
|
97100
|
-
|
|
97247
|
+
userId: string;
|
|
97248
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97249
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97250
|
+
fpId: string;
|
|
97251
|
+
workspaceMembershipId: string;
|
|
97252
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97101
97253
|
}[];
|
|
97102
97254
|
}, {
|
|
97103
97255
|
members: {
|
|
@@ -97110,12 +97262,23 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97110
97262
|
avatar?: string | undefined;
|
|
97111
97263
|
};
|
|
97112
97264
|
};
|
|
97113
|
-
|
|
97265
|
+
userId: string;
|
|
97266
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97267
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97268
|
+
fpId: string;
|
|
97269
|
+
workspaceMembershipId: string;
|
|
97270
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97114
97271
|
}[];
|
|
97115
97272
|
}>;
|
|
97116
97273
|
type DTOForgeProjectMembersListResponse = z.infer<typeof DTOForgeProjectMembersListResponse>;
|
|
97117
97274
|
declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
97118
97275
|
member: z.ZodNullable<z.ZodObject<{
|
|
97276
|
+
userId: z.ZodString;
|
|
97277
|
+
fpId: z.ZodString;
|
|
97278
|
+
workspaceMembershipId: z.ZodString;
|
|
97279
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97280
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97281
|
+
} & {
|
|
97119
97282
|
user: z.ZodObject<{
|
|
97120
97283
|
id: z.ZodString;
|
|
97121
97284
|
email: z.ZodString;
|
|
@@ -97149,7 +97312,7 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97149
97312
|
avatar?: string | undefined;
|
|
97150
97313
|
};
|
|
97151
97314
|
}>;
|
|
97152
|
-
|
|
97315
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97153
97316
|
}, "strip", z.ZodTypeAny, {
|
|
97154
97317
|
user: {
|
|
97155
97318
|
id: string;
|
|
@@ -97160,7 +97323,12 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97160
97323
|
avatar?: string | undefined;
|
|
97161
97324
|
};
|
|
97162
97325
|
};
|
|
97163
|
-
|
|
97326
|
+
userId: string;
|
|
97327
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97328
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97329
|
+
fpId: string;
|
|
97330
|
+
workspaceMembershipId: string;
|
|
97331
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97164
97332
|
}, {
|
|
97165
97333
|
user: {
|
|
97166
97334
|
id: string;
|
|
@@ -97171,7 +97339,12 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97171
97339
|
avatar?: string | undefined;
|
|
97172
97340
|
};
|
|
97173
97341
|
};
|
|
97174
|
-
|
|
97342
|
+
userId: string;
|
|
97343
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97344
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97345
|
+
fpId: string;
|
|
97346
|
+
workspaceMembershipId: string;
|
|
97347
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97175
97348
|
}>>;
|
|
97176
97349
|
}, "strip", z.ZodTypeAny, {
|
|
97177
97350
|
member: {
|
|
@@ -97184,7 +97357,12 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97184
97357
|
avatar?: string | undefined;
|
|
97185
97358
|
};
|
|
97186
97359
|
};
|
|
97187
|
-
|
|
97360
|
+
userId: string;
|
|
97361
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97362
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97363
|
+
fpId: string;
|
|
97364
|
+
workspaceMembershipId: string;
|
|
97365
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97188
97366
|
} | null;
|
|
97189
97367
|
}, {
|
|
97190
97368
|
member: {
|
|
@@ -97197,12 +97375,23 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97197
97375
|
avatar?: string | undefined;
|
|
97198
97376
|
};
|
|
97199
97377
|
};
|
|
97200
|
-
|
|
97378
|
+
userId: string;
|
|
97379
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97380
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97381
|
+
fpId: string;
|
|
97382
|
+
workspaceMembershipId: string;
|
|
97383
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97201
97384
|
} | null;
|
|
97202
97385
|
}>;
|
|
97203
97386
|
type DTOForgeProjectMemberGetResponse = z.infer<typeof DTOForgeProjectMemberGetResponse>;
|
|
97204
97387
|
declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
97205
97388
|
member: z.ZodObject<{
|
|
97389
|
+
userId: z.ZodString;
|
|
97390
|
+
fpId: z.ZodString;
|
|
97391
|
+
workspaceMembershipId: z.ZodString;
|
|
97392
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97393
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97394
|
+
} & {
|
|
97206
97395
|
user: z.ZodObject<{
|
|
97207
97396
|
id: z.ZodString;
|
|
97208
97397
|
email: z.ZodString;
|
|
@@ -97236,7 +97425,7 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97236
97425
|
avatar?: string | undefined;
|
|
97237
97426
|
};
|
|
97238
97427
|
}>;
|
|
97239
|
-
|
|
97428
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97240
97429
|
}, "strip", z.ZodTypeAny, {
|
|
97241
97430
|
user: {
|
|
97242
97431
|
id: string;
|
|
@@ -97247,7 +97436,12 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97247
97436
|
avatar?: string | undefined;
|
|
97248
97437
|
};
|
|
97249
97438
|
};
|
|
97250
|
-
|
|
97439
|
+
userId: string;
|
|
97440
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97441
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97442
|
+
fpId: string;
|
|
97443
|
+
workspaceMembershipId: string;
|
|
97444
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97251
97445
|
}, {
|
|
97252
97446
|
user: {
|
|
97253
97447
|
id: string;
|
|
@@ -97258,7 +97452,12 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97258
97452
|
avatar?: string | undefined;
|
|
97259
97453
|
};
|
|
97260
97454
|
};
|
|
97261
|
-
|
|
97455
|
+
userId: string;
|
|
97456
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97457
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97458
|
+
fpId: string;
|
|
97459
|
+
workspaceMembershipId: string;
|
|
97460
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97262
97461
|
}>;
|
|
97263
97462
|
}, "strip", z.ZodTypeAny, {
|
|
97264
97463
|
member: {
|
|
@@ -97271,7 +97470,12 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97271
97470
|
avatar?: string | undefined;
|
|
97272
97471
|
};
|
|
97273
97472
|
};
|
|
97274
|
-
|
|
97473
|
+
userId: string;
|
|
97474
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97475
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97476
|
+
fpId: string;
|
|
97477
|
+
workspaceMembershipId: string;
|
|
97478
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97275
97479
|
};
|
|
97276
97480
|
}, {
|
|
97277
97481
|
member: {
|
|
@@ -97284,12 +97488,23 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97284
97488
|
avatar?: string | undefined;
|
|
97285
97489
|
};
|
|
97286
97490
|
};
|
|
97287
|
-
|
|
97491
|
+
userId: string;
|
|
97492
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97493
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97494
|
+
fpId: string;
|
|
97495
|
+
workspaceMembershipId: string;
|
|
97496
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97288
97497
|
};
|
|
97289
97498
|
}>;
|
|
97290
97499
|
type DTOForgeProjectMemberCreateResponse = z.infer<typeof DTOForgeProjectMemberCreateResponse>;
|
|
97291
97500
|
declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
97292
97501
|
member: z.ZodNullable<z.ZodObject<{
|
|
97502
|
+
userId: z.ZodString;
|
|
97503
|
+
fpId: z.ZodString;
|
|
97504
|
+
workspaceMembershipId: z.ZodString;
|
|
97505
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97506
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97507
|
+
} & {
|
|
97293
97508
|
user: z.ZodObject<{
|
|
97294
97509
|
id: z.ZodString;
|
|
97295
97510
|
email: z.ZodString;
|
|
@@ -97323,7 +97538,7 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97323
97538
|
avatar?: string | undefined;
|
|
97324
97539
|
};
|
|
97325
97540
|
}>;
|
|
97326
|
-
|
|
97541
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97327
97542
|
}, "strip", z.ZodTypeAny, {
|
|
97328
97543
|
user: {
|
|
97329
97544
|
id: string;
|
|
@@ -97334,7 +97549,12 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97334
97549
|
avatar?: string | undefined;
|
|
97335
97550
|
};
|
|
97336
97551
|
};
|
|
97337
|
-
|
|
97552
|
+
userId: string;
|
|
97553
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97554
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97555
|
+
fpId: string;
|
|
97556
|
+
workspaceMembershipId: string;
|
|
97557
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97338
97558
|
}, {
|
|
97339
97559
|
user: {
|
|
97340
97560
|
id: string;
|
|
@@ -97345,7 +97565,12 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97345
97565
|
avatar?: string | undefined;
|
|
97346
97566
|
};
|
|
97347
97567
|
};
|
|
97348
|
-
|
|
97568
|
+
userId: string;
|
|
97569
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97570
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97571
|
+
fpId: string;
|
|
97572
|
+
workspaceMembershipId: string;
|
|
97573
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97349
97574
|
}>>;
|
|
97350
97575
|
}, "strip", z.ZodTypeAny, {
|
|
97351
97576
|
member: {
|
|
@@ -97358,7 +97583,12 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97358
97583
|
avatar?: string | undefined;
|
|
97359
97584
|
};
|
|
97360
97585
|
};
|
|
97361
|
-
|
|
97586
|
+
userId: string;
|
|
97587
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97588
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97589
|
+
fpId: string;
|
|
97590
|
+
workspaceMembershipId: string;
|
|
97591
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97362
97592
|
} | null;
|
|
97363
97593
|
}, {
|
|
97364
97594
|
member: {
|
|
@@ -97371,7 +97601,12 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97371
97601
|
avatar?: string | undefined;
|
|
97372
97602
|
};
|
|
97373
97603
|
};
|
|
97374
|
-
|
|
97604
|
+
userId: string;
|
|
97605
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97606
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97607
|
+
fpId: string;
|
|
97608
|
+
workspaceMembershipId: string;
|
|
97609
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97375
97610
|
} | null;
|
|
97376
97611
|
}>;
|
|
97377
97612
|
type DTOForgeProjectMemberUpdateResponse = z.infer<typeof DTOForgeProjectMemberUpdateResponse>;
|
|
@@ -97404,6 +97639,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97404
97639
|
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
97405
97640
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
97406
97641
|
workspaceId: z.ZodString;
|
|
97642
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
97407
97643
|
}, "fpContextId"> & {
|
|
97408
97644
|
context: z.ZodObject<{
|
|
97409
97645
|
createdAt: z.ZodDate;
|
|
@@ -97599,6 +97835,12 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97599
97835
|
} | undefined;
|
|
97600
97836
|
}>;
|
|
97601
97837
|
members: z.ZodArray<z.ZodObject<{
|
|
97838
|
+
userId: z.ZodString;
|
|
97839
|
+
fpId: z.ZodString;
|
|
97840
|
+
workspaceMembershipId: z.ZodString;
|
|
97841
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97842
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97843
|
+
} & {
|
|
97602
97844
|
user: z.ZodObject<{
|
|
97603
97845
|
id: z.ZodString;
|
|
97604
97846
|
email: z.ZodString;
|
|
@@ -97632,7 +97874,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97632
97874
|
avatar?: string | undefined;
|
|
97633
97875
|
};
|
|
97634
97876
|
}>;
|
|
97635
|
-
|
|
97877
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97636
97878
|
}, "strip", z.ZodTypeAny, {
|
|
97637
97879
|
user: {
|
|
97638
97880
|
id: string;
|
|
@@ -97643,7 +97885,12 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97643
97885
|
avatar?: string | undefined;
|
|
97644
97886
|
};
|
|
97645
97887
|
};
|
|
97646
|
-
|
|
97888
|
+
userId: string;
|
|
97889
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97890
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97891
|
+
fpId: string;
|
|
97892
|
+
workspaceMembershipId: string;
|
|
97893
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97647
97894
|
}, {
|
|
97648
97895
|
user: {
|
|
97649
97896
|
id: string;
|
|
@@ -97654,7 +97901,12 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97654
97901
|
avatar?: string | undefined;
|
|
97655
97902
|
};
|
|
97656
97903
|
};
|
|
97657
|
-
|
|
97904
|
+
userId: string;
|
|
97905
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97906
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97907
|
+
fpId: string;
|
|
97908
|
+
workspaceMembershipId: string;
|
|
97909
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97658
97910
|
}>, "many">;
|
|
97659
97911
|
}, "strip", z.ZodTypeAny, {
|
|
97660
97912
|
id: string;
|
|
@@ -97675,9 +97927,15 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97675
97927
|
avatar?: string | undefined;
|
|
97676
97928
|
};
|
|
97677
97929
|
};
|
|
97678
|
-
|
|
97930
|
+
userId: string;
|
|
97931
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97932
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97933
|
+
fpId: string;
|
|
97934
|
+
workspaceMembershipId: string;
|
|
97935
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97679
97936
|
}[];
|
|
97680
97937
|
workspaceId: string;
|
|
97938
|
+
accessMode: "Open" | "InviteOnly";
|
|
97681
97939
|
context: {
|
|
97682
97940
|
id: string;
|
|
97683
97941
|
name: string;
|
|
@@ -97744,9 +98002,15 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97744
98002
|
avatar?: string | undefined;
|
|
97745
98003
|
};
|
|
97746
98004
|
};
|
|
97747
|
-
|
|
98005
|
+
userId: string;
|
|
98006
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98007
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98008
|
+
fpId: string;
|
|
98009
|
+
workspaceMembershipId: string;
|
|
98010
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97748
98011
|
}[];
|
|
97749
98012
|
workspaceId: string;
|
|
98013
|
+
accessMode: "Open" | "InviteOnly";
|
|
97750
98014
|
context: {
|
|
97751
98015
|
id: string;
|
|
97752
98016
|
name: string;
|
|
@@ -97819,6 +98083,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
97819
98083
|
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
97820
98084
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
97821
98085
|
workspaceId: z.ZodString;
|
|
98086
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
97822
98087
|
}, "fpContextId"> & {
|
|
97823
98088
|
context: z.ZodObject<{
|
|
97824
98089
|
createdAt: z.ZodDate;
|
|
@@ -98014,6 +98279,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98014
98279
|
} | undefined;
|
|
98015
98280
|
}>;
|
|
98016
98281
|
members: z.ZodArray<z.ZodObject<{
|
|
98282
|
+
userId: z.ZodString;
|
|
98283
|
+
fpId: z.ZodString;
|
|
98284
|
+
workspaceMembershipId: z.ZodString;
|
|
98285
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98286
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98287
|
+
} & {
|
|
98017
98288
|
user: z.ZodObject<{
|
|
98018
98289
|
id: z.ZodString;
|
|
98019
98290
|
email: z.ZodString;
|
|
@@ -98047,7 +98318,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98047
98318
|
avatar?: string | undefined;
|
|
98048
98319
|
};
|
|
98049
98320
|
}>;
|
|
98050
|
-
|
|
98321
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98051
98322
|
}, "strip", z.ZodTypeAny, {
|
|
98052
98323
|
user: {
|
|
98053
98324
|
id: string;
|
|
@@ -98058,7 +98329,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98058
98329
|
avatar?: string | undefined;
|
|
98059
98330
|
};
|
|
98060
98331
|
};
|
|
98061
|
-
|
|
98332
|
+
userId: string;
|
|
98333
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98334
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98335
|
+
fpId: string;
|
|
98336
|
+
workspaceMembershipId: string;
|
|
98337
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98062
98338
|
}, {
|
|
98063
98339
|
user: {
|
|
98064
98340
|
id: string;
|
|
@@ -98069,7 +98345,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98069
98345
|
avatar?: string | undefined;
|
|
98070
98346
|
};
|
|
98071
98347
|
};
|
|
98072
|
-
|
|
98348
|
+
userId: string;
|
|
98349
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98350
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98351
|
+
fpId: string;
|
|
98352
|
+
workspaceMembershipId: string;
|
|
98353
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98073
98354
|
}>, "many">;
|
|
98074
98355
|
}, "strip", z.ZodTypeAny, {
|
|
98075
98356
|
id: string;
|
|
@@ -98090,9 +98371,15 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98090
98371
|
avatar?: string | undefined;
|
|
98091
98372
|
};
|
|
98092
98373
|
};
|
|
98093
|
-
|
|
98374
|
+
userId: string;
|
|
98375
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98376
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98377
|
+
fpId: string;
|
|
98378
|
+
workspaceMembershipId: string;
|
|
98379
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98094
98380
|
}[];
|
|
98095
98381
|
workspaceId: string;
|
|
98382
|
+
accessMode: "Open" | "InviteOnly";
|
|
98096
98383
|
context: {
|
|
98097
98384
|
id: string;
|
|
98098
98385
|
name: string;
|
|
@@ -98159,9 +98446,15 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98159
98446
|
avatar?: string | undefined;
|
|
98160
98447
|
};
|
|
98161
98448
|
};
|
|
98162
|
-
|
|
98449
|
+
userId: string;
|
|
98450
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98451
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98452
|
+
fpId: string;
|
|
98453
|
+
workspaceMembershipId: string;
|
|
98454
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98163
98455
|
}[];
|
|
98164
98456
|
workspaceId: string;
|
|
98457
|
+
accessMode: "Open" | "InviteOnly";
|
|
98165
98458
|
context: {
|
|
98166
98459
|
id: string;
|
|
98167
98460
|
name: string;
|
|
@@ -98232,9 +98525,15 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98232
98525
|
avatar?: string | undefined;
|
|
98233
98526
|
};
|
|
98234
98527
|
};
|
|
98235
|
-
|
|
98528
|
+
userId: string;
|
|
98529
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98530
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98531
|
+
fpId: string;
|
|
98532
|
+
workspaceMembershipId: string;
|
|
98533
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98236
98534
|
}[];
|
|
98237
98535
|
workspaceId: string;
|
|
98536
|
+
accessMode: "Open" | "InviteOnly";
|
|
98238
98537
|
context: {
|
|
98239
98538
|
id: string;
|
|
98240
98539
|
name: string;
|
|
@@ -98303,9 +98602,15 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98303
98602
|
avatar?: string | undefined;
|
|
98304
98603
|
};
|
|
98305
98604
|
};
|
|
98306
|
-
|
|
98605
|
+
userId: string;
|
|
98606
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98607
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98608
|
+
fpId: string;
|
|
98609
|
+
workspaceMembershipId: string;
|
|
98610
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98307
98611
|
}[];
|
|
98308
98612
|
workspaceId: string;
|
|
98613
|
+
accessMode: "Open" | "InviteOnly";
|
|
98309
98614
|
context: {
|
|
98310
98615
|
id: string;
|
|
98311
98616
|
name: string;
|
|
@@ -98379,6 +98684,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98379
98684
|
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
98380
98685
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
98381
98686
|
workspaceId: z.ZodString;
|
|
98687
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
98382
98688
|
}, "fpContextId"> & {
|
|
98383
98689
|
context: z.ZodObject<{
|
|
98384
98690
|
createdAt: z.ZodDate;
|
|
@@ -98574,6 +98880,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98574
98880
|
} | undefined;
|
|
98575
98881
|
}>;
|
|
98576
98882
|
members: z.ZodArray<z.ZodObject<{
|
|
98883
|
+
userId: z.ZodString;
|
|
98884
|
+
fpId: z.ZodString;
|
|
98885
|
+
workspaceMembershipId: z.ZodString;
|
|
98886
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98887
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98888
|
+
} & {
|
|
98577
98889
|
user: z.ZodObject<{
|
|
98578
98890
|
id: z.ZodString;
|
|
98579
98891
|
email: z.ZodString;
|
|
@@ -98607,7 +98919,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98607
98919
|
avatar?: string | undefined;
|
|
98608
98920
|
};
|
|
98609
98921
|
}>;
|
|
98610
|
-
|
|
98922
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98611
98923
|
}, "strip", z.ZodTypeAny, {
|
|
98612
98924
|
user: {
|
|
98613
98925
|
id: string;
|
|
@@ -98618,7 +98930,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98618
98930
|
avatar?: string | undefined;
|
|
98619
98931
|
};
|
|
98620
98932
|
};
|
|
98621
|
-
|
|
98933
|
+
userId: string;
|
|
98934
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98935
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98936
|
+
fpId: string;
|
|
98937
|
+
workspaceMembershipId: string;
|
|
98938
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98622
98939
|
}, {
|
|
98623
98940
|
user: {
|
|
98624
98941
|
id: string;
|
|
@@ -98629,7 +98946,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98629
98946
|
avatar?: string | undefined;
|
|
98630
98947
|
};
|
|
98631
98948
|
};
|
|
98632
|
-
|
|
98949
|
+
userId: string;
|
|
98950
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98951
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98952
|
+
fpId: string;
|
|
98953
|
+
workspaceMembershipId: string;
|
|
98954
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98633
98955
|
}>, "many">;
|
|
98634
98956
|
}, "strip", z.ZodTypeAny, {
|
|
98635
98957
|
id: string;
|
|
@@ -98650,9 +98972,15 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98650
98972
|
avatar?: string | undefined;
|
|
98651
98973
|
};
|
|
98652
98974
|
};
|
|
98653
|
-
|
|
98975
|
+
userId: string;
|
|
98976
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98977
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98978
|
+
fpId: string;
|
|
98979
|
+
workspaceMembershipId: string;
|
|
98980
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98654
98981
|
}[];
|
|
98655
98982
|
workspaceId: string;
|
|
98983
|
+
accessMode: "Open" | "InviteOnly";
|
|
98656
98984
|
context: {
|
|
98657
98985
|
id: string;
|
|
98658
98986
|
name: string;
|
|
@@ -98719,9 +99047,15 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98719
99047
|
avatar?: string | undefined;
|
|
98720
99048
|
};
|
|
98721
99049
|
};
|
|
98722
|
-
|
|
99050
|
+
userId: string;
|
|
99051
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99052
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99053
|
+
fpId: string;
|
|
99054
|
+
workspaceMembershipId: string;
|
|
99055
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98723
99056
|
}[];
|
|
98724
99057
|
workspaceId: string;
|
|
99058
|
+
accessMode: "Open" | "InviteOnly";
|
|
98725
99059
|
context: {
|
|
98726
99060
|
id: string;
|
|
98727
99061
|
name: string;
|
|
@@ -98792,9 +99126,15 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98792
99126
|
avatar?: string | undefined;
|
|
98793
99127
|
};
|
|
98794
99128
|
};
|
|
98795
|
-
|
|
99129
|
+
userId: string;
|
|
99130
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99131
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99132
|
+
fpId: string;
|
|
99133
|
+
workspaceMembershipId: string;
|
|
99134
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98796
99135
|
}[];
|
|
98797
99136
|
workspaceId: string;
|
|
99137
|
+
accessMode: "Open" | "InviteOnly";
|
|
98798
99138
|
context: {
|
|
98799
99139
|
id: string;
|
|
98800
99140
|
name: string;
|
|
@@ -98863,9 +99203,15 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98863
99203
|
avatar?: string | undefined;
|
|
98864
99204
|
};
|
|
98865
99205
|
};
|
|
98866
|
-
|
|
99206
|
+
userId: string;
|
|
99207
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99208
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99209
|
+
fpId: string;
|
|
99210
|
+
workspaceMembershipId: string;
|
|
99211
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98867
99212
|
}[];
|
|
98868
99213
|
workspaceId: string;
|
|
99214
|
+
accessMode: "Open" | "InviteOnly";
|
|
98869
99215
|
context: {
|
|
98870
99216
|
id: string;
|
|
98871
99217
|
name: string;
|
|
@@ -98939,6 +99285,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
98939
99285
|
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
98940
99286
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
98941
99287
|
workspaceId: z.ZodString;
|
|
99288
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
98942
99289
|
}, "fpContextId"> & {
|
|
98943
99290
|
context: z.ZodObject<{
|
|
98944
99291
|
createdAt: z.ZodDate;
|
|
@@ -99134,6 +99481,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99134
99481
|
} | undefined;
|
|
99135
99482
|
}>;
|
|
99136
99483
|
members: z.ZodArray<z.ZodObject<{
|
|
99484
|
+
userId: z.ZodString;
|
|
99485
|
+
fpId: z.ZodString;
|
|
99486
|
+
workspaceMembershipId: z.ZodString;
|
|
99487
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
99488
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99489
|
+
} & {
|
|
99137
99490
|
user: z.ZodObject<{
|
|
99138
99491
|
id: z.ZodString;
|
|
99139
99492
|
email: z.ZodString;
|
|
@@ -99167,7 +99520,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99167
99520
|
avatar?: string | undefined;
|
|
99168
99521
|
};
|
|
99169
99522
|
}>;
|
|
99170
|
-
|
|
99523
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99171
99524
|
}, "strip", z.ZodTypeAny, {
|
|
99172
99525
|
user: {
|
|
99173
99526
|
id: string;
|
|
@@ -99178,7 +99531,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99178
99531
|
avatar?: string | undefined;
|
|
99179
99532
|
};
|
|
99180
99533
|
};
|
|
99181
|
-
|
|
99534
|
+
userId: string;
|
|
99535
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99536
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99537
|
+
fpId: string;
|
|
99538
|
+
workspaceMembershipId: string;
|
|
99539
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99182
99540
|
}, {
|
|
99183
99541
|
user: {
|
|
99184
99542
|
id: string;
|
|
@@ -99189,7 +99547,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99189
99547
|
avatar?: string | undefined;
|
|
99190
99548
|
};
|
|
99191
99549
|
};
|
|
99192
|
-
|
|
99550
|
+
userId: string;
|
|
99551
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99552
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99553
|
+
fpId: string;
|
|
99554
|
+
workspaceMembershipId: string;
|
|
99555
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99193
99556
|
}>, "many">;
|
|
99194
99557
|
}, "strip", z.ZodTypeAny, {
|
|
99195
99558
|
id: string;
|
|
@@ -99210,9 +99573,15 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99210
99573
|
avatar?: string | undefined;
|
|
99211
99574
|
};
|
|
99212
99575
|
};
|
|
99213
|
-
|
|
99576
|
+
userId: string;
|
|
99577
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99578
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99579
|
+
fpId: string;
|
|
99580
|
+
workspaceMembershipId: string;
|
|
99581
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99214
99582
|
}[];
|
|
99215
99583
|
workspaceId: string;
|
|
99584
|
+
accessMode: "Open" | "InviteOnly";
|
|
99216
99585
|
context: {
|
|
99217
99586
|
id: string;
|
|
99218
99587
|
name: string;
|
|
@@ -99279,9 +99648,15 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99279
99648
|
avatar?: string | undefined;
|
|
99280
99649
|
};
|
|
99281
99650
|
};
|
|
99282
|
-
|
|
99651
|
+
userId: string;
|
|
99652
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99653
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99654
|
+
fpId: string;
|
|
99655
|
+
workspaceMembershipId: string;
|
|
99656
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99283
99657
|
}[];
|
|
99284
99658
|
workspaceId: string;
|
|
99659
|
+
accessMode: "Open" | "InviteOnly";
|
|
99285
99660
|
context: {
|
|
99286
99661
|
id: string;
|
|
99287
99662
|
name: string;
|
|
@@ -99352,9 +99727,15 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99352
99727
|
avatar?: string | undefined;
|
|
99353
99728
|
};
|
|
99354
99729
|
};
|
|
99355
|
-
|
|
99730
|
+
userId: string;
|
|
99731
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99732
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99733
|
+
fpId: string;
|
|
99734
|
+
workspaceMembershipId: string;
|
|
99735
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99356
99736
|
}[];
|
|
99357
99737
|
workspaceId: string;
|
|
99738
|
+
accessMode: "Open" | "InviteOnly";
|
|
99358
99739
|
context: {
|
|
99359
99740
|
id: string;
|
|
99360
99741
|
name: string;
|
|
@@ -99423,9 +99804,15 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99423
99804
|
avatar?: string | undefined;
|
|
99424
99805
|
};
|
|
99425
99806
|
};
|
|
99426
|
-
|
|
99807
|
+
userId: string;
|
|
99808
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99809
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99810
|
+
fpId: string;
|
|
99811
|
+
workspaceMembershipId: string;
|
|
99812
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99427
99813
|
}[];
|
|
99428
99814
|
workspaceId: string;
|
|
99815
|
+
accessMode: "Open" | "InviteOnly";
|
|
99429
99816
|
context: {
|
|
99430
99817
|
id: string;
|
|
99431
99818
|
name: string;
|
|
@@ -99499,6 +99886,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99499
99886
|
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
99500
99887
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
99501
99888
|
workspaceId: z.ZodString;
|
|
99889
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
99502
99890
|
}, "fpContextId"> & {
|
|
99503
99891
|
context: z.ZodObject<{
|
|
99504
99892
|
createdAt: z.ZodDate;
|
|
@@ -99694,6 +100082,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99694
100082
|
} | undefined;
|
|
99695
100083
|
}>;
|
|
99696
100084
|
members: z.ZodArray<z.ZodObject<{
|
|
100085
|
+
userId: z.ZodString;
|
|
100086
|
+
fpId: z.ZodString;
|
|
100087
|
+
workspaceMembershipId: z.ZodString;
|
|
100088
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
100089
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
100090
|
+
} & {
|
|
99697
100091
|
user: z.ZodObject<{
|
|
99698
100092
|
id: z.ZodString;
|
|
99699
100093
|
email: z.ZodString;
|
|
@@ -99727,7 +100121,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99727
100121
|
avatar?: string | undefined;
|
|
99728
100122
|
};
|
|
99729
100123
|
}>;
|
|
99730
|
-
|
|
100124
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99731
100125
|
}, "strip", z.ZodTypeAny, {
|
|
99732
100126
|
user: {
|
|
99733
100127
|
id: string;
|
|
@@ -99738,7 +100132,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99738
100132
|
avatar?: string | undefined;
|
|
99739
100133
|
};
|
|
99740
100134
|
};
|
|
99741
|
-
|
|
100135
|
+
userId: string;
|
|
100136
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100137
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100138
|
+
fpId: string;
|
|
100139
|
+
workspaceMembershipId: string;
|
|
100140
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99742
100141
|
}, {
|
|
99743
100142
|
user: {
|
|
99744
100143
|
id: string;
|
|
@@ -99749,7 +100148,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99749
100148
|
avatar?: string | undefined;
|
|
99750
100149
|
};
|
|
99751
100150
|
};
|
|
99752
|
-
|
|
100151
|
+
userId: string;
|
|
100152
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100153
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100154
|
+
fpId: string;
|
|
100155
|
+
workspaceMembershipId: string;
|
|
100156
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99753
100157
|
}>, "many">;
|
|
99754
100158
|
}, "strip", z.ZodTypeAny, {
|
|
99755
100159
|
id: string;
|
|
@@ -99770,9 +100174,15 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99770
100174
|
avatar?: string | undefined;
|
|
99771
100175
|
};
|
|
99772
100176
|
};
|
|
99773
|
-
|
|
100177
|
+
userId: string;
|
|
100178
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100179
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100180
|
+
fpId: string;
|
|
100181
|
+
workspaceMembershipId: string;
|
|
100182
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99774
100183
|
}[];
|
|
99775
100184
|
workspaceId: string;
|
|
100185
|
+
accessMode: "Open" | "InviteOnly";
|
|
99776
100186
|
context: {
|
|
99777
100187
|
id: string;
|
|
99778
100188
|
name: string;
|
|
@@ -99839,9 +100249,15 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99839
100249
|
avatar?: string | undefined;
|
|
99840
100250
|
};
|
|
99841
100251
|
};
|
|
99842
|
-
|
|
100252
|
+
userId: string;
|
|
100253
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100254
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100255
|
+
fpId: string;
|
|
100256
|
+
workspaceMembershipId: string;
|
|
100257
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99843
100258
|
}[];
|
|
99844
100259
|
workspaceId: string;
|
|
100260
|
+
accessMode: "Open" | "InviteOnly";
|
|
99845
100261
|
context: {
|
|
99846
100262
|
id: string;
|
|
99847
100263
|
name: string;
|
|
@@ -99912,9 +100328,15 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99912
100328
|
avatar?: string | undefined;
|
|
99913
100329
|
};
|
|
99914
100330
|
};
|
|
99915
|
-
|
|
100331
|
+
userId: string;
|
|
100332
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100333
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100334
|
+
fpId: string;
|
|
100335
|
+
workspaceMembershipId: string;
|
|
100336
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99916
100337
|
}[];
|
|
99917
100338
|
workspaceId: string;
|
|
100339
|
+
accessMode: "Open" | "InviteOnly";
|
|
99918
100340
|
context: {
|
|
99919
100341
|
id: string;
|
|
99920
100342
|
name: string;
|
|
@@ -99983,9 +100405,15 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99983
100405
|
avatar?: string | undefined;
|
|
99984
100406
|
};
|
|
99985
100407
|
};
|
|
99986
|
-
|
|
100408
|
+
userId: string;
|
|
100409
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100410
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100411
|
+
fpId: string;
|
|
100412
|
+
workspaceMembershipId: string;
|
|
100413
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99987
100414
|
}[];
|
|
99988
100415
|
workspaceId: string;
|
|
100416
|
+
accessMode: "Open" | "InviteOnly";
|
|
99989
100417
|
context: {
|
|
99990
100418
|
id: string;
|
|
99991
100419
|
name: string;
|
|
@@ -100058,12 +100486,15 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
|
|
|
100058
100486
|
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
100059
100487
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
100060
100488
|
workspaceId: z.ZodString;
|
|
100061
|
-
|
|
100489
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
100490
|
+
}, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction">, "strip", z.ZodTypeAny, {
|
|
100062
100491
|
name: string;
|
|
100063
100492
|
meta: {
|
|
100064
100493
|
name: string;
|
|
100065
100494
|
description?: string | undefined;
|
|
100066
100495
|
};
|
|
100496
|
+
tags: string[];
|
|
100497
|
+
accessMode: "Open" | "InviteOnly";
|
|
100067
100498
|
fpContextId: string;
|
|
100068
100499
|
instruction: string | null;
|
|
100069
100500
|
}, {
|
|
@@ -100072,8 +100503,10 @@ declare const DTOCreateForgeProject: z.ZodObject<Pick<{
|
|
|
100072
100503
|
name: string;
|
|
100073
100504
|
description?: string | undefined;
|
|
100074
100505
|
};
|
|
100506
|
+
accessMode: "Open" | "InviteOnly";
|
|
100075
100507
|
fpContextId: string;
|
|
100076
100508
|
instruction: string | null;
|
|
100509
|
+
tags?: string[] | undefined;
|
|
100077
100510
|
}>;
|
|
100078
100511
|
type DTOCreateForgeProject = z.infer<typeof DTOCreateForgeProject>;
|
|
100079
100512
|
declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
|
|
@@ -100096,7 +100529,8 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
|
|
|
100096
100529
|
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
100097
100530
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
100098
100531
|
workspaceId: z.ZodString;
|
|
100099
|
-
|
|
100532
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
100533
|
+
}, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction"> & {
|
|
100100
100534
|
id: z.ZodString;
|
|
100101
100535
|
}, "strip", z.ZodTypeAny, {
|
|
100102
100536
|
id: string;
|
|
@@ -100105,6 +100539,8 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
|
|
|
100105
100539
|
name: string;
|
|
100106
100540
|
description?: string | undefined;
|
|
100107
100541
|
};
|
|
100542
|
+
tags: string[];
|
|
100543
|
+
accessMode: "Open" | "InviteOnly";
|
|
100108
100544
|
fpContextId: string;
|
|
100109
100545
|
instruction: string | null;
|
|
100110
100546
|
}, {
|
|
@@ -100114,8 +100550,10 @@ declare const DTOUpdateForgeProject: z.ZodObject<Pick<{
|
|
|
100114
100550
|
name: string;
|
|
100115
100551
|
description?: string | undefined;
|
|
100116
100552
|
};
|
|
100553
|
+
accessMode: "Open" | "InviteOnly";
|
|
100117
100554
|
fpContextId: string;
|
|
100118
100555
|
instruction: string | null;
|
|
100556
|
+
tags?: string[] | undefined;
|
|
100119
100557
|
}>;
|
|
100120
100558
|
type DTOUpdateForgeProject = z.infer<typeof DTOUpdateForgeProject>;
|
|
100121
100559
|
declare const DTORemoveForgeProjectResponse: z.ZodObject<{
|
|
@@ -142331,9 +142769,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
142331
142769
|
avatar?: string | undefined;
|
|
142332
142770
|
};
|
|
142333
142771
|
};
|
|
142334
|
-
|
|
142772
|
+
userId: string;
|
|
142773
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
142774
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142775
|
+
fpId: string;
|
|
142776
|
+
workspaceMembershipId: string;
|
|
142777
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142335
142778
|
}[];
|
|
142336
142779
|
workspaceId: string;
|
|
142780
|
+
accessMode: "Open" | "InviteOnly";
|
|
142337
142781
|
context: {
|
|
142338
142782
|
id: string;
|
|
142339
142783
|
name: string;
|
|
@@ -142404,9 +142848,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
142404
142848
|
avatar?: string | undefined;
|
|
142405
142849
|
};
|
|
142406
142850
|
};
|
|
142407
|
-
|
|
142851
|
+
userId: string;
|
|
142852
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
142853
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142854
|
+
fpId: string;
|
|
142855
|
+
workspaceMembershipId: string;
|
|
142856
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142408
142857
|
}[];
|
|
142409
142858
|
workspaceId: string;
|
|
142859
|
+
accessMode: "Open" | "InviteOnly";
|
|
142410
142860
|
context: {
|
|
142411
142861
|
id: string;
|
|
142412
142862
|
name: string;
|
|
@@ -142477,9 +142927,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
142477
142927
|
avatar?: string | undefined;
|
|
142478
142928
|
};
|
|
142479
142929
|
};
|
|
142480
|
-
|
|
142930
|
+
userId: string;
|
|
142931
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
142932
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142933
|
+
fpId: string;
|
|
142934
|
+
workspaceMembershipId: string;
|
|
142935
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142481
142936
|
}[];
|
|
142482
142937
|
workspaceId: string;
|
|
142938
|
+
accessMode: "Open" | "InviteOnly";
|
|
142483
142939
|
context: {
|
|
142484
142940
|
id: string;
|
|
142485
142941
|
name: string;
|
|
@@ -142550,9 +143006,15 @@ declare class ForgeProjectsEndpoint {
|
|
|
142550
143006
|
avatar?: string | undefined;
|
|
142551
143007
|
};
|
|
142552
143008
|
};
|
|
142553
|
-
|
|
143009
|
+
userId: string;
|
|
143010
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
143011
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143012
|
+
fpId: string;
|
|
143013
|
+
workspaceMembershipId: string;
|
|
143014
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142554
143015
|
}[];
|
|
142555
143016
|
workspaceId: string;
|
|
143017
|
+
accessMode: "Open" | "InviteOnly";
|
|
142556
143018
|
context: {
|
|
142557
143019
|
id: string;
|
|
142558
143020
|
name: string;
|
|
@@ -142771,7 +143233,12 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142771
143233
|
avatar?: string | undefined;
|
|
142772
143234
|
};
|
|
142773
143235
|
};
|
|
142774
|
-
|
|
143236
|
+
userId: string;
|
|
143237
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
143238
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143239
|
+
fpId: string;
|
|
143240
|
+
workspaceMembershipId: string;
|
|
143241
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142775
143242
|
}[];
|
|
142776
143243
|
}>;
|
|
142777
143244
|
create(projectId: string, body: DTOCreateForgeProjectMember): Promise<{
|
|
@@ -142785,7 +143252,12 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142785
143252
|
avatar?: string | undefined;
|
|
142786
143253
|
};
|
|
142787
143254
|
};
|
|
142788
|
-
|
|
143255
|
+
userId: string;
|
|
143256
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
143257
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143258
|
+
fpId: string;
|
|
143259
|
+
workspaceMembershipId: string;
|
|
143260
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142789
143261
|
};
|
|
142790
143262
|
}>;
|
|
142791
143263
|
update(projectId: string, userId: string, body: DTOUpdateForgeProjectMember): Promise<{
|
|
@@ -142799,7 +143271,12 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142799
143271
|
avatar?: string | undefined;
|
|
142800
143272
|
};
|
|
142801
143273
|
};
|
|
142802
|
-
|
|
143274
|
+
userId: string;
|
|
143275
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
143276
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143277
|
+
fpId: string;
|
|
143278
|
+
workspaceMembershipId: string;
|
|
143279
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142803
143280
|
};
|
|
142804
143281
|
}>;
|
|
142805
143282
|
delete(projectId: string, userId: string): Promise<{
|
|
@@ -147683,4 +148160,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
147683
148160
|
reason: ValidationErrorReason | undefined;
|
|
147684
148161
|
};
|
|
147685
148162
|
|
|
147686
|
-
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, 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, 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, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, 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, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, 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 };
|
|
148163
|
+
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, 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, 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, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, 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, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, 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 };
|