@supernova-studio/client 1.0.0-alpha.6 → 1.0.0-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +394 -8
- package/dist/index.d.ts +394 -8
- package/dist/index.js +173 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +509 -367
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1135,6 +1135,7 @@ type LocalDocsPageGroup = OmitStrict<ElementGroup, "id" | "brandPersistentId" |
|
|
|
1135
1135
|
};
|
|
1136
1136
|
declare class LocalStorage {
|
|
1137
1137
|
private readonly pages;
|
|
1138
|
+
private readonly liveblocksRoomIds;
|
|
1138
1139
|
private readonly deletedPageIds;
|
|
1139
1140
|
private readonly groups;
|
|
1140
1141
|
setPage(page: LocalDocsPage): void;
|
|
@@ -1144,6 +1145,9 @@ declare class LocalStorage {
|
|
|
1144
1145
|
getAllPages(): LocalDocsPage[];
|
|
1145
1146
|
getAllDeletedPages(): Set<string>;
|
|
1146
1147
|
removePage(persistentId: string): void;
|
|
1148
|
+
setPageLiveblocksRoomId(pagePersistentId: string, id: string): void;
|
|
1149
|
+
getPageLiveblocksRoomId(pagePersistentId: string): string | undefined;
|
|
1150
|
+
getAllPageLiveblocksRoomIds(): Map<string, string>;
|
|
1147
1151
|
}
|
|
1148
1152
|
|
|
1149
1153
|
declare const DocumentationHierarchySettings: z.ZodObject<{
|
|
@@ -1826,6 +1830,7 @@ type VersionRoomBaseYDocState = {
|
|
|
1826
1830
|
pages: VersionRoomDocsPage[];
|
|
1827
1831
|
pageSnapshots: DocumentationPageSnapshot[];
|
|
1828
1832
|
pageContentHashes: Record<string, string>;
|
|
1833
|
+
pageLiveblockRoomIds: Record<string, string>;
|
|
1829
1834
|
groups: VersionRoomDocsPageGroup[];
|
|
1830
1835
|
groupSnapshots: ElementGroupSnapshot[];
|
|
1831
1836
|
approvals: DocumentationPageApproval[];
|
|
@@ -23937,6 +23942,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
23937
23942
|
pagePersistentId: string;
|
|
23938
23943
|
updatedByUserId: string;
|
|
23939
23944
|
}>>;
|
|
23945
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
23940
23946
|
type: z.ZodLiteral<"Page">;
|
|
23941
23947
|
}, "strip", z.ZodTypeAny, {
|
|
23942
23948
|
path: string;
|
|
@@ -24042,6 +24048,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
24042
24048
|
lastPublishedByUserId: string;
|
|
24043
24049
|
lastPublishedAt: Date;
|
|
24044
24050
|
} | undefined;
|
|
24051
|
+
liveblocksRoomId?: string | undefined;
|
|
24045
24052
|
}, {
|
|
24046
24053
|
path: string;
|
|
24047
24054
|
type: "Page";
|
|
@@ -24146,6 +24153,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
24146
24153
|
lastPublishedByUserId: string;
|
|
24147
24154
|
lastPublishedAt: Date;
|
|
24148
24155
|
} | undefined;
|
|
24156
|
+
liveblocksRoomId?: string | undefined;
|
|
24149
24157
|
}>;
|
|
24150
24158
|
pageContentHash: z.ZodString;
|
|
24151
24159
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
@@ -24258,6 +24266,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
24258
24266
|
lastPublishedByUserId: string;
|
|
24259
24267
|
lastPublishedAt: Date;
|
|
24260
24268
|
} | undefined;
|
|
24269
|
+
liveblocksRoomId?: string | undefined;
|
|
24261
24270
|
};
|
|
24262
24271
|
pageContentHash: string;
|
|
24263
24272
|
reason: "Publish" | "Deletion";
|
|
@@ -24370,6 +24379,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
24370
24379
|
lastPublishedByUserId: string;
|
|
24371
24380
|
lastPublishedAt: Date;
|
|
24372
24381
|
} | undefined;
|
|
24382
|
+
liveblocksRoomId?: string | undefined;
|
|
24373
24383
|
};
|
|
24374
24384
|
pageContentHash: string;
|
|
24375
24385
|
reason: "Publish" | "Deletion";
|
|
@@ -25593,6 +25603,33 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25593
25603
|
}>;
|
|
25594
25604
|
type DTOPublishDocumentationResponse = z.infer<typeof DTOPublishDocumentationResponse>;
|
|
25595
25605
|
|
|
25606
|
+
declare const DTODocumentationPageRoom: z.ZodObject<{
|
|
25607
|
+
id: z.ZodString;
|
|
25608
|
+
}, "strip", z.ZodTypeAny, {
|
|
25609
|
+
id: string;
|
|
25610
|
+
}, {
|
|
25611
|
+
id: string;
|
|
25612
|
+
}>;
|
|
25613
|
+
type DTODocumentationPageRoom = z.infer<typeof DTODocumentationPageRoom>;
|
|
25614
|
+
declare const DTODocumentationPageRoomResponse: z.ZodObject<{
|
|
25615
|
+
room: z.ZodObject<{
|
|
25616
|
+
id: z.ZodString;
|
|
25617
|
+
}, "strip", z.ZodTypeAny, {
|
|
25618
|
+
id: string;
|
|
25619
|
+
}, {
|
|
25620
|
+
id: string;
|
|
25621
|
+
}>;
|
|
25622
|
+
}, "strip", z.ZodTypeAny, {
|
|
25623
|
+
room: {
|
|
25624
|
+
id: string;
|
|
25625
|
+
};
|
|
25626
|
+
}, {
|
|
25627
|
+
room: {
|
|
25628
|
+
id: string;
|
|
25629
|
+
};
|
|
25630
|
+
}>;
|
|
25631
|
+
type DTODocumentationPageRoomResponse = z.infer<typeof DTODocumentationPageRoomResponse>;
|
|
25632
|
+
|
|
25596
25633
|
declare const DTOFigmaComponentGroup: zod__default.ZodObject<{
|
|
25597
25634
|
id: zod__default.ZodString;
|
|
25598
25635
|
designSystemVersionId: zod__default.ZodString;
|
|
@@ -30552,6 +30589,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
30552
30589
|
pagePersistentId: string;
|
|
30553
30590
|
updatedByUserId: string;
|
|
30554
30591
|
}>>;
|
|
30592
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
30555
30593
|
type: z.ZodLiteral<"Page">;
|
|
30556
30594
|
}, {
|
|
30557
30595
|
/** Defined when a page has changed since last publish and can be included into a partial publish */
|
|
@@ -31020,6 +31058,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
31020
31058
|
lastPublishedByUserId: string;
|
|
31021
31059
|
lastPublishedAt: Date;
|
|
31022
31060
|
} | undefined;
|
|
31061
|
+
liveblocksRoomId?: string | undefined;
|
|
31023
31062
|
}, {
|
|
31024
31063
|
path: string;
|
|
31025
31064
|
type: "Page";
|
|
@@ -31124,6 +31163,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
31124
31163
|
lastPublishedByUserId: string;
|
|
31125
31164
|
lastPublishedAt: Date;
|
|
31126
31165
|
} | undefined;
|
|
31166
|
+
liveblocksRoomId?: string | undefined;
|
|
31127
31167
|
}>, "many">;
|
|
31128
31168
|
groups: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
31129
31169
|
id: z.ZodString;
|
|
@@ -32705,6 +32745,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
32705
32745
|
lastPublishedByUserId: string;
|
|
32706
32746
|
lastPublishedAt: Date;
|
|
32707
32747
|
} | undefined;
|
|
32748
|
+
liveblocksRoomId?: string | undefined;
|
|
32708
32749
|
}[];
|
|
32709
32750
|
}, {
|
|
32710
32751
|
groups: {
|
|
@@ -32913,6 +32954,7 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
32913
32954
|
lastPublishedByUserId: string;
|
|
32914
32955
|
lastPublishedAt: Date;
|
|
32915
32956
|
} | undefined;
|
|
32957
|
+
liveblocksRoomId?: string | undefined;
|
|
32916
32958
|
}[];
|
|
32917
32959
|
}>;
|
|
32918
32960
|
type DTODocumentationHierarchyV2 = z.infer<typeof DTODocumentationHierarchyV2>;
|
|
@@ -37258,6 +37300,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37258
37300
|
}[];
|
|
37259
37301
|
} | null | undefined;
|
|
37260
37302
|
imageAlt?: string | null | undefined;
|
|
37303
|
+
openLightbox?: boolean | null | undefined;
|
|
37304
|
+
isBordered?: boolean | null | undefined;
|
|
37261
37305
|
numberOfColumns?: number | null | undefined;
|
|
37262
37306
|
itemBackgroundColor?: {
|
|
37263
37307
|
value: string;
|
|
@@ -37347,6 +37391,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37347
37391
|
imageAlt?: string | null | undefined;
|
|
37348
37392
|
imageCaption?: string | null | undefined;
|
|
37349
37393
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
37394
|
+
openLightbox?: boolean | null | undefined;
|
|
37395
|
+
isBordered?: boolean | null | undefined;
|
|
37350
37396
|
} | null | undefined;
|
|
37351
37397
|
customBlockKey?: string | null | undefined;
|
|
37352
37398
|
customBlockProperties?: {
|
|
@@ -37364,6 +37410,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37364
37410
|
backgroundColor?: {
|
|
37365
37411
|
value: string;
|
|
37366
37412
|
} | null | undefined;
|
|
37413
|
+
previewContainerHeight?: number | null | undefined;
|
|
37367
37414
|
} | null | undefined;
|
|
37368
37415
|
figmaFrames?: {
|
|
37369
37416
|
persistentId: string;
|
|
@@ -37424,10 +37471,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37424
37471
|
selectedThemeIds: string[];
|
|
37425
37472
|
}[] | null | undefined;
|
|
37426
37473
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
37474
|
+
tokenBlockConfig?: {
|
|
37475
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
37476
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
37477
|
+
} | null | undefined;
|
|
37478
|
+
assetBlockConfig?: {
|
|
37479
|
+
showSearch?: boolean | null | undefined;
|
|
37480
|
+
showAssetDescription?: boolean | null | undefined;
|
|
37481
|
+
} | null | undefined;
|
|
37427
37482
|
figmaComponentsBlockConfig?: {
|
|
37428
37483
|
backgroundColor?: {
|
|
37429
37484
|
value: string;
|
|
37430
37485
|
} | null | undefined;
|
|
37486
|
+
previewContainerHeight?: number | null | undefined;
|
|
37431
37487
|
showComponentName?: boolean | null | undefined;
|
|
37432
37488
|
showComponentDescription?: boolean | null | undefined;
|
|
37433
37489
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -37850,6 +37906,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37850
37906
|
}[];
|
|
37851
37907
|
} | null | undefined;
|
|
37852
37908
|
imageAlt?: string | null | undefined;
|
|
37909
|
+
openLightbox?: boolean | null | undefined;
|
|
37910
|
+
isBordered?: boolean | null | undefined;
|
|
37853
37911
|
numberOfColumns?: number | null | undefined;
|
|
37854
37912
|
itemBackgroundColor?: {
|
|
37855
37913
|
value: string;
|
|
@@ -37939,6 +37997,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37939
37997
|
imageAlt?: string | null | undefined;
|
|
37940
37998
|
imageCaption?: string | null | undefined;
|
|
37941
37999
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
38000
|
+
openLightbox?: boolean | null | undefined;
|
|
38001
|
+
isBordered?: boolean | null | undefined;
|
|
37942
38002
|
} | null | undefined;
|
|
37943
38003
|
customBlockKey?: string | null | undefined;
|
|
37944
38004
|
customBlockProperties?: {
|
|
@@ -37956,6 +38016,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
37956
38016
|
backgroundColor?: {
|
|
37957
38017
|
value: string;
|
|
37958
38018
|
} | null | undefined;
|
|
38019
|
+
previewContainerHeight?: number | null | undefined;
|
|
37959
38020
|
} | null | undefined;
|
|
37960
38021
|
figmaFrames?: {
|
|
37961
38022
|
persistentId: string;
|
|
@@ -38016,10 +38077,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38016
38077
|
selectedThemeIds: string[];
|
|
38017
38078
|
}[] | null | undefined;
|
|
38018
38079
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38080
|
+
tokenBlockConfig?: {
|
|
38081
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
38082
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
38083
|
+
} | null | undefined;
|
|
38084
|
+
assetBlockConfig?: {
|
|
38085
|
+
showSearch?: boolean | null | undefined;
|
|
38086
|
+
showAssetDescription?: boolean | null | undefined;
|
|
38087
|
+
} | null | undefined;
|
|
38019
38088
|
figmaComponentsBlockConfig?: {
|
|
38020
38089
|
backgroundColor?: {
|
|
38021
38090
|
value: string;
|
|
38022
38091
|
} | null | undefined;
|
|
38092
|
+
previewContainerHeight?: number | null | undefined;
|
|
38023
38093
|
showComponentName?: boolean | null | undefined;
|
|
38024
38094
|
showComponentDescription?: boolean | null | undefined;
|
|
38025
38095
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38666,6 +38736,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38666
38736
|
}[];
|
|
38667
38737
|
} | null | undefined;
|
|
38668
38738
|
imageAlt?: string | null | undefined;
|
|
38739
|
+
openLightbox?: boolean | null | undefined;
|
|
38740
|
+
isBordered?: boolean | null | undefined;
|
|
38669
38741
|
numberOfColumns?: number | null | undefined;
|
|
38670
38742
|
itemBackgroundColor?: {
|
|
38671
38743
|
value: string;
|
|
@@ -38755,6 +38827,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38755
38827
|
imageAlt?: string | null | undefined;
|
|
38756
38828
|
imageCaption?: string | null | undefined;
|
|
38757
38829
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
38830
|
+
openLightbox?: boolean | null | undefined;
|
|
38831
|
+
isBordered?: boolean | null | undefined;
|
|
38758
38832
|
} | null | undefined;
|
|
38759
38833
|
customBlockKey?: string | null | undefined;
|
|
38760
38834
|
customBlockProperties?: {
|
|
@@ -38772,6 +38846,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38772
38846
|
backgroundColor?: {
|
|
38773
38847
|
value: string;
|
|
38774
38848
|
} | null | undefined;
|
|
38849
|
+
previewContainerHeight?: number | null | undefined;
|
|
38775
38850
|
} | null | undefined;
|
|
38776
38851
|
figmaFrames?: {
|
|
38777
38852
|
persistentId: string;
|
|
@@ -38832,10 +38907,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38832
38907
|
selectedThemeIds: string[];
|
|
38833
38908
|
}[] | null | undefined;
|
|
38834
38909
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38910
|
+
tokenBlockConfig?: {
|
|
38911
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
38912
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
38913
|
+
} | null | undefined;
|
|
38914
|
+
assetBlockConfig?: {
|
|
38915
|
+
showSearch?: boolean | null | undefined;
|
|
38916
|
+
showAssetDescription?: boolean | null | undefined;
|
|
38917
|
+
} | null | undefined;
|
|
38835
38918
|
figmaComponentsBlockConfig?: {
|
|
38836
38919
|
backgroundColor?: {
|
|
38837
38920
|
value: string;
|
|
38838
38921
|
} | null | undefined;
|
|
38922
|
+
previewContainerHeight?: number | null | undefined;
|
|
38839
38923
|
showComponentName?: boolean | null | undefined;
|
|
38840
38924
|
showComponentDescription?: boolean | null | undefined;
|
|
38841
38925
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38911,6 +38995,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
38911
38995
|
}[];
|
|
38912
38996
|
} | null | undefined;
|
|
38913
38997
|
imageAlt?: string | null | undefined;
|
|
38998
|
+
openLightbox?: boolean | null | undefined;
|
|
38999
|
+
isBordered?: boolean | null | undefined;
|
|
38914
39000
|
numberOfColumns?: number | null | undefined;
|
|
38915
39001
|
itemBackgroundColor?: {
|
|
38916
39002
|
value: string;
|
|
@@ -39000,6 +39086,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39000
39086
|
imageAlt?: string | null | undefined;
|
|
39001
39087
|
imageCaption?: string | null | undefined;
|
|
39002
39088
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
39089
|
+
openLightbox?: boolean | null | undefined;
|
|
39090
|
+
isBordered?: boolean | null | undefined;
|
|
39003
39091
|
} | null | undefined;
|
|
39004
39092
|
customBlockKey?: string | null | undefined;
|
|
39005
39093
|
customBlockProperties?: {
|
|
@@ -39017,6 +39105,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39017
39105
|
backgroundColor?: {
|
|
39018
39106
|
value: string;
|
|
39019
39107
|
} | null | undefined;
|
|
39108
|
+
previewContainerHeight?: number | null | undefined;
|
|
39020
39109
|
} | null | undefined;
|
|
39021
39110
|
figmaFrames?: {
|
|
39022
39111
|
persistentId: string;
|
|
@@ -39077,10 +39166,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39077
39166
|
selectedThemeIds: string[];
|
|
39078
39167
|
}[] | null | undefined;
|
|
39079
39168
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
39169
|
+
tokenBlockConfig?: {
|
|
39170
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
39171
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
39172
|
+
} | null | undefined;
|
|
39173
|
+
assetBlockConfig?: {
|
|
39174
|
+
showSearch?: boolean | null | undefined;
|
|
39175
|
+
showAssetDescription?: boolean | null | undefined;
|
|
39176
|
+
} | null | undefined;
|
|
39080
39177
|
figmaComponentsBlockConfig?: {
|
|
39081
39178
|
backgroundColor?: {
|
|
39082
39179
|
value: string;
|
|
39083
39180
|
} | null | undefined;
|
|
39181
|
+
previewContainerHeight?: number | null | undefined;
|
|
39084
39182
|
showComponentName?: boolean | null | undefined;
|
|
39085
39183
|
showComponentDescription?: boolean | null | undefined;
|
|
39086
39184
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -39274,6 +39372,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39274
39372
|
}[];
|
|
39275
39373
|
} | null | undefined;
|
|
39276
39374
|
imageAlt?: string | null | undefined;
|
|
39375
|
+
openLightbox?: boolean | null | undefined;
|
|
39376
|
+
isBordered?: boolean | null | undefined;
|
|
39277
39377
|
numberOfColumns?: number | null | undefined;
|
|
39278
39378
|
itemBackgroundColor?: {
|
|
39279
39379
|
value: string;
|
|
@@ -39363,6 +39463,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39363
39463
|
imageAlt?: string | null | undefined;
|
|
39364
39464
|
imageCaption?: string | null | undefined;
|
|
39365
39465
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
39466
|
+
openLightbox?: boolean | null | undefined;
|
|
39467
|
+
isBordered?: boolean | null | undefined;
|
|
39366
39468
|
} | null | undefined;
|
|
39367
39469
|
customBlockKey?: string | null | undefined;
|
|
39368
39470
|
customBlockProperties?: {
|
|
@@ -39380,6 +39482,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39380
39482
|
backgroundColor?: {
|
|
39381
39483
|
value: string;
|
|
39382
39484
|
} | null | undefined;
|
|
39485
|
+
previewContainerHeight?: number | null | undefined;
|
|
39383
39486
|
} | null | undefined;
|
|
39384
39487
|
figmaFrames?: {
|
|
39385
39488
|
persistentId: string;
|
|
@@ -39440,10 +39543,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39440
39543
|
selectedThemeIds: string[];
|
|
39441
39544
|
}[] | null | undefined;
|
|
39442
39545
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
39546
|
+
tokenBlockConfig?: {
|
|
39547
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
39548
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
39549
|
+
} | null | undefined;
|
|
39550
|
+
assetBlockConfig?: {
|
|
39551
|
+
showSearch?: boolean | null | undefined;
|
|
39552
|
+
showAssetDescription?: boolean | null | undefined;
|
|
39553
|
+
} | null | undefined;
|
|
39443
39554
|
figmaComponentsBlockConfig?: {
|
|
39444
39555
|
backgroundColor?: {
|
|
39445
39556
|
value: string;
|
|
39446
39557
|
} | null | undefined;
|
|
39558
|
+
previewContainerHeight?: number | null | undefined;
|
|
39447
39559
|
showComponentName?: boolean | null | undefined;
|
|
39448
39560
|
showComponentDescription?: boolean | null | undefined;
|
|
39449
39561
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -39519,6 +39631,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39519
39631
|
}[];
|
|
39520
39632
|
} | null | undefined;
|
|
39521
39633
|
imageAlt?: string | null | undefined;
|
|
39634
|
+
openLightbox?: boolean | null | undefined;
|
|
39635
|
+
isBordered?: boolean | null | undefined;
|
|
39522
39636
|
numberOfColumns?: number | null | undefined;
|
|
39523
39637
|
itemBackgroundColor?: {
|
|
39524
39638
|
value: string;
|
|
@@ -39608,6 +39722,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39608
39722
|
imageAlt?: string | null | undefined;
|
|
39609
39723
|
imageCaption?: string | null | undefined;
|
|
39610
39724
|
imageAlignment?: "Left" | "Center" | "Right" | "Stretch" | null | undefined;
|
|
39725
|
+
openLightbox?: boolean | null | undefined;
|
|
39726
|
+
isBordered?: boolean | null | undefined;
|
|
39611
39727
|
} | null | undefined;
|
|
39612
39728
|
customBlockKey?: string | null | undefined;
|
|
39613
39729
|
customBlockProperties?: {
|
|
@@ -39625,6 +39741,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39625
39741
|
backgroundColor?: {
|
|
39626
39742
|
value: string;
|
|
39627
39743
|
} | null | undefined;
|
|
39744
|
+
previewContainerHeight?: number | null | undefined;
|
|
39628
39745
|
} | null | undefined;
|
|
39629
39746
|
figmaFrames?: {
|
|
39630
39747
|
persistentId: string;
|
|
@@ -39685,10 +39802,19 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
39685
39802
|
selectedThemeIds: string[];
|
|
39686
39803
|
}[] | null | undefined;
|
|
39687
39804
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
39805
|
+
tokenBlockConfig?: {
|
|
39806
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
39807
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
39808
|
+
} | null | undefined;
|
|
39809
|
+
assetBlockConfig?: {
|
|
39810
|
+
showSearch?: boolean | null | undefined;
|
|
39811
|
+
showAssetDescription?: boolean | null | undefined;
|
|
39812
|
+
} | null | undefined;
|
|
39688
39813
|
figmaComponentsBlockConfig?: {
|
|
39689
39814
|
backgroundColor?: {
|
|
39690
39815
|
value: string;
|
|
39691
39816
|
} | null | undefined;
|
|
39817
|
+
previewContainerHeight?: number | null | undefined;
|
|
39692
39818
|
showComponentName?: boolean | null | undefined;
|
|
39693
39819
|
showComponentDescription?: boolean | null | undefined;
|
|
39694
39820
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -40317,6 +40443,8 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
40317
40443
|
pagePersistentId: string;
|
|
40318
40444
|
updatedByUserId: string;
|
|
40319
40445
|
}>>;
|
|
40446
|
+
/** Id of the page document room */
|
|
40447
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
40320
40448
|
type: z.ZodLiteral<"Page">;
|
|
40321
40449
|
}, "strip", z.ZodTypeAny, {
|
|
40322
40450
|
path: string;
|
|
@@ -40422,6 +40550,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
40422
40550
|
lastPublishedByUserId: string;
|
|
40423
40551
|
lastPublishedAt: Date;
|
|
40424
40552
|
} | undefined;
|
|
40553
|
+
liveblocksRoomId?: string | undefined;
|
|
40425
40554
|
}, {
|
|
40426
40555
|
path: string;
|
|
40427
40556
|
type: "Page";
|
|
@@ -40526,6 +40655,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
40526
40655
|
lastPublishedByUserId: string;
|
|
40527
40656
|
lastPublishedAt: Date;
|
|
40528
40657
|
} | undefined;
|
|
40658
|
+
liveblocksRoomId?: string | undefined;
|
|
40529
40659
|
}>;
|
|
40530
40660
|
type DTODocumentationPageV2 = z.infer<typeof DTODocumentationPageV2>;
|
|
40531
40661
|
declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
@@ -46313,7 +46443,7 @@ declare const DTOExporterMembership: z.ZodObject<{
|
|
|
46313
46443
|
exporterId: string;
|
|
46314
46444
|
}>;
|
|
46315
46445
|
type DTOExporterMembership = z.infer<typeof DTOExporterMembership>;
|
|
46316
|
-
declare const
|
|
46446
|
+
declare const DTOExporterResponse: z.ZodObject<{
|
|
46317
46447
|
exporter: z.ZodObject<{
|
|
46318
46448
|
id: z.ZodString;
|
|
46319
46449
|
name: z.ZodString;
|
|
@@ -47020,7 +47150,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
|
|
|
47020
47150
|
gitDirectory?: string | null | undefined;
|
|
47021
47151
|
};
|
|
47022
47152
|
}>;
|
|
47023
|
-
type
|
|
47153
|
+
type DTOExporterResponse = z.infer<typeof DTOExporterResponse>;
|
|
47024
47154
|
declare const DTOExporterListResponse: z.ZodObject<{
|
|
47025
47155
|
exporters: z.ZodArray<z.ZodObject<{
|
|
47026
47156
|
id: z.ZodString;
|
|
@@ -47787,6 +47917,29 @@ declare const DTOExportJobsListFilter: z.ZodObject<{
|
|
|
47787
47917
|
}>;
|
|
47788
47918
|
type DTOExportJobsListFilter = z.infer<typeof DTOExportJobsListFilter>;
|
|
47789
47919
|
|
|
47920
|
+
declare const DTOExportJobResponseLegacy: z.ZodObject<{
|
|
47921
|
+
job: z.ZodObject<{
|
|
47922
|
+
id: z.ZodString;
|
|
47923
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
47924
|
+
}, "strip", z.ZodTypeAny, {
|
|
47925
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47926
|
+
id: string;
|
|
47927
|
+
}, {
|
|
47928
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47929
|
+
id: string;
|
|
47930
|
+
}>;
|
|
47931
|
+
}, "strip", z.ZodTypeAny, {
|
|
47932
|
+
job: {
|
|
47933
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47934
|
+
id: string;
|
|
47935
|
+
};
|
|
47936
|
+
}, {
|
|
47937
|
+
job: {
|
|
47938
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
47939
|
+
id: string;
|
|
47940
|
+
};
|
|
47941
|
+
}>;
|
|
47942
|
+
type DTOExportJobResponseLegacy = z.infer<typeof DTOExportJobResponseLegacy>;
|
|
47790
47943
|
declare const DTOExportJobCreatedBy: z.ZodObject<{
|
|
47791
47944
|
userId: z.ZodString;
|
|
47792
47945
|
userName: z.ZodString;
|
|
@@ -84515,9 +84668,9 @@ declare function documentationPagesFixedConfigurationToDTOV1(pages: Documentatio
|
|
|
84515
84668
|
|
|
84516
84669
|
type DocsPage$1 = LocalDocsPage | VersionRoomDocsPage;
|
|
84517
84670
|
type DocsPageGroup$1 = LocalDocsPageGroup | VersionRoomDocsPageGroup;
|
|
84518
|
-
declare function documentationPageToDTOV2(page: DocsPage$1, groups: DocsPageGroup$1[], routingVersion: string): DTODocumentationPageV2;
|
|
84519
|
-
declare function documentationPagesToDTOV2(pages: DocsPage$1[], groups: DocsPageGroup$1[], routingVersion: string): DTODocumentationPageV2[];
|
|
84520
|
-
declare function documentationPagesFixedConfigurationToDTOV2(pages: DocsPage$1[], groups: DocsPageGroup$1[], routingVersion: string): DTODocumentationPageV2[];
|
|
84671
|
+
declare function documentationPageToDTOV2(page: DocsPage$1, groups: DocsPageGroup$1[], routingVersion: string, pageLiveblocksRoomIdMap: Map<string, string>): DTODocumentationPageV2;
|
|
84672
|
+
declare function documentationPagesToDTOV2(pages: DocsPage$1[], groups: DocsPageGroup$1[], routingVersion: string, pageLiveblocksRoomIdMap: Map<string, string>): DTODocumentationPageV2[];
|
|
84673
|
+
declare function documentationPagesFixedConfigurationToDTOV2(pages: DocsPage$1[], groups: DocsPageGroup$1[], routingVersion: string, pageLiveblocksRoomIdMap: Map<string, string>): DTODocumentationPageV2[];
|
|
84521
84674
|
|
|
84522
84675
|
declare function pipelineToDto(pipeline: Pipeline): DTOPipeline;
|
|
84523
84676
|
|
|
@@ -84560,6 +84713,107 @@ declare class RequestExecutor {
|
|
|
84560
84713
|
declare class ExportersEndpoint {
|
|
84561
84714
|
private readonly requestExecutor;
|
|
84562
84715
|
constructor(requestExecutor: RequestExecutor);
|
|
84716
|
+
add(workspaceId: string, body: DTOExporterCreateInput): Promise<{
|
|
84717
|
+
membership: {
|
|
84718
|
+
workspaceId: string;
|
|
84719
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
84720
|
+
exporterId: string;
|
|
84721
|
+
};
|
|
84722
|
+
exporter: {
|
|
84723
|
+
isPrivate: boolean;
|
|
84724
|
+
id: string;
|
|
84725
|
+
name: string;
|
|
84726
|
+
source: "upload" | "git";
|
|
84727
|
+
exporterType: "code" | "documentation";
|
|
84728
|
+
isDefaultDocumentationExporter: boolean;
|
|
84729
|
+
configurationProperties: {
|
|
84730
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84731
|
+
label: string;
|
|
84732
|
+
key: string;
|
|
84733
|
+
category: string;
|
|
84734
|
+
values?: string[] | null | undefined;
|
|
84735
|
+
description?: string | null | undefined;
|
|
84736
|
+
default?: string | number | boolean | null | undefined;
|
|
84737
|
+
inputType?: "code" | "plain" | undefined;
|
|
84738
|
+
isMultiline?: boolean | null | undefined;
|
|
84739
|
+
}[];
|
|
84740
|
+
customBlocks: {
|
|
84741
|
+
key: string;
|
|
84742
|
+
properties: {
|
|
84743
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84744
|
+
label: string;
|
|
84745
|
+
key: string;
|
|
84746
|
+
values?: string[] | null | undefined;
|
|
84747
|
+
description?: string | null | undefined;
|
|
84748
|
+
default?: string | number | boolean | null | undefined;
|
|
84749
|
+
inputType?: "code" | "plain" | undefined;
|
|
84750
|
+
isMultiline?: boolean | null | undefined;
|
|
84751
|
+
}[];
|
|
84752
|
+
description?: string | undefined;
|
|
84753
|
+
category?: string | undefined;
|
|
84754
|
+
title?: string | undefined;
|
|
84755
|
+
iconURL?: string | undefined;
|
|
84756
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
84757
|
+
}[];
|
|
84758
|
+
blockVariants: Record<string, {
|
|
84759
|
+
name: string;
|
|
84760
|
+
key: string;
|
|
84761
|
+
description?: string | undefined;
|
|
84762
|
+
isDefault?: boolean | undefined;
|
|
84763
|
+
thumbnailURL?: string | undefined;
|
|
84764
|
+
}[]>;
|
|
84765
|
+
usesBrands: boolean;
|
|
84766
|
+
usesThemes: boolean;
|
|
84767
|
+
properties?: ({
|
|
84768
|
+
options: string[];
|
|
84769
|
+
type: "Enum";
|
|
84770
|
+
description: string;
|
|
84771
|
+
title: string;
|
|
84772
|
+
key: string;
|
|
84773
|
+
default: string;
|
|
84774
|
+
} | {
|
|
84775
|
+
type: "Boolean";
|
|
84776
|
+
description: string;
|
|
84777
|
+
title: string;
|
|
84778
|
+
key: string;
|
|
84779
|
+
default: boolean;
|
|
84780
|
+
} | {
|
|
84781
|
+
type: "String";
|
|
84782
|
+
description: string;
|
|
84783
|
+
title: string;
|
|
84784
|
+
key: string;
|
|
84785
|
+
default: string;
|
|
84786
|
+
} | {
|
|
84787
|
+
type: "Number";
|
|
84788
|
+
description: string;
|
|
84789
|
+
title: string;
|
|
84790
|
+
key: string;
|
|
84791
|
+
default: number;
|
|
84792
|
+
} | {
|
|
84793
|
+
type: "Array";
|
|
84794
|
+
description: string;
|
|
84795
|
+
title: string;
|
|
84796
|
+
key: string;
|
|
84797
|
+
default: string[];
|
|
84798
|
+
} | {
|
|
84799
|
+
type: "Object";
|
|
84800
|
+
description: string;
|
|
84801
|
+
title: string;
|
|
84802
|
+
key: string;
|
|
84803
|
+
default: Record<string, string>;
|
|
84804
|
+
allowedKeys?: {
|
|
84805
|
+
options: string[];
|
|
84806
|
+
} | undefined;
|
|
84807
|
+
allowedValues?: {
|
|
84808
|
+
options: string[];
|
|
84809
|
+
} | undefined;
|
|
84810
|
+
})[] | undefined;
|
|
84811
|
+
iconURL?: string | undefined;
|
|
84812
|
+
gitUrl?: string | undefined;
|
|
84813
|
+
gitBranch?: string | undefined;
|
|
84814
|
+
gitDirectory?: string | undefined;
|
|
84815
|
+
};
|
|
84816
|
+
}>;
|
|
84563
84817
|
list(workspaceId: string, query: DTOExporterListQuery): Promise<{
|
|
84564
84818
|
membership: {
|
|
84565
84819
|
workspaceId: string;
|
|
@@ -84661,6 +84915,119 @@ declare class ExportersEndpoint {
|
|
|
84661
84915
|
gitDirectory?: string | undefined;
|
|
84662
84916
|
}[];
|
|
84663
84917
|
}>;
|
|
84918
|
+
get(workspaceId: string, exporterId: string): Promise<{
|
|
84919
|
+
membership: {
|
|
84920
|
+
workspaceId: string;
|
|
84921
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
84922
|
+
exporterId: string;
|
|
84923
|
+
};
|
|
84924
|
+
exporter: {
|
|
84925
|
+
isPrivate: boolean;
|
|
84926
|
+
id: string;
|
|
84927
|
+
name: string;
|
|
84928
|
+
source: "upload" | "git";
|
|
84929
|
+
exporterType: "code" | "documentation";
|
|
84930
|
+
isDefaultDocumentationExporter: boolean;
|
|
84931
|
+
configurationProperties: {
|
|
84932
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84933
|
+
label: string;
|
|
84934
|
+
key: string;
|
|
84935
|
+
category: string;
|
|
84936
|
+
values?: string[] | null | undefined;
|
|
84937
|
+
description?: string | null | undefined;
|
|
84938
|
+
default?: string | number | boolean | null | undefined;
|
|
84939
|
+
inputType?: "code" | "plain" | undefined;
|
|
84940
|
+
isMultiline?: boolean | null | undefined;
|
|
84941
|
+
}[];
|
|
84942
|
+
customBlocks: {
|
|
84943
|
+
key: string;
|
|
84944
|
+
properties: {
|
|
84945
|
+
type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
|
|
84946
|
+
label: string;
|
|
84947
|
+
key: string;
|
|
84948
|
+
values?: string[] | null | undefined;
|
|
84949
|
+
description?: string | null | undefined;
|
|
84950
|
+
default?: string | number | boolean | null | undefined;
|
|
84951
|
+
inputType?: "code" | "plain" | undefined;
|
|
84952
|
+
isMultiline?: boolean | null | undefined;
|
|
84953
|
+
}[];
|
|
84954
|
+
description?: string | undefined;
|
|
84955
|
+
category?: string | undefined;
|
|
84956
|
+
title?: string | undefined;
|
|
84957
|
+
iconURL?: string | undefined;
|
|
84958
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
84959
|
+
}[];
|
|
84960
|
+
blockVariants: Record<string, {
|
|
84961
|
+
name: string;
|
|
84962
|
+
key: string;
|
|
84963
|
+
description?: string | undefined;
|
|
84964
|
+
isDefault?: boolean | undefined;
|
|
84965
|
+
thumbnailURL?: string | undefined;
|
|
84966
|
+
}[]>;
|
|
84967
|
+
usesBrands: boolean;
|
|
84968
|
+
usesThemes: boolean;
|
|
84969
|
+
properties?: ({
|
|
84970
|
+
options: string[];
|
|
84971
|
+
type: "Enum";
|
|
84972
|
+
description: string;
|
|
84973
|
+
title: string;
|
|
84974
|
+
key: string;
|
|
84975
|
+
default: string;
|
|
84976
|
+
} | {
|
|
84977
|
+
type: "Boolean";
|
|
84978
|
+
description: string;
|
|
84979
|
+
title: string;
|
|
84980
|
+
key: string;
|
|
84981
|
+
default: boolean;
|
|
84982
|
+
} | {
|
|
84983
|
+
type: "String";
|
|
84984
|
+
description: string;
|
|
84985
|
+
title: string;
|
|
84986
|
+
key: string;
|
|
84987
|
+
default: string;
|
|
84988
|
+
} | {
|
|
84989
|
+
type: "Number";
|
|
84990
|
+
description: string;
|
|
84991
|
+
title: string;
|
|
84992
|
+
key: string;
|
|
84993
|
+
default: number;
|
|
84994
|
+
} | {
|
|
84995
|
+
type: "Array";
|
|
84996
|
+
description: string;
|
|
84997
|
+
title: string;
|
|
84998
|
+
key: string;
|
|
84999
|
+
default: string[];
|
|
85000
|
+
} | {
|
|
85001
|
+
type: "Object";
|
|
85002
|
+
description: string;
|
|
85003
|
+
title: string;
|
|
85004
|
+
key: string;
|
|
85005
|
+
default: Record<string, string>;
|
|
85006
|
+
allowedKeys?: {
|
|
85007
|
+
options: string[];
|
|
85008
|
+
} | undefined;
|
|
85009
|
+
allowedValues?: {
|
|
85010
|
+
options: string[];
|
|
85011
|
+
} | undefined;
|
|
85012
|
+
})[] | undefined;
|
|
85013
|
+
iconURL?: string | undefined;
|
|
85014
|
+
gitUrl?: string | undefined;
|
|
85015
|
+
gitBranch?: string | undefined;
|
|
85016
|
+
gitDirectory?: string | undefined;
|
|
85017
|
+
};
|
|
85018
|
+
}>;
|
|
85019
|
+
}
|
|
85020
|
+
|
|
85021
|
+
declare class ExporterJobsEndpoint {
|
|
85022
|
+
private readonly requestExecutor;
|
|
85023
|
+
constructor(requestExecutor: RequestExecutor);
|
|
85024
|
+
list(workspaceId: string): Promise<any>;
|
|
85025
|
+
get(workspaceId: string, jobId: string): Promise<{
|
|
85026
|
+
job: {
|
|
85027
|
+
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
85028
|
+
id: string;
|
|
85029
|
+
};
|
|
85030
|
+
}>;
|
|
84664
85031
|
}
|
|
84665
85032
|
|
|
84666
85033
|
declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
@@ -87672,6 +88039,7 @@ declare class CodegenEndpoint {
|
|
|
87672
88039
|
private readonly requestExecutor;
|
|
87673
88040
|
readonly exporters: ExportersEndpoint;
|
|
87674
88041
|
readonly pipelines: PipelinesEndpoint;
|
|
88042
|
+
readonly jobs: ExporterJobsEndpoint;
|
|
87675
88043
|
constructor(requestExecutor: RequestExecutor);
|
|
87676
88044
|
}
|
|
87677
88045
|
|
|
@@ -87778,6 +88146,11 @@ declare class DocumentationEndpoint {
|
|
|
87778
88146
|
title: string;
|
|
87779
88147
|
})[];
|
|
87780
88148
|
}>;
|
|
88149
|
+
getPageRoom(dsId: string, vId: string, pageId: string): Promise<{
|
|
88150
|
+
room: {
|
|
88151
|
+
id: string;
|
|
88152
|
+
};
|
|
88153
|
+
}>;
|
|
87781
88154
|
}
|
|
87782
88155
|
|
|
87783
88156
|
declare class DesignSystemComponentEndpoint {
|
|
@@ -92183,6 +92556,14 @@ declare class WorkspacesEndpoint {
|
|
|
92183
92556
|
}>;
|
|
92184
92557
|
}
|
|
92185
92558
|
|
|
92559
|
+
declare class LiveblocksEndpoint {
|
|
92560
|
+
private readonly requestExecutor;
|
|
92561
|
+
constructor(requestExecutor: RequestExecutor);
|
|
92562
|
+
auth(body: DTOLiveblocksAuthRequest): Promise<{
|
|
92563
|
+
token: string;
|
|
92564
|
+
}>;
|
|
92565
|
+
}
|
|
92566
|
+
|
|
92186
92567
|
declare class UsersEndpoint {
|
|
92187
92568
|
private readonly requestExecutor;
|
|
92188
92569
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -92466,6 +92847,7 @@ declare class SupernovaApiClient {
|
|
|
92466
92847
|
readonly workspaces: WorkspacesEndpoint;
|
|
92467
92848
|
readonly designSystems: DesignSystemsEndpoint;
|
|
92468
92849
|
readonly codegen: CodegenEndpoint;
|
|
92850
|
+
readonly liveblocks: LiveblocksEndpoint;
|
|
92469
92851
|
constructor(config: SupernovaApiClientConfig);
|
|
92470
92852
|
}
|
|
92471
92853
|
|
|
@@ -92482,11 +92864,12 @@ type DocPageCreate = {
|
|
|
92482
92864
|
type DocPageUpdate = {
|
|
92483
92865
|
persistentId: string;
|
|
92484
92866
|
title?: string;
|
|
92485
|
-
configuration?: DTODocumentationItemConfigurationV2
|
|
92867
|
+
configuration?: Partial<DTODocumentationItemConfigurationV2>;
|
|
92486
92868
|
};
|
|
92487
92869
|
type TransactionExecutor = (trx: DTOElementActionInput) => Promise<void>;
|
|
92488
92870
|
declare class DocsStructureRepository {
|
|
92489
92871
|
private readonly localState;
|
|
92872
|
+
private designSystemVersionId;
|
|
92490
92873
|
private readonly yDoc;
|
|
92491
92874
|
private readonly yObserver;
|
|
92492
92875
|
private _yState;
|
|
@@ -92494,7 +92877,7 @@ declare class DocsStructureRepository {
|
|
|
92494
92877
|
private readonly trxQueue;
|
|
92495
92878
|
private readonly hierarchyObservers;
|
|
92496
92879
|
private readonly initCallbacks;
|
|
92497
|
-
constructor(yDoc: Y.Doc, transactionExecutor: TransactionExecutor);
|
|
92880
|
+
constructor(designSystemVersionId: string, yDoc: Y.Doc, transactionExecutor: TransactionExecutor);
|
|
92498
92881
|
private get yState();
|
|
92499
92882
|
get isInitialized(): boolean;
|
|
92500
92883
|
onInitialized(): Promise<void>;
|
|
@@ -94365,6 +94748,8 @@ declare class VersionRoomBaseYDoc {
|
|
|
94365
94748
|
private setObjects;
|
|
94366
94749
|
private deleteObjects;
|
|
94367
94750
|
getDocumentationPageContentHashes(): Record<string, string>;
|
|
94751
|
+
getDocumentationPageLiveblocksRoomIds(): Record<string, string>;
|
|
94752
|
+
private get documentationPageLiveblocksRoomIdsYMap();
|
|
94368
94753
|
updateDocumentationPageContentHashes(hashes: Record<string, string>): void;
|
|
94369
94754
|
private get documentationPageContentHashesYMap();
|
|
94370
94755
|
updateApprovalStates(updates: DocumentationPageApproval[]): void;
|
|
@@ -94389,6 +94774,7 @@ type Input = {
|
|
|
94389
94774
|
pages: DocsPage[];
|
|
94390
94775
|
pageSnapshots: DocumentationPageSnapshot[];
|
|
94391
94776
|
pageContentHashes: Record<string, string>;
|
|
94777
|
+
pageLiveblockRoomIds: Record<string, string>;
|
|
94392
94778
|
groups: DocsPageGroup[];
|
|
94393
94779
|
groupSnapshots: ElementGroupSnapshot[];
|
|
94394
94780
|
approvals: DocumentationPageApproval[];
|
|
@@ -94416,4 +94802,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
94416
94802
|
|
|
94417
94803
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
94418
94804
|
|
|
94419
|
-
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, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, 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, DocsStructureRepo, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, type LocalDocsPage, type LocalDocsPageGroup, LocalStorage, 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, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, 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 };
|
|
94805
|
+
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, DocsStructureRepo, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalDocsPage, type LocalDocsPageGroup, LocalStorage, 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, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, 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 };
|