@supernova-studio/client 1.10.11 → 1.10.12
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 +518 -78
- package/dist/index.d.ts +518 -78
- package/dist/index.js +16 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -13
- 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>;
|
|
@@ -97599,6 +97834,12 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97599
97834
|
} | undefined;
|
|
97600
97835
|
}>;
|
|
97601
97836
|
members: z.ZodArray<z.ZodObject<{
|
|
97837
|
+
userId: z.ZodString;
|
|
97838
|
+
fpId: z.ZodString;
|
|
97839
|
+
workspaceMembershipId: z.ZodString;
|
|
97840
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97841
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97842
|
+
} & {
|
|
97602
97843
|
user: z.ZodObject<{
|
|
97603
97844
|
id: z.ZodString;
|
|
97604
97845
|
email: z.ZodString;
|
|
@@ -97632,7 +97873,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97632
97873
|
avatar?: string | undefined;
|
|
97633
97874
|
};
|
|
97634
97875
|
}>;
|
|
97635
|
-
|
|
97876
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
97636
97877
|
}, "strip", z.ZodTypeAny, {
|
|
97637
97878
|
user: {
|
|
97638
97879
|
id: string;
|
|
@@ -97643,7 +97884,12 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97643
97884
|
avatar?: string | undefined;
|
|
97644
97885
|
};
|
|
97645
97886
|
};
|
|
97646
|
-
|
|
97887
|
+
userId: string;
|
|
97888
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97889
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97890
|
+
fpId: string;
|
|
97891
|
+
workspaceMembershipId: string;
|
|
97892
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97647
97893
|
}, {
|
|
97648
97894
|
user: {
|
|
97649
97895
|
id: string;
|
|
@@ -97654,7 +97900,12 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97654
97900
|
avatar?: string | undefined;
|
|
97655
97901
|
};
|
|
97656
97902
|
};
|
|
97657
|
-
|
|
97903
|
+
userId: string;
|
|
97904
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97905
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97906
|
+
fpId: string;
|
|
97907
|
+
workspaceMembershipId: string;
|
|
97908
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97658
97909
|
}>, "many">;
|
|
97659
97910
|
}, "strip", z.ZodTypeAny, {
|
|
97660
97911
|
id: string;
|
|
@@ -97675,7 +97926,12 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97675
97926
|
avatar?: string | undefined;
|
|
97676
97927
|
};
|
|
97677
97928
|
};
|
|
97678
|
-
|
|
97929
|
+
userId: string;
|
|
97930
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
97931
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97932
|
+
fpId: string;
|
|
97933
|
+
workspaceMembershipId: string;
|
|
97934
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97679
97935
|
}[];
|
|
97680
97936
|
workspaceId: string;
|
|
97681
97937
|
context: {
|
|
@@ -97744,7 +98000,12 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97744
98000
|
avatar?: string | undefined;
|
|
97745
98001
|
};
|
|
97746
98002
|
};
|
|
97747
|
-
|
|
98003
|
+
userId: string;
|
|
98004
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98005
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98006
|
+
fpId: string;
|
|
98007
|
+
workspaceMembershipId: string;
|
|
98008
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97748
98009
|
}[];
|
|
97749
98010
|
workspaceId: string;
|
|
97750
98011
|
context: {
|
|
@@ -98014,6 +98275,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98014
98275
|
} | undefined;
|
|
98015
98276
|
}>;
|
|
98016
98277
|
members: z.ZodArray<z.ZodObject<{
|
|
98278
|
+
userId: z.ZodString;
|
|
98279
|
+
fpId: z.ZodString;
|
|
98280
|
+
workspaceMembershipId: z.ZodString;
|
|
98281
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98282
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98283
|
+
} & {
|
|
98017
98284
|
user: z.ZodObject<{
|
|
98018
98285
|
id: z.ZodString;
|
|
98019
98286
|
email: z.ZodString;
|
|
@@ -98047,7 +98314,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98047
98314
|
avatar?: string | undefined;
|
|
98048
98315
|
};
|
|
98049
98316
|
}>;
|
|
98050
|
-
|
|
98317
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98051
98318
|
}, "strip", z.ZodTypeAny, {
|
|
98052
98319
|
user: {
|
|
98053
98320
|
id: string;
|
|
@@ -98058,7 +98325,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98058
98325
|
avatar?: string | undefined;
|
|
98059
98326
|
};
|
|
98060
98327
|
};
|
|
98061
|
-
|
|
98328
|
+
userId: string;
|
|
98329
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98330
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98331
|
+
fpId: string;
|
|
98332
|
+
workspaceMembershipId: string;
|
|
98333
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98062
98334
|
}, {
|
|
98063
98335
|
user: {
|
|
98064
98336
|
id: string;
|
|
@@ -98069,7 +98341,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98069
98341
|
avatar?: string | undefined;
|
|
98070
98342
|
};
|
|
98071
98343
|
};
|
|
98072
|
-
|
|
98344
|
+
userId: string;
|
|
98345
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98346
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98347
|
+
fpId: string;
|
|
98348
|
+
workspaceMembershipId: string;
|
|
98349
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98073
98350
|
}>, "many">;
|
|
98074
98351
|
}, "strip", z.ZodTypeAny, {
|
|
98075
98352
|
id: string;
|
|
@@ -98090,7 +98367,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98090
98367
|
avatar?: string | undefined;
|
|
98091
98368
|
};
|
|
98092
98369
|
};
|
|
98093
|
-
|
|
98370
|
+
userId: string;
|
|
98371
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98372
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98373
|
+
fpId: string;
|
|
98374
|
+
workspaceMembershipId: string;
|
|
98375
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98094
98376
|
}[];
|
|
98095
98377
|
workspaceId: string;
|
|
98096
98378
|
context: {
|
|
@@ -98159,7 +98441,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98159
98441
|
avatar?: string | undefined;
|
|
98160
98442
|
};
|
|
98161
98443
|
};
|
|
98162
|
-
|
|
98444
|
+
userId: string;
|
|
98445
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98446
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98447
|
+
fpId: string;
|
|
98448
|
+
workspaceMembershipId: string;
|
|
98449
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98163
98450
|
}[];
|
|
98164
98451
|
workspaceId: string;
|
|
98165
98452
|
context: {
|
|
@@ -98232,7 +98519,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98232
98519
|
avatar?: string | undefined;
|
|
98233
98520
|
};
|
|
98234
98521
|
};
|
|
98235
|
-
|
|
98522
|
+
userId: string;
|
|
98523
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98524
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98525
|
+
fpId: string;
|
|
98526
|
+
workspaceMembershipId: string;
|
|
98527
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98236
98528
|
}[];
|
|
98237
98529
|
workspaceId: string;
|
|
98238
98530
|
context: {
|
|
@@ -98303,7 +98595,12 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98303
98595
|
avatar?: string | undefined;
|
|
98304
98596
|
};
|
|
98305
98597
|
};
|
|
98306
|
-
|
|
98598
|
+
userId: string;
|
|
98599
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98600
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98601
|
+
fpId: string;
|
|
98602
|
+
workspaceMembershipId: string;
|
|
98603
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98307
98604
|
}[];
|
|
98308
98605
|
workspaceId: string;
|
|
98309
98606
|
context: {
|
|
@@ -98574,6 +98871,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98574
98871
|
} | undefined;
|
|
98575
98872
|
}>;
|
|
98576
98873
|
members: z.ZodArray<z.ZodObject<{
|
|
98874
|
+
userId: z.ZodString;
|
|
98875
|
+
fpId: z.ZodString;
|
|
98876
|
+
workspaceMembershipId: z.ZodString;
|
|
98877
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98878
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98879
|
+
} & {
|
|
98577
98880
|
user: z.ZodObject<{
|
|
98578
98881
|
id: z.ZodString;
|
|
98579
98882
|
email: z.ZodString;
|
|
@@ -98607,7 +98910,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98607
98910
|
avatar?: string | undefined;
|
|
98608
98911
|
};
|
|
98609
98912
|
}>;
|
|
98610
|
-
|
|
98913
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
98611
98914
|
}, "strip", z.ZodTypeAny, {
|
|
98612
98915
|
user: {
|
|
98613
98916
|
id: string;
|
|
@@ -98618,7 +98921,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98618
98921
|
avatar?: string | undefined;
|
|
98619
98922
|
};
|
|
98620
98923
|
};
|
|
98621
|
-
|
|
98924
|
+
userId: string;
|
|
98925
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98926
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98927
|
+
fpId: string;
|
|
98928
|
+
workspaceMembershipId: string;
|
|
98929
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98622
98930
|
}, {
|
|
98623
98931
|
user: {
|
|
98624
98932
|
id: string;
|
|
@@ -98629,7 +98937,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98629
98937
|
avatar?: string | undefined;
|
|
98630
98938
|
};
|
|
98631
98939
|
};
|
|
98632
|
-
|
|
98940
|
+
userId: string;
|
|
98941
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98942
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98943
|
+
fpId: string;
|
|
98944
|
+
workspaceMembershipId: string;
|
|
98945
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98633
98946
|
}>, "many">;
|
|
98634
98947
|
}, "strip", z.ZodTypeAny, {
|
|
98635
98948
|
id: string;
|
|
@@ -98650,7 +98963,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98650
98963
|
avatar?: string | undefined;
|
|
98651
98964
|
};
|
|
98652
98965
|
};
|
|
98653
|
-
|
|
98966
|
+
userId: string;
|
|
98967
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
98968
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98969
|
+
fpId: string;
|
|
98970
|
+
workspaceMembershipId: string;
|
|
98971
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98654
98972
|
}[];
|
|
98655
98973
|
workspaceId: string;
|
|
98656
98974
|
context: {
|
|
@@ -98719,7 +99037,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98719
99037
|
avatar?: string | undefined;
|
|
98720
99038
|
};
|
|
98721
99039
|
};
|
|
98722
|
-
|
|
99040
|
+
userId: string;
|
|
99041
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99042
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99043
|
+
fpId: string;
|
|
99044
|
+
workspaceMembershipId: string;
|
|
99045
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98723
99046
|
}[];
|
|
98724
99047
|
workspaceId: string;
|
|
98725
99048
|
context: {
|
|
@@ -98792,7 +99115,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98792
99115
|
avatar?: string | undefined;
|
|
98793
99116
|
};
|
|
98794
99117
|
};
|
|
98795
|
-
|
|
99118
|
+
userId: string;
|
|
99119
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99120
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99121
|
+
fpId: string;
|
|
99122
|
+
workspaceMembershipId: string;
|
|
99123
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98796
99124
|
}[];
|
|
98797
99125
|
workspaceId: string;
|
|
98798
99126
|
context: {
|
|
@@ -98863,7 +99191,12 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98863
99191
|
avatar?: string | undefined;
|
|
98864
99192
|
};
|
|
98865
99193
|
};
|
|
98866
|
-
|
|
99194
|
+
userId: string;
|
|
99195
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99196
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99197
|
+
fpId: string;
|
|
99198
|
+
workspaceMembershipId: string;
|
|
99199
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98867
99200
|
}[];
|
|
98868
99201
|
workspaceId: string;
|
|
98869
99202
|
context: {
|
|
@@ -99134,6 +99467,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99134
99467
|
} | undefined;
|
|
99135
99468
|
}>;
|
|
99136
99469
|
members: z.ZodArray<z.ZodObject<{
|
|
99470
|
+
userId: z.ZodString;
|
|
99471
|
+
fpId: z.ZodString;
|
|
99472
|
+
workspaceMembershipId: z.ZodString;
|
|
99473
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
99474
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99475
|
+
} & {
|
|
99137
99476
|
user: z.ZodObject<{
|
|
99138
99477
|
id: z.ZodString;
|
|
99139
99478
|
email: z.ZodString;
|
|
@@ -99167,7 +99506,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99167
99506
|
avatar?: string | undefined;
|
|
99168
99507
|
};
|
|
99169
99508
|
}>;
|
|
99170
|
-
|
|
99509
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99171
99510
|
}, "strip", z.ZodTypeAny, {
|
|
99172
99511
|
user: {
|
|
99173
99512
|
id: string;
|
|
@@ -99178,7 +99517,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99178
99517
|
avatar?: string | undefined;
|
|
99179
99518
|
};
|
|
99180
99519
|
};
|
|
99181
|
-
|
|
99520
|
+
userId: string;
|
|
99521
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99522
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99523
|
+
fpId: string;
|
|
99524
|
+
workspaceMembershipId: string;
|
|
99525
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99182
99526
|
}, {
|
|
99183
99527
|
user: {
|
|
99184
99528
|
id: string;
|
|
@@ -99189,7 +99533,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99189
99533
|
avatar?: string | undefined;
|
|
99190
99534
|
};
|
|
99191
99535
|
};
|
|
99192
|
-
|
|
99536
|
+
userId: string;
|
|
99537
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99538
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99539
|
+
fpId: string;
|
|
99540
|
+
workspaceMembershipId: string;
|
|
99541
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99193
99542
|
}>, "many">;
|
|
99194
99543
|
}, "strip", z.ZodTypeAny, {
|
|
99195
99544
|
id: string;
|
|
@@ -99210,7 +99559,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99210
99559
|
avatar?: string | undefined;
|
|
99211
99560
|
};
|
|
99212
99561
|
};
|
|
99213
|
-
|
|
99562
|
+
userId: string;
|
|
99563
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99564
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99565
|
+
fpId: string;
|
|
99566
|
+
workspaceMembershipId: string;
|
|
99567
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99214
99568
|
}[];
|
|
99215
99569
|
workspaceId: string;
|
|
99216
99570
|
context: {
|
|
@@ -99279,7 +99633,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99279
99633
|
avatar?: string | undefined;
|
|
99280
99634
|
};
|
|
99281
99635
|
};
|
|
99282
|
-
|
|
99636
|
+
userId: string;
|
|
99637
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99638
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99639
|
+
fpId: string;
|
|
99640
|
+
workspaceMembershipId: string;
|
|
99641
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99283
99642
|
}[];
|
|
99284
99643
|
workspaceId: string;
|
|
99285
99644
|
context: {
|
|
@@ -99352,7 +99711,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99352
99711
|
avatar?: string | undefined;
|
|
99353
99712
|
};
|
|
99354
99713
|
};
|
|
99355
|
-
|
|
99714
|
+
userId: string;
|
|
99715
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99716
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99717
|
+
fpId: string;
|
|
99718
|
+
workspaceMembershipId: string;
|
|
99719
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99356
99720
|
}[];
|
|
99357
99721
|
workspaceId: string;
|
|
99358
99722
|
context: {
|
|
@@ -99423,7 +99787,12 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99423
99787
|
avatar?: string | undefined;
|
|
99424
99788
|
};
|
|
99425
99789
|
};
|
|
99426
|
-
|
|
99790
|
+
userId: string;
|
|
99791
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
99792
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99793
|
+
fpId: string;
|
|
99794
|
+
workspaceMembershipId: string;
|
|
99795
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99427
99796
|
}[];
|
|
99428
99797
|
workspaceId: string;
|
|
99429
99798
|
context: {
|
|
@@ -99694,6 +100063,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99694
100063
|
} | undefined;
|
|
99695
100064
|
}>;
|
|
99696
100065
|
members: z.ZodArray<z.ZodObject<{
|
|
100066
|
+
userId: z.ZodString;
|
|
100067
|
+
fpId: z.ZodString;
|
|
100068
|
+
workspaceMembershipId: z.ZodString;
|
|
100069
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
100070
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
100071
|
+
} & {
|
|
99697
100072
|
user: z.ZodObject<{
|
|
99698
100073
|
id: z.ZodString;
|
|
99699
100074
|
email: z.ZodString;
|
|
@@ -99727,7 +100102,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99727
100102
|
avatar?: string | undefined;
|
|
99728
100103
|
};
|
|
99729
100104
|
}>;
|
|
99730
|
-
|
|
100105
|
+
effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
99731
100106
|
}, "strip", z.ZodTypeAny, {
|
|
99732
100107
|
user: {
|
|
99733
100108
|
id: string;
|
|
@@ -99738,7 +100113,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99738
100113
|
avatar?: string | undefined;
|
|
99739
100114
|
};
|
|
99740
100115
|
};
|
|
99741
|
-
|
|
100116
|
+
userId: string;
|
|
100117
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100118
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100119
|
+
fpId: string;
|
|
100120
|
+
workspaceMembershipId: string;
|
|
100121
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99742
100122
|
}, {
|
|
99743
100123
|
user: {
|
|
99744
100124
|
id: string;
|
|
@@ -99749,7 +100129,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99749
100129
|
avatar?: string | undefined;
|
|
99750
100130
|
};
|
|
99751
100131
|
};
|
|
99752
|
-
|
|
100132
|
+
userId: string;
|
|
100133
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100134
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100135
|
+
fpId: string;
|
|
100136
|
+
workspaceMembershipId: string;
|
|
100137
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99753
100138
|
}>, "many">;
|
|
99754
100139
|
}, "strip", z.ZodTypeAny, {
|
|
99755
100140
|
id: string;
|
|
@@ -99770,7 +100155,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99770
100155
|
avatar?: string | undefined;
|
|
99771
100156
|
};
|
|
99772
100157
|
};
|
|
99773
|
-
|
|
100158
|
+
userId: string;
|
|
100159
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100160
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100161
|
+
fpId: string;
|
|
100162
|
+
workspaceMembershipId: string;
|
|
100163
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99774
100164
|
}[];
|
|
99775
100165
|
workspaceId: string;
|
|
99776
100166
|
context: {
|
|
@@ -99839,7 +100229,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99839
100229
|
avatar?: string | undefined;
|
|
99840
100230
|
};
|
|
99841
100231
|
};
|
|
99842
|
-
|
|
100232
|
+
userId: string;
|
|
100233
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100234
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100235
|
+
fpId: string;
|
|
100236
|
+
workspaceMembershipId: string;
|
|
100237
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99843
100238
|
}[];
|
|
99844
100239
|
workspaceId: string;
|
|
99845
100240
|
context: {
|
|
@@ -99912,7 +100307,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99912
100307
|
avatar?: string | undefined;
|
|
99913
100308
|
};
|
|
99914
100309
|
};
|
|
99915
|
-
|
|
100310
|
+
userId: string;
|
|
100311
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100312
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100313
|
+
fpId: string;
|
|
100314
|
+
workspaceMembershipId: string;
|
|
100315
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99916
100316
|
}[];
|
|
99917
100317
|
workspaceId: string;
|
|
99918
100318
|
context: {
|
|
@@ -99983,7 +100383,12 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
99983
100383
|
avatar?: string | undefined;
|
|
99984
100384
|
};
|
|
99985
100385
|
};
|
|
99986
|
-
|
|
100386
|
+
userId: string;
|
|
100387
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
100388
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100389
|
+
fpId: string;
|
|
100390
|
+
workspaceMembershipId: string;
|
|
100391
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99987
100392
|
}[];
|
|
99988
100393
|
workspaceId: string;
|
|
99989
100394
|
context: {
|
|
@@ -142331,7 +142736,12 @@ declare class ForgeProjectsEndpoint {
|
|
|
142331
142736
|
avatar?: string | undefined;
|
|
142332
142737
|
};
|
|
142333
142738
|
};
|
|
142334
|
-
|
|
142739
|
+
userId: string;
|
|
142740
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
142741
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142742
|
+
fpId: string;
|
|
142743
|
+
workspaceMembershipId: string;
|
|
142744
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142335
142745
|
}[];
|
|
142336
142746
|
workspaceId: string;
|
|
142337
142747
|
context: {
|
|
@@ -142404,7 +142814,12 @@ declare class ForgeProjectsEndpoint {
|
|
|
142404
142814
|
avatar?: string | undefined;
|
|
142405
142815
|
};
|
|
142406
142816
|
};
|
|
142407
|
-
|
|
142817
|
+
userId: string;
|
|
142818
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
142819
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142820
|
+
fpId: string;
|
|
142821
|
+
workspaceMembershipId: string;
|
|
142822
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142408
142823
|
}[];
|
|
142409
142824
|
workspaceId: string;
|
|
142410
142825
|
context: {
|
|
@@ -142477,7 +142892,12 @@ declare class ForgeProjectsEndpoint {
|
|
|
142477
142892
|
avatar?: string | undefined;
|
|
142478
142893
|
};
|
|
142479
142894
|
};
|
|
142480
|
-
|
|
142895
|
+
userId: string;
|
|
142896
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
142897
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142898
|
+
fpId: string;
|
|
142899
|
+
workspaceMembershipId: string;
|
|
142900
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142481
142901
|
}[];
|
|
142482
142902
|
workspaceId: string;
|
|
142483
142903
|
context: {
|
|
@@ -142550,7 +142970,12 @@ declare class ForgeProjectsEndpoint {
|
|
|
142550
142970
|
avatar?: string | undefined;
|
|
142551
142971
|
};
|
|
142552
142972
|
};
|
|
142553
|
-
|
|
142973
|
+
userId: string;
|
|
142974
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
142975
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142976
|
+
fpId: string;
|
|
142977
|
+
workspaceMembershipId: string;
|
|
142978
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142554
142979
|
}[];
|
|
142555
142980
|
workspaceId: string;
|
|
142556
142981
|
context: {
|
|
@@ -142771,7 +143196,12 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142771
143196
|
avatar?: string | undefined;
|
|
142772
143197
|
};
|
|
142773
143198
|
};
|
|
142774
|
-
|
|
143199
|
+
userId: string;
|
|
143200
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
143201
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143202
|
+
fpId: string;
|
|
143203
|
+
workspaceMembershipId: string;
|
|
143204
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142775
143205
|
}[];
|
|
142776
143206
|
}>;
|
|
142777
143207
|
create(projectId: string, body: DTOCreateForgeProjectMember): Promise<{
|
|
@@ -142785,7 +143215,12 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142785
143215
|
avatar?: string | undefined;
|
|
142786
143216
|
};
|
|
142787
143217
|
};
|
|
142788
|
-
|
|
143218
|
+
userId: string;
|
|
143219
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
143220
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143221
|
+
fpId: string;
|
|
143222
|
+
workspaceMembershipId: string;
|
|
143223
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142789
143224
|
};
|
|
142790
143225
|
}>;
|
|
142791
143226
|
update(projectId: string, userId: string, body: DTOUpdateForgeProjectMember): Promise<{
|
|
@@ -142799,7 +143234,12 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
142799
143234
|
avatar?: string | undefined;
|
|
142800
143235
|
};
|
|
142801
143236
|
};
|
|
142802
|
-
|
|
143237
|
+
userId: string;
|
|
143238
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
143239
|
+
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143240
|
+
fpId: string;
|
|
143241
|
+
workspaceMembershipId: string;
|
|
143242
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142803
143243
|
};
|
|
142804
143244
|
}>;
|
|
142805
143245
|
delete(projectId: string, userId: string): Promise<{
|
|
@@ -147683,4 +148123,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
147683
148123
|
reason: ValidationErrorReason | undefined;
|
|
147684
148124
|
};
|
|
147685
148125
|
|
|
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 };
|
|
148126
|
+
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 };
|