@supernova-studio/client 1.10.24 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +292 -6
- package/dist/index.d.ts +292 -6
- package/dist/index.js +65 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +273 -210
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -78197,6 +78197,173 @@ declare const DTODeleteForgeParticipantResponse: z$1.ZodObject<{
|
|
|
78197
78197
|
}>;
|
|
78198
78198
|
type DTODeleteForgeParticipantResponse = z$1.infer<typeof DTODeleteForgeParticipantResponse>;
|
|
78199
78199
|
|
|
78200
|
+
declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
78201
|
+
type: z__default.ZodLiteral<"FeatureCreate">;
|
|
78202
|
+
input: z__default.ZodObject<{
|
|
78203
|
+
id: z__default.ZodString;
|
|
78204
|
+
name: z__default.ZodString;
|
|
78205
|
+
description: z__default.ZodString;
|
|
78206
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78207
|
+
id: string;
|
|
78208
|
+
name: string;
|
|
78209
|
+
description: string;
|
|
78210
|
+
}, {
|
|
78211
|
+
id: string;
|
|
78212
|
+
name: string;
|
|
78213
|
+
description: string;
|
|
78214
|
+
}>;
|
|
78215
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78216
|
+
type: "FeatureCreate";
|
|
78217
|
+
input: {
|
|
78218
|
+
id: string;
|
|
78219
|
+
name: string;
|
|
78220
|
+
description: string;
|
|
78221
|
+
};
|
|
78222
|
+
}, {
|
|
78223
|
+
type: "FeatureCreate";
|
|
78224
|
+
input: {
|
|
78225
|
+
id: string;
|
|
78226
|
+
name: string;
|
|
78227
|
+
description: string;
|
|
78228
|
+
};
|
|
78229
|
+
}>;
|
|
78230
|
+
type DTOForgeProjectActionFeatureCreate = z__default.infer<typeof DTOForgeProjectActionFeatureCreate>;
|
|
78231
|
+
declare const DTOForgeProjectActionFeatureUpdate: z__default.ZodObject<{
|
|
78232
|
+
type: z__default.ZodLiteral<"FeatureUpdate">;
|
|
78233
|
+
input: z__default.ZodObject<{
|
|
78234
|
+
id: z__default.ZodString;
|
|
78235
|
+
name: z__default.ZodString;
|
|
78236
|
+
description: z__default.ZodString;
|
|
78237
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78238
|
+
id: string;
|
|
78239
|
+
name: string;
|
|
78240
|
+
description: string;
|
|
78241
|
+
}, {
|
|
78242
|
+
id: string;
|
|
78243
|
+
name: string;
|
|
78244
|
+
description: string;
|
|
78245
|
+
}>;
|
|
78246
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78247
|
+
type: "FeatureUpdate";
|
|
78248
|
+
input: {
|
|
78249
|
+
id: string;
|
|
78250
|
+
name: string;
|
|
78251
|
+
description: string;
|
|
78252
|
+
};
|
|
78253
|
+
}, {
|
|
78254
|
+
type: "FeatureUpdate";
|
|
78255
|
+
input: {
|
|
78256
|
+
id: string;
|
|
78257
|
+
name: string;
|
|
78258
|
+
description: string;
|
|
78259
|
+
};
|
|
78260
|
+
}>;
|
|
78261
|
+
type DTOForgeProjectActionFeatureUpdate = z__default.infer<typeof DTOForgeProjectActionFeatureUpdate>;
|
|
78262
|
+
declare const DTOForgeProjectActionFeatureDelete: z__default.ZodObject<{
|
|
78263
|
+
type: z__default.ZodLiteral<"FeatureDelete">;
|
|
78264
|
+
input: z__default.ZodObject<{
|
|
78265
|
+
id: z__default.ZodString;
|
|
78266
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78267
|
+
id: string;
|
|
78268
|
+
}, {
|
|
78269
|
+
id: string;
|
|
78270
|
+
}>;
|
|
78271
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78272
|
+
type: "FeatureDelete";
|
|
78273
|
+
input: {
|
|
78274
|
+
id: string;
|
|
78275
|
+
};
|
|
78276
|
+
}, {
|
|
78277
|
+
type: "FeatureDelete";
|
|
78278
|
+
input: {
|
|
78279
|
+
id: string;
|
|
78280
|
+
};
|
|
78281
|
+
}>;
|
|
78282
|
+
type DTOForgeProjectActionFeatureDelete = z__default.infer<typeof DTOForgeProjectActionFeatureDelete>;
|
|
78283
|
+
declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
78284
|
+
type: z__default.ZodLiteral<"FeatureCreate">;
|
|
78285
|
+
input: z__default.ZodObject<{
|
|
78286
|
+
id: z__default.ZodString;
|
|
78287
|
+
name: z__default.ZodString;
|
|
78288
|
+
description: z__default.ZodString;
|
|
78289
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78290
|
+
id: string;
|
|
78291
|
+
name: string;
|
|
78292
|
+
description: string;
|
|
78293
|
+
}, {
|
|
78294
|
+
id: string;
|
|
78295
|
+
name: string;
|
|
78296
|
+
description: string;
|
|
78297
|
+
}>;
|
|
78298
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78299
|
+
type: "FeatureCreate";
|
|
78300
|
+
input: {
|
|
78301
|
+
id: string;
|
|
78302
|
+
name: string;
|
|
78303
|
+
description: string;
|
|
78304
|
+
};
|
|
78305
|
+
}, {
|
|
78306
|
+
type: "FeatureCreate";
|
|
78307
|
+
input: {
|
|
78308
|
+
id: string;
|
|
78309
|
+
name: string;
|
|
78310
|
+
description: string;
|
|
78311
|
+
};
|
|
78312
|
+
}>, z__default.ZodObject<{
|
|
78313
|
+
type: z__default.ZodLiteral<"FeatureUpdate">;
|
|
78314
|
+
input: z__default.ZodObject<{
|
|
78315
|
+
id: z__default.ZodString;
|
|
78316
|
+
name: z__default.ZodString;
|
|
78317
|
+
description: z__default.ZodString;
|
|
78318
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78319
|
+
id: string;
|
|
78320
|
+
name: string;
|
|
78321
|
+
description: string;
|
|
78322
|
+
}, {
|
|
78323
|
+
id: string;
|
|
78324
|
+
name: string;
|
|
78325
|
+
description: string;
|
|
78326
|
+
}>;
|
|
78327
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78328
|
+
type: "FeatureUpdate";
|
|
78329
|
+
input: {
|
|
78330
|
+
id: string;
|
|
78331
|
+
name: string;
|
|
78332
|
+
description: string;
|
|
78333
|
+
};
|
|
78334
|
+
}, {
|
|
78335
|
+
type: "FeatureUpdate";
|
|
78336
|
+
input: {
|
|
78337
|
+
id: string;
|
|
78338
|
+
name: string;
|
|
78339
|
+
description: string;
|
|
78340
|
+
};
|
|
78341
|
+
}>, z__default.ZodObject<{
|
|
78342
|
+
type: z__default.ZodLiteral<"FeatureDelete">;
|
|
78343
|
+
input: z__default.ZodObject<{
|
|
78344
|
+
id: z__default.ZodString;
|
|
78345
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78346
|
+
id: string;
|
|
78347
|
+
}, {
|
|
78348
|
+
id: string;
|
|
78349
|
+
}>;
|
|
78350
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78351
|
+
type: "FeatureDelete";
|
|
78352
|
+
input: {
|
|
78353
|
+
id: string;
|
|
78354
|
+
};
|
|
78355
|
+
}, {
|
|
78356
|
+
type: "FeatureDelete";
|
|
78357
|
+
input: {
|
|
78358
|
+
id: string;
|
|
78359
|
+
};
|
|
78360
|
+
}>]>;
|
|
78361
|
+
type DTOForgeProjectAction = z__default.infer<typeof DTOForgeProjectAction>;
|
|
78362
|
+
type DTOForgeProjectActionType = DTOForgeProjectAction["type"];
|
|
78363
|
+
type DTOForgeProjectActionOfType<T extends DTOForgeProjectActionType> = Extract<DTOForgeProjectAction, {
|
|
78364
|
+
type: T;
|
|
78365
|
+
}>;
|
|
78366
|
+
|
|
78200
78367
|
declare const DTOForgeProjectArtifactRoom: z$1.ZodObject<{
|
|
78201
78368
|
id: z$1.ZodString;
|
|
78202
78369
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -80315,6 +80482,96 @@ declare const DTOForgeProjectContextRemoveResponse: z$1.ZodObject<{
|
|
|
80315
80482
|
}>;
|
|
80316
80483
|
type DTOForgeProjectContextRemoveResponse = z$1.infer<typeof DTOForgeProjectContextRemoveResponse>;
|
|
80317
80484
|
|
|
80485
|
+
declare const DTOForgeProjectFeature: z__default.ZodObject<{
|
|
80486
|
+
id: z__default.ZodString;
|
|
80487
|
+
name: z__default.ZodString;
|
|
80488
|
+
description: z__default.ZodString;
|
|
80489
|
+
isArchived: z__default.ZodBoolean;
|
|
80490
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80491
|
+
id: string;
|
|
80492
|
+
name: string;
|
|
80493
|
+
description: string;
|
|
80494
|
+
isArchived: boolean;
|
|
80495
|
+
}, {
|
|
80496
|
+
id: string;
|
|
80497
|
+
name: string;
|
|
80498
|
+
description: string;
|
|
80499
|
+
isArchived: boolean;
|
|
80500
|
+
}>;
|
|
80501
|
+
type DTOForgeProjectFeature = z__default.infer<typeof DTOForgeProjectFeature>;
|
|
80502
|
+
declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
80503
|
+
features: z__default.ZodArray<z__default.ZodObject<{
|
|
80504
|
+
id: z__default.ZodString;
|
|
80505
|
+
name: z__default.ZodString;
|
|
80506
|
+
description: z__default.ZodString;
|
|
80507
|
+
isArchived: z__default.ZodBoolean;
|
|
80508
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80509
|
+
id: string;
|
|
80510
|
+
name: string;
|
|
80511
|
+
description: string;
|
|
80512
|
+
isArchived: boolean;
|
|
80513
|
+
}, {
|
|
80514
|
+
id: string;
|
|
80515
|
+
name: string;
|
|
80516
|
+
description: string;
|
|
80517
|
+
isArchived: boolean;
|
|
80518
|
+
}>, "many">;
|
|
80519
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80520
|
+
features: {
|
|
80521
|
+
id: string;
|
|
80522
|
+
name: string;
|
|
80523
|
+
description: string;
|
|
80524
|
+
isArchived: boolean;
|
|
80525
|
+
}[];
|
|
80526
|
+
}, {
|
|
80527
|
+
features: {
|
|
80528
|
+
id: string;
|
|
80529
|
+
name: string;
|
|
80530
|
+
description: string;
|
|
80531
|
+
isArchived: boolean;
|
|
80532
|
+
}[];
|
|
80533
|
+
}>;
|
|
80534
|
+
type DTOForgeProjectFeatureListResponse = z__default.infer<typeof DTOForgeProjectFeatureListResponse>;
|
|
80535
|
+
declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
80536
|
+
id: z__default.ZodString;
|
|
80537
|
+
name: z__default.ZodString;
|
|
80538
|
+
description: z__default.ZodString;
|
|
80539
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80540
|
+
id: string;
|
|
80541
|
+
name: string;
|
|
80542
|
+
description: string;
|
|
80543
|
+
}, {
|
|
80544
|
+
id: string;
|
|
80545
|
+
name: string;
|
|
80546
|
+
description: string;
|
|
80547
|
+
}>;
|
|
80548
|
+
type DTOForgeProjectFeatureCreateInput = z__default.infer<typeof DTOForgeProjectFeatureCreateInput>;
|
|
80549
|
+
declare const DTOForgeProjectFeatureUpdateInput: z__default.ZodObject<{
|
|
80550
|
+
id: z__default.ZodString;
|
|
80551
|
+
name: z__default.ZodOptional<z__default.ZodString>;
|
|
80552
|
+
description: z__default.ZodOptional<z__default.ZodString>;
|
|
80553
|
+
isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
80554
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80555
|
+
id: string;
|
|
80556
|
+
name?: string | undefined;
|
|
80557
|
+
description?: string | undefined;
|
|
80558
|
+
isArchived?: boolean | undefined;
|
|
80559
|
+
}, {
|
|
80560
|
+
id: string;
|
|
80561
|
+
name?: string | undefined;
|
|
80562
|
+
description?: string | undefined;
|
|
80563
|
+
isArchived?: boolean | undefined;
|
|
80564
|
+
}>;
|
|
80565
|
+
type DTOForgeProjectFeatureUpdateInput = z__default.infer<typeof DTOForgeProjectFeatureUpdateInput>;
|
|
80566
|
+
declare const DTOForgeProjectFeatureDeleteInput: z__default.ZodObject<{
|
|
80567
|
+
id: z__default.ZodString;
|
|
80568
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
80569
|
+
id: string;
|
|
80570
|
+
}, {
|
|
80571
|
+
id: string;
|
|
80572
|
+
}>;
|
|
80573
|
+
type DTOForgeProjectFeatureDeleteInput = z__default.infer<typeof DTOForgeProjectFeatureDeleteInput>;
|
|
80574
|
+
|
|
80318
80575
|
declare const DTOForgeProjectInvitation: z$1.ZodObject<{
|
|
80319
80576
|
email: z$1.ZodString;
|
|
80320
80577
|
forgeProjectId: z$1.ZodString;
|
|
@@ -98655,7 +98912,7 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
|
|
|
98655
98912
|
workspaceId: z$1.ZodString;
|
|
98656
98913
|
accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
|
|
98657
98914
|
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
98658
|
-
}, "name" | "meta" | "tags" | "accessMode" | "
|
|
98915
|
+
}, "name" | "meta" | "tags" | "accessMode" | "isArchived" | "fpContextId" | "instruction">, "strip", z$1.ZodTypeAny, {
|
|
98659
98916
|
name: string;
|
|
98660
98917
|
meta: {
|
|
98661
98918
|
name: string;
|
|
@@ -98693,9 +98950,9 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
|
|
|
98693
98950
|
}>>;
|
|
98694
98951
|
tags: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>>;
|
|
98695
98952
|
accessMode: z$1.ZodOptional<z$1.ZodEnum<["InviteOnly", "Open"]>>;
|
|
98953
|
+
isArchived: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodBoolean>>;
|
|
98696
98954
|
fpContextId: z$1.ZodOptional<z$1.ZodString>;
|
|
98697
98955
|
instruction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
98698
|
-
isArchived: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodBoolean>>;
|
|
98699
98956
|
} & {
|
|
98700
98957
|
id: z$1.ZodString;
|
|
98701
98958
|
membersToRetain: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -98708,9 +98965,9 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
|
|
|
98708
98965
|
} | undefined;
|
|
98709
98966
|
tags?: string[] | undefined;
|
|
98710
98967
|
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
98968
|
+
isArchived?: boolean | undefined;
|
|
98711
98969
|
fpContextId?: string | undefined;
|
|
98712
98970
|
instruction?: string | null | undefined;
|
|
98713
|
-
isArchived?: boolean | undefined;
|
|
98714
98971
|
membersToRetain?: string[] | undefined;
|
|
98715
98972
|
}, {
|
|
98716
98973
|
id: string;
|
|
@@ -98721,9 +98978,9 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
|
|
|
98721
98978
|
} | undefined;
|
|
98722
98979
|
tags?: string[] | undefined;
|
|
98723
98980
|
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
98981
|
+
isArchived?: boolean | undefined;
|
|
98724
98982
|
fpContextId?: string | undefined;
|
|
98725
98983
|
instruction?: string | null | undefined;
|
|
98726
|
-
isArchived?: boolean | undefined;
|
|
98727
98984
|
membersToRetain?: string[] | undefined;
|
|
98728
98985
|
}>;
|
|
98729
98986
|
type DTOUpdateForgeProject = z$1.infer<typeof DTOUpdateForgeProject>;
|
|
@@ -99480,6 +99737,17 @@ declare const DTOForgeChatMessageScoreInput: z$1.ZodObject<{
|
|
|
99480
99737
|
categoryName?: string | undefined;
|
|
99481
99738
|
}>;
|
|
99482
99739
|
type DTOForgeChatMessageScoreInput = z$1.infer<typeof DTOForgeChatMessageScoreInput>;
|
|
99740
|
+
declare const DTOForgeChatMessageTagInput: z$1.ZodObject<{
|
|
99741
|
+
messageId: z$1.ZodString;
|
|
99742
|
+
tags: z$1.ZodArray<z$1.ZodString, "many">;
|
|
99743
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99744
|
+
tags: string[];
|
|
99745
|
+
messageId: string;
|
|
99746
|
+
}, {
|
|
99747
|
+
tags: string[];
|
|
99748
|
+
messageId: string;
|
|
99749
|
+
}>;
|
|
99750
|
+
type DTOForgeChatMessageTagInput = z$1.infer<typeof DTOForgeChatMessageTagInput>;
|
|
99483
99751
|
declare const DTOForgeChatMessageScoreRequest: z$1.ZodObject<{
|
|
99484
99752
|
scores: z$1.ZodArray<z$1.ZodObject<{
|
|
99485
99753
|
messageId: z$1.ZodString;
|
|
@@ -99500,7 +99768,21 @@ declare const DTOForgeChatMessageScoreRequest: z$1.ZodObject<{
|
|
|
99500
99768
|
reason?: string | undefined;
|
|
99501
99769
|
categoryName?: string | undefined;
|
|
99502
99770
|
}>, "many">;
|
|
99771
|
+
tags: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
99772
|
+
messageId: z$1.ZodString;
|
|
99773
|
+
tags: z$1.ZodArray<z$1.ZodString, "many">;
|
|
99774
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99775
|
+
tags: string[];
|
|
99776
|
+
messageId: string;
|
|
99777
|
+
}, {
|
|
99778
|
+
tags: string[];
|
|
99779
|
+
messageId: string;
|
|
99780
|
+
}>, "many">>>;
|
|
99503
99781
|
}, "strip", z$1.ZodTypeAny, {
|
|
99782
|
+
tags: {
|
|
99783
|
+
tags: string[];
|
|
99784
|
+
messageId: string;
|
|
99785
|
+
}[];
|
|
99504
99786
|
scores: {
|
|
99505
99787
|
name: string;
|
|
99506
99788
|
value: number;
|
|
@@ -99516,6 +99798,10 @@ declare const DTOForgeChatMessageScoreRequest: z$1.ZodObject<{
|
|
|
99516
99798
|
reason?: string | undefined;
|
|
99517
99799
|
categoryName?: string | undefined;
|
|
99518
99800
|
}[];
|
|
99801
|
+
tags?: {
|
|
99802
|
+
tags: string[];
|
|
99803
|
+
messageId: string;
|
|
99804
|
+
}[] | undefined;
|
|
99519
99805
|
}>;
|
|
99520
99806
|
type DTOForgeChatMessageScoreRequest = z$1.infer<typeof DTOForgeChatMessageScoreRequest>;
|
|
99521
99807
|
|
|
@@ -138668,7 +138954,7 @@ declare class ChatThreadMessagesEndpoint {
|
|
|
138668
138954
|
opikTraceId?: string | undefined;
|
|
138669
138955
|
};
|
|
138670
138956
|
}>;
|
|
138671
|
-
score(workspaceId: string, threadId: string, body: DTOForgeChatMessageScoreRequest): Promise<any>;
|
|
138957
|
+
score(workspaceId: string, threadId: string, body: z$1.input<typeof DTOForgeChatMessageScoreRequest>): Promise<any>;
|
|
138672
138958
|
}
|
|
138673
138959
|
|
|
138674
138960
|
declare class WorkspaceIntegrationsEndpoint {
|
|
@@ -141675,4 +141961,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
141675
141961
|
reason: ValidationErrorReason | undefined;
|
|
141676
141962
|
};
|
|
141677
141963
|
|
|
141678
|
-
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, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreate, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdate, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
141964
|
+
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, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreate, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdate, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|