@supernova-studio/client 1.65.0 → 1.65.1
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 +722 -652
- package/dist/index.d.ts +722 -652
- package/dist/index.js +622 -616
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1223 -1217
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9377,562 +9377,6 @@ var DTOElementsGetOutputV2 = _zod.z.object({
|
|
|
9377
9377
|
// src/api/dto/events/forge-project.ts
|
|
9378
9378
|
|
|
9379
9379
|
|
|
9380
|
-
// src/api/dto/forge/project-member.ts
|
|
9381
|
-
|
|
9382
|
-
|
|
9383
|
-
// src/utils/figma.ts
|
|
9384
|
-
var figmaFileIdRegex = /^[0-9a-zA-Z]{22,128}$/;
|
|
9385
|
-
var nodeIdRegex = /^\d+-\d+$/;
|
|
9386
|
-
var nodeTypeRegex = /^[0-9a-zA-Z]^/;
|
|
9387
|
-
var ParsedFigmaFileURLError = /* @__PURE__ */ ((ParsedFigmaFileURLError2) => {
|
|
9388
|
-
ParsedFigmaFileURLError2["InvalidUrl"] = "InvalidUrl";
|
|
9389
|
-
ParsedFigmaFileURLError2["InvalidFigmaFileId"] = "InvalidFigmaFileId";
|
|
9390
|
-
return ParsedFigmaFileURLError2;
|
|
9391
|
-
})(ParsedFigmaFileURLError || {});
|
|
9392
|
-
var FigmaUtils = {
|
|
9393
|
-
tryParseFigmaFileURL(urlString) {
|
|
9394
|
-
if (!URL.canParse(urlString)) {
|
|
9395
|
-
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
9396
|
-
}
|
|
9397
|
-
const url = new URL(urlString);
|
|
9398
|
-
if (!url.hostname.endsWith("figma.com")) {
|
|
9399
|
-
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
9400
|
-
}
|
|
9401
|
-
const pathSegments = url.pathname.split("/");
|
|
9402
|
-
if (pathSegments[1] !== "design" && pathSegments[1] !== "file") {
|
|
9403
|
-
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
9404
|
-
}
|
|
9405
|
-
const fileId = pathSegments[2];
|
|
9406
|
-
if (!fileId || !fileId.match(figmaFileIdRegex)) {
|
|
9407
|
-
return { status: "Error", error: "InvalidFigmaFileId" /* InvalidFigmaFileId */ };
|
|
9408
|
-
}
|
|
9409
|
-
let fileName = null;
|
|
9410
|
-
const rawFileName = pathSegments[3];
|
|
9411
|
-
if (rawFileName) {
|
|
9412
|
-
fileName = rawFileName.replaceAll("-", " ");
|
|
9413
|
-
}
|
|
9414
|
-
let nodeId = null;
|
|
9415
|
-
const nodeIdRaw = url.searchParams.get("node-id");
|
|
9416
|
-
if (nodeIdRaw && nodeIdRaw.match(nodeIdRegex)) {
|
|
9417
|
-
nodeId = nodeIdRaw.replace("-", ":");
|
|
9418
|
-
}
|
|
9419
|
-
let nodeType = null;
|
|
9420
|
-
const nodeTypeRaw = url.searchParams.get("node-type");
|
|
9421
|
-
if (nodeTypeRaw && nodeTypeRaw.match(nodeTypeRegex)) {
|
|
9422
|
-
nodeType = nodeTypeRaw;
|
|
9423
|
-
}
|
|
9424
|
-
return { status: "Success", fileId, fileName, nodeId, nodeType };
|
|
9425
|
-
}
|
|
9426
|
-
};
|
|
9427
|
-
|
|
9428
|
-
// src/utils/hash.ts
|
|
9429
|
-
function hash(input) {
|
|
9430
|
-
return farmhash(input).toString(16);
|
|
9431
|
-
}
|
|
9432
|
-
function farmhash(input) {
|
|
9433
|
-
const seed = 2654435769;
|
|
9434
|
-
let hash2 = seed;
|
|
9435
|
-
for (let i = 0; i < input.length; i++) {
|
|
9436
|
-
const charCode = input.charCodeAt(i);
|
|
9437
|
-
hash2 ^= charCode;
|
|
9438
|
-
hash2 = Math.imul(hash2, 1540483477);
|
|
9439
|
-
hash2 ^= hash2 >>> 15;
|
|
9440
|
-
}
|
|
9441
|
-
hash2 = Math.imul(hash2, 1540483477);
|
|
9442
|
-
hash2 ^= hash2 >>> 13;
|
|
9443
|
-
hash2 = Math.imul(hash2, 1540483477);
|
|
9444
|
-
hash2 ^= hash2 >>> 15;
|
|
9445
|
-
return hash2 >>> 0;
|
|
9446
|
-
}
|
|
9447
|
-
function prepareObject(obj) {
|
|
9448
|
-
if (obj === null || typeof obj !== "object") {
|
|
9449
|
-
return obj;
|
|
9450
|
-
}
|
|
9451
|
-
if (Array.isArray(obj)) {
|
|
9452
|
-
return obj.map(prepareObject);
|
|
9453
|
-
}
|
|
9454
|
-
const sortedObj = {};
|
|
9455
|
-
for (const key of Object.keys(obj).sort()) {
|
|
9456
|
-
if (obj[key] === null || obj[key] === void 0) {
|
|
9457
|
-
continue;
|
|
9458
|
-
}
|
|
9459
|
-
sortedObj[key] = prepareObject(obj[key]);
|
|
9460
|
-
}
|
|
9461
|
-
return sortedObj;
|
|
9462
|
-
}
|
|
9463
|
-
function generateHash(input, debug = false) {
|
|
9464
|
-
if (typeof input === "object") {
|
|
9465
|
-
const sanitized = JSON.stringify(prepareObject(input));
|
|
9466
|
-
if (debug) {
|
|
9467
|
-
console.log("Hashing sanitized string:");
|
|
9468
|
-
console.log(sanitized);
|
|
9469
|
-
}
|
|
9470
|
-
return hash(sanitized);
|
|
9471
|
-
} else {
|
|
9472
|
-
try {
|
|
9473
|
-
const obj = JSON.parse(input);
|
|
9474
|
-
const sanitized = JSON.stringify(prepareObject(obj));
|
|
9475
|
-
if (debug) {
|
|
9476
|
-
console.log("Hashing sanitized string:");
|
|
9477
|
-
console.log(sanitized);
|
|
9478
|
-
}
|
|
9479
|
-
return hash(sanitized);
|
|
9480
|
-
} catch (e2) {
|
|
9481
|
-
return hash(input);
|
|
9482
|
-
}
|
|
9483
|
-
}
|
|
9484
|
-
}
|
|
9485
|
-
|
|
9486
|
-
// src/utils/redirect-validation.ts
|
|
9487
|
-
var exhaustiveInvalidUriPaths = {
|
|
9488
|
-
emptyPath: "",
|
|
9489
|
-
spacesInPath: "/invalid path/with spaces",
|
|
9490
|
-
specialCharacter1: "/path/with|invalid>characters",
|
|
9491
|
-
specialCharacter2: "/path/with<invalid*characters",
|
|
9492
|
-
specialCharacter3: "/path/{invalid}?characters",
|
|
9493
|
-
consecutiveSlashes: "/path//with///too/many/slashes",
|
|
9494
|
-
unencodedPercent: "/path/with/unencoded%percent",
|
|
9495
|
-
unencodedSpaces: "/path/with unencoded spaces",
|
|
9496
|
-
fragmentIdentifier: "/path/with#fragment",
|
|
9497
|
-
queryParameters: "/path/with?query=parameter",
|
|
9498
|
-
nullCharacter: "/path/with/\0nullcharacter",
|
|
9499
|
-
onlySlash: "/",
|
|
9500
|
-
controlCharacter: "/path/with/control\0character",
|
|
9501
|
-
extremelyLongPath: "/" + "a".repeat(2047),
|
|
9502
|
-
invalidStartCharacter: "///path/starting/with/slashes",
|
|
9503
|
-
invalidStartCharacterColon: ":/path/starting/with/colon",
|
|
9504
|
-
invalidTrailingDot: "/path/ending/with/dot.",
|
|
9505
|
-
invalidPercentEncoding1: "/path/with/%2",
|
|
9506
|
-
invalidPercentEncoding2: "/path/with/%ZZ",
|
|
9507
|
-
invalidPercentEncoding3: "/path/with/%G1",
|
|
9508
|
-
reservedCharacter1: "/path/with?<reserved>",
|
|
9509
|
-
reservedCharacter2: '/path/with/"quotes"',
|
|
9510
|
-
reservedCharacter3: "/path/with/[brackets]",
|
|
9511
|
-
reservedCharacter4: "/path/with/\\backslashes",
|
|
9512
|
-
nonAscii1: "/path/with/\u4F60\u597D",
|
|
9513
|
-
nonAscii2: "/path/with/emoji/\u{1F603}",
|
|
9514
|
-
mixedEncodingPath: "/path/%41A%42B%C3%28",
|
|
9515
|
-
directoryTraversal1: "/path/../../etc/passwd",
|
|
9516
|
-
directoryTraversal2: "/path/./././"
|
|
9517
|
-
};
|
|
9518
|
-
function isValidRedirectPath(path) {
|
|
9519
|
-
const trimmedPath = path.toLowerCase().trim();
|
|
9520
|
-
const url = "https://www.example.com" + trimmedPath;
|
|
9521
|
-
if (url.length > 2048) {
|
|
9522
|
-
return {
|
|
9523
|
-
isValid: false,
|
|
9524
|
-
reason: "TooLong"
|
|
9525
|
-
};
|
|
9526
|
-
}
|
|
9527
|
-
if (trimmedPath === "") {
|
|
9528
|
-
return {
|
|
9529
|
-
isValid: false,
|
|
9530
|
-
reason: "Empty"
|
|
9531
|
-
};
|
|
9532
|
-
}
|
|
9533
|
-
if (url === "/") {
|
|
9534
|
-
return {
|
|
9535
|
-
isValid: false,
|
|
9536
|
-
reason: "Empty"
|
|
9537
|
-
};
|
|
9538
|
-
}
|
|
9539
|
-
if (url.includes("?")) {
|
|
9540
|
-
return {
|
|
9541
|
-
isValid: false,
|
|
9542
|
-
reason: "ContainsQuery"
|
|
9543
|
-
};
|
|
9544
|
-
}
|
|
9545
|
-
if (url.includes("#")) {
|
|
9546
|
-
return {
|
|
9547
|
-
isValid: false,
|
|
9548
|
-
reason: "ContainsFragment"
|
|
9549
|
-
};
|
|
9550
|
-
}
|
|
9551
|
-
const regex = /^\/[A-Za-z0-9_-]+(\/[A-Za-z0-9_-]+)*$/;
|
|
9552
|
-
const isValid = regex.test(trimmedPath);
|
|
9553
|
-
return {
|
|
9554
|
-
isValid: regex.test(trimmedPath),
|
|
9555
|
-
reason: !isValid ? "InvalidURI" : void 0
|
|
9556
|
-
};
|
|
9557
|
-
}
|
|
9558
|
-
|
|
9559
|
-
// src/api/dto/forge/project-invitation.ts
|
|
9560
|
-
|
|
9561
|
-
var DTOForgeProjectInvitation = ForgeProjectInvitation;
|
|
9562
|
-
var DTOCreateForgeProjectInvitation = DTOForgeProjectInvitation.pick({
|
|
9563
|
-
email: true,
|
|
9564
|
-
role: true
|
|
9565
|
-
});
|
|
9566
|
-
var DTOUpdateForgeProjectInvitation = DTOCreateForgeProjectInvitation;
|
|
9567
|
-
var DTORemoveForgeProjectInvitation = DTOCreateForgeProjectInvitation.pick({
|
|
9568
|
-
email: true
|
|
9569
|
-
});
|
|
9570
|
-
var DTOForgeProjectInvitationsListResponse = _zod.z.object({
|
|
9571
|
-
invitations: _zod.z.array(DTOForgeProjectInvitation)
|
|
9572
|
-
});
|
|
9573
|
-
var DTOForgeProjectInvitationGetResponse = _zod.z.object({
|
|
9574
|
-
invitation: DTOForgeProjectInvitation
|
|
9575
|
-
});
|
|
9576
|
-
var DTOForgeProjectInvitationCreateResponse = _zod.z.object({
|
|
9577
|
-
invitation: DTOForgeProjectInvitation
|
|
9578
|
-
});
|
|
9579
|
-
var DTOForgeProjectInvitationUpdateResponse = _zod.z.object({
|
|
9580
|
-
invitation: DTOForgeProjectInvitation.nullable()
|
|
9581
|
-
});
|
|
9582
|
-
var DTOForgeProjectInvitationRemoveResponse = _zod.z.object({
|
|
9583
|
-
ok: _zod.z.literal(true)
|
|
9584
|
-
});
|
|
9585
|
-
|
|
9586
|
-
// src/api/dto/forge/project-member.ts
|
|
9587
|
-
var DTOForgeProjectMemberRole = ForgeProjectRole;
|
|
9588
|
-
var DTOForgeProjectMember = ForgeProjectMembership.extend({
|
|
9589
|
-
user: DTOUser,
|
|
9590
|
-
effectiveRole: DTOForgeProjectMemberRole,
|
|
9591
|
-
isDeactivated: _zod.z.boolean()
|
|
9592
|
-
});
|
|
9593
|
-
var DTOCreateForgeProjectMember = DTOForgeProjectMember.pick({
|
|
9594
|
-
userId: true,
|
|
9595
|
-
role: true
|
|
9596
|
-
});
|
|
9597
|
-
var DTOUpdateForgeProjectMember = DTOCreateForgeProjectMember;
|
|
9598
|
-
var DTORemoveForgeProjectMember = DTOForgeProjectMember.pick({
|
|
9599
|
-
userId: true
|
|
9600
|
-
});
|
|
9601
|
-
var DTOForgeProjectMemberListQuery = _zod.z.object({
|
|
9602
|
-
includeImplicitMembers: zodQueryBoolean().optional()
|
|
9603
|
-
});
|
|
9604
|
-
var DTOForgeProjectMembersListResponse = _zod.z.object({
|
|
9605
|
-
members: _zod.z.array(DTOForgeProjectMember),
|
|
9606
|
-
invitations: _zod.z.array(DTOForgeProjectInvitation)
|
|
9607
|
-
});
|
|
9608
|
-
var DTOForgeProjectMemberGetResponse = _zod.z.object({
|
|
9609
|
-
member: DTOForgeProjectMember
|
|
9610
|
-
});
|
|
9611
|
-
var DTOForgeProjectMemberCreateResponse = _zod.z.object({
|
|
9612
|
-
member: DTOForgeProjectMember
|
|
9613
|
-
});
|
|
9614
|
-
var DTOForgeProjectMemberUpdateResponse = _zod.z.object({
|
|
9615
|
-
member: DTOForgeProjectMember.nullable()
|
|
9616
|
-
});
|
|
9617
|
-
var DTOForgeProjectMemberRemoveResponse = _zod.z.object({
|
|
9618
|
-
ok: _zod.z.literal(true)
|
|
9619
|
-
});
|
|
9620
|
-
var DTOAddMembersToForgeProject = _zod.z.object({
|
|
9621
|
-
membersToInvite: DTOCreateForgeProjectInvitation.array().min(1)
|
|
9622
|
-
});
|
|
9623
|
-
|
|
9624
|
-
// src/api/dto/events/forge-project.ts
|
|
9625
|
-
var DTOForgeProjectMembersCreated = _zod2.default.object({
|
|
9626
|
-
type: _zod2.default.literal("ProjectMembersCreated"),
|
|
9627
|
-
data: _zod2.default.array(DTOForgeProjectMember)
|
|
9628
|
-
});
|
|
9629
|
-
var DTOForgeProjectMemberUpdated = _zod2.default.object({
|
|
9630
|
-
type: _zod2.default.literal("ProjectMemberUpdated"),
|
|
9631
|
-
data: DTOForgeProjectMember
|
|
9632
|
-
});
|
|
9633
|
-
var DTOForgeProjectMemberDeleted = _zod2.default.object({
|
|
9634
|
-
type: _zod2.default.literal("ProjectMemberDeleted"),
|
|
9635
|
-
data: DTOForgeProjectMember.pick({ userId: true })
|
|
9636
|
-
});
|
|
9637
|
-
var DTOForgeProjectRoomEvent = _zod2.default.discriminatedUnion("type", [
|
|
9638
|
-
DTOForgeProjectMembersCreated,
|
|
9639
|
-
DTOForgeProjectMemberUpdated,
|
|
9640
|
-
DTOForgeProjectMemberDeleted
|
|
9641
|
-
]);
|
|
9642
|
-
|
|
9643
|
-
// src/api/dto/events/workspace.ts
|
|
9644
|
-
|
|
9645
|
-
|
|
9646
|
-
// src/api/dto/forge/project-context-v2.ts
|
|
9647
|
-
|
|
9648
|
-
|
|
9649
|
-
// src/api/dto/files/files.ts
|
|
9650
|
-
|
|
9651
|
-
var DTOFileFigmaRenderMode = FileFigmaRenderMode;
|
|
9652
|
-
var DTOFileSourceUpload = FileSourceUpload;
|
|
9653
|
-
var DTOFileSourceFigma = FileSourceFigma;
|
|
9654
|
-
var DTOFileSource = FileSource;
|
|
9655
|
-
var DTOFile = File;
|
|
9656
|
-
var DTOFileReference = FileReference;
|
|
9657
|
-
var DTOFileUploadOwnerUser = _zod2.default.object({
|
|
9658
|
-
ownerType: _zod2.default.literal("User")
|
|
9659
|
-
});
|
|
9660
|
-
var DTOFileUploadOwnerWorkspace = _zod2.default.object({
|
|
9661
|
-
ownerType: _zod2.default.literal("Workspace"),
|
|
9662
|
-
workspaceId: _zod2.default.string()
|
|
9663
|
-
});
|
|
9664
|
-
var DTOFileUploadOwner = _zod2.default.discriminatedUnion("ownerType", [DTOFileUploadOwnerUser, DTOFileUploadOwnerWorkspace]);
|
|
9665
|
-
var DTOFileUploadInput = _zod2.default.object({
|
|
9666
|
-
size: _zod2.default.number(),
|
|
9667
|
-
name: _zod2.default.string(),
|
|
9668
|
-
checksum: _zod2.default.string()
|
|
9669
|
-
});
|
|
9670
|
-
var DTOFileUploadBulkPayload = _zod2.default.object({
|
|
9671
|
-
files: DTOFileUploadInput.array()
|
|
9672
|
-
}).and(DTOFileUploadOwner);
|
|
9673
|
-
var DTOFileFinalizeBulkPayload = _zod2.default.object({
|
|
9674
|
-
fileIds: _zod2.default.string().array()
|
|
9675
|
-
}).and(DTOFileUploadOwner);
|
|
9676
|
-
var DTOFileListResponse = _zod2.default.object({
|
|
9677
|
-
files: DTOFile.array()
|
|
9678
|
-
});
|
|
9679
|
-
var DTOFileUploadBulkResponse = _zod2.default.object({
|
|
9680
|
-
files: _zod2.default.array(DTOFile),
|
|
9681
|
-
uploadUrls: _zod2.default.array(
|
|
9682
|
-
_zod2.default.object({
|
|
9683
|
-
fileId: _zod2.default.string(),
|
|
9684
|
-
uploadUrl: _zod2.default.string()
|
|
9685
|
-
})
|
|
9686
|
-
)
|
|
9687
|
-
});
|
|
9688
|
-
var DTOFileFinalizeBulkResponse = _zod2.default.object({
|
|
9689
|
-
files: _zod2.default.array(DTOFile)
|
|
9690
|
-
});
|
|
9691
|
-
|
|
9692
|
-
// src/api/dto/forge/project-context-v2.ts
|
|
9693
|
-
var DTOForgeComponentSetTypeV2 = _zod.z.enum(["Shadcn"]);
|
|
9694
|
-
var DTOForgeComponentSet = _zod.z.object({
|
|
9695
|
-
type: DTOForgeComponentSetTypeV2
|
|
9696
|
-
});
|
|
9697
|
-
var DTOForgeIconSetTypeV2 = _zod.z.enum(["Phosphor", "Lucide", "Tabler"]);
|
|
9698
|
-
var DTOForgeThemeKnownPreset = _zod.z.enum(["Default", "Airbnb", "Spotify", "Windows98"]);
|
|
9699
|
-
var DTOForgeIconSet = _zod.z.object({
|
|
9700
|
-
type: DTOForgeIconSetTypeV2,
|
|
9701
|
-
variant: _zod.z.string().optional()
|
|
9702
|
-
});
|
|
9703
|
-
var DTOForgeTokenThemeSet = _zod.z.object({
|
|
9704
|
-
id: _zod.z.string(),
|
|
9705
|
-
name: _zod.z.string(),
|
|
9706
|
-
tokenThemeIds: _zod.z.array(_zod.z.string())
|
|
9707
|
-
});
|
|
9708
|
-
var DTOForgeProjectTheme = _zod.z.object({
|
|
9709
|
-
// Colors
|
|
9710
|
-
background: ColorTokenData,
|
|
9711
|
-
foreground: ColorTokenData,
|
|
9712
|
-
card: ColorTokenData,
|
|
9713
|
-
cardForeground: ColorTokenData,
|
|
9714
|
-
popover: ColorTokenData,
|
|
9715
|
-
popoverForeground: ColorTokenData,
|
|
9716
|
-
primary: ColorTokenData,
|
|
9717
|
-
primaryForeground: ColorTokenData,
|
|
9718
|
-
secondary: ColorTokenData,
|
|
9719
|
-
secondaryForeground: ColorTokenData,
|
|
9720
|
-
muted: ColorTokenData,
|
|
9721
|
-
mutedForeground: ColorTokenData,
|
|
9722
|
-
accent: ColorTokenData,
|
|
9723
|
-
accentForeground: ColorTokenData,
|
|
9724
|
-
destructive: ColorTokenData,
|
|
9725
|
-
border: ColorTokenData,
|
|
9726
|
-
input: ColorTokenData,
|
|
9727
|
-
ring: ColorTokenData,
|
|
9728
|
-
chart1: ColorTokenData,
|
|
9729
|
-
chart2: ColorTokenData,
|
|
9730
|
-
chart3: ColorTokenData,
|
|
9731
|
-
chart4: ColorTokenData,
|
|
9732
|
-
chart5: ColorTokenData,
|
|
9733
|
-
sidebar: ColorTokenData,
|
|
9734
|
-
sidebarForeground: ColorTokenData,
|
|
9735
|
-
sidebarPrimary: ColorTokenData,
|
|
9736
|
-
sidebarPrimaryForeground: ColorTokenData,
|
|
9737
|
-
sidebarAccent: ColorTokenData,
|
|
9738
|
-
sidebarAccentForeground: ColorTokenData,
|
|
9739
|
-
sidebarBorder: ColorTokenData,
|
|
9740
|
-
sidebarRing: ColorTokenData,
|
|
9741
|
-
// Font family
|
|
9742
|
-
fontFamily: FontFamilyTokenData,
|
|
9743
|
-
// Font sizes
|
|
9744
|
-
textXs: FontSizeTokenData,
|
|
9745
|
-
textSm: FontSizeTokenData,
|
|
9746
|
-
textBase: FontSizeTokenData,
|
|
9747
|
-
textLg: FontSizeTokenData,
|
|
9748
|
-
textXl: FontSizeTokenData,
|
|
9749
|
-
text2xl: FontSizeTokenData,
|
|
9750
|
-
text3xl: FontSizeTokenData,
|
|
9751
|
-
text4xl: FontSizeTokenData,
|
|
9752
|
-
text5xl: FontSizeTokenData,
|
|
9753
|
-
text6xl: FontSizeTokenData,
|
|
9754
|
-
text7xl: FontSizeTokenData,
|
|
9755
|
-
text8xl: FontSizeTokenData,
|
|
9756
|
-
text9xl: FontSizeTokenData,
|
|
9757
|
-
// Line heights
|
|
9758
|
-
textXsLineHeight: LineHeightTokenData,
|
|
9759
|
-
textSmLineHeight: LineHeightTokenData,
|
|
9760
|
-
textBaseLineHeight: LineHeightTokenData,
|
|
9761
|
-
textLgLineHeight: LineHeightTokenData,
|
|
9762
|
-
textXlLineHeight: LineHeightTokenData,
|
|
9763
|
-
text2xlLineHeight: LineHeightTokenData,
|
|
9764
|
-
text3xlLineHeight: LineHeightTokenData,
|
|
9765
|
-
text4xlLineHeight: LineHeightTokenData,
|
|
9766
|
-
text5xlLineHeight: LineHeightTokenData,
|
|
9767
|
-
text6xlLineHeight: LineHeightTokenData,
|
|
9768
|
-
text7xlLineHeight: LineHeightTokenData,
|
|
9769
|
-
text8xlLineHeight: LineHeightTokenData,
|
|
9770
|
-
text9xlLineHeight: LineHeightTokenData,
|
|
9771
|
-
// Font weights
|
|
9772
|
-
fontWeightThin: FontWeightTokenData,
|
|
9773
|
-
fontWeightExtralight: FontWeightTokenData,
|
|
9774
|
-
fontWeightLight: FontWeightTokenData,
|
|
9775
|
-
fontWeightNormal: FontWeightTokenData,
|
|
9776
|
-
fontWeightMedium: FontWeightTokenData,
|
|
9777
|
-
fontWeightSemibold: FontWeightTokenData,
|
|
9778
|
-
fontWeightBold: FontWeightTokenData,
|
|
9779
|
-
fontWeightExtrabold: FontWeightTokenData,
|
|
9780
|
-
fontWeightBlack: FontWeightTokenData,
|
|
9781
|
-
// Other dimensions
|
|
9782
|
-
radius: BorderRadiusTokenData,
|
|
9783
|
-
spacing: SpaceTokenData,
|
|
9784
|
-
// Shadows
|
|
9785
|
-
shadow2xs: ShadowTokenData,
|
|
9786
|
-
shadowXs: ShadowTokenData,
|
|
9787
|
-
shadowSm: ShadowTokenData,
|
|
9788
|
-
shadowMd: ShadowTokenData,
|
|
9789
|
-
shadowLg: ShadowTokenData,
|
|
9790
|
-
shadowXl: ShadowTokenData,
|
|
9791
|
-
shadow2xl: ShadowTokenData
|
|
9792
|
-
});
|
|
9793
|
-
var DTOForgeProjectContextV2 = _zod.z.object({
|
|
9794
|
-
id: _zod.z.string(),
|
|
9795
|
-
name: _zod.z.string(),
|
|
9796
|
-
workspaceId: _zod.z.string(),
|
|
9797
|
-
designSystemId: _zod.z.string().optional(),
|
|
9798
|
-
brandId: _zod.z.string().optional(),
|
|
9799
|
-
defaultTokenThemeSetId: _zod.z.string().optional(),
|
|
9800
|
-
description: _zod.z.string().optional(),
|
|
9801
|
-
productContext: _zod.z.string().optional(),
|
|
9802
|
-
additionalContext: _zod.z.string().optional(),
|
|
9803
|
-
isArchived: _zod.z.boolean(),
|
|
9804
|
-
themePreset: _zod.z.string().optional(),
|
|
9805
|
-
tokenThemeSets: _zod.z.array(DTOForgeTokenThemeSet).optional(),
|
|
9806
|
-
componentSet: DTOForgeComponentSet,
|
|
9807
|
-
iconSet: DTOForgeIconSet,
|
|
9808
|
-
theme: DTOForgeProjectTheme,
|
|
9809
|
-
createdAt: _zod.z.coerce.date(),
|
|
9810
|
-
updatedAt: _zod.z.coerce.date(),
|
|
9811
|
-
thumbnail: DTOFileReference.optional(),
|
|
9812
|
-
sandboxTemplate: _zod.z.object({
|
|
9813
|
-
id: _zod.z.string(),
|
|
9814
|
-
version: _zod.z.string()
|
|
9815
|
-
}).optional()
|
|
9816
|
-
});
|
|
9817
|
-
var DTOForgeProjectContextCreateV2 = DTOForgeProjectContextV2.omit({
|
|
9818
|
-
id: true,
|
|
9819
|
-
createdAt: true,
|
|
9820
|
-
updatedAt: true,
|
|
9821
|
-
isArchived: true,
|
|
9822
|
-
thumbnail: true
|
|
9823
|
-
}).extend({
|
|
9824
|
-
thumbnailFileId: _zod.z.string().optional()
|
|
9825
|
-
});
|
|
9826
|
-
var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.omit({
|
|
9827
|
-
id: true,
|
|
9828
|
-
workspaceId: true,
|
|
9829
|
-
createdAt: true,
|
|
9830
|
-
updatedAt: true,
|
|
9831
|
-
thumbnail: true
|
|
9832
|
-
}).partial().extend({
|
|
9833
|
-
thumbnailFileId: _zod.z.string().optional()
|
|
9834
|
-
});
|
|
9835
|
-
var DTOForgeProjectContextResponseV2 = _zod.z.object({ context: DTOForgeProjectContextV2 });
|
|
9836
|
-
var DTOForgeProjectContextListQueryV2 = _zod.z.object({
|
|
9837
|
-
workspaceId: _zod.z.string(),
|
|
9838
|
-
isArchived: zodQueryBoolean()
|
|
9839
|
-
});
|
|
9840
|
-
var DTOForgeProjectContextListResponseV2 = _zod.z.object({ contexts: _zod.z.array(DTOForgeProjectContextV2) });
|
|
9841
|
-
|
|
9842
|
-
// src/api/dto/events/workspace.ts
|
|
9843
|
-
var DTOForgeProjectCreated = _zod2.default.object({
|
|
9844
|
-
type: _zod2.default.literal("ProjectCreated"),
|
|
9845
|
-
data: _zod2.default.object({ id: _zod2.default.string() })
|
|
9846
|
-
});
|
|
9847
|
-
var DTOForgeProjectUpdated = _zod2.default.object({
|
|
9848
|
-
type: _zod2.default.literal("ProjectUpdated"),
|
|
9849
|
-
data: _zod2.default.object({ id: _zod2.default.string() })
|
|
9850
|
-
});
|
|
9851
|
-
var DTOForgeProjectContextCreated = _zod2.default.object({
|
|
9852
|
-
type: _zod2.default.literal("ProjectContextCreated"),
|
|
9853
|
-
data: DTOForgeProjectContextV2
|
|
9854
|
-
});
|
|
9855
|
-
var DTOForgeProjectContextUpdated = _zod2.default.object({
|
|
9856
|
-
type: _zod2.default.literal("ProjectContextUpdated"),
|
|
9857
|
-
data: DTOForgeProjectContextV2
|
|
9858
|
-
});
|
|
9859
|
-
var DTOForgeProjectContextDeleted = _zod2.default.object({
|
|
9860
|
-
type: _zod2.default.literal("ProjectContextDeleted"),
|
|
9861
|
-
data: DTOForgeProjectContextV2.pick({ id: true })
|
|
9862
|
-
});
|
|
9863
|
-
var DTOSandboxTemplateVersionCreated = _zod2.default.object({
|
|
9864
|
-
type: _zod2.default.literal("SandboxTemplateVersionCreated"),
|
|
9865
|
-
data: _zod2.default.object({
|
|
9866
|
-
templateId: _zod2.default.string(),
|
|
9867
|
-
version: _zod2.default.string()
|
|
9868
|
-
})
|
|
9869
|
-
});
|
|
9870
|
-
var DTOSandboxTemplateBuildCreated = _zod2.default.object({
|
|
9871
|
-
type: _zod2.default.literal("SandboxTemplateBuildCreated"),
|
|
9872
|
-
data: _zod2.default.object({
|
|
9873
|
-
buildId: _zod2.default.string(),
|
|
9874
|
-
templateId: _zod2.default.string().optional()
|
|
9875
|
-
})
|
|
9876
|
-
});
|
|
9877
|
-
var DTOSandboxTemplateBuildFinished = _zod2.default.object({
|
|
9878
|
-
type: _zod2.default.literal("SandboxTemplateBuildFinished"),
|
|
9879
|
-
data: _zod2.default.object({
|
|
9880
|
-
buildId: _zod2.default.string(),
|
|
9881
|
-
templateId: _zod2.default.string().optional()
|
|
9882
|
-
})
|
|
9883
|
-
});
|
|
9884
|
-
var DTOWorkspaceRoomEvent = _zod2.default.discriminatedUnion("type", [
|
|
9885
|
-
DTOForgeProjectUpdated,
|
|
9886
|
-
DTOForgeProjectCreated,
|
|
9887
|
-
DTOForgeProjectContextCreated,
|
|
9888
|
-
DTOForgeProjectContextUpdated,
|
|
9889
|
-
DTOForgeProjectContextDeleted,
|
|
9890
|
-
DTOSandboxTemplateVersionCreated,
|
|
9891
|
-
DTOSandboxTemplateBuildCreated,
|
|
9892
|
-
DTOSandboxTemplateBuildFinished
|
|
9893
|
-
]);
|
|
9894
|
-
|
|
9895
|
-
// src/api/dto/figma-components/assets/download.ts
|
|
9896
|
-
|
|
9897
|
-
var DTOAssetRenderConfiguration = _zod.z.object({
|
|
9898
|
-
prefix: _zod.z.string().optional(),
|
|
9899
|
-
suffix: _zod.z.string().optional(),
|
|
9900
|
-
scale: _zod.z.enum(["x1", "x2", "x3", "x4"]),
|
|
9901
|
-
format: _zod.z.enum(["png", "pdf", "svg"])
|
|
9902
|
-
});
|
|
9903
|
-
var DTORenderedAssetFile = _zod.z.object({
|
|
9904
|
-
assetId: _zod.z.string(),
|
|
9905
|
-
fileName: _zod.z.string(),
|
|
9906
|
-
sourceUrl: _zod.z.string(),
|
|
9907
|
-
settings: DTOAssetRenderConfiguration,
|
|
9908
|
-
originalName: _zod.z.string()
|
|
9909
|
-
});
|
|
9910
|
-
var DTODownloadAssetsRequest = _zod.z.object({
|
|
9911
|
-
persistentIds: _zod.z.array(_zod.z.string().uuid()).optional(),
|
|
9912
|
-
settings: DTOAssetRenderConfiguration.array()
|
|
9913
|
-
});
|
|
9914
|
-
var DTODownloadAssetsResponse = _zod.z.object({
|
|
9915
|
-
items: DTORenderedAssetFile.array()
|
|
9916
|
-
});
|
|
9917
|
-
|
|
9918
|
-
// src/api/dto/figma-exporter/figma-node.ts
|
|
9919
|
-
|
|
9920
|
-
var DTOFigmaExportNodeFormat = _zod.z.enum(["HTML", "JSON"]);
|
|
9921
|
-
var DTOFigmaExportNodeConfiguration = _zod.z.object({
|
|
9922
|
-
format: DTOFigmaExportNodeFormat,
|
|
9923
|
-
minifyOutput: _zod.z.boolean().optional(),
|
|
9924
|
-
customFontUrls: _zod.z.string().array().optional()
|
|
9925
|
-
});
|
|
9926
|
-
var DTOFigmaExportNodePayload = _zod.z.object({
|
|
9927
|
-
designSystemId: _zod.z.string(),
|
|
9928
|
-
versionId: _zod.z.string().optional(),
|
|
9929
|
-
figmaUrl: _zod.z.string(),
|
|
9930
|
-
configuration: DTOFigmaExportNodeConfiguration
|
|
9931
|
-
});
|
|
9932
|
-
var DTOFigmaExportNodeResponse = _zod.z.object({
|
|
9933
|
-
file: DTOFile
|
|
9934
|
-
});
|
|
9935
|
-
|
|
9936
9380
|
// src/api/dto/forge/agent.ts
|
|
9937
9381
|
|
|
9938
9382
|
var DTOForgeAgent = ForgeAgent;
|
|
@@ -10016,6 +9460,51 @@ var DTOForgeArtifactGetResponse = _zod.z.object({
|
|
|
10016
9460
|
|
|
10017
9461
|
// src/api/dto/forge/feature-messages.ts
|
|
10018
9462
|
|
|
9463
|
+
|
|
9464
|
+
// src/api/dto/files/files.ts
|
|
9465
|
+
|
|
9466
|
+
var DTOFileFigmaRenderMode = FileFigmaRenderMode;
|
|
9467
|
+
var DTOFileSourceUpload = FileSourceUpload;
|
|
9468
|
+
var DTOFileSourceFigma = FileSourceFigma;
|
|
9469
|
+
var DTOFileSource = FileSource;
|
|
9470
|
+
var DTOFile = File;
|
|
9471
|
+
var DTOFileReference = FileReference;
|
|
9472
|
+
var DTOFileUploadOwnerUser = _zod2.default.object({
|
|
9473
|
+
ownerType: _zod2.default.literal("User")
|
|
9474
|
+
});
|
|
9475
|
+
var DTOFileUploadOwnerWorkspace = _zod2.default.object({
|
|
9476
|
+
ownerType: _zod2.default.literal("Workspace"),
|
|
9477
|
+
workspaceId: _zod2.default.string()
|
|
9478
|
+
});
|
|
9479
|
+
var DTOFileUploadOwner = _zod2.default.discriminatedUnion("ownerType", [DTOFileUploadOwnerUser, DTOFileUploadOwnerWorkspace]);
|
|
9480
|
+
var DTOFileUploadInput = _zod2.default.object({
|
|
9481
|
+
size: _zod2.default.number(),
|
|
9482
|
+
name: _zod2.default.string(),
|
|
9483
|
+
checksum: _zod2.default.string()
|
|
9484
|
+
});
|
|
9485
|
+
var DTOFileUploadBulkPayload = _zod2.default.object({
|
|
9486
|
+
files: DTOFileUploadInput.array()
|
|
9487
|
+
}).and(DTOFileUploadOwner);
|
|
9488
|
+
var DTOFileFinalizeBulkPayload = _zod2.default.object({
|
|
9489
|
+
fileIds: _zod2.default.string().array()
|
|
9490
|
+
}).and(DTOFileUploadOwner);
|
|
9491
|
+
var DTOFileListResponse = _zod2.default.object({
|
|
9492
|
+
files: DTOFile.array()
|
|
9493
|
+
});
|
|
9494
|
+
var DTOFileUploadBulkResponse = _zod2.default.object({
|
|
9495
|
+
files: _zod2.default.array(DTOFile),
|
|
9496
|
+
uploadUrls: _zod2.default.array(
|
|
9497
|
+
_zod2.default.object({
|
|
9498
|
+
fileId: _zod2.default.string(),
|
|
9499
|
+
uploadUrl: _zod2.default.string()
|
|
9500
|
+
})
|
|
9501
|
+
)
|
|
9502
|
+
});
|
|
9503
|
+
var DTOFileFinalizeBulkResponse = _zod2.default.object({
|
|
9504
|
+
files: _zod2.default.array(DTOFile)
|
|
9505
|
+
});
|
|
9506
|
+
|
|
9507
|
+
// src/api/dto/forge/feature-messages.ts
|
|
10019
9508
|
var DTOFeatureMessageUserSender = _zod2.default.object({
|
|
10020
9509
|
type: _zod2.default.literal("User"),
|
|
10021
9510
|
userId: _zod2.default.string()
|
|
@@ -10844,12 +10333,165 @@ var DTOForgeProjectAction = _zod2.default.discriminatedUnion("type", [
|
|
|
10844
10333
|
var DTOForgeProjectArtifactRoom = _zod.z.object({
|
|
10845
10334
|
id: _zod.z.string()
|
|
10846
10335
|
});
|
|
10847
|
-
var DTOForgeProjectArtifactRoomResponse = _zod.z.object({
|
|
10848
|
-
room: DTOForgeProjectArtifactRoom
|
|
10336
|
+
var DTOForgeProjectArtifactRoomResponse = _zod.z.object({
|
|
10337
|
+
room: DTOForgeProjectArtifactRoom
|
|
10338
|
+
});
|
|
10339
|
+
|
|
10340
|
+
// src/api/dto/forge/project-context-override.ts
|
|
10341
|
+
|
|
10342
|
+
|
|
10343
|
+
// src/api/dto/forge/project-context-v2.ts
|
|
10344
|
+
|
|
10345
|
+
var DTOForgeComponentSetTypeV2 = _zod.z.enum(["Shadcn"]);
|
|
10346
|
+
var DTOForgeComponentSet = _zod.z.object({
|
|
10347
|
+
type: DTOForgeComponentSetTypeV2
|
|
10348
|
+
});
|
|
10349
|
+
var DTOForgeIconSetTypeV2 = _zod.z.enum(["Phosphor", "Lucide", "Tabler"]);
|
|
10350
|
+
var DTOForgeThemeKnownPreset = _zod.z.enum(["Default", "Airbnb", "Spotify", "Windows98"]);
|
|
10351
|
+
var DTOForgeIconSet = _zod.z.object({
|
|
10352
|
+
type: DTOForgeIconSetTypeV2,
|
|
10353
|
+
variant: _zod.z.string().optional()
|
|
10354
|
+
});
|
|
10355
|
+
var DTOForgeTokenThemeSet = _zod.z.object({
|
|
10356
|
+
id: _zod.z.string(),
|
|
10357
|
+
name: _zod.z.string(),
|
|
10358
|
+
tokenThemeIds: _zod.z.array(_zod.z.string())
|
|
10359
|
+
});
|
|
10360
|
+
var DTOForgeProjectTheme = _zod.z.object({
|
|
10361
|
+
// Colors
|
|
10362
|
+
background: ColorTokenData,
|
|
10363
|
+
foreground: ColorTokenData,
|
|
10364
|
+
card: ColorTokenData,
|
|
10365
|
+
cardForeground: ColorTokenData,
|
|
10366
|
+
popover: ColorTokenData,
|
|
10367
|
+
popoverForeground: ColorTokenData,
|
|
10368
|
+
primary: ColorTokenData,
|
|
10369
|
+
primaryForeground: ColorTokenData,
|
|
10370
|
+
secondary: ColorTokenData,
|
|
10371
|
+
secondaryForeground: ColorTokenData,
|
|
10372
|
+
muted: ColorTokenData,
|
|
10373
|
+
mutedForeground: ColorTokenData,
|
|
10374
|
+
accent: ColorTokenData,
|
|
10375
|
+
accentForeground: ColorTokenData,
|
|
10376
|
+
destructive: ColorTokenData,
|
|
10377
|
+
border: ColorTokenData,
|
|
10378
|
+
input: ColorTokenData,
|
|
10379
|
+
ring: ColorTokenData,
|
|
10380
|
+
chart1: ColorTokenData,
|
|
10381
|
+
chart2: ColorTokenData,
|
|
10382
|
+
chart3: ColorTokenData,
|
|
10383
|
+
chart4: ColorTokenData,
|
|
10384
|
+
chart5: ColorTokenData,
|
|
10385
|
+
sidebar: ColorTokenData,
|
|
10386
|
+
sidebarForeground: ColorTokenData,
|
|
10387
|
+
sidebarPrimary: ColorTokenData,
|
|
10388
|
+
sidebarPrimaryForeground: ColorTokenData,
|
|
10389
|
+
sidebarAccent: ColorTokenData,
|
|
10390
|
+
sidebarAccentForeground: ColorTokenData,
|
|
10391
|
+
sidebarBorder: ColorTokenData,
|
|
10392
|
+
sidebarRing: ColorTokenData,
|
|
10393
|
+
// Font family
|
|
10394
|
+
fontFamily: FontFamilyTokenData,
|
|
10395
|
+
// Font sizes
|
|
10396
|
+
textXs: FontSizeTokenData,
|
|
10397
|
+
textSm: FontSizeTokenData,
|
|
10398
|
+
textBase: FontSizeTokenData,
|
|
10399
|
+
textLg: FontSizeTokenData,
|
|
10400
|
+
textXl: FontSizeTokenData,
|
|
10401
|
+
text2xl: FontSizeTokenData,
|
|
10402
|
+
text3xl: FontSizeTokenData,
|
|
10403
|
+
text4xl: FontSizeTokenData,
|
|
10404
|
+
text5xl: FontSizeTokenData,
|
|
10405
|
+
text6xl: FontSizeTokenData,
|
|
10406
|
+
text7xl: FontSizeTokenData,
|
|
10407
|
+
text8xl: FontSizeTokenData,
|
|
10408
|
+
text9xl: FontSizeTokenData,
|
|
10409
|
+
// Line heights
|
|
10410
|
+
textXsLineHeight: LineHeightTokenData,
|
|
10411
|
+
textSmLineHeight: LineHeightTokenData,
|
|
10412
|
+
textBaseLineHeight: LineHeightTokenData,
|
|
10413
|
+
textLgLineHeight: LineHeightTokenData,
|
|
10414
|
+
textXlLineHeight: LineHeightTokenData,
|
|
10415
|
+
text2xlLineHeight: LineHeightTokenData,
|
|
10416
|
+
text3xlLineHeight: LineHeightTokenData,
|
|
10417
|
+
text4xlLineHeight: LineHeightTokenData,
|
|
10418
|
+
text5xlLineHeight: LineHeightTokenData,
|
|
10419
|
+
text6xlLineHeight: LineHeightTokenData,
|
|
10420
|
+
text7xlLineHeight: LineHeightTokenData,
|
|
10421
|
+
text8xlLineHeight: LineHeightTokenData,
|
|
10422
|
+
text9xlLineHeight: LineHeightTokenData,
|
|
10423
|
+
// Font weights
|
|
10424
|
+
fontWeightThin: FontWeightTokenData,
|
|
10425
|
+
fontWeightExtralight: FontWeightTokenData,
|
|
10426
|
+
fontWeightLight: FontWeightTokenData,
|
|
10427
|
+
fontWeightNormal: FontWeightTokenData,
|
|
10428
|
+
fontWeightMedium: FontWeightTokenData,
|
|
10429
|
+
fontWeightSemibold: FontWeightTokenData,
|
|
10430
|
+
fontWeightBold: FontWeightTokenData,
|
|
10431
|
+
fontWeightExtrabold: FontWeightTokenData,
|
|
10432
|
+
fontWeightBlack: FontWeightTokenData,
|
|
10433
|
+
// Other dimensions
|
|
10434
|
+
radius: BorderRadiusTokenData,
|
|
10435
|
+
spacing: SpaceTokenData,
|
|
10436
|
+
// Shadows
|
|
10437
|
+
shadow2xs: ShadowTokenData,
|
|
10438
|
+
shadowXs: ShadowTokenData,
|
|
10439
|
+
shadowSm: ShadowTokenData,
|
|
10440
|
+
shadowMd: ShadowTokenData,
|
|
10441
|
+
shadowLg: ShadowTokenData,
|
|
10442
|
+
shadowXl: ShadowTokenData,
|
|
10443
|
+
shadow2xl: ShadowTokenData
|
|
10444
|
+
});
|
|
10445
|
+
var DTOForgeProjectContextV2 = _zod.z.object({
|
|
10446
|
+
id: _zod.z.string(),
|
|
10447
|
+
name: _zod.z.string(),
|
|
10448
|
+
workspaceId: _zod.z.string(),
|
|
10449
|
+
designSystemId: _zod.z.string().optional(),
|
|
10450
|
+
brandId: _zod.z.string().optional(),
|
|
10451
|
+
defaultTokenThemeSetId: _zod.z.string().optional(),
|
|
10452
|
+
description: _zod.z.string().optional(),
|
|
10453
|
+
productContext: _zod.z.string().optional(),
|
|
10454
|
+
additionalContext: _zod.z.string().optional(),
|
|
10455
|
+
isArchived: _zod.z.boolean(),
|
|
10456
|
+
themePreset: _zod.z.string().optional(),
|
|
10457
|
+
tokenThemeSets: _zod.z.array(DTOForgeTokenThemeSet).optional(),
|
|
10458
|
+
componentSet: DTOForgeComponentSet,
|
|
10459
|
+
iconSet: DTOForgeIconSet,
|
|
10460
|
+
theme: DTOForgeProjectTheme,
|
|
10461
|
+
createdAt: _zod.z.coerce.date(),
|
|
10462
|
+
updatedAt: _zod.z.coerce.date(),
|
|
10463
|
+
thumbnail: DTOFileReference.optional(),
|
|
10464
|
+
sandboxTemplate: _zod.z.object({
|
|
10465
|
+
id: _zod.z.string(),
|
|
10466
|
+
version: _zod.z.string()
|
|
10467
|
+
}).optional()
|
|
10468
|
+
});
|
|
10469
|
+
var DTOForgeProjectContextCreateV2 = DTOForgeProjectContextV2.omit({
|
|
10470
|
+
id: true,
|
|
10471
|
+
createdAt: true,
|
|
10472
|
+
updatedAt: true,
|
|
10473
|
+
isArchived: true,
|
|
10474
|
+
thumbnail: true
|
|
10475
|
+
}).extend({
|
|
10476
|
+
thumbnailFileId: _zod.z.string().optional()
|
|
10477
|
+
});
|
|
10478
|
+
var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.omit({
|
|
10479
|
+
id: true,
|
|
10480
|
+
workspaceId: true,
|
|
10481
|
+
createdAt: true,
|
|
10482
|
+
updatedAt: true,
|
|
10483
|
+
thumbnail: true
|
|
10484
|
+
}).partial().extend({
|
|
10485
|
+
thumbnailFileId: _zod.z.string().optional()
|
|
10486
|
+
});
|
|
10487
|
+
var DTOForgeProjectContextResponseV2 = _zod.z.object({ context: DTOForgeProjectContextV2 });
|
|
10488
|
+
var DTOForgeProjectContextListQueryV2 = _zod.z.object({
|
|
10489
|
+
workspaceId: _zod.z.string(),
|
|
10490
|
+
isArchived: zodQueryBoolean()
|
|
10849
10491
|
});
|
|
10492
|
+
var DTOForgeProjectContextListResponseV2 = _zod.z.object({ contexts: _zod.z.array(DTOForgeProjectContextV2) });
|
|
10850
10493
|
|
|
10851
10494
|
// src/api/dto/forge/project-context-override.ts
|
|
10852
|
-
|
|
10853
10495
|
var DTOProjectContextOverride = _zod2.default.object({
|
|
10854
10496
|
projectId: _zod2.default.string(),
|
|
10855
10497
|
theme: DTOForgeProjectTheme.partial(),
|
|
@@ -10920,72 +10562,316 @@ var DTOForgeProjectFigmaNodeRenderInput = ForgeProjectFigmaNodeRenderInput;
|
|
|
10920
10562
|
|
|
10921
10563
|
// src/api/dto/forge/project-file.ts
|
|
10922
10564
|
|
|
10923
|
-
var DTOForgeProjectFile = _zod.z.object({
|
|
10924
|
-
id: _zod.z.string(),
|
|
10925
|
-
name: _zod.z.string(),
|
|
10926
|
-
checksum: _zod.z.string(),
|
|
10927
|
-
pendingUpload: _zod.z.boolean().optional(),
|
|
10928
|
-
url: _zod.z.string(),
|
|
10929
|
-
size: _zod.z.number()
|
|
10930
|
-
});
|
|
10931
|
-
var DTOForgeProjectFileListResponse = _zod.z.object({
|
|
10932
|
-
files: _zod.z.array(DTOForgeProjectFile)
|
|
10933
|
-
});
|
|
10934
|
-
var DTOForgeProjectFileUploadPayloadItem = _zod.z.object({
|
|
10935
|
-
size: _zod.z.number(),
|
|
10936
|
-
name: _zod.z.string(),
|
|
10937
|
-
checksum: _zod.z.string()
|
|
10938
|
-
});
|
|
10939
|
-
var DTOForgeProjectFileUploadPayload = _zod.z.object({
|
|
10940
|
-
files: _zod.z.array(DTOForgeProjectFileUploadPayloadItem)
|
|
10565
|
+
var DTOForgeProjectFile = _zod.z.object({
|
|
10566
|
+
id: _zod.z.string(),
|
|
10567
|
+
name: _zod.z.string(),
|
|
10568
|
+
checksum: _zod.z.string(),
|
|
10569
|
+
pendingUpload: _zod.z.boolean().optional(),
|
|
10570
|
+
url: _zod.z.string(),
|
|
10571
|
+
size: _zod.z.number()
|
|
10572
|
+
});
|
|
10573
|
+
var DTOForgeProjectFileListResponse = _zod.z.object({
|
|
10574
|
+
files: _zod.z.array(DTOForgeProjectFile)
|
|
10575
|
+
});
|
|
10576
|
+
var DTOForgeProjectFileUploadPayloadItem = _zod.z.object({
|
|
10577
|
+
size: _zod.z.number(),
|
|
10578
|
+
name: _zod.z.string(),
|
|
10579
|
+
checksum: _zod.z.string()
|
|
10580
|
+
});
|
|
10581
|
+
var DTOForgeProjectFileUploadPayload = _zod.z.object({
|
|
10582
|
+
files: _zod.z.array(DTOForgeProjectFileUploadPayloadItem)
|
|
10583
|
+
});
|
|
10584
|
+
var DTOForgeProjectFileUploadResponse = _zod.z.object({
|
|
10585
|
+
files: _zod.z.array(DTOForgeProjectFile),
|
|
10586
|
+
uploadUrls: _zod.z.array(
|
|
10587
|
+
_zod.z.object({
|
|
10588
|
+
fileId: _zod.z.string(),
|
|
10589
|
+
uploadUrl: _zod.z.string()
|
|
10590
|
+
})
|
|
10591
|
+
)
|
|
10592
|
+
});
|
|
10593
|
+
var DTOForgeProjectFileUploadFinalizePayload = _zod.z.object({
|
|
10594
|
+
fileIds: _zod.z.array(_zod.z.string())
|
|
10595
|
+
});
|
|
10596
|
+
var DTOForgeProjectFileUploadFinalizeResponse = _zod.z.object({ ok: _zod.z.literal(true) });
|
|
10597
|
+
|
|
10598
|
+
// src/api/dto/forge/project-invitation.ts
|
|
10599
|
+
|
|
10600
|
+
var DTOForgeProjectInvitation = ForgeProjectInvitation;
|
|
10601
|
+
var DTOCreateForgeProjectInvitation = DTOForgeProjectInvitation.pick({
|
|
10602
|
+
email: true,
|
|
10603
|
+
role: true
|
|
10604
|
+
});
|
|
10605
|
+
var DTOUpdateForgeProjectInvitation = DTOCreateForgeProjectInvitation;
|
|
10606
|
+
var DTORemoveForgeProjectInvitation = DTOCreateForgeProjectInvitation.pick({
|
|
10607
|
+
email: true
|
|
10608
|
+
});
|
|
10609
|
+
var DTOForgeProjectInvitationsListResponse = _zod.z.object({
|
|
10610
|
+
invitations: _zod.z.array(DTOForgeProjectInvitation)
|
|
10611
|
+
});
|
|
10612
|
+
var DTOForgeProjectInvitationGetResponse = _zod.z.object({
|
|
10613
|
+
invitation: DTOForgeProjectInvitation
|
|
10614
|
+
});
|
|
10615
|
+
var DTOForgeProjectInvitationCreateResponse = _zod.z.object({
|
|
10616
|
+
invitation: DTOForgeProjectInvitation
|
|
10617
|
+
});
|
|
10618
|
+
var DTOForgeProjectInvitationUpdateResponse = _zod.z.object({
|
|
10619
|
+
invitation: DTOForgeProjectInvitation.nullable()
|
|
10620
|
+
});
|
|
10621
|
+
var DTOForgeProjectInvitationRemoveResponse = _zod.z.object({
|
|
10622
|
+
ok: _zod.z.literal(true)
|
|
10623
|
+
});
|
|
10624
|
+
|
|
10625
|
+
// src/api/dto/forge/project-iteration-old.ts
|
|
10626
|
+
|
|
10627
|
+
var DTOForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta;
|
|
10628
|
+
var DTOForgeProjectIteration = ForgeProjectIteration.omit({
|
|
10629
|
+
artifacts: true,
|
|
10630
|
+
messages: true,
|
|
10631
|
+
mergeMeta: true
|
|
10632
|
+
}).extend({
|
|
10633
|
+
artifacts: DTOForgeArtifact.array(),
|
|
10634
|
+
messages: DTOForgeIterationMessage.array(),
|
|
10635
|
+
mergeMeta: DTOForgeProjectIterationMergeMeta.optional()
|
|
10636
|
+
});
|
|
10637
|
+
var DTOGetForgeProjectIterationResponse = _zod.z.object({
|
|
10638
|
+
iteration: DTOForgeProjectIteration.nullable()
|
|
10639
|
+
});
|
|
10640
|
+
var DTOCreateForgeProjectIteration = DTOForgeProjectIteration.omit({
|
|
10641
|
+
forgeProjectId: true,
|
|
10642
|
+
artifacts: true,
|
|
10643
|
+
messages: true,
|
|
10644
|
+
mergeMeta: true,
|
|
10645
|
+
createdAt: true
|
|
10646
|
+
});
|
|
10647
|
+
var DTOUpdateForgeProjectIteration = DTOCreateForgeProjectIteration.extend({ id: _zod.z.string() });
|
|
10648
|
+
var DTOCreateForgeProjectIterationResponse = _zod.z.object({
|
|
10649
|
+
iteration: DTOForgeProjectIteration
|
|
10650
|
+
});
|
|
10651
|
+
var DTOUpdateForgeProjectIterationResponse = _zod.z.object({
|
|
10652
|
+
iteration: DTOForgeProjectIteration.nullable()
|
|
10653
|
+
});
|
|
10654
|
+
var DTODeleteForgeProjectIterationResponse = _zod.z.object({
|
|
10655
|
+
ok: _zod.z.literal(true)
|
|
10656
|
+
});
|
|
10657
|
+
var DTOForgeProjectIterationListResponse = _zod.z.object({ iterations: _zod.z.array(DTOForgeProjectIteration) });
|
|
10658
|
+
|
|
10659
|
+
// src/api/dto/forge/project-member.ts
|
|
10660
|
+
|
|
10661
|
+
|
|
10662
|
+
// src/utils/figma.ts
|
|
10663
|
+
var figmaFileIdRegex = /^[0-9a-zA-Z]{22,128}$/;
|
|
10664
|
+
var nodeIdRegex = /^\d+-\d+$/;
|
|
10665
|
+
var nodeTypeRegex = /^[0-9a-zA-Z]^/;
|
|
10666
|
+
var ParsedFigmaFileURLError = /* @__PURE__ */ ((ParsedFigmaFileURLError2) => {
|
|
10667
|
+
ParsedFigmaFileURLError2["InvalidUrl"] = "InvalidUrl";
|
|
10668
|
+
ParsedFigmaFileURLError2["InvalidFigmaFileId"] = "InvalidFigmaFileId";
|
|
10669
|
+
return ParsedFigmaFileURLError2;
|
|
10670
|
+
})(ParsedFigmaFileURLError || {});
|
|
10671
|
+
var FigmaUtils = {
|
|
10672
|
+
tryParseFigmaFileURL(urlString) {
|
|
10673
|
+
if (!URL.canParse(urlString)) {
|
|
10674
|
+
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
10675
|
+
}
|
|
10676
|
+
const url = new URL(urlString);
|
|
10677
|
+
if (!url.hostname.endsWith("figma.com")) {
|
|
10678
|
+
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
10679
|
+
}
|
|
10680
|
+
const pathSegments = url.pathname.split("/");
|
|
10681
|
+
if (pathSegments[1] !== "design" && pathSegments[1] !== "file") {
|
|
10682
|
+
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
10683
|
+
}
|
|
10684
|
+
const fileId = pathSegments[2];
|
|
10685
|
+
if (!fileId || !fileId.match(figmaFileIdRegex)) {
|
|
10686
|
+
return { status: "Error", error: "InvalidFigmaFileId" /* InvalidFigmaFileId */ };
|
|
10687
|
+
}
|
|
10688
|
+
let fileName = null;
|
|
10689
|
+
const rawFileName = pathSegments[3];
|
|
10690
|
+
if (rawFileName) {
|
|
10691
|
+
fileName = rawFileName.replaceAll("-", " ");
|
|
10692
|
+
}
|
|
10693
|
+
let nodeId = null;
|
|
10694
|
+
const nodeIdRaw = url.searchParams.get("node-id");
|
|
10695
|
+
if (nodeIdRaw && nodeIdRaw.match(nodeIdRegex)) {
|
|
10696
|
+
nodeId = nodeIdRaw.replace("-", ":");
|
|
10697
|
+
}
|
|
10698
|
+
let nodeType = null;
|
|
10699
|
+
const nodeTypeRaw = url.searchParams.get("node-type");
|
|
10700
|
+
if (nodeTypeRaw && nodeTypeRaw.match(nodeTypeRegex)) {
|
|
10701
|
+
nodeType = nodeTypeRaw;
|
|
10702
|
+
}
|
|
10703
|
+
return { status: "Success", fileId, fileName, nodeId, nodeType };
|
|
10704
|
+
}
|
|
10705
|
+
};
|
|
10706
|
+
|
|
10707
|
+
// src/utils/hash.ts
|
|
10708
|
+
function hash(input) {
|
|
10709
|
+
return farmhash(input).toString(16);
|
|
10710
|
+
}
|
|
10711
|
+
function farmhash(input) {
|
|
10712
|
+
const seed = 2654435769;
|
|
10713
|
+
let hash2 = seed;
|
|
10714
|
+
for (let i = 0; i < input.length; i++) {
|
|
10715
|
+
const charCode = input.charCodeAt(i);
|
|
10716
|
+
hash2 ^= charCode;
|
|
10717
|
+
hash2 = Math.imul(hash2, 1540483477);
|
|
10718
|
+
hash2 ^= hash2 >>> 15;
|
|
10719
|
+
}
|
|
10720
|
+
hash2 = Math.imul(hash2, 1540483477);
|
|
10721
|
+
hash2 ^= hash2 >>> 13;
|
|
10722
|
+
hash2 = Math.imul(hash2, 1540483477);
|
|
10723
|
+
hash2 ^= hash2 >>> 15;
|
|
10724
|
+
return hash2 >>> 0;
|
|
10725
|
+
}
|
|
10726
|
+
function prepareObject(obj) {
|
|
10727
|
+
if (obj === null || typeof obj !== "object") {
|
|
10728
|
+
return obj;
|
|
10729
|
+
}
|
|
10730
|
+
if (Array.isArray(obj)) {
|
|
10731
|
+
return obj.map(prepareObject);
|
|
10732
|
+
}
|
|
10733
|
+
const sortedObj = {};
|
|
10734
|
+
for (const key of Object.keys(obj).sort()) {
|
|
10735
|
+
if (obj[key] === null || obj[key] === void 0) {
|
|
10736
|
+
continue;
|
|
10737
|
+
}
|
|
10738
|
+
sortedObj[key] = prepareObject(obj[key]);
|
|
10739
|
+
}
|
|
10740
|
+
return sortedObj;
|
|
10741
|
+
}
|
|
10742
|
+
function generateHash(input, debug = false) {
|
|
10743
|
+
if (typeof input === "object") {
|
|
10744
|
+
const sanitized = JSON.stringify(prepareObject(input));
|
|
10745
|
+
if (debug) {
|
|
10746
|
+
console.log("Hashing sanitized string:");
|
|
10747
|
+
console.log(sanitized);
|
|
10748
|
+
}
|
|
10749
|
+
return hash(sanitized);
|
|
10750
|
+
} else {
|
|
10751
|
+
try {
|
|
10752
|
+
const obj = JSON.parse(input);
|
|
10753
|
+
const sanitized = JSON.stringify(prepareObject(obj));
|
|
10754
|
+
if (debug) {
|
|
10755
|
+
console.log("Hashing sanitized string:");
|
|
10756
|
+
console.log(sanitized);
|
|
10757
|
+
}
|
|
10758
|
+
return hash(sanitized);
|
|
10759
|
+
} catch (e2) {
|
|
10760
|
+
return hash(input);
|
|
10761
|
+
}
|
|
10762
|
+
}
|
|
10763
|
+
}
|
|
10764
|
+
|
|
10765
|
+
// src/utils/redirect-validation.ts
|
|
10766
|
+
var exhaustiveInvalidUriPaths = {
|
|
10767
|
+
emptyPath: "",
|
|
10768
|
+
spacesInPath: "/invalid path/with spaces",
|
|
10769
|
+
specialCharacter1: "/path/with|invalid>characters",
|
|
10770
|
+
specialCharacter2: "/path/with<invalid*characters",
|
|
10771
|
+
specialCharacter3: "/path/{invalid}?characters",
|
|
10772
|
+
consecutiveSlashes: "/path//with///too/many/slashes",
|
|
10773
|
+
unencodedPercent: "/path/with/unencoded%percent",
|
|
10774
|
+
unencodedSpaces: "/path/with unencoded spaces",
|
|
10775
|
+
fragmentIdentifier: "/path/with#fragment",
|
|
10776
|
+
queryParameters: "/path/with?query=parameter",
|
|
10777
|
+
nullCharacter: "/path/with/\0nullcharacter",
|
|
10778
|
+
onlySlash: "/",
|
|
10779
|
+
controlCharacter: "/path/with/control\0character",
|
|
10780
|
+
extremelyLongPath: "/" + "a".repeat(2047),
|
|
10781
|
+
invalidStartCharacter: "///path/starting/with/slashes",
|
|
10782
|
+
invalidStartCharacterColon: ":/path/starting/with/colon",
|
|
10783
|
+
invalidTrailingDot: "/path/ending/with/dot.",
|
|
10784
|
+
invalidPercentEncoding1: "/path/with/%2",
|
|
10785
|
+
invalidPercentEncoding2: "/path/with/%ZZ",
|
|
10786
|
+
invalidPercentEncoding3: "/path/with/%G1",
|
|
10787
|
+
reservedCharacter1: "/path/with?<reserved>",
|
|
10788
|
+
reservedCharacter2: '/path/with/"quotes"',
|
|
10789
|
+
reservedCharacter3: "/path/with/[brackets]",
|
|
10790
|
+
reservedCharacter4: "/path/with/\\backslashes",
|
|
10791
|
+
nonAscii1: "/path/with/\u4F60\u597D",
|
|
10792
|
+
nonAscii2: "/path/with/emoji/\u{1F603}",
|
|
10793
|
+
mixedEncodingPath: "/path/%41A%42B%C3%28",
|
|
10794
|
+
directoryTraversal1: "/path/../../etc/passwd",
|
|
10795
|
+
directoryTraversal2: "/path/./././"
|
|
10796
|
+
};
|
|
10797
|
+
function isValidRedirectPath(path) {
|
|
10798
|
+
const trimmedPath = path.toLowerCase().trim();
|
|
10799
|
+
const url = "https://www.example.com" + trimmedPath;
|
|
10800
|
+
if (url.length > 2048) {
|
|
10801
|
+
return {
|
|
10802
|
+
isValid: false,
|
|
10803
|
+
reason: "TooLong"
|
|
10804
|
+
};
|
|
10805
|
+
}
|
|
10806
|
+
if (trimmedPath === "") {
|
|
10807
|
+
return {
|
|
10808
|
+
isValid: false,
|
|
10809
|
+
reason: "Empty"
|
|
10810
|
+
};
|
|
10811
|
+
}
|
|
10812
|
+
if (url === "/") {
|
|
10813
|
+
return {
|
|
10814
|
+
isValid: false,
|
|
10815
|
+
reason: "Empty"
|
|
10816
|
+
};
|
|
10817
|
+
}
|
|
10818
|
+
if (url.includes("?")) {
|
|
10819
|
+
return {
|
|
10820
|
+
isValid: false,
|
|
10821
|
+
reason: "ContainsQuery"
|
|
10822
|
+
};
|
|
10823
|
+
}
|
|
10824
|
+
if (url.includes("#")) {
|
|
10825
|
+
return {
|
|
10826
|
+
isValid: false,
|
|
10827
|
+
reason: "ContainsFragment"
|
|
10828
|
+
};
|
|
10829
|
+
}
|
|
10830
|
+
const regex = /^\/[A-Za-z0-9_-]+(\/[A-Za-z0-9_-]+)*$/;
|
|
10831
|
+
const isValid = regex.test(trimmedPath);
|
|
10832
|
+
return {
|
|
10833
|
+
isValid: regex.test(trimmedPath),
|
|
10834
|
+
reason: !isValid ? "InvalidURI" : void 0
|
|
10835
|
+
};
|
|
10836
|
+
}
|
|
10837
|
+
|
|
10838
|
+
// src/api/dto/forge/project-member.ts
|
|
10839
|
+
var DTOForgeProjectMemberRole = ForgeProjectRole;
|
|
10840
|
+
var DTOForgeProjectMember = ForgeProjectMembership.extend({
|
|
10841
|
+
user: DTOUser,
|
|
10842
|
+
effectiveRole: DTOForgeProjectMemberRole,
|
|
10843
|
+
isDeactivated: _zod.z.boolean()
|
|
10941
10844
|
});
|
|
10942
|
-
var
|
|
10943
|
-
|
|
10944
|
-
|
|
10945
|
-
_zod.z.object({
|
|
10946
|
-
fileId: _zod.z.string(),
|
|
10947
|
-
uploadUrl: _zod.z.string()
|
|
10948
|
-
})
|
|
10949
|
-
)
|
|
10845
|
+
var DTOCreateForgeProjectMember = DTOForgeProjectMember.pick({
|
|
10846
|
+
userId: true,
|
|
10847
|
+
role: true
|
|
10950
10848
|
});
|
|
10951
|
-
var
|
|
10952
|
-
|
|
10849
|
+
var DTOUpdateForgeProjectMember = DTOCreateForgeProjectMember;
|
|
10850
|
+
var DTORemoveForgeProjectMember = DTOForgeProjectMember.pick({
|
|
10851
|
+
userId: true
|
|
10953
10852
|
});
|
|
10954
|
-
var
|
|
10955
|
-
|
|
10956
|
-
// src/api/dto/forge/project-iteration-old.ts
|
|
10957
|
-
|
|
10958
|
-
var DTOForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta;
|
|
10959
|
-
var DTOForgeProjectIteration = ForgeProjectIteration.omit({
|
|
10960
|
-
artifacts: true,
|
|
10961
|
-
messages: true,
|
|
10962
|
-
mergeMeta: true
|
|
10963
|
-
}).extend({
|
|
10964
|
-
artifacts: DTOForgeArtifact.array(),
|
|
10965
|
-
messages: DTOForgeIterationMessage.array(),
|
|
10966
|
-
mergeMeta: DTOForgeProjectIterationMergeMeta.optional()
|
|
10853
|
+
var DTOForgeProjectMemberListQuery = _zod.z.object({
|
|
10854
|
+
includeImplicitMembers: zodQueryBoolean().optional()
|
|
10967
10855
|
});
|
|
10968
|
-
var
|
|
10969
|
-
|
|
10856
|
+
var DTOForgeProjectMembersListResponse = _zod.z.object({
|
|
10857
|
+
members: _zod.z.array(DTOForgeProjectMember),
|
|
10858
|
+
invitations: _zod.z.array(DTOForgeProjectInvitation)
|
|
10970
10859
|
});
|
|
10971
|
-
var
|
|
10972
|
-
|
|
10973
|
-
artifacts: true,
|
|
10974
|
-
messages: true,
|
|
10975
|
-
mergeMeta: true,
|
|
10976
|
-
createdAt: true
|
|
10860
|
+
var DTOForgeProjectMemberGetResponse = _zod.z.object({
|
|
10861
|
+
member: DTOForgeProjectMember
|
|
10977
10862
|
});
|
|
10978
|
-
var
|
|
10979
|
-
|
|
10980
|
-
iteration: DTOForgeProjectIteration
|
|
10863
|
+
var DTOForgeProjectMemberCreateResponse = _zod.z.object({
|
|
10864
|
+
member: DTOForgeProjectMember
|
|
10981
10865
|
});
|
|
10982
|
-
var
|
|
10983
|
-
|
|
10866
|
+
var DTOForgeProjectMemberUpdateResponse = _zod.z.object({
|
|
10867
|
+
member: DTOForgeProjectMember.nullable()
|
|
10984
10868
|
});
|
|
10985
|
-
var
|
|
10869
|
+
var DTOForgeProjectMemberRemoveResponse = _zod.z.object({
|
|
10986
10870
|
ok: _zod.z.literal(true)
|
|
10987
10871
|
});
|
|
10988
|
-
var
|
|
10872
|
+
var DTOAddMembersToForgeProject = _zod.z.object({
|
|
10873
|
+
membersToInvite: DTOCreateForgeProjectInvitation.array().min(1)
|
|
10874
|
+
});
|
|
10989
10875
|
|
|
10990
10876
|
// src/api/dto/forge/project-room.ts
|
|
10991
10877
|
|
|
@@ -11173,6 +11059,125 @@ var DTOForgeChatMessageScoreRequest = _zod.z.object({
|
|
|
11173
11059
|
tags: DTOForgeChatMessageTagInput.array().optional().default([])
|
|
11174
11060
|
});
|
|
11175
11061
|
|
|
11062
|
+
// src/api/dto/events/forge-project.ts
|
|
11063
|
+
var DTOForgeProjectMembersCreated = _zod2.default.object({
|
|
11064
|
+
type: _zod2.default.literal("ProjectMembersCreated"),
|
|
11065
|
+
data: _zod2.default.array(DTOForgeProjectMember)
|
|
11066
|
+
});
|
|
11067
|
+
var DTOForgeProjectMemberUpdated = _zod2.default.object({
|
|
11068
|
+
type: _zod2.default.literal("ProjectMemberUpdated"),
|
|
11069
|
+
data: DTOForgeProjectMember
|
|
11070
|
+
});
|
|
11071
|
+
var DTOForgeProjectMemberDeleted = _zod2.default.object({
|
|
11072
|
+
type: _zod2.default.literal("ProjectMemberDeleted"),
|
|
11073
|
+
data: DTOForgeProjectMember.pick({ userId: true })
|
|
11074
|
+
});
|
|
11075
|
+
var DTOForgeProjectIterationTagSet = _zod2.default.object({
|
|
11076
|
+
type: _zod2.default.literal("ProjectIterationTagSet"),
|
|
11077
|
+
data: DTOFeatureIterationTag
|
|
11078
|
+
});
|
|
11079
|
+
var DTOForgeProjectRoomEvent = _zod2.default.discriminatedUnion("type", [
|
|
11080
|
+
DTOForgeProjectMembersCreated,
|
|
11081
|
+
DTOForgeProjectMemberUpdated,
|
|
11082
|
+
DTOForgeProjectMemberDeleted,
|
|
11083
|
+
DTOForgeProjectIterationTagSet
|
|
11084
|
+
]);
|
|
11085
|
+
|
|
11086
|
+
// src/api/dto/events/workspace.ts
|
|
11087
|
+
|
|
11088
|
+
var DTOForgeProjectCreated = _zod2.default.object({
|
|
11089
|
+
type: _zod2.default.literal("ProjectCreated"),
|
|
11090
|
+
data: _zod2.default.object({ id: _zod2.default.string() })
|
|
11091
|
+
});
|
|
11092
|
+
var DTOForgeProjectUpdated = _zod2.default.object({
|
|
11093
|
+
type: _zod2.default.literal("ProjectUpdated"),
|
|
11094
|
+
data: _zod2.default.object({ id: _zod2.default.string() })
|
|
11095
|
+
});
|
|
11096
|
+
var DTOForgeProjectContextCreated = _zod2.default.object({
|
|
11097
|
+
type: _zod2.default.literal("ProjectContextCreated"),
|
|
11098
|
+
data: DTOForgeProjectContextV2
|
|
11099
|
+
});
|
|
11100
|
+
var DTOForgeProjectContextUpdated = _zod2.default.object({
|
|
11101
|
+
type: _zod2.default.literal("ProjectContextUpdated"),
|
|
11102
|
+
data: DTOForgeProjectContextV2
|
|
11103
|
+
});
|
|
11104
|
+
var DTOForgeProjectContextDeleted = _zod2.default.object({
|
|
11105
|
+
type: _zod2.default.literal("ProjectContextDeleted"),
|
|
11106
|
+
data: DTOForgeProjectContextV2.pick({ id: true })
|
|
11107
|
+
});
|
|
11108
|
+
var DTOSandboxTemplateVersionCreated = _zod2.default.object({
|
|
11109
|
+
type: _zod2.default.literal("SandboxTemplateVersionCreated"),
|
|
11110
|
+
data: _zod2.default.object({
|
|
11111
|
+
templateId: _zod2.default.string(),
|
|
11112
|
+
version: _zod2.default.string()
|
|
11113
|
+
})
|
|
11114
|
+
});
|
|
11115
|
+
var DTOSandboxTemplateBuildCreated = _zod2.default.object({
|
|
11116
|
+
type: _zod2.default.literal("SandboxTemplateBuildCreated"),
|
|
11117
|
+
data: _zod2.default.object({
|
|
11118
|
+
buildId: _zod2.default.string(),
|
|
11119
|
+
templateId: _zod2.default.string().optional()
|
|
11120
|
+
})
|
|
11121
|
+
});
|
|
11122
|
+
var DTOSandboxTemplateBuildFinished = _zod2.default.object({
|
|
11123
|
+
type: _zod2.default.literal("SandboxTemplateBuildFinished"),
|
|
11124
|
+
data: _zod2.default.object({
|
|
11125
|
+
buildId: _zod2.default.string(),
|
|
11126
|
+
templateId: _zod2.default.string().optional()
|
|
11127
|
+
})
|
|
11128
|
+
});
|
|
11129
|
+
var DTOWorkspaceRoomEvent = _zod2.default.discriminatedUnion("type", [
|
|
11130
|
+
DTOForgeProjectUpdated,
|
|
11131
|
+
DTOForgeProjectCreated,
|
|
11132
|
+
DTOForgeProjectContextCreated,
|
|
11133
|
+
DTOForgeProjectContextUpdated,
|
|
11134
|
+
DTOForgeProjectContextDeleted,
|
|
11135
|
+
DTOSandboxTemplateVersionCreated,
|
|
11136
|
+
DTOSandboxTemplateBuildCreated,
|
|
11137
|
+
DTOSandboxTemplateBuildFinished
|
|
11138
|
+
]);
|
|
11139
|
+
|
|
11140
|
+
// src/api/dto/figma-components/assets/download.ts
|
|
11141
|
+
|
|
11142
|
+
var DTOAssetRenderConfiguration = _zod.z.object({
|
|
11143
|
+
prefix: _zod.z.string().optional(),
|
|
11144
|
+
suffix: _zod.z.string().optional(),
|
|
11145
|
+
scale: _zod.z.enum(["x1", "x2", "x3", "x4"]),
|
|
11146
|
+
format: _zod.z.enum(["png", "pdf", "svg"])
|
|
11147
|
+
});
|
|
11148
|
+
var DTORenderedAssetFile = _zod.z.object({
|
|
11149
|
+
assetId: _zod.z.string(),
|
|
11150
|
+
fileName: _zod.z.string(),
|
|
11151
|
+
sourceUrl: _zod.z.string(),
|
|
11152
|
+
settings: DTOAssetRenderConfiguration,
|
|
11153
|
+
originalName: _zod.z.string()
|
|
11154
|
+
});
|
|
11155
|
+
var DTODownloadAssetsRequest = _zod.z.object({
|
|
11156
|
+
persistentIds: _zod.z.array(_zod.z.string().uuid()).optional(),
|
|
11157
|
+
settings: DTOAssetRenderConfiguration.array()
|
|
11158
|
+
});
|
|
11159
|
+
var DTODownloadAssetsResponse = _zod.z.object({
|
|
11160
|
+
items: DTORenderedAssetFile.array()
|
|
11161
|
+
});
|
|
11162
|
+
|
|
11163
|
+
// src/api/dto/figma-exporter/figma-node.ts
|
|
11164
|
+
|
|
11165
|
+
var DTOFigmaExportNodeFormat = _zod.z.enum(["HTML", "JSON"]);
|
|
11166
|
+
var DTOFigmaExportNodeConfiguration = _zod.z.object({
|
|
11167
|
+
format: DTOFigmaExportNodeFormat,
|
|
11168
|
+
minifyOutput: _zod.z.boolean().optional(),
|
|
11169
|
+
customFontUrls: _zod.z.string().array().optional()
|
|
11170
|
+
});
|
|
11171
|
+
var DTOFigmaExportNodePayload = _zod.z.object({
|
|
11172
|
+
designSystemId: _zod.z.string(),
|
|
11173
|
+
versionId: _zod.z.string().optional(),
|
|
11174
|
+
figmaUrl: _zod.z.string(),
|
|
11175
|
+
configuration: DTOFigmaExportNodeConfiguration
|
|
11176
|
+
});
|
|
11177
|
+
var DTOFigmaExportNodeResponse = _zod.z.object({
|
|
11178
|
+
file: DTOFile
|
|
11179
|
+
});
|
|
11180
|
+
|
|
11176
11181
|
// src/api/dto/liveblocks/auth-response.ts
|
|
11177
11182
|
|
|
11178
11183
|
var DTOLiveblocksAuthResponse = _zod.z.object({
|
|
@@ -20949,5 +20954,6 @@ var TransactionQueue2 = class {
|
|
|
20949
20954
|
|
|
20950
20955
|
|
|
20951
20956
|
|
|
20952
|
-
exports.BackendFeatureRoomYDoc = BackendFeatureRoomYDoc; exports.BackendForgeProjectRoomYDoc = BackendForgeProjectRoomYDoc; exports.BackendThreadRoomYDoc = BackendThreadRoomYDoc; exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.ChatThreadMessagesEndpoint = ChatThreadMessagesEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; exports.DTOAddMembersToForgeProject = DTOAddMembersToForgeProject; exports.DTOAnalyzeCodeComponentsInPackage = DTOAnalyzeCodeComponentsInPackage; exports.DTOAnalyzeCodeComponentsInPackageInput = DTOAnalyzeCodeComponentsInPackageInput; exports.DTOAnalyzeCodeComponentsInPackageResponse = DTOAnalyzeCodeComponentsInPackageResponse; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAssetScope = DTOAssetScope; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOAvailableProductListResponse = DTOAvailableProductListResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBillingCheckoutCreditsTopUpInput = DTOBillingCheckoutCreditsTopUpInput; exports.DTOBillingCheckoutInput = DTOBillingCheckoutInput; exports.DTOBillingCheckoutMode = DTOBillingCheckoutMode; exports.DTOBillingCheckoutOldInput = DTOBillingCheckoutOldInput; exports.DTOBillingCheckoutResponse = DTOBillingCheckoutResponse; exports.DTOBillingCheckoutSubscriptionChangeInput = DTOBillingCheckoutSubscriptionChangeInput; exports.DTOBillingCreditsCheckIfCanSpendResponse = DTOBillingCreditsCheckIfCanSpendResponse; exports.DTOBillingCreditsSpendAction = DTOBillingCreditsSpendAction; exports.DTOBillingCreditsSpendInput = DTOBillingCreditsSpendInput; exports.DTOBillingCreditsSpendResponse = DTOBillingCreditsSpendResponse; exports.DTOBillingInterval = DTOBillingInterval; exports.DTOBillingSubscriptionChangePreviewInput = DTOBillingSubscriptionChangePreviewInput; exports.DTOBillingSupportedModels = DTOBillingSupportedModels; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentCreateInput = DTOCodeComponentCreateInput; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentParentType = DTOCodeComponentParentType; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentResolvedType = DTOCodeComponentResolvedType; exports.DTOCodeComponentResolvedTypeKind = DTOCodeComponentResolvedTypeKind; exports.DTOCodeComponentResponse = DTOCodeComponentResponse; exports.DTOCodeComponentUpsertResponse = DTOCodeComponentUpsertResponse; exports.DTOCodeComponentsCreateInput = DTOCodeComponentsCreateInput; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateForgeAgent = DTOCreateForgeAgent; exports.DTOCreateForgeAgentResponse = DTOCreateForgeAgentResponse; exports.DTOCreateForgeArtifact = DTOCreateForgeArtifact; exports.DTOCreateForgeArtifactResponse = DTOCreateForgeArtifactResponse; exports.DTOCreateForgeBuildArtifact = DTOCreateForgeBuildArtifact; exports.DTOCreateForgeFigmaArtifact = DTOCreateForgeFigmaArtifact; exports.DTOCreateForgeFileArtifact = DTOCreateForgeFileArtifact; exports.DTOCreateForgeIterationMessage = DTOCreateForgeIterationMessage; exports.DTOCreateForgeIterationMessageResponse = DTOCreateForgeIterationMessageResponse; exports.DTOCreateForgeParticipant = DTOCreateForgeParticipant; exports.DTOCreateForgeParticipantResponse = DTOCreateForgeParticipantResponse; exports.DTOCreateForgeProjectContext = DTOCreateForgeProjectContext; exports.DTOCreateForgeProjectInvitation = DTOCreateForgeProjectInvitation; exports.DTOCreateForgeProjectIteration = DTOCreateForgeProjectIteration; exports.DTOCreateForgeProjectIterationResponse = DTOCreateForgeProjectIterationResponse; exports.DTOCreateForgeProjectMember = DTOCreateForgeProjectMember; exports.DTOCreateForgeSpecArtifact = DTOCreateForgeSpecArtifact; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTOCreditBalance = DTOCreditBalance; exports.DTOCreditsPrices = DTOCreditsPrices; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteForgeAgentResponse = DTODeleteForgeAgentResponse; exports.DTODeleteForgeArtifactResponse = DTODeleteForgeArtifactResponse; exports.DTODeleteForgeIterationMessageResponse = DTODeleteForgeIterationMessageResponse; exports.DTODeleteForgeParticipantResponse = DTODeleteForgeParticipantResponse; exports.DTODeleteForgeProjectIterationResponse = DTODeleteForgeProjectIterationResponse; exports.DTODependencyDefinition = DTODependencyDefinition; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemUpdateSwitcherInput = DTODesignSystemUpdateSwitcherInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFeatureAgentResponseTracker = DTOFeatureAgentResponseTracker; exports.DTOFeatureAgentWorkFinalizeInput = DTOFeatureAgentWorkFinalizeInput; exports.DTOFeatureArtifact = DTOFeatureArtifact; exports.DTOFeatureArtifactCreateInput = DTOFeatureArtifactCreateInput; exports.DTOFeatureArtifactDeleteInput = DTOFeatureArtifactDeleteInput; exports.DTOFeatureArtifactGetByIdParam = DTOFeatureArtifactGetByIdParam; exports.DTOFeatureArtifactListQuery = DTOFeatureArtifactListQuery; exports.DTOFeatureArtifactListResponse = DTOFeatureArtifactListResponse; exports.DTOFeatureArtifactResponse = DTOFeatureArtifactResponse; exports.DTOFeatureArtifactWithContentResponse = DTOFeatureArtifactWithContentResponse; exports.DTOFeatureEvent = DTOFeatureEvent; exports.DTOFeatureEventMessagesSent = DTOFeatureEventMessagesSent; exports.DTOFeatureEventReactionsDeleted = DTOFeatureEventReactionsDeleted; exports.DTOFeatureEventReactionsSent = DTOFeatureEventReactionsSent; exports.DTOFeatureIteration = DTOFeatureIteration; exports.DTOFeatureIterationArtifactDiff = DTOFeatureIterationArtifactDiff; exports.DTOFeatureIterationArtifactsDiff = DTOFeatureIterationArtifactsDiff; exports.DTOFeatureIterationCreateInput = DTOFeatureIterationCreateInput; exports.DTOFeatureIterationError = DTOFeatureIterationError; exports.DTOFeatureIterationErrorType = DTOFeatureIterationErrorType; exports.DTOFeatureIterationListResponse = DTOFeatureIterationListResponse; exports.DTOFeatureIterationPromoteInput = DTOFeatureIterationPromoteInput; exports.DTOFeatureIterationResponse = DTOFeatureIterationResponse; exports.DTOFeatureIterationSetLatestInput = DTOFeatureIterationSetLatestInput; exports.DTOFeatureIterationState = DTOFeatureIterationState; exports.DTOFeatureIterationTag = DTOFeatureIterationTag; exports.DTOFeatureIterationTagCreateInput = DTOFeatureIterationTagCreateInput; exports.DTOFeatureIterationTagListResponse = DTOFeatureIterationTagListResponse; exports.DTOFeatureIterationTagResponse = DTOFeatureIterationTagResponse; exports.DTOFeatureIterationUpdateArtifactsByMessageInput = DTOFeatureIterationUpdateArtifactsByMessageInput; exports.DTOFeatureIterationUpdateArtifactsInput = DTOFeatureIterationUpdateArtifactsInput; exports.DTOFeatureIterationUpdateInput = DTOFeatureIterationUpdateInput; exports.DTOFeatureIterationValidateInput = DTOFeatureIterationValidateInput; exports.DTOFeatureIterationValidateResponse = DTOFeatureIterationValidateResponse; exports.DTOFeatureMessage = DTOFeatureMessage; exports.DTOFeatureMessageAgentSender = DTOFeatureMessageAgentSender; exports.DTOFeatureMessageAttachments = DTOFeatureMessageAttachments; exports.DTOFeatureMessageCreateInput = DTOFeatureMessageCreateInput; exports.DTOFeatureMessageListResponse = DTOFeatureMessageListResponse; exports.DTOFeatureMessageReaction = DTOFeatureMessageReaction; exports.DTOFeatureMessageReactionCreateInput = DTOFeatureMessageReactionCreateInput; exports.DTOFeatureMessageReactionDeleteInput = DTOFeatureMessageReactionDeleteInput; exports.DTOFeatureMessageReactionResponse = DTOFeatureMessageReactionResponse; exports.DTOFeatureMessageResponse = DTOFeatureMessageResponse; exports.DTOFeatureMessageSender = DTOFeatureMessageSender; exports.DTOFeatureMessageSystemSender = DTOFeatureMessageSystemSender; exports.DTOFeatureMessageUpdateInput = DTOFeatureMessageUpdateInput; exports.DTOFeatureMessageUserSender = DTOFeatureMessageUserSender; exports.DTOFeaturePublishedStateUpdateInput = DTOFeaturePublishedStateUpdateInput; exports.DTOFeatureSandbox = DTOFeatureSandbox; exports.DTOFeatureUpdateThemeInput = DTOFeatureUpdateThemeInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaExportNodeConfiguration = DTOFigmaExportNodeConfiguration; exports.DTOFigmaExportNodeFormat = DTOFigmaExportNodeFormat; exports.DTOFigmaExportNodePayload = DTOFigmaExportNodePayload; exports.DTOFigmaExportNodeResponse = DTOFigmaExportNodeResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFigmaSourceUpdatePayload = DTOFigmaSourceUpdatePayload; exports.DTOFile = DTOFile; exports.DTOFileFigmaRenderMode = DTOFileFigmaRenderMode; exports.DTOFileFinalizeBulkPayload = DTOFileFinalizeBulkPayload; exports.DTOFileFinalizeBulkResponse = DTOFileFinalizeBulkResponse; exports.DTOFileListResponse = DTOFileListResponse; exports.DTOFileReference = DTOFileReference; exports.DTOFileResponseItem = DTOFileResponseItem; exports.DTOFileSource = DTOFileSource; exports.DTOFileSourceFigma = DTOFileSourceFigma; exports.DTOFileSourceUpload = DTOFileSourceUpload; exports.DTOFileUploadBulkPayload = DTOFileUploadBulkPayload; exports.DTOFileUploadBulkResponse = DTOFileUploadBulkResponse; exports.DTOFileUploadFinalizePayload = DTOFileUploadFinalizePayload; exports.DTOFileUploadFinalizeResponse = DTOFileUploadFinalizeResponse; exports.DTOFileUploadItem = DTOFileUploadItem; exports.DTOFileUploadPayload = DTOFileUploadPayload; exports.DTOFileUploadResponse = DTOFileUploadResponse; exports.DTOFileUploadResponseItem = DTOFileUploadResponseItem; exports.DTOFilesGetPayload = DTOFilesGetPayload; exports.DTOFilesGetQuery = DTOFilesGetQuery; exports.DTOFilesResponse = DTOFilesResponse; exports.DTOForgeAgent = DTOForgeAgent; exports.DTOForgeAgentsListResponse = DTOForgeAgentsListResponse; exports.DTOForgeArtifact = DTOForgeArtifact; exports.DTOForgeArtifactGetResponse = DTOForgeArtifactGetResponse; exports.DTOForgeArtifactsListResponse = DTOForgeArtifactsListResponse; exports.DTOForgeAvatarBuilder = DTOForgeAvatarBuilder; exports.DTOForgeBuildArtifact = DTOForgeBuildArtifact; exports.DTOForgeChatExportResponse = DTOForgeChatExportResponse; exports.DTOForgeChatMessage = DTOForgeChatMessage; exports.DTOForgeChatMessageCreateInput = DTOForgeChatMessageCreateInput; exports.DTOForgeChatMessageCreateResponse = DTOForgeChatMessageCreateResponse; exports.DTOForgeChatMessageListQuery = DTOForgeChatMessageListQuery; exports.DTOForgeChatMessageListResponse = DTOForgeChatMessageListResponse; exports.DTOForgeChatMessageScoreInput = DTOForgeChatMessageScoreInput; exports.DTOForgeChatMessageScoreRequest = DTOForgeChatMessageScoreRequest; exports.DTOForgeChatMessageSender = DTOForgeChatMessageSender; exports.DTOForgeChatMessageSenderType = DTOForgeChatMessageSenderType; exports.DTOForgeChatMessageTagInput = DTOForgeChatMessageTagInput; exports.DTOForgeChatThread = DTOForgeChatThread; exports.DTOForgeChatThreadCreateInput = DTOForgeChatThreadCreateInput; exports.DTOForgeChatThreadCreateResponse = DTOForgeChatThreadCreateResponse; exports.DTOForgeChatThreadDeleteResponse = DTOForgeChatThreadDeleteResponse; exports.DTOForgeChatThreadListQuery = DTOForgeChatThreadListQuery; exports.DTOForgeChatThreadListResponse = DTOForgeChatThreadListResponse; exports.DTOForgeChatThreadUpdateInput = DTOForgeChatThreadUpdateInput; exports.DTOForgeChatThreadUpdateResponse = DTOForgeChatThreadUpdateResponse; exports.DTOForgeComponentSet = DTOForgeComponentSet; exports.DTOForgeComponentSetTypeV2 = DTOForgeComponentSetTypeV2; exports.DTOForgeDocumentGetByIdParam = DTOForgeDocumentGetByIdParam; exports.DTOForgeDocumentGetResponse = DTOForgeDocumentGetResponse; exports.DTOForgeEntity = DTOForgeEntity; exports.DTOForgeFeatureRoom = DTOForgeFeatureRoom; exports.DTOForgeFeatureRoomResponse = DTOForgeFeatureRoomResponse; exports.DTOForgeFigmaArtifact = DTOForgeFigmaArtifact; exports.DTOForgeFileArtifact = DTOForgeFileArtifact; exports.DTOForgeIconSet = DTOForgeIconSet; exports.DTOForgeIconSetTypeV2 = DTOForgeIconSetTypeV2; exports.DTOForgeIterationMessage = DTOForgeIterationMessage; exports.DTOForgeIterationMessagesListResponse = DTOForgeIterationMessagesListResponse; exports.DTOForgeMemoryCreateInput = DTOForgeMemoryCreateInput; exports.DTOForgeMemoryDeleteInput = DTOForgeMemoryDeleteInput; exports.DTOForgeMemoryEntry = DTOForgeMemoryEntry; exports.DTOForgeMemoryEntryListQuery = DTOForgeMemoryEntryListQuery; exports.DTOForgeMemoryEntryListResponse = DTOForgeMemoryEntryListResponse; exports.DTOForgeMemoryEntryResponse = DTOForgeMemoryEntryResponse; exports.DTOForgeMemoryUpdateInput = DTOForgeMemoryUpdateInput; exports.DTOForgeParticipant = DTOForgeParticipant; exports.DTOForgeParticipantGetResponse = DTOForgeParticipantGetResponse; exports.DTOForgeParticipantsListResponse = DTOForgeParticipantsListResponse; exports.DTOForgeProject = DTOForgeProject; exports.DTOForgeProjectAccessMode = DTOForgeProjectAccessMode; exports.DTOForgeProjectAction = DTOForgeProjectAction; exports.DTOForgeProjectActionArtifactCreate = DTOForgeProjectActionArtifactCreate; exports.DTOForgeProjectActionArtifactDelete = DTOForgeProjectActionArtifactDelete; exports.DTOForgeProjectActionArtifactMove = DTOForgeProjectActionArtifactMove; exports.DTOForgeProjectActionArtifactUpdate = DTOForgeProjectActionArtifactUpdate; exports.DTOForgeProjectActionFeatureCreate = DTOForgeProjectActionFeatureCreate; exports.DTOForgeProjectActionFeatureDelete = DTOForgeProjectActionFeatureDelete; exports.DTOForgeProjectActionFeatureMove = DTOForgeProjectActionFeatureMove; exports.DTOForgeProjectActionFeatureUpdate = DTOForgeProjectActionFeatureUpdate; exports.DTOForgeProjectActionSectionCreate = DTOForgeProjectActionSectionCreate; exports.DTOForgeProjectActionSectionDelete = DTOForgeProjectActionSectionDelete; exports.DTOForgeProjectActionSectionMove = DTOForgeProjectActionSectionMove; exports.DTOForgeProjectActionSectionUpdate = DTOForgeProjectActionSectionUpdate; exports.DTOForgeProjectArtifact = DTOForgeProjectArtifact; exports.DTOForgeProjectArtifactContentResponse = DTOForgeProjectArtifactContentResponse; exports.DTOForgeProjectArtifactCreateInput = DTOForgeProjectArtifactCreateInput; exports.DTOForgeProjectArtifactCreateResponse = DTOForgeProjectArtifactCreateResponse; exports.DTOForgeProjectArtifactDeleteInput = DTOForgeProjectArtifactDeleteInput; exports.DTOForgeProjectArtifactDeleteResponse = DTOForgeProjectArtifactDeleteResponse; exports.DTOForgeProjectArtifactGetResponse = DTOForgeProjectArtifactGetResponse; exports.DTOForgeProjectArtifactMoveInput = DTOForgeProjectArtifactMoveInput; exports.DTOForgeProjectArtifactMoveResponse = DTOForgeProjectArtifactMoveResponse; exports.DTOForgeProjectArtifactRoom = DTOForgeProjectArtifactRoom; exports.DTOForgeProjectArtifactRoomResponse = DTOForgeProjectArtifactRoomResponse; exports.DTOForgeProjectArtifactUpdateInput = DTOForgeProjectArtifactUpdateInput; exports.DTOForgeProjectArtifactUpdateResponse = DTOForgeProjectArtifactUpdateResponse; exports.DTOForgeProjectArtifactsListResponse = DTOForgeProjectArtifactsListResponse; exports.DTOForgeProjectContext = DTOForgeProjectContext; exports.DTOForgeProjectContextCreateResponse = DTOForgeProjectContextCreateResponse; exports.DTOForgeProjectContextCreateV2 = DTOForgeProjectContextCreateV2; exports.DTOForgeProjectContextCreated = DTOForgeProjectContextCreated; exports.DTOForgeProjectContextDeleted = DTOForgeProjectContextDeleted; exports.DTOForgeProjectContextGetResponse = DTOForgeProjectContextGetResponse; exports.DTOForgeProjectContextListQueryV2 = DTOForgeProjectContextListQueryV2; exports.DTOForgeProjectContextListResponse = DTOForgeProjectContextListResponse; exports.DTOForgeProjectContextListResponseV2 = DTOForgeProjectContextListResponseV2; exports.DTOForgeProjectContextRemoveResponse = DTOForgeProjectContextRemoveResponse; exports.DTOForgeProjectContextResponseV2 = DTOForgeProjectContextResponseV2; exports.DTOForgeProjectContextUpdateResponse = DTOForgeProjectContextUpdateResponse; exports.DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextUpdateV2; exports.DTOForgeProjectContextUpdated = DTOForgeProjectContextUpdated; exports.DTOForgeProjectContextV2 = DTOForgeProjectContextV2; exports.DTOForgeProjectCreate = DTOForgeProjectCreate; exports.DTOForgeProjectCreated = DTOForgeProjectCreated; exports.DTOForgeProjectDefaultRole = DTOForgeProjectDefaultRole; exports.DTOForgeProjectDocumentPreview = DTOForgeProjectDocumentPreview; exports.DTOForgeProjectFeature = DTOForgeProjectFeature; exports.DTOForgeProjectFeatureCreateInput = DTOForgeProjectFeatureCreateInput; exports.DTOForgeProjectFeatureDeleteInput = DTOForgeProjectFeatureDeleteInput; exports.DTOForgeProjectFeatureGetByIdParam = DTOForgeProjectFeatureGetByIdParam; exports.DTOForgeProjectFeatureGetResponse = DTOForgeProjectFeatureGetResponse; exports.DTOForgeProjectFeatureListResponse = DTOForgeProjectFeatureListResponse; exports.DTOForgeProjectFeatureMoveInput = DTOForgeProjectFeatureMoveInput; exports.DTOForgeProjectFeaturePreview = DTOForgeProjectFeaturePreview; exports.DTOForgeProjectFeatureUpdateInput = DTOForgeProjectFeatureUpdateInput; exports.DTOForgeProjectFigmaNode = DTOForgeProjectFigmaNode; exports.DTOForgeProjectFigmaNodeRenderInput = DTOForgeProjectFigmaNodeRenderInput; exports.DTOForgeProjectFile = DTOForgeProjectFile; exports.DTOForgeProjectFileListResponse = DTOForgeProjectFileListResponse; exports.DTOForgeProjectFileUploadFinalizePayload = DTOForgeProjectFileUploadFinalizePayload; exports.DTOForgeProjectFileUploadFinalizeResponse = DTOForgeProjectFileUploadFinalizeResponse; exports.DTOForgeProjectFileUploadPayload = DTOForgeProjectFileUploadPayload; exports.DTOForgeProjectFileUploadPayloadItem = DTOForgeProjectFileUploadPayloadItem; exports.DTOForgeProjectFileUploadResponse = DTOForgeProjectFileUploadResponse; exports.DTOForgeProjectInvitation = DTOForgeProjectInvitation; exports.DTOForgeProjectInvitationCreateResponse = DTOForgeProjectInvitationCreateResponse; exports.DTOForgeProjectInvitationGetResponse = DTOForgeProjectInvitationGetResponse; exports.DTOForgeProjectInvitationRemoveResponse = DTOForgeProjectInvitationRemoveResponse; exports.DTOForgeProjectInvitationUpdateResponse = DTOForgeProjectInvitationUpdateResponse; exports.DTOForgeProjectInvitationsListResponse = DTOForgeProjectInvitationsListResponse; exports.DTOForgeProjectIteration = DTOForgeProjectIteration; exports.DTOForgeProjectIterationListResponse = DTOForgeProjectIterationListResponse; exports.DTOForgeProjectIterationMergeMeta = DTOForgeProjectIterationMergeMeta; exports.DTOForgeProjectListResponse = DTOForgeProjectListResponse; exports.DTOForgeProjectMember = DTOForgeProjectMember; exports.DTOForgeProjectMemberCreateResponse = DTOForgeProjectMemberCreateResponse; exports.DTOForgeProjectMemberDeleted = DTOForgeProjectMemberDeleted; exports.DTOForgeProjectMemberGetResponse = DTOForgeProjectMemberGetResponse; exports.DTOForgeProjectMemberListQuery = DTOForgeProjectMemberListQuery; exports.DTOForgeProjectMemberRemoveResponse = DTOForgeProjectMemberRemoveResponse; exports.DTOForgeProjectMemberRole = DTOForgeProjectMemberRole; exports.DTOForgeProjectMemberUpdateResponse = DTOForgeProjectMemberUpdateResponse; exports.DTOForgeProjectMemberUpdated = DTOForgeProjectMemberUpdated; exports.DTOForgeProjectMembersCreated = DTOForgeProjectMembersCreated; exports.DTOForgeProjectMembersListResponse = DTOForgeProjectMembersListResponse; exports.DTOForgeProjectPublishedFeature = DTOForgeProjectPublishedFeature; exports.DTOForgeProjectPublishedFeatureGetResponse = DTOForgeProjectPublishedFeatureGetResponse; exports.DTOForgeProjectResponse = DTOForgeProjectResponse; exports.DTOForgeProjectRole = DTOForgeProjectRole; exports.DTOForgeProjectRoom = DTOForgeProjectRoom; exports.DTOForgeProjectRoomEvent = DTOForgeProjectRoomEvent; exports.DTOForgeProjectRoomResponse = DTOForgeProjectRoomResponse; exports.DTOForgeProjectTheme = DTOForgeProjectTheme; exports.DTOForgeProjectUpdate = DTOForgeProjectUpdate; exports.DTOForgeProjectUpdated = DTOForgeProjectUpdated; exports.DTOForgeRelation = DTOForgeRelation; exports.DTOForgeRelationCreate = DTOForgeRelationCreate; exports.DTOForgeRelationDelete = DTOForgeRelationDelete; exports.DTOForgeRelationListInput = DTOForgeRelationListInput; exports.DTOForgeRelationListResponse = DTOForgeRelationListResponse; exports.DTOForgeRelationType = DTOForgeRelationType; exports.DTOForgeSection = DTOForgeSection; exports.DTOForgeSectionCreateInput = DTOForgeSectionCreateInput; exports.DTOForgeSectionDeleteInput = DTOForgeSectionDeleteInput; exports.DTOForgeSectionItemMoveInput = DTOForgeSectionItemMoveInput; exports.DTOForgeSectionMoveInput = DTOForgeSectionMoveInput; exports.DTOForgeSectionUpdateInput = DTOForgeSectionUpdateInput; exports.DTOForgeSpecArtifact = DTOForgeSpecArtifact; exports.DTOForgeThemeKnownPreset = DTOForgeThemeKnownPreset; exports.DTOForgeTokenThemeSet = DTOForgeTokenThemeSet; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetBlockDefinitionsQuery = DTOGetBlockDefinitionsQuery; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGetForgeIterationMessageResponse = DTOGetForgeIterationMessageResponse; exports.DTOGetForgeProjectIterationResponse = DTOGetForgeProjectIterationResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMCPStream = DTOMCPStream; exports.DTOMCPStreamResponse = DTOMCPStreamResponse; exports.DTOMCPStreamUpdateInput = DTOMCPStreamUpdateInput; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONotificationBase = DTONotificationBase; exports.DTONotificationChannel = DTONotificationChannel; exports.DTONotificationChatMentionPayload = DTONotificationChatMentionPayload; exports.DTONotificationCreateInput = DTONotificationCreateInput; exports.DTONotificationProjectDocumentCommentPayload = DTONotificationProjectDocumentCommentPayload; exports.DTONotificationProjectInvitationPayload = DTONotificationProjectInvitationPayload; exports.DTONotificationType = DTONotificationType; exports.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPortalSettings = DTOPortalSettings; exports.DTOPortalSettingsGetResponse = DTOPortalSettingsGetResponse; exports.DTOPortalSettingsSidebar = DTOPortalSettingsSidebar; exports.DTOPortalSettingsSidebarLink = DTOPortalSettingsSidebarLink; exports.DTOPortalSettingsSidebarSection = DTOPortalSettingsSidebarSection; exports.DTOPortalSettingsTheme = DTOPortalSettingsTheme; exports.DTOPortalSettingsUpdatePayload = DTOPortalSettingsUpdatePayload; exports.DTOProduct = DTOProduct; exports.DTOProductCode = DTOProductCode; exports.DTOProductPrice = DTOProductPrice; exports.DTOProjectContextOverride = DTOProjectContextOverride; exports.DTOProjectContextOverrideInput = DTOProjectContextOverrideInput; exports.DTOProjectContextOverrideResponse = DTOProjectContextOverrideResponse; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORegistry = DTORegistry; exports.DTORemoveForgeProjectInvitation = DTORemoveForgeProjectInvitation; exports.DTORemoveForgeProjectMember = DTORemoveForgeProjectMember; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOSandboxError = DTOSandboxError; exports.DTOSandboxTemplate = DTOSandboxTemplate; exports.DTOSandboxTemplateBuild = DTOSandboxTemplateBuild; exports.DTOSandboxTemplateBuildCreateInput = DTOSandboxTemplateBuildCreateInput; exports.DTOSandboxTemplateBuildCreateResponse = DTOSandboxTemplateBuildCreateResponse; exports.DTOSandboxTemplateBuildCreated = DTOSandboxTemplateBuildCreated; exports.DTOSandboxTemplateBuildFinalizeResponse = DTOSandboxTemplateBuildFinalizeResponse; exports.DTOSandboxTemplateBuildFinished = DTOSandboxTemplateBuildFinished; exports.DTOSandboxTemplateBuildResponse = DTOSandboxTemplateBuildResponse; exports.DTOSandboxTemplateFile = DTOSandboxTemplateFile; exports.DTOSandboxTemplateListResponse = DTOSandboxTemplateListResponse; exports.DTOSandboxTemplateQuery = DTOSandboxTemplateQuery; exports.DTOSandboxTemplateResponse = DTOSandboxTemplateResponse; exports.DTOSandboxTemplateVersion = DTOSandboxTemplateVersion; exports.DTOSandboxTemplateVersionCreated = DTOSandboxTemplateVersionCreated; exports.DTOSandboxTemplateVersionDetail = DTOSandboxTemplateVersionDetail; exports.DTOStorybookAccessTokenPayload = DTOStorybookAccessTokenPayload; exports.DTOStorybookAccessTokenResponse = DTOStorybookAccessTokenResponse; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOStorybookUploadUrlRequest = DTOStorybookUploadUrlRequest; exports.DTOStorybookUploadUrlResponse = DTOStorybookUploadUrlResponse; exports.DTOSubscription = DTOSubscription; exports.DTOSubscriptionResponse = DTOSubscriptionResponse; exports.DTOSubscriptionUpcomingChange = DTOSubscriptionUpcomingChange; exports.DTOSubscriptionUpdateInput = DTOSubscriptionUpdateInput; exports.DTOSubscriptionUpdatePreview = DTOSubscriptionUpdatePreview; exports.DTOSubscriptionUpdatePreviewResponse = DTOSubscriptionUpdatePreviewResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOThemesListQuery = DTOThemesListQuery; exports.DTOThread = DTOThread; exports.DTOThreadAgentResponseTracker = DTOThreadAgentResponseTracker; exports.DTOThreadAgentType = DTOThreadAgentType; exports.DTOThreadEvent = DTOThreadEvent; exports.DTOThreadEventMessagesSent = DTOThreadEventMessagesSent; exports.DTOThreadEventMessagesUpdated = DTOThreadEventMessagesUpdated; exports.DTOThreadEventReactionsDeleted = DTOThreadEventReactionsDeleted; exports.DTOThreadEventReactionsSent = DTOThreadEventReactionsSent; exports.DTOThreadMessage = DTOThreadMessage; exports.DTOThreadMessageAgentSender = DTOThreadMessageAgentSender; exports.DTOThreadMessageAttachments = DTOThreadMessageAttachments; exports.DTOThreadMessageAttachmentsCreateInput = DTOThreadMessageAttachmentsCreateInput; exports.DTOThreadMessageCreateInput = DTOThreadMessageCreateInput; exports.DTOThreadMessageFinalizeInput = DTOThreadMessageFinalizeInput; exports.DTOThreadMessageListResponse = DTOThreadMessageListResponse; exports.DTOThreadMessageResponse = DTOThreadMessageResponse; exports.DTOThreadMessageRetryInput = DTOThreadMessageRetryInput; exports.DTOThreadMessageSender = DTOThreadMessageSender; exports.DTOThreadMessageSystemSender = DTOThreadMessageSystemSender; exports.DTOThreadMessageUpdateInput = DTOThreadMessageUpdateInput; exports.DTOThreadMessageUserSender = DTOThreadMessageUserSender; exports.DTOThreadPromptState = DTOThreadPromptState; exports.DTOThreadReaction = DTOThreadReaction; exports.DTOThreadReactionCreateInput = DTOThreadReactionCreateInput; exports.DTOThreadReactionDeleteInput = DTOThreadReactionDeleteInput; exports.DTOThreadReactionResponse = DTOThreadReactionResponse; exports.DTOThreadSubjectType = DTOThreadSubjectType; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTrailEvent = DTOTrailEvent; exports.DTOTrailEventClientCreate = DTOTrailEventClientCreate; exports.DTOTrailEventCreate = DTOTrailEventCreate; exports.DTOTrailEventListInput = DTOTrailEventListInput; exports.DTOTrailEventListResponse = DTOTrailEventListResponse; exports.DTOTrailEventType = DTOTrailEventType; exports.DTOTrailEventWithDetails = DTOTrailEventWithDetails; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUGetForgeAgentResponse = DTOUGetForgeAgentResponse; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateForgeAgent = DTOUpdateForgeAgent; exports.DTOUpdateForgeAgentResponse = DTOUpdateForgeAgentResponse; exports.DTOUpdateForgeArtifact = DTOUpdateForgeArtifact; exports.DTOUpdateForgeArtifactResponse = DTOUpdateForgeArtifactResponse; exports.DTOUpdateForgeBuildArtifact = DTOUpdateForgeBuildArtifact; exports.DTOUpdateForgeFigmaArtifact = DTOUpdateForgeFigmaArtifact; exports.DTOUpdateForgeFileArtifact = DTOUpdateForgeFileArtifact; exports.DTOUpdateForgeIterationMessage = DTOUpdateForgeIterationMessage; exports.DTOUpdateForgeIterationMessageResponse = DTOUpdateForgeIterationMessageResponse; exports.DTOUpdateForgeParticipant = DTOUpdateForgeParticipant; exports.DTOUpdateForgeParticipantResponse = DTOUpdateForgeParticipantResponse; exports.DTOUpdateForgeProjectContext = DTOUpdateForgeProjectContext; exports.DTOUpdateForgeProjectInvitation = DTOUpdateForgeProjectInvitation; exports.DTOUpdateForgeProjectIteration = DTOUpdateForgeProjectIteration; exports.DTOUpdateForgeProjectIterationResponse = DTOUpdateForgeProjectIterationResponse; exports.DTOUpdateForgeProjectMember = DTOUpdateForgeProjectMember; exports.DTOUpdateForgeSpecArtifact = DTOUpdateForgeSpecArtifact; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUploadUrlItem = DTOUploadUrlItem; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserEmailSettings = DTOUserEmailSettings; exports.DTOUserEmailSettingsUpdatePayload = DTOUserEmailSettingsUpdatePayload; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettings = DTOUserNotificationSettings; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserPortalTheme = DTOUserPortalTheme; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserUpdatePayload = DTOUserUpdatePayload; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceBilledSeatType = DTOWorkspaceBilledSeatType; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceDefaultProjectAccessMode = DTOWorkspaceDefaultProjectAccessMode; exports.DTOWorkspaceDefaultProjectRole = DTOWorkspaceDefaultProjectRole; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitation = DTOWorkspaceInvitation; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceRoomEvent = DTOWorkspaceRoomEvent; exports.DTOWorkspaceSeatType = DTOWorkspaceSeatType; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemFilesEndpoint = DesignSystemFilesEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FeatureRoomBaseYDoc = FeatureRoomBaseYDoc; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FilesEndpoint = FilesEndpoint; exports.ForgeAgentsEndpoint = ForgeAgentsEndpoint; exports.ForgeArtifactsEndpoint = ForgeArtifactsEndpoint; exports.ForgeDocumentsEndpoint = ForgeDocumentsEndpoint; exports.ForgeEndpoint = ForgeEndpoint; exports.ForgeFeatureArtifactsEndpoint = ForgeFeatureArtifactsEndpoint; exports.ForgeFeatureIterationsEndpoint = ForgeFeatureIterationsEndpoint; exports.ForgeFeatureMessagesEndpoint = ForgeFeatureMessagesEndpoint; exports.ForgeMemoryEndpoint = ForgeMemoryEndpoint; exports.ForgeProjectContentRepository = ForgeProjectContentRepository; exports.ForgeProjectContextsEndpoint = ForgeProjectContextsEndpoint; exports.ForgeProjectFeaturesEndpoint = ForgeProjectFeaturesEndpoint; exports.ForgeProjectFilesEndpoint = ForgeProjectFilesEndpoint; exports.ForgeProjectInvitationsEndpoint = ForgeProjectInvitationsEndpoint; exports.ForgeProjectIterationsEndpoint = ForgeProjectIterationsEndpoint; exports.ForgeProjectMembersEndpoint = ForgeProjectMembersEndpoint; exports.ForgeProjectRoomBaseYDoc = ForgeProjectRoomBaseYDoc; exports.ForgeProjectsEndpoint = ForgeProjectsEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendFeatureRoomYDoc = FrontendFeatureRoomYDoc; exports.FrontendThreadRoomYDoc = FrontendThreadRoomYDoc; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.LocalProjectActionExecutor = LocalProjectActionExecutor; exports.MCPStreamsEndpoint = MCPStreamsEndpoint; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.SandboxTemplateBuildsEndpoint = SandboxTemplateBuildsEndpoint; exports.SandboxTemplatesEndpoint = SandboxTemplatesEndpoint; exports.SandboxesEndpoint = SandboxesEndpoint; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookHostingEndpoint = StorybookHostingEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.ThreadRoomBaseYDoc = ThreadRoomBaseYDoc; exports.ThreadsEndpoint = ThreadsEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceBillingEndpoint = WorkspaceBillingEndpoint; exports.WorkspaceChatThreadsEndpoint = WorkspaceChatThreadsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspaceSubscriptionEndpoint = WorkspaceSubscriptionEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.applyProjectActionsLocally = applyProjectActionsLocally; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.zodQueryBoolean = zodQueryBoolean;
|
|
20957
|
+
|
|
20958
|
+
exports.BackendFeatureRoomYDoc = BackendFeatureRoomYDoc; exports.BackendForgeProjectRoomYDoc = BackendForgeProjectRoomYDoc; exports.BackendThreadRoomYDoc = BackendThreadRoomYDoc; exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.ChatThreadMessagesEndpoint = ChatThreadMessagesEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; exports.DTOAddMembersToForgeProject = DTOAddMembersToForgeProject; exports.DTOAnalyzeCodeComponentsInPackage = DTOAnalyzeCodeComponentsInPackage; exports.DTOAnalyzeCodeComponentsInPackageInput = DTOAnalyzeCodeComponentsInPackageInput; exports.DTOAnalyzeCodeComponentsInPackageResponse = DTOAnalyzeCodeComponentsInPackageResponse; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAssetScope = DTOAssetScope; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOAvailableProductListResponse = DTOAvailableProductListResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBillingCheckoutCreditsTopUpInput = DTOBillingCheckoutCreditsTopUpInput; exports.DTOBillingCheckoutInput = DTOBillingCheckoutInput; exports.DTOBillingCheckoutMode = DTOBillingCheckoutMode; exports.DTOBillingCheckoutOldInput = DTOBillingCheckoutOldInput; exports.DTOBillingCheckoutResponse = DTOBillingCheckoutResponse; exports.DTOBillingCheckoutSubscriptionChangeInput = DTOBillingCheckoutSubscriptionChangeInput; exports.DTOBillingCreditsCheckIfCanSpendResponse = DTOBillingCreditsCheckIfCanSpendResponse; exports.DTOBillingCreditsSpendAction = DTOBillingCreditsSpendAction; exports.DTOBillingCreditsSpendInput = DTOBillingCreditsSpendInput; exports.DTOBillingCreditsSpendResponse = DTOBillingCreditsSpendResponse; exports.DTOBillingInterval = DTOBillingInterval; exports.DTOBillingSubscriptionChangePreviewInput = DTOBillingSubscriptionChangePreviewInput; exports.DTOBillingSupportedModels = DTOBillingSupportedModels; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentCreateInput = DTOCodeComponentCreateInput; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentParentType = DTOCodeComponentParentType; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentResolvedType = DTOCodeComponentResolvedType; exports.DTOCodeComponentResolvedTypeKind = DTOCodeComponentResolvedTypeKind; exports.DTOCodeComponentResponse = DTOCodeComponentResponse; exports.DTOCodeComponentUpsertResponse = DTOCodeComponentUpsertResponse; exports.DTOCodeComponentsCreateInput = DTOCodeComponentsCreateInput; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateForgeAgent = DTOCreateForgeAgent; exports.DTOCreateForgeAgentResponse = DTOCreateForgeAgentResponse; exports.DTOCreateForgeArtifact = DTOCreateForgeArtifact; exports.DTOCreateForgeArtifactResponse = DTOCreateForgeArtifactResponse; exports.DTOCreateForgeBuildArtifact = DTOCreateForgeBuildArtifact; exports.DTOCreateForgeFigmaArtifact = DTOCreateForgeFigmaArtifact; exports.DTOCreateForgeFileArtifact = DTOCreateForgeFileArtifact; exports.DTOCreateForgeIterationMessage = DTOCreateForgeIterationMessage; exports.DTOCreateForgeIterationMessageResponse = DTOCreateForgeIterationMessageResponse; exports.DTOCreateForgeParticipant = DTOCreateForgeParticipant; exports.DTOCreateForgeParticipantResponse = DTOCreateForgeParticipantResponse; exports.DTOCreateForgeProjectContext = DTOCreateForgeProjectContext; exports.DTOCreateForgeProjectInvitation = DTOCreateForgeProjectInvitation; exports.DTOCreateForgeProjectIteration = DTOCreateForgeProjectIteration; exports.DTOCreateForgeProjectIterationResponse = DTOCreateForgeProjectIterationResponse; exports.DTOCreateForgeProjectMember = DTOCreateForgeProjectMember; exports.DTOCreateForgeSpecArtifact = DTOCreateForgeSpecArtifact; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTOCreditBalance = DTOCreditBalance; exports.DTOCreditsPrices = DTOCreditsPrices; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteForgeAgentResponse = DTODeleteForgeAgentResponse; exports.DTODeleteForgeArtifactResponse = DTODeleteForgeArtifactResponse; exports.DTODeleteForgeIterationMessageResponse = DTODeleteForgeIterationMessageResponse; exports.DTODeleteForgeParticipantResponse = DTODeleteForgeParticipantResponse; exports.DTODeleteForgeProjectIterationResponse = DTODeleteForgeProjectIterationResponse; exports.DTODependencyDefinition = DTODependencyDefinition; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemUpdateSwitcherInput = DTODesignSystemUpdateSwitcherInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFeatureAgentResponseTracker = DTOFeatureAgentResponseTracker; exports.DTOFeatureAgentWorkFinalizeInput = DTOFeatureAgentWorkFinalizeInput; exports.DTOFeatureArtifact = DTOFeatureArtifact; exports.DTOFeatureArtifactCreateInput = DTOFeatureArtifactCreateInput; exports.DTOFeatureArtifactDeleteInput = DTOFeatureArtifactDeleteInput; exports.DTOFeatureArtifactGetByIdParam = DTOFeatureArtifactGetByIdParam; exports.DTOFeatureArtifactListQuery = DTOFeatureArtifactListQuery; exports.DTOFeatureArtifactListResponse = DTOFeatureArtifactListResponse; exports.DTOFeatureArtifactResponse = DTOFeatureArtifactResponse; exports.DTOFeatureArtifactWithContentResponse = DTOFeatureArtifactWithContentResponse; exports.DTOFeatureEvent = DTOFeatureEvent; exports.DTOFeatureEventMessagesSent = DTOFeatureEventMessagesSent; exports.DTOFeatureEventReactionsDeleted = DTOFeatureEventReactionsDeleted; exports.DTOFeatureEventReactionsSent = DTOFeatureEventReactionsSent; exports.DTOFeatureIteration = DTOFeatureIteration; exports.DTOFeatureIterationArtifactDiff = DTOFeatureIterationArtifactDiff; exports.DTOFeatureIterationArtifactsDiff = DTOFeatureIterationArtifactsDiff; exports.DTOFeatureIterationCreateInput = DTOFeatureIterationCreateInput; exports.DTOFeatureIterationError = DTOFeatureIterationError; exports.DTOFeatureIterationErrorType = DTOFeatureIterationErrorType; exports.DTOFeatureIterationListResponse = DTOFeatureIterationListResponse; exports.DTOFeatureIterationPromoteInput = DTOFeatureIterationPromoteInput; exports.DTOFeatureIterationResponse = DTOFeatureIterationResponse; exports.DTOFeatureIterationSetLatestInput = DTOFeatureIterationSetLatestInput; exports.DTOFeatureIterationState = DTOFeatureIterationState; exports.DTOFeatureIterationTag = DTOFeatureIterationTag; exports.DTOFeatureIterationTagCreateInput = DTOFeatureIterationTagCreateInput; exports.DTOFeatureIterationTagListResponse = DTOFeatureIterationTagListResponse; exports.DTOFeatureIterationTagResponse = DTOFeatureIterationTagResponse; exports.DTOFeatureIterationUpdateArtifactsByMessageInput = DTOFeatureIterationUpdateArtifactsByMessageInput; exports.DTOFeatureIterationUpdateArtifactsInput = DTOFeatureIterationUpdateArtifactsInput; exports.DTOFeatureIterationUpdateInput = DTOFeatureIterationUpdateInput; exports.DTOFeatureIterationValidateInput = DTOFeatureIterationValidateInput; exports.DTOFeatureIterationValidateResponse = DTOFeatureIterationValidateResponse; exports.DTOFeatureMessage = DTOFeatureMessage; exports.DTOFeatureMessageAgentSender = DTOFeatureMessageAgentSender; exports.DTOFeatureMessageAttachments = DTOFeatureMessageAttachments; exports.DTOFeatureMessageCreateInput = DTOFeatureMessageCreateInput; exports.DTOFeatureMessageListResponse = DTOFeatureMessageListResponse; exports.DTOFeatureMessageReaction = DTOFeatureMessageReaction; exports.DTOFeatureMessageReactionCreateInput = DTOFeatureMessageReactionCreateInput; exports.DTOFeatureMessageReactionDeleteInput = DTOFeatureMessageReactionDeleteInput; exports.DTOFeatureMessageReactionResponse = DTOFeatureMessageReactionResponse; exports.DTOFeatureMessageResponse = DTOFeatureMessageResponse; exports.DTOFeatureMessageSender = DTOFeatureMessageSender; exports.DTOFeatureMessageSystemSender = DTOFeatureMessageSystemSender; exports.DTOFeatureMessageUpdateInput = DTOFeatureMessageUpdateInput; exports.DTOFeatureMessageUserSender = DTOFeatureMessageUserSender; exports.DTOFeaturePublishedStateUpdateInput = DTOFeaturePublishedStateUpdateInput; exports.DTOFeatureSandbox = DTOFeatureSandbox; exports.DTOFeatureUpdateThemeInput = DTOFeatureUpdateThemeInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaExportNodeConfiguration = DTOFigmaExportNodeConfiguration; exports.DTOFigmaExportNodeFormat = DTOFigmaExportNodeFormat; exports.DTOFigmaExportNodePayload = DTOFigmaExportNodePayload; exports.DTOFigmaExportNodeResponse = DTOFigmaExportNodeResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFigmaSourceUpdatePayload = DTOFigmaSourceUpdatePayload; exports.DTOFile = DTOFile; exports.DTOFileFigmaRenderMode = DTOFileFigmaRenderMode; exports.DTOFileFinalizeBulkPayload = DTOFileFinalizeBulkPayload; exports.DTOFileFinalizeBulkResponse = DTOFileFinalizeBulkResponse; exports.DTOFileListResponse = DTOFileListResponse; exports.DTOFileReference = DTOFileReference; exports.DTOFileResponseItem = DTOFileResponseItem; exports.DTOFileSource = DTOFileSource; exports.DTOFileSourceFigma = DTOFileSourceFigma; exports.DTOFileSourceUpload = DTOFileSourceUpload; exports.DTOFileUploadBulkPayload = DTOFileUploadBulkPayload; exports.DTOFileUploadBulkResponse = DTOFileUploadBulkResponse; exports.DTOFileUploadFinalizePayload = DTOFileUploadFinalizePayload; exports.DTOFileUploadFinalizeResponse = DTOFileUploadFinalizeResponse; exports.DTOFileUploadItem = DTOFileUploadItem; exports.DTOFileUploadPayload = DTOFileUploadPayload; exports.DTOFileUploadResponse = DTOFileUploadResponse; exports.DTOFileUploadResponseItem = DTOFileUploadResponseItem; exports.DTOFilesGetPayload = DTOFilesGetPayload; exports.DTOFilesGetQuery = DTOFilesGetQuery; exports.DTOFilesResponse = DTOFilesResponse; exports.DTOForgeAgent = DTOForgeAgent; exports.DTOForgeAgentsListResponse = DTOForgeAgentsListResponse; exports.DTOForgeArtifact = DTOForgeArtifact; exports.DTOForgeArtifactGetResponse = DTOForgeArtifactGetResponse; exports.DTOForgeArtifactsListResponse = DTOForgeArtifactsListResponse; exports.DTOForgeAvatarBuilder = DTOForgeAvatarBuilder; exports.DTOForgeBuildArtifact = DTOForgeBuildArtifact; exports.DTOForgeChatExportResponse = DTOForgeChatExportResponse; exports.DTOForgeChatMessage = DTOForgeChatMessage; exports.DTOForgeChatMessageCreateInput = DTOForgeChatMessageCreateInput; exports.DTOForgeChatMessageCreateResponse = DTOForgeChatMessageCreateResponse; exports.DTOForgeChatMessageListQuery = DTOForgeChatMessageListQuery; exports.DTOForgeChatMessageListResponse = DTOForgeChatMessageListResponse; exports.DTOForgeChatMessageScoreInput = DTOForgeChatMessageScoreInput; exports.DTOForgeChatMessageScoreRequest = DTOForgeChatMessageScoreRequest; exports.DTOForgeChatMessageSender = DTOForgeChatMessageSender; exports.DTOForgeChatMessageSenderType = DTOForgeChatMessageSenderType; exports.DTOForgeChatMessageTagInput = DTOForgeChatMessageTagInput; exports.DTOForgeChatThread = DTOForgeChatThread; exports.DTOForgeChatThreadCreateInput = DTOForgeChatThreadCreateInput; exports.DTOForgeChatThreadCreateResponse = DTOForgeChatThreadCreateResponse; exports.DTOForgeChatThreadDeleteResponse = DTOForgeChatThreadDeleteResponse; exports.DTOForgeChatThreadListQuery = DTOForgeChatThreadListQuery; exports.DTOForgeChatThreadListResponse = DTOForgeChatThreadListResponse; exports.DTOForgeChatThreadUpdateInput = DTOForgeChatThreadUpdateInput; exports.DTOForgeChatThreadUpdateResponse = DTOForgeChatThreadUpdateResponse; exports.DTOForgeComponentSet = DTOForgeComponentSet; exports.DTOForgeComponentSetTypeV2 = DTOForgeComponentSetTypeV2; exports.DTOForgeDocumentGetByIdParam = DTOForgeDocumentGetByIdParam; exports.DTOForgeDocumentGetResponse = DTOForgeDocumentGetResponse; exports.DTOForgeEntity = DTOForgeEntity; exports.DTOForgeFeatureRoom = DTOForgeFeatureRoom; exports.DTOForgeFeatureRoomResponse = DTOForgeFeatureRoomResponse; exports.DTOForgeFigmaArtifact = DTOForgeFigmaArtifact; exports.DTOForgeFileArtifact = DTOForgeFileArtifact; exports.DTOForgeIconSet = DTOForgeIconSet; exports.DTOForgeIconSetTypeV2 = DTOForgeIconSetTypeV2; exports.DTOForgeIterationMessage = DTOForgeIterationMessage; exports.DTOForgeIterationMessagesListResponse = DTOForgeIterationMessagesListResponse; exports.DTOForgeMemoryCreateInput = DTOForgeMemoryCreateInput; exports.DTOForgeMemoryDeleteInput = DTOForgeMemoryDeleteInput; exports.DTOForgeMemoryEntry = DTOForgeMemoryEntry; exports.DTOForgeMemoryEntryListQuery = DTOForgeMemoryEntryListQuery; exports.DTOForgeMemoryEntryListResponse = DTOForgeMemoryEntryListResponse; exports.DTOForgeMemoryEntryResponse = DTOForgeMemoryEntryResponse; exports.DTOForgeMemoryUpdateInput = DTOForgeMemoryUpdateInput; exports.DTOForgeParticipant = DTOForgeParticipant; exports.DTOForgeParticipantGetResponse = DTOForgeParticipantGetResponse; exports.DTOForgeParticipantsListResponse = DTOForgeParticipantsListResponse; exports.DTOForgeProject = DTOForgeProject; exports.DTOForgeProjectAccessMode = DTOForgeProjectAccessMode; exports.DTOForgeProjectAction = DTOForgeProjectAction; exports.DTOForgeProjectActionArtifactCreate = DTOForgeProjectActionArtifactCreate; exports.DTOForgeProjectActionArtifactDelete = DTOForgeProjectActionArtifactDelete; exports.DTOForgeProjectActionArtifactMove = DTOForgeProjectActionArtifactMove; exports.DTOForgeProjectActionArtifactUpdate = DTOForgeProjectActionArtifactUpdate; exports.DTOForgeProjectActionFeatureCreate = DTOForgeProjectActionFeatureCreate; exports.DTOForgeProjectActionFeatureDelete = DTOForgeProjectActionFeatureDelete; exports.DTOForgeProjectActionFeatureMove = DTOForgeProjectActionFeatureMove; exports.DTOForgeProjectActionFeatureUpdate = DTOForgeProjectActionFeatureUpdate; exports.DTOForgeProjectActionSectionCreate = DTOForgeProjectActionSectionCreate; exports.DTOForgeProjectActionSectionDelete = DTOForgeProjectActionSectionDelete; exports.DTOForgeProjectActionSectionMove = DTOForgeProjectActionSectionMove; exports.DTOForgeProjectActionSectionUpdate = DTOForgeProjectActionSectionUpdate; exports.DTOForgeProjectArtifact = DTOForgeProjectArtifact; exports.DTOForgeProjectArtifactContentResponse = DTOForgeProjectArtifactContentResponse; exports.DTOForgeProjectArtifactCreateInput = DTOForgeProjectArtifactCreateInput; exports.DTOForgeProjectArtifactCreateResponse = DTOForgeProjectArtifactCreateResponse; exports.DTOForgeProjectArtifactDeleteInput = DTOForgeProjectArtifactDeleteInput; exports.DTOForgeProjectArtifactDeleteResponse = DTOForgeProjectArtifactDeleteResponse; exports.DTOForgeProjectArtifactGetResponse = DTOForgeProjectArtifactGetResponse; exports.DTOForgeProjectArtifactMoveInput = DTOForgeProjectArtifactMoveInput; exports.DTOForgeProjectArtifactMoveResponse = DTOForgeProjectArtifactMoveResponse; exports.DTOForgeProjectArtifactRoom = DTOForgeProjectArtifactRoom; exports.DTOForgeProjectArtifactRoomResponse = DTOForgeProjectArtifactRoomResponse; exports.DTOForgeProjectArtifactUpdateInput = DTOForgeProjectArtifactUpdateInput; exports.DTOForgeProjectArtifactUpdateResponse = DTOForgeProjectArtifactUpdateResponse; exports.DTOForgeProjectArtifactsListResponse = DTOForgeProjectArtifactsListResponse; exports.DTOForgeProjectContext = DTOForgeProjectContext; exports.DTOForgeProjectContextCreateResponse = DTOForgeProjectContextCreateResponse; exports.DTOForgeProjectContextCreateV2 = DTOForgeProjectContextCreateV2; exports.DTOForgeProjectContextCreated = DTOForgeProjectContextCreated; exports.DTOForgeProjectContextDeleted = DTOForgeProjectContextDeleted; exports.DTOForgeProjectContextGetResponse = DTOForgeProjectContextGetResponse; exports.DTOForgeProjectContextListQueryV2 = DTOForgeProjectContextListQueryV2; exports.DTOForgeProjectContextListResponse = DTOForgeProjectContextListResponse; exports.DTOForgeProjectContextListResponseV2 = DTOForgeProjectContextListResponseV2; exports.DTOForgeProjectContextRemoveResponse = DTOForgeProjectContextRemoveResponse; exports.DTOForgeProjectContextResponseV2 = DTOForgeProjectContextResponseV2; exports.DTOForgeProjectContextUpdateResponse = DTOForgeProjectContextUpdateResponse; exports.DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextUpdateV2; exports.DTOForgeProjectContextUpdated = DTOForgeProjectContextUpdated; exports.DTOForgeProjectContextV2 = DTOForgeProjectContextV2; exports.DTOForgeProjectCreate = DTOForgeProjectCreate; exports.DTOForgeProjectCreated = DTOForgeProjectCreated; exports.DTOForgeProjectDefaultRole = DTOForgeProjectDefaultRole; exports.DTOForgeProjectDocumentPreview = DTOForgeProjectDocumentPreview; exports.DTOForgeProjectFeature = DTOForgeProjectFeature; exports.DTOForgeProjectFeatureCreateInput = DTOForgeProjectFeatureCreateInput; exports.DTOForgeProjectFeatureDeleteInput = DTOForgeProjectFeatureDeleteInput; exports.DTOForgeProjectFeatureGetByIdParam = DTOForgeProjectFeatureGetByIdParam; exports.DTOForgeProjectFeatureGetResponse = DTOForgeProjectFeatureGetResponse; exports.DTOForgeProjectFeatureListResponse = DTOForgeProjectFeatureListResponse; exports.DTOForgeProjectFeatureMoveInput = DTOForgeProjectFeatureMoveInput; exports.DTOForgeProjectFeaturePreview = DTOForgeProjectFeaturePreview; exports.DTOForgeProjectFeatureUpdateInput = DTOForgeProjectFeatureUpdateInput; exports.DTOForgeProjectFigmaNode = DTOForgeProjectFigmaNode; exports.DTOForgeProjectFigmaNodeRenderInput = DTOForgeProjectFigmaNodeRenderInput; exports.DTOForgeProjectFile = DTOForgeProjectFile; exports.DTOForgeProjectFileListResponse = DTOForgeProjectFileListResponse; exports.DTOForgeProjectFileUploadFinalizePayload = DTOForgeProjectFileUploadFinalizePayload; exports.DTOForgeProjectFileUploadFinalizeResponse = DTOForgeProjectFileUploadFinalizeResponse; exports.DTOForgeProjectFileUploadPayload = DTOForgeProjectFileUploadPayload; exports.DTOForgeProjectFileUploadPayloadItem = DTOForgeProjectFileUploadPayloadItem; exports.DTOForgeProjectFileUploadResponse = DTOForgeProjectFileUploadResponse; exports.DTOForgeProjectInvitation = DTOForgeProjectInvitation; exports.DTOForgeProjectInvitationCreateResponse = DTOForgeProjectInvitationCreateResponse; exports.DTOForgeProjectInvitationGetResponse = DTOForgeProjectInvitationGetResponse; exports.DTOForgeProjectInvitationRemoveResponse = DTOForgeProjectInvitationRemoveResponse; exports.DTOForgeProjectInvitationUpdateResponse = DTOForgeProjectInvitationUpdateResponse; exports.DTOForgeProjectInvitationsListResponse = DTOForgeProjectInvitationsListResponse; exports.DTOForgeProjectIteration = DTOForgeProjectIteration; exports.DTOForgeProjectIterationListResponse = DTOForgeProjectIterationListResponse; exports.DTOForgeProjectIterationMergeMeta = DTOForgeProjectIterationMergeMeta; exports.DTOForgeProjectIterationTagSet = DTOForgeProjectIterationTagSet; exports.DTOForgeProjectListResponse = DTOForgeProjectListResponse; exports.DTOForgeProjectMember = DTOForgeProjectMember; exports.DTOForgeProjectMemberCreateResponse = DTOForgeProjectMemberCreateResponse; exports.DTOForgeProjectMemberDeleted = DTOForgeProjectMemberDeleted; exports.DTOForgeProjectMemberGetResponse = DTOForgeProjectMemberGetResponse; exports.DTOForgeProjectMemberListQuery = DTOForgeProjectMemberListQuery; exports.DTOForgeProjectMemberRemoveResponse = DTOForgeProjectMemberRemoveResponse; exports.DTOForgeProjectMemberRole = DTOForgeProjectMemberRole; exports.DTOForgeProjectMemberUpdateResponse = DTOForgeProjectMemberUpdateResponse; exports.DTOForgeProjectMemberUpdated = DTOForgeProjectMemberUpdated; exports.DTOForgeProjectMembersCreated = DTOForgeProjectMembersCreated; exports.DTOForgeProjectMembersListResponse = DTOForgeProjectMembersListResponse; exports.DTOForgeProjectPublishedFeature = DTOForgeProjectPublishedFeature; exports.DTOForgeProjectPublishedFeatureGetResponse = DTOForgeProjectPublishedFeatureGetResponse; exports.DTOForgeProjectResponse = DTOForgeProjectResponse; exports.DTOForgeProjectRole = DTOForgeProjectRole; exports.DTOForgeProjectRoom = DTOForgeProjectRoom; exports.DTOForgeProjectRoomEvent = DTOForgeProjectRoomEvent; exports.DTOForgeProjectRoomResponse = DTOForgeProjectRoomResponse; exports.DTOForgeProjectTheme = DTOForgeProjectTheme; exports.DTOForgeProjectUpdate = DTOForgeProjectUpdate; exports.DTOForgeProjectUpdated = DTOForgeProjectUpdated; exports.DTOForgeRelation = DTOForgeRelation; exports.DTOForgeRelationCreate = DTOForgeRelationCreate; exports.DTOForgeRelationDelete = DTOForgeRelationDelete; exports.DTOForgeRelationListInput = DTOForgeRelationListInput; exports.DTOForgeRelationListResponse = DTOForgeRelationListResponse; exports.DTOForgeRelationType = DTOForgeRelationType; exports.DTOForgeSection = DTOForgeSection; exports.DTOForgeSectionCreateInput = DTOForgeSectionCreateInput; exports.DTOForgeSectionDeleteInput = DTOForgeSectionDeleteInput; exports.DTOForgeSectionItemMoveInput = DTOForgeSectionItemMoveInput; exports.DTOForgeSectionMoveInput = DTOForgeSectionMoveInput; exports.DTOForgeSectionUpdateInput = DTOForgeSectionUpdateInput; exports.DTOForgeSpecArtifact = DTOForgeSpecArtifact; exports.DTOForgeThemeKnownPreset = DTOForgeThemeKnownPreset; exports.DTOForgeTokenThemeSet = DTOForgeTokenThemeSet; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetBlockDefinitionsQuery = DTOGetBlockDefinitionsQuery; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGetForgeIterationMessageResponse = DTOGetForgeIterationMessageResponse; exports.DTOGetForgeProjectIterationResponse = DTOGetForgeProjectIterationResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMCPStream = DTOMCPStream; exports.DTOMCPStreamResponse = DTOMCPStreamResponse; exports.DTOMCPStreamUpdateInput = DTOMCPStreamUpdateInput; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONotificationBase = DTONotificationBase; exports.DTONotificationChannel = DTONotificationChannel; exports.DTONotificationChatMentionPayload = DTONotificationChatMentionPayload; exports.DTONotificationCreateInput = DTONotificationCreateInput; exports.DTONotificationProjectDocumentCommentPayload = DTONotificationProjectDocumentCommentPayload; exports.DTONotificationProjectInvitationPayload = DTONotificationProjectInvitationPayload; exports.DTONotificationType = DTONotificationType; exports.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPortalSettings = DTOPortalSettings; exports.DTOPortalSettingsGetResponse = DTOPortalSettingsGetResponse; exports.DTOPortalSettingsSidebar = DTOPortalSettingsSidebar; exports.DTOPortalSettingsSidebarLink = DTOPortalSettingsSidebarLink; exports.DTOPortalSettingsSidebarSection = DTOPortalSettingsSidebarSection; exports.DTOPortalSettingsTheme = DTOPortalSettingsTheme; exports.DTOPortalSettingsUpdatePayload = DTOPortalSettingsUpdatePayload; exports.DTOProduct = DTOProduct; exports.DTOProductCode = DTOProductCode; exports.DTOProductPrice = DTOProductPrice; exports.DTOProjectContextOverride = DTOProjectContextOverride; exports.DTOProjectContextOverrideInput = DTOProjectContextOverrideInput; exports.DTOProjectContextOverrideResponse = DTOProjectContextOverrideResponse; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORegistry = DTORegistry; exports.DTORemoveForgeProjectInvitation = DTORemoveForgeProjectInvitation; exports.DTORemoveForgeProjectMember = DTORemoveForgeProjectMember; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOSandboxError = DTOSandboxError; exports.DTOSandboxTemplate = DTOSandboxTemplate; exports.DTOSandboxTemplateBuild = DTOSandboxTemplateBuild; exports.DTOSandboxTemplateBuildCreateInput = DTOSandboxTemplateBuildCreateInput; exports.DTOSandboxTemplateBuildCreateResponse = DTOSandboxTemplateBuildCreateResponse; exports.DTOSandboxTemplateBuildCreated = DTOSandboxTemplateBuildCreated; exports.DTOSandboxTemplateBuildFinalizeResponse = DTOSandboxTemplateBuildFinalizeResponse; exports.DTOSandboxTemplateBuildFinished = DTOSandboxTemplateBuildFinished; exports.DTOSandboxTemplateBuildResponse = DTOSandboxTemplateBuildResponse; exports.DTOSandboxTemplateFile = DTOSandboxTemplateFile; exports.DTOSandboxTemplateListResponse = DTOSandboxTemplateListResponse; exports.DTOSandboxTemplateQuery = DTOSandboxTemplateQuery; exports.DTOSandboxTemplateResponse = DTOSandboxTemplateResponse; exports.DTOSandboxTemplateVersion = DTOSandboxTemplateVersion; exports.DTOSandboxTemplateVersionCreated = DTOSandboxTemplateVersionCreated; exports.DTOSandboxTemplateVersionDetail = DTOSandboxTemplateVersionDetail; exports.DTOStorybookAccessTokenPayload = DTOStorybookAccessTokenPayload; exports.DTOStorybookAccessTokenResponse = DTOStorybookAccessTokenResponse; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOStorybookUploadUrlRequest = DTOStorybookUploadUrlRequest; exports.DTOStorybookUploadUrlResponse = DTOStorybookUploadUrlResponse; exports.DTOSubscription = DTOSubscription; exports.DTOSubscriptionResponse = DTOSubscriptionResponse; exports.DTOSubscriptionUpcomingChange = DTOSubscriptionUpcomingChange; exports.DTOSubscriptionUpdateInput = DTOSubscriptionUpdateInput; exports.DTOSubscriptionUpdatePreview = DTOSubscriptionUpdatePreview; exports.DTOSubscriptionUpdatePreviewResponse = DTOSubscriptionUpdatePreviewResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOThemesListQuery = DTOThemesListQuery; exports.DTOThread = DTOThread; exports.DTOThreadAgentResponseTracker = DTOThreadAgentResponseTracker; exports.DTOThreadAgentType = DTOThreadAgentType; exports.DTOThreadEvent = DTOThreadEvent; exports.DTOThreadEventMessagesSent = DTOThreadEventMessagesSent; exports.DTOThreadEventMessagesUpdated = DTOThreadEventMessagesUpdated; exports.DTOThreadEventReactionsDeleted = DTOThreadEventReactionsDeleted; exports.DTOThreadEventReactionsSent = DTOThreadEventReactionsSent; exports.DTOThreadMessage = DTOThreadMessage; exports.DTOThreadMessageAgentSender = DTOThreadMessageAgentSender; exports.DTOThreadMessageAttachments = DTOThreadMessageAttachments; exports.DTOThreadMessageAttachmentsCreateInput = DTOThreadMessageAttachmentsCreateInput; exports.DTOThreadMessageCreateInput = DTOThreadMessageCreateInput; exports.DTOThreadMessageFinalizeInput = DTOThreadMessageFinalizeInput; exports.DTOThreadMessageListResponse = DTOThreadMessageListResponse; exports.DTOThreadMessageResponse = DTOThreadMessageResponse; exports.DTOThreadMessageRetryInput = DTOThreadMessageRetryInput; exports.DTOThreadMessageSender = DTOThreadMessageSender; exports.DTOThreadMessageSystemSender = DTOThreadMessageSystemSender; exports.DTOThreadMessageUpdateInput = DTOThreadMessageUpdateInput; exports.DTOThreadMessageUserSender = DTOThreadMessageUserSender; exports.DTOThreadPromptState = DTOThreadPromptState; exports.DTOThreadReaction = DTOThreadReaction; exports.DTOThreadReactionCreateInput = DTOThreadReactionCreateInput; exports.DTOThreadReactionDeleteInput = DTOThreadReactionDeleteInput; exports.DTOThreadReactionResponse = DTOThreadReactionResponse; exports.DTOThreadSubjectType = DTOThreadSubjectType; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTrailEvent = DTOTrailEvent; exports.DTOTrailEventClientCreate = DTOTrailEventClientCreate; exports.DTOTrailEventCreate = DTOTrailEventCreate; exports.DTOTrailEventListInput = DTOTrailEventListInput; exports.DTOTrailEventListResponse = DTOTrailEventListResponse; exports.DTOTrailEventType = DTOTrailEventType; exports.DTOTrailEventWithDetails = DTOTrailEventWithDetails; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUGetForgeAgentResponse = DTOUGetForgeAgentResponse; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateForgeAgent = DTOUpdateForgeAgent; exports.DTOUpdateForgeAgentResponse = DTOUpdateForgeAgentResponse; exports.DTOUpdateForgeArtifact = DTOUpdateForgeArtifact; exports.DTOUpdateForgeArtifactResponse = DTOUpdateForgeArtifactResponse; exports.DTOUpdateForgeBuildArtifact = DTOUpdateForgeBuildArtifact; exports.DTOUpdateForgeFigmaArtifact = DTOUpdateForgeFigmaArtifact; exports.DTOUpdateForgeFileArtifact = DTOUpdateForgeFileArtifact; exports.DTOUpdateForgeIterationMessage = DTOUpdateForgeIterationMessage; exports.DTOUpdateForgeIterationMessageResponse = DTOUpdateForgeIterationMessageResponse; exports.DTOUpdateForgeParticipant = DTOUpdateForgeParticipant; exports.DTOUpdateForgeParticipantResponse = DTOUpdateForgeParticipantResponse; exports.DTOUpdateForgeProjectContext = DTOUpdateForgeProjectContext; exports.DTOUpdateForgeProjectInvitation = DTOUpdateForgeProjectInvitation; exports.DTOUpdateForgeProjectIteration = DTOUpdateForgeProjectIteration; exports.DTOUpdateForgeProjectIterationResponse = DTOUpdateForgeProjectIterationResponse; exports.DTOUpdateForgeProjectMember = DTOUpdateForgeProjectMember; exports.DTOUpdateForgeSpecArtifact = DTOUpdateForgeSpecArtifact; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUploadUrlItem = DTOUploadUrlItem; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserEmailSettings = DTOUserEmailSettings; exports.DTOUserEmailSettingsUpdatePayload = DTOUserEmailSettingsUpdatePayload; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettings = DTOUserNotificationSettings; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserPortalTheme = DTOUserPortalTheme; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserUpdatePayload = DTOUserUpdatePayload; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceBilledSeatType = DTOWorkspaceBilledSeatType; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceDefaultProjectAccessMode = DTOWorkspaceDefaultProjectAccessMode; exports.DTOWorkspaceDefaultProjectRole = DTOWorkspaceDefaultProjectRole; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitation = DTOWorkspaceInvitation; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceRoomEvent = DTOWorkspaceRoomEvent; exports.DTOWorkspaceSeatType = DTOWorkspaceSeatType; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemFilesEndpoint = DesignSystemFilesEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FeatureRoomBaseYDoc = FeatureRoomBaseYDoc; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FilesEndpoint = FilesEndpoint; exports.ForgeAgentsEndpoint = ForgeAgentsEndpoint; exports.ForgeArtifactsEndpoint = ForgeArtifactsEndpoint; exports.ForgeDocumentsEndpoint = ForgeDocumentsEndpoint; exports.ForgeEndpoint = ForgeEndpoint; exports.ForgeFeatureArtifactsEndpoint = ForgeFeatureArtifactsEndpoint; exports.ForgeFeatureIterationsEndpoint = ForgeFeatureIterationsEndpoint; exports.ForgeFeatureMessagesEndpoint = ForgeFeatureMessagesEndpoint; exports.ForgeMemoryEndpoint = ForgeMemoryEndpoint; exports.ForgeProjectContentRepository = ForgeProjectContentRepository; exports.ForgeProjectContextsEndpoint = ForgeProjectContextsEndpoint; exports.ForgeProjectFeaturesEndpoint = ForgeProjectFeaturesEndpoint; exports.ForgeProjectFilesEndpoint = ForgeProjectFilesEndpoint; exports.ForgeProjectInvitationsEndpoint = ForgeProjectInvitationsEndpoint; exports.ForgeProjectIterationsEndpoint = ForgeProjectIterationsEndpoint; exports.ForgeProjectMembersEndpoint = ForgeProjectMembersEndpoint; exports.ForgeProjectRoomBaseYDoc = ForgeProjectRoomBaseYDoc; exports.ForgeProjectsEndpoint = ForgeProjectsEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendFeatureRoomYDoc = FrontendFeatureRoomYDoc; exports.FrontendThreadRoomYDoc = FrontendThreadRoomYDoc; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.LocalProjectActionExecutor = LocalProjectActionExecutor; exports.MCPStreamsEndpoint = MCPStreamsEndpoint; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.SandboxTemplateBuildsEndpoint = SandboxTemplateBuildsEndpoint; exports.SandboxTemplatesEndpoint = SandboxTemplatesEndpoint; exports.SandboxesEndpoint = SandboxesEndpoint; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookHostingEndpoint = StorybookHostingEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.ThreadRoomBaseYDoc = ThreadRoomBaseYDoc; exports.ThreadsEndpoint = ThreadsEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceBillingEndpoint = WorkspaceBillingEndpoint; exports.WorkspaceChatThreadsEndpoint = WorkspaceChatThreadsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspaceSubscriptionEndpoint = WorkspaceSubscriptionEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.applyProjectActionsLocally = applyProjectActionsLocally; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.zodQueryBoolean = zodQueryBoolean;
|
|
20953
20959
|
//# sourceMappingURL=index.js.map
|