@supernova-studio/client 0.52.15 → 0.52.16
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 +261 -1
- package/dist/index.d.ts +261 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/components/figma-component.ts +5 -0
package/dist/index.d.mts
CHANGED
|
@@ -9297,6 +9297,266 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9297
9297
|
}> | undefined;
|
|
9298
9298
|
}>;
|
|
9299
9299
|
type DTOFigmaComponent = z.infer<typeof DTOFigmaComponent>;
|
|
9300
|
+
declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
9301
|
+
components: z.ZodArray<z.ZodObject<{
|
|
9302
|
+
id: z.ZodString;
|
|
9303
|
+
persistentId: z.ZodString;
|
|
9304
|
+
designSystemVersionId: z.ZodString;
|
|
9305
|
+
brandId: z.ZodString;
|
|
9306
|
+
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
9307
|
+
svgUrl: z.ZodOptional<z.ZodString>;
|
|
9308
|
+
exportProperties: z.ZodObject<{
|
|
9309
|
+
isAsset: z.ZodBoolean;
|
|
9310
|
+
}, "strip", z.ZodTypeAny, {
|
|
9311
|
+
isAsset: boolean;
|
|
9312
|
+
}, {
|
|
9313
|
+
isAsset: boolean;
|
|
9314
|
+
}>;
|
|
9315
|
+
createdAt: z.ZodDate;
|
|
9316
|
+
updatedAt: z.ZodDate;
|
|
9317
|
+
meta: z.ZodObject<{
|
|
9318
|
+
name: z.ZodString;
|
|
9319
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9320
|
+
}, "strip", z.ZodTypeAny, {
|
|
9321
|
+
name: string;
|
|
9322
|
+
description?: string | undefined;
|
|
9323
|
+
}, {
|
|
9324
|
+
name: string;
|
|
9325
|
+
description?: string | undefined;
|
|
9326
|
+
}>;
|
|
9327
|
+
originComponent: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
9328
|
+
id: z.ZodString;
|
|
9329
|
+
sourceId: z.ZodString;
|
|
9330
|
+
name: z.ZodString;
|
|
9331
|
+
}, {
|
|
9332
|
+
nodeId: z.ZodOptional<z.ZodString>;
|
|
9333
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
9334
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
9335
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9336
|
+
id: string;
|
|
9337
|
+
name: string;
|
|
9338
|
+
sourceId: string;
|
|
9339
|
+
width?: number | undefined;
|
|
9340
|
+
height?: number | undefined;
|
|
9341
|
+
nodeId?: string | undefined;
|
|
9342
|
+
}, {
|
|
9343
|
+
id: string;
|
|
9344
|
+
name: string;
|
|
9345
|
+
sourceId: string;
|
|
9346
|
+
width?: number | undefined;
|
|
9347
|
+
height?: number | undefined;
|
|
9348
|
+
nodeId?: string | undefined;
|
|
9349
|
+
}>>;
|
|
9350
|
+
parentComponentPersistentId: z.ZodOptional<z.ZodString>;
|
|
9351
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9352
|
+
type: z.ZodLiteral<"Boolean">;
|
|
9353
|
+
defaultValue: z.ZodBoolean;
|
|
9354
|
+
}, "strip", z.ZodTypeAny, {
|
|
9355
|
+
type: "Boolean";
|
|
9356
|
+
defaultValue: boolean;
|
|
9357
|
+
}, {
|
|
9358
|
+
type: "Boolean";
|
|
9359
|
+
defaultValue: boolean;
|
|
9360
|
+
}>, z.ZodObject<{
|
|
9361
|
+
type: z.ZodLiteral<"InstanceSwap">;
|
|
9362
|
+
defaultValue: z.ZodString;
|
|
9363
|
+
preferredValues: z.ZodArray<z.ZodObject<{
|
|
9364
|
+
type: z.ZodEnum<["Component", "ComponentSet"]>;
|
|
9365
|
+
key: z.ZodString;
|
|
9366
|
+
}, "strip", z.ZodTypeAny, {
|
|
9367
|
+
type: "Component" | "ComponentSet";
|
|
9368
|
+
key: string;
|
|
9369
|
+
}, {
|
|
9370
|
+
type: "Component" | "ComponentSet";
|
|
9371
|
+
key: string;
|
|
9372
|
+
}>, "many">;
|
|
9373
|
+
}, "strip", z.ZodTypeAny, {
|
|
9374
|
+
type: "InstanceSwap";
|
|
9375
|
+
defaultValue: string;
|
|
9376
|
+
preferredValues: {
|
|
9377
|
+
type: "Component" | "ComponentSet";
|
|
9378
|
+
key: string;
|
|
9379
|
+
}[];
|
|
9380
|
+
}, {
|
|
9381
|
+
type: "InstanceSwap";
|
|
9382
|
+
defaultValue: string;
|
|
9383
|
+
preferredValues: {
|
|
9384
|
+
type: "Component" | "ComponentSet";
|
|
9385
|
+
key: string;
|
|
9386
|
+
}[];
|
|
9387
|
+
}>, z.ZodObject<{
|
|
9388
|
+
type: z.ZodLiteral<"Text">;
|
|
9389
|
+
defaultValue: z.ZodString;
|
|
9390
|
+
}, "strip", z.ZodTypeAny, {
|
|
9391
|
+
type: "Text";
|
|
9392
|
+
defaultValue: string;
|
|
9393
|
+
}, {
|
|
9394
|
+
type: "Text";
|
|
9395
|
+
defaultValue: string;
|
|
9396
|
+
}>]>>>;
|
|
9397
|
+
}, "strip", z.ZodTypeAny, {
|
|
9398
|
+
id: string;
|
|
9399
|
+
persistentId: string;
|
|
9400
|
+
meta: {
|
|
9401
|
+
name: string;
|
|
9402
|
+
description?: string | undefined;
|
|
9403
|
+
};
|
|
9404
|
+
designSystemVersionId: string;
|
|
9405
|
+
createdAt: Date;
|
|
9406
|
+
updatedAt: Date;
|
|
9407
|
+
brandId: string;
|
|
9408
|
+
exportProperties: {
|
|
9409
|
+
isAsset: boolean;
|
|
9410
|
+
};
|
|
9411
|
+
thumbnailUrl?: string | undefined;
|
|
9412
|
+
svgUrl?: string | undefined;
|
|
9413
|
+
originComponent?: {
|
|
9414
|
+
id: string;
|
|
9415
|
+
name: string;
|
|
9416
|
+
sourceId: string;
|
|
9417
|
+
width?: number | undefined;
|
|
9418
|
+
height?: number | undefined;
|
|
9419
|
+
nodeId?: string | undefined;
|
|
9420
|
+
} | undefined;
|
|
9421
|
+
parentComponentPersistentId?: string | undefined;
|
|
9422
|
+
componentPropertyDefinitions?: Record<string, {
|
|
9423
|
+
type: "Boolean";
|
|
9424
|
+
defaultValue: boolean;
|
|
9425
|
+
} | {
|
|
9426
|
+
type: "InstanceSwap";
|
|
9427
|
+
defaultValue: string;
|
|
9428
|
+
preferredValues: {
|
|
9429
|
+
type: "Component" | "ComponentSet";
|
|
9430
|
+
key: string;
|
|
9431
|
+
}[];
|
|
9432
|
+
} | {
|
|
9433
|
+
type: "Text";
|
|
9434
|
+
defaultValue: string;
|
|
9435
|
+
}> | undefined;
|
|
9436
|
+
}, {
|
|
9437
|
+
id: string;
|
|
9438
|
+
persistentId: string;
|
|
9439
|
+
meta: {
|
|
9440
|
+
name: string;
|
|
9441
|
+
description?: string | undefined;
|
|
9442
|
+
};
|
|
9443
|
+
designSystemVersionId: string;
|
|
9444
|
+
createdAt: Date;
|
|
9445
|
+
updatedAt: Date;
|
|
9446
|
+
brandId: string;
|
|
9447
|
+
exportProperties: {
|
|
9448
|
+
isAsset: boolean;
|
|
9449
|
+
};
|
|
9450
|
+
thumbnailUrl?: string | undefined;
|
|
9451
|
+
svgUrl?: string | undefined;
|
|
9452
|
+
originComponent?: {
|
|
9453
|
+
id: string;
|
|
9454
|
+
name: string;
|
|
9455
|
+
sourceId: string;
|
|
9456
|
+
width?: number | undefined;
|
|
9457
|
+
height?: number | undefined;
|
|
9458
|
+
nodeId?: string | undefined;
|
|
9459
|
+
} | undefined;
|
|
9460
|
+
parentComponentPersistentId?: string | undefined;
|
|
9461
|
+
componentPropertyDefinitions?: Record<string, {
|
|
9462
|
+
type: "Boolean";
|
|
9463
|
+
defaultValue: boolean;
|
|
9464
|
+
} | {
|
|
9465
|
+
type: "InstanceSwap";
|
|
9466
|
+
defaultValue: string;
|
|
9467
|
+
preferredValues: {
|
|
9468
|
+
type: "Component" | "ComponentSet";
|
|
9469
|
+
key: string;
|
|
9470
|
+
}[];
|
|
9471
|
+
} | {
|
|
9472
|
+
type: "Text";
|
|
9473
|
+
defaultValue: string;
|
|
9474
|
+
}> | undefined;
|
|
9475
|
+
}>, "many">;
|
|
9476
|
+
}, "strip", z.ZodTypeAny, {
|
|
9477
|
+
components: {
|
|
9478
|
+
id: string;
|
|
9479
|
+
persistentId: string;
|
|
9480
|
+
meta: {
|
|
9481
|
+
name: string;
|
|
9482
|
+
description?: string | undefined;
|
|
9483
|
+
};
|
|
9484
|
+
designSystemVersionId: string;
|
|
9485
|
+
createdAt: Date;
|
|
9486
|
+
updatedAt: Date;
|
|
9487
|
+
brandId: string;
|
|
9488
|
+
exportProperties: {
|
|
9489
|
+
isAsset: boolean;
|
|
9490
|
+
};
|
|
9491
|
+
thumbnailUrl?: string | undefined;
|
|
9492
|
+
svgUrl?: string | undefined;
|
|
9493
|
+
originComponent?: {
|
|
9494
|
+
id: string;
|
|
9495
|
+
name: string;
|
|
9496
|
+
sourceId: string;
|
|
9497
|
+
width?: number | undefined;
|
|
9498
|
+
height?: number | undefined;
|
|
9499
|
+
nodeId?: string | undefined;
|
|
9500
|
+
} | undefined;
|
|
9501
|
+
parentComponentPersistentId?: string | undefined;
|
|
9502
|
+
componentPropertyDefinitions?: Record<string, {
|
|
9503
|
+
type: "Boolean";
|
|
9504
|
+
defaultValue: boolean;
|
|
9505
|
+
} | {
|
|
9506
|
+
type: "InstanceSwap";
|
|
9507
|
+
defaultValue: string;
|
|
9508
|
+
preferredValues: {
|
|
9509
|
+
type: "Component" | "ComponentSet";
|
|
9510
|
+
key: string;
|
|
9511
|
+
}[];
|
|
9512
|
+
} | {
|
|
9513
|
+
type: "Text";
|
|
9514
|
+
defaultValue: string;
|
|
9515
|
+
}> | undefined;
|
|
9516
|
+
}[];
|
|
9517
|
+
}, {
|
|
9518
|
+
components: {
|
|
9519
|
+
id: string;
|
|
9520
|
+
persistentId: string;
|
|
9521
|
+
meta: {
|
|
9522
|
+
name: string;
|
|
9523
|
+
description?: string | undefined;
|
|
9524
|
+
};
|
|
9525
|
+
designSystemVersionId: string;
|
|
9526
|
+
createdAt: Date;
|
|
9527
|
+
updatedAt: Date;
|
|
9528
|
+
brandId: string;
|
|
9529
|
+
exportProperties: {
|
|
9530
|
+
isAsset: boolean;
|
|
9531
|
+
};
|
|
9532
|
+
thumbnailUrl?: string | undefined;
|
|
9533
|
+
svgUrl?: string | undefined;
|
|
9534
|
+
originComponent?: {
|
|
9535
|
+
id: string;
|
|
9536
|
+
name: string;
|
|
9537
|
+
sourceId: string;
|
|
9538
|
+
width?: number | undefined;
|
|
9539
|
+
height?: number | undefined;
|
|
9540
|
+
nodeId?: string | undefined;
|
|
9541
|
+
} | undefined;
|
|
9542
|
+
parentComponentPersistentId?: string | undefined;
|
|
9543
|
+
componentPropertyDefinitions?: Record<string, {
|
|
9544
|
+
type: "Boolean";
|
|
9545
|
+
defaultValue: boolean;
|
|
9546
|
+
} | {
|
|
9547
|
+
type: "InstanceSwap";
|
|
9548
|
+
defaultValue: string;
|
|
9549
|
+
preferredValues: {
|
|
9550
|
+
type: "Component" | "ComponentSet";
|
|
9551
|
+
key: string;
|
|
9552
|
+
}[];
|
|
9553
|
+
} | {
|
|
9554
|
+
type: "Text";
|
|
9555
|
+
defaultValue: string;
|
|
9556
|
+
}> | undefined;
|
|
9557
|
+
}[];
|
|
9558
|
+
}>;
|
|
9559
|
+
type DTOFigmaComponentListResponse = z.infer<typeof DTOFigmaComponentListResponse>;
|
|
9300
9560
|
|
|
9301
9561
|
declare const DTODocumentationDraftChangeType: z.ZodEnum<["Created", "Updated", "Deleted"]>;
|
|
9302
9562
|
type DTODocumentationDraftChangeType = z.infer<typeof DTODocumentationDraftChangeType>;
|
|
@@ -44081,4 +44341,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
44081
44341
|
|
|
44082
44342
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
44083
44343
|
|
|
44084
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, 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, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, 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, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, 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, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
44344
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, 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, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, 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, 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, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, 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, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
package/dist/index.d.ts
CHANGED
|
@@ -9297,6 +9297,266 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9297
9297
|
}> | undefined;
|
|
9298
9298
|
}>;
|
|
9299
9299
|
type DTOFigmaComponent = z.infer<typeof DTOFigmaComponent>;
|
|
9300
|
+
declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
9301
|
+
components: z.ZodArray<z.ZodObject<{
|
|
9302
|
+
id: z.ZodString;
|
|
9303
|
+
persistentId: z.ZodString;
|
|
9304
|
+
designSystemVersionId: z.ZodString;
|
|
9305
|
+
brandId: z.ZodString;
|
|
9306
|
+
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
9307
|
+
svgUrl: z.ZodOptional<z.ZodString>;
|
|
9308
|
+
exportProperties: z.ZodObject<{
|
|
9309
|
+
isAsset: z.ZodBoolean;
|
|
9310
|
+
}, "strip", z.ZodTypeAny, {
|
|
9311
|
+
isAsset: boolean;
|
|
9312
|
+
}, {
|
|
9313
|
+
isAsset: boolean;
|
|
9314
|
+
}>;
|
|
9315
|
+
createdAt: z.ZodDate;
|
|
9316
|
+
updatedAt: z.ZodDate;
|
|
9317
|
+
meta: z.ZodObject<{
|
|
9318
|
+
name: z.ZodString;
|
|
9319
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9320
|
+
}, "strip", z.ZodTypeAny, {
|
|
9321
|
+
name: string;
|
|
9322
|
+
description?: string | undefined;
|
|
9323
|
+
}, {
|
|
9324
|
+
name: string;
|
|
9325
|
+
description?: string | undefined;
|
|
9326
|
+
}>;
|
|
9327
|
+
originComponent: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
9328
|
+
id: z.ZodString;
|
|
9329
|
+
sourceId: z.ZodString;
|
|
9330
|
+
name: z.ZodString;
|
|
9331
|
+
}, {
|
|
9332
|
+
nodeId: z.ZodOptional<z.ZodString>;
|
|
9333
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
9334
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
9335
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9336
|
+
id: string;
|
|
9337
|
+
name: string;
|
|
9338
|
+
sourceId: string;
|
|
9339
|
+
width?: number | undefined;
|
|
9340
|
+
height?: number | undefined;
|
|
9341
|
+
nodeId?: string | undefined;
|
|
9342
|
+
}, {
|
|
9343
|
+
id: string;
|
|
9344
|
+
name: string;
|
|
9345
|
+
sourceId: string;
|
|
9346
|
+
width?: number | undefined;
|
|
9347
|
+
height?: number | undefined;
|
|
9348
|
+
nodeId?: string | undefined;
|
|
9349
|
+
}>>;
|
|
9350
|
+
parentComponentPersistentId: z.ZodOptional<z.ZodString>;
|
|
9351
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9352
|
+
type: z.ZodLiteral<"Boolean">;
|
|
9353
|
+
defaultValue: z.ZodBoolean;
|
|
9354
|
+
}, "strip", z.ZodTypeAny, {
|
|
9355
|
+
type: "Boolean";
|
|
9356
|
+
defaultValue: boolean;
|
|
9357
|
+
}, {
|
|
9358
|
+
type: "Boolean";
|
|
9359
|
+
defaultValue: boolean;
|
|
9360
|
+
}>, z.ZodObject<{
|
|
9361
|
+
type: z.ZodLiteral<"InstanceSwap">;
|
|
9362
|
+
defaultValue: z.ZodString;
|
|
9363
|
+
preferredValues: z.ZodArray<z.ZodObject<{
|
|
9364
|
+
type: z.ZodEnum<["Component", "ComponentSet"]>;
|
|
9365
|
+
key: z.ZodString;
|
|
9366
|
+
}, "strip", z.ZodTypeAny, {
|
|
9367
|
+
type: "Component" | "ComponentSet";
|
|
9368
|
+
key: string;
|
|
9369
|
+
}, {
|
|
9370
|
+
type: "Component" | "ComponentSet";
|
|
9371
|
+
key: string;
|
|
9372
|
+
}>, "many">;
|
|
9373
|
+
}, "strip", z.ZodTypeAny, {
|
|
9374
|
+
type: "InstanceSwap";
|
|
9375
|
+
defaultValue: string;
|
|
9376
|
+
preferredValues: {
|
|
9377
|
+
type: "Component" | "ComponentSet";
|
|
9378
|
+
key: string;
|
|
9379
|
+
}[];
|
|
9380
|
+
}, {
|
|
9381
|
+
type: "InstanceSwap";
|
|
9382
|
+
defaultValue: string;
|
|
9383
|
+
preferredValues: {
|
|
9384
|
+
type: "Component" | "ComponentSet";
|
|
9385
|
+
key: string;
|
|
9386
|
+
}[];
|
|
9387
|
+
}>, z.ZodObject<{
|
|
9388
|
+
type: z.ZodLiteral<"Text">;
|
|
9389
|
+
defaultValue: z.ZodString;
|
|
9390
|
+
}, "strip", z.ZodTypeAny, {
|
|
9391
|
+
type: "Text";
|
|
9392
|
+
defaultValue: string;
|
|
9393
|
+
}, {
|
|
9394
|
+
type: "Text";
|
|
9395
|
+
defaultValue: string;
|
|
9396
|
+
}>]>>>;
|
|
9397
|
+
}, "strip", z.ZodTypeAny, {
|
|
9398
|
+
id: string;
|
|
9399
|
+
persistentId: string;
|
|
9400
|
+
meta: {
|
|
9401
|
+
name: string;
|
|
9402
|
+
description?: string | undefined;
|
|
9403
|
+
};
|
|
9404
|
+
designSystemVersionId: string;
|
|
9405
|
+
createdAt: Date;
|
|
9406
|
+
updatedAt: Date;
|
|
9407
|
+
brandId: string;
|
|
9408
|
+
exportProperties: {
|
|
9409
|
+
isAsset: boolean;
|
|
9410
|
+
};
|
|
9411
|
+
thumbnailUrl?: string | undefined;
|
|
9412
|
+
svgUrl?: string | undefined;
|
|
9413
|
+
originComponent?: {
|
|
9414
|
+
id: string;
|
|
9415
|
+
name: string;
|
|
9416
|
+
sourceId: string;
|
|
9417
|
+
width?: number | undefined;
|
|
9418
|
+
height?: number | undefined;
|
|
9419
|
+
nodeId?: string | undefined;
|
|
9420
|
+
} | undefined;
|
|
9421
|
+
parentComponentPersistentId?: string | undefined;
|
|
9422
|
+
componentPropertyDefinitions?: Record<string, {
|
|
9423
|
+
type: "Boolean";
|
|
9424
|
+
defaultValue: boolean;
|
|
9425
|
+
} | {
|
|
9426
|
+
type: "InstanceSwap";
|
|
9427
|
+
defaultValue: string;
|
|
9428
|
+
preferredValues: {
|
|
9429
|
+
type: "Component" | "ComponentSet";
|
|
9430
|
+
key: string;
|
|
9431
|
+
}[];
|
|
9432
|
+
} | {
|
|
9433
|
+
type: "Text";
|
|
9434
|
+
defaultValue: string;
|
|
9435
|
+
}> | undefined;
|
|
9436
|
+
}, {
|
|
9437
|
+
id: string;
|
|
9438
|
+
persistentId: string;
|
|
9439
|
+
meta: {
|
|
9440
|
+
name: string;
|
|
9441
|
+
description?: string | undefined;
|
|
9442
|
+
};
|
|
9443
|
+
designSystemVersionId: string;
|
|
9444
|
+
createdAt: Date;
|
|
9445
|
+
updatedAt: Date;
|
|
9446
|
+
brandId: string;
|
|
9447
|
+
exportProperties: {
|
|
9448
|
+
isAsset: boolean;
|
|
9449
|
+
};
|
|
9450
|
+
thumbnailUrl?: string | undefined;
|
|
9451
|
+
svgUrl?: string | undefined;
|
|
9452
|
+
originComponent?: {
|
|
9453
|
+
id: string;
|
|
9454
|
+
name: string;
|
|
9455
|
+
sourceId: string;
|
|
9456
|
+
width?: number | undefined;
|
|
9457
|
+
height?: number | undefined;
|
|
9458
|
+
nodeId?: string | undefined;
|
|
9459
|
+
} | undefined;
|
|
9460
|
+
parentComponentPersistentId?: string | undefined;
|
|
9461
|
+
componentPropertyDefinitions?: Record<string, {
|
|
9462
|
+
type: "Boolean";
|
|
9463
|
+
defaultValue: boolean;
|
|
9464
|
+
} | {
|
|
9465
|
+
type: "InstanceSwap";
|
|
9466
|
+
defaultValue: string;
|
|
9467
|
+
preferredValues: {
|
|
9468
|
+
type: "Component" | "ComponentSet";
|
|
9469
|
+
key: string;
|
|
9470
|
+
}[];
|
|
9471
|
+
} | {
|
|
9472
|
+
type: "Text";
|
|
9473
|
+
defaultValue: string;
|
|
9474
|
+
}> | undefined;
|
|
9475
|
+
}>, "many">;
|
|
9476
|
+
}, "strip", z.ZodTypeAny, {
|
|
9477
|
+
components: {
|
|
9478
|
+
id: string;
|
|
9479
|
+
persistentId: string;
|
|
9480
|
+
meta: {
|
|
9481
|
+
name: string;
|
|
9482
|
+
description?: string | undefined;
|
|
9483
|
+
};
|
|
9484
|
+
designSystemVersionId: string;
|
|
9485
|
+
createdAt: Date;
|
|
9486
|
+
updatedAt: Date;
|
|
9487
|
+
brandId: string;
|
|
9488
|
+
exportProperties: {
|
|
9489
|
+
isAsset: boolean;
|
|
9490
|
+
};
|
|
9491
|
+
thumbnailUrl?: string | undefined;
|
|
9492
|
+
svgUrl?: string | undefined;
|
|
9493
|
+
originComponent?: {
|
|
9494
|
+
id: string;
|
|
9495
|
+
name: string;
|
|
9496
|
+
sourceId: string;
|
|
9497
|
+
width?: number | undefined;
|
|
9498
|
+
height?: number | undefined;
|
|
9499
|
+
nodeId?: string | undefined;
|
|
9500
|
+
} | undefined;
|
|
9501
|
+
parentComponentPersistentId?: string | undefined;
|
|
9502
|
+
componentPropertyDefinitions?: Record<string, {
|
|
9503
|
+
type: "Boolean";
|
|
9504
|
+
defaultValue: boolean;
|
|
9505
|
+
} | {
|
|
9506
|
+
type: "InstanceSwap";
|
|
9507
|
+
defaultValue: string;
|
|
9508
|
+
preferredValues: {
|
|
9509
|
+
type: "Component" | "ComponentSet";
|
|
9510
|
+
key: string;
|
|
9511
|
+
}[];
|
|
9512
|
+
} | {
|
|
9513
|
+
type: "Text";
|
|
9514
|
+
defaultValue: string;
|
|
9515
|
+
}> | undefined;
|
|
9516
|
+
}[];
|
|
9517
|
+
}, {
|
|
9518
|
+
components: {
|
|
9519
|
+
id: string;
|
|
9520
|
+
persistentId: string;
|
|
9521
|
+
meta: {
|
|
9522
|
+
name: string;
|
|
9523
|
+
description?: string | undefined;
|
|
9524
|
+
};
|
|
9525
|
+
designSystemVersionId: string;
|
|
9526
|
+
createdAt: Date;
|
|
9527
|
+
updatedAt: Date;
|
|
9528
|
+
brandId: string;
|
|
9529
|
+
exportProperties: {
|
|
9530
|
+
isAsset: boolean;
|
|
9531
|
+
};
|
|
9532
|
+
thumbnailUrl?: string | undefined;
|
|
9533
|
+
svgUrl?: string | undefined;
|
|
9534
|
+
originComponent?: {
|
|
9535
|
+
id: string;
|
|
9536
|
+
name: string;
|
|
9537
|
+
sourceId: string;
|
|
9538
|
+
width?: number | undefined;
|
|
9539
|
+
height?: number | undefined;
|
|
9540
|
+
nodeId?: string | undefined;
|
|
9541
|
+
} | undefined;
|
|
9542
|
+
parentComponentPersistentId?: string | undefined;
|
|
9543
|
+
componentPropertyDefinitions?: Record<string, {
|
|
9544
|
+
type: "Boolean";
|
|
9545
|
+
defaultValue: boolean;
|
|
9546
|
+
} | {
|
|
9547
|
+
type: "InstanceSwap";
|
|
9548
|
+
defaultValue: string;
|
|
9549
|
+
preferredValues: {
|
|
9550
|
+
type: "Component" | "ComponentSet";
|
|
9551
|
+
key: string;
|
|
9552
|
+
}[];
|
|
9553
|
+
} | {
|
|
9554
|
+
type: "Text";
|
|
9555
|
+
defaultValue: string;
|
|
9556
|
+
}> | undefined;
|
|
9557
|
+
}[];
|
|
9558
|
+
}>;
|
|
9559
|
+
type DTOFigmaComponentListResponse = z.infer<typeof DTOFigmaComponentListResponse>;
|
|
9300
9560
|
|
|
9301
9561
|
declare const DTODocumentationDraftChangeType: z.ZodEnum<["Created", "Updated", "Deleted"]>;
|
|
9302
9562
|
type DTODocumentationDraftChangeType = z.infer<typeof DTODocumentationDraftChangeType>;
|
|
@@ -44081,4 +44341,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
44081
44341
|
|
|
44082
44342
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
44083
44343
|
|
|
44084
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, 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, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, 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, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, 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, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
44344
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, 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, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, 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, 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, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, 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, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|