@supernova-studio/client 1.42.8 → 1.42.10
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 +103 -44
- package/dist/index.d.ts +103 -44
- package/dist/index.js +21 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -225437,46 +225437,81 @@ declare const DTOIntegrationsGetListResponse: z$1.ZodObject<{
|
|
|
225437
225437
|
}>;
|
|
225438
225438
|
type DTOIntegrationsGetListResponse = z$1.infer<typeof DTOIntegrationsGetListResponse>;
|
|
225439
225439
|
|
|
225440
|
+
declare const DTOWorkspaceInvitation: z$1.ZodObject<{
|
|
225441
|
+
id: z$1.ZodString;
|
|
225442
|
+
email: z$1.ZodString;
|
|
225443
|
+
createdAt: z$1.ZodDate;
|
|
225444
|
+
resentAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodDate>>;
|
|
225445
|
+
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225446
|
+
seatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
|
|
225447
|
+
workspaceId: z$1.ZodString;
|
|
225448
|
+
invitedBy: z$1.ZodString;
|
|
225449
|
+
effectiveRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225450
|
+
effectiveSeatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
|
|
225451
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
225452
|
+
id: string;
|
|
225453
|
+
createdAt: Date;
|
|
225454
|
+
email: string;
|
|
225455
|
+
workspaceId: string;
|
|
225456
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225457
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225458
|
+
seatType: "Full" | "Builder" | "None";
|
|
225459
|
+
invitedBy: string;
|
|
225460
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225461
|
+
resentAt?: Date | null | undefined;
|
|
225462
|
+
}, {
|
|
225463
|
+
id: string;
|
|
225464
|
+
createdAt: Date;
|
|
225465
|
+
email: string;
|
|
225466
|
+
workspaceId: string;
|
|
225467
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225468
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225469
|
+
seatType: "Full" | "Builder" | "None";
|
|
225470
|
+
invitedBy: string;
|
|
225471
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225472
|
+
resentAt?: Date | null | undefined;
|
|
225473
|
+
}>;
|
|
225474
|
+
type DTOWorkspaceInvitation = z$1.infer<typeof DTOWorkspaceInvitation>;
|
|
225440
225475
|
declare const DTOWorkspaceInvitationInput: z$1.ZodObject<{
|
|
225441
225476
|
email: z$1.ZodString;
|
|
225442
|
-
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "
|
|
225477
|
+
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225443
225478
|
seatType: z$1.ZodOptional<z$1.ZodEnum<["Full", "Builder", "None"]>>;
|
|
225444
225479
|
}, "strip", z$1.ZodTypeAny, {
|
|
225445
225480
|
email: string;
|
|
225446
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225481
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225447
225482
|
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
225448
225483
|
}, {
|
|
225449
225484
|
email: string;
|
|
225450
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225485
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225451
225486
|
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
225452
225487
|
}>;
|
|
225453
225488
|
type DTOWorkspaceInvitationInput = z$1.infer<typeof DTOWorkspaceInvitationInput>;
|
|
225454
225489
|
declare const DTOWorkspaceInvitationsListInput: z$1.ZodObject<{
|
|
225455
225490
|
invites: z$1.ZodArray<z$1.ZodObject<{
|
|
225456
225491
|
email: z$1.ZodString;
|
|
225457
|
-
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "
|
|
225492
|
+
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225458
225493
|
seatType: z$1.ZodOptional<z$1.ZodEnum<["Full", "Builder", "None"]>>;
|
|
225459
225494
|
}, "strip", z$1.ZodTypeAny, {
|
|
225460
225495
|
email: string;
|
|
225461
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225496
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225462
225497
|
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
225463
225498
|
}, {
|
|
225464
225499
|
email: string;
|
|
225465
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225500
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225466
225501
|
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
225467
225502
|
}>, "many">;
|
|
225468
225503
|
designSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
225469
225504
|
}, "strip", z$1.ZodTypeAny, {
|
|
225470
225505
|
invites: {
|
|
225471
225506
|
email: string;
|
|
225472
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225507
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225473
225508
|
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
225474
225509
|
}[];
|
|
225475
225510
|
designSystemId?: string | undefined;
|
|
225476
225511
|
}, {
|
|
225477
225512
|
invites: {
|
|
225478
225513
|
email: string;
|
|
225479
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225514
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225480
225515
|
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
225481
225516
|
}[];
|
|
225482
225517
|
designSystemId?: string | undefined;
|
|
@@ -225488,61 +225523,71 @@ declare const DTOWorkspaceInvitationsResponse: z$1.ZodObject<{
|
|
|
225488
225523
|
email: z$1.ZodString;
|
|
225489
225524
|
createdAt: z$1.ZodDate;
|
|
225490
225525
|
resentAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodDate>>;
|
|
225491
|
-
role: z$1.
|
|
225526
|
+
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225492
225527
|
seatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
|
|
225493
225528
|
workspaceId: z$1.ZodString;
|
|
225494
225529
|
invitedBy: z$1.ZodString;
|
|
225530
|
+
effectiveRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225531
|
+
effectiveSeatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
|
|
225495
225532
|
}, "strip", z$1.ZodTypeAny, {
|
|
225496
|
-
email: string;
|
|
225497
225533
|
id: string;
|
|
225498
225534
|
createdAt: Date;
|
|
225499
|
-
|
|
225535
|
+
email: string;
|
|
225500
225536
|
workspaceId: string;
|
|
225501
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225537
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225538
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225539
|
+
seatType: "Full" | "Builder" | "None";
|
|
225502
225540
|
invitedBy: string;
|
|
225541
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225503
225542
|
resentAt?: Date | null | undefined;
|
|
225504
225543
|
}, {
|
|
225505
|
-
email: string;
|
|
225506
225544
|
id: string;
|
|
225507
225545
|
createdAt: Date;
|
|
225508
|
-
|
|
225546
|
+
email: string;
|
|
225509
225547
|
workspaceId: string;
|
|
225510
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225548
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225549
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225550
|
+
seatType: "Full" | "Builder" | "None";
|
|
225511
225551
|
invitedBy: string;
|
|
225552
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225512
225553
|
resentAt?: Date | null | undefined;
|
|
225513
225554
|
}>, "many">;
|
|
225514
225555
|
}, "strip", z$1.ZodTypeAny, {
|
|
225515
225556
|
invitations: {
|
|
225516
|
-
email: string;
|
|
225517
225557
|
id: string;
|
|
225518
225558
|
createdAt: Date;
|
|
225519
|
-
|
|
225559
|
+
email: string;
|
|
225520
225560
|
workspaceId: string;
|
|
225521
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225561
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225562
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225563
|
+
seatType: "Full" | "Builder" | "None";
|
|
225522
225564
|
invitedBy: string;
|
|
225565
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225523
225566
|
resentAt?: Date | null | undefined;
|
|
225524
225567
|
}[];
|
|
225525
225568
|
}, {
|
|
225526
225569
|
invitations: {
|
|
225527
|
-
email: string;
|
|
225528
225570
|
id: string;
|
|
225529
225571
|
createdAt: Date;
|
|
225530
|
-
|
|
225572
|
+
email: string;
|
|
225531
225573
|
workspaceId: string;
|
|
225532
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225574
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225575
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225576
|
+
seatType: "Full" | "Builder" | "None";
|
|
225533
225577
|
invitedBy: string;
|
|
225578
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225534
225579
|
resentAt?: Date | null | undefined;
|
|
225535
225580
|
}[];
|
|
225536
225581
|
}>;
|
|
225537
225582
|
type DTOWorkspaceInvitationsResponse = z$1.infer<typeof DTOWorkspaceInvitationsResponse>;
|
|
225538
225583
|
declare const DTOWorkspaceInviteUpdate: z$1.ZodObject<{
|
|
225539
|
-
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "
|
|
225584
|
+
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225540
225585
|
seatType: z$1.ZodOptional<z$1.ZodEnum<["Full", "Builder", "None"]>>;
|
|
225541
225586
|
}, "strip", z$1.ZodTypeAny, {
|
|
225542
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225587
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225543
225588
|
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
225544
225589
|
}, {
|
|
225545
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225590
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225546
225591
|
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
225547
225592
|
}>;
|
|
225548
225593
|
type DTOWorkspaceInviteUpdate = z$1.infer<typeof DTOWorkspaceInviteUpdate>;
|
|
@@ -225552,49 +225597,59 @@ declare const DTOWorkspaceInvitationUpdateResponse: z$1.ZodObject<{
|
|
|
225552
225597
|
email: z$1.ZodString;
|
|
225553
225598
|
createdAt: z$1.ZodDate;
|
|
225554
225599
|
resentAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodDate>>;
|
|
225555
|
-
role: z$1.
|
|
225600
|
+
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225556
225601
|
seatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
|
|
225557
225602
|
workspaceId: z$1.ZodString;
|
|
225558
225603
|
invitedBy: z$1.ZodString;
|
|
225604
|
+
effectiveRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
225605
|
+
effectiveSeatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
|
|
225559
225606
|
}, "strip", z$1.ZodTypeAny, {
|
|
225560
|
-
email: string;
|
|
225561
225607
|
id: string;
|
|
225562
225608
|
createdAt: Date;
|
|
225563
|
-
|
|
225609
|
+
email: string;
|
|
225564
225610
|
workspaceId: string;
|
|
225565
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225611
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225612
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225613
|
+
seatType: "Full" | "Builder" | "None";
|
|
225566
225614
|
invitedBy: string;
|
|
225615
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225567
225616
|
resentAt?: Date | null | undefined;
|
|
225568
225617
|
}, {
|
|
225569
|
-
email: string;
|
|
225570
225618
|
id: string;
|
|
225571
225619
|
createdAt: Date;
|
|
225572
|
-
|
|
225620
|
+
email: string;
|
|
225573
225621
|
workspaceId: string;
|
|
225574
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225622
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225623
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225624
|
+
seatType: "Full" | "Builder" | "None";
|
|
225575
225625
|
invitedBy: string;
|
|
225626
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225576
225627
|
resentAt?: Date | null | undefined;
|
|
225577
225628
|
}>;
|
|
225578
225629
|
}, "strip", z$1.ZodTypeAny, {
|
|
225579
225630
|
invitation: {
|
|
225580
|
-
email: string;
|
|
225581
225631
|
id: string;
|
|
225582
225632
|
createdAt: Date;
|
|
225583
|
-
|
|
225633
|
+
email: string;
|
|
225584
225634
|
workspaceId: string;
|
|
225585
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225635
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225636
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225637
|
+
seatType: "Full" | "Builder" | "None";
|
|
225586
225638
|
invitedBy: string;
|
|
225639
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225587
225640
|
resentAt?: Date | null | undefined;
|
|
225588
225641
|
};
|
|
225589
225642
|
}, {
|
|
225590
225643
|
invitation: {
|
|
225591
|
-
email: string;
|
|
225592
225644
|
id: string;
|
|
225593
225645
|
createdAt: Date;
|
|
225594
|
-
|
|
225646
|
+
email: string;
|
|
225595
225647
|
workspaceId: string;
|
|
225596
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
225648
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225649
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
225650
|
+
seatType: "Full" | "Builder" | "None";
|
|
225597
225651
|
invitedBy: string;
|
|
225652
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
225598
225653
|
resentAt?: Date | null | undefined;
|
|
225599
225654
|
};
|
|
225600
225655
|
}>;
|
|
@@ -249474,25 +249529,29 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
249474
249529
|
constructor(requestExecutor: RequestExecutor);
|
|
249475
249530
|
update(workspaceId: string, invitationId: string, body: DTOWorkspaceInviteUpdate): Promise<{
|
|
249476
249531
|
invitation: {
|
|
249477
|
-
email: string;
|
|
249478
249532
|
id: string;
|
|
249479
249533
|
createdAt: Date;
|
|
249480
|
-
|
|
249534
|
+
email: string;
|
|
249481
249535
|
workspaceId: string;
|
|
249482
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
249536
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
249537
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
249538
|
+
seatType: "Full" | "Builder" | "None";
|
|
249483
249539
|
invitedBy: string;
|
|
249540
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
249484
249541
|
resentAt?: Date | null | undefined;
|
|
249485
249542
|
};
|
|
249486
249543
|
}>;
|
|
249487
249544
|
list(workspaceId: string): Promise<{
|
|
249488
249545
|
invitations: {
|
|
249489
|
-
email: string;
|
|
249490
249546
|
id: string;
|
|
249491
249547
|
createdAt: Date;
|
|
249492
|
-
|
|
249548
|
+
email: string;
|
|
249493
249549
|
workspaceId: string;
|
|
249494
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "
|
|
249550
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
249551
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
249552
|
+
seatType: "Full" | "Builder" | "None";
|
|
249495
249553
|
invitedBy: string;
|
|
249554
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
249496
249555
|
resentAt?: Date | null | undefined;
|
|
249497
249556
|
}[];
|
|
249498
249557
|
}>;
|
|
@@ -253283,4 +253342,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
253283
253342
|
reason: ValidationErrorReason | undefined;
|
|
253284
253343
|
};
|
|
253285
253344
|
|
|
253286
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, 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, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, 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, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, 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, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, 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, applyProjectActionsLocally, 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 };
|
|
253345
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, 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, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, 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, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, 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, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, 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, applyProjectActionsLocally, 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 };
|