@supernova-studio/client 0.59.4 → 0.59.5
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 +74 -76
- package/dist/index.d.ts +74 -76
- package/dist/index.js +14 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/figma-nodes/figma-node.ts +17 -2
- package/src/api/dto/elements/figma-nodes/node-actions-v2.ts +2 -2
- package/src/api/endpoints/design-system/versions/elements-action.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -42020,6 +42020,24 @@ declare const DTOFigmaNodeRenderUrlInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
42020
42020
|
scale?: number | undefined;
|
|
42021
42021
|
}>;
|
|
42022
42022
|
type DTOFigmaNodeRenderUrlInput = z.infer<typeof DTOFigmaNodeRenderUrlInput>;
|
|
42023
|
+
/**
|
|
42024
|
+
* Figma node render request that uses Figma URL to identify the requested
|
|
42025
|
+
* node to render. The URL can be obtained by the user directly from the Figma app.
|
|
42026
|
+
*/
|
|
42027
|
+
declare const DTOFigmaNodeRerenderInput: z.ZodObject<{
|
|
42028
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42029
|
+
/**
|
|
42030
|
+
* Persistent ID of an existing Figma node
|
|
42031
|
+
*/
|
|
42032
|
+
figmaNodePersistentId: z.ZodString;
|
|
42033
|
+
}, "strip", z.ZodTypeAny, {
|
|
42034
|
+
inputType: "Rerender";
|
|
42035
|
+
figmaNodePersistentId: string;
|
|
42036
|
+
}, {
|
|
42037
|
+
inputType: "Rerender";
|
|
42038
|
+
figmaNodePersistentId: string;
|
|
42039
|
+
}>;
|
|
42040
|
+
type DTOFigmaNodeRerenderInput = z.infer<typeof DTOFigmaNodeRerenderInput>;
|
|
42023
42041
|
declare const DTOFigmaNodeRenderInput: z.ZodDiscriminatedUnion<"inputType", [z.ZodObject<z.objectUtil.extendShape<{
|
|
42024
42042
|
/**
|
|
42025
42043
|
* Format in which the node must be rendered, png by default.
|
|
@@ -42082,6 +42100,18 @@ declare const DTOFigmaNodeRenderInput: z.ZodDiscriminatedUnion<"inputType", [z.Z
|
|
|
42082
42100
|
figmaNodeUrl: string;
|
|
42083
42101
|
format?: "Png" | "Svg" | undefined;
|
|
42084
42102
|
scale?: number | undefined;
|
|
42103
|
+
}>, z.ZodObject<{
|
|
42104
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42105
|
+
/**
|
|
42106
|
+
* Persistent ID of an existing Figma node
|
|
42107
|
+
*/
|
|
42108
|
+
figmaNodePersistentId: z.ZodString;
|
|
42109
|
+
}, "strip", z.ZodTypeAny, {
|
|
42110
|
+
inputType: "Rerender";
|
|
42111
|
+
figmaNodePersistentId: string;
|
|
42112
|
+
}, {
|
|
42113
|
+
inputType: "Rerender";
|
|
42114
|
+
figmaNodePersistentId: string;
|
|
42085
42115
|
}>]>;
|
|
42086
42116
|
type DTOFigmaNodeRenderInput = z.infer<typeof DTOFigmaNodeRenderInput>;
|
|
42087
42117
|
|
|
@@ -42712,7 +42742,7 @@ type DTOFigmaNodeRenderAsyncActionOutput = z.infer<typeof DTOFigmaNodeRenderAsyn
|
|
|
42712
42742
|
*/
|
|
42713
42743
|
declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
42714
42744
|
type: z.ZodLiteral<"FigmaNodeRender">;
|
|
42715
|
-
input: z.ZodArray<z.
|
|
42745
|
+
input: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
42716
42746
|
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
42717
42747
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
42718
42748
|
}, {
|
|
@@ -42731,56 +42761,25 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
42731
42761
|
inputType?: "NodeId" | undefined;
|
|
42732
42762
|
format?: "Png" | "Svg" | undefined;
|
|
42733
42763
|
scale?: number | undefined;
|
|
42734
|
-
}>,
|
|
42735
|
-
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
42736
|
-
scale: z.ZodOptional<z.ZodNumber>;
|
|
42737
|
-
}, {
|
|
42738
|
-
inputType: z.ZodLiteral<"URL">;
|
|
42739
|
-
figmaNodeUrl: z.ZodString;
|
|
42740
|
-
brandPersistentId: z.ZodString;
|
|
42741
|
-
}>, "strip", z.ZodTypeAny, {
|
|
42742
|
-
brandPersistentId: string;
|
|
42743
|
-
inputType: "URL";
|
|
42744
|
-
format: "Png" | "Svg";
|
|
42745
|
-
figmaNodeUrl: string;
|
|
42746
|
-
scale?: number | undefined;
|
|
42747
|
-
}, {
|
|
42748
|
-
brandPersistentId: string;
|
|
42749
|
-
inputType: "URL";
|
|
42750
|
-
figmaNodeUrl: string;
|
|
42751
|
-
format?: "Png" | "Svg" | undefined;
|
|
42752
|
-
scale?: number | undefined;
|
|
42753
|
-
}>]>, "many">;
|
|
42764
|
+
}>, "many">;
|
|
42754
42765
|
}, "strip", z.ZodTypeAny, {
|
|
42755
42766
|
type: "FigmaNodeRender";
|
|
42756
|
-
input:
|
|
42767
|
+
input: {
|
|
42757
42768
|
sourceId: string;
|
|
42758
42769
|
inputType: "NodeId";
|
|
42759
42770
|
format: "Png" | "Svg";
|
|
42760
42771
|
figmaFileNodeId: string;
|
|
42761
42772
|
scale?: number | undefined;
|
|
42762
|
-
}
|
|
42763
|
-
brandPersistentId: string;
|
|
42764
|
-
inputType: "URL";
|
|
42765
|
-
format: "Png" | "Svg";
|
|
42766
|
-
figmaNodeUrl: string;
|
|
42767
|
-
scale?: number | undefined;
|
|
42768
|
-
})[];
|
|
42773
|
+
}[];
|
|
42769
42774
|
}, {
|
|
42770
42775
|
type: "FigmaNodeRender";
|
|
42771
|
-
input:
|
|
42776
|
+
input: {
|
|
42772
42777
|
sourceId: string;
|
|
42773
42778
|
figmaFileNodeId: string;
|
|
42774
42779
|
inputType?: "NodeId" | undefined;
|
|
42775
42780
|
format?: "Png" | "Svg" | undefined;
|
|
42776
42781
|
scale?: number | undefined;
|
|
42777
|
-
}
|
|
42778
|
-
brandPersistentId: string;
|
|
42779
|
-
inputType: "URL";
|
|
42780
|
-
figmaNodeUrl: string;
|
|
42781
|
-
format?: "Png" | "Svg" | undefined;
|
|
42782
|
-
scale?: number | undefined;
|
|
42783
|
-
})[];
|
|
42782
|
+
}[];
|
|
42784
42783
|
}>;
|
|
42785
42784
|
type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
|
|
42786
42785
|
declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
@@ -42823,6 +42822,15 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42823
42822
|
figmaNodeUrl: string;
|
|
42824
42823
|
format?: "Png" | "Svg" | undefined;
|
|
42825
42824
|
scale?: number | undefined;
|
|
42825
|
+
}>, z.ZodObject<{
|
|
42826
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42827
|
+
figmaNodePersistentId: z.ZodString;
|
|
42828
|
+
}, "strip", z.ZodTypeAny, {
|
|
42829
|
+
inputType: "Rerender";
|
|
42830
|
+
figmaNodePersistentId: string;
|
|
42831
|
+
}, {
|
|
42832
|
+
inputType: "Rerender";
|
|
42833
|
+
figmaNodePersistentId: string;
|
|
42826
42834
|
}>]>, "many">;
|
|
42827
42835
|
}, "strip", z.ZodTypeAny, {
|
|
42828
42836
|
type: "FigmaNodeRenderAsync";
|
|
@@ -42838,6 +42846,9 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42838
42846
|
format: "Png" | "Svg";
|
|
42839
42847
|
figmaNodeUrl: string;
|
|
42840
42848
|
scale?: number | undefined;
|
|
42849
|
+
} | {
|
|
42850
|
+
inputType: "Rerender";
|
|
42851
|
+
figmaNodePersistentId: string;
|
|
42841
42852
|
})[];
|
|
42842
42853
|
}, {
|
|
42843
42854
|
type: "FigmaNodeRenderAsync";
|
|
@@ -42853,6 +42864,9 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42853
42864
|
figmaNodeUrl: string;
|
|
42854
42865
|
format?: "Png" | "Svg" | undefined;
|
|
42855
42866
|
scale?: number | undefined;
|
|
42867
|
+
} | {
|
|
42868
|
+
inputType: "Rerender";
|
|
42869
|
+
figmaNodePersistentId: string;
|
|
42856
42870
|
})[];
|
|
42857
42871
|
}>;
|
|
42858
42872
|
type DTOFigmaNodeRenderAsyncActionInput = z.infer<typeof DTOFigmaNodeRenderAsyncActionInput>;
|
|
@@ -46164,7 +46178,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46164
46178
|
};
|
|
46165
46179
|
}>, z.ZodObject<{
|
|
46166
46180
|
type: z.ZodLiteral<"FigmaNodeRender">;
|
|
46167
|
-
input: z.ZodArray<z.
|
|
46181
|
+
input: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
46168
46182
|
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
46169
46183
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
46170
46184
|
}, {
|
|
@@ -46183,56 +46197,25 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46183
46197
|
inputType?: "NodeId" | undefined;
|
|
46184
46198
|
format?: "Png" | "Svg" | undefined;
|
|
46185
46199
|
scale?: number | undefined;
|
|
46186
|
-
}>,
|
|
46187
|
-
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
46188
|
-
scale: z.ZodOptional<z.ZodNumber>;
|
|
46189
|
-
}, {
|
|
46190
|
-
inputType: z.ZodLiteral<"URL">;
|
|
46191
|
-
figmaNodeUrl: z.ZodString;
|
|
46192
|
-
brandPersistentId: z.ZodString;
|
|
46193
|
-
}>, "strip", z.ZodTypeAny, {
|
|
46194
|
-
brandPersistentId: string;
|
|
46195
|
-
inputType: "URL";
|
|
46196
|
-
format: "Png" | "Svg";
|
|
46197
|
-
figmaNodeUrl: string;
|
|
46198
|
-
scale?: number | undefined;
|
|
46199
|
-
}, {
|
|
46200
|
-
brandPersistentId: string;
|
|
46201
|
-
inputType: "URL";
|
|
46202
|
-
figmaNodeUrl: string;
|
|
46203
|
-
format?: "Png" | "Svg" | undefined;
|
|
46204
|
-
scale?: number | undefined;
|
|
46205
|
-
}>]>, "many">;
|
|
46200
|
+
}>, "many">;
|
|
46206
46201
|
}, "strip", z.ZodTypeAny, {
|
|
46207
46202
|
type: "FigmaNodeRender";
|
|
46208
|
-
input:
|
|
46203
|
+
input: {
|
|
46209
46204
|
sourceId: string;
|
|
46210
46205
|
inputType: "NodeId";
|
|
46211
46206
|
format: "Png" | "Svg";
|
|
46212
46207
|
figmaFileNodeId: string;
|
|
46213
46208
|
scale?: number | undefined;
|
|
46214
|
-
}
|
|
46215
|
-
brandPersistentId: string;
|
|
46216
|
-
inputType: "URL";
|
|
46217
|
-
format: "Png" | "Svg";
|
|
46218
|
-
figmaNodeUrl: string;
|
|
46219
|
-
scale?: number | undefined;
|
|
46220
|
-
})[];
|
|
46209
|
+
}[];
|
|
46221
46210
|
}, {
|
|
46222
46211
|
type: "FigmaNodeRender";
|
|
46223
|
-
input:
|
|
46212
|
+
input: {
|
|
46224
46213
|
sourceId: string;
|
|
46225
46214
|
figmaFileNodeId: string;
|
|
46226
46215
|
inputType?: "NodeId" | undefined;
|
|
46227
46216
|
format?: "Png" | "Svg" | undefined;
|
|
46228
46217
|
scale?: number | undefined;
|
|
46229
|
-
}
|
|
46230
|
-
brandPersistentId: string;
|
|
46231
|
-
inputType: "URL";
|
|
46232
|
-
figmaNodeUrl: string;
|
|
46233
|
-
format?: "Png" | "Svg" | undefined;
|
|
46234
|
-
scale?: number | undefined;
|
|
46235
|
-
})[];
|
|
46218
|
+
}[];
|
|
46236
46219
|
}>, z.ZodObject<{
|
|
46237
46220
|
type: z.ZodLiteral<"FigmaNodeRenderAsync">;
|
|
46238
46221
|
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"inputType", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -46273,6 +46256,15 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46273
46256
|
figmaNodeUrl: string;
|
|
46274
46257
|
format?: "Png" | "Svg" | undefined;
|
|
46275
46258
|
scale?: number | undefined;
|
|
46259
|
+
}>, z.ZodObject<{
|
|
46260
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
46261
|
+
figmaNodePersistentId: z.ZodString;
|
|
46262
|
+
}, "strip", z.ZodTypeAny, {
|
|
46263
|
+
inputType: "Rerender";
|
|
46264
|
+
figmaNodePersistentId: string;
|
|
46265
|
+
}, {
|
|
46266
|
+
inputType: "Rerender";
|
|
46267
|
+
figmaNodePersistentId: string;
|
|
46276
46268
|
}>]>, "many">;
|
|
46277
46269
|
}, "strip", z.ZodTypeAny, {
|
|
46278
46270
|
type: "FigmaNodeRenderAsync";
|
|
@@ -46288,6 +46280,9 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46288
46280
|
format: "Png" | "Svg";
|
|
46289
46281
|
figmaNodeUrl: string;
|
|
46290
46282
|
scale?: number | undefined;
|
|
46283
|
+
} | {
|
|
46284
|
+
inputType: "Rerender";
|
|
46285
|
+
figmaNodePersistentId: string;
|
|
46291
46286
|
})[];
|
|
46292
46287
|
}, {
|
|
46293
46288
|
type: "FigmaNodeRenderAsync";
|
|
@@ -46303,6 +46298,9 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46303
46298
|
figmaNodeUrl: string;
|
|
46304
46299
|
format?: "Png" | "Svg" | undefined;
|
|
46305
46300
|
scale?: number | undefined;
|
|
46301
|
+
} | {
|
|
46302
|
+
inputType: "Rerender";
|
|
46303
|
+
figmaNodePersistentId: string;
|
|
46306
46304
|
})[];
|
|
46307
46305
|
}>, z.ZodObject<{
|
|
46308
46306
|
type: z.ZodLiteral<"DocumentationPageRestore">;
|
|
@@ -90717,7 +90715,7 @@ declare class ElementsActionEndpoint {
|
|
|
90717
90715
|
};
|
|
90718
90716
|
}[];
|
|
90719
90717
|
}>;
|
|
90720
|
-
renderNodes(dsId: string, vId: string, input:
|
|
90718
|
+
renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
|
|
90721
90719
|
type: "DocumentationGroupCreate";
|
|
90722
90720
|
output: {
|
|
90723
90721
|
success: true;
|
|
@@ -97628,4 +97626,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
97628
97626
|
|
|
97629
97627
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
97630
97628
|
|
|
97631
|
-
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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, 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, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeV2, 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, type DTOPropertyDefinitionBase, 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, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, 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 };
|
|
97629
|
+
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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, 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, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, 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, type DTOPropertyDefinitionBase, 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, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -42020,6 +42020,24 @@ declare const DTOFigmaNodeRenderUrlInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
42020
42020
|
scale?: number | undefined;
|
|
42021
42021
|
}>;
|
|
42022
42022
|
type DTOFigmaNodeRenderUrlInput = z.infer<typeof DTOFigmaNodeRenderUrlInput>;
|
|
42023
|
+
/**
|
|
42024
|
+
* Figma node render request that uses Figma URL to identify the requested
|
|
42025
|
+
* node to render. The URL can be obtained by the user directly from the Figma app.
|
|
42026
|
+
*/
|
|
42027
|
+
declare const DTOFigmaNodeRerenderInput: z.ZodObject<{
|
|
42028
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42029
|
+
/**
|
|
42030
|
+
* Persistent ID of an existing Figma node
|
|
42031
|
+
*/
|
|
42032
|
+
figmaNodePersistentId: z.ZodString;
|
|
42033
|
+
}, "strip", z.ZodTypeAny, {
|
|
42034
|
+
inputType: "Rerender";
|
|
42035
|
+
figmaNodePersistentId: string;
|
|
42036
|
+
}, {
|
|
42037
|
+
inputType: "Rerender";
|
|
42038
|
+
figmaNodePersistentId: string;
|
|
42039
|
+
}>;
|
|
42040
|
+
type DTOFigmaNodeRerenderInput = z.infer<typeof DTOFigmaNodeRerenderInput>;
|
|
42023
42041
|
declare const DTOFigmaNodeRenderInput: z.ZodDiscriminatedUnion<"inputType", [z.ZodObject<z.objectUtil.extendShape<{
|
|
42024
42042
|
/**
|
|
42025
42043
|
* Format in which the node must be rendered, png by default.
|
|
@@ -42082,6 +42100,18 @@ declare const DTOFigmaNodeRenderInput: z.ZodDiscriminatedUnion<"inputType", [z.Z
|
|
|
42082
42100
|
figmaNodeUrl: string;
|
|
42083
42101
|
format?: "Png" | "Svg" | undefined;
|
|
42084
42102
|
scale?: number | undefined;
|
|
42103
|
+
}>, z.ZodObject<{
|
|
42104
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42105
|
+
/**
|
|
42106
|
+
* Persistent ID of an existing Figma node
|
|
42107
|
+
*/
|
|
42108
|
+
figmaNodePersistentId: z.ZodString;
|
|
42109
|
+
}, "strip", z.ZodTypeAny, {
|
|
42110
|
+
inputType: "Rerender";
|
|
42111
|
+
figmaNodePersistentId: string;
|
|
42112
|
+
}, {
|
|
42113
|
+
inputType: "Rerender";
|
|
42114
|
+
figmaNodePersistentId: string;
|
|
42085
42115
|
}>]>;
|
|
42086
42116
|
type DTOFigmaNodeRenderInput = z.infer<typeof DTOFigmaNodeRenderInput>;
|
|
42087
42117
|
|
|
@@ -42712,7 +42742,7 @@ type DTOFigmaNodeRenderAsyncActionOutput = z.infer<typeof DTOFigmaNodeRenderAsyn
|
|
|
42712
42742
|
*/
|
|
42713
42743
|
declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
42714
42744
|
type: z.ZodLiteral<"FigmaNodeRender">;
|
|
42715
|
-
input: z.ZodArray<z.
|
|
42745
|
+
input: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
42716
42746
|
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
42717
42747
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
42718
42748
|
}, {
|
|
@@ -42731,56 +42761,25 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
42731
42761
|
inputType?: "NodeId" | undefined;
|
|
42732
42762
|
format?: "Png" | "Svg" | undefined;
|
|
42733
42763
|
scale?: number | undefined;
|
|
42734
|
-
}>,
|
|
42735
|
-
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
42736
|
-
scale: z.ZodOptional<z.ZodNumber>;
|
|
42737
|
-
}, {
|
|
42738
|
-
inputType: z.ZodLiteral<"URL">;
|
|
42739
|
-
figmaNodeUrl: z.ZodString;
|
|
42740
|
-
brandPersistentId: z.ZodString;
|
|
42741
|
-
}>, "strip", z.ZodTypeAny, {
|
|
42742
|
-
brandPersistentId: string;
|
|
42743
|
-
inputType: "URL";
|
|
42744
|
-
format: "Png" | "Svg";
|
|
42745
|
-
figmaNodeUrl: string;
|
|
42746
|
-
scale?: number | undefined;
|
|
42747
|
-
}, {
|
|
42748
|
-
brandPersistentId: string;
|
|
42749
|
-
inputType: "URL";
|
|
42750
|
-
figmaNodeUrl: string;
|
|
42751
|
-
format?: "Png" | "Svg" | undefined;
|
|
42752
|
-
scale?: number | undefined;
|
|
42753
|
-
}>]>, "many">;
|
|
42764
|
+
}>, "many">;
|
|
42754
42765
|
}, "strip", z.ZodTypeAny, {
|
|
42755
42766
|
type: "FigmaNodeRender";
|
|
42756
|
-
input:
|
|
42767
|
+
input: {
|
|
42757
42768
|
sourceId: string;
|
|
42758
42769
|
inputType: "NodeId";
|
|
42759
42770
|
format: "Png" | "Svg";
|
|
42760
42771
|
figmaFileNodeId: string;
|
|
42761
42772
|
scale?: number | undefined;
|
|
42762
|
-
}
|
|
42763
|
-
brandPersistentId: string;
|
|
42764
|
-
inputType: "URL";
|
|
42765
|
-
format: "Png" | "Svg";
|
|
42766
|
-
figmaNodeUrl: string;
|
|
42767
|
-
scale?: number | undefined;
|
|
42768
|
-
})[];
|
|
42773
|
+
}[];
|
|
42769
42774
|
}, {
|
|
42770
42775
|
type: "FigmaNodeRender";
|
|
42771
|
-
input:
|
|
42776
|
+
input: {
|
|
42772
42777
|
sourceId: string;
|
|
42773
42778
|
figmaFileNodeId: string;
|
|
42774
42779
|
inputType?: "NodeId" | undefined;
|
|
42775
42780
|
format?: "Png" | "Svg" | undefined;
|
|
42776
42781
|
scale?: number | undefined;
|
|
42777
|
-
}
|
|
42778
|
-
brandPersistentId: string;
|
|
42779
|
-
inputType: "URL";
|
|
42780
|
-
figmaNodeUrl: string;
|
|
42781
|
-
format?: "Png" | "Svg" | undefined;
|
|
42782
|
-
scale?: number | undefined;
|
|
42783
|
-
})[];
|
|
42782
|
+
}[];
|
|
42784
42783
|
}>;
|
|
42785
42784
|
type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
|
|
42786
42785
|
declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
@@ -42823,6 +42822,15 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42823
42822
|
figmaNodeUrl: string;
|
|
42824
42823
|
format?: "Png" | "Svg" | undefined;
|
|
42825
42824
|
scale?: number | undefined;
|
|
42825
|
+
}>, z.ZodObject<{
|
|
42826
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42827
|
+
figmaNodePersistentId: z.ZodString;
|
|
42828
|
+
}, "strip", z.ZodTypeAny, {
|
|
42829
|
+
inputType: "Rerender";
|
|
42830
|
+
figmaNodePersistentId: string;
|
|
42831
|
+
}, {
|
|
42832
|
+
inputType: "Rerender";
|
|
42833
|
+
figmaNodePersistentId: string;
|
|
42826
42834
|
}>]>, "many">;
|
|
42827
42835
|
}, "strip", z.ZodTypeAny, {
|
|
42828
42836
|
type: "FigmaNodeRenderAsync";
|
|
@@ -42838,6 +42846,9 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42838
42846
|
format: "Png" | "Svg";
|
|
42839
42847
|
figmaNodeUrl: string;
|
|
42840
42848
|
scale?: number | undefined;
|
|
42849
|
+
} | {
|
|
42850
|
+
inputType: "Rerender";
|
|
42851
|
+
figmaNodePersistentId: string;
|
|
42841
42852
|
})[];
|
|
42842
42853
|
}, {
|
|
42843
42854
|
type: "FigmaNodeRenderAsync";
|
|
@@ -42853,6 +42864,9 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42853
42864
|
figmaNodeUrl: string;
|
|
42854
42865
|
format?: "Png" | "Svg" | undefined;
|
|
42855
42866
|
scale?: number | undefined;
|
|
42867
|
+
} | {
|
|
42868
|
+
inputType: "Rerender";
|
|
42869
|
+
figmaNodePersistentId: string;
|
|
42856
42870
|
})[];
|
|
42857
42871
|
}>;
|
|
42858
42872
|
type DTOFigmaNodeRenderAsyncActionInput = z.infer<typeof DTOFigmaNodeRenderAsyncActionInput>;
|
|
@@ -46164,7 +46178,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46164
46178
|
};
|
|
46165
46179
|
}>, z.ZodObject<{
|
|
46166
46180
|
type: z.ZodLiteral<"FigmaNodeRender">;
|
|
46167
|
-
input: z.ZodArray<z.
|
|
46181
|
+
input: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
46168
46182
|
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
46169
46183
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
46170
46184
|
}, {
|
|
@@ -46183,56 +46197,25 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46183
46197
|
inputType?: "NodeId" | undefined;
|
|
46184
46198
|
format?: "Png" | "Svg" | undefined;
|
|
46185
46199
|
scale?: number | undefined;
|
|
46186
|
-
}>,
|
|
46187
|
-
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
46188
|
-
scale: z.ZodOptional<z.ZodNumber>;
|
|
46189
|
-
}, {
|
|
46190
|
-
inputType: z.ZodLiteral<"URL">;
|
|
46191
|
-
figmaNodeUrl: z.ZodString;
|
|
46192
|
-
brandPersistentId: z.ZodString;
|
|
46193
|
-
}>, "strip", z.ZodTypeAny, {
|
|
46194
|
-
brandPersistentId: string;
|
|
46195
|
-
inputType: "URL";
|
|
46196
|
-
format: "Png" | "Svg";
|
|
46197
|
-
figmaNodeUrl: string;
|
|
46198
|
-
scale?: number | undefined;
|
|
46199
|
-
}, {
|
|
46200
|
-
brandPersistentId: string;
|
|
46201
|
-
inputType: "URL";
|
|
46202
|
-
figmaNodeUrl: string;
|
|
46203
|
-
format?: "Png" | "Svg" | undefined;
|
|
46204
|
-
scale?: number | undefined;
|
|
46205
|
-
}>]>, "many">;
|
|
46200
|
+
}>, "many">;
|
|
46206
46201
|
}, "strip", z.ZodTypeAny, {
|
|
46207
46202
|
type: "FigmaNodeRender";
|
|
46208
|
-
input:
|
|
46203
|
+
input: {
|
|
46209
46204
|
sourceId: string;
|
|
46210
46205
|
inputType: "NodeId";
|
|
46211
46206
|
format: "Png" | "Svg";
|
|
46212
46207
|
figmaFileNodeId: string;
|
|
46213
46208
|
scale?: number | undefined;
|
|
46214
|
-
}
|
|
46215
|
-
brandPersistentId: string;
|
|
46216
|
-
inputType: "URL";
|
|
46217
|
-
format: "Png" | "Svg";
|
|
46218
|
-
figmaNodeUrl: string;
|
|
46219
|
-
scale?: number | undefined;
|
|
46220
|
-
})[];
|
|
46209
|
+
}[];
|
|
46221
46210
|
}, {
|
|
46222
46211
|
type: "FigmaNodeRender";
|
|
46223
|
-
input:
|
|
46212
|
+
input: {
|
|
46224
46213
|
sourceId: string;
|
|
46225
46214
|
figmaFileNodeId: string;
|
|
46226
46215
|
inputType?: "NodeId" | undefined;
|
|
46227
46216
|
format?: "Png" | "Svg" | undefined;
|
|
46228
46217
|
scale?: number | undefined;
|
|
46229
|
-
}
|
|
46230
|
-
brandPersistentId: string;
|
|
46231
|
-
inputType: "URL";
|
|
46232
|
-
figmaNodeUrl: string;
|
|
46233
|
-
format?: "Png" | "Svg" | undefined;
|
|
46234
|
-
scale?: number | undefined;
|
|
46235
|
-
})[];
|
|
46218
|
+
}[];
|
|
46236
46219
|
}>, z.ZodObject<{
|
|
46237
46220
|
type: z.ZodLiteral<"FigmaNodeRenderAsync">;
|
|
46238
46221
|
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"inputType", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -46273,6 +46256,15 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46273
46256
|
figmaNodeUrl: string;
|
|
46274
46257
|
format?: "Png" | "Svg" | undefined;
|
|
46275
46258
|
scale?: number | undefined;
|
|
46259
|
+
}>, z.ZodObject<{
|
|
46260
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
46261
|
+
figmaNodePersistentId: z.ZodString;
|
|
46262
|
+
}, "strip", z.ZodTypeAny, {
|
|
46263
|
+
inputType: "Rerender";
|
|
46264
|
+
figmaNodePersistentId: string;
|
|
46265
|
+
}, {
|
|
46266
|
+
inputType: "Rerender";
|
|
46267
|
+
figmaNodePersistentId: string;
|
|
46276
46268
|
}>]>, "many">;
|
|
46277
46269
|
}, "strip", z.ZodTypeAny, {
|
|
46278
46270
|
type: "FigmaNodeRenderAsync";
|
|
@@ -46288,6 +46280,9 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46288
46280
|
format: "Png" | "Svg";
|
|
46289
46281
|
figmaNodeUrl: string;
|
|
46290
46282
|
scale?: number | undefined;
|
|
46283
|
+
} | {
|
|
46284
|
+
inputType: "Rerender";
|
|
46285
|
+
figmaNodePersistentId: string;
|
|
46291
46286
|
})[];
|
|
46292
46287
|
}, {
|
|
46293
46288
|
type: "FigmaNodeRenderAsync";
|
|
@@ -46303,6 +46298,9 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46303
46298
|
figmaNodeUrl: string;
|
|
46304
46299
|
format?: "Png" | "Svg" | undefined;
|
|
46305
46300
|
scale?: number | undefined;
|
|
46301
|
+
} | {
|
|
46302
|
+
inputType: "Rerender";
|
|
46303
|
+
figmaNodePersistentId: string;
|
|
46306
46304
|
})[];
|
|
46307
46305
|
}>, z.ZodObject<{
|
|
46308
46306
|
type: z.ZodLiteral<"DocumentationPageRestore">;
|
|
@@ -90717,7 +90715,7 @@ declare class ElementsActionEndpoint {
|
|
|
90717
90715
|
};
|
|
90718
90716
|
}[];
|
|
90719
90717
|
}>;
|
|
90720
|
-
renderNodes(dsId: string, vId: string, input:
|
|
90718
|
+
renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
|
|
90721
90719
|
type: "DocumentationGroupCreate";
|
|
90722
90720
|
output: {
|
|
90723
90721
|
success: true;
|
|
@@ -97628,4 +97626,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
97628
97626
|
|
|
97629
97627
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
97630
97628
|
|
|
97631
|
-
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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, 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, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeV2, 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, type DTOPropertyDefinitionBase, 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, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, 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 };
|
|
97629
|
+
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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, 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, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, 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, type DTOPropertyDefinitionBase, 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, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, 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 };
|