@supernova-studio/client 1.0.0-alpha.13 → 1.0.0-alpha.14
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 +421 -7
- package/dist/index.d.ts +421 -7
- package/dist/index.js +107 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1852 -1755
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1812,6 +1812,7 @@ type VersionRoomBaseYDocState = {
|
|
|
1812
1812
|
groupSnapshots: ElementGroupSnapshot[];
|
|
1813
1813
|
approvals: DocumentationPageApproval[];
|
|
1814
1814
|
settings: DocumentationHierarchySettings;
|
|
1815
|
+
executedTransactionIds: string[];
|
|
1815
1816
|
};
|
|
1816
1817
|
|
|
1817
1818
|
type LocalDocsPage = OmitStrict<DocumentationPageV2, "id" | "userSlug"> & {
|
|
@@ -10588,6 +10589,107 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
|
|
|
10588
10589
|
}>;
|
|
10589
10590
|
type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
|
|
10590
10591
|
|
|
10592
|
+
declare const DTOPageRedirectCreateBody: z.ZodObject<{
|
|
10593
|
+
pagePersistentId: z.ZodString;
|
|
10594
|
+
path: z.ZodString;
|
|
10595
|
+
}, "strip", z.ZodTypeAny, {
|
|
10596
|
+
path: string;
|
|
10597
|
+
pagePersistentId: string;
|
|
10598
|
+
}, {
|
|
10599
|
+
path: string;
|
|
10600
|
+
pagePersistentId: string;
|
|
10601
|
+
}>;
|
|
10602
|
+
type DTOPageRedirectCreateBody = z.infer<typeof DTOPageRedirectCreateBody>;
|
|
10603
|
+
declare const DTOPageRedirectUpdateBody: z.ZodObject<{
|
|
10604
|
+
pagePersistentId: z.ZodOptional<z.ZodString>;
|
|
10605
|
+
path: z.ZodOptional<z.ZodString>;
|
|
10606
|
+
}, "strip", z.ZodTypeAny, {
|
|
10607
|
+
path?: string | undefined;
|
|
10608
|
+
pagePersistentId?: string | undefined;
|
|
10609
|
+
}, {
|
|
10610
|
+
path?: string | undefined;
|
|
10611
|
+
pagePersistentId?: string | undefined;
|
|
10612
|
+
}>;
|
|
10613
|
+
type DTOPageRedirectUpdateBody = z.infer<typeof DTOPageRedirectUpdateBody>;
|
|
10614
|
+
declare const DTOPageRedirect: z.ZodObject<{
|
|
10615
|
+
id: z.ZodString;
|
|
10616
|
+
pagePersistentId: z.ZodString;
|
|
10617
|
+
path: z.ZodString;
|
|
10618
|
+
}, "strip", z.ZodTypeAny, {
|
|
10619
|
+
path: string;
|
|
10620
|
+
id: string;
|
|
10621
|
+
pagePersistentId: string;
|
|
10622
|
+
}, {
|
|
10623
|
+
path: string;
|
|
10624
|
+
id: string;
|
|
10625
|
+
pagePersistentId: string;
|
|
10626
|
+
}>;
|
|
10627
|
+
type DTOPageRedirect = z.infer<typeof DTOPageRedirect>;
|
|
10628
|
+
declare const DTOPageRedirectListResponse: z.ZodObject<{
|
|
10629
|
+
redirects: z.ZodArray<z.ZodObject<{
|
|
10630
|
+
id: z.ZodString;
|
|
10631
|
+
pagePersistentId: z.ZodString;
|
|
10632
|
+
path: z.ZodString;
|
|
10633
|
+
}, "strip", z.ZodTypeAny, {
|
|
10634
|
+
path: string;
|
|
10635
|
+
id: string;
|
|
10636
|
+
pagePersistentId: string;
|
|
10637
|
+
}, {
|
|
10638
|
+
path: string;
|
|
10639
|
+
id: string;
|
|
10640
|
+
pagePersistentId: string;
|
|
10641
|
+
}>, "many">;
|
|
10642
|
+
}, "strip", z.ZodTypeAny, {
|
|
10643
|
+
redirects: {
|
|
10644
|
+
path: string;
|
|
10645
|
+
id: string;
|
|
10646
|
+
pagePersistentId: string;
|
|
10647
|
+
}[];
|
|
10648
|
+
}, {
|
|
10649
|
+
redirects: {
|
|
10650
|
+
path: string;
|
|
10651
|
+
id: string;
|
|
10652
|
+
pagePersistentId: string;
|
|
10653
|
+
}[];
|
|
10654
|
+
}>;
|
|
10655
|
+
type DTOPageRedirectListResponse = z.infer<typeof DTOPageRedirectListResponse>;
|
|
10656
|
+
declare const DTOPageRedirectResponse: z.ZodObject<{
|
|
10657
|
+
redirect: z.ZodObject<{
|
|
10658
|
+
id: z.ZodString;
|
|
10659
|
+
pagePersistentId: z.ZodString;
|
|
10660
|
+
path: z.ZodString;
|
|
10661
|
+
}, "strip", z.ZodTypeAny, {
|
|
10662
|
+
path: string;
|
|
10663
|
+
id: string;
|
|
10664
|
+
pagePersistentId: string;
|
|
10665
|
+
}, {
|
|
10666
|
+
path: string;
|
|
10667
|
+
id: string;
|
|
10668
|
+
pagePersistentId: string;
|
|
10669
|
+
}>;
|
|
10670
|
+
}, "strip", z.ZodTypeAny, {
|
|
10671
|
+
redirect: {
|
|
10672
|
+
path: string;
|
|
10673
|
+
id: string;
|
|
10674
|
+
pagePersistentId: string;
|
|
10675
|
+
};
|
|
10676
|
+
}, {
|
|
10677
|
+
redirect: {
|
|
10678
|
+
path: string;
|
|
10679
|
+
id: string;
|
|
10680
|
+
pagePersistentId: string;
|
|
10681
|
+
};
|
|
10682
|
+
}>;
|
|
10683
|
+
type DTOPageRedirectResponse = z.infer<typeof DTOPageRedirectResponse>;
|
|
10684
|
+
declare const DTOPageRedirectDeleteResponse: z.ZodObject<{
|
|
10685
|
+
success: z.ZodBoolean;
|
|
10686
|
+
}, "strip", z.ZodTypeAny, {
|
|
10687
|
+
success: boolean;
|
|
10688
|
+
}, {
|
|
10689
|
+
success: boolean;
|
|
10690
|
+
}>;
|
|
10691
|
+
type DTOPageRedirectDeleteResponse = z.infer<typeof DTOPageRedirectDeleteResponse>;
|
|
10692
|
+
|
|
10591
10693
|
declare const DTODesignSystemRole: z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>;
|
|
10592
10694
|
type DTODesignSystemRole = z.infer<typeof DTODesignSystemRole>;
|
|
10593
10695
|
|
|
@@ -10623,6 +10725,33 @@ declare const DTODesignSystemVersionStatsQuery: z.ZodObject<{
|
|
|
10623
10725
|
}>;
|
|
10624
10726
|
type DTODesignSystemVersionStatsQuery = z.infer<typeof DTODesignSystemVersionStatsQuery>;
|
|
10625
10727
|
|
|
10728
|
+
declare const DTODesignSystemVersionRoom: z.ZodObject<{
|
|
10729
|
+
id: z.ZodString;
|
|
10730
|
+
}, "strip", z.ZodTypeAny, {
|
|
10731
|
+
id: string;
|
|
10732
|
+
}, {
|
|
10733
|
+
id: string;
|
|
10734
|
+
}>;
|
|
10735
|
+
type DTODesignSystemVersionRoom = z.infer<typeof DTODesignSystemVersionRoom>;
|
|
10736
|
+
declare const DTODesignSystemVersionRoomResponse: z.ZodObject<{
|
|
10737
|
+
room: z.ZodObject<{
|
|
10738
|
+
id: z.ZodString;
|
|
10739
|
+
}, "strip", z.ZodTypeAny, {
|
|
10740
|
+
id: string;
|
|
10741
|
+
}, {
|
|
10742
|
+
id: string;
|
|
10743
|
+
}>;
|
|
10744
|
+
}, "strip", z.ZodTypeAny, {
|
|
10745
|
+
room: {
|
|
10746
|
+
id: string;
|
|
10747
|
+
};
|
|
10748
|
+
}, {
|
|
10749
|
+
room: {
|
|
10750
|
+
id: string;
|
|
10751
|
+
};
|
|
10752
|
+
}>;
|
|
10753
|
+
type DTODesignSystemVersionRoomResponse = z.infer<typeof DTODesignSystemVersionRoomResponse>;
|
|
10754
|
+
|
|
10626
10755
|
declare const VersionSQSPayload: z.ZodObject<{
|
|
10627
10756
|
jobId: z.ZodString;
|
|
10628
10757
|
designSystemId: z.ZodString;
|
|
@@ -45267,7 +45396,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
45267
45396
|
};
|
|
45268
45397
|
}>]>;
|
|
45269
45398
|
type DTOElementActionOutput = z.infer<typeof DTOElementActionOutput>;
|
|
45270
|
-
declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
45399
|
+
declare const DTOElementActionInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
45271
45400
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
45272
45401
|
input: z.ZodObject<{
|
|
45273
45402
|
persistentId: z.ZodString;
|
|
@@ -47070,7 +47199,13 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
47070
47199
|
persistentId: string;
|
|
47071
47200
|
approvalState?: "ReadyForReview" | "ChangesRequested" | "Approved" | undefined;
|
|
47072
47201
|
};
|
|
47073
|
-
}>]
|
|
47202
|
+
}>]>, z.ZodObject<{
|
|
47203
|
+
tId: z.ZodOptional<z.ZodString>;
|
|
47204
|
+
}, "strip", z.ZodTypeAny, {
|
|
47205
|
+
tId?: string | undefined;
|
|
47206
|
+
}, {
|
|
47207
|
+
tId?: string | undefined;
|
|
47208
|
+
}>>;
|
|
47074
47209
|
type DTOElementActionInput = z.infer<typeof DTOElementActionInput>;
|
|
47075
47210
|
type DTOElementActionInputOfType<T extends DTOElementActionInput["type"]> = Extract<DTOElementActionInput, {
|
|
47076
47211
|
type: T;
|
|
@@ -76629,6 +76764,35 @@ declare const DTOUserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "Ind
|
|
|
76629
76764
|
type DTOUserOnboardingJobLevel = z.infer<typeof DTOUserOnboardingJobLevel>;
|
|
76630
76765
|
declare const DTOUserSource: z.ZodEnum<["SignUp", "Invite", "SSO"]>;
|
|
76631
76766
|
type DTOUserSource = z.infer<typeof DTOUserSource>;
|
|
76767
|
+
declare const DTOUserTheme: z.ZodObject<{
|
|
76768
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
76769
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
76770
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
76771
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
76772
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
76773
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
76774
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
76775
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
76776
|
+
}, "strip", z.ZodTypeAny, {
|
|
76777
|
+
backgroundColor?: string | undefined;
|
|
76778
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76779
|
+
accentColor?: string | undefined;
|
|
76780
|
+
contrast?: number | undefined;
|
|
76781
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76782
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76783
|
+
secondaryContrast?: number | undefined;
|
|
76784
|
+
isEditorWhite?: boolean | undefined;
|
|
76785
|
+
}, {
|
|
76786
|
+
backgroundColor?: string | undefined;
|
|
76787
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76788
|
+
accentColor?: string | undefined;
|
|
76789
|
+
contrast?: number | undefined;
|
|
76790
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76791
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76792
|
+
secondaryContrast?: number | undefined;
|
|
76793
|
+
isEditorWhite?: boolean | undefined;
|
|
76794
|
+
}>;
|
|
76795
|
+
type DTOUserTheme = z.infer<typeof DTOUserTheme>;
|
|
76632
76796
|
declare const DTOUserOnboarding: z.ZodObject<{
|
|
76633
76797
|
companyName: z.ZodOptional<z.ZodString>;
|
|
76634
76798
|
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
@@ -76703,6 +76867,34 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76703
76867
|
defaultDestination?: string | undefined;
|
|
76704
76868
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76705
76869
|
}>>;
|
|
76870
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
76871
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
76872
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
76873
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
76874
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
76875
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
76876
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
76877
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
76878
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
76879
|
+
}, "strip", z.ZodTypeAny, {
|
|
76880
|
+
backgroundColor?: string | undefined;
|
|
76881
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76882
|
+
accentColor?: string | undefined;
|
|
76883
|
+
contrast?: number | undefined;
|
|
76884
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76885
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76886
|
+
secondaryContrast?: number | undefined;
|
|
76887
|
+
isEditorWhite?: boolean | undefined;
|
|
76888
|
+
}, {
|
|
76889
|
+
backgroundColor?: string | undefined;
|
|
76890
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76891
|
+
accentColor?: string | undefined;
|
|
76892
|
+
contrast?: number | undefined;
|
|
76893
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76894
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76895
|
+
secondaryContrast?: number | undefined;
|
|
76896
|
+
isEditorWhite?: boolean | undefined;
|
|
76897
|
+
}>>;
|
|
76706
76898
|
}>, "strip", z.ZodTypeAny, {
|
|
76707
76899
|
name: string;
|
|
76708
76900
|
nickname?: string | undefined;
|
|
@@ -76719,6 +76911,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76719
76911
|
defaultDestination?: string | undefined;
|
|
76720
76912
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76721
76913
|
} | undefined;
|
|
76914
|
+
theme?: {
|
|
76915
|
+
backgroundColor?: string | undefined;
|
|
76916
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76917
|
+
accentColor?: string | undefined;
|
|
76918
|
+
contrast?: number | undefined;
|
|
76919
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76920
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76921
|
+
secondaryContrast?: number | undefined;
|
|
76922
|
+
isEditorWhite?: boolean | undefined;
|
|
76923
|
+
} | undefined;
|
|
76722
76924
|
}, {
|
|
76723
76925
|
name: string;
|
|
76724
76926
|
nickname?: string | undefined;
|
|
@@ -76735,6 +76937,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76735
76937
|
defaultDestination?: string | undefined;
|
|
76736
76938
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76737
76939
|
} | undefined;
|
|
76940
|
+
theme?: {
|
|
76941
|
+
backgroundColor?: string | undefined;
|
|
76942
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76943
|
+
accentColor?: string | undefined;
|
|
76944
|
+
contrast?: number | undefined;
|
|
76945
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76946
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76947
|
+
secondaryContrast?: number | undefined;
|
|
76948
|
+
isEditorWhite?: boolean | undefined;
|
|
76949
|
+
} | undefined;
|
|
76738
76950
|
}>;
|
|
76739
76951
|
type DTOAuthenticatedUserProfile = z.infer<typeof DTOAuthenticatedUserProfile>;
|
|
76740
76952
|
declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -76793,6 +77005,34 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76793
77005
|
defaultDestination?: string | undefined;
|
|
76794
77006
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76795
77007
|
}>>;
|
|
77008
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
77009
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
77010
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
77011
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
77012
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
77013
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
77014
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
77015
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
77016
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
77017
|
+
}, "strip", z.ZodTypeAny, {
|
|
77018
|
+
backgroundColor?: string | undefined;
|
|
77019
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77020
|
+
accentColor?: string | undefined;
|
|
77021
|
+
contrast?: number | undefined;
|
|
77022
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77023
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77024
|
+
secondaryContrast?: number | undefined;
|
|
77025
|
+
isEditorWhite?: boolean | undefined;
|
|
77026
|
+
}, {
|
|
77027
|
+
backgroundColor?: string | undefined;
|
|
77028
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77029
|
+
accentColor?: string | undefined;
|
|
77030
|
+
contrast?: number | undefined;
|
|
77031
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77032
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77033
|
+
secondaryContrast?: number | undefined;
|
|
77034
|
+
isEditorWhite?: boolean | undefined;
|
|
77035
|
+
}>>;
|
|
76796
77036
|
}>, "strip", z.ZodTypeAny, {
|
|
76797
77037
|
name: string;
|
|
76798
77038
|
nickname?: string | undefined;
|
|
@@ -76809,6 +77049,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76809
77049
|
defaultDestination?: string | undefined;
|
|
76810
77050
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76811
77051
|
} | undefined;
|
|
77052
|
+
theme?: {
|
|
77053
|
+
backgroundColor?: string | undefined;
|
|
77054
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77055
|
+
accentColor?: string | undefined;
|
|
77056
|
+
contrast?: number | undefined;
|
|
77057
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77058
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77059
|
+
secondaryContrast?: number | undefined;
|
|
77060
|
+
isEditorWhite?: boolean | undefined;
|
|
77061
|
+
} | undefined;
|
|
76812
77062
|
}, {
|
|
76813
77063
|
name: string;
|
|
76814
77064
|
nickname?: string | undefined;
|
|
@@ -76825,6 +77075,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76825
77075
|
defaultDestination?: string | undefined;
|
|
76826
77076
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76827
77077
|
} | undefined;
|
|
77078
|
+
theme?: {
|
|
77079
|
+
backgroundColor?: string | undefined;
|
|
77080
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77081
|
+
accentColor?: string | undefined;
|
|
77082
|
+
contrast?: number | undefined;
|
|
77083
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77084
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77085
|
+
secondaryContrast?: number | undefined;
|
|
77086
|
+
isEditorWhite?: boolean | undefined;
|
|
77087
|
+
} | undefined;
|
|
76828
77088
|
}>;
|
|
76829
77089
|
createdAt: z.ZodDate;
|
|
76830
77090
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -76849,6 +77109,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76849
77109
|
defaultDestination?: string | undefined;
|
|
76850
77110
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76851
77111
|
} | undefined;
|
|
77112
|
+
theme?: {
|
|
77113
|
+
backgroundColor?: string | undefined;
|
|
77114
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77115
|
+
accentColor?: string | undefined;
|
|
77116
|
+
contrast?: number | undefined;
|
|
77117
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77118
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77119
|
+
secondaryContrast?: number | undefined;
|
|
77120
|
+
isEditorWhite?: boolean | undefined;
|
|
77121
|
+
} | undefined;
|
|
76852
77122
|
};
|
|
76853
77123
|
loggedOutAt?: Date | undefined;
|
|
76854
77124
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76872,6 +77142,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76872
77142
|
defaultDestination?: string | undefined;
|
|
76873
77143
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76874
77144
|
} | undefined;
|
|
77145
|
+
theme?: {
|
|
77146
|
+
backgroundColor?: string | undefined;
|
|
77147
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77148
|
+
accentColor?: string | undefined;
|
|
77149
|
+
contrast?: number | undefined;
|
|
77150
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77151
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77152
|
+
secondaryContrast?: number | undefined;
|
|
77153
|
+
isEditorWhite?: boolean | undefined;
|
|
77154
|
+
} | undefined;
|
|
76875
77155
|
};
|
|
76876
77156
|
loggedOutAt?: Date | undefined;
|
|
76877
77157
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76934,6 +77214,34 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76934
77214
|
defaultDestination?: string | undefined;
|
|
76935
77215
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76936
77216
|
}>>;
|
|
77217
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
77218
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
77219
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
77220
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
77221
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
77222
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
77223
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
77224
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
77225
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
77226
|
+
}, "strip", z.ZodTypeAny, {
|
|
77227
|
+
backgroundColor?: string | undefined;
|
|
77228
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77229
|
+
accentColor?: string | undefined;
|
|
77230
|
+
contrast?: number | undefined;
|
|
77231
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77232
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77233
|
+
secondaryContrast?: number | undefined;
|
|
77234
|
+
isEditorWhite?: boolean | undefined;
|
|
77235
|
+
}, {
|
|
77236
|
+
backgroundColor?: string | undefined;
|
|
77237
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77238
|
+
accentColor?: string | undefined;
|
|
77239
|
+
contrast?: number | undefined;
|
|
77240
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77241
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77242
|
+
secondaryContrast?: number | undefined;
|
|
77243
|
+
isEditorWhite?: boolean | undefined;
|
|
77244
|
+
}>>;
|
|
76937
77245
|
}>, "strip", z.ZodTypeAny, {
|
|
76938
77246
|
name: string;
|
|
76939
77247
|
nickname?: string | undefined;
|
|
@@ -76950,6 +77258,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76950
77258
|
defaultDestination?: string | undefined;
|
|
76951
77259
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76952
77260
|
} | undefined;
|
|
77261
|
+
theme?: {
|
|
77262
|
+
backgroundColor?: string | undefined;
|
|
77263
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77264
|
+
accentColor?: string | undefined;
|
|
77265
|
+
contrast?: number | undefined;
|
|
77266
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77267
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77268
|
+
secondaryContrast?: number | undefined;
|
|
77269
|
+
isEditorWhite?: boolean | undefined;
|
|
77270
|
+
} | undefined;
|
|
76953
77271
|
}, {
|
|
76954
77272
|
name: string;
|
|
76955
77273
|
nickname?: string | undefined;
|
|
@@ -76966,6 +77284,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76966
77284
|
defaultDestination?: string | undefined;
|
|
76967
77285
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76968
77286
|
} | undefined;
|
|
77287
|
+
theme?: {
|
|
77288
|
+
backgroundColor?: string | undefined;
|
|
77289
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77290
|
+
accentColor?: string | undefined;
|
|
77291
|
+
contrast?: number | undefined;
|
|
77292
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77293
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77294
|
+
secondaryContrast?: number | undefined;
|
|
77295
|
+
isEditorWhite?: boolean | undefined;
|
|
77296
|
+
} | undefined;
|
|
76969
77297
|
}>;
|
|
76970
77298
|
createdAt: z.ZodDate;
|
|
76971
77299
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -76990,6 +77318,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76990
77318
|
defaultDestination?: string | undefined;
|
|
76991
77319
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76992
77320
|
} | undefined;
|
|
77321
|
+
theme?: {
|
|
77322
|
+
backgroundColor?: string | undefined;
|
|
77323
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77324
|
+
accentColor?: string | undefined;
|
|
77325
|
+
contrast?: number | undefined;
|
|
77326
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77327
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77328
|
+
secondaryContrast?: number | undefined;
|
|
77329
|
+
isEditorWhite?: boolean | undefined;
|
|
77330
|
+
} | undefined;
|
|
76993
77331
|
};
|
|
76994
77332
|
loggedOutAt?: Date | undefined;
|
|
76995
77333
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -77013,6 +77351,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
77013
77351
|
defaultDestination?: string | undefined;
|
|
77014
77352
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
77015
77353
|
} | undefined;
|
|
77354
|
+
theme?: {
|
|
77355
|
+
backgroundColor?: string | undefined;
|
|
77356
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77357
|
+
accentColor?: string | undefined;
|
|
77358
|
+
contrast?: number | undefined;
|
|
77359
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77360
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77361
|
+
secondaryContrast?: number | undefined;
|
|
77362
|
+
isEditorWhite?: boolean | undefined;
|
|
77363
|
+
} | undefined;
|
|
77016
77364
|
};
|
|
77017
77365
|
loggedOutAt?: Date | undefined;
|
|
77018
77366
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -77038,6 +77386,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
77038
77386
|
defaultDestination?: string | undefined;
|
|
77039
77387
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
77040
77388
|
} | undefined;
|
|
77389
|
+
theme?: {
|
|
77390
|
+
backgroundColor?: string | undefined;
|
|
77391
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77392
|
+
accentColor?: string | undefined;
|
|
77393
|
+
contrast?: number | undefined;
|
|
77394
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77395
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77396
|
+
secondaryContrast?: number | undefined;
|
|
77397
|
+
isEditorWhite?: boolean | undefined;
|
|
77398
|
+
} | undefined;
|
|
77041
77399
|
};
|
|
77042
77400
|
loggedOutAt?: Date | undefined;
|
|
77043
77401
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -77063,6 +77421,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
77063
77421
|
defaultDestination?: string | undefined;
|
|
77064
77422
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
77065
77423
|
} | undefined;
|
|
77424
|
+
theme?: {
|
|
77425
|
+
backgroundColor?: string | undefined;
|
|
77426
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
77427
|
+
accentColor?: string | undefined;
|
|
77428
|
+
contrast?: number | undefined;
|
|
77429
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
77430
|
+
secondaryBackgroundColor?: string | undefined;
|
|
77431
|
+
secondaryContrast?: number | undefined;
|
|
77432
|
+
isEditorWhite?: boolean | undefined;
|
|
77433
|
+
} | undefined;
|
|
77066
77434
|
};
|
|
77067
77435
|
loggedOutAt?: Date | undefined;
|
|
77068
77436
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -94774,6 +95142,11 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
94774
95142
|
designSystemVersionId?: string | undefined;
|
|
94775
95143
|
};
|
|
94776
95144
|
}>;
|
|
95145
|
+
room(dsId: string, vId: string): Promise<{
|
|
95146
|
+
room: {
|
|
95147
|
+
id: string;
|
|
95148
|
+
};
|
|
95149
|
+
}>;
|
|
94777
95150
|
}
|
|
94778
95151
|
|
|
94779
95152
|
declare class DesignSystemBffEndpoint {
|
|
@@ -96543,6 +96916,16 @@ declare class UsersEndpoint {
|
|
|
96543
96916
|
defaultDestination?: string | undefined;
|
|
96544
96917
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96545
96918
|
} | undefined;
|
|
96919
|
+
theme?: {
|
|
96920
|
+
backgroundColor?: string | undefined;
|
|
96921
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
96922
|
+
accentColor?: string | undefined;
|
|
96923
|
+
contrast?: number | undefined;
|
|
96924
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
96925
|
+
secondaryBackgroundColor?: string | undefined;
|
|
96926
|
+
secondaryContrast?: number | undefined;
|
|
96927
|
+
isEditorWhite?: boolean | undefined;
|
|
96928
|
+
} | undefined;
|
|
96546
96929
|
};
|
|
96547
96930
|
loggedOutAt?: Date | undefined;
|
|
96548
96931
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96760,6 +97143,16 @@ declare class UsersEndpoint {
|
|
|
96760
97143
|
defaultDestination?: string | undefined;
|
|
96761
97144
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96762
97145
|
} | undefined;
|
|
97146
|
+
theme?: {
|
|
97147
|
+
backgroundColor?: string | undefined;
|
|
97148
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
97149
|
+
accentColor?: string | undefined;
|
|
97150
|
+
contrast?: number | undefined;
|
|
97151
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
97152
|
+
secondaryBackgroundColor?: string | undefined;
|
|
97153
|
+
secondaryContrast?: number | undefined;
|
|
97154
|
+
isEditorWhite?: boolean | undefined;
|
|
97155
|
+
} | undefined;
|
|
96763
97156
|
};
|
|
96764
97157
|
loggedOutAt?: Date | undefined;
|
|
96765
97158
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96786,6 +97179,16 @@ declare class UsersEndpoint {
|
|
|
96786
97179
|
defaultDestination?: string | undefined;
|
|
96787
97180
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96788
97181
|
} | undefined;
|
|
97182
|
+
theme?: {
|
|
97183
|
+
backgroundColor?: string | undefined;
|
|
97184
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
97185
|
+
accentColor?: string | undefined;
|
|
97186
|
+
contrast?: number | undefined;
|
|
97187
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
97188
|
+
secondaryBackgroundColor?: string | undefined;
|
|
97189
|
+
secondaryContrast?: number | undefined;
|
|
97190
|
+
isEditorWhite?: boolean | undefined;
|
|
97191
|
+
} | undefined;
|
|
96789
97192
|
};
|
|
96790
97193
|
loggedOutAt?: Date | undefined;
|
|
96791
97194
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96888,25 +97291,32 @@ type DTOEvent = z.infer<typeof DTOEvent>;
|
|
|
96888
97291
|
|
|
96889
97292
|
type HierarchyObserver = (hierarchy: DTODocumentationHierarchyV2) => void;
|
|
96890
97293
|
type TransactionExecutor = (trx: DTOElementActionInput) => Promise<void>;
|
|
97294
|
+
type TransactionIdGenerator = () => string;
|
|
97295
|
+
type Action = DTOElementActionInputOfType<SupportedActionType>;
|
|
97296
|
+
type InputAction = OmitStrict<Action, "tId">;
|
|
96891
97297
|
declare class DocsStructureRepository {
|
|
96892
97298
|
private designSystemVersionId;
|
|
96893
97299
|
private readonly yDoc;
|
|
96894
97300
|
private readonly yObserver;
|
|
96895
97301
|
private _yState;
|
|
96896
97302
|
private _currentHierarchy;
|
|
96897
|
-
private
|
|
97303
|
+
private localActions;
|
|
96898
97304
|
private readonly actionQueue;
|
|
96899
97305
|
private readonly hierarchyObservers;
|
|
96900
97306
|
private readonly initCallbacks;
|
|
96901
|
-
|
|
97307
|
+
private readonly transactionIdGenerator;
|
|
97308
|
+
constructor(designSystemVersionId: string, yDoc: Y.Doc, config: {
|
|
97309
|
+
transactionExecutor: TransactionExecutor;
|
|
97310
|
+
transactionIdGenerator: TransactionIdGenerator;
|
|
97311
|
+
});
|
|
96902
97312
|
get isInitialized(): boolean;
|
|
96903
97313
|
onInitialized(): Promise<void>;
|
|
96904
97314
|
addHierarchyObserver(observer: HierarchyObserver): void;
|
|
96905
97315
|
removeHierarchyObserver(observer: HierarchyObserver): void;
|
|
96906
97316
|
dispose(): void;
|
|
96907
97317
|
get currentHierarchy(): DTODocumentationHierarchyV2;
|
|
96908
|
-
executeAction(action:
|
|
96909
|
-
executeActionPromise(action:
|
|
97318
|
+
executeAction(action: InputAction): void;
|
|
97319
|
+
executeActionPromise(action: InputAction): Promise<void>;
|
|
96910
97320
|
private refreshHierarchy;
|
|
96911
97321
|
private calculateHierarchy;
|
|
96912
97322
|
private onYUpdate;
|
|
@@ -98731,6 +99141,7 @@ type DocumentationHierarchyTransaction = {
|
|
|
98731
99141
|
pageHashesToUpdate?: Record<string, string>;
|
|
98732
99142
|
pageApprovals?: DocumentationPageApproval[];
|
|
98733
99143
|
pageApprovalIdsToDelete?: string[];
|
|
99144
|
+
executedTransactionIds?: string[];
|
|
98734
99145
|
};
|
|
98735
99146
|
declare class BackendVersionRoomYDoc {
|
|
98736
99147
|
private readonly yDoc;
|
|
@@ -98786,6 +99197,9 @@ declare class VersionRoomBaseYDoc {
|
|
|
98786
99197
|
updatedByUserId: string;
|
|
98787
99198
|
}[];
|
|
98788
99199
|
private get documentationPageApprovalsMap();
|
|
99200
|
+
updateExecutedTransactionIds(transactionIds: string[]): void;
|
|
99201
|
+
getExecutedTransactionIds(): string[];
|
|
99202
|
+
private get executedTransactionIdsArray();
|
|
98789
99203
|
}
|
|
98790
99204
|
|
|
98791
99205
|
type DocsPage = VersionRoomDocsPage | LocalDocsPage;
|
|
@@ -98822,4 +99236,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
98822
99236
|
|
|
98823
99237
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
98824
99238
|
|
|
98825
|
-
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, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, 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 };
|
|
99239
|
+
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, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, 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, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, 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, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, 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 };
|