@supernova-studio/client 0.58.20 → 0.58.22
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 +104 -4
- package/dist/index.d.ts +104 -4
- package/dist/index.js +57 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +56 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/conversion/documentation/documentation-page-v2-to-dto.ts +14 -8
- package/src/api/dto/elements/documentation/page-v2.ts +3 -0
- package/src/yjs/version-room/base.ts +15 -0
- package/src/yjs/version-room/frontend.ts +3 -1
package/dist/index.d.mts
CHANGED
|
@@ -23232,6 +23232,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
23232
23232
|
pagePersistentId: string;
|
|
23233
23233
|
updatedByUserId: string;
|
|
23234
23234
|
}>>;
|
|
23235
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
23235
23236
|
type: z.ZodLiteral<"Page">;
|
|
23236
23237
|
}, "strip", z.ZodTypeAny, {
|
|
23237
23238
|
path: string;
|
|
@@ -23337,6 +23338,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
23337
23338
|
lastPublishedByUserId: string;
|
|
23338
23339
|
lastPublishedAt: Date;
|
|
23339
23340
|
} | undefined;
|
|
23341
|
+
liveblocksRoomId?: string | undefined;
|
|
23340
23342
|
}, {
|
|
23341
23343
|
path: string;
|
|
23342
23344
|
type: "Page";
|
|
@@ -23441,6 +23443,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
23441
23443
|
lastPublishedByUserId: string;
|
|
23442
23444
|
lastPublishedAt: Date;
|
|
23443
23445
|
} | undefined;
|
|
23446
|
+
liveblocksRoomId?: string | undefined;
|
|
23444
23447
|
}>;
|
|
23445
23448
|
pageContentHash: z.ZodString;
|
|
23446
23449
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
@@ -23553,6 +23556,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
23553
23556
|
lastPublishedByUserId: string;
|
|
23554
23557
|
lastPublishedAt: Date;
|
|
23555
23558
|
} | undefined;
|
|
23559
|
+
liveblocksRoomId?: string | undefined;
|
|
23556
23560
|
};
|
|
23557
23561
|
pageContentHash: string;
|
|
23558
23562
|
reason: "Publish" | "Deletion";
|
|
@@ -23665,6 +23669,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
23665
23669
|
lastPublishedByUserId: string;
|
|
23666
23670
|
lastPublishedAt: Date;
|
|
23667
23671
|
} | undefined;
|
|
23672
|
+
liveblocksRoomId?: string | undefined;
|
|
23668
23673
|
};
|
|
23669
23674
|
pageContentHash: string;
|
|
23670
23675
|
reason: "Publish" | "Deletion";
|
|
@@ -29874,6 +29879,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
29874
29879
|
pagePersistentId: string;
|
|
29875
29880
|
updatedByUserId: string;
|
|
29876
29881
|
}>>;
|
|
29882
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
29877
29883
|
type: z.ZodLiteral<"Page">;
|
|
29878
29884
|
}, {
|
|
29879
29885
|
/** Defined when a page has changed since last publish and can be included into a partial publish */
|
|
@@ -30342,6 +30348,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
30342
30348
|
lastPublishedByUserId: string;
|
|
30343
30349
|
lastPublishedAt: Date;
|
|
30344
30350
|
} | undefined;
|
|
30351
|
+
liveblocksRoomId?: string | undefined;
|
|
30345
30352
|
}, {
|
|
30346
30353
|
path: string;
|
|
30347
30354
|
type: "Page";
|
|
@@ -30446,6 +30453,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
30446
30453
|
lastPublishedByUserId: string;
|
|
30447
30454
|
lastPublishedAt: Date;
|
|
30448
30455
|
} | undefined;
|
|
30456
|
+
liveblocksRoomId?: string | undefined;
|
|
30449
30457
|
}>, "many">;
|
|
30450
30458
|
groups: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
30451
30459
|
id: z.ZodString;
|
|
@@ -32027,6 +32035,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
32027
32035
|
lastPublishedByUserId: string;
|
|
32028
32036
|
lastPublishedAt: Date;
|
|
32029
32037
|
} | undefined;
|
|
32038
|
+
liveblocksRoomId?: string | undefined;
|
|
32030
32039
|
}[];
|
|
32031
32040
|
}, {
|
|
32032
32041
|
groups: {
|
|
@@ -32235,6 +32244,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
32235
32244
|
lastPublishedByUserId: string;
|
|
32236
32245
|
lastPublishedAt: Date;
|
|
32237
32246
|
} | undefined;
|
|
32247
|
+
liveblocksRoomId?: string | undefined;
|
|
32238
32248
|
}[];
|
|
32239
32249
|
}>;
|
|
32240
32250
|
type DTODocumentationHierarchyV2 = z.infer<typeof DTODocumentationHierarchyV2>;
|
|
@@ -36580,6 +36590,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
36580
36590
|
}[];
|
|
36581
36591
|
} | null | undefined;
|
|
36582
36592
|
imageAlt?: string | null | undefined;
|
|
36593
|
+
openLightbox?: boolean | null | undefined;
|
|
36594
|
+
isBordered?: boolean | null | undefined;
|
|
36583
36595
|
numberOfColumns?: number | null | undefined;
|
|
36584
36596
|
itemBackgroundColor?: {
|
|
36585
36597
|
value: string;
|
|
@@ -36669,6 +36681,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
36669
36681
|
imageAlt?: string | null | undefined;
|
|
36670
36682
|
imageCaption?: string | null | undefined;
|
|
36671
36683
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
36684
|
+
openLightbox?: boolean | null | undefined;
|
|
36685
|
+
isBordered?: boolean | null | undefined;
|
|
36672
36686
|
} | null | undefined;
|
|
36673
36687
|
customBlockKey?: string | null | undefined;
|
|
36674
36688
|
customBlockProperties?: {
|
|
@@ -36686,6 +36700,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
36686
36700
|
backgroundColor?: {
|
|
36687
36701
|
value: string;
|
|
36688
36702
|
} | null | undefined;
|
|
36703
|
+
previewContainerHeight?: number | null | undefined;
|
|
36689
36704
|
} | null | undefined;
|
|
36690
36705
|
figmaFrames?: {
|
|
36691
36706
|
persistentId: string;
|
|
@@ -36746,10 +36761,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
36746
36761
|
selectedThemeIds: string[];
|
|
36747
36762
|
}[] | null | undefined;
|
|
36748
36763
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
36764
|
+
tokenBlockConfig?: {
|
|
36765
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
36766
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
36767
|
+
} | null | undefined;
|
|
36768
|
+
assetBlockConfig?: {
|
|
36769
|
+
showSearch?: boolean | null | undefined;
|
|
36770
|
+
showAssetDescription?: boolean | null | undefined;
|
|
36771
|
+
} | null | undefined;
|
|
36749
36772
|
figmaComponentsBlockConfig?: {
|
|
36750
36773
|
backgroundColor?: {
|
|
36751
36774
|
value: string;
|
|
36752
36775
|
} | null | undefined;
|
|
36776
|
+
previewContainerHeight?: number | null | undefined;
|
|
36753
36777
|
showComponentName?: boolean | null | undefined;
|
|
36754
36778
|
showComponentDescription?: boolean | null | undefined;
|
|
36755
36779
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -37172,6 +37196,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37172
37196
|
}[];
|
|
37173
37197
|
} | null | undefined;
|
|
37174
37198
|
imageAlt?: string | null | undefined;
|
|
37199
|
+
openLightbox?: boolean | null | undefined;
|
|
37200
|
+
isBordered?: boolean | null | undefined;
|
|
37175
37201
|
numberOfColumns?: number | null | undefined;
|
|
37176
37202
|
itemBackgroundColor?: {
|
|
37177
37203
|
value: string;
|
|
@@ -37261,6 +37287,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37261
37287
|
imageAlt?: string | null | undefined;
|
|
37262
37288
|
imageCaption?: string | null | undefined;
|
|
37263
37289
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
37290
|
+
openLightbox?: boolean | null | undefined;
|
|
37291
|
+
isBordered?: boolean | null | undefined;
|
|
37264
37292
|
} | null | undefined;
|
|
37265
37293
|
customBlockKey?: string | null | undefined;
|
|
37266
37294
|
customBlockProperties?: {
|
|
@@ -37278,6 +37306,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37278
37306
|
backgroundColor?: {
|
|
37279
37307
|
value: string;
|
|
37280
37308
|
} | null | undefined;
|
|
37309
|
+
previewContainerHeight?: number | null | undefined;
|
|
37281
37310
|
} | null | undefined;
|
|
37282
37311
|
figmaFrames?: {
|
|
37283
37312
|
persistentId: string;
|
|
@@ -37338,10 +37367,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37338
37367
|
selectedThemeIds: string[];
|
|
37339
37368
|
}[] | null | undefined;
|
|
37340
37369
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
37370
|
+
tokenBlockConfig?: {
|
|
37371
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
37372
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
37373
|
+
} | null | undefined;
|
|
37374
|
+
assetBlockConfig?: {
|
|
37375
|
+
showSearch?: boolean | null | undefined;
|
|
37376
|
+
showAssetDescription?: boolean | null | undefined;
|
|
37377
|
+
} | null | undefined;
|
|
37341
37378
|
figmaComponentsBlockConfig?: {
|
|
37342
37379
|
backgroundColor?: {
|
|
37343
37380
|
value: string;
|
|
37344
37381
|
} | null | undefined;
|
|
37382
|
+
previewContainerHeight?: number | null | undefined;
|
|
37345
37383
|
showComponentName?: boolean | null | undefined;
|
|
37346
37384
|
showComponentDescription?: boolean | null | undefined;
|
|
37347
37385
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -37988,6 +38026,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37988
38026
|
}[];
|
|
37989
38027
|
} | null | undefined;
|
|
37990
38028
|
imageAlt?: string | null | undefined;
|
|
38029
|
+
openLightbox?: boolean | null | undefined;
|
|
38030
|
+
isBordered?: boolean | null | undefined;
|
|
37991
38031
|
numberOfColumns?: number | null | undefined;
|
|
37992
38032
|
itemBackgroundColor?: {
|
|
37993
38033
|
value: string;
|
|
@@ -38077,6 +38117,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38077
38117
|
imageAlt?: string | null | undefined;
|
|
38078
38118
|
imageCaption?: string | null | undefined;
|
|
38079
38119
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
38120
|
+
openLightbox?: boolean | null | undefined;
|
|
38121
|
+
isBordered?: boolean | null | undefined;
|
|
38080
38122
|
} | null | undefined;
|
|
38081
38123
|
customBlockKey?: string | null | undefined;
|
|
38082
38124
|
customBlockProperties?: {
|
|
@@ -38094,6 +38136,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38094
38136
|
backgroundColor?: {
|
|
38095
38137
|
value: string;
|
|
38096
38138
|
} | null | undefined;
|
|
38139
|
+
previewContainerHeight?: number | null | undefined;
|
|
38097
38140
|
} | null | undefined;
|
|
38098
38141
|
figmaFrames?: {
|
|
38099
38142
|
persistentId: string;
|
|
@@ -38154,10 +38197,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38154
38197
|
selectedThemeIds: string[];
|
|
38155
38198
|
}[] | null | undefined;
|
|
38156
38199
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38200
|
+
tokenBlockConfig?: {
|
|
38201
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
38202
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
38203
|
+
} | null | undefined;
|
|
38204
|
+
assetBlockConfig?: {
|
|
38205
|
+
showSearch?: boolean | null | undefined;
|
|
38206
|
+
showAssetDescription?: boolean | null | undefined;
|
|
38207
|
+
} | null | undefined;
|
|
38157
38208
|
figmaComponentsBlockConfig?: {
|
|
38158
38209
|
backgroundColor?: {
|
|
38159
38210
|
value: string;
|
|
38160
38211
|
} | null | undefined;
|
|
38212
|
+
previewContainerHeight?: number | null | undefined;
|
|
38161
38213
|
showComponentName?: boolean | null | undefined;
|
|
38162
38214
|
showComponentDescription?: boolean | null | undefined;
|
|
38163
38215
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38233,6 +38285,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38233
38285
|
}[];
|
|
38234
38286
|
} | null | undefined;
|
|
38235
38287
|
imageAlt?: string | null | undefined;
|
|
38288
|
+
openLightbox?: boolean | null | undefined;
|
|
38289
|
+
isBordered?: boolean | null | undefined;
|
|
38236
38290
|
numberOfColumns?: number | null | undefined;
|
|
38237
38291
|
itemBackgroundColor?: {
|
|
38238
38292
|
value: string;
|
|
@@ -38322,6 +38376,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38322
38376
|
imageAlt?: string | null | undefined;
|
|
38323
38377
|
imageCaption?: string | null | undefined;
|
|
38324
38378
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
38379
|
+
openLightbox?: boolean | null | undefined;
|
|
38380
|
+
isBordered?: boolean | null | undefined;
|
|
38325
38381
|
} | null | undefined;
|
|
38326
38382
|
customBlockKey?: string | null | undefined;
|
|
38327
38383
|
customBlockProperties?: {
|
|
@@ -38339,6 +38395,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38339
38395
|
backgroundColor?: {
|
|
38340
38396
|
value: string;
|
|
38341
38397
|
} | null | undefined;
|
|
38398
|
+
previewContainerHeight?: number | null | undefined;
|
|
38342
38399
|
} | null | undefined;
|
|
38343
38400
|
figmaFrames?: {
|
|
38344
38401
|
persistentId: string;
|
|
@@ -38399,10 +38456,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38399
38456
|
selectedThemeIds: string[];
|
|
38400
38457
|
}[] | null | undefined;
|
|
38401
38458
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38459
|
+
tokenBlockConfig?: {
|
|
38460
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
38461
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
38462
|
+
} | null | undefined;
|
|
38463
|
+
assetBlockConfig?: {
|
|
38464
|
+
showSearch?: boolean | null | undefined;
|
|
38465
|
+
showAssetDescription?: boolean | null | undefined;
|
|
38466
|
+
} | null | undefined;
|
|
38402
38467
|
figmaComponentsBlockConfig?: {
|
|
38403
38468
|
backgroundColor?: {
|
|
38404
38469
|
value: string;
|
|
38405
38470
|
} | null | undefined;
|
|
38471
|
+
previewContainerHeight?: number | null | undefined;
|
|
38406
38472
|
showComponentName?: boolean | null | undefined;
|
|
38407
38473
|
showComponentDescription?: boolean | null | undefined;
|
|
38408
38474
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38596,6 +38662,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38596
38662
|
}[];
|
|
38597
38663
|
} | null | undefined;
|
|
38598
38664
|
imageAlt?: string | null | undefined;
|
|
38665
|
+
openLightbox?: boolean | null | undefined;
|
|
38666
|
+
isBordered?: boolean | null | undefined;
|
|
38599
38667
|
numberOfColumns?: number | null | undefined;
|
|
38600
38668
|
itemBackgroundColor?: {
|
|
38601
38669
|
value: string;
|
|
@@ -38685,6 +38753,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38685
38753
|
imageAlt?: string | null | undefined;
|
|
38686
38754
|
imageCaption?: string | null | undefined;
|
|
38687
38755
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
38756
|
+
openLightbox?: boolean | null | undefined;
|
|
38757
|
+
isBordered?: boolean | null | undefined;
|
|
38688
38758
|
} | null | undefined;
|
|
38689
38759
|
customBlockKey?: string | null | undefined;
|
|
38690
38760
|
customBlockProperties?: {
|
|
@@ -38702,6 +38772,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38702
38772
|
backgroundColor?: {
|
|
38703
38773
|
value: string;
|
|
38704
38774
|
} | null | undefined;
|
|
38775
|
+
previewContainerHeight?: number | null | undefined;
|
|
38705
38776
|
} | null | undefined;
|
|
38706
38777
|
figmaFrames?: {
|
|
38707
38778
|
persistentId: string;
|
|
@@ -38762,10 +38833,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38762
38833
|
selectedThemeIds: string[];
|
|
38763
38834
|
}[] | null | undefined;
|
|
38764
38835
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38836
|
+
tokenBlockConfig?: {
|
|
38837
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
38838
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
38839
|
+
} | null | undefined;
|
|
38840
|
+
assetBlockConfig?: {
|
|
38841
|
+
showSearch?: boolean | null | undefined;
|
|
38842
|
+
showAssetDescription?: boolean | null | undefined;
|
|
38843
|
+
} | null | undefined;
|
|
38765
38844
|
figmaComponentsBlockConfig?: {
|
|
38766
38845
|
backgroundColor?: {
|
|
38767
38846
|
value: string;
|
|
38768
38847
|
} | null | undefined;
|
|
38848
|
+
previewContainerHeight?: number | null | undefined;
|
|
38769
38849
|
showComponentName?: boolean | null | undefined;
|
|
38770
38850
|
showComponentDescription?: boolean | null | undefined;
|
|
38771
38851
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38841,6 +38921,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38841
38921
|
}[];
|
|
38842
38922
|
} | null | undefined;
|
|
38843
38923
|
imageAlt?: string | null | undefined;
|
|
38924
|
+
openLightbox?: boolean | null | undefined;
|
|
38925
|
+
isBordered?: boolean | null | undefined;
|
|
38844
38926
|
numberOfColumns?: number | null | undefined;
|
|
38845
38927
|
itemBackgroundColor?: {
|
|
38846
38928
|
value: string;
|
|
@@ -38930,6 +39012,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38930
39012
|
imageAlt?: string | null | undefined;
|
|
38931
39013
|
imageCaption?: string | null | undefined;
|
|
38932
39014
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
39015
|
+
openLightbox?: boolean | null | undefined;
|
|
39016
|
+
isBordered?: boolean | null | undefined;
|
|
38933
39017
|
} | null | undefined;
|
|
38934
39018
|
customBlockKey?: string | null | undefined;
|
|
38935
39019
|
customBlockProperties?: {
|
|
@@ -38947,6 +39031,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38947
39031
|
backgroundColor?: {
|
|
38948
39032
|
value: string;
|
|
38949
39033
|
} | null | undefined;
|
|
39034
|
+
previewContainerHeight?: number | null | undefined;
|
|
38950
39035
|
} | null | undefined;
|
|
38951
39036
|
figmaFrames?: {
|
|
38952
39037
|
persistentId: string;
|
|
@@ -39007,10 +39092,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39007
39092
|
selectedThemeIds: string[];
|
|
39008
39093
|
}[] | null | undefined;
|
|
39009
39094
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
39095
|
+
tokenBlockConfig?: {
|
|
39096
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
39097
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
39098
|
+
} | null | undefined;
|
|
39099
|
+
assetBlockConfig?: {
|
|
39100
|
+
showSearch?: boolean | null | undefined;
|
|
39101
|
+
showAssetDescription?: boolean | null | undefined;
|
|
39102
|
+
} | null | undefined;
|
|
39010
39103
|
figmaComponentsBlockConfig?: {
|
|
39011
39104
|
backgroundColor?: {
|
|
39012
39105
|
value: string;
|
|
39013
39106
|
} | null | undefined;
|
|
39107
|
+
previewContainerHeight?: number | null | undefined;
|
|
39014
39108
|
showComponentName?: boolean | null | undefined;
|
|
39015
39109
|
showComponentDescription?: boolean | null | undefined;
|
|
39016
39110
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -39639,6 +39733,8 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
39639
39733
|
pagePersistentId: string;
|
|
39640
39734
|
updatedByUserId: string;
|
|
39641
39735
|
}>>;
|
|
39736
|
+
/** Id of the page document room */
|
|
39737
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
39642
39738
|
type: z.ZodLiteral<"Page">;
|
|
39643
39739
|
}, "strip", z.ZodTypeAny, {
|
|
39644
39740
|
path: string;
|
|
@@ -39744,6 +39840,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
39744
39840
|
lastPublishedByUserId: string;
|
|
39745
39841
|
lastPublishedAt: Date;
|
|
39746
39842
|
} | undefined;
|
|
39843
|
+
liveblocksRoomId?: string | undefined;
|
|
39747
39844
|
}, {
|
|
39748
39845
|
path: string;
|
|
39749
39846
|
type: "Page";
|
|
@@ -39848,6 +39945,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
39848
39945
|
lastPublishedByUserId: string;
|
|
39849
39946
|
lastPublishedAt: Date;
|
|
39850
39947
|
} | undefined;
|
|
39948
|
+
liveblocksRoomId?: string | undefined;
|
|
39851
39949
|
}>;
|
|
39852
39950
|
type DTODocumentationPageV2 = z.infer<typeof DTODocumentationPageV2>;
|
|
39853
39951
|
declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
@@ -83854,9 +83952,9 @@ declare function applyPrivacyConfigurationToNestedItems<PageType extends Documen
|
|
|
83854
83952
|
declare function documentationPagesToDTOV1(pages: DocumentationPageV1[], groups: DocumentationGroupV1[], routingVersion: string): DocumentationPageV1DTO[];
|
|
83855
83953
|
declare function documentationPagesFixedConfigurationToDTOV1(pages: DocumentationPageV1[], groups: DocumentationGroupV1[], routingVersion: string): DocumentationPageV1DTO[];
|
|
83856
83954
|
|
|
83857
|
-
declare function documentationPageToDTOV2(page: DocumentationPageV2, groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2;
|
|
83858
|
-
declare function documentationPagesToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2[];
|
|
83859
|
-
declare function documentationPagesFixedConfigurationToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2[];
|
|
83955
|
+
declare function documentationPageToDTOV2(page: DocumentationPageV2, groups: ElementGroup[], routingVersion: string, pageLiveblocksRoomIdMap: Map<string, string>): DTODocumentationPageV2;
|
|
83956
|
+
declare function documentationPagesToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string, pageLiveblocksRoomIdMap: Map<string, string>): DTODocumentationPageV2[];
|
|
83957
|
+
declare function documentationPagesFixedConfigurationToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string, pageLiveblocksRoomIdMap: Map<string, string>): DTODocumentationPageV2[];
|
|
83860
83958
|
|
|
83861
83959
|
declare function pipelineToDto(pipeline: Pipeline): DTOPipeline;
|
|
83862
83960
|
|
|
@@ -94557,6 +94655,8 @@ declare class VersionRoomBaseYDoc {
|
|
|
94557
94655
|
private setObjects;
|
|
94558
94656
|
private deleteObjects;
|
|
94559
94657
|
getDocumentationPageContentHashes(): Record<string, string>;
|
|
94658
|
+
getDocumentationPageLiveblocksRoomIds(): Record<string, string>;
|
|
94659
|
+
private get documentationPageLiveblocksRoomIdsYMap();
|
|
94560
94660
|
updateDocumentationPageContentHashes(hashes: Record<string, string>): void;
|
|
94561
94661
|
private get documentationPageContentHashesYMap();
|
|
94562
94662
|
updateApprovalStates(updates: DocumentationPageApproval[]): void;
|
|
@@ -94604,4 +94704,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
94604
94704
|
|
|
94605
94705
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
94606
94706
|
|
|
94607
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
94707
|
+
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 };
|