@supernova-studio/client 0.55.10 → 0.55.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +202 -20
- package/dist/index.d.ts +202 -20
- package/dist/index.js +9 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/endpoints/workspace-invites.ts +7 -1
package/dist/index.d.mts
CHANGED
|
@@ -45276,6 +45276,25 @@ declare class DesignSystemMembersEndpoint {
|
|
|
45276
45276
|
}>;
|
|
45277
45277
|
}
|
|
45278
45278
|
|
|
45279
|
+
declare class DesignSystemVersionsEndpoint {
|
|
45280
|
+
private readonly requestExecutor;
|
|
45281
|
+
constructor(requestExecutor: RequestExecutor);
|
|
45282
|
+
list(dsId: string): Promise<{
|
|
45283
|
+
designSystemVersions: {
|
|
45284
|
+
id: string;
|
|
45285
|
+
meta: {
|
|
45286
|
+
name: string;
|
|
45287
|
+
description?: string | undefined;
|
|
45288
|
+
};
|
|
45289
|
+
createdAt: Date;
|
|
45290
|
+
version: string;
|
|
45291
|
+
changeLog: string;
|
|
45292
|
+
designSystemId: string;
|
|
45293
|
+
isReadonly: boolean;
|
|
45294
|
+
}[];
|
|
45295
|
+
}>;
|
|
45296
|
+
}
|
|
45297
|
+
|
|
45279
45298
|
declare const DTOCreateBrandInput: z.ZodObject<{
|
|
45280
45299
|
persistentId: z.ZodString;
|
|
45281
45300
|
meta: z.ZodObject<{
|
|
@@ -47704,25 +47723,6 @@ declare const DTOWorkspaceIntegrationGetGitObjectsInput: z.ZodObject<{
|
|
|
47704
47723
|
}>;
|
|
47705
47724
|
type DTOWorkspaceIntegrationGetGitObjectsInput = z.infer<typeof DTOWorkspaceIntegrationGetGitObjectsInput>;
|
|
47706
47725
|
|
|
47707
|
-
declare class DesignSystemVersionsEndpoint {
|
|
47708
|
-
private readonly requestExecutor;
|
|
47709
|
-
constructor(requestExecutor: RequestExecutor);
|
|
47710
|
-
list(dsId: string): Promise<{
|
|
47711
|
-
designSystemVersions: {
|
|
47712
|
-
id: string;
|
|
47713
|
-
meta: {
|
|
47714
|
-
name: string;
|
|
47715
|
-
description?: string | undefined;
|
|
47716
|
-
};
|
|
47717
|
-
createdAt: Date;
|
|
47718
|
-
version: string;
|
|
47719
|
-
changeLog: string;
|
|
47720
|
-
designSystemId: string;
|
|
47721
|
-
isReadonly: boolean;
|
|
47722
|
-
}[];
|
|
47723
|
-
}>;
|
|
47724
|
-
}
|
|
47725
|
-
|
|
47726
47726
|
declare class DesignSystemsEndpoint {
|
|
47727
47727
|
private readonly requestExecutor;
|
|
47728
47728
|
readonly members: DesignSystemMembersEndpoint;
|
|
@@ -48148,6 +48148,188 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
48148
48148
|
resentAt?: Date | null | undefined;
|
|
48149
48149
|
}[];
|
|
48150
48150
|
}>;
|
|
48151
|
+
delete(workspaceId: string, invitationId: string): Promise<{
|
|
48152
|
+
workspace: {
|
|
48153
|
+
id: string;
|
|
48154
|
+
profile: {
|
|
48155
|
+
name: string;
|
|
48156
|
+
color: string;
|
|
48157
|
+
handle: string;
|
|
48158
|
+
avatar?: string | undefined;
|
|
48159
|
+
billingDetails?: {
|
|
48160
|
+
address?: {
|
|
48161
|
+
street1?: string | undefined;
|
|
48162
|
+
street2?: string | undefined;
|
|
48163
|
+
city?: string | undefined;
|
|
48164
|
+
postal?: string | undefined;
|
|
48165
|
+
country?: string | undefined;
|
|
48166
|
+
state?: string | undefined;
|
|
48167
|
+
} | undefined;
|
|
48168
|
+
email?: string | undefined;
|
|
48169
|
+
companyName?: string | undefined;
|
|
48170
|
+
companyId?: string | undefined;
|
|
48171
|
+
notes?: string | undefined;
|
|
48172
|
+
vat?: string | undefined;
|
|
48173
|
+
poNumber?: string | undefined;
|
|
48174
|
+
} | undefined;
|
|
48175
|
+
};
|
|
48176
|
+
subscription: {
|
|
48177
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
48178
|
+
planPriceId: string;
|
|
48179
|
+
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
48180
|
+
seats: number;
|
|
48181
|
+
seatLimit: number;
|
|
48182
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
48183
|
+
card?: {
|
|
48184
|
+
cardId?: string | null | undefined;
|
|
48185
|
+
last4?: string | null | undefined;
|
|
48186
|
+
expiryMonth?: string | null | undefined;
|
|
48187
|
+
expiryYear?: string | null | undefined;
|
|
48188
|
+
brand?: string | null | undefined;
|
|
48189
|
+
name?: string | null | undefined;
|
|
48190
|
+
} | undefined;
|
|
48191
|
+
amount?: number | null | undefined;
|
|
48192
|
+
stripeProductDescription?: string | undefined;
|
|
48193
|
+
isPricePerCreator?: boolean | undefined;
|
|
48194
|
+
isTrial?: boolean | undefined;
|
|
48195
|
+
legacyVersion?: string | undefined;
|
|
48196
|
+
stripeProductFeatures?: string[] | undefined;
|
|
48197
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
48198
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
48199
|
+
stripeCustomerId?: string | null | undefined;
|
|
48200
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
48201
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
48202
|
+
featuresSummary?: {
|
|
48203
|
+
designSystems: {
|
|
48204
|
+
max: number;
|
|
48205
|
+
errorMessage: string;
|
|
48206
|
+
errorReason: string;
|
|
48207
|
+
};
|
|
48208
|
+
designSystemSources: {
|
|
48209
|
+
max: number;
|
|
48210
|
+
errorMessage: string;
|
|
48211
|
+
errorReason: string;
|
|
48212
|
+
noImportJobsErrorMessage: string;
|
|
48213
|
+
noImportJobsErrorReason: string;
|
|
48214
|
+
};
|
|
48215
|
+
designSystemVersions: {
|
|
48216
|
+
max: number;
|
|
48217
|
+
errorMessage: string;
|
|
48218
|
+
errorReason: string;
|
|
48219
|
+
};
|
|
48220
|
+
themes: {
|
|
48221
|
+
max: number;
|
|
48222
|
+
errorMessage: string;
|
|
48223
|
+
errorReason: string;
|
|
48224
|
+
};
|
|
48225
|
+
brands: {
|
|
48226
|
+
max: number;
|
|
48227
|
+
errorMessage: string;
|
|
48228
|
+
errorReason: string;
|
|
48229
|
+
};
|
|
48230
|
+
codegenSchedules: {
|
|
48231
|
+
max: number;
|
|
48232
|
+
errorMessage: string;
|
|
48233
|
+
errorReason: string;
|
|
48234
|
+
};
|
|
48235
|
+
publicDocumentation: {
|
|
48236
|
+
errorMessage: string;
|
|
48237
|
+
errorReason: string;
|
|
48238
|
+
enabled: boolean;
|
|
48239
|
+
};
|
|
48240
|
+
customDocumentationUrl: {
|
|
48241
|
+
errorMessage: string;
|
|
48242
|
+
errorReason: string;
|
|
48243
|
+
enabled: boolean;
|
|
48244
|
+
};
|
|
48245
|
+
customDocumentationViewButton: {
|
|
48246
|
+
errorMessage: string;
|
|
48247
|
+
errorReason: string;
|
|
48248
|
+
enabled: boolean;
|
|
48249
|
+
};
|
|
48250
|
+
designSystemSourceAutoImport: {
|
|
48251
|
+
errorMessage: string;
|
|
48252
|
+
errorReason: string;
|
|
48253
|
+
enabled: boolean;
|
|
48254
|
+
};
|
|
48255
|
+
designSystemSlug: {
|
|
48256
|
+
errorMessage: string;
|
|
48257
|
+
errorReason: string;
|
|
48258
|
+
enabled: boolean;
|
|
48259
|
+
};
|
|
48260
|
+
ipWhitelisting: {
|
|
48261
|
+
errorMessage: string;
|
|
48262
|
+
errorReason: string;
|
|
48263
|
+
enabled: boolean;
|
|
48264
|
+
};
|
|
48265
|
+
npmRegistry: {
|
|
48266
|
+
errorMessage: string;
|
|
48267
|
+
errorReason: string;
|
|
48268
|
+
enabled: boolean;
|
|
48269
|
+
};
|
|
48270
|
+
sso: {
|
|
48271
|
+
errorMessage: string;
|
|
48272
|
+
errorReason: string;
|
|
48273
|
+
enabled: boolean;
|
|
48274
|
+
};
|
|
48275
|
+
workspacePaidSeats: {
|
|
48276
|
+
max: number;
|
|
48277
|
+
errorMessage: string;
|
|
48278
|
+
errorReason: string;
|
|
48279
|
+
};
|
|
48280
|
+
workspaceViewers: {
|
|
48281
|
+
max: number;
|
|
48282
|
+
errorMessage: string;
|
|
48283
|
+
errorReason: string;
|
|
48284
|
+
};
|
|
48285
|
+
customDocumentationExporter: {
|
|
48286
|
+
errorMessage: string;
|
|
48287
|
+
errorReason: string;
|
|
48288
|
+
enabled: boolean;
|
|
48289
|
+
};
|
|
48290
|
+
protectedPages: {
|
|
48291
|
+
errorMessage: string;
|
|
48292
|
+
errorReason: string;
|
|
48293
|
+
enabled: boolean;
|
|
48294
|
+
};
|
|
48295
|
+
approvals: {
|
|
48296
|
+
errorMessage: string;
|
|
48297
|
+
errorReason: string;
|
|
48298
|
+
enabled: boolean;
|
|
48299
|
+
};
|
|
48300
|
+
selectivePublishing: {
|
|
48301
|
+
errorMessage: string;
|
|
48302
|
+
errorReason: string;
|
|
48303
|
+
enabled: boolean;
|
|
48304
|
+
};
|
|
48305
|
+
designSystemAccessModes: {
|
|
48306
|
+
errorMessage: string;
|
|
48307
|
+
errorReason: string;
|
|
48308
|
+
enabled: boolean;
|
|
48309
|
+
};
|
|
48310
|
+
} | undefined;
|
|
48311
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
48312
|
+
currentPeriodStart?: string | undefined;
|
|
48313
|
+
currentPeriodEnd?: string | undefined;
|
|
48314
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
48315
|
+
cancelAt?: string | null | undefined;
|
|
48316
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
48317
|
+
daysUntilDue?: number | undefined;
|
|
48318
|
+
};
|
|
48319
|
+
npmRegistry?: {
|
|
48320
|
+
enabledScopes: string[];
|
|
48321
|
+
bypassProxy: boolean;
|
|
48322
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
48323
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
48324
|
+
registryUrl: string;
|
|
48325
|
+
proxyUrl: string;
|
|
48326
|
+
customRegistryUrl?: string | undefined;
|
|
48327
|
+
accessToken?: string | undefined;
|
|
48328
|
+
username?: string | undefined;
|
|
48329
|
+
password?: string | undefined;
|
|
48330
|
+
} | undefined;
|
|
48331
|
+
};
|
|
48332
|
+
}>;
|
|
48151
48333
|
}
|
|
48152
48334
|
|
|
48153
48335
|
declare class WorkspaceMembersEndpoint {
|
|
@@ -51461,4 +51643,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
51461
51643
|
|
|
51462
51644
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
51463
51645
|
|
|
51464
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemMembersEndpoint, DesignSystemsEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, SupernovaApiClient, UsersEndpoint, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
51646
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemMembersEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, SupernovaApiClient, UsersEndpoint, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
package/dist/index.d.ts
CHANGED
|
@@ -45276,6 +45276,25 @@ declare class DesignSystemMembersEndpoint {
|
|
|
45276
45276
|
}>;
|
|
45277
45277
|
}
|
|
45278
45278
|
|
|
45279
|
+
declare class DesignSystemVersionsEndpoint {
|
|
45280
|
+
private readonly requestExecutor;
|
|
45281
|
+
constructor(requestExecutor: RequestExecutor);
|
|
45282
|
+
list(dsId: string): Promise<{
|
|
45283
|
+
designSystemVersions: {
|
|
45284
|
+
id: string;
|
|
45285
|
+
meta: {
|
|
45286
|
+
name: string;
|
|
45287
|
+
description?: string | undefined;
|
|
45288
|
+
};
|
|
45289
|
+
createdAt: Date;
|
|
45290
|
+
version: string;
|
|
45291
|
+
changeLog: string;
|
|
45292
|
+
designSystemId: string;
|
|
45293
|
+
isReadonly: boolean;
|
|
45294
|
+
}[];
|
|
45295
|
+
}>;
|
|
45296
|
+
}
|
|
45297
|
+
|
|
45279
45298
|
declare const DTOCreateBrandInput: z.ZodObject<{
|
|
45280
45299
|
persistentId: z.ZodString;
|
|
45281
45300
|
meta: z.ZodObject<{
|
|
@@ -47704,25 +47723,6 @@ declare const DTOWorkspaceIntegrationGetGitObjectsInput: z.ZodObject<{
|
|
|
47704
47723
|
}>;
|
|
47705
47724
|
type DTOWorkspaceIntegrationGetGitObjectsInput = z.infer<typeof DTOWorkspaceIntegrationGetGitObjectsInput>;
|
|
47706
47725
|
|
|
47707
|
-
declare class DesignSystemVersionsEndpoint {
|
|
47708
|
-
private readonly requestExecutor;
|
|
47709
|
-
constructor(requestExecutor: RequestExecutor);
|
|
47710
|
-
list(dsId: string): Promise<{
|
|
47711
|
-
designSystemVersions: {
|
|
47712
|
-
id: string;
|
|
47713
|
-
meta: {
|
|
47714
|
-
name: string;
|
|
47715
|
-
description?: string | undefined;
|
|
47716
|
-
};
|
|
47717
|
-
createdAt: Date;
|
|
47718
|
-
version: string;
|
|
47719
|
-
changeLog: string;
|
|
47720
|
-
designSystemId: string;
|
|
47721
|
-
isReadonly: boolean;
|
|
47722
|
-
}[];
|
|
47723
|
-
}>;
|
|
47724
|
-
}
|
|
47725
|
-
|
|
47726
47726
|
declare class DesignSystemsEndpoint {
|
|
47727
47727
|
private readonly requestExecutor;
|
|
47728
47728
|
readonly members: DesignSystemMembersEndpoint;
|
|
@@ -48148,6 +48148,188 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
48148
48148
|
resentAt?: Date | null | undefined;
|
|
48149
48149
|
}[];
|
|
48150
48150
|
}>;
|
|
48151
|
+
delete(workspaceId: string, invitationId: string): Promise<{
|
|
48152
|
+
workspace: {
|
|
48153
|
+
id: string;
|
|
48154
|
+
profile: {
|
|
48155
|
+
name: string;
|
|
48156
|
+
color: string;
|
|
48157
|
+
handle: string;
|
|
48158
|
+
avatar?: string | undefined;
|
|
48159
|
+
billingDetails?: {
|
|
48160
|
+
address?: {
|
|
48161
|
+
street1?: string | undefined;
|
|
48162
|
+
street2?: string | undefined;
|
|
48163
|
+
city?: string | undefined;
|
|
48164
|
+
postal?: string | undefined;
|
|
48165
|
+
country?: string | undefined;
|
|
48166
|
+
state?: string | undefined;
|
|
48167
|
+
} | undefined;
|
|
48168
|
+
email?: string | undefined;
|
|
48169
|
+
companyName?: string | undefined;
|
|
48170
|
+
companyId?: string | undefined;
|
|
48171
|
+
notes?: string | undefined;
|
|
48172
|
+
vat?: string | undefined;
|
|
48173
|
+
poNumber?: string | undefined;
|
|
48174
|
+
} | undefined;
|
|
48175
|
+
};
|
|
48176
|
+
subscription: {
|
|
48177
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
48178
|
+
planPriceId: string;
|
|
48179
|
+
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
48180
|
+
seats: number;
|
|
48181
|
+
seatLimit: number;
|
|
48182
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
48183
|
+
card?: {
|
|
48184
|
+
cardId?: string | null | undefined;
|
|
48185
|
+
last4?: string | null | undefined;
|
|
48186
|
+
expiryMonth?: string | null | undefined;
|
|
48187
|
+
expiryYear?: string | null | undefined;
|
|
48188
|
+
brand?: string | null | undefined;
|
|
48189
|
+
name?: string | null | undefined;
|
|
48190
|
+
} | undefined;
|
|
48191
|
+
amount?: number | null | undefined;
|
|
48192
|
+
stripeProductDescription?: string | undefined;
|
|
48193
|
+
isPricePerCreator?: boolean | undefined;
|
|
48194
|
+
isTrial?: boolean | undefined;
|
|
48195
|
+
legacyVersion?: string | undefined;
|
|
48196
|
+
stripeProductFeatures?: string[] | undefined;
|
|
48197
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
48198
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
48199
|
+
stripeCustomerId?: string | null | undefined;
|
|
48200
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
48201
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
48202
|
+
featuresSummary?: {
|
|
48203
|
+
designSystems: {
|
|
48204
|
+
max: number;
|
|
48205
|
+
errorMessage: string;
|
|
48206
|
+
errorReason: string;
|
|
48207
|
+
};
|
|
48208
|
+
designSystemSources: {
|
|
48209
|
+
max: number;
|
|
48210
|
+
errorMessage: string;
|
|
48211
|
+
errorReason: string;
|
|
48212
|
+
noImportJobsErrorMessage: string;
|
|
48213
|
+
noImportJobsErrorReason: string;
|
|
48214
|
+
};
|
|
48215
|
+
designSystemVersions: {
|
|
48216
|
+
max: number;
|
|
48217
|
+
errorMessage: string;
|
|
48218
|
+
errorReason: string;
|
|
48219
|
+
};
|
|
48220
|
+
themes: {
|
|
48221
|
+
max: number;
|
|
48222
|
+
errorMessage: string;
|
|
48223
|
+
errorReason: string;
|
|
48224
|
+
};
|
|
48225
|
+
brands: {
|
|
48226
|
+
max: number;
|
|
48227
|
+
errorMessage: string;
|
|
48228
|
+
errorReason: string;
|
|
48229
|
+
};
|
|
48230
|
+
codegenSchedules: {
|
|
48231
|
+
max: number;
|
|
48232
|
+
errorMessage: string;
|
|
48233
|
+
errorReason: string;
|
|
48234
|
+
};
|
|
48235
|
+
publicDocumentation: {
|
|
48236
|
+
errorMessage: string;
|
|
48237
|
+
errorReason: string;
|
|
48238
|
+
enabled: boolean;
|
|
48239
|
+
};
|
|
48240
|
+
customDocumentationUrl: {
|
|
48241
|
+
errorMessage: string;
|
|
48242
|
+
errorReason: string;
|
|
48243
|
+
enabled: boolean;
|
|
48244
|
+
};
|
|
48245
|
+
customDocumentationViewButton: {
|
|
48246
|
+
errorMessage: string;
|
|
48247
|
+
errorReason: string;
|
|
48248
|
+
enabled: boolean;
|
|
48249
|
+
};
|
|
48250
|
+
designSystemSourceAutoImport: {
|
|
48251
|
+
errorMessage: string;
|
|
48252
|
+
errorReason: string;
|
|
48253
|
+
enabled: boolean;
|
|
48254
|
+
};
|
|
48255
|
+
designSystemSlug: {
|
|
48256
|
+
errorMessage: string;
|
|
48257
|
+
errorReason: string;
|
|
48258
|
+
enabled: boolean;
|
|
48259
|
+
};
|
|
48260
|
+
ipWhitelisting: {
|
|
48261
|
+
errorMessage: string;
|
|
48262
|
+
errorReason: string;
|
|
48263
|
+
enabled: boolean;
|
|
48264
|
+
};
|
|
48265
|
+
npmRegistry: {
|
|
48266
|
+
errorMessage: string;
|
|
48267
|
+
errorReason: string;
|
|
48268
|
+
enabled: boolean;
|
|
48269
|
+
};
|
|
48270
|
+
sso: {
|
|
48271
|
+
errorMessage: string;
|
|
48272
|
+
errorReason: string;
|
|
48273
|
+
enabled: boolean;
|
|
48274
|
+
};
|
|
48275
|
+
workspacePaidSeats: {
|
|
48276
|
+
max: number;
|
|
48277
|
+
errorMessage: string;
|
|
48278
|
+
errorReason: string;
|
|
48279
|
+
};
|
|
48280
|
+
workspaceViewers: {
|
|
48281
|
+
max: number;
|
|
48282
|
+
errorMessage: string;
|
|
48283
|
+
errorReason: string;
|
|
48284
|
+
};
|
|
48285
|
+
customDocumentationExporter: {
|
|
48286
|
+
errorMessage: string;
|
|
48287
|
+
errorReason: string;
|
|
48288
|
+
enabled: boolean;
|
|
48289
|
+
};
|
|
48290
|
+
protectedPages: {
|
|
48291
|
+
errorMessage: string;
|
|
48292
|
+
errorReason: string;
|
|
48293
|
+
enabled: boolean;
|
|
48294
|
+
};
|
|
48295
|
+
approvals: {
|
|
48296
|
+
errorMessage: string;
|
|
48297
|
+
errorReason: string;
|
|
48298
|
+
enabled: boolean;
|
|
48299
|
+
};
|
|
48300
|
+
selectivePublishing: {
|
|
48301
|
+
errorMessage: string;
|
|
48302
|
+
errorReason: string;
|
|
48303
|
+
enabled: boolean;
|
|
48304
|
+
};
|
|
48305
|
+
designSystemAccessModes: {
|
|
48306
|
+
errorMessage: string;
|
|
48307
|
+
errorReason: string;
|
|
48308
|
+
enabled: boolean;
|
|
48309
|
+
};
|
|
48310
|
+
} | undefined;
|
|
48311
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
48312
|
+
currentPeriodStart?: string | undefined;
|
|
48313
|
+
currentPeriodEnd?: string | undefined;
|
|
48314
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
48315
|
+
cancelAt?: string | null | undefined;
|
|
48316
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
48317
|
+
daysUntilDue?: number | undefined;
|
|
48318
|
+
};
|
|
48319
|
+
npmRegistry?: {
|
|
48320
|
+
enabledScopes: string[];
|
|
48321
|
+
bypassProxy: boolean;
|
|
48322
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
48323
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
48324
|
+
registryUrl: string;
|
|
48325
|
+
proxyUrl: string;
|
|
48326
|
+
customRegistryUrl?: string | undefined;
|
|
48327
|
+
accessToken?: string | undefined;
|
|
48328
|
+
username?: string | undefined;
|
|
48329
|
+
password?: string | undefined;
|
|
48330
|
+
} | undefined;
|
|
48331
|
+
};
|
|
48332
|
+
}>;
|
|
48151
48333
|
}
|
|
48152
48334
|
|
|
48153
48335
|
declare class WorkspaceMembersEndpoint {
|
|
@@ -51461,4 +51643,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
51461
51643
|
|
|
51462
51644
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
51463
51645
|
|
|
51464
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemMembersEndpoint, DesignSystemsEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, SupernovaApiClient, UsersEndpoint, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
51646
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemMembersEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, SupernovaApiClient, UsersEndpoint, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|