@supernova-studio/client 0.57.18 → 0.57.20
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 +47 -21
- package/dist/index.d.ts +47 -21
- package/dist/index.js +33 -26
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +75 -68
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/data-source.ts +1 -0
- package/src/api/endpoints/design-system/sources.ts +5 -0
package/dist/index.d.mts
CHANGED
|
@@ -5004,9 +5004,11 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5004
5004
|
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
5005
5005
|
lastImportMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5006
5006
|
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
5007
|
+
isCollectionsMigrationCompleted: z.ZodDefault<z.ZodBoolean>;
|
|
5007
5008
|
}, "strip", z.ZodTypeAny, {
|
|
5008
5009
|
fileId: string;
|
|
5009
5010
|
isTokenTypeSplitEnabled: boolean;
|
|
5011
|
+
isCollectionsMigrationCompleted: boolean;
|
|
5010
5012
|
lastImportedAt?: Date | undefined;
|
|
5011
5013
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5012
5014
|
}, {
|
|
@@ -5014,6 +5016,7 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5014
5016
|
isTokenTypeSplitEnabled: boolean;
|
|
5015
5017
|
lastImportedAt?: Date | undefined;
|
|
5016
5018
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5019
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
5017
5020
|
}>;
|
|
5018
5021
|
}, "strip", z.ZodTypeAny, {
|
|
5019
5022
|
type: "FigmaVariablesPlugin";
|
|
@@ -5030,6 +5033,7 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5030
5033
|
figmaVariablesPlugin: {
|
|
5031
5034
|
fileId: string;
|
|
5032
5035
|
isTokenTypeSplitEnabled: boolean;
|
|
5036
|
+
isCollectionsMigrationCompleted: boolean;
|
|
5033
5037
|
lastImportedAt?: Date | undefined;
|
|
5034
5038
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5035
5039
|
};
|
|
@@ -5050,6 +5054,7 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5050
5054
|
isTokenTypeSplitEnabled: boolean;
|
|
5051
5055
|
lastImportedAt?: Date | undefined;
|
|
5052
5056
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5057
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
5053
5058
|
};
|
|
5054
5059
|
}>;
|
|
5055
5060
|
type DTODataSourceFigmaVariablesPlugin = z.infer<typeof DTODataSourceFigmaVariablesPlugin>;
|
|
@@ -5518,9 +5523,11 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5518
5523
|
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
5519
5524
|
lastImportMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5520
5525
|
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
5526
|
+
isCollectionsMigrationCompleted: z.ZodDefault<z.ZodBoolean>;
|
|
5521
5527
|
}, "strip", z.ZodTypeAny, {
|
|
5522
5528
|
fileId: string;
|
|
5523
5529
|
isTokenTypeSplitEnabled: boolean;
|
|
5530
|
+
isCollectionsMigrationCompleted: boolean;
|
|
5524
5531
|
lastImportedAt?: Date | undefined;
|
|
5525
5532
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5526
5533
|
}, {
|
|
@@ -5528,6 +5535,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5528
5535
|
isTokenTypeSplitEnabled: boolean;
|
|
5529
5536
|
lastImportedAt?: Date | undefined;
|
|
5530
5537
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5538
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
5531
5539
|
}>;
|
|
5532
5540
|
}, "strip", z.ZodTypeAny, {
|
|
5533
5541
|
type: "FigmaVariablesPlugin";
|
|
@@ -5544,6 +5552,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5544
5552
|
figmaVariablesPlugin: {
|
|
5545
5553
|
fileId: string;
|
|
5546
5554
|
isTokenTypeSplitEnabled: boolean;
|
|
5555
|
+
isCollectionsMigrationCompleted: boolean;
|
|
5547
5556
|
lastImportedAt?: Date | undefined;
|
|
5548
5557
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5549
5558
|
};
|
|
@@ -5564,6 +5573,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5564
5573
|
isTokenTypeSplitEnabled: boolean;
|
|
5565
5574
|
lastImportedAt?: Date | undefined;
|
|
5566
5575
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5576
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
5567
5577
|
};
|
|
5568
5578
|
}>, z.ZodObject<{
|
|
5569
5579
|
id: z.ZodString;
|
|
@@ -6185,9 +6195,11 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6185
6195
|
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
6186
6196
|
lastImportMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6187
6197
|
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
6198
|
+
isCollectionsMigrationCompleted: z.ZodDefault<z.ZodBoolean>;
|
|
6188
6199
|
}, "strip", z.ZodTypeAny, {
|
|
6189
6200
|
fileId: string;
|
|
6190
6201
|
isTokenTypeSplitEnabled: boolean;
|
|
6202
|
+
isCollectionsMigrationCompleted: boolean;
|
|
6191
6203
|
lastImportedAt?: Date | undefined;
|
|
6192
6204
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6193
6205
|
}, {
|
|
@@ -6195,6 +6207,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6195
6207
|
isTokenTypeSplitEnabled: boolean;
|
|
6196
6208
|
lastImportedAt?: Date | undefined;
|
|
6197
6209
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6210
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
6198
6211
|
}>;
|
|
6199
6212
|
}, "strip", z.ZodTypeAny, {
|
|
6200
6213
|
type: "FigmaVariablesPlugin";
|
|
@@ -6211,6 +6224,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6211
6224
|
figmaVariablesPlugin: {
|
|
6212
6225
|
fileId: string;
|
|
6213
6226
|
isTokenTypeSplitEnabled: boolean;
|
|
6227
|
+
isCollectionsMigrationCompleted: boolean;
|
|
6214
6228
|
lastImportedAt?: Date | undefined;
|
|
6215
6229
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6216
6230
|
};
|
|
@@ -6231,6 +6245,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6231
6245
|
isTokenTypeSplitEnabled: boolean;
|
|
6232
6246
|
lastImportedAt?: Date | undefined;
|
|
6233
6247
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6248
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
6234
6249
|
};
|
|
6235
6250
|
}>, z.ZodObject<{
|
|
6236
6251
|
id: z.ZodString;
|
|
@@ -6495,6 +6510,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6495
6510
|
figmaVariablesPlugin: {
|
|
6496
6511
|
fileId: string;
|
|
6497
6512
|
isTokenTypeSplitEnabled: boolean;
|
|
6513
|
+
isCollectionsMigrationCompleted: boolean;
|
|
6498
6514
|
lastImportedAt?: Date | undefined;
|
|
6499
6515
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6500
6516
|
};
|
|
@@ -6611,6 +6627,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6611
6627
|
isTokenTypeSplitEnabled: boolean;
|
|
6612
6628
|
lastImportedAt?: Date | undefined;
|
|
6613
6629
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6630
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
6614
6631
|
};
|
|
6615
6632
|
};
|
|
6616
6633
|
}>;
|
|
@@ -7081,9 +7098,11 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7081
7098
|
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
7082
7099
|
lastImportMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7083
7100
|
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
7101
|
+
isCollectionsMigrationCompleted: z.ZodDefault<z.ZodBoolean>;
|
|
7084
7102
|
}, "strip", z.ZodTypeAny, {
|
|
7085
7103
|
fileId: string;
|
|
7086
7104
|
isTokenTypeSplitEnabled: boolean;
|
|
7105
|
+
isCollectionsMigrationCompleted: boolean;
|
|
7087
7106
|
lastImportedAt?: Date | undefined;
|
|
7088
7107
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7089
7108
|
}, {
|
|
@@ -7091,6 +7110,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7091
7110
|
isTokenTypeSplitEnabled: boolean;
|
|
7092
7111
|
lastImportedAt?: Date | undefined;
|
|
7093
7112
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7113
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
7094
7114
|
}>;
|
|
7095
7115
|
}, "strip", z.ZodTypeAny, {
|
|
7096
7116
|
type: "FigmaVariablesPlugin";
|
|
@@ -7107,6 +7127,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7107
7127
|
figmaVariablesPlugin: {
|
|
7108
7128
|
fileId: string;
|
|
7109
7129
|
isTokenTypeSplitEnabled: boolean;
|
|
7130
|
+
isCollectionsMigrationCompleted: boolean;
|
|
7110
7131
|
lastImportedAt?: Date | undefined;
|
|
7111
7132
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7112
7133
|
};
|
|
@@ -7127,6 +7148,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7127
7148
|
isTokenTypeSplitEnabled: boolean;
|
|
7128
7149
|
lastImportedAt?: Date | undefined;
|
|
7129
7150
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7151
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
7130
7152
|
};
|
|
7131
7153
|
}>, z.ZodObject<{
|
|
7132
7154
|
id: z.ZodString;
|
|
@@ -7391,6 +7413,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7391
7413
|
figmaVariablesPlugin: {
|
|
7392
7414
|
fileId: string;
|
|
7393
7415
|
isTokenTypeSplitEnabled: boolean;
|
|
7416
|
+
isCollectionsMigrationCompleted: boolean;
|
|
7394
7417
|
lastImportedAt?: Date | undefined;
|
|
7395
7418
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7396
7419
|
};
|
|
@@ -7507,6 +7530,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7507
7530
|
isTokenTypeSplitEnabled: boolean;
|
|
7508
7531
|
lastImportedAt?: Date | undefined;
|
|
7509
7532
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7533
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
7510
7534
|
};
|
|
7511
7535
|
})[];
|
|
7512
7536
|
}>;
|
|
@@ -86639,6 +86663,26 @@ declare class TokenCollectionsEndpoint {
|
|
|
86639
86663
|
}>;
|
|
86640
86664
|
}
|
|
86641
86665
|
|
|
86666
|
+
declare class TokenGroupsEndpoint {
|
|
86667
|
+
private readonly requestExecutor;
|
|
86668
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86669
|
+
create(dsId: string, versionId: string, body: DTODesignTokenGroupCreatePayload): Promise<{
|
|
86670
|
+
group: {
|
|
86671
|
+
id: string;
|
|
86672
|
+
persistentId: string;
|
|
86673
|
+
meta: {
|
|
86674
|
+
name: string;
|
|
86675
|
+
description?: string | undefined;
|
|
86676
|
+
};
|
|
86677
|
+
isRoot: boolean;
|
|
86678
|
+
childrenIds: string[];
|
|
86679
|
+
brandId: string;
|
|
86680
|
+
tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
|
|
86681
|
+
};
|
|
86682
|
+
}>;
|
|
86683
|
+
list(dsId: string, versionId: string): Promise<DTODesignTokenGroupListResponse>;
|
|
86684
|
+
}
|
|
86685
|
+
|
|
86642
86686
|
declare class TokensEndpoint {
|
|
86643
86687
|
private readonly requestExecutor;
|
|
86644
86688
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -87024,26 +87068,6 @@ declare class TokensEndpoint {
|
|
|
87024
87068
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
87025
87069
|
}
|
|
87026
87070
|
|
|
87027
|
-
declare class TokenGroupsEndpoint {
|
|
87028
|
-
private readonly requestExecutor;
|
|
87029
|
-
constructor(requestExecutor: RequestExecutor);
|
|
87030
|
-
create(dsId: string, versionId: string, body: DTODesignTokenGroupCreatePayload): Promise<{
|
|
87031
|
-
group: {
|
|
87032
|
-
id: string;
|
|
87033
|
-
persistentId: string;
|
|
87034
|
-
meta: {
|
|
87035
|
-
name: string;
|
|
87036
|
-
description?: string | undefined;
|
|
87037
|
-
};
|
|
87038
|
-
isRoot: boolean;
|
|
87039
|
-
childrenIds: string[];
|
|
87040
|
-
brandId: string;
|
|
87041
|
-
tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
|
|
87042
|
-
};
|
|
87043
|
-
}>;
|
|
87044
|
-
list(dsId: string, versionId: string): Promise<DTODesignTokenGroupListResponse>;
|
|
87045
|
-
}
|
|
87046
|
-
|
|
87047
87071
|
declare class DesignSystemVersionsEndpoint {
|
|
87048
87072
|
private readonly requestExecutor;
|
|
87049
87073
|
readonly themes: ThemesEndpoint;
|
|
@@ -87248,11 +87272,13 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
87248
87272
|
figmaVariablesPlugin: {
|
|
87249
87273
|
fileId: string;
|
|
87250
87274
|
isTokenTypeSplitEnabled: boolean;
|
|
87275
|
+
isCollectionsMigrationCompleted: boolean;
|
|
87251
87276
|
lastImportedAt?: Date | undefined;
|
|
87252
87277
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
87253
87278
|
};
|
|
87254
87279
|
})[];
|
|
87255
87280
|
}>;
|
|
87281
|
+
delete(dsId: string, sourceId: string): Promise<any>;
|
|
87256
87282
|
}
|
|
87257
87283
|
|
|
87258
87284
|
declare class DesignSystemsEndpoint {
|
|
@@ -91319,4 +91345,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
91319
91345
|
|
|
91320
91346
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
91321
91347
|
|
|
91322
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
91348
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
package/dist/index.d.ts
CHANGED
|
@@ -5004,9 +5004,11 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5004
5004
|
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
5005
5005
|
lastImportMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5006
5006
|
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
5007
|
+
isCollectionsMigrationCompleted: z.ZodDefault<z.ZodBoolean>;
|
|
5007
5008
|
}, "strip", z.ZodTypeAny, {
|
|
5008
5009
|
fileId: string;
|
|
5009
5010
|
isTokenTypeSplitEnabled: boolean;
|
|
5011
|
+
isCollectionsMigrationCompleted: boolean;
|
|
5010
5012
|
lastImportedAt?: Date | undefined;
|
|
5011
5013
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5012
5014
|
}, {
|
|
@@ -5014,6 +5016,7 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5014
5016
|
isTokenTypeSplitEnabled: boolean;
|
|
5015
5017
|
lastImportedAt?: Date | undefined;
|
|
5016
5018
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5019
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
5017
5020
|
}>;
|
|
5018
5021
|
}, "strip", z.ZodTypeAny, {
|
|
5019
5022
|
type: "FigmaVariablesPlugin";
|
|
@@ -5030,6 +5033,7 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5030
5033
|
figmaVariablesPlugin: {
|
|
5031
5034
|
fileId: string;
|
|
5032
5035
|
isTokenTypeSplitEnabled: boolean;
|
|
5036
|
+
isCollectionsMigrationCompleted: boolean;
|
|
5033
5037
|
lastImportedAt?: Date | undefined;
|
|
5034
5038
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5035
5039
|
};
|
|
@@ -5050,6 +5054,7 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5050
5054
|
isTokenTypeSplitEnabled: boolean;
|
|
5051
5055
|
lastImportedAt?: Date | undefined;
|
|
5052
5056
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5057
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
5053
5058
|
};
|
|
5054
5059
|
}>;
|
|
5055
5060
|
type DTODataSourceFigmaVariablesPlugin = z.infer<typeof DTODataSourceFigmaVariablesPlugin>;
|
|
@@ -5518,9 +5523,11 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5518
5523
|
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
5519
5524
|
lastImportMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5520
5525
|
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
5526
|
+
isCollectionsMigrationCompleted: z.ZodDefault<z.ZodBoolean>;
|
|
5521
5527
|
}, "strip", z.ZodTypeAny, {
|
|
5522
5528
|
fileId: string;
|
|
5523
5529
|
isTokenTypeSplitEnabled: boolean;
|
|
5530
|
+
isCollectionsMigrationCompleted: boolean;
|
|
5524
5531
|
lastImportedAt?: Date | undefined;
|
|
5525
5532
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5526
5533
|
}, {
|
|
@@ -5528,6 +5535,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5528
5535
|
isTokenTypeSplitEnabled: boolean;
|
|
5529
5536
|
lastImportedAt?: Date | undefined;
|
|
5530
5537
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5538
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
5531
5539
|
}>;
|
|
5532
5540
|
}, "strip", z.ZodTypeAny, {
|
|
5533
5541
|
type: "FigmaVariablesPlugin";
|
|
@@ -5544,6 +5552,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5544
5552
|
figmaVariablesPlugin: {
|
|
5545
5553
|
fileId: string;
|
|
5546
5554
|
isTokenTypeSplitEnabled: boolean;
|
|
5555
|
+
isCollectionsMigrationCompleted: boolean;
|
|
5547
5556
|
lastImportedAt?: Date | undefined;
|
|
5548
5557
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5549
5558
|
};
|
|
@@ -5564,6 +5573,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5564
5573
|
isTokenTypeSplitEnabled: boolean;
|
|
5565
5574
|
lastImportedAt?: Date | undefined;
|
|
5566
5575
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5576
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
5567
5577
|
};
|
|
5568
5578
|
}>, z.ZodObject<{
|
|
5569
5579
|
id: z.ZodString;
|
|
@@ -6185,9 +6195,11 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6185
6195
|
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
6186
6196
|
lastImportMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6187
6197
|
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
6198
|
+
isCollectionsMigrationCompleted: z.ZodDefault<z.ZodBoolean>;
|
|
6188
6199
|
}, "strip", z.ZodTypeAny, {
|
|
6189
6200
|
fileId: string;
|
|
6190
6201
|
isTokenTypeSplitEnabled: boolean;
|
|
6202
|
+
isCollectionsMigrationCompleted: boolean;
|
|
6191
6203
|
lastImportedAt?: Date | undefined;
|
|
6192
6204
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6193
6205
|
}, {
|
|
@@ -6195,6 +6207,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6195
6207
|
isTokenTypeSplitEnabled: boolean;
|
|
6196
6208
|
lastImportedAt?: Date | undefined;
|
|
6197
6209
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6210
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
6198
6211
|
}>;
|
|
6199
6212
|
}, "strip", z.ZodTypeAny, {
|
|
6200
6213
|
type: "FigmaVariablesPlugin";
|
|
@@ -6211,6 +6224,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6211
6224
|
figmaVariablesPlugin: {
|
|
6212
6225
|
fileId: string;
|
|
6213
6226
|
isTokenTypeSplitEnabled: boolean;
|
|
6227
|
+
isCollectionsMigrationCompleted: boolean;
|
|
6214
6228
|
lastImportedAt?: Date | undefined;
|
|
6215
6229
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6216
6230
|
};
|
|
@@ -6231,6 +6245,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6231
6245
|
isTokenTypeSplitEnabled: boolean;
|
|
6232
6246
|
lastImportedAt?: Date | undefined;
|
|
6233
6247
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6248
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
6234
6249
|
};
|
|
6235
6250
|
}>, z.ZodObject<{
|
|
6236
6251
|
id: z.ZodString;
|
|
@@ -6495,6 +6510,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6495
6510
|
figmaVariablesPlugin: {
|
|
6496
6511
|
fileId: string;
|
|
6497
6512
|
isTokenTypeSplitEnabled: boolean;
|
|
6513
|
+
isCollectionsMigrationCompleted: boolean;
|
|
6498
6514
|
lastImportedAt?: Date | undefined;
|
|
6499
6515
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6500
6516
|
};
|
|
@@ -6611,6 +6627,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6611
6627
|
isTokenTypeSplitEnabled: boolean;
|
|
6612
6628
|
lastImportedAt?: Date | undefined;
|
|
6613
6629
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
6630
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
6614
6631
|
};
|
|
6615
6632
|
};
|
|
6616
6633
|
}>;
|
|
@@ -7081,9 +7098,11 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7081
7098
|
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
7082
7099
|
lastImportMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7083
7100
|
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
7101
|
+
isCollectionsMigrationCompleted: z.ZodDefault<z.ZodBoolean>;
|
|
7084
7102
|
}, "strip", z.ZodTypeAny, {
|
|
7085
7103
|
fileId: string;
|
|
7086
7104
|
isTokenTypeSplitEnabled: boolean;
|
|
7105
|
+
isCollectionsMigrationCompleted: boolean;
|
|
7087
7106
|
lastImportedAt?: Date | undefined;
|
|
7088
7107
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7089
7108
|
}, {
|
|
@@ -7091,6 +7110,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7091
7110
|
isTokenTypeSplitEnabled: boolean;
|
|
7092
7111
|
lastImportedAt?: Date | undefined;
|
|
7093
7112
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7113
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
7094
7114
|
}>;
|
|
7095
7115
|
}, "strip", z.ZodTypeAny, {
|
|
7096
7116
|
type: "FigmaVariablesPlugin";
|
|
@@ -7107,6 +7127,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7107
7127
|
figmaVariablesPlugin: {
|
|
7108
7128
|
fileId: string;
|
|
7109
7129
|
isTokenTypeSplitEnabled: boolean;
|
|
7130
|
+
isCollectionsMigrationCompleted: boolean;
|
|
7110
7131
|
lastImportedAt?: Date | undefined;
|
|
7111
7132
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7112
7133
|
};
|
|
@@ -7127,6 +7148,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7127
7148
|
isTokenTypeSplitEnabled: boolean;
|
|
7128
7149
|
lastImportedAt?: Date | undefined;
|
|
7129
7150
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7151
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
7130
7152
|
};
|
|
7131
7153
|
}>, z.ZodObject<{
|
|
7132
7154
|
id: z.ZodString;
|
|
@@ -7391,6 +7413,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7391
7413
|
figmaVariablesPlugin: {
|
|
7392
7414
|
fileId: string;
|
|
7393
7415
|
isTokenTypeSplitEnabled: boolean;
|
|
7416
|
+
isCollectionsMigrationCompleted: boolean;
|
|
7394
7417
|
lastImportedAt?: Date | undefined;
|
|
7395
7418
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7396
7419
|
};
|
|
@@ -7507,6 +7530,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7507
7530
|
isTokenTypeSplitEnabled: boolean;
|
|
7508
7531
|
lastImportedAt?: Date | undefined;
|
|
7509
7532
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
7533
|
+
isCollectionsMigrationCompleted?: boolean | undefined;
|
|
7510
7534
|
};
|
|
7511
7535
|
})[];
|
|
7512
7536
|
}>;
|
|
@@ -86639,6 +86663,26 @@ declare class TokenCollectionsEndpoint {
|
|
|
86639
86663
|
}>;
|
|
86640
86664
|
}
|
|
86641
86665
|
|
|
86666
|
+
declare class TokenGroupsEndpoint {
|
|
86667
|
+
private readonly requestExecutor;
|
|
86668
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86669
|
+
create(dsId: string, versionId: string, body: DTODesignTokenGroupCreatePayload): Promise<{
|
|
86670
|
+
group: {
|
|
86671
|
+
id: string;
|
|
86672
|
+
persistentId: string;
|
|
86673
|
+
meta: {
|
|
86674
|
+
name: string;
|
|
86675
|
+
description?: string | undefined;
|
|
86676
|
+
};
|
|
86677
|
+
isRoot: boolean;
|
|
86678
|
+
childrenIds: string[];
|
|
86679
|
+
brandId: string;
|
|
86680
|
+
tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
|
|
86681
|
+
};
|
|
86682
|
+
}>;
|
|
86683
|
+
list(dsId: string, versionId: string): Promise<DTODesignTokenGroupListResponse>;
|
|
86684
|
+
}
|
|
86685
|
+
|
|
86642
86686
|
declare class TokensEndpoint {
|
|
86643
86687
|
private readonly requestExecutor;
|
|
86644
86688
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -87024,26 +87068,6 @@ declare class TokensEndpoint {
|
|
|
87024
87068
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
87025
87069
|
}
|
|
87026
87070
|
|
|
87027
|
-
declare class TokenGroupsEndpoint {
|
|
87028
|
-
private readonly requestExecutor;
|
|
87029
|
-
constructor(requestExecutor: RequestExecutor);
|
|
87030
|
-
create(dsId: string, versionId: string, body: DTODesignTokenGroupCreatePayload): Promise<{
|
|
87031
|
-
group: {
|
|
87032
|
-
id: string;
|
|
87033
|
-
persistentId: string;
|
|
87034
|
-
meta: {
|
|
87035
|
-
name: string;
|
|
87036
|
-
description?: string | undefined;
|
|
87037
|
-
};
|
|
87038
|
-
isRoot: boolean;
|
|
87039
|
-
childrenIds: string[];
|
|
87040
|
-
brandId: string;
|
|
87041
|
-
tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
|
|
87042
|
-
};
|
|
87043
|
-
}>;
|
|
87044
|
-
list(dsId: string, versionId: string): Promise<DTODesignTokenGroupListResponse>;
|
|
87045
|
-
}
|
|
87046
|
-
|
|
87047
87071
|
declare class DesignSystemVersionsEndpoint {
|
|
87048
87072
|
private readonly requestExecutor;
|
|
87049
87073
|
readonly themes: ThemesEndpoint;
|
|
@@ -87248,11 +87272,13 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
87248
87272
|
figmaVariablesPlugin: {
|
|
87249
87273
|
fileId: string;
|
|
87250
87274
|
isTokenTypeSplitEnabled: boolean;
|
|
87275
|
+
isCollectionsMigrationCompleted: boolean;
|
|
87251
87276
|
lastImportedAt?: Date | undefined;
|
|
87252
87277
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
87253
87278
|
};
|
|
87254
87279
|
})[];
|
|
87255
87280
|
}>;
|
|
87281
|
+
delete(dsId: string, sourceId: string): Promise<any>;
|
|
87256
87282
|
}
|
|
87257
87283
|
|
|
87258
87284
|
declare class DesignSystemsEndpoint {
|
|
@@ -91319,4 +91345,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
91319
91345
|
|
|
91320
91346
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
91321
91347
|
|
|
91322
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
91348
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|