@supernova-studio/client 0.58.7 → 0.58.8
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 +253 -1
- package/dist/index.d.ts +253 -1
- package/dist/index.js +38 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +686 -649
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/endpoints/design-system/versions/documentation.ts +23 -0
- package/src/api/endpoints/design-system/versions/elements-action.ts +100 -0
- package/src/api/endpoints/design-system/versions/index.ts +2 -0
- package/src/api/endpoints/design-system/versions/versions.ts +3 -0
- package/src/api/endpoints/workspaces/workspaces.ts +8 -0
- package/src/api/payloads/workspaces/index.ts +1 -0
- package/src/api/payloads/workspaces/transfer-ownership.ts +7 -0
package/dist/index.d.mts
CHANGED
|
@@ -83709,6 +83709,15 @@ declare const DTOUserProfileUpdatePayload: zod.ZodObject<Omit<{
|
|
|
83709
83709
|
} | undefined;
|
|
83710
83710
|
}>;
|
|
83711
83711
|
|
|
83712
|
+
declare const DTOTransferOwnershipPayload: z.ZodObject<{
|
|
83713
|
+
newOwnerId: z.ZodString;
|
|
83714
|
+
}, "strip", z.ZodTypeAny, {
|
|
83715
|
+
newOwnerId: string;
|
|
83716
|
+
}, {
|
|
83717
|
+
newOwnerId: string;
|
|
83718
|
+
}>;
|
|
83719
|
+
type DTOTransferOwnershipPayload = z.infer<typeof DTOTransferOwnershipPayload>;
|
|
83720
|
+
|
|
83712
83721
|
declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
|
|
83713
83722
|
valid: boolean;
|
|
83714
83723
|
keys: string[];
|
|
@@ -86642,6 +86651,61 @@ declare class TokensEndpoint {
|
|
|
86642
86651
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
86643
86652
|
}
|
|
86644
86653
|
|
|
86654
|
+
declare class DocumentationEndpoint {
|
|
86655
|
+
private readonly requestExecutor;
|
|
86656
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86657
|
+
getStructure(designSystemId: string, versionId: string): Promise<{
|
|
86658
|
+
items: ({
|
|
86659
|
+
type: "Group";
|
|
86660
|
+
id: string;
|
|
86661
|
+
persistentId: string;
|
|
86662
|
+
designSystemVersionId: string;
|
|
86663
|
+
createdAt: Date;
|
|
86664
|
+
updatedAt: Date;
|
|
86665
|
+
shortPersistentId: string;
|
|
86666
|
+
title: string;
|
|
86667
|
+
isRoot: boolean;
|
|
86668
|
+
childrenIds: string[];
|
|
86669
|
+
groupBehavior: string;
|
|
86670
|
+
} | {
|
|
86671
|
+
path: string;
|
|
86672
|
+
type: "Page";
|
|
86673
|
+
id: string;
|
|
86674
|
+
persistentId: string;
|
|
86675
|
+
designSystemVersionId: string;
|
|
86676
|
+
createdAt: Date;
|
|
86677
|
+
updatedAt: Date;
|
|
86678
|
+
shortPersistentId: string;
|
|
86679
|
+
title: string;
|
|
86680
|
+
})[];
|
|
86681
|
+
}>;
|
|
86682
|
+
getDocStructure(dsId: string, vId: string): Promise<{
|
|
86683
|
+
items: ({
|
|
86684
|
+
type: "Group";
|
|
86685
|
+
id: string;
|
|
86686
|
+
persistentId: string;
|
|
86687
|
+
designSystemVersionId: string;
|
|
86688
|
+
createdAt: Date;
|
|
86689
|
+
updatedAt: Date;
|
|
86690
|
+
shortPersistentId: string;
|
|
86691
|
+
title: string;
|
|
86692
|
+
isRoot: boolean;
|
|
86693
|
+
childrenIds: string[];
|
|
86694
|
+
groupBehavior: string;
|
|
86695
|
+
} | {
|
|
86696
|
+
path: string;
|
|
86697
|
+
type: "Page";
|
|
86698
|
+
id: string;
|
|
86699
|
+
persistentId: string;
|
|
86700
|
+
designSystemVersionId: string;
|
|
86701
|
+
createdAt: Date;
|
|
86702
|
+
updatedAt: Date;
|
|
86703
|
+
shortPersistentId: string;
|
|
86704
|
+
title: string;
|
|
86705
|
+
})[];
|
|
86706
|
+
}>;
|
|
86707
|
+
}
|
|
86708
|
+
|
|
86645
86709
|
declare class DesignSystemVersionsEndpoint {
|
|
86646
86710
|
private readonly requestExecutor;
|
|
86647
86711
|
readonly themes: ThemesEndpoint;
|
|
@@ -86655,6 +86719,7 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
86655
86719
|
readonly elementPropertyValues: ElementPropertyValuesEndpoint;
|
|
86656
86720
|
readonly elementsActions: ElementsActionsEndpoint;
|
|
86657
86721
|
readonly designSystemComponents: DesignSystemComponentEndpoint;
|
|
86722
|
+
readonly documentation: DocumentationEndpoint;
|
|
86658
86723
|
constructor(requestExecutor: RequestExecutor);
|
|
86659
86724
|
list(dsId: string): Promise<{
|
|
86660
86725
|
designSystemVersions: {
|
|
@@ -88101,6 +88166,193 @@ declare class WorkspacesEndpoint {
|
|
|
88101
88166
|
}>;
|
|
88102
88167
|
delete(workspaceId: string): Promise<any>;
|
|
88103
88168
|
subscription(workspaceId: string): Promise<any>;
|
|
88169
|
+
transferOwnership(workspaceId: string, body: DTOTransferOwnershipPayload): Promise<{
|
|
88170
|
+
workspace: {
|
|
88171
|
+
id: string;
|
|
88172
|
+
profile: {
|
|
88173
|
+
name: string;
|
|
88174
|
+
color: string;
|
|
88175
|
+
handle: string;
|
|
88176
|
+
avatar?: string | undefined;
|
|
88177
|
+
billingDetails?: {
|
|
88178
|
+
address?: {
|
|
88179
|
+
street1?: string | undefined;
|
|
88180
|
+
street2?: string | undefined;
|
|
88181
|
+
city?: string | undefined;
|
|
88182
|
+
postal?: string | undefined;
|
|
88183
|
+
country?: string | undefined;
|
|
88184
|
+
state?: string | undefined;
|
|
88185
|
+
} | undefined;
|
|
88186
|
+
email?: string | undefined;
|
|
88187
|
+
companyName?: string | undefined;
|
|
88188
|
+
companyId?: string | undefined;
|
|
88189
|
+
notes?: string | undefined;
|
|
88190
|
+
vat?: string | undefined;
|
|
88191
|
+
poNumber?: string | undefined;
|
|
88192
|
+
} | undefined;
|
|
88193
|
+
};
|
|
88194
|
+
subscription: {
|
|
88195
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
88196
|
+
planPriceId: string;
|
|
88197
|
+
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
88198
|
+
seats: number;
|
|
88199
|
+
seatLimit: number;
|
|
88200
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
88201
|
+
card?: {
|
|
88202
|
+
cardId?: string | null | undefined;
|
|
88203
|
+
last4?: string | null | undefined;
|
|
88204
|
+
expiryMonth?: string | null | undefined;
|
|
88205
|
+
expiryYear?: string | null | undefined;
|
|
88206
|
+
brand?: string | null | undefined;
|
|
88207
|
+
name?: string | null | undefined;
|
|
88208
|
+
} | undefined;
|
|
88209
|
+
amount?: number | null | undefined;
|
|
88210
|
+
stripeProductDescription?: string | undefined;
|
|
88211
|
+
isPricePerCreator?: boolean | undefined;
|
|
88212
|
+
isTrial?: boolean | undefined;
|
|
88213
|
+
legacyVersion?: string | undefined;
|
|
88214
|
+
stripeProductFeatures?: string[] | undefined;
|
|
88215
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
88216
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
88217
|
+
stripeCustomerId?: string | null | undefined;
|
|
88218
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
88219
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
88220
|
+
featuresSummary?: {
|
|
88221
|
+
designSystems: {
|
|
88222
|
+
max: number;
|
|
88223
|
+
errorMessage: string;
|
|
88224
|
+
errorReason: string;
|
|
88225
|
+
};
|
|
88226
|
+
designSystemSources: {
|
|
88227
|
+
max: number;
|
|
88228
|
+
errorMessage: string;
|
|
88229
|
+
errorReason: string;
|
|
88230
|
+
noImportJobsErrorMessage: string;
|
|
88231
|
+
noImportJobsErrorReason: string;
|
|
88232
|
+
};
|
|
88233
|
+
designSystemVersions: {
|
|
88234
|
+
max: number;
|
|
88235
|
+
errorMessage: string;
|
|
88236
|
+
errorReason: string;
|
|
88237
|
+
};
|
|
88238
|
+
themes: {
|
|
88239
|
+
max: number;
|
|
88240
|
+
errorMessage: string;
|
|
88241
|
+
errorReason: string;
|
|
88242
|
+
};
|
|
88243
|
+
brands: {
|
|
88244
|
+
max: number;
|
|
88245
|
+
errorMessage: string;
|
|
88246
|
+
errorReason: string;
|
|
88247
|
+
};
|
|
88248
|
+
codegenSchedules: {
|
|
88249
|
+
max: number;
|
|
88250
|
+
errorMessage: string;
|
|
88251
|
+
errorReason: string;
|
|
88252
|
+
};
|
|
88253
|
+
publicDocumentation: {
|
|
88254
|
+
errorMessage: string;
|
|
88255
|
+
errorReason: string;
|
|
88256
|
+
enabled: boolean;
|
|
88257
|
+
};
|
|
88258
|
+
customDocumentationUrl: {
|
|
88259
|
+
errorMessage: string;
|
|
88260
|
+
errorReason: string;
|
|
88261
|
+
enabled: boolean;
|
|
88262
|
+
};
|
|
88263
|
+
customDocumentationViewButton: {
|
|
88264
|
+
errorMessage: string;
|
|
88265
|
+
errorReason: string;
|
|
88266
|
+
enabled: boolean;
|
|
88267
|
+
};
|
|
88268
|
+
designSystemSourceAutoImport: {
|
|
88269
|
+
errorMessage: string;
|
|
88270
|
+
errorReason: string;
|
|
88271
|
+
enabled: boolean;
|
|
88272
|
+
};
|
|
88273
|
+
designSystemSlug: {
|
|
88274
|
+
errorMessage: string;
|
|
88275
|
+
errorReason: string;
|
|
88276
|
+
enabled: boolean;
|
|
88277
|
+
};
|
|
88278
|
+
ipWhitelisting: {
|
|
88279
|
+
errorMessage: string;
|
|
88280
|
+
errorReason: string;
|
|
88281
|
+
enabled: boolean;
|
|
88282
|
+
};
|
|
88283
|
+
npmRegistry: {
|
|
88284
|
+
errorMessage: string;
|
|
88285
|
+
errorReason: string;
|
|
88286
|
+
enabled: boolean;
|
|
88287
|
+
};
|
|
88288
|
+
sso: {
|
|
88289
|
+
errorMessage: string;
|
|
88290
|
+
errorReason: string;
|
|
88291
|
+
enabled: boolean;
|
|
88292
|
+
};
|
|
88293
|
+
workspacePaidSeats: {
|
|
88294
|
+
max: number;
|
|
88295
|
+
errorMessage: string;
|
|
88296
|
+
errorReason: string;
|
|
88297
|
+
};
|
|
88298
|
+
workspaceViewers: {
|
|
88299
|
+
max: number;
|
|
88300
|
+
errorMessage: string;
|
|
88301
|
+
errorReason: string;
|
|
88302
|
+
};
|
|
88303
|
+
customDocumentationExporter: {
|
|
88304
|
+
errorMessage: string;
|
|
88305
|
+
errorReason: string;
|
|
88306
|
+
enabled: boolean;
|
|
88307
|
+
};
|
|
88308
|
+
protectedPages: {
|
|
88309
|
+
errorMessage: string;
|
|
88310
|
+
errorReason: string;
|
|
88311
|
+
enabled: boolean;
|
|
88312
|
+
};
|
|
88313
|
+
approvals: {
|
|
88314
|
+
errorMessage: string;
|
|
88315
|
+
errorReason: string;
|
|
88316
|
+
enabled: boolean;
|
|
88317
|
+
};
|
|
88318
|
+
selectivePublishing: {
|
|
88319
|
+
errorMessage: string;
|
|
88320
|
+
errorReason: string;
|
|
88321
|
+
enabled: boolean;
|
|
88322
|
+
};
|
|
88323
|
+
designSystemAccessModes: {
|
|
88324
|
+
errorMessage: string;
|
|
88325
|
+
errorReason: string;
|
|
88326
|
+
enabled: boolean;
|
|
88327
|
+
};
|
|
88328
|
+
designSystemRoles: {
|
|
88329
|
+
errorMessage: string;
|
|
88330
|
+
errorReason: string;
|
|
88331
|
+
enabled: boolean;
|
|
88332
|
+
};
|
|
88333
|
+
} | undefined;
|
|
88334
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
88335
|
+
currentPeriodStart?: string | undefined;
|
|
88336
|
+
currentPeriodEnd?: string | undefined;
|
|
88337
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
88338
|
+
cancelAt?: string | null | undefined;
|
|
88339
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
88340
|
+
daysUntilDue?: number | undefined;
|
|
88341
|
+
};
|
|
88342
|
+
npmRegistry?: {
|
|
88343
|
+
enabledScopes: string[];
|
|
88344
|
+
bypassProxy: boolean;
|
|
88345
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
88346
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
88347
|
+
registryUrl: string;
|
|
88348
|
+
proxyUrl: string;
|
|
88349
|
+
customRegistryUrl?: string | undefined;
|
|
88350
|
+
accessToken?: string | undefined;
|
|
88351
|
+
username?: string | undefined;
|
|
88352
|
+
password?: string | undefined;
|
|
88353
|
+
} | undefined;
|
|
88354
|
+
};
|
|
88355
|
+
}>;
|
|
88104
88356
|
}
|
|
88105
88357
|
|
|
88106
88358
|
declare class UsersEndpoint {
|
|
@@ -90942,4 +91194,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90942
91194
|
|
|
90943
91195
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90944
91196
|
|
|
90945
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionsEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
91197
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionsEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
package/dist/index.d.ts
CHANGED
|
@@ -83709,6 +83709,15 @@ declare const DTOUserProfileUpdatePayload: zod.ZodObject<Omit<{
|
|
|
83709
83709
|
} | undefined;
|
|
83710
83710
|
}>;
|
|
83711
83711
|
|
|
83712
|
+
declare const DTOTransferOwnershipPayload: z.ZodObject<{
|
|
83713
|
+
newOwnerId: z.ZodString;
|
|
83714
|
+
}, "strip", z.ZodTypeAny, {
|
|
83715
|
+
newOwnerId: string;
|
|
83716
|
+
}, {
|
|
83717
|
+
newOwnerId: string;
|
|
83718
|
+
}>;
|
|
83719
|
+
type DTOTransferOwnershipPayload = z.infer<typeof DTOTransferOwnershipPayload>;
|
|
83720
|
+
|
|
83712
83721
|
declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
|
|
83713
83722
|
valid: boolean;
|
|
83714
83723
|
keys: string[];
|
|
@@ -86642,6 +86651,61 @@ declare class TokensEndpoint {
|
|
|
86642
86651
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
86643
86652
|
}
|
|
86644
86653
|
|
|
86654
|
+
declare class DocumentationEndpoint {
|
|
86655
|
+
private readonly requestExecutor;
|
|
86656
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86657
|
+
getStructure(designSystemId: string, versionId: string): Promise<{
|
|
86658
|
+
items: ({
|
|
86659
|
+
type: "Group";
|
|
86660
|
+
id: string;
|
|
86661
|
+
persistentId: string;
|
|
86662
|
+
designSystemVersionId: string;
|
|
86663
|
+
createdAt: Date;
|
|
86664
|
+
updatedAt: Date;
|
|
86665
|
+
shortPersistentId: string;
|
|
86666
|
+
title: string;
|
|
86667
|
+
isRoot: boolean;
|
|
86668
|
+
childrenIds: string[];
|
|
86669
|
+
groupBehavior: string;
|
|
86670
|
+
} | {
|
|
86671
|
+
path: string;
|
|
86672
|
+
type: "Page";
|
|
86673
|
+
id: string;
|
|
86674
|
+
persistentId: string;
|
|
86675
|
+
designSystemVersionId: string;
|
|
86676
|
+
createdAt: Date;
|
|
86677
|
+
updatedAt: Date;
|
|
86678
|
+
shortPersistentId: string;
|
|
86679
|
+
title: string;
|
|
86680
|
+
})[];
|
|
86681
|
+
}>;
|
|
86682
|
+
getDocStructure(dsId: string, vId: string): Promise<{
|
|
86683
|
+
items: ({
|
|
86684
|
+
type: "Group";
|
|
86685
|
+
id: string;
|
|
86686
|
+
persistentId: string;
|
|
86687
|
+
designSystemVersionId: string;
|
|
86688
|
+
createdAt: Date;
|
|
86689
|
+
updatedAt: Date;
|
|
86690
|
+
shortPersistentId: string;
|
|
86691
|
+
title: string;
|
|
86692
|
+
isRoot: boolean;
|
|
86693
|
+
childrenIds: string[];
|
|
86694
|
+
groupBehavior: string;
|
|
86695
|
+
} | {
|
|
86696
|
+
path: string;
|
|
86697
|
+
type: "Page";
|
|
86698
|
+
id: string;
|
|
86699
|
+
persistentId: string;
|
|
86700
|
+
designSystemVersionId: string;
|
|
86701
|
+
createdAt: Date;
|
|
86702
|
+
updatedAt: Date;
|
|
86703
|
+
shortPersistentId: string;
|
|
86704
|
+
title: string;
|
|
86705
|
+
})[];
|
|
86706
|
+
}>;
|
|
86707
|
+
}
|
|
86708
|
+
|
|
86645
86709
|
declare class DesignSystemVersionsEndpoint {
|
|
86646
86710
|
private readonly requestExecutor;
|
|
86647
86711
|
readonly themes: ThemesEndpoint;
|
|
@@ -86655,6 +86719,7 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
86655
86719
|
readonly elementPropertyValues: ElementPropertyValuesEndpoint;
|
|
86656
86720
|
readonly elementsActions: ElementsActionsEndpoint;
|
|
86657
86721
|
readonly designSystemComponents: DesignSystemComponentEndpoint;
|
|
86722
|
+
readonly documentation: DocumentationEndpoint;
|
|
86658
86723
|
constructor(requestExecutor: RequestExecutor);
|
|
86659
86724
|
list(dsId: string): Promise<{
|
|
86660
86725
|
designSystemVersions: {
|
|
@@ -88101,6 +88166,193 @@ declare class WorkspacesEndpoint {
|
|
|
88101
88166
|
}>;
|
|
88102
88167
|
delete(workspaceId: string): Promise<any>;
|
|
88103
88168
|
subscription(workspaceId: string): Promise<any>;
|
|
88169
|
+
transferOwnership(workspaceId: string, body: DTOTransferOwnershipPayload): Promise<{
|
|
88170
|
+
workspace: {
|
|
88171
|
+
id: string;
|
|
88172
|
+
profile: {
|
|
88173
|
+
name: string;
|
|
88174
|
+
color: string;
|
|
88175
|
+
handle: string;
|
|
88176
|
+
avatar?: string | undefined;
|
|
88177
|
+
billingDetails?: {
|
|
88178
|
+
address?: {
|
|
88179
|
+
street1?: string | undefined;
|
|
88180
|
+
street2?: string | undefined;
|
|
88181
|
+
city?: string | undefined;
|
|
88182
|
+
postal?: string | undefined;
|
|
88183
|
+
country?: string | undefined;
|
|
88184
|
+
state?: string | undefined;
|
|
88185
|
+
} | undefined;
|
|
88186
|
+
email?: string | undefined;
|
|
88187
|
+
companyName?: string | undefined;
|
|
88188
|
+
companyId?: string | undefined;
|
|
88189
|
+
notes?: string | undefined;
|
|
88190
|
+
vat?: string | undefined;
|
|
88191
|
+
poNumber?: string | undefined;
|
|
88192
|
+
} | undefined;
|
|
88193
|
+
};
|
|
88194
|
+
subscription: {
|
|
88195
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
88196
|
+
planPriceId: string;
|
|
88197
|
+
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
88198
|
+
seats: number;
|
|
88199
|
+
seatLimit: number;
|
|
88200
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
88201
|
+
card?: {
|
|
88202
|
+
cardId?: string | null | undefined;
|
|
88203
|
+
last4?: string | null | undefined;
|
|
88204
|
+
expiryMonth?: string | null | undefined;
|
|
88205
|
+
expiryYear?: string | null | undefined;
|
|
88206
|
+
brand?: string | null | undefined;
|
|
88207
|
+
name?: string | null | undefined;
|
|
88208
|
+
} | undefined;
|
|
88209
|
+
amount?: number | null | undefined;
|
|
88210
|
+
stripeProductDescription?: string | undefined;
|
|
88211
|
+
isPricePerCreator?: boolean | undefined;
|
|
88212
|
+
isTrial?: boolean | undefined;
|
|
88213
|
+
legacyVersion?: string | undefined;
|
|
88214
|
+
stripeProductFeatures?: string[] | undefined;
|
|
88215
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
88216
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
88217
|
+
stripeCustomerId?: string | null | undefined;
|
|
88218
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
88219
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
88220
|
+
featuresSummary?: {
|
|
88221
|
+
designSystems: {
|
|
88222
|
+
max: number;
|
|
88223
|
+
errorMessage: string;
|
|
88224
|
+
errorReason: string;
|
|
88225
|
+
};
|
|
88226
|
+
designSystemSources: {
|
|
88227
|
+
max: number;
|
|
88228
|
+
errorMessage: string;
|
|
88229
|
+
errorReason: string;
|
|
88230
|
+
noImportJobsErrorMessage: string;
|
|
88231
|
+
noImportJobsErrorReason: string;
|
|
88232
|
+
};
|
|
88233
|
+
designSystemVersions: {
|
|
88234
|
+
max: number;
|
|
88235
|
+
errorMessage: string;
|
|
88236
|
+
errorReason: string;
|
|
88237
|
+
};
|
|
88238
|
+
themes: {
|
|
88239
|
+
max: number;
|
|
88240
|
+
errorMessage: string;
|
|
88241
|
+
errorReason: string;
|
|
88242
|
+
};
|
|
88243
|
+
brands: {
|
|
88244
|
+
max: number;
|
|
88245
|
+
errorMessage: string;
|
|
88246
|
+
errorReason: string;
|
|
88247
|
+
};
|
|
88248
|
+
codegenSchedules: {
|
|
88249
|
+
max: number;
|
|
88250
|
+
errorMessage: string;
|
|
88251
|
+
errorReason: string;
|
|
88252
|
+
};
|
|
88253
|
+
publicDocumentation: {
|
|
88254
|
+
errorMessage: string;
|
|
88255
|
+
errorReason: string;
|
|
88256
|
+
enabled: boolean;
|
|
88257
|
+
};
|
|
88258
|
+
customDocumentationUrl: {
|
|
88259
|
+
errorMessage: string;
|
|
88260
|
+
errorReason: string;
|
|
88261
|
+
enabled: boolean;
|
|
88262
|
+
};
|
|
88263
|
+
customDocumentationViewButton: {
|
|
88264
|
+
errorMessage: string;
|
|
88265
|
+
errorReason: string;
|
|
88266
|
+
enabled: boolean;
|
|
88267
|
+
};
|
|
88268
|
+
designSystemSourceAutoImport: {
|
|
88269
|
+
errorMessage: string;
|
|
88270
|
+
errorReason: string;
|
|
88271
|
+
enabled: boolean;
|
|
88272
|
+
};
|
|
88273
|
+
designSystemSlug: {
|
|
88274
|
+
errorMessage: string;
|
|
88275
|
+
errorReason: string;
|
|
88276
|
+
enabled: boolean;
|
|
88277
|
+
};
|
|
88278
|
+
ipWhitelisting: {
|
|
88279
|
+
errorMessage: string;
|
|
88280
|
+
errorReason: string;
|
|
88281
|
+
enabled: boolean;
|
|
88282
|
+
};
|
|
88283
|
+
npmRegistry: {
|
|
88284
|
+
errorMessage: string;
|
|
88285
|
+
errorReason: string;
|
|
88286
|
+
enabled: boolean;
|
|
88287
|
+
};
|
|
88288
|
+
sso: {
|
|
88289
|
+
errorMessage: string;
|
|
88290
|
+
errorReason: string;
|
|
88291
|
+
enabled: boolean;
|
|
88292
|
+
};
|
|
88293
|
+
workspacePaidSeats: {
|
|
88294
|
+
max: number;
|
|
88295
|
+
errorMessage: string;
|
|
88296
|
+
errorReason: string;
|
|
88297
|
+
};
|
|
88298
|
+
workspaceViewers: {
|
|
88299
|
+
max: number;
|
|
88300
|
+
errorMessage: string;
|
|
88301
|
+
errorReason: string;
|
|
88302
|
+
};
|
|
88303
|
+
customDocumentationExporter: {
|
|
88304
|
+
errorMessage: string;
|
|
88305
|
+
errorReason: string;
|
|
88306
|
+
enabled: boolean;
|
|
88307
|
+
};
|
|
88308
|
+
protectedPages: {
|
|
88309
|
+
errorMessage: string;
|
|
88310
|
+
errorReason: string;
|
|
88311
|
+
enabled: boolean;
|
|
88312
|
+
};
|
|
88313
|
+
approvals: {
|
|
88314
|
+
errorMessage: string;
|
|
88315
|
+
errorReason: string;
|
|
88316
|
+
enabled: boolean;
|
|
88317
|
+
};
|
|
88318
|
+
selectivePublishing: {
|
|
88319
|
+
errorMessage: string;
|
|
88320
|
+
errorReason: string;
|
|
88321
|
+
enabled: boolean;
|
|
88322
|
+
};
|
|
88323
|
+
designSystemAccessModes: {
|
|
88324
|
+
errorMessage: string;
|
|
88325
|
+
errorReason: string;
|
|
88326
|
+
enabled: boolean;
|
|
88327
|
+
};
|
|
88328
|
+
designSystemRoles: {
|
|
88329
|
+
errorMessage: string;
|
|
88330
|
+
errorReason: string;
|
|
88331
|
+
enabled: boolean;
|
|
88332
|
+
};
|
|
88333
|
+
} | undefined;
|
|
88334
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
88335
|
+
currentPeriodStart?: string | undefined;
|
|
88336
|
+
currentPeriodEnd?: string | undefined;
|
|
88337
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
88338
|
+
cancelAt?: string | null | undefined;
|
|
88339
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
88340
|
+
daysUntilDue?: number | undefined;
|
|
88341
|
+
};
|
|
88342
|
+
npmRegistry?: {
|
|
88343
|
+
enabledScopes: string[];
|
|
88344
|
+
bypassProxy: boolean;
|
|
88345
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
88346
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
88347
|
+
registryUrl: string;
|
|
88348
|
+
proxyUrl: string;
|
|
88349
|
+
customRegistryUrl?: string | undefined;
|
|
88350
|
+
accessToken?: string | undefined;
|
|
88351
|
+
username?: string | undefined;
|
|
88352
|
+
password?: string | undefined;
|
|
88353
|
+
} | undefined;
|
|
88354
|
+
};
|
|
88355
|
+
}>;
|
|
88104
88356
|
}
|
|
88105
88357
|
|
|
88106
88358
|
declare class UsersEndpoint {
|
|
@@ -90942,4 +91194,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90942
91194
|
|
|
90943
91195
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90944
91196
|
|
|
90945
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionsEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
91197
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionsEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|