@supernova-studio/client 1.72.0 → 1.72.2
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 +3159 -2806
- package/dist/index.d.ts +3159 -2806
- package/dist/index.js +669 -630
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2217 -2178
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4933,7 +4933,6 @@ var WorkspaceConfigurationUpdate = _zod.z.object({
|
|
|
4933
4933
|
var WorkspaceContext = _zod.z.object({
|
|
4934
4934
|
workspaceId: _zod.z.string(),
|
|
4935
4935
|
product: ProductCodeSchema,
|
|
4936
|
-
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
4937
4936
|
publicDesignSystem: _zod.z.boolean().optional()
|
|
4938
4937
|
});
|
|
4939
4938
|
var WORKSPACE_NAME_MIN_LENGTH = 2;
|
|
@@ -7227,25 +7226,6 @@ function zodQueryBoolean() {
|
|
|
7227
7226
|
}
|
|
7228
7227
|
|
|
7229
7228
|
// src/api/dto/design-systems/storybook.ts
|
|
7230
|
-
var DTOStorybookUploadUrlRequest = _zod.z.object({
|
|
7231
|
-
name: _zod.z.string()
|
|
7232
|
-
});
|
|
7233
|
-
var DTOStorybookUploadUrlResponse = _zod.z.object({
|
|
7234
|
-
signedUrl: _zod.z.string(),
|
|
7235
|
-
storybookUploadId: _zod.z.string()
|
|
7236
|
-
});
|
|
7237
|
-
var DTOStorybookAccessTokenResponse = _zod.z.object({
|
|
7238
|
-
accessToken: _zod.z.string()
|
|
7239
|
-
});
|
|
7240
|
-
var DTOStorybookAccessTokenPayload = _zod.z.object({
|
|
7241
|
-
designSystemId: _zod.z.string(),
|
|
7242
|
-
storybookUploadId: _zod.z.string()
|
|
7243
|
-
});
|
|
7244
|
-
var DTOStorybookUploadStatus = _zod.z.object({
|
|
7245
|
-
status: _zod.z.enum(["Failed", "InProgress", "Completed", "Unknown"]),
|
|
7246
|
-
timestamp: _zod.z.number().optional(),
|
|
7247
|
-
reason: _zod.z.string().optional()
|
|
7248
|
-
});
|
|
7249
7229
|
var DTOStorybookEntryOrigin = _zod.z.object({
|
|
7250
7230
|
id: _zod.z.string(),
|
|
7251
7231
|
type: _zod.z.enum(["story", "docs"]),
|
|
@@ -7462,6 +7442,23 @@ var DTOWorkspaceInvitationUpdateResponse = _zod.z.object({
|
|
|
7462
7442
|
invitation: DTOWorkspaceInvitation
|
|
7463
7443
|
});
|
|
7464
7444
|
|
|
7445
|
+
// src/api/dto/workspaces/ip-whitelist.ts
|
|
7446
|
+
|
|
7447
|
+
var DTOIPWhitelistEntry = _zod2.default.object({
|
|
7448
|
+
isEnabled: _zod2.default.boolean(),
|
|
7449
|
+
name: _zod2.default.string(),
|
|
7450
|
+
range: _zod2.default.string().cidr()
|
|
7451
|
+
});
|
|
7452
|
+
var DTOIPWhitelist = _zod2.default.object({
|
|
7453
|
+
isEnabledForCloud: _zod2.default.boolean(),
|
|
7454
|
+
isEnabledForDocs: _zod2.default.boolean(),
|
|
7455
|
+
entries: DTOIPWhitelistEntry.array()
|
|
7456
|
+
});
|
|
7457
|
+
var DTOIPWhitelistUpdate = DTOIPWhitelist.partial();
|
|
7458
|
+
var DTOIPWhitelistResponse = _zod2.default.object({
|
|
7459
|
+
ipWhitelist: DTOIPWhitelist
|
|
7460
|
+
});
|
|
7461
|
+
|
|
7465
7462
|
// src/api/dto/workspaces/membership.ts
|
|
7466
7463
|
|
|
7467
7464
|
|
|
@@ -7751,15 +7748,6 @@ var DTOUserDesignSystemsResponse = _zod.z.object({
|
|
|
7751
7748
|
workspaces: DTOWorkspace.array()
|
|
7752
7749
|
});
|
|
7753
7750
|
|
|
7754
|
-
// src/api/dto/design-systems/version-room.ts
|
|
7755
|
-
|
|
7756
|
-
var DTODesignSystemVersionRoom = _zod.z.object({
|
|
7757
|
-
id: _zod.z.string()
|
|
7758
|
-
});
|
|
7759
|
-
var DTODesignSystemVersionRoomResponse = _zod.z.object({
|
|
7760
|
-
room: DTODesignSystemVersionRoom
|
|
7761
|
-
});
|
|
7762
|
-
|
|
7763
7751
|
// src/api/dto/design-systems/version.ts
|
|
7764
7752
|
|
|
7765
7753
|
|
|
@@ -8115,6 +8103,15 @@ var DTODesignSystemVersionJobStatusResponse = _zod.z.object({
|
|
|
8115
8103
|
job: VersionCreationJob
|
|
8116
8104
|
});
|
|
8117
8105
|
|
|
8106
|
+
// src/api/dto/design-systems/version-room.ts
|
|
8107
|
+
|
|
8108
|
+
var DTODesignSystemVersionRoom = _zod.z.object({
|
|
8109
|
+
id: _zod.z.string()
|
|
8110
|
+
});
|
|
8111
|
+
var DTODesignSystemVersionRoomResponse = _zod.z.object({
|
|
8112
|
+
room: DTODesignSystemVersionRoom
|
|
8113
|
+
});
|
|
8114
|
+
|
|
8118
8115
|
// src/api/dto/design-systems/view.ts
|
|
8119
8116
|
|
|
8120
8117
|
var DTOElementViewColumnSharedAttributes = _zod.z.object({
|
|
@@ -11393,6 +11390,42 @@ var DTOSandboxTemplateBuildFinalizeResponse = _zod2.default.object({
|
|
|
11393
11390
|
ok: _zod2.default.boolean()
|
|
11394
11391
|
});
|
|
11395
11392
|
|
|
11393
|
+
// src/api/dto/storybook-sites/index.ts
|
|
11394
|
+
|
|
11395
|
+
var DTOStorybookUploadStatus = _zod.z.enum(["PendingUpload", "Failed", "InProgress", "Completed", "Timeout"]);
|
|
11396
|
+
var DTOStorybookSiteVersion = _zod.z.object({
|
|
11397
|
+
id: _zod.z.string(),
|
|
11398
|
+
isPublic: _zod.z.boolean(),
|
|
11399
|
+
createdAt: _zod.z.string(),
|
|
11400
|
+
uploadStatus: DTOStorybookUploadStatus
|
|
11401
|
+
});
|
|
11402
|
+
var DTOStorybookSite = _zod.z.object({
|
|
11403
|
+
id: _zod.z.string(),
|
|
11404
|
+
designSystemId: _zod.z.string(),
|
|
11405
|
+
name: _zod.z.string(),
|
|
11406
|
+
indexPageUrl: _zod.z.string(),
|
|
11407
|
+
createdAt: _zod.z.string(),
|
|
11408
|
+
currentVersion: DTOStorybookSiteVersion
|
|
11409
|
+
});
|
|
11410
|
+
var DTOStorybookSiteListQuery = _zod.z.object({
|
|
11411
|
+
designSystemId: _zod.z.string()
|
|
11412
|
+
});
|
|
11413
|
+
var DTOStorybookSiteListResponse = _zod.z.object({
|
|
11414
|
+
sites: DTOStorybookSite.array()
|
|
11415
|
+
});
|
|
11416
|
+
var DTOStorybookSiteUploadPayload = _zod.z.object({
|
|
11417
|
+
designSystemId: _zod.z.string(),
|
|
11418
|
+
isPublic: _zod.z.boolean(),
|
|
11419
|
+
name: _zod.z.string()
|
|
11420
|
+
});
|
|
11421
|
+
var DTOStorybookSiteUploadResponse = _zod.z.object({
|
|
11422
|
+
storybookSiteVersion: DTOStorybookSiteVersion,
|
|
11423
|
+
uploadUrl: _zod.z.string()
|
|
11424
|
+
});
|
|
11425
|
+
var DTOStorybookSiteVersionResponse = _zod.z.object({
|
|
11426
|
+
storybookSiteVersion: DTOStorybookSiteVersion
|
|
11427
|
+
});
|
|
11428
|
+
|
|
11396
11429
|
// src/api/dto/themes/override.ts
|
|
11397
11430
|
|
|
11398
11431
|
var DTOThemeOverride = DesignTokenTypedData.and(
|
|
@@ -11682,791 +11715,758 @@ var CodegenEndpoint = class {
|
|
|
11682
11715
|
}
|
|
11683
11716
|
};
|
|
11684
11717
|
|
|
11685
|
-
// src/api/endpoints/design-system/
|
|
11686
|
-
|
|
11687
|
-
var BrandsEndpoint = class {
|
|
11718
|
+
// src/api/endpoints/design-system/analytics.ts
|
|
11719
|
+
var DesignSystemAnalyticsEndpoint = class {
|
|
11688
11720
|
constructor(requestExecutor) {
|
|
11689
11721
|
this.requestExecutor = requestExecutor;
|
|
11690
11722
|
}
|
|
11691
|
-
get(designSystemId, versionId,
|
|
11692
|
-
return this.requestExecutor.json(
|
|
11693
|
-
`/design-systems/${designSystemId}/versions/${versionId}/brands/${brandId}`,
|
|
11694
|
-
DTOBrandGetResponse
|
|
11695
|
-
);
|
|
11696
|
-
}
|
|
11697
|
-
list(designSystemId, versionId) {
|
|
11698
|
-
return this.requestExecutor.json(
|
|
11699
|
-
`/design-systems/${designSystemId}/versions/${versionId}/brands`,
|
|
11700
|
-
DTOBrandsListResponse
|
|
11701
|
-
);
|
|
11702
|
-
}
|
|
11703
|
-
create(designSystemId, versionId, body) {
|
|
11723
|
+
get(designSystemId, versionId, body) {
|
|
11704
11724
|
return this.requestExecutor.json(
|
|
11705
|
-
`/design-systems/${designSystemId}/versions/${versionId}/
|
|
11706
|
-
|
|
11707
|
-
{
|
|
11708
|
-
method: "POST",
|
|
11709
|
-
body
|
|
11710
|
-
}
|
|
11725
|
+
`/design-systems/${designSystemId}/versions/${versionId}/documentation/analytics`,
|
|
11726
|
+
DTODocumentationPageAnalyticsResponse,
|
|
11727
|
+
{ method: "POST", body }
|
|
11711
11728
|
);
|
|
11712
11729
|
}
|
|
11713
|
-
|
|
11714
|
-
|
|
11715
|
-
|
|
11716
|
-
|
|
11717
|
-
|
|
11730
|
+
};
|
|
11731
|
+
|
|
11732
|
+
// src/api/endpoints/design-system/bff.ts
|
|
11733
|
+
var DesignSystemBffEndpoint = class {
|
|
11734
|
+
constructor(requestExecutor) {
|
|
11735
|
+
this.requestExecutor = requestExecutor;
|
|
11718
11736
|
}
|
|
11719
|
-
|
|
11720
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/
|
|
11721
|
-
method: "
|
|
11737
|
+
import(dsId, payload) {
|
|
11738
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/bff/import`, DTOImportJobResponse, {
|
|
11739
|
+
method: "POST",
|
|
11740
|
+
body: payload
|
|
11722
11741
|
});
|
|
11723
11742
|
}
|
|
11724
11743
|
};
|
|
11725
11744
|
|
|
11726
|
-
// src/api/endpoints/design-system/
|
|
11727
|
-
var
|
|
11745
|
+
// src/api/endpoints/design-system/contact.ts
|
|
11746
|
+
var DesignSystemContactsEndpoint = class {
|
|
11728
11747
|
constructor(requestExecutor) {
|
|
11729
11748
|
this.requestExecutor = requestExecutor;
|
|
11730
11749
|
}
|
|
11731
|
-
|
|
11732
|
-
return this.requestExecutor.json(
|
|
11733
|
-
|
|
11734
|
-
|
|
11735
|
-
{
|
|
11736
|
-
body,
|
|
11737
|
-
method: "POST"
|
|
11738
|
-
}
|
|
11739
|
-
);
|
|
11750
|
+
list(dsId) {
|
|
11751
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/contacts`, DTODesignSystemContactsResponse, {
|
|
11752
|
+
method: "GET"
|
|
11753
|
+
});
|
|
11740
11754
|
}
|
|
11741
|
-
|
|
11742
|
-
|
|
11743
|
-
|
|
11744
|
-
|
|
11745
|
-
|
|
11746
|
-
|
|
11755
|
+
};
|
|
11756
|
+
|
|
11757
|
+
// src/api/endpoints/design-system/design-systems.ts
|
|
11758
|
+
|
|
11759
|
+
|
|
11760
|
+
// src/api/endpoints/design-system/figma-node-structures.ts
|
|
11761
|
+
var FigmaNodeStructuresEndpoint = class {
|
|
11762
|
+
constructor(requestExecutor) {
|
|
11763
|
+
this.requestExecutor = requestExecutor;
|
|
11747
11764
|
}
|
|
11748
|
-
|
|
11765
|
+
list(dsId) {
|
|
11749
11766
|
return this.requestExecutor.json(
|
|
11750
|
-
`/design-systems/${dsId}/
|
|
11751
|
-
|
|
11752
|
-
{
|
|
11753
|
-
method: "DELETE"
|
|
11754
|
-
}
|
|
11767
|
+
`/design-systems/${dsId}/figma-node-structures`,
|
|
11768
|
+
DTOFigmaNodeStructureListResponse
|
|
11755
11769
|
);
|
|
11756
11770
|
}
|
|
11757
|
-
|
|
11771
|
+
get(dsId, structureId) {
|
|
11758
11772
|
return this.requestExecutor.json(
|
|
11759
|
-
`/design-systems/${dsId}/
|
|
11760
|
-
|
|
11761
|
-
{
|
|
11762
|
-
body,
|
|
11763
|
-
method: "POST"
|
|
11764
|
-
}
|
|
11773
|
+
`/design-systems/${dsId}/figma-node-structures/${structureId}`,
|
|
11774
|
+
DTOFigmaNodeStructureDetailResponse
|
|
11765
11775
|
);
|
|
11766
11776
|
}
|
|
11767
11777
|
};
|
|
11768
11778
|
|
|
11769
|
-
// src/api/endpoints/design-system/
|
|
11770
|
-
var
|
|
11779
|
+
// src/api/endpoints/design-system/members.ts
|
|
11780
|
+
var DesignSystemMembersEndpoint = class {
|
|
11771
11781
|
constructor(requestExecutor) {
|
|
11772
11782
|
this.requestExecutor = requestExecutor;
|
|
11773
11783
|
}
|
|
11774
|
-
|
|
11775
|
-
return
|
|
11776
|
-
|
|
11777
|
-
|
|
11778
|
-
);
|
|
11779
|
-
}
|
|
11780
|
-
async getDocStructure(dsId, vId) {
|
|
11781
|
-
return await this.requestExecutor.json(
|
|
11782
|
-
`/design-systems/${dsId}/versions/${vId}/documentation/structure`,
|
|
11783
|
-
DTODocumentationStructure
|
|
11784
|
-
);
|
|
11785
|
-
}
|
|
11786
|
-
async getPageRoom(dsId, vId, pageId) {
|
|
11787
|
-
return await this.requestExecutor.json(
|
|
11788
|
-
`/design-systems/${dsId}/versions/${vId}/documentation/pages/${pageId}/room`,
|
|
11789
|
-
DTODocumentationPageRoomResponse
|
|
11790
|
-
);
|
|
11791
|
-
}
|
|
11792
|
-
async getBlockDefinitions(dsId, vId) {
|
|
11793
|
-
return await this.requestExecutor.json(
|
|
11794
|
-
`/design-systems/${dsId}/versions/${vId}/documentation/block-definitions`,
|
|
11795
|
-
DTOGetBlockDefinitionsOutput
|
|
11796
|
-
);
|
|
11797
|
-
}
|
|
11798
|
-
async publish(dsId, vId, body) {
|
|
11799
|
-
return await this.requestExecutor.json(
|
|
11800
|
-
`/design-systems/${dsId}/versions/${vId}/documentation/publish`,
|
|
11801
|
-
DTOPublishDocumentationResponse,
|
|
11802
|
-
{
|
|
11803
|
-
method: "POST",
|
|
11804
|
-
body
|
|
11805
|
-
}
|
|
11806
|
-
);
|
|
11784
|
+
list(dsId) {
|
|
11785
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/members`, DTODesignSystemMemberListResponse, {
|
|
11786
|
+
method: "GET"
|
|
11787
|
+
});
|
|
11807
11788
|
}
|
|
11808
|
-
|
|
11809
|
-
return this.requestExecutor.json(
|
|
11810
|
-
|
|
11811
|
-
|
|
11812
|
-
);
|
|
11789
|
+
update(dsId, body) {
|
|
11790
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/members`, DTODesignSystemMembersUpdateResponse, {
|
|
11791
|
+
method: "POST",
|
|
11792
|
+
body
|
|
11793
|
+
});
|
|
11813
11794
|
}
|
|
11814
11795
|
};
|
|
11815
11796
|
|
|
11816
|
-
// src/api/endpoints/design-system/
|
|
11817
|
-
var
|
|
11797
|
+
// src/api/endpoints/design-system/redirects.ts
|
|
11798
|
+
var DesignSystemPageRedirectsEndpoint = class {
|
|
11818
11799
|
constructor(requestExecutor) {
|
|
11819
11800
|
this.requestExecutor = requestExecutor;
|
|
11820
11801
|
}
|
|
11821
|
-
|
|
11802
|
+
create(dsId, body) {
|
|
11803
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/documentation/redirects`, DTOPageRedirectResponse, {
|
|
11804
|
+
body,
|
|
11805
|
+
method: "POST"
|
|
11806
|
+
});
|
|
11807
|
+
}
|
|
11808
|
+
list(dsId) {
|
|
11809
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/documentation/redirects`, DTOPageRedirectListResponse, {
|
|
11810
|
+
method: "GET"
|
|
11811
|
+
});
|
|
11812
|
+
}
|
|
11813
|
+
update(dsId, redirectId, body) {
|
|
11822
11814
|
return this.requestExecutor.json(
|
|
11823
|
-
`/design-systems/${dsId}/
|
|
11824
|
-
|
|
11825
|
-
{
|
|
11815
|
+
`/design-systems/${dsId}/documentation/redirects/${redirectId}`,
|
|
11816
|
+
DTOPageRedirectResponse,
|
|
11817
|
+
{
|
|
11818
|
+
body,
|
|
11819
|
+
method: "PUT"
|
|
11820
|
+
}
|
|
11826
11821
|
);
|
|
11827
11822
|
}
|
|
11828
|
-
|
|
11823
|
+
delete(dsId, redirectId) {
|
|
11829
11824
|
return this.requestExecutor.json(
|
|
11830
|
-
`/design-systems/${dsId}/
|
|
11831
|
-
|
|
11825
|
+
`/design-systems/${dsId}/documentation/redirects/${redirectId}`,
|
|
11826
|
+
DTOPageRedirectDeleteResponse,
|
|
11832
11827
|
{
|
|
11833
|
-
|
|
11834
|
-
method: "POST"
|
|
11828
|
+
method: "DELETE"
|
|
11835
11829
|
}
|
|
11836
11830
|
);
|
|
11837
11831
|
}
|
|
11838
11832
|
};
|
|
11839
11833
|
|
|
11840
|
-
// src/api/endpoints/design-system/
|
|
11841
|
-
|
|
11834
|
+
// src/api/endpoints/design-system/sources.ts
|
|
11835
|
+
|
|
11836
|
+
var DesignSystemSourcesEndpoint = class {
|
|
11842
11837
|
constructor(requestExecutor) {
|
|
11843
11838
|
this.requestExecutor = requestExecutor;
|
|
11844
11839
|
}
|
|
11845
|
-
|
|
11846
|
-
return this.
|
|
11840
|
+
create(dsId, payload) {
|
|
11841
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/sources`, DTODataSourceResponse, {
|
|
11842
|
+
method: "POST",
|
|
11843
|
+
body: payload
|
|
11844
|
+
});
|
|
11847
11845
|
}
|
|
11848
|
-
|
|
11849
|
-
return this.
|
|
11846
|
+
list(dsId) {
|
|
11847
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/sources`, DTODataSourcesListResponse);
|
|
11850
11848
|
}
|
|
11851
|
-
|
|
11852
|
-
return this.
|
|
11853
|
-
}
|
|
11854
|
-
async updateDocPage(dsId, vId, input) {
|
|
11855
|
-
return this.action(dsId, vId, { type: "DocumentationPageUpdate", input });
|
|
11856
|
-
}
|
|
11857
|
-
async updateDocPageDocument(dsId, vId, input) {
|
|
11858
|
-
return this.action(dsId, vId, { type: "DocumentationPageUpdateDocument", input });
|
|
11849
|
+
get(dsId, sourceId) {
|
|
11850
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, DTODataSourceResponse);
|
|
11859
11851
|
}
|
|
11860
|
-
|
|
11861
|
-
return this.
|
|
11852
|
+
delete(dsId, sourceId) {
|
|
11853
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, _zod.z.any(), { method: "DELETE" });
|
|
11862
11854
|
}
|
|
11863
|
-
|
|
11864
|
-
return this.
|
|
11855
|
+
updateFigmaSource(dsId, sourceId, payload) {
|
|
11856
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, DTODataSourceResponse, {
|
|
11857
|
+
method: "PUT",
|
|
11858
|
+
body: payload
|
|
11859
|
+
});
|
|
11865
11860
|
}
|
|
11866
|
-
|
|
11867
|
-
return this.
|
|
11861
|
+
updateStorybookSource(dsId, sourceId, payload) {
|
|
11862
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, DTODataSourceResponse, {
|
|
11863
|
+
method: "PUT",
|
|
11864
|
+
body: payload
|
|
11865
|
+
});
|
|
11868
11866
|
}
|
|
11869
|
-
|
|
11870
|
-
return this.
|
|
11867
|
+
figmaImport(dsId, payload) {
|
|
11868
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/cloud-import`, DTOImportJobResponse, {
|
|
11869
|
+
method: "POST",
|
|
11870
|
+
body: payload
|
|
11871
|
+
});
|
|
11871
11872
|
}
|
|
11872
|
-
|
|
11873
|
-
return this.
|
|
11873
|
+
storybookImport(dsId, payload) {
|
|
11874
|
+
return this.requestExecutor.json(
|
|
11875
|
+
`/design-systems/${dsId}/versions/head/storybook-import`,
|
|
11876
|
+
DTODataSourcesStorybookResponse,
|
|
11877
|
+
{
|
|
11878
|
+
method: "POST",
|
|
11879
|
+
body: payload
|
|
11880
|
+
}
|
|
11881
|
+
);
|
|
11874
11882
|
}
|
|
11875
|
-
|
|
11883
|
+
updateStorybookImport(dsId, versionId, payload) {
|
|
11876
11884
|
return this.requestExecutor.json(
|
|
11877
|
-
`/design-systems/${dsId}/versions/${
|
|
11878
|
-
|
|
11885
|
+
`/design-systems/${dsId}/versions/${versionId}/storybook-import`,
|
|
11886
|
+
DTODataSourcesStorybookResponse,
|
|
11879
11887
|
{
|
|
11880
|
-
|
|
11881
|
-
|
|
11888
|
+
method: "POST",
|
|
11889
|
+
body: payload
|
|
11882
11890
|
}
|
|
11883
11891
|
);
|
|
11884
11892
|
}
|
|
11885
11893
|
};
|
|
11886
11894
|
|
|
11887
|
-
// src/api/endpoints/design-system/
|
|
11888
|
-
|
|
11895
|
+
// src/api/endpoints/design-system/storybook.ts
|
|
11896
|
+
|
|
11897
|
+
var StorybookEntriesEndpoint = class {
|
|
11889
11898
|
constructor(requestExecutor) {
|
|
11890
11899
|
this.requestExecutor = requestExecutor;
|
|
11891
11900
|
}
|
|
11892
|
-
|
|
11893
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/versions
|
|
11894
|
-
query:
|
|
11901
|
+
list(dsId, query = {}) {
|
|
11902
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook`, DTOStorybookEntryListResponse, {
|
|
11903
|
+
query: new URLSearchParams(pickDefined(query))
|
|
11895
11904
|
});
|
|
11896
11905
|
}
|
|
11897
|
-
|
|
11898
|
-
|
|
11899
|
-
|
|
11900
|
-
|
|
11901
|
-
|
|
11902
|
-
|
|
11903
|
-
|
|
11906
|
+
replace(dsId, entryId) {
|
|
11907
|
+
return this.requestExecutor.json(
|
|
11908
|
+
`/design-systems/${dsId}/versions/head/storybook/${entryId}`,
|
|
11909
|
+
DTOStorybookEntryReplaceAction,
|
|
11910
|
+
{ method: "PUT" }
|
|
11911
|
+
);
|
|
11912
|
+
}
|
|
11913
|
+
delete(dsId, entryId) {
|
|
11914
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, _zod.z.any(), {
|
|
11915
|
+
method: "DELETE"
|
|
11904
11916
|
});
|
|
11905
11917
|
}
|
|
11906
11918
|
};
|
|
11907
11919
|
|
|
11908
|
-
// src/api/endpoints/design-system/versions/
|
|
11909
|
-
|
|
11920
|
+
// src/api/endpoints/design-system/versions/brands.ts
|
|
11921
|
+
|
|
11922
|
+
var BrandsEndpoint = class {
|
|
11910
11923
|
constructor(requestExecutor) {
|
|
11911
11924
|
this.requestExecutor = requestExecutor;
|
|
11912
11925
|
}
|
|
11913
|
-
|
|
11926
|
+
get(designSystemId, versionId, brandId) {
|
|
11914
11927
|
return this.requestExecutor.json(
|
|
11915
|
-
`/design-systems/${
|
|
11916
|
-
|
|
11928
|
+
`/design-systems/${designSystemId}/versions/${versionId}/brands/${brandId}`,
|
|
11929
|
+
DTOBrandGetResponse
|
|
11917
11930
|
);
|
|
11918
11931
|
}
|
|
11919
|
-
|
|
11920
|
-
|
|
11921
|
-
// src/api/endpoints/design-system/versions/figma-components.ts
|
|
11922
|
-
var FigmaComponentsEndpoint = class {
|
|
11923
|
-
constructor(requestExecutor) {
|
|
11924
|
-
this.requestExecutor = requestExecutor;
|
|
11925
|
-
}
|
|
11926
|
-
async list(dsId, vId, brandId) {
|
|
11932
|
+
list(designSystemId, versionId) {
|
|
11927
11933
|
return this.requestExecutor.json(
|
|
11928
|
-
`/design-systems/${
|
|
11929
|
-
|
|
11930
|
-
{ query: new URLSearchParams(pickDefined({ brandId })) }
|
|
11934
|
+
`/design-systems/${designSystemId}/versions/${versionId}/brands`,
|
|
11935
|
+
DTOBrandsListResponse
|
|
11931
11936
|
);
|
|
11932
11937
|
}
|
|
11933
|
-
|
|
11934
|
-
|
|
11935
|
-
// src/api/endpoints/design-system/versions/figma-frame-structures.ts
|
|
11936
|
-
var FigmaFrameStructuresEndpoint = class {
|
|
11937
|
-
constructor(requestExecutor) {
|
|
11938
|
-
this.requestExecutor = requestExecutor;
|
|
11939
|
-
}
|
|
11940
|
-
list(dsId, vId) {
|
|
11938
|
+
create(designSystemId, versionId, body) {
|
|
11941
11939
|
return this.requestExecutor.json(
|
|
11942
|
-
`/design-systems/${
|
|
11943
|
-
|
|
11940
|
+
`/design-systems/${designSystemId}/versions/${versionId}/brands`,
|
|
11941
|
+
DTOBrandGetResponse,
|
|
11942
|
+
{
|
|
11943
|
+
method: "POST",
|
|
11944
|
+
body
|
|
11945
|
+
}
|
|
11944
11946
|
);
|
|
11945
11947
|
}
|
|
11948
|
+
update(dsId, vId, brandId, body) {
|
|
11949
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/brands/${brandId}`, DTOBrandGetResponse, {
|
|
11950
|
+
method: "PUT",
|
|
11951
|
+
body
|
|
11952
|
+
});
|
|
11953
|
+
}
|
|
11954
|
+
delete(dsId, vId, brandId) {
|
|
11955
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/brands/${brandId}`, _zod.z.any(), {
|
|
11956
|
+
method: "DELETE"
|
|
11957
|
+
});
|
|
11958
|
+
}
|
|
11946
11959
|
};
|
|
11947
11960
|
|
|
11948
|
-
// src/api/endpoints/design-system/versions/
|
|
11949
|
-
var
|
|
11961
|
+
// src/api/endpoints/design-system/versions/code-components.ts
|
|
11962
|
+
var CodeComponentsEndpoint = class {
|
|
11950
11963
|
constructor(requestExecutor) {
|
|
11951
11964
|
this.requestExecutor = requestExecutor;
|
|
11952
11965
|
}
|
|
11953
|
-
|
|
11966
|
+
async import(dsId, vId, body) {
|
|
11954
11967
|
return this.requestExecutor.json(
|
|
11955
|
-
`/design-systems/${
|
|
11956
|
-
|
|
11968
|
+
`/design-systems/${dsId}/versions/${vId}/code-components`,
|
|
11969
|
+
DTOCodeComponentUpsertResponse,
|
|
11957
11970
|
{
|
|
11958
|
-
|
|
11959
|
-
|
|
11971
|
+
body,
|
|
11972
|
+
method: "POST"
|
|
11960
11973
|
}
|
|
11961
11974
|
);
|
|
11962
11975
|
}
|
|
11963
|
-
|
|
11976
|
+
async list(dsId, vId, brandId) {
|
|
11964
11977
|
return this.requestExecutor.json(
|
|
11965
|
-
`/design-systems/${
|
|
11966
|
-
|
|
11967
|
-
{
|
|
11968
|
-
method: "POST",
|
|
11969
|
-
body
|
|
11970
|
-
}
|
|
11978
|
+
`/design-systems/${dsId}/versions/${vId}/code-components`,
|
|
11979
|
+
DTOCodeComponentListResponse,
|
|
11980
|
+
{ query: new URLSearchParams(pickDefined({ brandId })) }
|
|
11971
11981
|
);
|
|
11972
11982
|
}
|
|
11973
|
-
|
|
11983
|
+
async deleteAll(dsId, vId) {
|
|
11974
11984
|
return this.requestExecutor.json(
|
|
11975
|
-
`/design-systems/${
|
|
11976
|
-
|
|
11977
|
-
{
|
|
11985
|
+
`/design-systems/${dsId}/versions/${vId}/code-components`,
|
|
11986
|
+
DTOCodeComponentListResponse,
|
|
11987
|
+
{
|
|
11988
|
+
method: "DELETE"
|
|
11989
|
+
}
|
|
11978
11990
|
);
|
|
11979
11991
|
}
|
|
11980
|
-
|
|
11981
|
-
|
|
11982
|
-
// src/api/endpoints/design-system/versions/import-jobs.ts
|
|
11983
|
-
var ImportJobsEndpoint = class {
|
|
11984
|
-
constructor(requestExecutor) {
|
|
11985
|
-
this.requestExecutor = requestExecutor;
|
|
11986
|
-
}
|
|
11987
|
-
get(designSystemId, versionId, jobId) {
|
|
11992
|
+
async analyzePackage(dsId, vId, body) {
|
|
11988
11993
|
return this.requestExecutor.json(
|
|
11989
|
-
`/design-systems/${
|
|
11990
|
-
|
|
11994
|
+
`/design-systems/${dsId}/versions/${vId}/code-components/analyze-package`,
|
|
11995
|
+
DTOAnalyzeCodeComponentsInPackageResponse,
|
|
11996
|
+
{
|
|
11997
|
+
body,
|
|
11998
|
+
method: "POST"
|
|
11999
|
+
}
|
|
11991
12000
|
);
|
|
11992
12001
|
}
|
|
11993
12002
|
};
|
|
11994
12003
|
|
|
11995
|
-
// src/api/endpoints/design-system/versions/
|
|
11996
|
-
|
|
11997
|
-
var OverridesEndpoint = class {
|
|
12004
|
+
// src/api/endpoints/design-system/versions/documentation.ts
|
|
12005
|
+
var DocumentationEndpoint = class {
|
|
11998
12006
|
constructor(requestExecutor) {
|
|
11999
12007
|
this.requestExecutor = requestExecutor;
|
|
12000
12008
|
}
|
|
12001
|
-
|
|
12002
|
-
return this.requestExecutor.json(
|
|
12003
|
-
`/design-systems/${
|
|
12004
|
-
|
|
12005
|
-
{
|
|
12006
|
-
method: "POST",
|
|
12007
|
-
body
|
|
12008
|
-
}
|
|
12009
|
+
async getStructure(designSystemId, versionId) {
|
|
12010
|
+
return await this.requestExecutor.json(
|
|
12011
|
+
`/design-systems/${designSystemId}/versions/${versionId}/documentation/structure`,
|
|
12012
|
+
DTODocumentationStructure
|
|
12009
12013
|
);
|
|
12010
12014
|
}
|
|
12011
|
-
|
|
12012
|
-
|
|
12013
|
-
|
|
12014
|
-
|
|
12015
|
-
|
|
12016
|
-
constructor(requestExecutor) {
|
|
12017
|
-
this.requestExecutor = requestExecutor;
|
|
12015
|
+
async getDocStructure(dsId, vId) {
|
|
12016
|
+
return await this.requestExecutor.json(
|
|
12017
|
+
`/design-systems/${dsId}/versions/${vId}/documentation/structure`,
|
|
12018
|
+
DTODocumentationStructure
|
|
12019
|
+
);
|
|
12018
12020
|
}
|
|
12019
|
-
|
|
12020
|
-
return this.requestExecutor.json(
|
|
12021
|
-
`/design-systems/${
|
|
12022
|
-
|
|
12021
|
+
async getPageRoom(dsId, vId, pageId) {
|
|
12022
|
+
return await this.requestExecutor.json(
|
|
12023
|
+
`/design-systems/${dsId}/versions/${vId}/documentation/pages/${pageId}/room`,
|
|
12024
|
+
DTODocumentationPageRoomResponse
|
|
12023
12025
|
);
|
|
12024
12026
|
}
|
|
12025
|
-
|
|
12026
|
-
return this.requestExecutor.json(
|
|
12027
|
-
`/design-systems/${
|
|
12028
|
-
|
|
12029
|
-
{ method: "POST", body }
|
|
12027
|
+
async getBlockDefinitions(dsId, vId) {
|
|
12028
|
+
return await this.requestExecutor.json(
|
|
12029
|
+
`/design-systems/${dsId}/versions/${vId}/documentation/block-definitions`,
|
|
12030
|
+
DTOGetBlockDefinitionsOutput
|
|
12030
12031
|
);
|
|
12031
12032
|
}
|
|
12032
|
-
|
|
12033
|
-
return this.requestExecutor.json(
|
|
12034
|
-
`/design-systems/${
|
|
12035
|
-
|
|
12036
|
-
{
|
|
12033
|
+
async publish(dsId, vId, body) {
|
|
12034
|
+
return await this.requestExecutor.json(
|
|
12035
|
+
`/design-systems/${dsId}/versions/${vId}/documentation/publish`,
|
|
12036
|
+
DTOPublishDocumentationResponse,
|
|
12037
|
+
{
|
|
12038
|
+
method: "POST",
|
|
12039
|
+
body
|
|
12040
|
+
}
|
|
12037
12041
|
);
|
|
12038
12042
|
}
|
|
12039
|
-
|
|
12043
|
+
documentationPageContent(dsId, versionId, pageId) {
|
|
12040
12044
|
return this.requestExecutor.json(
|
|
12041
|
-
`/design-systems/${
|
|
12042
|
-
|
|
12043
|
-
{ method: "DELETE" }
|
|
12045
|
+
`/design-systems/${dsId}/versions/${versionId}/documentation/pages/${pageId}/content`,
|
|
12046
|
+
DTODocumentationPageContentGetResponse
|
|
12044
12047
|
);
|
|
12045
12048
|
}
|
|
12046
12049
|
};
|
|
12047
12050
|
|
|
12048
|
-
// src/api/endpoints/design-system/versions/
|
|
12049
|
-
var
|
|
12051
|
+
// src/api/endpoints/design-system/versions/ds-components.ts
|
|
12052
|
+
var DesignSystemComponentEndpoint = class {
|
|
12050
12053
|
constructor(requestExecutor) {
|
|
12051
12054
|
this.requestExecutor = requestExecutor;
|
|
12052
12055
|
}
|
|
12053
|
-
list(
|
|
12056
|
+
async list(dsId, vId, brandId) {
|
|
12054
12057
|
return this.requestExecutor.json(
|
|
12055
|
-
`/design-systems/${
|
|
12056
|
-
|
|
12058
|
+
`/design-systems/${dsId}/versions/${vId}/design-system-components`,
|
|
12059
|
+
DTODesignSystemComponentListResponse,
|
|
12060
|
+
{ query: new URLSearchParams(pickDefined({ brandId })) }
|
|
12057
12061
|
);
|
|
12058
12062
|
}
|
|
12059
|
-
|
|
12063
|
+
async create(dsId, vId, body) {
|
|
12060
12064
|
return this.requestExecutor.json(
|
|
12061
|
-
`/design-systems/${
|
|
12062
|
-
|
|
12063
|
-
{
|
|
12065
|
+
`/design-systems/${dsId}/versions/${vId}/design-system-components`,
|
|
12066
|
+
DTODesignSystemComponentResponse,
|
|
12067
|
+
{
|
|
12068
|
+
body,
|
|
12069
|
+
method: "POST"
|
|
12070
|
+
}
|
|
12064
12071
|
);
|
|
12065
12072
|
}
|
|
12066
12073
|
};
|
|
12067
12074
|
|
|
12068
|
-
// src/api/endpoints/design-system/versions/
|
|
12069
|
-
var
|
|
12075
|
+
// src/api/endpoints/design-system/versions/elements.ts
|
|
12076
|
+
var ElementsEndpoint = class {
|
|
12070
12077
|
constructor(requestExecutor) {
|
|
12071
12078
|
this.requestExecutor = requestExecutor;
|
|
12072
12079
|
}
|
|
12073
|
-
|
|
12074
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/
|
|
12075
|
-
query:
|
|
12080
|
+
getElementsV1(dsId, vId, query) {
|
|
12081
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/elements`, DTOElementsGetOutput, {
|
|
12082
|
+
query: serializeQuery(query)
|
|
12083
|
+
});
|
|
12084
|
+
}
|
|
12085
|
+
getElementsV2(dsId, vId, query) {
|
|
12086
|
+
const fullQuery = {
|
|
12087
|
+
...query,
|
|
12088
|
+
responseVersion: 2
|
|
12089
|
+
};
|
|
12090
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/elements`, DTOElementsGetOutputV2, {
|
|
12091
|
+
query: serializeQuery(fullQuery)
|
|
12076
12092
|
});
|
|
12077
12093
|
}
|
|
12078
12094
|
};
|
|
12079
12095
|
|
|
12080
|
-
// src/api/endpoints/design-system/versions/
|
|
12081
|
-
|
|
12082
|
-
var ThemesEndpoint = class {
|
|
12096
|
+
// src/api/endpoints/design-system/versions/elements-action.ts
|
|
12097
|
+
var ElementsActionEndpoint = class {
|
|
12083
12098
|
constructor(requestExecutor) {
|
|
12084
12099
|
this.requestExecutor = requestExecutor;
|
|
12085
|
-
__publicField(this, "overrides");
|
|
12086
|
-
this.overrides = new OverridesEndpoint(requestExecutor);
|
|
12087
12100
|
}
|
|
12088
|
-
|
|
12089
|
-
return this.
|
|
12101
|
+
async createDocPage(dsId, vId, input) {
|
|
12102
|
+
return this.action(dsId, vId, { type: "DocumentationPageCreate", input });
|
|
12090
12103
|
}
|
|
12091
|
-
|
|
12092
|
-
return this.
|
|
12093
|
-
`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}`,
|
|
12094
|
-
DTOThemeResponse
|
|
12095
|
-
);
|
|
12104
|
+
async createDocGroup(dsId, vId, input) {
|
|
12105
|
+
return this.action(dsId, vId, { type: "DocumentationGroupCreate", input });
|
|
12096
12106
|
}
|
|
12097
|
-
|
|
12098
|
-
return this.
|
|
12099
|
-
method: "POST",
|
|
12100
|
-
body
|
|
12101
|
-
});
|
|
12107
|
+
async moveDocGroup(dsId, vId, input) {
|
|
12108
|
+
return this.action(dsId, vId, { type: "DocumentationGroupMove", input });
|
|
12102
12109
|
}
|
|
12103
|
-
|
|
12104
|
-
return this.
|
|
12105
|
-
|
|
12106
|
-
|
|
12110
|
+
async updateDocPage(dsId, vId, input) {
|
|
12111
|
+
return this.action(dsId, vId, { type: "DocumentationPageUpdate", input });
|
|
12112
|
+
}
|
|
12113
|
+
async updateDocPageDocument(dsId, vId, input) {
|
|
12114
|
+
return this.action(dsId, vId, { type: "DocumentationPageUpdateDocument", input });
|
|
12115
|
+
}
|
|
12116
|
+
async updateDocGroup(dsId, vId, input) {
|
|
12117
|
+
return this.action(dsId, vId, { type: "DocumentationGroupUpdate", input });
|
|
12118
|
+
}
|
|
12119
|
+
async createDocTab(dsId, vId, input) {
|
|
12120
|
+
return this.action(dsId, vId, { type: "DocumentationTabCreate", input });
|
|
12121
|
+
}
|
|
12122
|
+
async renderNodes(dsId, vId, input) {
|
|
12123
|
+
return this.action(dsId, vId, { type: "FigmaNodeRender", input });
|
|
12124
|
+
}
|
|
12125
|
+
async renderNodesAsync(dsId, vId, nodes) {
|
|
12126
|
+
return this.action(dsId, vId, { type: "FigmaNodeRenderAsync", nodes });
|
|
12127
|
+
}
|
|
12128
|
+
async bulkEditPropertyValues(dsId, vId, values) {
|
|
12129
|
+
return this.action(dsId, vId, { type: "ElementPropertyValuesEdit", values });
|
|
12130
|
+
}
|
|
12131
|
+
async action(dsId, vId, input) {
|
|
12132
|
+
return this.requestExecutor.json(
|
|
12133
|
+
`/design-systems/${dsId}/versions/${vId}/elements-action`,
|
|
12134
|
+
DTOElementActionOutput,
|
|
12135
|
+
{
|
|
12136
|
+
body: input,
|
|
12137
|
+
method: "POST"
|
|
12138
|
+
}
|
|
12139
|
+
);
|
|
12107
12140
|
}
|
|
12108
12141
|
};
|
|
12109
12142
|
|
|
12110
|
-
// src/api/endpoints/design-system/versions/
|
|
12111
|
-
var
|
|
12143
|
+
// src/api/endpoints/design-system/versions/figma-component-groups.ts
|
|
12144
|
+
var FigmaComponentGroupsEndpoint = class {
|
|
12112
12145
|
constructor(requestExecutor) {
|
|
12113
12146
|
this.requestExecutor = requestExecutor;
|
|
12114
12147
|
}
|
|
12115
|
-
list(
|
|
12148
|
+
async list(dsId, vId) {
|
|
12116
12149
|
return this.requestExecutor.json(
|
|
12117
|
-
`/design-systems/${
|
|
12118
|
-
|
|
12150
|
+
`/design-systems/${dsId}/versions/${vId}/component-groups`,
|
|
12151
|
+
DTOFigmaComponentGroupListResponse
|
|
12119
12152
|
);
|
|
12120
12153
|
}
|
|
12121
12154
|
};
|
|
12122
12155
|
|
|
12123
|
-
// src/api/endpoints/design-system/versions/
|
|
12124
|
-
var
|
|
12156
|
+
// src/api/endpoints/design-system/versions/figma-components.ts
|
|
12157
|
+
var FigmaComponentsEndpoint = class {
|
|
12125
12158
|
constructor(requestExecutor) {
|
|
12126
12159
|
this.requestExecutor = requestExecutor;
|
|
12127
12160
|
}
|
|
12128
|
-
|
|
12129
|
-
return this.requestExecutor.json(
|
|
12130
|
-
`/design-systems/${dsId}/versions/${versionId}/token-groups`,
|
|
12131
|
-
DTODesignTokenGroupResponse,
|
|
12132
|
-
{
|
|
12133
|
-
method: "POST",
|
|
12134
|
-
body
|
|
12135
|
-
}
|
|
12136
|
-
);
|
|
12137
|
-
}
|
|
12138
|
-
list(dsId, versionId, brandId) {
|
|
12161
|
+
async list(dsId, vId, brandId) {
|
|
12139
12162
|
return this.requestExecutor.json(
|
|
12140
|
-
`/design-systems/${dsId}/versions/${
|
|
12141
|
-
|
|
12163
|
+
`/design-systems/${dsId}/versions/${vId}/components`,
|
|
12164
|
+
DTOFigmaComponentListResponse,
|
|
12142
12165
|
{ query: new URLSearchParams(pickDefined({ brandId })) }
|
|
12143
12166
|
);
|
|
12144
12167
|
}
|
|
12145
12168
|
};
|
|
12146
12169
|
|
|
12147
|
-
// src/api/endpoints/design-system/versions/
|
|
12148
|
-
var
|
|
12170
|
+
// src/api/endpoints/design-system/versions/figma-frame-structures.ts
|
|
12171
|
+
var FigmaFrameStructuresEndpoint = class {
|
|
12149
12172
|
constructor(requestExecutor) {
|
|
12150
12173
|
this.requestExecutor = requestExecutor;
|
|
12151
12174
|
}
|
|
12152
|
-
|
|
12153
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/tokens`, DTODesignTokenResponse, {
|
|
12154
|
-
method: "POST",
|
|
12155
|
-
body
|
|
12156
|
-
});
|
|
12157
|
-
}
|
|
12158
|
-
list(dsId, versionId, brandId) {
|
|
12159
|
-
return this.requestExecutor.json(
|
|
12160
|
-
`/design-systems/${dsId}/versions/${versionId}/tokens`,
|
|
12161
|
-
DTODesignTokenListResponse,
|
|
12162
|
-
{ query: new URLSearchParams(pickDefined({ brandId })) }
|
|
12163
|
-
);
|
|
12164
|
-
}
|
|
12165
|
-
get(dsId, versionId, tokenId) {
|
|
12175
|
+
list(dsId, vId) {
|
|
12166
12176
|
return this.requestExecutor.json(
|
|
12167
|
-
`/design-systems/${dsId}/versions/${
|
|
12168
|
-
|
|
12177
|
+
`/design-systems/${dsId}/versions/${vId}/figma-frames/node-structures`,
|
|
12178
|
+
DTOFrameNodeStructureListResponse
|
|
12169
12179
|
);
|
|
12170
12180
|
}
|
|
12171
12181
|
};
|
|
12172
12182
|
|
|
12173
|
-
// src/api/endpoints/design-system/versions/
|
|
12174
|
-
var
|
|
12183
|
+
// src/api/endpoints/design-system/versions/files.ts
|
|
12184
|
+
var DesignSystemFilesEndpoint = class {
|
|
12175
12185
|
constructor(requestExecutor) {
|
|
12176
12186
|
this.requestExecutor = requestExecutor;
|
|
12177
|
-
__publicField(this, "themes");
|
|
12178
|
-
__publicField(this, "brands");
|
|
12179
|
-
__publicField(this, "tokenCollections");
|
|
12180
|
-
__publicField(this, "importJobs");
|
|
12181
|
-
__publicField(this, "tokens");
|
|
12182
|
-
__publicField(this, "tokenGroups");
|
|
12183
|
-
__publicField(this, "figmaComponents");
|
|
12184
|
-
__publicField(this, "figmaComponentGroups");
|
|
12185
|
-
__publicField(this, "figmaFrameStructures");
|
|
12186
|
-
__publicField(this, "stats");
|
|
12187
|
-
__publicField(this, "elementPropertyDefinitions");
|
|
12188
|
-
__publicField(this, "elementPropertyValues");
|
|
12189
|
-
__publicField(this, "elementsAction");
|
|
12190
|
-
__publicField(this, "elements");
|
|
12191
|
-
__publicField(this, "designSystemComponents");
|
|
12192
|
-
__publicField(this, "documentation");
|
|
12193
|
-
__publicField(this, "codeComponents");
|
|
12194
|
-
__publicField(this, "files");
|
|
12195
|
-
this.themes = new ThemesEndpoint(requestExecutor);
|
|
12196
|
-
this.brands = new BrandsEndpoint(requestExecutor);
|
|
12197
|
-
this.tokenCollections = new TokenCollectionsEndpoint(requestExecutor);
|
|
12198
|
-
this.importJobs = new ImportJobsEndpoint(requestExecutor);
|
|
12199
|
-
this.tokens = new TokensEndpoint(requestExecutor);
|
|
12200
|
-
this.tokenGroups = new TokenGroupsEndpoint(requestExecutor);
|
|
12201
|
-
this.figmaComponents = new FigmaComponentsEndpoint(requestExecutor);
|
|
12202
|
-
this.figmaComponentGroups = new FigmaComponentGroupsEndpoint(requestExecutor);
|
|
12203
|
-
this.figmaFrameStructures = new FigmaFrameStructuresEndpoint(requestExecutor);
|
|
12204
|
-
this.stats = new VersionStatsEndpoint(requestExecutor);
|
|
12205
|
-
this.elementPropertyDefinitions = new ElementPropertyDefinitionsEndpoint(requestExecutor);
|
|
12206
|
-
this.elementPropertyValues = new ElementPropertyValuesEndpoint(requestExecutor);
|
|
12207
|
-
this.elementsAction = new ElementsActionEndpoint(requestExecutor);
|
|
12208
|
-
this.elements = new ElementsEndpoint(requestExecutor);
|
|
12209
|
-
this.designSystemComponents = new DesignSystemComponentEndpoint(requestExecutor);
|
|
12210
|
-
this.documentation = new DocumentationEndpoint(requestExecutor);
|
|
12211
|
-
this.codeComponents = new CodeComponentsEndpoint(requestExecutor);
|
|
12212
|
-
this.files = new DesignSystemFilesEndpoint(requestExecutor);
|
|
12213
12187
|
}
|
|
12214
|
-
|
|
12215
|
-
return this.requestExecutor.json(
|
|
12216
|
-
|
|
12217
|
-
|
|
12218
|
-
|
|
12219
|
-
|
|
12220
|
-
|
|
12221
|
-
|
|
12188
|
+
upload(designSystemId, versionId, body) {
|
|
12189
|
+
return this.requestExecutor.json(
|
|
12190
|
+
`/design-systems/${designSystemId}/versions/${versionId}/files/upload`,
|
|
12191
|
+
DTOFileUploadResponse,
|
|
12192
|
+
{
|
|
12193
|
+
method: "POST",
|
|
12194
|
+
body
|
|
12195
|
+
}
|
|
12196
|
+
);
|
|
12222
12197
|
}
|
|
12223
|
-
|
|
12198
|
+
finalize(designSystemId, versionId, body) {
|
|
12224
12199
|
return this.requestExecutor.json(
|
|
12225
|
-
`/design-systems/${
|
|
12226
|
-
|
|
12200
|
+
`/design-systems/${designSystemId}/versions/${versionId}/files/finalize`,
|
|
12201
|
+
DTOFileUploadFinalizeResponse,
|
|
12202
|
+
{
|
|
12203
|
+
method: "POST",
|
|
12204
|
+
body
|
|
12205
|
+
}
|
|
12227
12206
|
);
|
|
12228
12207
|
}
|
|
12229
|
-
|
|
12208
|
+
get(designSystemId, versionId, query) {
|
|
12230
12209
|
return this.requestExecutor.json(
|
|
12231
|
-
`/design-systems/${
|
|
12232
|
-
|
|
12210
|
+
`/design-systems/${designSystemId}/versions/${versionId}/files`,
|
|
12211
|
+
DTOFilesResponse,
|
|
12212
|
+
{ query: query ? new URLSearchParams(query) : void 0 }
|
|
12233
12213
|
);
|
|
12234
12214
|
}
|
|
12235
12215
|
};
|
|
12236
12216
|
|
|
12237
|
-
// src/api/endpoints/design-system/
|
|
12238
|
-
var
|
|
12217
|
+
// src/api/endpoints/design-system/versions/import-jobs.ts
|
|
12218
|
+
var ImportJobsEndpoint = class {
|
|
12239
12219
|
constructor(requestExecutor) {
|
|
12240
12220
|
this.requestExecutor = requestExecutor;
|
|
12241
12221
|
}
|
|
12242
|
-
get(designSystemId, versionId,
|
|
12222
|
+
get(designSystemId, versionId, jobId) {
|
|
12243
12223
|
return this.requestExecutor.json(
|
|
12244
|
-
`/design-systems/${designSystemId}/versions/${versionId}/
|
|
12245
|
-
|
|
12246
|
-
{ method: "POST", body }
|
|
12224
|
+
`/design-systems/${designSystemId}/versions/${versionId}/import-jobs/${jobId}`,
|
|
12225
|
+
DTOImportJobResponse
|
|
12247
12226
|
);
|
|
12248
12227
|
}
|
|
12249
12228
|
};
|
|
12250
12229
|
|
|
12251
|
-
// src/api/endpoints/design-system/
|
|
12252
|
-
|
|
12230
|
+
// src/api/endpoints/design-system/versions/property-definitions.ts
|
|
12231
|
+
|
|
12232
|
+
var ElementPropertyDefinitionsEndpoint = class {
|
|
12253
12233
|
constructor(requestExecutor) {
|
|
12254
12234
|
this.requestExecutor = requestExecutor;
|
|
12255
12235
|
}
|
|
12256
|
-
|
|
12257
|
-
return this.requestExecutor.json(
|
|
12258
|
-
|
|
12259
|
-
|
|
12260
|
-
|
|
12236
|
+
list(designSystemId, versionId) {
|
|
12237
|
+
return this.requestExecutor.json(
|
|
12238
|
+
`/design-systems/${designSystemId}/versions/${versionId}/element-properties/definitions`,
|
|
12239
|
+
DTOElementPropertyDefinitionListResponse
|
|
12240
|
+
);
|
|
12261
12241
|
}
|
|
12262
|
-
|
|
12263
|
-
|
|
12264
|
-
|
|
12265
|
-
|
|
12266
|
-
|
|
12267
|
-
|
|
12242
|
+
create(designSystemId, versionId, body) {
|
|
12243
|
+
return this.requestExecutor.json(
|
|
12244
|
+
`/design-systems/${designSystemId}/versions/${versionId}/element-properties/definitions`,
|
|
12245
|
+
DTOElementPropertyDefinitionResponse,
|
|
12246
|
+
{ method: "POST", body }
|
|
12247
|
+
);
|
|
12268
12248
|
}
|
|
12269
|
-
|
|
12270
|
-
return this.requestExecutor.json(
|
|
12271
|
-
|
|
12272
|
-
|
|
12249
|
+
update(designSystemId, versionId, defId, body) {
|
|
12250
|
+
return this.requestExecutor.json(
|
|
12251
|
+
`/design-systems/${designSystemId}/versions/${versionId}/element-properties/definitions/${defId}`,
|
|
12252
|
+
DTOElementPropertyDefinitionResponse,
|
|
12253
|
+
{ method: "PUT", body }
|
|
12254
|
+
);
|
|
12255
|
+
}
|
|
12256
|
+
delete(designSystemId, versionId, defId) {
|
|
12257
|
+
return this.requestExecutor.json(
|
|
12258
|
+
`/design-systems/${designSystemId}/versions/${versionId}/element-properties/definitions/${defId}`,
|
|
12259
|
+
_zod.z.any(),
|
|
12260
|
+
{ method: "DELETE" }
|
|
12261
|
+
);
|
|
12273
12262
|
}
|
|
12274
12263
|
};
|
|
12275
12264
|
|
|
12276
|
-
// src/api/endpoints/design-system/
|
|
12277
|
-
|
|
12278
|
-
|
|
12279
|
-
// src/api/endpoints/design-system/figma-node-structures.ts
|
|
12280
|
-
var FigmaNodeStructuresEndpoint = class {
|
|
12265
|
+
// src/api/endpoints/design-system/versions/property-values.ts
|
|
12266
|
+
var ElementPropertyValuesEndpoint = class {
|
|
12281
12267
|
constructor(requestExecutor) {
|
|
12282
12268
|
this.requestExecutor = requestExecutor;
|
|
12283
12269
|
}
|
|
12284
|
-
list(
|
|
12270
|
+
list(designSystemId, versionId) {
|
|
12285
12271
|
return this.requestExecutor.json(
|
|
12286
|
-
`/design-systems/${
|
|
12287
|
-
|
|
12272
|
+
`/design-systems/${designSystemId}/versions/${versionId}/element-properties/values`,
|
|
12273
|
+
DTOElementPropertyValueListResponse
|
|
12288
12274
|
);
|
|
12289
12275
|
}
|
|
12290
|
-
|
|
12276
|
+
upsert(designSystemId, versionId, body) {
|
|
12291
12277
|
return this.requestExecutor.json(
|
|
12292
|
-
`/design-systems/${
|
|
12293
|
-
|
|
12278
|
+
`/design-systems/${designSystemId}/versions/${versionId}/element-properties/values`,
|
|
12279
|
+
DTOElementPropertyValueResponse,
|
|
12280
|
+
{ method: "POST", body }
|
|
12294
12281
|
);
|
|
12295
12282
|
}
|
|
12296
12283
|
};
|
|
12297
12284
|
|
|
12298
|
-
// src/api/endpoints/design-system/
|
|
12299
|
-
var
|
|
12285
|
+
// src/api/endpoints/design-system/versions/stats.ts
|
|
12286
|
+
var VersionStatsEndpoint = class {
|
|
12300
12287
|
constructor(requestExecutor) {
|
|
12301
12288
|
this.requestExecutor = requestExecutor;
|
|
12302
12289
|
}
|
|
12303
|
-
|
|
12304
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/
|
|
12305
|
-
|
|
12306
|
-
});
|
|
12307
|
-
}
|
|
12308
|
-
update(dsId, body) {
|
|
12309
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/members`, DTODesignSystemMembersUpdateResponse, {
|
|
12310
|
-
method: "POST",
|
|
12311
|
-
body
|
|
12290
|
+
get(dsId, vId, query = {}) {
|
|
12291
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/stats`, DTODesignSystemVersionStats, {
|
|
12292
|
+
query: new URLSearchParams(query)
|
|
12312
12293
|
});
|
|
12313
12294
|
}
|
|
12314
12295
|
};
|
|
12315
12296
|
|
|
12316
|
-
// src/api/endpoints/design-system/
|
|
12317
|
-
|
|
12297
|
+
// src/api/endpoints/design-system/versions/themes.ts
|
|
12298
|
+
|
|
12299
|
+
|
|
12300
|
+
// src/api/endpoints/design-system/versions/overrides.ts
|
|
12301
|
+
|
|
12302
|
+
var OverridesEndpoint = class {
|
|
12318
12303
|
constructor(requestExecutor) {
|
|
12319
12304
|
this.requestExecutor = requestExecutor;
|
|
12320
12305
|
}
|
|
12321
|
-
create(dsId, body) {
|
|
12322
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/documentation/redirects`, DTOPageRedirectResponse, {
|
|
12323
|
-
body,
|
|
12324
|
-
method: "POST"
|
|
12325
|
-
});
|
|
12326
|
-
}
|
|
12327
|
-
list(dsId) {
|
|
12328
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/documentation/redirects`, DTOPageRedirectListResponse, {
|
|
12329
|
-
method: "GET"
|
|
12330
|
-
});
|
|
12331
|
-
}
|
|
12332
|
-
update(dsId, redirectId, body) {
|
|
12333
|
-
return this.requestExecutor.json(
|
|
12334
|
-
`/design-systems/${dsId}/documentation/redirects/${redirectId}`,
|
|
12335
|
-
DTOPageRedirectResponse,
|
|
12336
|
-
{
|
|
12337
|
-
body,
|
|
12338
|
-
method: "PUT"
|
|
12339
|
-
}
|
|
12340
|
-
);
|
|
12341
|
-
}
|
|
12342
|
-
delete(dsId, redirectId) {
|
|
12306
|
+
create(dsId, versionId, themeId, body) {
|
|
12343
12307
|
return this.requestExecutor.json(
|
|
12344
|
-
`/design-systems/${dsId}/
|
|
12345
|
-
|
|
12308
|
+
`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}/overrides`,
|
|
12309
|
+
_zod.z.any(),
|
|
12346
12310
|
{
|
|
12347
|
-
method: "
|
|
12311
|
+
method: "POST",
|
|
12312
|
+
body
|
|
12348
12313
|
}
|
|
12349
12314
|
);
|
|
12350
12315
|
}
|
|
12351
12316
|
};
|
|
12352
12317
|
|
|
12353
|
-
// src/api/endpoints/design-system/
|
|
12354
|
-
|
|
12355
|
-
var DesignSystemSourcesEndpoint = class {
|
|
12318
|
+
// src/api/endpoints/design-system/versions/themes.ts
|
|
12319
|
+
var ThemesEndpoint = class {
|
|
12356
12320
|
constructor(requestExecutor) {
|
|
12357
12321
|
this.requestExecutor = requestExecutor;
|
|
12322
|
+
__publicField(this, "overrides");
|
|
12323
|
+
this.overrides = new OverridesEndpoint(requestExecutor);
|
|
12358
12324
|
}
|
|
12359
|
-
|
|
12360
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/
|
|
12361
|
-
method: "POST",
|
|
12362
|
-
body: payload
|
|
12363
|
-
});
|
|
12364
|
-
}
|
|
12365
|
-
list(dsId) {
|
|
12366
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/sources`, DTODataSourcesListResponse);
|
|
12367
|
-
}
|
|
12368
|
-
get(dsId, sourceId) {
|
|
12369
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, DTODataSourceResponse);
|
|
12325
|
+
list(dsId, versionId) {
|
|
12326
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/themes`, DTOThemeListResponse);
|
|
12370
12327
|
}
|
|
12371
|
-
|
|
12372
|
-
return this.requestExecutor.json(
|
|
12328
|
+
get(dsId, versionId, themeId) {
|
|
12329
|
+
return this.requestExecutor.json(
|
|
12330
|
+
`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}`,
|
|
12331
|
+
DTOThemeResponse
|
|
12332
|
+
);
|
|
12373
12333
|
}
|
|
12374
|
-
|
|
12375
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/
|
|
12376
|
-
method: "
|
|
12377
|
-
body
|
|
12334
|
+
create(dsId, versionId, body) {
|
|
12335
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/themes`, DTOThemeResponse, {
|
|
12336
|
+
method: "POST",
|
|
12337
|
+
body
|
|
12378
12338
|
});
|
|
12379
12339
|
}
|
|
12380
|
-
|
|
12381
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/
|
|
12382
|
-
method: "
|
|
12383
|
-
body: payload
|
|
12340
|
+
delete(dsId, versionId, themeId) {
|
|
12341
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}`, _zod.z.any(), {
|
|
12342
|
+
method: "DELETE"
|
|
12384
12343
|
});
|
|
12385
12344
|
}
|
|
12386
|
-
|
|
12387
|
-
|
|
12388
|
-
|
|
12389
|
-
|
|
12390
|
-
|
|
12345
|
+
};
|
|
12346
|
+
|
|
12347
|
+
// src/api/endpoints/design-system/versions/token-collections.ts
|
|
12348
|
+
var TokenCollectionsEndpoint = class {
|
|
12349
|
+
constructor(requestExecutor) {
|
|
12350
|
+
this.requestExecutor = requestExecutor;
|
|
12391
12351
|
}
|
|
12392
|
-
|
|
12352
|
+
list(designSystemId, versionId) {
|
|
12393
12353
|
return this.requestExecutor.json(
|
|
12394
|
-
`/design-systems/${
|
|
12395
|
-
|
|
12396
|
-
{
|
|
12397
|
-
method: "POST",
|
|
12398
|
-
body: payload
|
|
12399
|
-
}
|
|
12354
|
+
`/design-systems/${designSystemId}/versions/${versionId}/token-collections`,
|
|
12355
|
+
DTOTokenCollectionsListReponse
|
|
12400
12356
|
);
|
|
12401
12357
|
}
|
|
12402
|
-
|
|
12358
|
+
};
|
|
12359
|
+
|
|
12360
|
+
// src/api/endpoints/design-system/versions/token-groups.ts
|
|
12361
|
+
var TokenGroupsEndpoint = class {
|
|
12362
|
+
constructor(requestExecutor) {
|
|
12363
|
+
this.requestExecutor = requestExecutor;
|
|
12364
|
+
}
|
|
12365
|
+
create(dsId, versionId, body) {
|
|
12403
12366
|
return this.requestExecutor.json(
|
|
12404
|
-
`/design-systems/${dsId}/versions/${versionId}/
|
|
12405
|
-
|
|
12367
|
+
`/design-systems/${dsId}/versions/${versionId}/token-groups`,
|
|
12368
|
+
DTODesignTokenGroupResponse,
|
|
12406
12369
|
{
|
|
12407
12370
|
method: "POST",
|
|
12408
|
-
body
|
|
12371
|
+
body
|
|
12409
12372
|
}
|
|
12410
12373
|
);
|
|
12411
12374
|
}
|
|
12375
|
+
list(dsId, versionId, brandId) {
|
|
12376
|
+
return this.requestExecutor.json(
|
|
12377
|
+
`/design-systems/${dsId}/versions/${versionId}/token-groups`,
|
|
12378
|
+
DTODesignTokenGroupListResponse,
|
|
12379
|
+
{ query: new URLSearchParams(pickDefined({ brandId })) }
|
|
12380
|
+
);
|
|
12381
|
+
}
|
|
12412
12382
|
};
|
|
12413
12383
|
|
|
12414
|
-
// src/api/endpoints/design-system/
|
|
12415
|
-
|
|
12416
|
-
var StorybookEntriesEndpoint = class {
|
|
12384
|
+
// src/api/endpoints/design-system/versions/tokens.ts
|
|
12385
|
+
var TokensEndpoint = class {
|
|
12417
12386
|
constructor(requestExecutor) {
|
|
12418
12387
|
this.requestExecutor = requestExecutor;
|
|
12419
12388
|
}
|
|
12420
|
-
|
|
12421
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/versions/
|
|
12422
|
-
|
|
12389
|
+
create(dsId, versionId, body) {
|
|
12390
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/tokens`, DTODesignTokenResponse, {
|
|
12391
|
+
method: "POST",
|
|
12392
|
+
body
|
|
12423
12393
|
});
|
|
12424
12394
|
}
|
|
12425
|
-
|
|
12395
|
+
list(dsId, versionId, brandId) {
|
|
12426
12396
|
return this.requestExecutor.json(
|
|
12427
|
-
`/design-systems/${dsId}/versions
|
|
12428
|
-
|
|
12429
|
-
{
|
|
12397
|
+
`/design-systems/${dsId}/versions/${versionId}/tokens`,
|
|
12398
|
+
DTODesignTokenListResponse,
|
|
12399
|
+
{ query: new URLSearchParams(pickDefined({ brandId })) }
|
|
12400
|
+
);
|
|
12401
|
+
}
|
|
12402
|
+
get(dsId, versionId, tokenId) {
|
|
12403
|
+
return this.requestExecutor.json(
|
|
12404
|
+
`/design-systems/${dsId}/versions/${versionId}/tokens/${tokenId}`,
|
|
12405
|
+
DTODesignTokenListResponse
|
|
12430
12406
|
);
|
|
12431
12407
|
}
|
|
12432
|
-
delete(dsId, entryId) {
|
|
12433
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, _zod.z.any(), {
|
|
12434
|
-
method: "DELETE"
|
|
12435
|
-
});
|
|
12436
|
-
}
|
|
12437
12408
|
};
|
|
12438
12409
|
|
|
12439
|
-
// src/api/endpoints/design-system/
|
|
12440
|
-
|
|
12441
|
-
var StorybookHostingEndpoint = class {
|
|
12410
|
+
// src/api/endpoints/design-system/versions/versions.ts
|
|
12411
|
+
var DesignSystemVersionsEndpoint = class {
|
|
12442
12412
|
constructor(requestExecutor) {
|
|
12443
12413
|
this.requestExecutor = requestExecutor;
|
|
12414
|
+
__publicField(this, "themes");
|
|
12415
|
+
__publicField(this, "brands");
|
|
12416
|
+
__publicField(this, "tokenCollections");
|
|
12417
|
+
__publicField(this, "importJobs");
|
|
12418
|
+
__publicField(this, "tokens");
|
|
12419
|
+
__publicField(this, "tokenGroups");
|
|
12420
|
+
__publicField(this, "figmaComponents");
|
|
12421
|
+
__publicField(this, "figmaComponentGroups");
|
|
12422
|
+
__publicField(this, "figmaFrameStructures");
|
|
12423
|
+
__publicField(this, "stats");
|
|
12424
|
+
__publicField(this, "elementPropertyDefinitions");
|
|
12425
|
+
__publicField(this, "elementPropertyValues");
|
|
12426
|
+
__publicField(this, "elementsAction");
|
|
12427
|
+
__publicField(this, "elements");
|
|
12428
|
+
__publicField(this, "designSystemComponents");
|
|
12429
|
+
__publicField(this, "documentation");
|
|
12430
|
+
__publicField(this, "codeComponents");
|
|
12431
|
+
__publicField(this, "files");
|
|
12432
|
+
this.themes = new ThemesEndpoint(requestExecutor);
|
|
12433
|
+
this.brands = new BrandsEndpoint(requestExecutor);
|
|
12434
|
+
this.tokenCollections = new TokenCollectionsEndpoint(requestExecutor);
|
|
12435
|
+
this.importJobs = new ImportJobsEndpoint(requestExecutor);
|
|
12436
|
+
this.tokens = new TokensEndpoint(requestExecutor);
|
|
12437
|
+
this.tokenGroups = new TokenGroupsEndpoint(requestExecutor);
|
|
12438
|
+
this.figmaComponents = new FigmaComponentsEndpoint(requestExecutor);
|
|
12439
|
+
this.figmaComponentGroups = new FigmaComponentGroupsEndpoint(requestExecutor);
|
|
12440
|
+
this.figmaFrameStructures = new FigmaFrameStructuresEndpoint(requestExecutor);
|
|
12441
|
+
this.stats = new VersionStatsEndpoint(requestExecutor);
|
|
12442
|
+
this.elementPropertyDefinitions = new ElementPropertyDefinitionsEndpoint(requestExecutor);
|
|
12443
|
+
this.elementPropertyValues = new ElementPropertyValuesEndpoint(requestExecutor);
|
|
12444
|
+
this.elementsAction = new ElementsActionEndpoint(requestExecutor);
|
|
12445
|
+
this.elements = new ElementsEndpoint(requestExecutor);
|
|
12446
|
+
this.designSystemComponents = new DesignSystemComponentEndpoint(requestExecutor);
|
|
12447
|
+
this.documentation = new DocumentationEndpoint(requestExecutor);
|
|
12448
|
+
this.codeComponents = new CodeComponentsEndpoint(requestExecutor);
|
|
12449
|
+
this.files = new DesignSystemFilesEndpoint(requestExecutor);
|
|
12444
12450
|
}
|
|
12445
|
-
|
|
12446
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/
|
|
12447
|
-
body,
|
|
12448
|
-
method: "POST"
|
|
12449
|
-
});
|
|
12451
|
+
list(dsId) {
|
|
12452
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions`, DTODesignSystemVersionsListResponse);
|
|
12450
12453
|
}
|
|
12451
|
-
|
|
12452
|
-
return this.requestExecutor.json(
|
|
12453
|
-
|
|
12454
|
-
|
|
12455
|
-
|
|
12456
|
-
method: "DELETE"
|
|
12457
|
-
}
|
|
12458
|
-
);
|
|
12454
|
+
commit(dsId, body) {
|
|
12455
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/head/commit`, DTODesignSystemVersionCreationResponse, {
|
|
12456
|
+
method: "POST",
|
|
12457
|
+
body
|
|
12458
|
+
});
|
|
12459
12459
|
}
|
|
12460
|
-
|
|
12460
|
+
job(dsId, jobId) {
|
|
12461
12461
|
return this.requestExecutor.json(
|
|
12462
|
-
`/design-systems/${dsId}/
|
|
12463
|
-
|
|
12462
|
+
`/design-systems/${dsId}/versions/jobs/${jobId}`,
|
|
12463
|
+
DTODesignSystemVersionJobStatusResponse
|
|
12464
12464
|
);
|
|
12465
12465
|
}
|
|
12466
|
-
|
|
12466
|
+
room(dsId, vId) {
|
|
12467
12467
|
return this.requestExecutor.json(
|
|
12468
|
-
`/design-systems/${dsId}/
|
|
12469
|
-
|
|
12468
|
+
`/design-systems/${dsId}/versions/${vId}/room`,
|
|
12469
|
+
DTODesignSystemVersionRoomResponse
|
|
12470
12470
|
);
|
|
12471
12471
|
}
|
|
12472
12472
|
};
|
|
@@ -12480,7 +12480,6 @@ var DesignSystemsEndpoint = class {
|
|
|
12480
12480
|
__publicField(this, "bff");
|
|
12481
12481
|
__publicField(this, "sources");
|
|
12482
12482
|
__publicField(this, "storybook");
|
|
12483
|
-
__publicField(this, "storybookHosting");
|
|
12484
12483
|
__publicField(this, "contacts");
|
|
12485
12484
|
__publicField(this, "redirects");
|
|
12486
12485
|
__publicField(this, "figmaNodeStructures");
|
|
@@ -12490,7 +12489,6 @@ var DesignSystemsEndpoint = class {
|
|
|
12490
12489
|
this.bff = new DesignSystemBffEndpoint(requestExecutor);
|
|
12491
12490
|
this.sources = new DesignSystemSourcesEndpoint(requestExecutor);
|
|
12492
12491
|
this.storybook = new StorybookEntriesEndpoint(requestExecutor);
|
|
12493
|
-
this.storybookHosting = new StorybookHostingEndpoint(requestExecutor);
|
|
12494
12492
|
this.contacts = new DesignSystemContactsEndpoint(requestExecutor);
|
|
12495
12493
|
this.redirects = new DesignSystemPageRedirectsEndpoint(requestExecutor);
|
|
12496
12494
|
this.figmaNodeStructures = new FigmaNodeStructuresEndpoint(requestExecutor);
|
|
@@ -12531,6 +12529,25 @@ var DesignSystemsEndpoint = class {
|
|
|
12531
12529
|
}
|
|
12532
12530
|
};
|
|
12533
12531
|
|
|
12532
|
+
// src/api/endpoints/files.ts
|
|
12533
|
+
var FilesEndpoint = class {
|
|
12534
|
+
constructor(requestExecutor) {
|
|
12535
|
+
this.requestExecutor = requestExecutor;
|
|
12536
|
+
}
|
|
12537
|
+
upload(body) {
|
|
12538
|
+
return this.requestExecutor.json(`/files/upload`, DTOFileUploadBulkResponse, {
|
|
12539
|
+
method: "POST",
|
|
12540
|
+
body
|
|
12541
|
+
});
|
|
12542
|
+
}
|
|
12543
|
+
finalizeUpload(body) {
|
|
12544
|
+
return this.requestExecutor.json(`/files/upload/finalize`, DTOFileFinalizeBulkResponse, {
|
|
12545
|
+
method: "POST",
|
|
12546
|
+
body
|
|
12547
|
+
});
|
|
12548
|
+
}
|
|
12549
|
+
};
|
|
12550
|
+
|
|
12534
12551
|
// src/api/endpoints/forge/agents.ts
|
|
12535
12552
|
var ForgeAgentsEndpoint = class {
|
|
12536
12553
|
constructor(requestExecutor) {
|
|
@@ -13106,6 +13123,19 @@ var ForgeProjectIterationsEndpoint = class {
|
|
|
13106
13123
|
}
|
|
13107
13124
|
};
|
|
13108
13125
|
|
|
13126
|
+
// src/api/endpoints/liveblocks.ts
|
|
13127
|
+
var LiveblocksEndpoint = class {
|
|
13128
|
+
constructor(requestExecutor) {
|
|
13129
|
+
this.requestExecutor = requestExecutor;
|
|
13130
|
+
}
|
|
13131
|
+
auth(body) {
|
|
13132
|
+
return this.requestExecutor.json("/liveblocks/auth", DTOLiveblocksAuthResponse, {
|
|
13133
|
+
method: "POST",
|
|
13134
|
+
body
|
|
13135
|
+
});
|
|
13136
|
+
}
|
|
13137
|
+
};
|
|
13138
|
+
|
|
13109
13139
|
// src/api/endpoints/mcp/streams.ts
|
|
13110
13140
|
var MCPStreamsEndpoint = class {
|
|
13111
13141
|
constructor(requestExecutor) {
|
|
@@ -13172,6 +13202,88 @@ var SandboxesEndpoint = class {
|
|
|
13172
13202
|
}
|
|
13173
13203
|
};
|
|
13174
13204
|
|
|
13205
|
+
// src/api/endpoints/storybook-sites.ts
|
|
13206
|
+
|
|
13207
|
+
var StorybookSitesEndpoint = class {
|
|
13208
|
+
constructor(requestExecutor) {
|
|
13209
|
+
this.requestExecutor = requestExecutor;
|
|
13210
|
+
}
|
|
13211
|
+
listSites(query) {
|
|
13212
|
+
return this.requestExecutor.json(`/storybook/sites`, DTOStorybookSiteListResponse, {
|
|
13213
|
+
query: new URLSearchParams(query)
|
|
13214
|
+
});
|
|
13215
|
+
}
|
|
13216
|
+
deleteSite(siteId) {
|
|
13217
|
+
return this.requestExecutor.json(`/storybook/sites/${siteId}`, _zod2.default.unknown(), {
|
|
13218
|
+
method: "DELETE"
|
|
13219
|
+
});
|
|
13220
|
+
}
|
|
13221
|
+
uploadInit(body) {
|
|
13222
|
+
return this.requestExecutor.json(`/storybook/site-versions`, DTOStorybookSiteUploadResponse, {
|
|
13223
|
+
body,
|
|
13224
|
+
method: "POST"
|
|
13225
|
+
});
|
|
13226
|
+
}
|
|
13227
|
+
getVersion(siteVersionId) {
|
|
13228
|
+
return this.requestExecutor.json(`/storybook/site-versions/${siteVersionId}`, DTOStorybookSiteVersionResponse);
|
|
13229
|
+
}
|
|
13230
|
+
uploadFinailize(siteVersionId) {
|
|
13231
|
+
return this.requestExecutor.json(`/storybook/site-versions/${siteVersionId}`, DTOStorybookSiteVersionResponse, {
|
|
13232
|
+
method: "PUT"
|
|
13233
|
+
});
|
|
13234
|
+
}
|
|
13235
|
+
};
|
|
13236
|
+
|
|
13237
|
+
// src/api/endpoints/threads.ts
|
|
13238
|
+
var ThreadsEndpoint = class {
|
|
13239
|
+
constructor(requestExecutor) {
|
|
13240
|
+
this.requestExecutor = requestExecutor;
|
|
13241
|
+
}
|
|
13242
|
+
listMessages(threadId) {
|
|
13243
|
+
return this.requestExecutor.json(`/threads/${threadId}/messages`, DTOThreadMessageListResponse);
|
|
13244
|
+
}
|
|
13245
|
+
postMessage(threadId, body) {
|
|
13246
|
+
return this.requestExecutor.json(`/threads/${threadId}/messages`, DTOThreadMessageListResponse, {
|
|
13247
|
+
method: "POST",
|
|
13248
|
+
body
|
|
13249
|
+
});
|
|
13250
|
+
}
|
|
13251
|
+
postReaction(threadId, body) {
|
|
13252
|
+
return this.requestExecutor.json(`/threads/${threadId}/reactions`, DTOThreadReactionResponse, {
|
|
13253
|
+
method: "POST",
|
|
13254
|
+
body
|
|
13255
|
+
});
|
|
13256
|
+
}
|
|
13257
|
+
deleteReaction(threadId, body) {
|
|
13258
|
+
return this.requestExecutor.json(`/threads/${threadId}/reactions`, DTOFileUploadFinalizeResponse, {
|
|
13259
|
+
method: "DELETE",
|
|
13260
|
+
body
|
|
13261
|
+
});
|
|
13262
|
+
}
|
|
13263
|
+
};
|
|
13264
|
+
|
|
13265
|
+
// src/api/endpoints/users.ts
|
|
13266
|
+
var UsersEndpoint = class {
|
|
13267
|
+
constructor(requestExecutor) {
|
|
13268
|
+
this.requestExecutor = requestExecutor;
|
|
13269
|
+
}
|
|
13270
|
+
getMe() {
|
|
13271
|
+
return this.requestExecutor.json("/users/me", DTOAuthenticatedUserResponse);
|
|
13272
|
+
}
|
|
13273
|
+
listWorkspaces(uid) {
|
|
13274
|
+
return this.requestExecutor.json(`/users/${uid}/workspaces`, DTOUserWorkspaceMembershipsResponse);
|
|
13275
|
+
}
|
|
13276
|
+
delete(uid) {
|
|
13277
|
+
return this.requestExecutor.json(`/users/${uid}`, DTOAuthenticatedUserResponse, { method: "DELETE" });
|
|
13278
|
+
}
|
|
13279
|
+
updateProfile(uid, body) {
|
|
13280
|
+
return this.requestExecutor.json(`/users/${uid}/profile`, DTOAuthenticatedUserResponse, {
|
|
13281
|
+
method: "PUT",
|
|
13282
|
+
body
|
|
13283
|
+
});
|
|
13284
|
+
}
|
|
13285
|
+
};
|
|
13286
|
+
|
|
13175
13287
|
// src/api/endpoints/workspaces/billing.ts
|
|
13176
13288
|
var WorkspaceBillingEndpoint = class {
|
|
13177
13289
|
constructor(requestExecutor) {
|
|
@@ -13437,88 +13549,6 @@ var WorkspacesEndpoint = class {
|
|
|
13437
13549
|
}
|
|
13438
13550
|
};
|
|
13439
13551
|
|
|
13440
|
-
// src/api/endpoints/files.ts
|
|
13441
|
-
var FilesEndpoint = class {
|
|
13442
|
-
constructor(requestExecutor) {
|
|
13443
|
-
this.requestExecutor = requestExecutor;
|
|
13444
|
-
}
|
|
13445
|
-
upload(body) {
|
|
13446
|
-
return this.requestExecutor.json(`/files/upload`, DTOFileUploadBulkResponse, {
|
|
13447
|
-
method: "POST",
|
|
13448
|
-
body
|
|
13449
|
-
});
|
|
13450
|
-
}
|
|
13451
|
-
finalizeUpload(body) {
|
|
13452
|
-
return this.requestExecutor.json(`/files/upload/finalize`, DTOFileFinalizeBulkResponse, {
|
|
13453
|
-
method: "POST",
|
|
13454
|
-
body
|
|
13455
|
-
});
|
|
13456
|
-
}
|
|
13457
|
-
};
|
|
13458
|
-
|
|
13459
|
-
// src/api/endpoints/liveblocks.ts
|
|
13460
|
-
var LiveblocksEndpoint = class {
|
|
13461
|
-
constructor(requestExecutor) {
|
|
13462
|
-
this.requestExecutor = requestExecutor;
|
|
13463
|
-
}
|
|
13464
|
-
auth(body) {
|
|
13465
|
-
return this.requestExecutor.json("/liveblocks/auth", DTOLiveblocksAuthResponse, {
|
|
13466
|
-
method: "POST",
|
|
13467
|
-
body
|
|
13468
|
-
});
|
|
13469
|
-
}
|
|
13470
|
-
};
|
|
13471
|
-
|
|
13472
|
-
// src/api/endpoints/threads.ts
|
|
13473
|
-
var ThreadsEndpoint = class {
|
|
13474
|
-
constructor(requestExecutor) {
|
|
13475
|
-
this.requestExecutor = requestExecutor;
|
|
13476
|
-
}
|
|
13477
|
-
listMessages(threadId) {
|
|
13478
|
-
return this.requestExecutor.json(`/threads/${threadId}/messages`, DTOThreadMessageListResponse);
|
|
13479
|
-
}
|
|
13480
|
-
postMessage(threadId, body) {
|
|
13481
|
-
return this.requestExecutor.json(`/threads/${threadId}/messages`, DTOThreadMessageListResponse, {
|
|
13482
|
-
method: "POST",
|
|
13483
|
-
body
|
|
13484
|
-
});
|
|
13485
|
-
}
|
|
13486
|
-
postReaction(threadId, body) {
|
|
13487
|
-
return this.requestExecutor.json(`/threads/${threadId}/reactions`, DTOThreadReactionResponse, {
|
|
13488
|
-
method: "POST",
|
|
13489
|
-
body
|
|
13490
|
-
});
|
|
13491
|
-
}
|
|
13492
|
-
deleteReaction(threadId, body) {
|
|
13493
|
-
return this.requestExecutor.json(`/threads/${threadId}/reactions`, DTOFileUploadFinalizeResponse, {
|
|
13494
|
-
method: "DELETE",
|
|
13495
|
-
body
|
|
13496
|
-
});
|
|
13497
|
-
}
|
|
13498
|
-
};
|
|
13499
|
-
|
|
13500
|
-
// src/api/endpoints/users.ts
|
|
13501
|
-
var UsersEndpoint = class {
|
|
13502
|
-
constructor(requestExecutor) {
|
|
13503
|
-
this.requestExecutor = requestExecutor;
|
|
13504
|
-
}
|
|
13505
|
-
getMe() {
|
|
13506
|
-
return this.requestExecutor.json("/users/me", DTOAuthenticatedUserResponse);
|
|
13507
|
-
}
|
|
13508
|
-
listWorkspaces(uid) {
|
|
13509
|
-
return this.requestExecutor.json(`/users/${uid}/workspaces`, DTOUserWorkspaceMembershipsResponse);
|
|
13510
|
-
}
|
|
13511
|
-
delete(uid) {
|
|
13512
|
-
return this.requestExecutor.json(`/users/${uid}`, DTOAuthenticatedUserResponse, { method: "DELETE" });
|
|
13513
|
-
}
|
|
13514
|
-
updateProfile(uid, body) {
|
|
13515
|
-
return this.requestExecutor.json(`/users/${uid}/profile`, DTOAuthenticatedUserResponse, {
|
|
13516
|
-
method: "PUT",
|
|
13517
|
-
body
|
|
13518
|
-
});
|
|
13519
|
-
}
|
|
13520
|
-
};
|
|
13521
|
-
|
|
13522
13552
|
// src/api/transport/request-executor-error.ts
|
|
13523
13553
|
var RequestExecutorError = class _RequestExecutorError extends Error {
|
|
13524
13554
|
constructor(type, message, errorCode, serverErrorType, cause) {
|
|
@@ -13639,6 +13669,7 @@ var SupernovaApiClient = class {
|
|
|
13639
13669
|
__publicField(this, "threads");
|
|
13640
13670
|
__publicField(this, "mcpStreams");
|
|
13641
13671
|
__publicField(this, "sandboxes");
|
|
13672
|
+
__publicField(this, "storybookSites");
|
|
13642
13673
|
const apiSecret = _nullishCoalesce(config.apiSecret, () => ( _optionalChain([process, 'optionalAccess', _42 => _42.env, 'optionalAccess', _43 => _43.SUPERNOVA_API_SECRET])));
|
|
13643
13674
|
const requestExecutor = new RequestExecutor({
|
|
13644
13675
|
apiSecret,
|
|
@@ -13655,6 +13686,7 @@ var SupernovaApiClient = class {
|
|
|
13655
13686
|
this.threads = new ThreadsEndpoint(requestExecutor);
|
|
13656
13687
|
this.mcpStreams = new MCPStreamsEndpoint(requestExecutor);
|
|
13657
13688
|
this.sandboxes = new SandboxesEndpoint(requestExecutor);
|
|
13689
|
+
this.storybookSites = new StorybookSitesEndpoint(requestExecutor);
|
|
13658
13690
|
}
|
|
13659
13691
|
};
|
|
13660
13692
|
|
|
@@ -21019,5 +21051,12 @@ var TransactionQueue2 = class {
|
|
|
21019
21051
|
|
|
21020
21052
|
|
|
21021
21053
|
|
|
21022
|
-
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.DTOCreateFeatureSandbox = DTOCreateFeatureSandbox; 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.DTOFeatureSandboxListResponse = DTOFeatureSandboxListResponse; 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.DTOForgeProjectFeatureSandboxUpdated = DTOForgeProjectFeatureSandboxUpdated; 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.DTOForgeProjectIterationUpdated = DTOForgeProjectIterationUpdated; 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.DTOUpdateFeatureSandbox = DTOUpdateFeatureSandbox; 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.ForgeFeatureIterationTagsEndpoint = ForgeFeatureIterationTagsEndpoint; 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.VariableCollectionsSchema = VariableCollectionsSchema; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VariablesSchema = VariablesSchema; 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;
|
|
21054
|
+
|
|
21055
|
+
|
|
21056
|
+
|
|
21057
|
+
|
|
21058
|
+
|
|
21059
|
+
|
|
21060
|
+
|
|
21061
|
+
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.DTOCreateFeatureSandbox = DTOCreateFeatureSandbox; 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.DTOFeatureSandboxListResponse = DTOFeatureSandboxListResponse; 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.DTOForgeProjectFeatureSandboxUpdated = DTOForgeProjectFeatureSandboxUpdated; 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.DTOForgeProjectIterationUpdated = DTOForgeProjectIterationUpdated; 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.DTOIPWhitelist = DTOIPWhitelist; exports.DTOIPWhitelistEntry = DTOIPWhitelistEntry; exports.DTOIPWhitelistResponse = DTOIPWhitelistResponse; exports.DTOIPWhitelistUpdate = DTOIPWhitelistUpdate; 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.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSite = DTOStorybookSite; exports.DTOStorybookSiteListQuery = DTOStorybookSiteListQuery; exports.DTOStorybookSiteListResponse = DTOStorybookSiteListResponse; exports.DTOStorybookSiteUploadPayload = DTOStorybookSiteUploadPayload; exports.DTOStorybookSiteUploadResponse = DTOStorybookSiteUploadResponse; exports.DTOStorybookSiteVersion = DTOStorybookSiteVersion; exports.DTOStorybookSiteVersionResponse = DTOStorybookSiteVersionResponse; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; 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.DTOUpdateFeatureSandbox = DTOUpdateFeatureSandbox; 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.ForgeFeatureIterationTagsEndpoint = ForgeFeatureIterationTagsEndpoint; 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.StorybookSitesEndpoint = StorybookSitesEndpoint; 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.VariableCollectionsSchema = VariableCollectionsSchema; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VariablesSchema = VariablesSchema; 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;
|
|
21023
21062
|
//# sourceMappingURL=index.js.map
|