@supernova-studio/client 1.56.1 → 1.57.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -259,7 +259,8 @@ var AuthV2Session = _zod.z.object({
259
259
  id: _zod.z.string(),
260
260
  refreshToken: _zod.z.string(),
261
261
  expiresAt: _zod.z.coerce.date(),
262
- createdAt: _zod.z.coerce.date()
262
+ createdAt: _zod.z.coerce.date(),
263
+ userId: _zod.z.string().optional()
263
264
  });
264
265
  var CardSchema = _zod.z.object({
265
266
  cardId: _zod.z.string().nullish(),
@@ -4753,6 +4754,15 @@ var ForgeProjectArtifact = _zod.z.object({
4753
4754
  isArchived: _zod.z.boolean().default(false)
4754
4755
  });
4755
4756
  var ProjectFeatureStatus = _zod.z.enum(["Draft", "ReadyForDevelopment"]);
4757
+ var FeaturePublishedStateVisibility = _zod.z.enum(["Public", "WorkspaceMembers"]);
4758
+ var FeaturePublishedState = _zod.z.object({
4759
+ userId: _zod.z.string().optional(),
4760
+ userName: _zod.z.string().optional(),
4761
+ lastPublishedAt: _zod.z.coerce.date(),
4762
+ iterationId: _zod.z.string().optional(),
4763
+ hideSupernovaUI: _zod.z.boolean(),
4764
+ visibility: FeaturePublishedStateVisibility.default("Public")
4765
+ });
4756
4766
  var ProjectFeature = _zod.z.object({
4757
4767
  createdAt: _zod.z.coerce.date(),
4758
4768
  createdByUserId: _zod.z.string(),
@@ -4771,7 +4781,8 @@ var ProjectFeature = _zod.z.object({
4771
4781
  numberOfBookmarkedIterations: _zod.z.number().min(0).default(0),
4772
4782
  lastReplyTimestamp: _zod.z.coerce.date().optional(),
4773
4783
  threadId: _zod.z.string().optional(),
4774
- thumbnail: FileReference.optional()
4784
+ thumbnail: FileReference.optional(),
4785
+ publishedState: FeaturePublishedState.optional()
4775
4786
  });
4776
4787
  var ForgeProjectFigmaNode = _zod.z.object({
4777
4788
  id: _zod.z.string().uuid(),
@@ -10688,7 +10699,19 @@ var DTOForgeProjectArtifactContentResponse = _zod.z.object({
10688
10699
 
10689
10700
  // src/api/dto/forge/project-feature.ts
10690
10701
 
10702
+ var DTOForgeProjectFeaturePublishedState = FeaturePublishedState;
10691
10703
  var DTOForgeProjectFeature = ProjectFeature;
10704
+ var DTOForgeProjectPublishedFeature = _zod2.default.object({
10705
+ featureName: _zod2.default.string(),
10706
+ iterationName: _zod2.default.string(),
10707
+ projectId: _zod2.default.string(),
10708
+ hideSupernovaUI: _zod2.default.boolean(),
10709
+ thumbnailUrl: _zod2.default.string().optional(),
10710
+ staticPreviewUrl: _zod2.default.string()
10711
+ });
10712
+ var DTOForgeProjectPublishedFeatureGetResponse = _zod2.default.object({
10713
+ publishedFeature: DTOForgeProjectPublishedFeature
10714
+ });
10692
10715
  var DTOForgeProjectFeatureListResponse = _zod2.default.object({
10693
10716
  features: DTOForgeProjectFeature.array()
10694
10717
  });
@@ -10708,7 +10731,11 @@ var DTOForgeProjectFeatureUpdateInput = _zod2.default.object({
10708
10731
  name: _zod2.default.string().optional(),
10709
10732
  description: _zod2.default.string().optional(),
10710
10733
  isArchived: _zod2.default.boolean().optional(),
10711
- status: ProjectFeatureStatus.optional()
10734
+ status: ProjectFeatureStatus.optional(),
10735
+ /**
10736
+ * Sending null will result in feature unpublish
10737
+ */
10738
+ publishedState: DTOForgeProjectFeaturePublishedState.nullish()
10712
10739
  });
10713
10740
  var DTOForgeProjectFeatureDeleteInput = _zod2.default.object({
10714
10741
  id: Id
@@ -20868,5 +20895,8 @@ var TransactionQueue2 = class {
20868
20895
 
20869
20896
 
20870
20897
 
20871
- exports.BackendFeatureRoomYDoc = BackendFeatureRoomYDoc; exports.BackendForgeProjectRoomYDoc = BackendForgeProjectRoomYDoc; exports.BackendThreadRoomYDoc = BackendThreadRoomYDoc; exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.ChatThreadMessagesEndpoint = ChatThreadMessagesEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; exports.DTOAddMembersToForgeProject = DTOAddMembersToForgeProject; exports.DTOAnalyzeCodeComponentsInPackage = DTOAnalyzeCodeComponentsInPackage; exports.DTOAnalyzeCodeComponentsInPackageInput = DTOAnalyzeCodeComponentsInPackageInput; exports.DTOAnalyzeCodeComponentsInPackageResponse = DTOAnalyzeCodeComponentsInPackageResponse; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAssetScope = DTOAssetScope; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOAvailableProductListResponse = DTOAvailableProductListResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBillingCheckoutCreditsTopUpInput = DTOBillingCheckoutCreditsTopUpInput; exports.DTOBillingCheckoutInput = DTOBillingCheckoutInput; exports.DTOBillingCheckoutMode = DTOBillingCheckoutMode; exports.DTOBillingCheckoutOldInput = DTOBillingCheckoutOldInput; exports.DTOBillingCheckoutResponse = DTOBillingCheckoutResponse; exports.DTOBillingCheckoutSubscriptionChangeInput = DTOBillingCheckoutSubscriptionChangeInput; exports.DTOBillingCreditsCheckIfCanSpendResponse = DTOBillingCreditsCheckIfCanSpendResponse; exports.DTOBillingCreditsSpendAction = DTOBillingCreditsSpendAction; exports.DTOBillingCreditsSpendInput = DTOBillingCreditsSpendInput; exports.DTOBillingCreditsSpendResponse = DTOBillingCreditsSpendResponse; exports.DTOBillingInterval = DTOBillingInterval; exports.DTOBillingSubscriptionChangePreviewInput = DTOBillingSubscriptionChangePreviewInput; exports.DTOBillingSupportedModels = DTOBillingSupportedModels; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentCreateInput = DTOCodeComponentCreateInput; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentParentType = DTOCodeComponentParentType; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentResolvedType = DTOCodeComponentResolvedType; exports.DTOCodeComponentResolvedTypeKind = DTOCodeComponentResolvedTypeKind; exports.DTOCodeComponentResponse = DTOCodeComponentResponse; exports.DTOCodeComponentUpsertResponse = DTOCodeComponentUpsertResponse; exports.DTOCodeComponentsCreateInput = DTOCodeComponentsCreateInput; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateForgeAgent = DTOCreateForgeAgent; exports.DTOCreateForgeAgentResponse = DTOCreateForgeAgentResponse; exports.DTOCreateForgeArtifact = DTOCreateForgeArtifact; exports.DTOCreateForgeArtifactResponse = DTOCreateForgeArtifactResponse; exports.DTOCreateForgeBuildArtifact = DTOCreateForgeBuildArtifact; exports.DTOCreateForgeFigmaArtifact = DTOCreateForgeFigmaArtifact; exports.DTOCreateForgeFileArtifact = DTOCreateForgeFileArtifact; exports.DTOCreateForgeIterationMessage = DTOCreateForgeIterationMessage; exports.DTOCreateForgeIterationMessageResponse = DTOCreateForgeIterationMessageResponse; exports.DTOCreateForgeParticipant = DTOCreateForgeParticipant; exports.DTOCreateForgeParticipantResponse = DTOCreateForgeParticipantResponse; exports.DTOCreateForgeProjectContext = DTOCreateForgeProjectContext; exports.DTOCreateForgeProjectInvitation = DTOCreateForgeProjectInvitation; exports.DTOCreateForgeProjectIteration = DTOCreateForgeProjectIteration; exports.DTOCreateForgeProjectIterationResponse = DTOCreateForgeProjectIterationResponse; exports.DTOCreateForgeProjectMember = DTOCreateForgeProjectMember; exports.DTOCreateForgeSpecArtifact = DTOCreateForgeSpecArtifact; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTOCreditBalance = DTOCreditBalance; exports.DTOCreditsPrices = DTOCreditsPrices; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteForgeAgentResponse = DTODeleteForgeAgentResponse; exports.DTODeleteForgeArtifactResponse = DTODeleteForgeArtifactResponse; exports.DTODeleteForgeIterationMessageResponse = DTODeleteForgeIterationMessageResponse; exports.DTODeleteForgeParticipantResponse = DTODeleteForgeParticipantResponse; exports.DTODeleteForgeProjectIterationResponse = DTODeleteForgeProjectIterationResponse; exports.DTODependencyDefinition = DTODependencyDefinition; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemUpdateSwitcherInput = DTODesignSystemUpdateSwitcherInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFeatureAgentResponseTracker = DTOFeatureAgentResponseTracker; exports.DTOFeatureAgentWorkFinalizeInput = DTOFeatureAgentWorkFinalizeInput; exports.DTOFeatureArtifact = DTOFeatureArtifact; exports.DTOFeatureArtifactCreateInput = DTOFeatureArtifactCreateInput; exports.DTOFeatureArtifactDeleteInput = DTOFeatureArtifactDeleteInput; exports.DTOFeatureArtifactGetByIdParam = DTOFeatureArtifactGetByIdParam; exports.DTOFeatureArtifactListQuery = DTOFeatureArtifactListQuery; exports.DTOFeatureArtifactListResponse = DTOFeatureArtifactListResponse; exports.DTOFeatureArtifactResponse = DTOFeatureArtifactResponse; exports.DTOFeatureArtifactWithContentResponse = DTOFeatureArtifactWithContentResponse; exports.DTOFeatureEvent = DTOFeatureEvent; exports.DTOFeatureEventMessagesSent = DTOFeatureEventMessagesSent; exports.DTOFeatureEventReactionsDeleted = DTOFeatureEventReactionsDeleted; exports.DTOFeatureEventReactionsSent = DTOFeatureEventReactionsSent; exports.DTOFeatureIteration = DTOFeatureIteration; exports.DTOFeatureIterationArtifactDiff = DTOFeatureIterationArtifactDiff; exports.DTOFeatureIterationArtifactsDiff = DTOFeatureIterationArtifactsDiff; exports.DTOFeatureIterationCreateInput = DTOFeatureIterationCreateInput; exports.DTOFeatureIterationError = DTOFeatureIterationError; exports.DTOFeatureIterationErrorType = DTOFeatureIterationErrorType; exports.DTOFeatureIterationListResponse = DTOFeatureIterationListResponse; exports.DTOFeatureIterationPromoteInput = DTOFeatureIterationPromoteInput; exports.DTOFeatureIterationResponse = DTOFeatureIterationResponse; exports.DTOFeatureIterationSetLatestInput = DTOFeatureIterationSetLatestInput; exports.DTOFeatureIterationState = DTOFeatureIterationState; exports.DTOFeatureIterationTag = DTOFeatureIterationTag; exports.DTOFeatureIterationTagCreateInput = DTOFeatureIterationTagCreateInput; exports.DTOFeatureIterationTagListResponse = DTOFeatureIterationTagListResponse; exports.DTOFeatureIterationTagResponse = DTOFeatureIterationTagResponse; exports.DTOFeatureIterationUpdateArtifactsByMessageInput = DTOFeatureIterationUpdateArtifactsByMessageInput; exports.DTOFeatureIterationUpdateArtifactsInput = DTOFeatureIterationUpdateArtifactsInput; exports.DTOFeatureIterationUpdateInput = DTOFeatureIterationUpdateInput; exports.DTOFeatureIterationValidateInput = DTOFeatureIterationValidateInput; exports.DTOFeatureIterationValidateResponse = DTOFeatureIterationValidateResponse; exports.DTOFeatureMessage = DTOFeatureMessage; exports.DTOFeatureMessageAgentSender = DTOFeatureMessageAgentSender; exports.DTOFeatureMessageAttachments = DTOFeatureMessageAttachments; exports.DTOFeatureMessageCreateInput = DTOFeatureMessageCreateInput; exports.DTOFeatureMessageListResponse = DTOFeatureMessageListResponse; exports.DTOFeatureMessageReaction = DTOFeatureMessageReaction; exports.DTOFeatureMessageReactionCreateInput = DTOFeatureMessageReactionCreateInput; exports.DTOFeatureMessageReactionDeleteInput = DTOFeatureMessageReactionDeleteInput; exports.DTOFeatureMessageReactionResponse = DTOFeatureMessageReactionResponse; exports.DTOFeatureMessageResponse = DTOFeatureMessageResponse; exports.DTOFeatureMessageSender = DTOFeatureMessageSender; exports.DTOFeatureMessageSystemSender = DTOFeatureMessageSystemSender; exports.DTOFeatureMessageUpdateInput = DTOFeatureMessageUpdateInput; exports.DTOFeatureMessageUserSender = DTOFeatureMessageUserSender; exports.DTOFeatureSandbox = DTOFeatureSandbox; exports.DTOFeatureUpdateThemeInput = DTOFeatureUpdateThemeInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaExportNodeConfiguration = DTOFigmaExportNodeConfiguration; exports.DTOFigmaExportNodeFormat = DTOFigmaExportNodeFormat; exports.DTOFigmaExportNodePayload = DTOFigmaExportNodePayload; exports.DTOFigmaExportNodeResponse = DTOFigmaExportNodeResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFigmaSourceUpdatePayload = DTOFigmaSourceUpdatePayload; exports.DTOFile = DTOFile; exports.DTOFileFigmaRenderMode = DTOFileFigmaRenderMode; exports.DTOFileFinalizeBulkPayload = DTOFileFinalizeBulkPayload; exports.DTOFileFinalizeBulkResponse = DTOFileFinalizeBulkResponse; exports.DTOFileListResponse = DTOFileListResponse; exports.DTOFileReference = DTOFileReference; exports.DTOFileResponseItem = DTOFileResponseItem; exports.DTOFileSource = DTOFileSource; exports.DTOFileSourceFigma = DTOFileSourceFigma; exports.DTOFileSourceUpload = DTOFileSourceUpload; exports.DTOFileUploadBulkPayload = DTOFileUploadBulkPayload; exports.DTOFileUploadBulkResponse = DTOFileUploadBulkResponse; exports.DTOFileUploadFinalizePayload = DTOFileUploadFinalizePayload; exports.DTOFileUploadFinalizeResponse = DTOFileUploadFinalizeResponse; exports.DTOFileUploadItem = DTOFileUploadItem; exports.DTOFileUploadPayload = DTOFileUploadPayload; exports.DTOFileUploadResponse = DTOFileUploadResponse; exports.DTOFileUploadResponseItem = DTOFileUploadResponseItem; exports.DTOFilesGetPayload = DTOFilesGetPayload; exports.DTOFilesGetQuery = DTOFilesGetQuery; exports.DTOFilesResponse = DTOFilesResponse; exports.DTOForgeAgent = DTOForgeAgent; exports.DTOForgeAgentsListResponse = DTOForgeAgentsListResponse; exports.DTOForgeArtifact = DTOForgeArtifact; exports.DTOForgeArtifactGetResponse = DTOForgeArtifactGetResponse; exports.DTOForgeArtifactsListResponse = DTOForgeArtifactsListResponse; exports.DTOForgeAvatarBuilder = DTOForgeAvatarBuilder; exports.DTOForgeBuildArtifact = DTOForgeBuildArtifact; exports.DTOForgeChatExportResponse = DTOForgeChatExportResponse; exports.DTOForgeChatMessage = DTOForgeChatMessage; exports.DTOForgeChatMessageCreateInput = DTOForgeChatMessageCreateInput; exports.DTOForgeChatMessageCreateResponse = DTOForgeChatMessageCreateResponse; exports.DTOForgeChatMessageListQuery = DTOForgeChatMessageListQuery; exports.DTOForgeChatMessageListResponse = DTOForgeChatMessageListResponse; exports.DTOForgeChatMessageScoreInput = DTOForgeChatMessageScoreInput; exports.DTOForgeChatMessageScoreRequest = DTOForgeChatMessageScoreRequest; exports.DTOForgeChatMessageSender = DTOForgeChatMessageSender; exports.DTOForgeChatMessageSenderType = DTOForgeChatMessageSenderType; exports.DTOForgeChatMessageTagInput = DTOForgeChatMessageTagInput; exports.DTOForgeChatThread = DTOForgeChatThread; exports.DTOForgeChatThreadCreateInput = DTOForgeChatThreadCreateInput; exports.DTOForgeChatThreadCreateResponse = DTOForgeChatThreadCreateResponse; exports.DTOForgeChatThreadDeleteResponse = DTOForgeChatThreadDeleteResponse; exports.DTOForgeChatThreadListQuery = DTOForgeChatThreadListQuery; exports.DTOForgeChatThreadListResponse = DTOForgeChatThreadListResponse; exports.DTOForgeChatThreadUpdateInput = DTOForgeChatThreadUpdateInput; exports.DTOForgeChatThreadUpdateResponse = DTOForgeChatThreadUpdateResponse; exports.DTOForgeComponentSet = DTOForgeComponentSet; exports.DTOForgeComponentSetTypeV2 = DTOForgeComponentSetTypeV2; exports.DTOForgeDocumentGetByIdParam = DTOForgeDocumentGetByIdParam; exports.DTOForgeDocumentGetResponse = DTOForgeDocumentGetResponse; exports.DTOForgeEntity = DTOForgeEntity; exports.DTOForgeFeatureRoom = DTOForgeFeatureRoom; exports.DTOForgeFeatureRoomResponse = DTOForgeFeatureRoomResponse; exports.DTOForgeFigmaArtifact = DTOForgeFigmaArtifact; exports.DTOForgeFileArtifact = DTOForgeFileArtifact; exports.DTOForgeIconSet = DTOForgeIconSet; exports.DTOForgeIconSetTypeV2 = DTOForgeIconSetTypeV2; exports.DTOForgeIterationMessage = DTOForgeIterationMessage; exports.DTOForgeIterationMessagesListResponse = DTOForgeIterationMessagesListResponse; exports.DTOForgeMemoryCreateInput = DTOForgeMemoryCreateInput; exports.DTOForgeMemoryDeleteInput = DTOForgeMemoryDeleteInput; exports.DTOForgeMemoryEntry = DTOForgeMemoryEntry; exports.DTOForgeMemoryEntryListQuery = DTOForgeMemoryEntryListQuery; exports.DTOForgeMemoryEntryListResponse = DTOForgeMemoryEntryListResponse; exports.DTOForgeMemoryEntryResponse = DTOForgeMemoryEntryResponse; exports.DTOForgeMemoryUpdateInput = DTOForgeMemoryUpdateInput; exports.DTOForgeParticipant = DTOForgeParticipant; exports.DTOForgeParticipantGetResponse = DTOForgeParticipantGetResponse; exports.DTOForgeParticipantsListResponse = DTOForgeParticipantsListResponse; exports.DTOForgeProject = DTOForgeProject; exports.DTOForgeProjectAccessMode = DTOForgeProjectAccessMode; exports.DTOForgeProjectAction = DTOForgeProjectAction; exports.DTOForgeProjectActionArtifactCreate = DTOForgeProjectActionArtifactCreate; exports.DTOForgeProjectActionArtifactDelete = DTOForgeProjectActionArtifactDelete; exports.DTOForgeProjectActionArtifactMove = DTOForgeProjectActionArtifactMove; exports.DTOForgeProjectActionArtifactUpdate = DTOForgeProjectActionArtifactUpdate; exports.DTOForgeProjectActionFeatureCreate = DTOForgeProjectActionFeatureCreate; exports.DTOForgeProjectActionFeatureDelete = DTOForgeProjectActionFeatureDelete; exports.DTOForgeProjectActionFeatureMove = DTOForgeProjectActionFeatureMove; exports.DTOForgeProjectActionFeatureUpdate = DTOForgeProjectActionFeatureUpdate; exports.DTOForgeProjectActionSectionCreate = DTOForgeProjectActionSectionCreate; exports.DTOForgeProjectActionSectionDelete = DTOForgeProjectActionSectionDelete; exports.DTOForgeProjectActionSectionMove = DTOForgeProjectActionSectionMove; exports.DTOForgeProjectActionSectionUpdate = DTOForgeProjectActionSectionUpdate; exports.DTOForgeProjectArtifact = DTOForgeProjectArtifact; exports.DTOForgeProjectArtifactContentResponse = DTOForgeProjectArtifactContentResponse; exports.DTOForgeProjectArtifactCreateInput = DTOForgeProjectArtifactCreateInput; exports.DTOForgeProjectArtifactCreateResponse = DTOForgeProjectArtifactCreateResponse; exports.DTOForgeProjectArtifactDeleteInput = DTOForgeProjectArtifactDeleteInput; exports.DTOForgeProjectArtifactDeleteResponse = DTOForgeProjectArtifactDeleteResponse; exports.DTOForgeProjectArtifactGetResponse = DTOForgeProjectArtifactGetResponse; exports.DTOForgeProjectArtifactMoveInput = DTOForgeProjectArtifactMoveInput; exports.DTOForgeProjectArtifactMoveResponse = DTOForgeProjectArtifactMoveResponse; exports.DTOForgeProjectArtifactRoom = DTOForgeProjectArtifactRoom; exports.DTOForgeProjectArtifactRoomResponse = DTOForgeProjectArtifactRoomResponse; exports.DTOForgeProjectArtifactUpdateInput = DTOForgeProjectArtifactUpdateInput; exports.DTOForgeProjectArtifactUpdateResponse = DTOForgeProjectArtifactUpdateResponse; exports.DTOForgeProjectArtifactsListResponse = DTOForgeProjectArtifactsListResponse; exports.DTOForgeProjectContext = DTOForgeProjectContext; exports.DTOForgeProjectContextCreateResponse = DTOForgeProjectContextCreateResponse; exports.DTOForgeProjectContextCreateV2 = DTOForgeProjectContextCreateV2; exports.DTOForgeProjectContextCreated = DTOForgeProjectContextCreated; exports.DTOForgeProjectContextDeleted = DTOForgeProjectContextDeleted; exports.DTOForgeProjectContextGetResponse = DTOForgeProjectContextGetResponse; exports.DTOForgeProjectContextListQueryV2 = DTOForgeProjectContextListQueryV2; exports.DTOForgeProjectContextListResponse = DTOForgeProjectContextListResponse; exports.DTOForgeProjectContextListResponseV2 = DTOForgeProjectContextListResponseV2; exports.DTOForgeProjectContextRemoveResponse = DTOForgeProjectContextRemoveResponse; exports.DTOForgeProjectContextResponseV2 = DTOForgeProjectContextResponseV2; exports.DTOForgeProjectContextUpdateResponse = DTOForgeProjectContextUpdateResponse; exports.DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextUpdateV2; exports.DTOForgeProjectContextUpdated = DTOForgeProjectContextUpdated; exports.DTOForgeProjectContextV2 = DTOForgeProjectContextV2; exports.DTOForgeProjectCreate = DTOForgeProjectCreate; exports.DTOForgeProjectCreated = DTOForgeProjectCreated; exports.DTOForgeProjectDefaultRole = DTOForgeProjectDefaultRole; exports.DTOForgeProjectDocumentPreview = DTOForgeProjectDocumentPreview; exports.DTOForgeProjectFeature = DTOForgeProjectFeature; exports.DTOForgeProjectFeatureCreateInput = DTOForgeProjectFeatureCreateInput; exports.DTOForgeProjectFeatureDeleteInput = DTOForgeProjectFeatureDeleteInput; exports.DTOForgeProjectFeatureGetByIdParam = DTOForgeProjectFeatureGetByIdParam; exports.DTOForgeProjectFeatureGetResponse = DTOForgeProjectFeatureGetResponse; exports.DTOForgeProjectFeatureListResponse = DTOForgeProjectFeatureListResponse; exports.DTOForgeProjectFeatureMoveInput = DTOForgeProjectFeatureMoveInput; exports.DTOForgeProjectFeaturePreview = DTOForgeProjectFeaturePreview; exports.DTOForgeProjectFeatureUpdateInput = DTOForgeProjectFeatureUpdateInput; exports.DTOForgeProjectFigmaNode = DTOForgeProjectFigmaNode; exports.DTOForgeProjectFigmaNodeRenderInput = DTOForgeProjectFigmaNodeRenderInput; exports.DTOForgeProjectFile = DTOForgeProjectFile; exports.DTOForgeProjectFileListResponse = DTOForgeProjectFileListResponse; exports.DTOForgeProjectFileUploadFinalizePayload = DTOForgeProjectFileUploadFinalizePayload; exports.DTOForgeProjectFileUploadFinalizeResponse = DTOForgeProjectFileUploadFinalizeResponse; exports.DTOForgeProjectFileUploadPayload = DTOForgeProjectFileUploadPayload; exports.DTOForgeProjectFileUploadPayloadItem = DTOForgeProjectFileUploadPayloadItem; exports.DTOForgeProjectFileUploadResponse = DTOForgeProjectFileUploadResponse; exports.DTOForgeProjectInvitation = DTOForgeProjectInvitation; exports.DTOForgeProjectInvitationCreateResponse = DTOForgeProjectInvitationCreateResponse; exports.DTOForgeProjectInvitationGetResponse = DTOForgeProjectInvitationGetResponse; exports.DTOForgeProjectInvitationRemoveResponse = DTOForgeProjectInvitationRemoveResponse; exports.DTOForgeProjectInvitationUpdateResponse = DTOForgeProjectInvitationUpdateResponse; exports.DTOForgeProjectInvitationsListResponse = DTOForgeProjectInvitationsListResponse; exports.DTOForgeProjectIteration = DTOForgeProjectIteration; exports.DTOForgeProjectIterationListResponse = DTOForgeProjectIterationListResponse; exports.DTOForgeProjectIterationMergeMeta = DTOForgeProjectIterationMergeMeta; exports.DTOForgeProjectListResponse = DTOForgeProjectListResponse; exports.DTOForgeProjectMember = DTOForgeProjectMember; exports.DTOForgeProjectMemberCreateResponse = DTOForgeProjectMemberCreateResponse; exports.DTOForgeProjectMemberDeleted = DTOForgeProjectMemberDeleted; exports.DTOForgeProjectMemberGetResponse = DTOForgeProjectMemberGetResponse; exports.DTOForgeProjectMemberListQuery = DTOForgeProjectMemberListQuery; exports.DTOForgeProjectMemberRemoveResponse = DTOForgeProjectMemberRemoveResponse; exports.DTOForgeProjectMemberRole = DTOForgeProjectMemberRole; exports.DTOForgeProjectMemberUpdateResponse = DTOForgeProjectMemberUpdateResponse; exports.DTOForgeProjectMemberUpdated = DTOForgeProjectMemberUpdated; exports.DTOForgeProjectMembersCreated = DTOForgeProjectMembersCreated; exports.DTOForgeProjectMembersListResponse = DTOForgeProjectMembersListResponse; exports.DTOForgeProjectResponse = DTOForgeProjectResponse; exports.DTOForgeProjectRole = DTOForgeProjectRole; exports.DTOForgeProjectRoom = DTOForgeProjectRoom; exports.DTOForgeProjectRoomEvent = DTOForgeProjectRoomEvent; exports.DTOForgeProjectRoomResponse = DTOForgeProjectRoomResponse; exports.DTOForgeProjectTheme = DTOForgeProjectTheme; exports.DTOForgeProjectUpdate = DTOForgeProjectUpdate; exports.DTOForgeProjectUpdated = DTOForgeProjectUpdated; exports.DTOForgeRelation = DTOForgeRelation; exports.DTOForgeRelationCreate = DTOForgeRelationCreate; exports.DTOForgeRelationDelete = DTOForgeRelationDelete; exports.DTOForgeRelationListInput = DTOForgeRelationListInput; exports.DTOForgeRelationListResponse = DTOForgeRelationListResponse; exports.DTOForgeRelationType = DTOForgeRelationType; exports.DTOForgeSection = DTOForgeSection; exports.DTOForgeSectionCreateInput = DTOForgeSectionCreateInput; exports.DTOForgeSectionDeleteInput = DTOForgeSectionDeleteInput; exports.DTOForgeSectionItemMoveInput = DTOForgeSectionItemMoveInput; exports.DTOForgeSectionMoveInput = DTOForgeSectionMoveInput; exports.DTOForgeSectionUpdateInput = DTOForgeSectionUpdateInput; exports.DTOForgeSpecArtifact = DTOForgeSpecArtifact; exports.DTOForgeThemeKnownPreset = DTOForgeThemeKnownPreset; exports.DTOForgeTokenThemeSet = DTOForgeTokenThemeSet; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetBlockDefinitionsQuery = DTOGetBlockDefinitionsQuery; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGetForgeIterationMessageResponse = DTOGetForgeIterationMessageResponse; exports.DTOGetForgeProjectIterationResponse = DTOGetForgeProjectIterationResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMCPStream = DTOMCPStream; exports.DTOMCPStreamResponse = DTOMCPStreamResponse; exports.DTOMCPStreamUpdateInput = DTOMCPStreamUpdateInput; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONotificationBase = DTONotificationBase; exports.DTONotificationChannel = DTONotificationChannel; exports.DTONotificationChatMentionPayload = DTONotificationChatMentionPayload; exports.DTONotificationCreateInput = DTONotificationCreateInput; exports.DTONotificationProjectDocumentCommentPayload = DTONotificationProjectDocumentCommentPayload; exports.DTONotificationProjectInvitationPayload = DTONotificationProjectInvitationPayload; exports.DTONotificationType = DTONotificationType; exports.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPortalSettings = DTOPortalSettings; exports.DTOPortalSettingsGetResponse = DTOPortalSettingsGetResponse; exports.DTOPortalSettingsSidebar = DTOPortalSettingsSidebar; exports.DTOPortalSettingsSidebarLink = DTOPortalSettingsSidebarLink; exports.DTOPortalSettingsSidebarSection = DTOPortalSettingsSidebarSection; exports.DTOPortalSettingsTheme = DTOPortalSettingsTheme; exports.DTOPortalSettingsUpdatePayload = DTOPortalSettingsUpdatePayload; exports.DTOProduct = DTOProduct; exports.DTOProductCode = DTOProductCode; exports.DTOProductPrice = DTOProductPrice; exports.DTOProjectContextOverride = DTOProjectContextOverride; exports.DTOProjectContextOverrideInput = DTOProjectContextOverrideInput; exports.DTOProjectContextOverrideResponse = DTOProjectContextOverrideResponse; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORegistry = DTORegistry; exports.DTORemoveForgeProjectInvitation = DTORemoveForgeProjectInvitation; exports.DTORemoveForgeProjectMember = DTORemoveForgeProjectMember; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOSandboxError = DTOSandboxError; exports.DTOSandboxTemplate = DTOSandboxTemplate; exports.DTOSandboxTemplateBuild = DTOSandboxTemplateBuild; exports.DTOSandboxTemplateBuildCreateInput = DTOSandboxTemplateBuildCreateInput; exports.DTOSandboxTemplateBuildCreateResponse = DTOSandboxTemplateBuildCreateResponse; exports.DTOSandboxTemplateBuildCreated = DTOSandboxTemplateBuildCreated; exports.DTOSandboxTemplateBuildFinalizeResponse = DTOSandboxTemplateBuildFinalizeResponse; exports.DTOSandboxTemplateBuildFinished = DTOSandboxTemplateBuildFinished; exports.DTOSandboxTemplateBuildResponse = DTOSandboxTemplateBuildResponse; exports.DTOSandboxTemplateFile = DTOSandboxTemplateFile; exports.DTOSandboxTemplateListResponse = DTOSandboxTemplateListResponse; exports.DTOSandboxTemplateQuery = DTOSandboxTemplateQuery; exports.DTOSandboxTemplateResponse = DTOSandboxTemplateResponse; exports.DTOSandboxTemplateVersion = DTOSandboxTemplateVersion; exports.DTOSandboxTemplateVersionCreated = DTOSandboxTemplateVersionCreated; exports.DTOSandboxTemplateVersionDetail = DTOSandboxTemplateVersionDetail; exports.DTOStorybookAccessTokenPayload = DTOStorybookAccessTokenPayload; exports.DTOStorybookAccessTokenResponse = DTOStorybookAccessTokenResponse; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOStorybookUploadUrlRequest = DTOStorybookUploadUrlRequest; exports.DTOStorybookUploadUrlResponse = DTOStorybookUploadUrlResponse; exports.DTOSubscription = DTOSubscription; exports.DTOSubscriptionResponse = DTOSubscriptionResponse; exports.DTOSubscriptionUpcomingChange = DTOSubscriptionUpcomingChange; exports.DTOSubscriptionUpdateInput = DTOSubscriptionUpdateInput; exports.DTOSubscriptionUpdatePreview = DTOSubscriptionUpdatePreview; exports.DTOSubscriptionUpdatePreviewResponse = DTOSubscriptionUpdatePreviewResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOThread = DTOThread; exports.DTOThreadAgentResponseTracker = DTOThreadAgentResponseTracker; exports.DTOThreadAgentType = DTOThreadAgentType; exports.DTOThreadEvent = DTOThreadEvent; exports.DTOThreadEventMessagesSent = DTOThreadEventMessagesSent; exports.DTOThreadEventMessagesUpdated = DTOThreadEventMessagesUpdated; exports.DTOThreadEventReactionsDeleted = DTOThreadEventReactionsDeleted; exports.DTOThreadEventReactionsSent = DTOThreadEventReactionsSent; exports.DTOThreadMessage = DTOThreadMessage; exports.DTOThreadMessageAgentSender = DTOThreadMessageAgentSender; exports.DTOThreadMessageAttachments = DTOThreadMessageAttachments; exports.DTOThreadMessageAttachmentsCreateInput = DTOThreadMessageAttachmentsCreateInput; exports.DTOThreadMessageCreateInput = DTOThreadMessageCreateInput; exports.DTOThreadMessageFinalizeInput = DTOThreadMessageFinalizeInput; exports.DTOThreadMessageListResponse = DTOThreadMessageListResponse; exports.DTOThreadMessageResponse = DTOThreadMessageResponse; exports.DTOThreadMessageRetryInput = DTOThreadMessageRetryInput; exports.DTOThreadMessageSender = DTOThreadMessageSender; exports.DTOThreadMessageSystemSender = DTOThreadMessageSystemSender; exports.DTOThreadMessageUpdateInput = DTOThreadMessageUpdateInput; exports.DTOThreadMessageUserSender = DTOThreadMessageUserSender; exports.DTOThreadPromptState = DTOThreadPromptState; exports.DTOThreadReaction = DTOThreadReaction; exports.DTOThreadReactionCreateInput = DTOThreadReactionCreateInput; exports.DTOThreadReactionDeleteInput = DTOThreadReactionDeleteInput; exports.DTOThreadReactionResponse = DTOThreadReactionResponse; exports.DTOThreadSubjectType = DTOThreadSubjectType; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTrailEvent = DTOTrailEvent; exports.DTOTrailEventClientCreate = DTOTrailEventClientCreate; exports.DTOTrailEventCreate = DTOTrailEventCreate; exports.DTOTrailEventListInput = DTOTrailEventListInput; exports.DTOTrailEventListResponse = DTOTrailEventListResponse; exports.DTOTrailEventType = DTOTrailEventType; exports.DTOTrailEventWithDetails = DTOTrailEventWithDetails; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUGetForgeAgentResponse = DTOUGetForgeAgentResponse; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateForgeAgent = DTOUpdateForgeAgent; exports.DTOUpdateForgeAgentResponse = DTOUpdateForgeAgentResponse; exports.DTOUpdateForgeArtifact = DTOUpdateForgeArtifact; exports.DTOUpdateForgeArtifactResponse = DTOUpdateForgeArtifactResponse; exports.DTOUpdateForgeBuildArtifact = DTOUpdateForgeBuildArtifact; exports.DTOUpdateForgeFigmaArtifact = DTOUpdateForgeFigmaArtifact; exports.DTOUpdateForgeFileArtifact = DTOUpdateForgeFileArtifact; exports.DTOUpdateForgeIterationMessage = DTOUpdateForgeIterationMessage; exports.DTOUpdateForgeIterationMessageResponse = DTOUpdateForgeIterationMessageResponse; exports.DTOUpdateForgeParticipant = DTOUpdateForgeParticipant; exports.DTOUpdateForgeParticipantResponse = DTOUpdateForgeParticipantResponse; exports.DTOUpdateForgeProjectContext = DTOUpdateForgeProjectContext; exports.DTOUpdateForgeProjectInvitation = DTOUpdateForgeProjectInvitation; exports.DTOUpdateForgeProjectIteration = DTOUpdateForgeProjectIteration; exports.DTOUpdateForgeProjectIterationResponse = DTOUpdateForgeProjectIterationResponse; exports.DTOUpdateForgeProjectMember = DTOUpdateForgeProjectMember; exports.DTOUpdateForgeSpecArtifact = DTOUpdateForgeSpecArtifact; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUploadUrlItem = DTOUploadUrlItem; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserEmailSettings = DTOUserEmailSettings; exports.DTOUserEmailSettingsUpdatePayload = DTOUserEmailSettingsUpdatePayload; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettings = DTOUserNotificationSettings; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserPortalTheme = DTOUserPortalTheme; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserUpdatePayload = DTOUserUpdatePayload; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceBilledSeatType = DTOWorkspaceBilledSeatType; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceDefaultProjectAccessMode = DTOWorkspaceDefaultProjectAccessMode; exports.DTOWorkspaceDefaultProjectRole = DTOWorkspaceDefaultProjectRole; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitation = DTOWorkspaceInvitation; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceRoomEvent = DTOWorkspaceRoomEvent; exports.DTOWorkspaceSeatType = DTOWorkspaceSeatType; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemFilesEndpoint = DesignSystemFilesEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FeatureRoomBaseYDoc = FeatureRoomBaseYDoc; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FilesEndpoint = FilesEndpoint; exports.ForgeAgentsEndpoint = ForgeAgentsEndpoint; exports.ForgeArtifactsEndpoint = ForgeArtifactsEndpoint; exports.ForgeDocumentsEndpoint = ForgeDocumentsEndpoint; exports.ForgeEndpoint = ForgeEndpoint; exports.ForgeFeatureArtifactsEndpoint = ForgeFeatureArtifactsEndpoint; exports.ForgeFeatureIterationsEndpoint = ForgeFeatureIterationsEndpoint; exports.ForgeFeatureMessagesEndpoint = ForgeFeatureMessagesEndpoint; exports.ForgeMemoryEndpoint = ForgeMemoryEndpoint; exports.ForgeProjectContentRepository = ForgeProjectContentRepository; exports.ForgeProjectContextsEndpoint = ForgeProjectContextsEndpoint; exports.ForgeProjectFeaturesEndpoint = ForgeProjectFeaturesEndpoint; exports.ForgeProjectFilesEndpoint = ForgeProjectFilesEndpoint; exports.ForgeProjectInvitationsEndpoint = ForgeProjectInvitationsEndpoint; exports.ForgeProjectIterationsEndpoint = ForgeProjectIterationsEndpoint; exports.ForgeProjectMembersEndpoint = ForgeProjectMembersEndpoint; exports.ForgeProjectRoomBaseYDoc = ForgeProjectRoomBaseYDoc; exports.ForgeProjectsEndpoint = ForgeProjectsEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendFeatureRoomYDoc = FrontendFeatureRoomYDoc; exports.FrontendThreadRoomYDoc = FrontendThreadRoomYDoc; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.LocalProjectActionExecutor = LocalProjectActionExecutor; exports.MCPStreamsEndpoint = MCPStreamsEndpoint; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.SandboxTemplateBuildsEndpoint = SandboxTemplateBuildsEndpoint; exports.SandboxTemplatesEndpoint = SandboxTemplatesEndpoint; exports.SandboxesEndpoint = SandboxesEndpoint; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookHostingEndpoint = StorybookHostingEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.ThreadRoomBaseYDoc = ThreadRoomBaseYDoc; exports.ThreadsEndpoint = ThreadsEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceBillingEndpoint = WorkspaceBillingEndpoint; exports.WorkspaceChatThreadsEndpoint = WorkspaceChatThreadsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspaceSubscriptionEndpoint = WorkspaceSubscriptionEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.applyProjectActionsLocally = applyProjectActionsLocally; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.zodQueryBoolean = zodQueryBoolean;
20898
+
20899
+
20900
+
20901
+ exports.BackendFeatureRoomYDoc = BackendFeatureRoomYDoc; exports.BackendForgeProjectRoomYDoc = BackendForgeProjectRoomYDoc; exports.BackendThreadRoomYDoc = BackendThreadRoomYDoc; exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.ChatThreadMessagesEndpoint = ChatThreadMessagesEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; exports.DTOAddMembersToForgeProject = DTOAddMembersToForgeProject; exports.DTOAnalyzeCodeComponentsInPackage = DTOAnalyzeCodeComponentsInPackage; exports.DTOAnalyzeCodeComponentsInPackageInput = DTOAnalyzeCodeComponentsInPackageInput; exports.DTOAnalyzeCodeComponentsInPackageResponse = DTOAnalyzeCodeComponentsInPackageResponse; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAssetScope = DTOAssetScope; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOAvailableProductListResponse = DTOAvailableProductListResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBillingCheckoutCreditsTopUpInput = DTOBillingCheckoutCreditsTopUpInput; exports.DTOBillingCheckoutInput = DTOBillingCheckoutInput; exports.DTOBillingCheckoutMode = DTOBillingCheckoutMode; exports.DTOBillingCheckoutOldInput = DTOBillingCheckoutOldInput; exports.DTOBillingCheckoutResponse = DTOBillingCheckoutResponse; exports.DTOBillingCheckoutSubscriptionChangeInput = DTOBillingCheckoutSubscriptionChangeInput; exports.DTOBillingCreditsCheckIfCanSpendResponse = DTOBillingCreditsCheckIfCanSpendResponse; exports.DTOBillingCreditsSpendAction = DTOBillingCreditsSpendAction; exports.DTOBillingCreditsSpendInput = DTOBillingCreditsSpendInput; exports.DTOBillingCreditsSpendResponse = DTOBillingCreditsSpendResponse; exports.DTOBillingInterval = DTOBillingInterval; exports.DTOBillingSubscriptionChangePreviewInput = DTOBillingSubscriptionChangePreviewInput; exports.DTOBillingSupportedModels = DTOBillingSupportedModels; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentCreateInput = DTOCodeComponentCreateInput; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentParentType = DTOCodeComponentParentType; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentResolvedType = DTOCodeComponentResolvedType; exports.DTOCodeComponentResolvedTypeKind = DTOCodeComponentResolvedTypeKind; exports.DTOCodeComponentResponse = DTOCodeComponentResponse; exports.DTOCodeComponentUpsertResponse = DTOCodeComponentUpsertResponse; exports.DTOCodeComponentsCreateInput = DTOCodeComponentsCreateInput; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateForgeAgent = DTOCreateForgeAgent; exports.DTOCreateForgeAgentResponse = DTOCreateForgeAgentResponse; exports.DTOCreateForgeArtifact = DTOCreateForgeArtifact; exports.DTOCreateForgeArtifactResponse = DTOCreateForgeArtifactResponse; exports.DTOCreateForgeBuildArtifact = DTOCreateForgeBuildArtifact; exports.DTOCreateForgeFigmaArtifact = DTOCreateForgeFigmaArtifact; exports.DTOCreateForgeFileArtifact = DTOCreateForgeFileArtifact; exports.DTOCreateForgeIterationMessage = DTOCreateForgeIterationMessage; exports.DTOCreateForgeIterationMessageResponse = DTOCreateForgeIterationMessageResponse; exports.DTOCreateForgeParticipant = DTOCreateForgeParticipant; exports.DTOCreateForgeParticipantResponse = DTOCreateForgeParticipantResponse; exports.DTOCreateForgeProjectContext = DTOCreateForgeProjectContext; exports.DTOCreateForgeProjectInvitation = DTOCreateForgeProjectInvitation; exports.DTOCreateForgeProjectIteration = DTOCreateForgeProjectIteration; exports.DTOCreateForgeProjectIterationResponse = DTOCreateForgeProjectIterationResponse; exports.DTOCreateForgeProjectMember = DTOCreateForgeProjectMember; exports.DTOCreateForgeSpecArtifact = DTOCreateForgeSpecArtifact; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTOCreditBalance = DTOCreditBalance; exports.DTOCreditsPrices = DTOCreditsPrices; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteForgeAgentResponse = DTODeleteForgeAgentResponse; exports.DTODeleteForgeArtifactResponse = DTODeleteForgeArtifactResponse; exports.DTODeleteForgeIterationMessageResponse = DTODeleteForgeIterationMessageResponse; exports.DTODeleteForgeParticipantResponse = DTODeleteForgeParticipantResponse; exports.DTODeleteForgeProjectIterationResponse = DTODeleteForgeProjectIterationResponse; exports.DTODependencyDefinition = DTODependencyDefinition; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemUpdateSwitcherInput = DTODesignSystemUpdateSwitcherInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFeatureAgentResponseTracker = DTOFeatureAgentResponseTracker; exports.DTOFeatureAgentWorkFinalizeInput = DTOFeatureAgentWorkFinalizeInput; exports.DTOFeatureArtifact = DTOFeatureArtifact; exports.DTOFeatureArtifactCreateInput = DTOFeatureArtifactCreateInput; exports.DTOFeatureArtifactDeleteInput = DTOFeatureArtifactDeleteInput; exports.DTOFeatureArtifactGetByIdParam = DTOFeatureArtifactGetByIdParam; exports.DTOFeatureArtifactListQuery = DTOFeatureArtifactListQuery; exports.DTOFeatureArtifactListResponse = DTOFeatureArtifactListResponse; exports.DTOFeatureArtifactResponse = DTOFeatureArtifactResponse; exports.DTOFeatureArtifactWithContentResponse = DTOFeatureArtifactWithContentResponse; exports.DTOFeatureEvent = DTOFeatureEvent; exports.DTOFeatureEventMessagesSent = DTOFeatureEventMessagesSent; exports.DTOFeatureEventReactionsDeleted = DTOFeatureEventReactionsDeleted; exports.DTOFeatureEventReactionsSent = DTOFeatureEventReactionsSent; exports.DTOFeatureIteration = DTOFeatureIteration; exports.DTOFeatureIterationArtifactDiff = DTOFeatureIterationArtifactDiff; exports.DTOFeatureIterationArtifactsDiff = DTOFeatureIterationArtifactsDiff; exports.DTOFeatureIterationCreateInput = DTOFeatureIterationCreateInput; exports.DTOFeatureIterationError = DTOFeatureIterationError; exports.DTOFeatureIterationErrorType = DTOFeatureIterationErrorType; exports.DTOFeatureIterationListResponse = DTOFeatureIterationListResponse; exports.DTOFeatureIterationPromoteInput = DTOFeatureIterationPromoteInput; exports.DTOFeatureIterationResponse = DTOFeatureIterationResponse; exports.DTOFeatureIterationSetLatestInput = DTOFeatureIterationSetLatestInput; exports.DTOFeatureIterationState = DTOFeatureIterationState; exports.DTOFeatureIterationTag = DTOFeatureIterationTag; exports.DTOFeatureIterationTagCreateInput = DTOFeatureIterationTagCreateInput; exports.DTOFeatureIterationTagListResponse = DTOFeatureIterationTagListResponse; exports.DTOFeatureIterationTagResponse = DTOFeatureIterationTagResponse; exports.DTOFeatureIterationUpdateArtifactsByMessageInput = DTOFeatureIterationUpdateArtifactsByMessageInput; exports.DTOFeatureIterationUpdateArtifactsInput = DTOFeatureIterationUpdateArtifactsInput; exports.DTOFeatureIterationUpdateInput = DTOFeatureIterationUpdateInput; exports.DTOFeatureIterationValidateInput = DTOFeatureIterationValidateInput; exports.DTOFeatureIterationValidateResponse = DTOFeatureIterationValidateResponse; exports.DTOFeatureMessage = DTOFeatureMessage; exports.DTOFeatureMessageAgentSender = DTOFeatureMessageAgentSender; exports.DTOFeatureMessageAttachments = DTOFeatureMessageAttachments; exports.DTOFeatureMessageCreateInput = DTOFeatureMessageCreateInput; exports.DTOFeatureMessageListResponse = DTOFeatureMessageListResponse; exports.DTOFeatureMessageReaction = DTOFeatureMessageReaction; exports.DTOFeatureMessageReactionCreateInput = DTOFeatureMessageReactionCreateInput; exports.DTOFeatureMessageReactionDeleteInput = DTOFeatureMessageReactionDeleteInput; exports.DTOFeatureMessageReactionResponse = DTOFeatureMessageReactionResponse; exports.DTOFeatureMessageResponse = DTOFeatureMessageResponse; exports.DTOFeatureMessageSender = DTOFeatureMessageSender; exports.DTOFeatureMessageSystemSender = DTOFeatureMessageSystemSender; exports.DTOFeatureMessageUpdateInput = DTOFeatureMessageUpdateInput; exports.DTOFeatureMessageUserSender = DTOFeatureMessageUserSender; exports.DTOFeatureSandbox = DTOFeatureSandbox; exports.DTOFeatureUpdateThemeInput = DTOFeatureUpdateThemeInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaExportNodeConfiguration = DTOFigmaExportNodeConfiguration; exports.DTOFigmaExportNodeFormat = DTOFigmaExportNodeFormat; exports.DTOFigmaExportNodePayload = DTOFigmaExportNodePayload; exports.DTOFigmaExportNodeResponse = DTOFigmaExportNodeResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFigmaSourceUpdatePayload = DTOFigmaSourceUpdatePayload; exports.DTOFile = DTOFile; exports.DTOFileFigmaRenderMode = DTOFileFigmaRenderMode; exports.DTOFileFinalizeBulkPayload = DTOFileFinalizeBulkPayload; exports.DTOFileFinalizeBulkResponse = DTOFileFinalizeBulkResponse; exports.DTOFileListResponse = DTOFileListResponse; exports.DTOFileReference = DTOFileReference; exports.DTOFileResponseItem = DTOFileResponseItem; exports.DTOFileSource = DTOFileSource; exports.DTOFileSourceFigma = DTOFileSourceFigma; exports.DTOFileSourceUpload = DTOFileSourceUpload; exports.DTOFileUploadBulkPayload = DTOFileUploadBulkPayload; exports.DTOFileUploadBulkResponse = DTOFileUploadBulkResponse; exports.DTOFileUploadFinalizePayload = DTOFileUploadFinalizePayload; exports.DTOFileUploadFinalizeResponse = DTOFileUploadFinalizeResponse; exports.DTOFileUploadItem = DTOFileUploadItem; exports.DTOFileUploadPayload = DTOFileUploadPayload; exports.DTOFileUploadResponse = DTOFileUploadResponse; exports.DTOFileUploadResponseItem = DTOFileUploadResponseItem; exports.DTOFilesGetPayload = DTOFilesGetPayload; exports.DTOFilesGetQuery = DTOFilesGetQuery; exports.DTOFilesResponse = DTOFilesResponse; exports.DTOForgeAgent = DTOForgeAgent; exports.DTOForgeAgentsListResponse = DTOForgeAgentsListResponse; exports.DTOForgeArtifact = DTOForgeArtifact; exports.DTOForgeArtifactGetResponse = DTOForgeArtifactGetResponse; exports.DTOForgeArtifactsListResponse = DTOForgeArtifactsListResponse; exports.DTOForgeAvatarBuilder = DTOForgeAvatarBuilder; exports.DTOForgeBuildArtifact = DTOForgeBuildArtifact; exports.DTOForgeChatExportResponse = DTOForgeChatExportResponse; exports.DTOForgeChatMessage = DTOForgeChatMessage; exports.DTOForgeChatMessageCreateInput = DTOForgeChatMessageCreateInput; exports.DTOForgeChatMessageCreateResponse = DTOForgeChatMessageCreateResponse; exports.DTOForgeChatMessageListQuery = DTOForgeChatMessageListQuery; exports.DTOForgeChatMessageListResponse = DTOForgeChatMessageListResponse; exports.DTOForgeChatMessageScoreInput = DTOForgeChatMessageScoreInput; exports.DTOForgeChatMessageScoreRequest = DTOForgeChatMessageScoreRequest; exports.DTOForgeChatMessageSender = DTOForgeChatMessageSender; exports.DTOForgeChatMessageSenderType = DTOForgeChatMessageSenderType; exports.DTOForgeChatMessageTagInput = DTOForgeChatMessageTagInput; exports.DTOForgeChatThread = DTOForgeChatThread; exports.DTOForgeChatThreadCreateInput = DTOForgeChatThreadCreateInput; exports.DTOForgeChatThreadCreateResponse = DTOForgeChatThreadCreateResponse; exports.DTOForgeChatThreadDeleteResponse = DTOForgeChatThreadDeleteResponse; exports.DTOForgeChatThreadListQuery = DTOForgeChatThreadListQuery; exports.DTOForgeChatThreadListResponse = DTOForgeChatThreadListResponse; exports.DTOForgeChatThreadUpdateInput = DTOForgeChatThreadUpdateInput; exports.DTOForgeChatThreadUpdateResponse = DTOForgeChatThreadUpdateResponse; exports.DTOForgeComponentSet = DTOForgeComponentSet; exports.DTOForgeComponentSetTypeV2 = DTOForgeComponentSetTypeV2; exports.DTOForgeDocumentGetByIdParam = DTOForgeDocumentGetByIdParam; exports.DTOForgeDocumentGetResponse = DTOForgeDocumentGetResponse; exports.DTOForgeEntity = DTOForgeEntity; exports.DTOForgeFeatureRoom = DTOForgeFeatureRoom; exports.DTOForgeFeatureRoomResponse = DTOForgeFeatureRoomResponse; exports.DTOForgeFigmaArtifact = DTOForgeFigmaArtifact; exports.DTOForgeFileArtifact = DTOForgeFileArtifact; exports.DTOForgeIconSet = DTOForgeIconSet; exports.DTOForgeIconSetTypeV2 = DTOForgeIconSetTypeV2; exports.DTOForgeIterationMessage = DTOForgeIterationMessage; exports.DTOForgeIterationMessagesListResponse = DTOForgeIterationMessagesListResponse; exports.DTOForgeMemoryCreateInput = DTOForgeMemoryCreateInput; exports.DTOForgeMemoryDeleteInput = DTOForgeMemoryDeleteInput; exports.DTOForgeMemoryEntry = DTOForgeMemoryEntry; exports.DTOForgeMemoryEntryListQuery = DTOForgeMemoryEntryListQuery; exports.DTOForgeMemoryEntryListResponse = DTOForgeMemoryEntryListResponse; exports.DTOForgeMemoryEntryResponse = DTOForgeMemoryEntryResponse; exports.DTOForgeMemoryUpdateInput = DTOForgeMemoryUpdateInput; exports.DTOForgeParticipant = DTOForgeParticipant; exports.DTOForgeParticipantGetResponse = DTOForgeParticipantGetResponse; exports.DTOForgeParticipantsListResponse = DTOForgeParticipantsListResponse; exports.DTOForgeProject = DTOForgeProject; exports.DTOForgeProjectAccessMode = DTOForgeProjectAccessMode; exports.DTOForgeProjectAction = DTOForgeProjectAction; exports.DTOForgeProjectActionArtifactCreate = DTOForgeProjectActionArtifactCreate; exports.DTOForgeProjectActionArtifactDelete = DTOForgeProjectActionArtifactDelete; exports.DTOForgeProjectActionArtifactMove = DTOForgeProjectActionArtifactMove; exports.DTOForgeProjectActionArtifactUpdate = DTOForgeProjectActionArtifactUpdate; exports.DTOForgeProjectActionFeatureCreate = DTOForgeProjectActionFeatureCreate; exports.DTOForgeProjectActionFeatureDelete = DTOForgeProjectActionFeatureDelete; exports.DTOForgeProjectActionFeatureMove = DTOForgeProjectActionFeatureMove; exports.DTOForgeProjectActionFeatureUpdate = DTOForgeProjectActionFeatureUpdate; exports.DTOForgeProjectActionSectionCreate = DTOForgeProjectActionSectionCreate; exports.DTOForgeProjectActionSectionDelete = DTOForgeProjectActionSectionDelete; exports.DTOForgeProjectActionSectionMove = DTOForgeProjectActionSectionMove; exports.DTOForgeProjectActionSectionUpdate = DTOForgeProjectActionSectionUpdate; exports.DTOForgeProjectArtifact = DTOForgeProjectArtifact; exports.DTOForgeProjectArtifactContentResponse = DTOForgeProjectArtifactContentResponse; exports.DTOForgeProjectArtifactCreateInput = DTOForgeProjectArtifactCreateInput; exports.DTOForgeProjectArtifactCreateResponse = DTOForgeProjectArtifactCreateResponse; exports.DTOForgeProjectArtifactDeleteInput = DTOForgeProjectArtifactDeleteInput; exports.DTOForgeProjectArtifactDeleteResponse = DTOForgeProjectArtifactDeleteResponse; exports.DTOForgeProjectArtifactGetResponse = DTOForgeProjectArtifactGetResponse; exports.DTOForgeProjectArtifactMoveInput = DTOForgeProjectArtifactMoveInput; exports.DTOForgeProjectArtifactMoveResponse = DTOForgeProjectArtifactMoveResponse; exports.DTOForgeProjectArtifactRoom = DTOForgeProjectArtifactRoom; exports.DTOForgeProjectArtifactRoomResponse = DTOForgeProjectArtifactRoomResponse; exports.DTOForgeProjectArtifactUpdateInput = DTOForgeProjectArtifactUpdateInput; exports.DTOForgeProjectArtifactUpdateResponse = DTOForgeProjectArtifactUpdateResponse; exports.DTOForgeProjectArtifactsListResponse = DTOForgeProjectArtifactsListResponse; exports.DTOForgeProjectContext = DTOForgeProjectContext; exports.DTOForgeProjectContextCreateResponse = DTOForgeProjectContextCreateResponse; exports.DTOForgeProjectContextCreateV2 = DTOForgeProjectContextCreateV2; exports.DTOForgeProjectContextCreated = DTOForgeProjectContextCreated; exports.DTOForgeProjectContextDeleted = DTOForgeProjectContextDeleted; exports.DTOForgeProjectContextGetResponse = DTOForgeProjectContextGetResponse; exports.DTOForgeProjectContextListQueryV2 = DTOForgeProjectContextListQueryV2; exports.DTOForgeProjectContextListResponse = DTOForgeProjectContextListResponse; exports.DTOForgeProjectContextListResponseV2 = DTOForgeProjectContextListResponseV2; exports.DTOForgeProjectContextRemoveResponse = DTOForgeProjectContextRemoveResponse; exports.DTOForgeProjectContextResponseV2 = DTOForgeProjectContextResponseV2; exports.DTOForgeProjectContextUpdateResponse = DTOForgeProjectContextUpdateResponse; exports.DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextUpdateV2; exports.DTOForgeProjectContextUpdated = DTOForgeProjectContextUpdated; exports.DTOForgeProjectContextV2 = DTOForgeProjectContextV2; exports.DTOForgeProjectCreate = DTOForgeProjectCreate; exports.DTOForgeProjectCreated = DTOForgeProjectCreated; exports.DTOForgeProjectDefaultRole = DTOForgeProjectDefaultRole; exports.DTOForgeProjectDocumentPreview = DTOForgeProjectDocumentPreview; exports.DTOForgeProjectFeature = DTOForgeProjectFeature; exports.DTOForgeProjectFeatureCreateInput = DTOForgeProjectFeatureCreateInput; exports.DTOForgeProjectFeatureDeleteInput = DTOForgeProjectFeatureDeleteInput; exports.DTOForgeProjectFeatureGetByIdParam = DTOForgeProjectFeatureGetByIdParam; exports.DTOForgeProjectFeatureGetResponse = DTOForgeProjectFeatureGetResponse; exports.DTOForgeProjectFeatureListResponse = DTOForgeProjectFeatureListResponse; exports.DTOForgeProjectFeatureMoveInput = DTOForgeProjectFeatureMoveInput; exports.DTOForgeProjectFeaturePreview = DTOForgeProjectFeaturePreview; exports.DTOForgeProjectFeaturePublishedState = DTOForgeProjectFeaturePublishedState; exports.DTOForgeProjectFeatureUpdateInput = DTOForgeProjectFeatureUpdateInput; exports.DTOForgeProjectFigmaNode = DTOForgeProjectFigmaNode; exports.DTOForgeProjectFigmaNodeRenderInput = DTOForgeProjectFigmaNodeRenderInput; exports.DTOForgeProjectFile = DTOForgeProjectFile; exports.DTOForgeProjectFileListResponse = DTOForgeProjectFileListResponse; exports.DTOForgeProjectFileUploadFinalizePayload = DTOForgeProjectFileUploadFinalizePayload; exports.DTOForgeProjectFileUploadFinalizeResponse = DTOForgeProjectFileUploadFinalizeResponse; exports.DTOForgeProjectFileUploadPayload = DTOForgeProjectFileUploadPayload; exports.DTOForgeProjectFileUploadPayloadItem = DTOForgeProjectFileUploadPayloadItem; exports.DTOForgeProjectFileUploadResponse = DTOForgeProjectFileUploadResponse; exports.DTOForgeProjectInvitation = DTOForgeProjectInvitation; exports.DTOForgeProjectInvitationCreateResponse = DTOForgeProjectInvitationCreateResponse; exports.DTOForgeProjectInvitationGetResponse = DTOForgeProjectInvitationGetResponse; exports.DTOForgeProjectInvitationRemoveResponse = DTOForgeProjectInvitationRemoveResponse; exports.DTOForgeProjectInvitationUpdateResponse = DTOForgeProjectInvitationUpdateResponse; exports.DTOForgeProjectInvitationsListResponse = DTOForgeProjectInvitationsListResponse; exports.DTOForgeProjectIteration = DTOForgeProjectIteration; exports.DTOForgeProjectIterationListResponse = DTOForgeProjectIterationListResponse; exports.DTOForgeProjectIterationMergeMeta = DTOForgeProjectIterationMergeMeta; exports.DTOForgeProjectListResponse = DTOForgeProjectListResponse; exports.DTOForgeProjectMember = DTOForgeProjectMember; exports.DTOForgeProjectMemberCreateResponse = DTOForgeProjectMemberCreateResponse; exports.DTOForgeProjectMemberDeleted = DTOForgeProjectMemberDeleted; exports.DTOForgeProjectMemberGetResponse = DTOForgeProjectMemberGetResponse; exports.DTOForgeProjectMemberListQuery = DTOForgeProjectMemberListQuery; exports.DTOForgeProjectMemberRemoveResponse = DTOForgeProjectMemberRemoveResponse; exports.DTOForgeProjectMemberRole = DTOForgeProjectMemberRole; exports.DTOForgeProjectMemberUpdateResponse = DTOForgeProjectMemberUpdateResponse; exports.DTOForgeProjectMemberUpdated = DTOForgeProjectMemberUpdated; exports.DTOForgeProjectMembersCreated = DTOForgeProjectMembersCreated; exports.DTOForgeProjectMembersListResponse = DTOForgeProjectMembersListResponse; exports.DTOForgeProjectPublishedFeature = DTOForgeProjectPublishedFeature; exports.DTOForgeProjectPublishedFeatureGetResponse = DTOForgeProjectPublishedFeatureGetResponse; exports.DTOForgeProjectResponse = DTOForgeProjectResponse; exports.DTOForgeProjectRole = DTOForgeProjectRole; exports.DTOForgeProjectRoom = DTOForgeProjectRoom; exports.DTOForgeProjectRoomEvent = DTOForgeProjectRoomEvent; exports.DTOForgeProjectRoomResponse = DTOForgeProjectRoomResponse; exports.DTOForgeProjectTheme = DTOForgeProjectTheme; exports.DTOForgeProjectUpdate = DTOForgeProjectUpdate; exports.DTOForgeProjectUpdated = DTOForgeProjectUpdated; exports.DTOForgeRelation = DTOForgeRelation; exports.DTOForgeRelationCreate = DTOForgeRelationCreate; exports.DTOForgeRelationDelete = DTOForgeRelationDelete; exports.DTOForgeRelationListInput = DTOForgeRelationListInput; exports.DTOForgeRelationListResponse = DTOForgeRelationListResponse; exports.DTOForgeRelationType = DTOForgeRelationType; exports.DTOForgeSection = DTOForgeSection; exports.DTOForgeSectionCreateInput = DTOForgeSectionCreateInput; exports.DTOForgeSectionDeleteInput = DTOForgeSectionDeleteInput; exports.DTOForgeSectionItemMoveInput = DTOForgeSectionItemMoveInput; exports.DTOForgeSectionMoveInput = DTOForgeSectionMoveInput; exports.DTOForgeSectionUpdateInput = DTOForgeSectionUpdateInput; exports.DTOForgeSpecArtifact = DTOForgeSpecArtifact; exports.DTOForgeThemeKnownPreset = DTOForgeThemeKnownPreset; exports.DTOForgeTokenThemeSet = DTOForgeTokenThemeSet; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetBlockDefinitionsQuery = DTOGetBlockDefinitionsQuery; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGetForgeIterationMessageResponse = DTOGetForgeIterationMessageResponse; exports.DTOGetForgeProjectIterationResponse = DTOGetForgeProjectIterationResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMCPStream = DTOMCPStream; exports.DTOMCPStreamResponse = DTOMCPStreamResponse; exports.DTOMCPStreamUpdateInput = DTOMCPStreamUpdateInput; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONotificationBase = DTONotificationBase; exports.DTONotificationChannel = DTONotificationChannel; exports.DTONotificationChatMentionPayload = DTONotificationChatMentionPayload; exports.DTONotificationCreateInput = DTONotificationCreateInput; exports.DTONotificationProjectDocumentCommentPayload = DTONotificationProjectDocumentCommentPayload; exports.DTONotificationProjectInvitationPayload = DTONotificationProjectInvitationPayload; exports.DTONotificationType = DTONotificationType; exports.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPortalSettings = DTOPortalSettings; exports.DTOPortalSettingsGetResponse = DTOPortalSettingsGetResponse; exports.DTOPortalSettingsSidebar = DTOPortalSettingsSidebar; exports.DTOPortalSettingsSidebarLink = DTOPortalSettingsSidebarLink; exports.DTOPortalSettingsSidebarSection = DTOPortalSettingsSidebarSection; exports.DTOPortalSettingsTheme = DTOPortalSettingsTheme; exports.DTOPortalSettingsUpdatePayload = DTOPortalSettingsUpdatePayload; exports.DTOProduct = DTOProduct; exports.DTOProductCode = DTOProductCode; exports.DTOProductPrice = DTOProductPrice; exports.DTOProjectContextOverride = DTOProjectContextOverride; exports.DTOProjectContextOverrideInput = DTOProjectContextOverrideInput; exports.DTOProjectContextOverrideResponse = DTOProjectContextOverrideResponse; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORegistry = DTORegistry; exports.DTORemoveForgeProjectInvitation = DTORemoveForgeProjectInvitation; exports.DTORemoveForgeProjectMember = DTORemoveForgeProjectMember; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOSandboxError = DTOSandboxError; exports.DTOSandboxTemplate = DTOSandboxTemplate; exports.DTOSandboxTemplateBuild = DTOSandboxTemplateBuild; exports.DTOSandboxTemplateBuildCreateInput = DTOSandboxTemplateBuildCreateInput; exports.DTOSandboxTemplateBuildCreateResponse = DTOSandboxTemplateBuildCreateResponse; exports.DTOSandboxTemplateBuildCreated = DTOSandboxTemplateBuildCreated; exports.DTOSandboxTemplateBuildFinalizeResponse = DTOSandboxTemplateBuildFinalizeResponse; exports.DTOSandboxTemplateBuildFinished = DTOSandboxTemplateBuildFinished; exports.DTOSandboxTemplateBuildResponse = DTOSandboxTemplateBuildResponse; exports.DTOSandboxTemplateFile = DTOSandboxTemplateFile; exports.DTOSandboxTemplateListResponse = DTOSandboxTemplateListResponse; exports.DTOSandboxTemplateQuery = DTOSandboxTemplateQuery; exports.DTOSandboxTemplateResponse = DTOSandboxTemplateResponse; exports.DTOSandboxTemplateVersion = DTOSandboxTemplateVersion; exports.DTOSandboxTemplateVersionCreated = DTOSandboxTemplateVersionCreated; exports.DTOSandboxTemplateVersionDetail = DTOSandboxTemplateVersionDetail; exports.DTOStorybookAccessTokenPayload = DTOStorybookAccessTokenPayload; exports.DTOStorybookAccessTokenResponse = DTOStorybookAccessTokenResponse; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryQuery = DTOStorybookEntryQuery; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOStorybookUploadUrlRequest = DTOStorybookUploadUrlRequest; exports.DTOStorybookUploadUrlResponse = DTOStorybookUploadUrlResponse; exports.DTOSubscription = DTOSubscription; exports.DTOSubscriptionResponse = DTOSubscriptionResponse; exports.DTOSubscriptionUpcomingChange = DTOSubscriptionUpcomingChange; exports.DTOSubscriptionUpdateInput = DTOSubscriptionUpdateInput; exports.DTOSubscriptionUpdatePreview = DTOSubscriptionUpdatePreview; exports.DTOSubscriptionUpdatePreviewResponse = DTOSubscriptionUpdatePreviewResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOThread = DTOThread; exports.DTOThreadAgentResponseTracker = DTOThreadAgentResponseTracker; exports.DTOThreadAgentType = DTOThreadAgentType; exports.DTOThreadEvent = DTOThreadEvent; exports.DTOThreadEventMessagesSent = DTOThreadEventMessagesSent; exports.DTOThreadEventMessagesUpdated = DTOThreadEventMessagesUpdated; exports.DTOThreadEventReactionsDeleted = DTOThreadEventReactionsDeleted; exports.DTOThreadEventReactionsSent = DTOThreadEventReactionsSent; exports.DTOThreadMessage = DTOThreadMessage; exports.DTOThreadMessageAgentSender = DTOThreadMessageAgentSender; exports.DTOThreadMessageAttachments = DTOThreadMessageAttachments; exports.DTOThreadMessageAttachmentsCreateInput = DTOThreadMessageAttachmentsCreateInput; exports.DTOThreadMessageCreateInput = DTOThreadMessageCreateInput; exports.DTOThreadMessageFinalizeInput = DTOThreadMessageFinalizeInput; exports.DTOThreadMessageListResponse = DTOThreadMessageListResponse; exports.DTOThreadMessageResponse = DTOThreadMessageResponse; exports.DTOThreadMessageRetryInput = DTOThreadMessageRetryInput; exports.DTOThreadMessageSender = DTOThreadMessageSender; exports.DTOThreadMessageSystemSender = DTOThreadMessageSystemSender; exports.DTOThreadMessageUpdateInput = DTOThreadMessageUpdateInput; exports.DTOThreadMessageUserSender = DTOThreadMessageUserSender; exports.DTOThreadPromptState = DTOThreadPromptState; exports.DTOThreadReaction = DTOThreadReaction; exports.DTOThreadReactionCreateInput = DTOThreadReactionCreateInput; exports.DTOThreadReactionDeleteInput = DTOThreadReactionDeleteInput; exports.DTOThreadReactionResponse = DTOThreadReactionResponse; exports.DTOThreadSubjectType = DTOThreadSubjectType; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTrailEvent = DTOTrailEvent; exports.DTOTrailEventClientCreate = DTOTrailEventClientCreate; exports.DTOTrailEventCreate = DTOTrailEventCreate; exports.DTOTrailEventListInput = DTOTrailEventListInput; exports.DTOTrailEventListResponse = DTOTrailEventListResponse; exports.DTOTrailEventType = DTOTrailEventType; exports.DTOTrailEventWithDetails = DTOTrailEventWithDetails; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUGetForgeAgentResponse = DTOUGetForgeAgentResponse; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateForgeAgent = DTOUpdateForgeAgent; exports.DTOUpdateForgeAgentResponse = DTOUpdateForgeAgentResponse; exports.DTOUpdateForgeArtifact = DTOUpdateForgeArtifact; exports.DTOUpdateForgeArtifactResponse = DTOUpdateForgeArtifactResponse; exports.DTOUpdateForgeBuildArtifact = DTOUpdateForgeBuildArtifact; exports.DTOUpdateForgeFigmaArtifact = DTOUpdateForgeFigmaArtifact; exports.DTOUpdateForgeFileArtifact = DTOUpdateForgeFileArtifact; exports.DTOUpdateForgeIterationMessage = DTOUpdateForgeIterationMessage; exports.DTOUpdateForgeIterationMessageResponse = DTOUpdateForgeIterationMessageResponse; exports.DTOUpdateForgeParticipant = DTOUpdateForgeParticipant; exports.DTOUpdateForgeParticipantResponse = DTOUpdateForgeParticipantResponse; exports.DTOUpdateForgeProjectContext = DTOUpdateForgeProjectContext; exports.DTOUpdateForgeProjectInvitation = DTOUpdateForgeProjectInvitation; exports.DTOUpdateForgeProjectIteration = DTOUpdateForgeProjectIteration; exports.DTOUpdateForgeProjectIterationResponse = DTOUpdateForgeProjectIterationResponse; exports.DTOUpdateForgeProjectMember = DTOUpdateForgeProjectMember; exports.DTOUpdateForgeSpecArtifact = DTOUpdateForgeSpecArtifact; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUploadUrlItem = DTOUploadUrlItem; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserEmailSettings = DTOUserEmailSettings; exports.DTOUserEmailSettingsUpdatePayload = DTOUserEmailSettingsUpdatePayload; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettings = DTOUserNotificationSettings; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserPortalTheme = DTOUserPortalTheme; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserUpdatePayload = DTOUserUpdatePayload; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceBilledSeatType = DTOWorkspaceBilledSeatType; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceDefaultProjectAccessMode = DTOWorkspaceDefaultProjectAccessMode; exports.DTOWorkspaceDefaultProjectRole = DTOWorkspaceDefaultProjectRole; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitation = DTOWorkspaceInvitation; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceRoomEvent = DTOWorkspaceRoomEvent; exports.DTOWorkspaceSeatType = DTOWorkspaceSeatType; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemFilesEndpoint = DesignSystemFilesEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FeatureRoomBaseYDoc = FeatureRoomBaseYDoc; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FilesEndpoint = FilesEndpoint; exports.ForgeAgentsEndpoint = ForgeAgentsEndpoint; exports.ForgeArtifactsEndpoint = ForgeArtifactsEndpoint; exports.ForgeDocumentsEndpoint = ForgeDocumentsEndpoint; exports.ForgeEndpoint = ForgeEndpoint; exports.ForgeFeatureArtifactsEndpoint = ForgeFeatureArtifactsEndpoint; exports.ForgeFeatureIterationsEndpoint = ForgeFeatureIterationsEndpoint; exports.ForgeFeatureMessagesEndpoint = ForgeFeatureMessagesEndpoint; exports.ForgeMemoryEndpoint = ForgeMemoryEndpoint; exports.ForgeProjectContentRepository = ForgeProjectContentRepository; exports.ForgeProjectContextsEndpoint = ForgeProjectContextsEndpoint; exports.ForgeProjectFeaturesEndpoint = ForgeProjectFeaturesEndpoint; exports.ForgeProjectFilesEndpoint = ForgeProjectFilesEndpoint; exports.ForgeProjectInvitationsEndpoint = ForgeProjectInvitationsEndpoint; exports.ForgeProjectIterationsEndpoint = ForgeProjectIterationsEndpoint; exports.ForgeProjectMembersEndpoint = ForgeProjectMembersEndpoint; exports.ForgeProjectRoomBaseYDoc = ForgeProjectRoomBaseYDoc; exports.ForgeProjectsEndpoint = ForgeProjectsEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendFeatureRoomYDoc = FrontendFeatureRoomYDoc; exports.FrontendThreadRoomYDoc = FrontendThreadRoomYDoc; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.LocalProjectActionExecutor = LocalProjectActionExecutor; exports.MCPStreamsEndpoint = MCPStreamsEndpoint; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.SandboxTemplateBuildsEndpoint = SandboxTemplateBuildsEndpoint; exports.SandboxTemplatesEndpoint = SandboxTemplatesEndpoint; exports.SandboxesEndpoint = SandboxesEndpoint; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookHostingEndpoint = StorybookHostingEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.ThreadRoomBaseYDoc = ThreadRoomBaseYDoc; exports.ThreadsEndpoint = ThreadsEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceBillingEndpoint = WorkspaceBillingEndpoint; exports.WorkspaceChatThreadsEndpoint = WorkspaceChatThreadsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspaceSubscriptionEndpoint = WorkspaceSubscriptionEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.applyProjectActionsLocally = applyProjectActionsLocally; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.zodQueryBoolean = zodQueryBoolean;
20872
20902
  //# sourceMappingURL=index.js.map