@supernova-studio/client 0.58.19 → 0.58.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +241 -3
- package/dist/index.d.ts +241 -3
- package/dist/index.js +34 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +87 -55
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/export/exporter.ts +2 -2
- package/src/api/dto/export/job.ts +9 -0
- package/src/api/endpoints/codegen/codegen.ts +3 -0
- package/src/api/endpoints/codegen/exporters.ts +13 -1
- package/src/api/endpoints/codegen/index.ts +1 -0
- package/src/api/endpoints/codegen/jobs.ts +15 -0
package/dist/index.d.mts
CHANGED
|
@@ -45635,7 +45635,7 @@ declare const DTOExporterMembership: z.ZodObject<{
|
|
|
45635
45635
|
exporterId: string;
|
|
45636
45636
|
}>;
|
|
45637
45637
|
type DTOExporterMembership = z.infer<typeof DTOExporterMembership>;
|
|
45638
|
-
declare const
|
|
45638
|
+
declare const DTOExporterResponse: z.ZodObject<{
|
|
45639
45639
|
exporter: z.ZodObject<{
|
|
45640
45640
|
id: z.ZodString;
|
|
45641
45641
|
name: z.ZodString;
|
|
@@ -46342,7 +46342,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
|
|
|
46342
46342
|
gitDirectory?: string | null | undefined;
|
|
46343
46343
|
};
|
|
46344
46344
|
}>;
|
|
46345
|
-
type
|
|
46345
|
+
type DTOExporterResponse = z.infer<typeof DTOExporterResponse>;
|
|
46346
46346
|
declare const DTOExporterListResponse: z.ZodObject<{
|
|
46347
46347
|
exporters: z.ZodArray<z.ZodObject<{
|
|
46348
46348
|
id: z.ZodString;
|
|
@@ -47109,6 +47109,29 @@ declare const DTOExportJobsListFilter: z.ZodObject<{
|
|
|
47109
47109
|
}>;
|
|
47110
47110
|
type DTOExportJobsListFilter = z.infer<typeof DTOExportJobsListFilter>;
|
|
47111
47111
|
|
|
47112
|
+
declare const DTOExportJobResponseLegacy: z.ZodObject<{
|
|
47113
|
+
job: z.ZodObject<{
|
|
47114
|
+
id: z.ZodString;
|
|
47115
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
47116
|
+
}, "strip", z.ZodTypeAny, {
|
|
47117
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47118
|
+
id: string;
|
|
47119
|
+
}, {
|
|
47120
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47121
|
+
id: string;
|
|
47122
|
+
}>;
|
|
47123
|
+
}, "strip", z.ZodTypeAny, {
|
|
47124
|
+
job: {
|
|
47125
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47126
|
+
id: string;
|
|
47127
|
+
};
|
|
47128
|
+
}, {
|
|
47129
|
+
job: {
|
|
47130
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47131
|
+
id: string;
|
|
47132
|
+
};
|
|
47133
|
+
}>;
|
|
47134
|
+
type DTOExportJobResponseLegacy = z.infer<typeof DTOExportJobResponseLegacy>;
|
|
47112
47135
|
declare const DTOExportJobCreatedBy: z.ZodObject<{
|
|
47113
47136
|
userId: z.ZodString;
|
|
47114
47137
|
userName: z.ZodString;
|
|
@@ -83876,6 +83899,107 @@ declare class RequestExecutor {
|
|
|
83876
83899
|
declare class ExportersEndpoint {
|
|
83877
83900
|
private readonly requestExecutor;
|
|
83878
83901
|
constructor(requestExecutor: RequestExecutor);
|
|
83902
|
+
add(workspaceId: string, body: DTOExporterCreateInput): Promise<{
|
|
83903
|
+
membership: {
|
|
83904
|
+
workspaceId: string;
|
|
83905
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
83906
|
+
exporterId: string;
|
|
83907
|
+
};
|
|
83908
|
+
exporter: {
|
|
83909
|
+
isPrivate: boolean;
|
|
83910
|
+
id: string;
|
|
83911
|
+
name: string;
|
|
83912
|
+
source: "upload" | "git";
|
|
83913
|
+
exporterType: "code" | "documentation";
|
|
83914
|
+
isDefaultDocumentationExporter: boolean;
|
|
83915
|
+
configurationProperties: {
|
|
83916
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
83917
|
+
label: string;
|
|
83918
|
+
key: string;
|
|
83919
|
+
category: string;
|
|
83920
|
+
values?: string[] | null | undefined;
|
|
83921
|
+
description?: string | null | undefined;
|
|
83922
|
+
default?: string | number | boolean | null | undefined;
|
|
83923
|
+
inputType?: "code" | "plain" | undefined;
|
|
83924
|
+
isMultiline?: boolean | null | undefined;
|
|
83925
|
+
}[];
|
|
83926
|
+
customBlocks: {
|
|
83927
|
+
key: string;
|
|
83928
|
+
properties: {
|
|
83929
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
83930
|
+
label: string;
|
|
83931
|
+
key: string;
|
|
83932
|
+
values?: string[] | null | undefined;
|
|
83933
|
+
description?: string | null | undefined;
|
|
83934
|
+
default?: string | number | boolean | null | undefined;
|
|
83935
|
+
inputType?: "code" | "plain" | undefined;
|
|
83936
|
+
isMultiline?: boolean | null | undefined;
|
|
83937
|
+
}[];
|
|
83938
|
+
description?: string | undefined;
|
|
83939
|
+
category?: string | undefined;
|
|
83940
|
+
title?: string | undefined;
|
|
83941
|
+
iconURL?: string | undefined;
|
|
83942
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
83943
|
+
}[];
|
|
83944
|
+
blockVariants: Record<string, {
|
|
83945
|
+
name: string;
|
|
83946
|
+
key: string;
|
|
83947
|
+
description?: string | undefined;
|
|
83948
|
+
isDefault?: boolean | undefined;
|
|
83949
|
+
thumbnailURL?: string | undefined;
|
|
83950
|
+
}[]>;
|
|
83951
|
+
usesBrands: boolean;
|
|
83952
|
+
usesThemes: boolean;
|
|
83953
|
+
properties?: ({
|
|
83954
|
+
options: string[];
|
|
83955
|
+
type: "Enum";
|
|
83956
|
+
description: string;
|
|
83957
|
+
title: string;
|
|
83958
|
+
key: string;
|
|
83959
|
+
default: string;
|
|
83960
|
+
} | {
|
|
83961
|
+
type: "Boolean";
|
|
83962
|
+
description: string;
|
|
83963
|
+
title: string;
|
|
83964
|
+
key: string;
|
|
83965
|
+
default: boolean;
|
|
83966
|
+
} | {
|
|
83967
|
+
type: "String";
|
|
83968
|
+
description: string;
|
|
83969
|
+
title: string;
|
|
83970
|
+
key: string;
|
|
83971
|
+
default: string;
|
|
83972
|
+
} | {
|
|
83973
|
+
type: "Number";
|
|
83974
|
+
description: string;
|
|
83975
|
+
title: string;
|
|
83976
|
+
key: string;
|
|
83977
|
+
default: number;
|
|
83978
|
+
} | {
|
|
83979
|
+
type: "Array";
|
|
83980
|
+
description: string;
|
|
83981
|
+
title: string;
|
|
83982
|
+
key: string;
|
|
83983
|
+
default: string[];
|
|
83984
|
+
} | {
|
|
83985
|
+
type: "Object";
|
|
83986
|
+
description: string;
|
|
83987
|
+
title: string;
|
|
83988
|
+
key: string;
|
|
83989
|
+
default: Record<string, string>;
|
|
83990
|
+
allowedKeys?: {
|
|
83991
|
+
options: string[];
|
|
83992
|
+
} | undefined;
|
|
83993
|
+
allowedValues?: {
|
|
83994
|
+
options: string[];
|
|
83995
|
+
} | undefined;
|
|
83996
|
+
})[] | undefined;
|
|
83997
|
+
iconURL?: string | undefined;
|
|
83998
|
+
gitUrl?: string | undefined;
|
|
83999
|
+
gitBranch?: string | undefined;
|
|
84000
|
+
gitDirectory?: string | undefined;
|
|
84001
|
+
};
|
|
84002
|
+
}>;
|
|
83879
84003
|
list(workspaceId: string, query: DTOExporterListQuery): Promise<{
|
|
83880
84004
|
membership: {
|
|
83881
84005
|
workspaceId: string;
|
|
@@ -83977,6 +84101,119 @@ declare class ExportersEndpoint {
|
|
|
83977
84101
|
gitDirectory?: string | undefined;
|
|
83978
84102
|
}[];
|
|
83979
84103
|
}>;
|
|
84104
|
+
get(workspaceId: string, exporterId: string): Promise<{
|
|
84105
|
+
membership: {
|
|
84106
|
+
workspaceId: string;
|
|
84107
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
84108
|
+
exporterId: string;
|
|
84109
|
+
};
|
|
84110
|
+
exporter: {
|
|
84111
|
+
isPrivate: boolean;
|
|
84112
|
+
id: string;
|
|
84113
|
+
name: string;
|
|
84114
|
+
source: "upload" | "git";
|
|
84115
|
+
exporterType: "code" | "documentation";
|
|
84116
|
+
isDefaultDocumentationExporter: boolean;
|
|
84117
|
+
configurationProperties: {
|
|
84118
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84119
|
+
label: string;
|
|
84120
|
+
key: string;
|
|
84121
|
+
category: string;
|
|
84122
|
+
values?: string[] | null | undefined;
|
|
84123
|
+
description?: string | null | undefined;
|
|
84124
|
+
default?: string | number | boolean | null | undefined;
|
|
84125
|
+
inputType?: "code" | "plain" | undefined;
|
|
84126
|
+
isMultiline?: boolean | null | undefined;
|
|
84127
|
+
}[];
|
|
84128
|
+
customBlocks: {
|
|
84129
|
+
key: string;
|
|
84130
|
+
properties: {
|
|
84131
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84132
|
+
label: string;
|
|
84133
|
+
key: string;
|
|
84134
|
+
values?: string[] | null | undefined;
|
|
84135
|
+
description?: string | null | undefined;
|
|
84136
|
+
default?: string | number | boolean | null | undefined;
|
|
84137
|
+
inputType?: "code" | "plain" | undefined;
|
|
84138
|
+
isMultiline?: boolean | null | undefined;
|
|
84139
|
+
}[];
|
|
84140
|
+
description?: string | undefined;
|
|
84141
|
+
category?: string | undefined;
|
|
84142
|
+
title?: string | undefined;
|
|
84143
|
+
iconURL?: string | undefined;
|
|
84144
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
84145
|
+
}[];
|
|
84146
|
+
blockVariants: Record<string, {
|
|
84147
|
+
name: string;
|
|
84148
|
+
key: string;
|
|
84149
|
+
description?: string | undefined;
|
|
84150
|
+
isDefault?: boolean | undefined;
|
|
84151
|
+
thumbnailURL?: string | undefined;
|
|
84152
|
+
}[]>;
|
|
84153
|
+
usesBrands: boolean;
|
|
84154
|
+
usesThemes: boolean;
|
|
84155
|
+
properties?: ({
|
|
84156
|
+
options: string[];
|
|
84157
|
+
type: "Enum";
|
|
84158
|
+
description: string;
|
|
84159
|
+
title: string;
|
|
84160
|
+
key: string;
|
|
84161
|
+
default: string;
|
|
84162
|
+
} | {
|
|
84163
|
+
type: "Boolean";
|
|
84164
|
+
description: string;
|
|
84165
|
+
title: string;
|
|
84166
|
+
key: string;
|
|
84167
|
+
default: boolean;
|
|
84168
|
+
} | {
|
|
84169
|
+
type: "String";
|
|
84170
|
+
description: string;
|
|
84171
|
+
title: string;
|
|
84172
|
+
key: string;
|
|
84173
|
+
default: string;
|
|
84174
|
+
} | {
|
|
84175
|
+
type: "Number";
|
|
84176
|
+
description: string;
|
|
84177
|
+
title: string;
|
|
84178
|
+
key: string;
|
|
84179
|
+
default: number;
|
|
84180
|
+
} | {
|
|
84181
|
+
type: "Array";
|
|
84182
|
+
description: string;
|
|
84183
|
+
title: string;
|
|
84184
|
+
key: string;
|
|
84185
|
+
default: string[];
|
|
84186
|
+
} | {
|
|
84187
|
+
type: "Object";
|
|
84188
|
+
description: string;
|
|
84189
|
+
title: string;
|
|
84190
|
+
key: string;
|
|
84191
|
+
default: Record<string, string>;
|
|
84192
|
+
allowedKeys?: {
|
|
84193
|
+
options: string[];
|
|
84194
|
+
} | undefined;
|
|
84195
|
+
allowedValues?: {
|
|
84196
|
+
options: string[];
|
|
84197
|
+
} | undefined;
|
|
84198
|
+
})[] | undefined;
|
|
84199
|
+
iconURL?: string | undefined;
|
|
84200
|
+
gitUrl?: string | undefined;
|
|
84201
|
+
gitBranch?: string | undefined;
|
|
84202
|
+
gitDirectory?: string | undefined;
|
|
84203
|
+
};
|
|
84204
|
+
}>;
|
|
84205
|
+
}
|
|
84206
|
+
|
|
84207
|
+
declare class ExporterJobsEndpoint {
|
|
84208
|
+
private readonly requestExecutor;
|
|
84209
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84210
|
+
list(workspaceId: string): Promise<any>;
|
|
84211
|
+
get(workspaceId: string, jobId: string): Promise<{
|
|
84212
|
+
job: {
|
|
84213
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
84214
|
+
id: string;
|
|
84215
|
+
};
|
|
84216
|
+
}>;
|
|
83980
84217
|
}
|
|
83981
84218
|
|
|
83982
84219
|
declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
@@ -86988,6 +87225,7 @@ declare class CodegenEndpoint {
|
|
|
86988
87225
|
private readonly requestExecutor;
|
|
86989
87226
|
readonly exporters: ExportersEndpoint;
|
|
86990
87227
|
readonly pipelines: PipelinesEndpoint;
|
|
87228
|
+
readonly jobs: ExporterJobsEndpoint;
|
|
86991
87229
|
constructor(requestExecutor: RequestExecutor);
|
|
86992
87230
|
}
|
|
86993
87231
|
|
|
@@ -94366,4 +94604,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
94366
94604
|
|
|
94367
94605
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
94368
94606
|
|
|
94369
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, 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, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, 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, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, 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, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, 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, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
94607
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, 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, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, 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, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, 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, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, 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, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|