@supernova-studio/client 1.40.1 → 1.40.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 +278 -2
- package/dist/index.d.ts +278 -2
- package/dist/index.js +23 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
1
2
|
import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, FigmaExporter, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, ForgeProjectArtifact, ProjectFeature, ForgeSection } from '@supernova-studio/model';
|
|
2
3
|
import * as z from 'zod';
|
|
3
4
|
import z__default, { z as z$1, ZodSchema, ZodTypeDef } from 'zod';
|
|
@@ -9451,10 +9452,13 @@ declare const DTOStorybookEntryQuery: z$1.ZodObject<{
|
|
|
9451
9452
|
* Unique ID across versions (non-persistent ID)
|
|
9452
9453
|
*/
|
|
9453
9454
|
brandId: z$1.ZodOptional<z$1.ZodString>;
|
|
9455
|
+
excludeDocs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
9454
9456
|
}, "strip", z$1.ZodTypeAny, {
|
|
9455
9457
|
brandId?: string | undefined;
|
|
9458
|
+
excludeDocs?: boolean | undefined;
|
|
9456
9459
|
}, {
|
|
9457
9460
|
brandId?: string | undefined;
|
|
9461
|
+
excludeDocs?: boolean | undefined;
|
|
9458
9462
|
}>;
|
|
9459
9463
|
type DTOStorybookEntryQuery = z$1.infer<typeof DTOStorybookEntryQuery>;
|
|
9460
9464
|
declare const DTOStorybookEntry: z$1.ZodObject<{
|
|
@@ -84165,6 +84169,8 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
|
|
|
84165
84169
|
name: z__default.ZodString;
|
|
84166
84170
|
projectId: z__default.ZodString;
|
|
84167
84171
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
84172
|
+
e2bTemplateId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
84173
|
+
e2bIterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
84168
84174
|
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
84169
84175
|
status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
84170
84176
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
@@ -84187,6 +84193,8 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
|
|
|
84187
84193
|
threadId?: string | undefined;
|
|
84188
84194
|
sectionId?: string | undefined;
|
|
84189
84195
|
isArchived?: boolean | undefined;
|
|
84196
|
+
e2bTemplateId?: string | null | undefined;
|
|
84197
|
+
e2bIterationId?: string | null | undefined;
|
|
84190
84198
|
lastReplyTimestamp?: Date | undefined;
|
|
84191
84199
|
}, {
|
|
84192
84200
|
id: string;
|
|
@@ -84201,6 +84209,8 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
|
|
|
84201
84209
|
sortOrder?: number | undefined;
|
|
84202
84210
|
sectionId?: string | undefined;
|
|
84203
84211
|
isArchived?: boolean | undefined;
|
|
84212
|
+
e2bTemplateId?: string | null | undefined;
|
|
84213
|
+
e2bIterationId?: string | null | undefined;
|
|
84204
84214
|
numberOfIterations?: number | undefined;
|
|
84205
84215
|
numberOfBookmarkedIterations?: number | undefined;
|
|
84206
84216
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -84216,6 +84226,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
84216
84226
|
name: z__default.ZodString;
|
|
84217
84227
|
projectId: z__default.ZodString;
|
|
84218
84228
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
84229
|
+
e2bTemplateId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
84230
|
+
e2bIterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
84219
84231
|
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
84220
84232
|
status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
84221
84233
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
@@ -84238,6 +84250,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
84238
84250
|
threadId?: string | undefined;
|
|
84239
84251
|
sectionId?: string | undefined;
|
|
84240
84252
|
isArchived?: boolean | undefined;
|
|
84253
|
+
e2bTemplateId?: string | null | undefined;
|
|
84254
|
+
e2bIterationId?: string | null | undefined;
|
|
84241
84255
|
lastReplyTimestamp?: Date | undefined;
|
|
84242
84256
|
}, {
|
|
84243
84257
|
id: string;
|
|
@@ -84252,6 +84266,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
84252
84266
|
sortOrder?: number | undefined;
|
|
84253
84267
|
sectionId?: string | undefined;
|
|
84254
84268
|
isArchived?: boolean | undefined;
|
|
84269
|
+
e2bTemplateId?: string | null | undefined;
|
|
84270
|
+
e2bIterationId?: string | null | undefined;
|
|
84255
84271
|
numberOfIterations?: number | undefined;
|
|
84256
84272
|
numberOfBookmarkedIterations?: number | undefined;
|
|
84257
84273
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -84272,6 +84288,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
84272
84288
|
threadId?: string | undefined;
|
|
84273
84289
|
sectionId?: string | undefined;
|
|
84274
84290
|
isArchived?: boolean | undefined;
|
|
84291
|
+
e2bTemplateId?: string | null | undefined;
|
|
84292
|
+
e2bIterationId?: string | null | undefined;
|
|
84275
84293
|
lastReplyTimestamp?: Date | undefined;
|
|
84276
84294
|
}[];
|
|
84277
84295
|
}, {
|
|
@@ -84288,6 +84306,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
84288
84306
|
sortOrder?: number | undefined;
|
|
84289
84307
|
sectionId?: string | undefined;
|
|
84290
84308
|
isArchived?: boolean | undefined;
|
|
84309
|
+
e2bTemplateId?: string | null | undefined;
|
|
84310
|
+
e2bIterationId?: string | null | undefined;
|
|
84291
84311
|
numberOfIterations?: number | undefined;
|
|
84292
84312
|
numberOfBookmarkedIterations?: number | undefined;
|
|
84293
84313
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -84447,6 +84467,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
84447
84467
|
name: z__default.ZodString;
|
|
84448
84468
|
projectId: z__default.ZodString;
|
|
84449
84469
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
84470
|
+
e2bTemplateId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
84471
|
+
e2bIterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
84450
84472
|
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
84451
84473
|
status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
84452
84474
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
@@ -84469,6 +84491,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
84469
84491
|
threadId?: string | undefined;
|
|
84470
84492
|
sectionId?: string | undefined;
|
|
84471
84493
|
isArchived?: boolean | undefined;
|
|
84494
|
+
e2bTemplateId?: string | null | undefined;
|
|
84495
|
+
e2bIterationId?: string | null | undefined;
|
|
84472
84496
|
lastReplyTimestamp?: Date | undefined;
|
|
84473
84497
|
}, {
|
|
84474
84498
|
id: string;
|
|
@@ -84483,6 +84507,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
84483
84507
|
sortOrder?: number | undefined;
|
|
84484
84508
|
sectionId?: string | undefined;
|
|
84485
84509
|
isArchived?: boolean | undefined;
|
|
84510
|
+
e2bTemplateId?: string | null | undefined;
|
|
84511
|
+
e2bIterationId?: string | null | undefined;
|
|
84486
84512
|
numberOfIterations?: number | undefined;
|
|
84487
84513
|
numberOfBookmarkedIterations?: number | undefined;
|
|
84488
84514
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -84503,6 +84529,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
84503
84529
|
threadId?: string | undefined;
|
|
84504
84530
|
sectionId?: string | undefined;
|
|
84505
84531
|
isArchived?: boolean | undefined;
|
|
84532
|
+
e2bTemplateId?: string | null | undefined;
|
|
84533
|
+
e2bIterationId?: string | null | undefined;
|
|
84506
84534
|
lastReplyTimestamp?: Date | undefined;
|
|
84507
84535
|
};
|
|
84508
84536
|
}, {
|
|
@@ -84519,6 +84547,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
84519
84547
|
sortOrder?: number | undefined;
|
|
84520
84548
|
sectionId?: string | undefined;
|
|
84521
84549
|
isArchived?: boolean | undefined;
|
|
84550
|
+
e2bTemplateId?: string | null | undefined;
|
|
84551
|
+
e2bIterationId?: string | null | undefined;
|
|
84522
84552
|
numberOfIterations?: number | undefined;
|
|
84523
84553
|
numberOfBookmarkedIterations?: number | undefined;
|
|
84524
84554
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -122181,6 +122211,14 @@ declare const DTOThreadAgentResponseTracker: z__default.ZodObject<{
|
|
|
122181
122211
|
currentBody?: string | undefined;
|
|
122182
122212
|
}>;
|
|
122183
122213
|
type DTOThreadAgentResponseTracker = z__default.infer<typeof DTOThreadAgentResponseTracker>;
|
|
122214
|
+
declare const DTOThreadMessageFinalizeInput: z__default.ZodObject<{
|
|
122215
|
+
messageId: z__default.ZodString;
|
|
122216
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
122217
|
+
messageId: string;
|
|
122218
|
+
}, {
|
|
122219
|
+
messageId: string;
|
|
122220
|
+
}>;
|
|
122221
|
+
type DTOThreadMessageFinalizeInput = z__default.infer<typeof DTOThreadMessageFinalizeInput>;
|
|
122184
122222
|
declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
122185
122223
|
id: z__default.ZodString;
|
|
122186
122224
|
threadId: z__default.ZodString;
|
|
@@ -143170,7 +143208,7 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
143170
143208
|
declare class StorybookEntriesEndpoint {
|
|
143171
143209
|
private readonly requestExecutor;
|
|
143172
143210
|
constructor(requestExecutor: RequestExecutor);
|
|
143173
|
-
list(dsId: string,
|
|
143211
|
+
list(dsId: string, query?: DTOStorybookEntryQuery): Promise<{
|
|
143174
143212
|
entries: {
|
|
143175
143213
|
id: string;
|
|
143176
143214
|
createdAt: Date;
|
|
@@ -143818,6 +143856,8 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
143818
143856
|
threadId?: string | undefined;
|
|
143819
143857
|
sectionId?: string | undefined;
|
|
143820
143858
|
isArchived?: boolean | undefined;
|
|
143859
|
+
e2bTemplateId?: string | null | undefined;
|
|
143860
|
+
e2bIterationId?: string | null | undefined;
|
|
143821
143861
|
lastReplyTimestamp?: Date | undefined;
|
|
143822
143862
|
}[];
|
|
143823
143863
|
}>;
|
|
@@ -143837,6 +143877,8 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
143837
143877
|
threadId?: string | undefined;
|
|
143838
143878
|
sectionId?: string | undefined;
|
|
143839
143879
|
isArchived?: boolean | undefined;
|
|
143880
|
+
e2bTemplateId?: string | null | undefined;
|
|
143881
|
+
e2bIterationId?: string | null | undefined;
|
|
143840
143882
|
lastReplyTimestamp?: Date | undefined;
|
|
143841
143883
|
};
|
|
143842
143884
|
}>;
|
|
@@ -148005,6 +148047,236 @@ type DocumentationHierarchyTransaction = {
|
|
|
148005
148047
|
declare class BackendVersionRoomYDoc {
|
|
148006
148048
|
private readonly yDoc;
|
|
148007
148049
|
constructor(yDoc: Y.Doc);
|
|
148050
|
+
getDocumentationHierarchy(): {
|
|
148051
|
+
pages: {
|
|
148052
|
+
data: {
|
|
148053
|
+
configuration?: {
|
|
148054
|
+
showSidebar: boolean;
|
|
148055
|
+
header: {
|
|
148056
|
+
description: string;
|
|
148057
|
+
alignment: "Center" | "Left";
|
|
148058
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
148059
|
+
showBackgroundOverlay: boolean;
|
|
148060
|
+
showCoverText: boolean;
|
|
148061
|
+
backgroundColor?: {
|
|
148062
|
+
value: string;
|
|
148063
|
+
referencedTokenId?: string | undefined;
|
|
148064
|
+
} | null | undefined;
|
|
148065
|
+
foregroundColor?: {
|
|
148066
|
+
value: string;
|
|
148067
|
+
referencedTokenId?: string | undefined;
|
|
148068
|
+
} | null | undefined;
|
|
148069
|
+
backgroundImageAsset?: {
|
|
148070
|
+
type: "FigmaNode" | "Resource";
|
|
148071
|
+
resource?: {
|
|
148072
|
+
url: string;
|
|
148073
|
+
resourceId: string;
|
|
148074
|
+
} | undefined;
|
|
148075
|
+
figmaNode?: {
|
|
148076
|
+
sourceId: string;
|
|
148077
|
+
frameReferenceId: string;
|
|
148078
|
+
} | undefined;
|
|
148079
|
+
} | null | undefined;
|
|
148080
|
+
minHeight?: number | null | undefined;
|
|
148081
|
+
};
|
|
148082
|
+
isHidden?: boolean | undefined;
|
|
148083
|
+
isPrivate?: boolean | undefined;
|
|
148084
|
+
} | undefined;
|
|
148085
|
+
oldBlocks?: _supernova_studio_model.PageBlockV1[] | undefined;
|
|
148086
|
+
};
|
|
148087
|
+
id: string;
|
|
148088
|
+
createdAt: Date;
|
|
148089
|
+
updatedAt: Date;
|
|
148090
|
+
persistentId: string;
|
|
148091
|
+
designSystemVersionId: string;
|
|
148092
|
+
parentPersistentId: string;
|
|
148093
|
+
shortPersistentId: string;
|
|
148094
|
+
sortOrder: number;
|
|
148095
|
+
meta: {
|
|
148096
|
+
name: string;
|
|
148097
|
+
description?: string | undefined;
|
|
148098
|
+
};
|
|
148099
|
+
slug?: string | undefined;
|
|
148100
|
+
userSlug?: string | undefined;
|
|
148101
|
+
}[];
|
|
148102
|
+
pageSnapshots: {
|
|
148103
|
+
id: string;
|
|
148104
|
+
page: {
|
|
148105
|
+
data: {
|
|
148106
|
+
configuration?: {
|
|
148107
|
+
showSidebar: boolean;
|
|
148108
|
+
header: {
|
|
148109
|
+
description: string;
|
|
148110
|
+
alignment: "Center" | "Left";
|
|
148111
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
148112
|
+
showBackgroundOverlay: boolean;
|
|
148113
|
+
showCoverText: boolean;
|
|
148114
|
+
backgroundColor?: {
|
|
148115
|
+
value: string;
|
|
148116
|
+
referencedTokenId?: string | undefined;
|
|
148117
|
+
} | null | undefined;
|
|
148118
|
+
foregroundColor?: {
|
|
148119
|
+
value: string;
|
|
148120
|
+
referencedTokenId?: string | undefined;
|
|
148121
|
+
} | null | undefined;
|
|
148122
|
+
backgroundImageAsset?: {
|
|
148123
|
+
type: "FigmaNode" | "Resource";
|
|
148124
|
+
resource?: {
|
|
148125
|
+
url: string;
|
|
148126
|
+
resourceId: string;
|
|
148127
|
+
} | undefined;
|
|
148128
|
+
figmaNode?: {
|
|
148129
|
+
sourceId: string;
|
|
148130
|
+
frameReferenceId: string;
|
|
148131
|
+
} | undefined;
|
|
148132
|
+
} | null | undefined;
|
|
148133
|
+
minHeight?: number | null | undefined;
|
|
148134
|
+
};
|
|
148135
|
+
isHidden?: boolean | undefined;
|
|
148136
|
+
isPrivate?: boolean | undefined;
|
|
148137
|
+
} | undefined;
|
|
148138
|
+
oldBlocks?: _supernova_studio_model.PageBlockV1[] | undefined;
|
|
148139
|
+
};
|
|
148140
|
+
id: string;
|
|
148141
|
+
createdAt: Date;
|
|
148142
|
+
updatedAt: Date;
|
|
148143
|
+
persistentId: string;
|
|
148144
|
+
designSystemVersionId: string;
|
|
148145
|
+
parentPersistentId: string;
|
|
148146
|
+
shortPersistentId: string;
|
|
148147
|
+
sortOrder: number;
|
|
148148
|
+
meta: {
|
|
148149
|
+
name: string;
|
|
148150
|
+
description?: string | undefined;
|
|
148151
|
+
};
|
|
148152
|
+
slug?: string | undefined;
|
|
148153
|
+
userSlug?: string | undefined;
|
|
148154
|
+
};
|
|
148155
|
+
createdAt: Date;
|
|
148156
|
+
updatedAt: Date;
|
|
148157
|
+
persistentId: string;
|
|
148158
|
+
designSystemVersionId: string;
|
|
148159
|
+
createdByUserId: string;
|
|
148160
|
+
reason: "Publish" | "Deletion";
|
|
148161
|
+
pageContentHash: string;
|
|
148162
|
+
pageContentStorageKey: string;
|
|
148163
|
+
}[];
|
|
148164
|
+
groups: {
|
|
148165
|
+
id: string;
|
|
148166
|
+
createdAt: Date;
|
|
148167
|
+
updatedAt: Date;
|
|
148168
|
+
persistentId: string;
|
|
148169
|
+
designSystemVersionId: string;
|
|
148170
|
+
childType: "String" | "Image" | "Font" | "Documentation" | "Component" | "DocumentationPage" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Theme" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
148171
|
+
sortOrder: number;
|
|
148172
|
+
meta: {
|
|
148173
|
+
name: string;
|
|
148174
|
+
description?: string | undefined;
|
|
148175
|
+
};
|
|
148176
|
+
data?: {
|
|
148177
|
+
configuration?: {
|
|
148178
|
+
showSidebar: boolean;
|
|
148179
|
+
header: {
|
|
148180
|
+
description: string;
|
|
148181
|
+
alignment: "Center" | "Left";
|
|
148182
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
148183
|
+
showBackgroundOverlay: boolean;
|
|
148184
|
+
showCoverText: boolean;
|
|
148185
|
+
backgroundColor?: {
|
|
148186
|
+
value: string;
|
|
148187
|
+
referencedTokenId?: string | undefined;
|
|
148188
|
+
} | null | undefined;
|
|
148189
|
+
foregroundColor?: {
|
|
148190
|
+
value: string;
|
|
148191
|
+
referencedTokenId?: string | undefined;
|
|
148192
|
+
} | null | undefined;
|
|
148193
|
+
backgroundImageAsset?: {
|
|
148194
|
+
type: "FigmaNode" | "Resource";
|
|
148195
|
+
resource?: {
|
|
148196
|
+
url: string;
|
|
148197
|
+
resourceId: string;
|
|
148198
|
+
} | undefined;
|
|
148199
|
+
figmaNode?: {
|
|
148200
|
+
sourceId: string;
|
|
148201
|
+
frameReferenceId: string;
|
|
148202
|
+
} | undefined;
|
|
148203
|
+
} | null | undefined;
|
|
148204
|
+
minHeight?: number | null | undefined;
|
|
148205
|
+
};
|
|
148206
|
+
isHidden?: boolean | undefined;
|
|
148207
|
+
isPrivate?: boolean | undefined;
|
|
148208
|
+
} | undefined;
|
|
148209
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
148210
|
+
} | undefined;
|
|
148211
|
+
brandPersistentId?: string | undefined;
|
|
148212
|
+
parentPersistentId?: string | undefined;
|
|
148213
|
+
shortPersistentId?: string | undefined;
|
|
148214
|
+
slug?: string | undefined;
|
|
148215
|
+
userSlug?: string | undefined;
|
|
148216
|
+
}[];
|
|
148217
|
+
groupSnapshots: {
|
|
148218
|
+
group: {
|
|
148219
|
+
id: string;
|
|
148220
|
+
createdAt: Date;
|
|
148221
|
+
updatedAt: Date;
|
|
148222
|
+
persistentId: string;
|
|
148223
|
+
designSystemVersionId: string;
|
|
148224
|
+
childType: "String" | "Image" | "Font" | "Documentation" | "Component" | "DocumentationPage" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Theme" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
148225
|
+
sortOrder: number;
|
|
148226
|
+
meta: {
|
|
148227
|
+
name: string;
|
|
148228
|
+
description?: string | undefined;
|
|
148229
|
+
};
|
|
148230
|
+
data?: {
|
|
148231
|
+
configuration?: {
|
|
148232
|
+
showSidebar: boolean;
|
|
148233
|
+
header: {
|
|
148234
|
+
description: string;
|
|
148235
|
+
alignment: "Center" | "Left";
|
|
148236
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
148237
|
+
showBackgroundOverlay: boolean;
|
|
148238
|
+
showCoverText: boolean;
|
|
148239
|
+
backgroundColor?: {
|
|
148240
|
+
value: string;
|
|
148241
|
+
referencedTokenId?: string | undefined;
|
|
148242
|
+
} | null | undefined;
|
|
148243
|
+
foregroundColor?: {
|
|
148244
|
+
value: string;
|
|
148245
|
+
referencedTokenId?: string | undefined;
|
|
148246
|
+
} | null | undefined;
|
|
148247
|
+
backgroundImageAsset?: {
|
|
148248
|
+
type: "FigmaNode" | "Resource";
|
|
148249
|
+
resource?: {
|
|
148250
|
+
url: string;
|
|
148251
|
+
resourceId: string;
|
|
148252
|
+
} | undefined;
|
|
148253
|
+
figmaNode?: {
|
|
148254
|
+
sourceId: string;
|
|
148255
|
+
frameReferenceId: string;
|
|
148256
|
+
} | undefined;
|
|
148257
|
+
} | null | undefined;
|
|
148258
|
+
minHeight?: number | null | undefined;
|
|
148259
|
+
};
|
|
148260
|
+
isHidden?: boolean | undefined;
|
|
148261
|
+
isPrivate?: boolean | undefined;
|
|
148262
|
+
} | undefined;
|
|
148263
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
148264
|
+
} | undefined;
|
|
148265
|
+
brandPersistentId?: string | undefined;
|
|
148266
|
+
parentPersistentId?: string | undefined;
|
|
148267
|
+
shortPersistentId?: string | undefined;
|
|
148268
|
+
slug?: string | undefined;
|
|
148269
|
+
userSlug?: string | undefined;
|
|
148270
|
+
};
|
|
148271
|
+
id: string;
|
|
148272
|
+
createdAt: Date;
|
|
148273
|
+
updatedAt: Date;
|
|
148274
|
+
persistentId: string;
|
|
148275
|
+
designSystemVersionId: string;
|
|
148276
|
+
createdByUserId: string;
|
|
148277
|
+
reason: "Publish" | "Deletion";
|
|
148278
|
+
}[];
|
|
148279
|
+
};
|
|
148008
148280
|
updateDocumentationHierarchy(transaction: DocumentationHierarchyTransaction): void;
|
|
148009
148281
|
getDocumentationPageContentHashes(): {
|
|
148010
148282
|
[k: string]: string;
|
|
@@ -148268,6 +148540,8 @@ declare function applyProjectActionsLocally(input: Input): {
|
|
|
148268
148540
|
threadId?: string | undefined;
|
|
148269
148541
|
sectionId?: string | undefined;
|
|
148270
148542
|
isArchived?: boolean | undefined;
|
|
148543
|
+
e2bTemplateId?: string | null | undefined;
|
|
148544
|
+
e2bIterationId?: string | null | undefined;
|
|
148271
148545
|
lastReplyTimestamp?: Date | undefined;
|
|
148272
148546
|
}[];
|
|
148273
148547
|
artifactSections: {
|
|
@@ -148337,6 +148611,8 @@ declare class LocalProjectActionExecutor {
|
|
|
148337
148611
|
threadId?: string | undefined;
|
|
148338
148612
|
sectionId?: string | undefined;
|
|
148339
148613
|
isArchived?: boolean | undefined;
|
|
148614
|
+
e2bTemplateId?: string | null | undefined;
|
|
148615
|
+
e2bIterationId?: string | null | undefined;
|
|
148340
148616
|
lastReplyTimestamp?: Date | undefined;
|
|
148341
148617
|
}[];
|
|
148342
148618
|
artifactSections: {
|
|
@@ -148446,4 +148722,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
148446
148722
|
reason: ValidationErrorReason | undefined;
|
|
148447
148723
|
};
|
|
148448
148724
|
|
|
148449
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutResponse, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetType, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetType, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageCreateInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
148725
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutResponse, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetType, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetType, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|