@supernova-studio/client 0.58.19 → 0.58.21
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 +325 -3
- package/dist/index.d.ts +325 -3
- package/dist/index.js +58 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +111 -59
- 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
|
@@ -36580,6 +36580,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
36580
36580
|
}[];
|
|
36581
36581
|
} | null | undefined;
|
|
36582
36582
|
imageAlt?: string | null | undefined;
|
|
36583
|
+
openLightbox?: boolean | null | undefined;
|
|
36584
|
+
isBordered?: boolean | null | undefined;
|
|
36583
36585
|
numberOfColumns?: number | null | undefined;
|
|
36584
36586
|
itemBackgroundColor?: {
|
|
36585
36587
|
value: string;
|
|
@@ -36669,6 +36671,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
36669
36671
|
imageAlt?: string | null | undefined;
|
|
36670
36672
|
imageCaption?: string | null | undefined;
|
|
36671
36673
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
36674
|
+
openLightbox?: boolean | null | undefined;
|
|
36675
|
+
isBordered?: boolean | null | undefined;
|
|
36672
36676
|
} | null | undefined;
|
|
36673
36677
|
customBlockKey?: string | null | undefined;
|
|
36674
36678
|
customBlockProperties?: {
|
|
@@ -36686,6 +36690,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
36686
36690
|
backgroundColor?: {
|
|
36687
36691
|
value: string;
|
|
36688
36692
|
} | null | undefined;
|
|
36693
|
+
previewContainerHeight?: number | null | undefined;
|
|
36689
36694
|
} | null | undefined;
|
|
36690
36695
|
figmaFrames?: {
|
|
36691
36696
|
persistentId: string;
|
|
@@ -36746,10 +36751,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
36746
36751
|
selectedThemeIds: string[];
|
|
36747
36752
|
}[] | null | undefined;
|
|
36748
36753
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
36754
|
+
tokenBlockConfig?: {
|
|
36755
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
36756
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
36757
|
+
} | null | undefined;
|
|
36758
|
+
assetBlockConfig?: {
|
|
36759
|
+
showSearch?: boolean | null | undefined;
|
|
36760
|
+
showAssetDescription?: boolean | null | undefined;
|
|
36761
|
+
} | null | undefined;
|
|
36749
36762
|
figmaComponentsBlockConfig?: {
|
|
36750
36763
|
backgroundColor?: {
|
|
36751
36764
|
value: string;
|
|
36752
36765
|
} | null | undefined;
|
|
36766
|
+
previewContainerHeight?: number | null | undefined;
|
|
36753
36767
|
showComponentName?: boolean | null | undefined;
|
|
36754
36768
|
showComponentDescription?: boolean | null | undefined;
|
|
36755
36769
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -37172,6 +37186,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37172
37186
|
}[];
|
|
37173
37187
|
} | null | undefined;
|
|
37174
37188
|
imageAlt?: string | null | undefined;
|
|
37189
|
+
openLightbox?: boolean | null | undefined;
|
|
37190
|
+
isBordered?: boolean | null | undefined;
|
|
37175
37191
|
numberOfColumns?: number | null | undefined;
|
|
37176
37192
|
itemBackgroundColor?: {
|
|
37177
37193
|
value: string;
|
|
@@ -37261,6 +37277,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37261
37277
|
imageAlt?: string | null | undefined;
|
|
37262
37278
|
imageCaption?: string | null | undefined;
|
|
37263
37279
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
37280
|
+
openLightbox?: boolean | null | undefined;
|
|
37281
|
+
isBordered?: boolean | null | undefined;
|
|
37264
37282
|
} | null | undefined;
|
|
37265
37283
|
customBlockKey?: string | null | undefined;
|
|
37266
37284
|
customBlockProperties?: {
|
|
@@ -37278,6 +37296,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37278
37296
|
backgroundColor?: {
|
|
37279
37297
|
value: string;
|
|
37280
37298
|
} | null | undefined;
|
|
37299
|
+
previewContainerHeight?: number | null | undefined;
|
|
37281
37300
|
} | null | undefined;
|
|
37282
37301
|
figmaFrames?: {
|
|
37283
37302
|
persistentId: string;
|
|
@@ -37338,10 +37357,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37338
37357
|
selectedThemeIds: string[];
|
|
37339
37358
|
}[] | null | undefined;
|
|
37340
37359
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
37360
|
+
tokenBlockConfig?: {
|
|
37361
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
37362
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
37363
|
+
} | null | undefined;
|
|
37364
|
+
assetBlockConfig?: {
|
|
37365
|
+
showSearch?: boolean | null | undefined;
|
|
37366
|
+
showAssetDescription?: boolean | null | undefined;
|
|
37367
|
+
} | null | undefined;
|
|
37341
37368
|
figmaComponentsBlockConfig?: {
|
|
37342
37369
|
backgroundColor?: {
|
|
37343
37370
|
value: string;
|
|
37344
37371
|
} | null | undefined;
|
|
37372
|
+
previewContainerHeight?: number | null | undefined;
|
|
37345
37373
|
showComponentName?: boolean | null | undefined;
|
|
37346
37374
|
showComponentDescription?: boolean | null | undefined;
|
|
37347
37375
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -37988,6 +38016,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37988
38016
|
}[];
|
|
37989
38017
|
} | null | undefined;
|
|
37990
38018
|
imageAlt?: string | null | undefined;
|
|
38019
|
+
openLightbox?: boolean | null | undefined;
|
|
38020
|
+
isBordered?: boolean | null | undefined;
|
|
37991
38021
|
numberOfColumns?: number | null | undefined;
|
|
37992
38022
|
itemBackgroundColor?: {
|
|
37993
38023
|
value: string;
|
|
@@ -38077,6 +38107,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38077
38107
|
imageAlt?: string | null | undefined;
|
|
38078
38108
|
imageCaption?: string | null | undefined;
|
|
38079
38109
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
38110
|
+
openLightbox?: boolean | null | undefined;
|
|
38111
|
+
isBordered?: boolean | null | undefined;
|
|
38080
38112
|
} | null | undefined;
|
|
38081
38113
|
customBlockKey?: string | null | undefined;
|
|
38082
38114
|
customBlockProperties?: {
|
|
@@ -38094,6 +38126,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38094
38126
|
backgroundColor?: {
|
|
38095
38127
|
value: string;
|
|
38096
38128
|
} | null | undefined;
|
|
38129
|
+
previewContainerHeight?: number | null | undefined;
|
|
38097
38130
|
} | null | undefined;
|
|
38098
38131
|
figmaFrames?: {
|
|
38099
38132
|
persistentId: string;
|
|
@@ -38154,10 +38187,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38154
38187
|
selectedThemeIds: string[];
|
|
38155
38188
|
}[] | null | undefined;
|
|
38156
38189
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38190
|
+
tokenBlockConfig?: {
|
|
38191
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
38192
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
38193
|
+
} | null | undefined;
|
|
38194
|
+
assetBlockConfig?: {
|
|
38195
|
+
showSearch?: boolean | null | undefined;
|
|
38196
|
+
showAssetDescription?: boolean | null | undefined;
|
|
38197
|
+
} | null | undefined;
|
|
38157
38198
|
figmaComponentsBlockConfig?: {
|
|
38158
38199
|
backgroundColor?: {
|
|
38159
38200
|
value: string;
|
|
38160
38201
|
} | null | undefined;
|
|
38202
|
+
previewContainerHeight?: number | null | undefined;
|
|
38161
38203
|
showComponentName?: boolean | null | undefined;
|
|
38162
38204
|
showComponentDescription?: boolean | null | undefined;
|
|
38163
38205
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38233,6 +38275,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38233
38275
|
}[];
|
|
38234
38276
|
} | null | undefined;
|
|
38235
38277
|
imageAlt?: string | null | undefined;
|
|
38278
|
+
openLightbox?: boolean | null | undefined;
|
|
38279
|
+
isBordered?: boolean | null | undefined;
|
|
38236
38280
|
numberOfColumns?: number | null | undefined;
|
|
38237
38281
|
itemBackgroundColor?: {
|
|
38238
38282
|
value: string;
|
|
@@ -38322,6 +38366,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38322
38366
|
imageAlt?: string | null | undefined;
|
|
38323
38367
|
imageCaption?: string | null | undefined;
|
|
38324
38368
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
38369
|
+
openLightbox?: boolean | null | undefined;
|
|
38370
|
+
isBordered?: boolean | null | undefined;
|
|
38325
38371
|
} | null | undefined;
|
|
38326
38372
|
customBlockKey?: string | null | undefined;
|
|
38327
38373
|
customBlockProperties?: {
|
|
@@ -38339,6 +38385,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38339
38385
|
backgroundColor?: {
|
|
38340
38386
|
value: string;
|
|
38341
38387
|
} | null | undefined;
|
|
38388
|
+
previewContainerHeight?: number | null | undefined;
|
|
38342
38389
|
} | null | undefined;
|
|
38343
38390
|
figmaFrames?: {
|
|
38344
38391
|
persistentId: string;
|
|
@@ -38399,10 +38446,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38399
38446
|
selectedThemeIds: string[];
|
|
38400
38447
|
}[] | null | undefined;
|
|
38401
38448
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38449
|
+
tokenBlockConfig?: {
|
|
38450
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
38451
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
38452
|
+
} | null | undefined;
|
|
38453
|
+
assetBlockConfig?: {
|
|
38454
|
+
showSearch?: boolean | null | undefined;
|
|
38455
|
+
showAssetDescription?: boolean | null | undefined;
|
|
38456
|
+
} | null | undefined;
|
|
38402
38457
|
figmaComponentsBlockConfig?: {
|
|
38403
38458
|
backgroundColor?: {
|
|
38404
38459
|
value: string;
|
|
38405
38460
|
} | null | undefined;
|
|
38461
|
+
previewContainerHeight?: number | null | undefined;
|
|
38406
38462
|
showComponentName?: boolean | null | undefined;
|
|
38407
38463
|
showComponentDescription?: boolean | null | undefined;
|
|
38408
38464
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38596,6 +38652,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38596
38652
|
}[];
|
|
38597
38653
|
} | null | undefined;
|
|
38598
38654
|
imageAlt?: string | null | undefined;
|
|
38655
|
+
openLightbox?: boolean | null | undefined;
|
|
38656
|
+
isBordered?: boolean | null | undefined;
|
|
38599
38657
|
numberOfColumns?: number | null | undefined;
|
|
38600
38658
|
itemBackgroundColor?: {
|
|
38601
38659
|
value: string;
|
|
@@ -38685,6 +38743,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38685
38743
|
imageAlt?: string | null | undefined;
|
|
38686
38744
|
imageCaption?: string | null | undefined;
|
|
38687
38745
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
38746
|
+
openLightbox?: boolean | null | undefined;
|
|
38747
|
+
isBordered?: boolean | null | undefined;
|
|
38688
38748
|
} | null | undefined;
|
|
38689
38749
|
customBlockKey?: string | null | undefined;
|
|
38690
38750
|
customBlockProperties?: {
|
|
@@ -38702,6 +38762,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38702
38762
|
backgroundColor?: {
|
|
38703
38763
|
value: string;
|
|
38704
38764
|
} | null | undefined;
|
|
38765
|
+
previewContainerHeight?: number | null | undefined;
|
|
38705
38766
|
} | null | undefined;
|
|
38706
38767
|
figmaFrames?: {
|
|
38707
38768
|
persistentId: string;
|
|
@@ -38762,10 +38823,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38762
38823
|
selectedThemeIds: string[];
|
|
38763
38824
|
}[] | null | undefined;
|
|
38764
38825
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38826
|
+
tokenBlockConfig?: {
|
|
38827
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
38828
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
38829
|
+
} | null | undefined;
|
|
38830
|
+
assetBlockConfig?: {
|
|
38831
|
+
showSearch?: boolean | null | undefined;
|
|
38832
|
+
showAssetDescription?: boolean | null | undefined;
|
|
38833
|
+
} | null | undefined;
|
|
38765
38834
|
figmaComponentsBlockConfig?: {
|
|
38766
38835
|
backgroundColor?: {
|
|
38767
38836
|
value: string;
|
|
38768
38837
|
} | null | undefined;
|
|
38838
|
+
previewContainerHeight?: number | null | undefined;
|
|
38769
38839
|
showComponentName?: boolean | null | undefined;
|
|
38770
38840
|
showComponentDescription?: boolean | null | undefined;
|
|
38771
38841
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38841,6 +38911,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38841
38911
|
}[];
|
|
38842
38912
|
} | null | undefined;
|
|
38843
38913
|
imageAlt?: string | null | undefined;
|
|
38914
|
+
openLightbox?: boolean | null | undefined;
|
|
38915
|
+
isBordered?: boolean | null | undefined;
|
|
38844
38916
|
numberOfColumns?: number | null | undefined;
|
|
38845
38917
|
itemBackgroundColor?: {
|
|
38846
38918
|
value: string;
|
|
@@ -38930,6 +39002,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38930
39002
|
imageAlt?: string | null | undefined;
|
|
38931
39003
|
imageCaption?: string | null | undefined;
|
|
38932
39004
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
39005
|
+
openLightbox?: boolean | null | undefined;
|
|
39006
|
+
isBordered?: boolean | null | undefined;
|
|
38933
39007
|
} | null | undefined;
|
|
38934
39008
|
customBlockKey?: string | null | undefined;
|
|
38935
39009
|
customBlockProperties?: {
|
|
@@ -38947,6 +39021,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38947
39021
|
backgroundColor?: {
|
|
38948
39022
|
value: string;
|
|
38949
39023
|
} | null | undefined;
|
|
39024
|
+
previewContainerHeight?: number | null | undefined;
|
|
38950
39025
|
} | null | undefined;
|
|
38951
39026
|
figmaFrames?: {
|
|
38952
39027
|
persistentId: string;
|
|
@@ -39007,10 +39082,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39007
39082
|
selectedThemeIds: string[];
|
|
39008
39083
|
}[] | null | undefined;
|
|
39009
39084
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
39085
|
+
tokenBlockConfig?: {
|
|
39086
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
39087
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
39088
|
+
} | null | undefined;
|
|
39089
|
+
assetBlockConfig?: {
|
|
39090
|
+
showSearch?: boolean | null | undefined;
|
|
39091
|
+
showAssetDescription?: boolean | null | undefined;
|
|
39092
|
+
} | null | undefined;
|
|
39010
39093
|
figmaComponentsBlockConfig?: {
|
|
39011
39094
|
backgroundColor?: {
|
|
39012
39095
|
value: string;
|
|
39013
39096
|
} | null | undefined;
|
|
39097
|
+
previewContainerHeight?: number | null | undefined;
|
|
39014
39098
|
showComponentName?: boolean | null | undefined;
|
|
39015
39099
|
showComponentDescription?: boolean | null | undefined;
|
|
39016
39100
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -45635,7 +45719,7 @@ declare const DTOExporterMembership: z.ZodObject<{
|
|
|
45635
45719
|
exporterId: string;
|
|
45636
45720
|
}>;
|
|
45637
45721
|
type DTOExporterMembership = z.infer<typeof DTOExporterMembership>;
|
|
45638
|
-
declare const
|
|
45722
|
+
declare const DTOExporterResponse: z.ZodObject<{
|
|
45639
45723
|
exporter: z.ZodObject<{
|
|
45640
45724
|
id: z.ZodString;
|
|
45641
45725
|
name: z.ZodString;
|
|
@@ -46342,7 +46426,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
|
|
|
46342
46426
|
gitDirectory?: string | null | undefined;
|
|
46343
46427
|
};
|
|
46344
46428
|
}>;
|
|
46345
|
-
type
|
|
46429
|
+
type DTOExporterResponse = z.infer<typeof DTOExporterResponse>;
|
|
46346
46430
|
declare const DTOExporterListResponse: z.ZodObject<{
|
|
46347
46431
|
exporters: z.ZodArray<z.ZodObject<{
|
|
46348
46432
|
id: z.ZodString;
|
|
@@ -47109,6 +47193,29 @@ declare const DTOExportJobsListFilter: z.ZodObject<{
|
|
|
47109
47193
|
}>;
|
|
47110
47194
|
type DTOExportJobsListFilter = z.infer<typeof DTOExportJobsListFilter>;
|
|
47111
47195
|
|
|
47196
|
+
declare const DTOExportJobResponseLegacy: z.ZodObject<{
|
|
47197
|
+
job: z.ZodObject<{
|
|
47198
|
+
id: z.ZodString;
|
|
47199
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
47200
|
+
}, "strip", z.ZodTypeAny, {
|
|
47201
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47202
|
+
id: string;
|
|
47203
|
+
}, {
|
|
47204
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47205
|
+
id: string;
|
|
47206
|
+
}>;
|
|
47207
|
+
}, "strip", z.ZodTypeAny, {
|
|
47208
|
+
job: {
|
|
47209
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47210
|
+
id: string;
|
|
47211
|
+
};
|
|
47212
|
+
}, {
|
|
47213
|
+
job: {
|
|
47214
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47215
|
+
id: string;
|
|
47216
|
+
};
|
|
47217
|
+
}>;
|
|
47218
|
+
type DTOExportJobResponseLegacy = z.infer<typeof DTOExportJobResponseLegacy>;
|
|
47112
47219
|
declare const DTOExportJobCreatedBy: z.ZodObject<{
|
|
47113
47220
|
userId: z.ZodString;
|
|
47114
47221
|
userName: z.ZodString;
|
|
@@ -83876,6 +83983,107 @@ declare class RequestExecutor {
|
|
|
83876
83983
|
declare class ExportersEndpoint {
|
|
83877
83984
|
private readonly requestExecutor;
|
|
83878
83985
|
constructor(requestExecutor: RequestExecutor);
|
|
83986
|
+
add(workspaceId: string, body: DTOExporterCreateInput): Promise<{
|
|
83987
|
+
membership: {
|
|
83988
|
+
workspaceId: string;
|
|
83989
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
83990
|
+
exporterId: string;
|
|
83991
|
+
};
|
|
83992
|
+
exporter: {
|
|
83993
|
+
isPrivate: boolean;
|
|
83994
|
+
id: string;
|
|
83995
|
+
name: string;
|
|
83996
|
+
source: "upload" | "git";
|
|
83997
|
+
exporterType: "code" | "documentation";
|
|
83998
|
+
isDefaultDocumentationExporter: boolean;
|
|
83999
|
+
configurationProperties: {
|
|
84000
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84001
|
+
label: string;
|
|
84002
|
+
key: string;
|
|
84003
|
+
category: string;
|
|
84004
|
+
values?: string[] | null | undefined;
|
|
84005
|
+
description?: string | null | undefined;
|
|
84006
|
+
default?: string | number | boolean | null | undefined;
|
|
84007
|
+
inputType?: "code" | "plain" | undefined;
|
|
84008
|
+
isMultiline?: boolean | null | undefined;
|
|
84009
|
+
}[];
|
|
84010
|
+
customBlocks: {
|
|
84011
|
+
key: string;
|
|
84012
|
+
properties: {
|
|
84013
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84014
|
+
label: string;
|
|
84015
|
+
key: string;
|
|
84016
|
+
values?: string[] | null | undefined;
|
|
84017
|
+
description?: string | null | undefined;
|
|
84018
|
+
default?: string | number | boolean | null | undefined;
|
|
84019
|
+
inputType?: "code" | "plain" | undefined;
|
|
84020
|
+
isMultiline?: boolean | null | undefined;
|
|
84021
|
+
}[];
|
|
84022
|
+
description?: string | undefined;
|
|
84023
|
+
category?: string | undefined;
|
|
84024
|
+
title?: string | undefined;
|
|
84025
|
+
iconURL?: string | undefined;
|
|
84026
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
84027
|
+
}[];
|
|
84028
|
+
blockVariants: Record<string, {
|
|
84029
|
+
name: string;
|
|
84030
|
+
key: string;
|
|
84031
|
+
description?: string | undefined;
|
|
84032
|
+
isDefault?: boolean | undefined;
|
|
84033
|
+
thumbnailURL?: string | undefined;
|
|
84034
|
+
}[]>;
|
|
84035
|
+
usesBrands: boolean;
|
|
84036
|
+
usesThemes: boolean;
|
|
84037
|
+
properties?: ({
|
|
84038
|
+
options: string[];
|
|
84039
|
+
type: "Enum";
|
|
84040
|
+
description: string;
|
|
84041
|
+
title: string;
|
|
84042
|
+
key: string;
|
|
84043
|
+
default: string;
|
|
84044
|
+
} | {
|
|
84045
|
+
type: "Boolean";
|
|
84046
|
+
description: string;
|
|
84047
|
+
title: string;
|
|
84048
|
+
key: string;
|
|
84049
|
+
default: boolean;
|
|
84050
|
+
} | {
|
|
84051
|
+
type: "String";
|
|
84052
|
+
description: string;
|
|
84053
|
+
title: string;
|
|
84054
|
+
key: string;
|
|
84055
|
+
default: string;
|
|
84056
|
+
} | {
|
|
84057
|
+
type: "Number";
|
|
84058
|
+
description: string;
|
|
84059
|
+
title: string;
|
|
84060
|
+
key: string;
|
|
84061
|
+
default: number;
|
|
84062
|
+
} | {
|
|
84063
|
+
type: "Array";
|
|
84064
|
+
description: string;
|
|
84065
|
+
title: string;
|
|
84066
|
+
key: string;
|
|
84067
|
+
default: string[];
|
|
84068
|
+
} | {
|
|
84069
|
+
type: "Object";
|
|
84070
|
+
description: string;
|
|
84071
|
+
title: string;
|
|
84072
|
+
key: string;
|
|
84073
|
+
default: Record<string, string>;
|
|
84074
|
+
allowedKeys?: {
|
|
84075
|
+
options: string[];
|
|
84076
|
+
} | undefined;
|
|
84077
|
+
allowedValues?: {
|
|
84078
|
+
options: string[];
|
|
84079
|
+
} | undefined;
|
|
84080
|
+
})[] | undefined;
|
|
84081
|
+
iconURL?: string | undefined;
|
|
84082
|
+
gitUrl?: string | undefined;
|
|
84083
|
+
gitBranch?: string | undefined;
|
|
84084
|
+
gitDirectory?: string | undefined;
|
|
84085
|
+
};
|
|
84086
|
+
}>;
|
|
83879
84087
|
list(workspaceId: string, query: DTOExporterListQuery): Promise<{
|
|
83880
84088
|
membership: {
|
|
83881
84089
|
workspaceId: string;
|
|
@@ -83977,6 +84185,119 @@ declare class ExportersEndpoint {
|
|
|
83977
84185
|
gitDirectory?: string | undefined;
|
|
83978
84186
|
}[];
|
|
83979
84187
|
}>;
|
|
84188
|
+
get(workspaceId: string, exporterId: string): Promise<{
|
|
84189
|
+
membership: {
|
|
84190
|
+
workspaceId: string;
|
|
84191
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
84192
|
+
exporterId: string;
|
|
84193
|
+
};
|
|
84194
|
+
exporter: {
|
|
84195
|
+
isPrivate: boolean;
|
|
84196
|
+
id: string;
|
|
84197
|
+
name: string;
|
|
84198
|
+
source: "upload" | "git";
|
|
84199
|
+
exporterType: "code" | "documentation";
|
|
84200
|
+
isDefaultDocumentationExporter: boolean;
|
|
84201
|
+
configurationProperties: {
|
|
84202
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84203
|
+
label: string;
|
|
84204
|
+
key: string;
|
|
84205
|
+
category: string;
|
|
84206
|
+
values?: string[] | null | undefined;
|
|
84207
|
+
description?: string | null | undefined;
|
|
84208
|
+
default?: string | number | boolean | null | undefined;
|
|
84209
|
+
inputType?: "code" | "plain" | undefined;
|
|
84210
|
+
isMultiline?: boolean | null | undefined;
|
|
84211
|
+
}[];
|
|
84212
|
+
customBlocks: {
|
|
84213
|
+
key: string;
|
|
84214
|
+
properties: {
|
|
84215
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84216
|
+
label: string;
|
|
84217
|
+
key: string;
|
|
84218
|
+
values?: string[] | null | undefined;
|
|
84219
|
+
description?: string | null | undefined;
|
|
84220
|
+
default?: string | number | boolean | null | undefined;
|
|
84221
|
+
inputType?: "code" | "plain" | undefined;
|
|
84222
|
+
isMultiline?: boolean | null | undefined;
|
|
84223
|
+
}[];
|
|
84224
|
+
description?: string | undefined;
|
|
84225
|
+
category?: string | undefined;
|
|
84226
|
+
title?: string | undefined;
|
|
84227
|
+
iconURL?: string | undefined;
|
|
84228
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
84229
|
+
}[];
|
|
84230
|
+
blockVariants: Record<string, {
|
|
84231
|
+
name: string;
|
|
84232
|
+
key: string;
|
|
84233
|
+
description?: string | undefined;
|
|
84234
|
+
isDefault?: boolean | undefined;
|
|
84235
|
+
thumbnailURL?: string | undefined;
|
|
84236
|
+
}[]>;
|
|
84237
|
+
usesBrands: boolean;
|
|
84238
|
+
usesThemes: boolean;
|
|
84239
|
+
properties?: ({
|
|
84240
|
+
options: string[];
|
|
84241
|
+
type: "Enum";
|
|
84242
|
+
description: string;
|
|
84243
|
+
title: string;
|
|
84244
|
+
key: string;
|
|
84245
|
+
default: string;
|
|
84246
|
+
} | {
|
|
84247
|
+
type: "Boolean";
|
|
84248
|
+
description: string;
|
|
84249
|
+
title: string;
|
|
84250
|
+
key: string;
|
|
84251
|
+
default: boolean;
|
|
84252
|
+
} | {
|
|
84253
|
+
type: "String";
|
|
84254
|
+
description: string;
|
|
84255
|
+
title: string;
|
|
84256
|
+
key: string;
|
|
84257
|
+
default: string;
|
|
84258
|
+
} | {
|
|
84259
|
+
type: "Number";
|
|
84260
|
+
description: string;
|
|
84261
|
+
title: string;
|
|
84262
|
+
key: string;
|
|
84263
|
+
default: number;
|
|
84264
|
+
} | {
|
|
84265
|
+
type: "Array";
|
|
84266
|
+
description: string;
|
|
84267
|
+
title: string;
|
|
84268
|
+
key: string;
|
|
84269
|
+
default: string[];
|
|
84270
|
+
} | {
|
|
84271
|
+
type: "Object";
|
|
84272
|
+
description: string;
|
|
84273
|
+
title: string;
|
|
84274
|
+
key: string;
|
|
84275
|
+
default: Record<string, string>;
|
|
84276
|
+
allowedKeys?: {
|
|
84277
|
+
options: string[];
|
|
84278
|
+
} | undefined;
|
|
84279
|
+
allowedValues?: {
|
|
84280
|
+
options: string[];
|
|
84281
|
+
} | undefined;
|
|
84282
|
+
})[] | undefined;
|
|
84283
|
+
iconURL?: string | undefined;
|
|
84284
|
+
gitUrl?: string | undefined;
|
|
84285
|
+
gitBranch?: string | undefined;
|
|
84286
|
+
gitDirectory?: string | undefined;
|
|
84287
|
+
};
|
|
84288
|
+
}>;
|
|
84289
|
+
}
|
|
84290
|
+
|
|
84291
|
+
declare class ExporterJobsEndpoint {
|
|
84292
|
+
private readonly requestExecutor;
|
|
84293
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84294
|
+
list(workspaceId: string): Promise<any>;
|
|
84295
|
+
get(workspaceId: string, jobId: string): Promise<{
|
|
84296
|
+
job: {
|
|
84297
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
84298
|
+
id: string;
|
|
84299
|
+
};
|
|
84300
|
+
}>;
|
|
83980
84301
|
}
|
|
83981
84302
|
|
|
83982
84303
|
declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
@@ -86988,6 +87309,7 @@ declare class CodegenEndpoint {
|
|
|
86988
87309
|
private readonly requestExecutor;
|
|
86989
87310
|
readonly exporters: ExportersEndpoint;
|
|
86990
87311
|
readonly pipelines: PipelinesEndpoint;
|
|
87312
|
+
readonly jobs: ExporterJobsEndpoint;
|
|
86991
87313
|
constructor(requestExecutor: RequestExecutor);
|
|
86992
87314
|
}
|
|
86993
87315
|
|
|
@@ -94366,4 +94688,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
94366
94688
|
|
|
94367
94689
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
94368
94690
|
|
|
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 };
|
|
94691
|
+
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, ExporterJobsEndpoint, 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 };
|