@supernova-studio/client 1.0.0-alpha.12 → 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 +423 -7
- package/dist/index.d.ts +423 -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"> & {
|
|
@@ -1820,6 +1821,8 @@ type LocalDocsPage = OmitStrict<DocumentationPageV2, "id" | "userSlug"> & {
|
|
|
1820
1821
|
type LocalDocsPageGroup = OmitStrict<ElementGroup, "id" | "brandPersistentId" | "childType" | "userSlug"> & {
|
|
1821
1822
|
userSlug?: undefined;
|
|
1822
1823
|
};
|
|
1824
|
+
type NarrowedUnion<T, U extends T> = U;
|
|
1825
|
+
type SupportedActionType = NarrowedUnion<DTOElementActionInput["type"], "DocumentationPageCreate" | "DocumentationPageUpdate" | "DocumentationPageDelete" | "DocumentationPageMove">;
|
|
1823
1826
|
|
|
1824
1827
|
declare const DTOColorTokenInlineData: z.ZodObject<{
|
|
1825
1828
|
value: z.ZodString;
|
|
@@ -10586,6 +10589,107 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
|
|
|
10586
10589
|
}>;
|
|
10587
10590
|
type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
|
|
10588
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
|
+
|
|
10589
10693
|
declare const DTODesignSystemRole: z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>;
|
|
10590
10694
|
type DTODesignSystemRole = z.infer<typeof DTODesignSystemRole>;
|
|
10591
10695
|
|
|
@@ -10621,6 +10725,33 @@ declare const DTODesignSystemVersionStatsQuery: z.ZodObject<{
|
|
|
10621
10725
|
}>;
|
|
10622
10726
|
type DTODesignSystemVersionStatsQuery = z.infer<typeof DTODesignSystemVersionStatsQuery>;
|
|
10623
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
|
+
|
|
10624
10755
|
declare const VersionSQSPayload: z.ZodObject<{
|
|
10625
10756
|
jobId: z.ZodString;
|
|
10626
10757
|
designSystemId: z.ZodString;
|
|
@@ -45265,7 +45396,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
45265
45396
|
};
|
|
45266
45397
|
}>]>;
|
|
45267
45398
|
type DTOElementActionOutput = z.infer<typeof DTOElementActionOutput>;
|
|
45268
|
-
declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
45399
|
+
declare const DTOElementActionInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
45269
45400
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
45270
45401
|
input: z.ZodObject<{
|
|
45271
45402
|
persistentId: z.ZodString;
|
|
@@ -47068,7 +47199,13 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
47068
47199
|
persistentId: string;
|
|
47069
47200
|
approvalState?: "ReadyForReview" | "ChangesRequested" | "Approved" | undefined;
|
|
47070
47201
|
};
|
|
47071
|
-
}>]
|
|
47202
|
+
}>]>, z.ZodObject<{
|
|
47203
|
+
tId: z.ZodOptional<z.ZodString>;
|
|
47204
|
+
}, "strip", z.ZodTypeAny, {
|
|
47205
|
+
tId?: string | undefined;
|
|
47206
|
+
}, {
|
|
47207
|
+
tId?: string | undefined;
|
|
47208
|
+
}>>;
|
|
47072
47209
|
type DTOElementActionInput = z.infer<typeof DTOElementActionInput>;
|
|
47073
47210
|
type DTOElementActionInputOfType<T extends DTOElementActionInput["type"]> = Extract<DTOElementActionInput, {
|
|
47074
47211
|
type: T;
|
|
@@ -76627,6 +76764,35 @@ declare const DTOUserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "Ind
|
|
|
76627
76764
|
type DTOUserOnboardingJobLevel = z.infer<typeof DTOUserOnboardingJobLevel>;
|
|
76628
76765
|
declare const DTOUserSource: z.ZodEnum<["SignUp", "Invite", "SSO"]>;
|
|
76629
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>;
|
|
76630
76796
|
declare const DTOUserOnboarding: z.ZodObject<{
|
|
76631
76797
|
companyName: z.ZodOptional<z.ZodString>;
|
|
76632
76798
|
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
@@ -76701,6 +76867,34 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76701
76867
|
defaultDestination?: string | undefined;
|
|
76702
76868
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76703
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
|
+
}>>;
|
|
76704
76898
|
}>, "strip", z.ZodTypeAny, {
|
|
76705
76899
|
name: string;
|
|
76706
76900
|
nickname?: string | undefined;
|
|
@@ -76717,6 +76911,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76717
76911
|
defaultDestination?: string | undefined;
|
|
76718
76912
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76719
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;
|
|
76720
76924
|
}, {
|
|
76721
76925
|
name: string;
|
|
76722
76926
|
nickname?: string | undefined;
|
|
@@ -76733,6 +76937,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76733
76937
|
defaultDestination?: string | undefined;
|
|
76734
76938
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76735
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;
|
|
76736
76950
|
}>;
|
|
76737
76951
|
type DTOAuthenticatedUserProfile = z.infer<typeof DTOAuthenticatedUserProfile>;
|
|
76738
76952
|
declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -76791,6 +77005,34 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76791
77005
|
defaultDestination?: string | undefined;
|
|
76792
77006
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76793
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
|
+
}>>;
|
|
76794
77036
|
}>, "strip", z.ZodTypeAny, {
|
|
76795
77037
|
name: string;
|
|
76796
77038
|
nickname?: string | undefined;
|
|
@@ -76807,6 +77049,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76807
77049
|
defaultDestination?: string | undefined;
|
|
76808
77050
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76809
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;
|
|
76810
77062
|
}, {
|
|
76811
77063
|
name: string;
|
|
76812
77064
|
nickname?: string | undefined;
|
|
@@ -76823,6 +77075,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76823
77075
|
defaultDestination?: string | undefined;
|
|
76824
77076
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76825
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;
|
|
76826
77088
|
}>;
|
|
76827
77089
|
createdAt: z.ZodDate;
|
|
76828
77090
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -76847,6 +77109,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76847
77109
|
defaultDestination?: string | undefined;
|
|
76848
77110
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76849
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;
|
|
76850
77122
|
};
|
|
76851
77123
|
loggedOutAt?: Date | undefined;
|
|
76852
77124
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76870,6 +77142,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76870
77142
|
defaultDestination?: string | undefined;
|
|
76871
77143
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76872
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;
|
|
76873
77155
|
};
|
|
76874
77156
|
loggedOutAt?: Date | undefined;
|
|
76875
77157
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76932,6 +77214,34 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76932
77214
|
defaultDestination?: string | undefined;
|
|
76933
77215
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76934
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
|
+
}>>;
|
|
76935
77245
|
}>, "strip", z.ZodTypeAny, {
|
|
76936
77246
|
name: string;
|
|
76937
77247
|
nickname?: string | undefined;
|
|
@@ -76948,6 +77258,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76948
77258
|
defaultDestination?: string | undefined;
|
|
76949
77259
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76950
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;
|
|
76951
77271
|
}, {
|
|
76952
77272
|
name: string;
|
|
76953
77273
|
nickname?: string | undefined;
|
|
@@ -76964,6 +77284,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76964
77284
|
defaultDestination?: string | undefined;
|
|
76965
77285
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76966
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;
|
|
76967
77297
|
}>;
|
|
76968
77298
|
createdAt: z.ZodDate;
|
|
76969
77299
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -76988,6 +77318,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76988
77318
|
defaultDestination?: string | undefined;
|
|
76989
77319
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76990
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;
|
|
76991
77331
|
};
|
|
76992
77332
|
loggedOutAt?: Date | undefined;
|
|
76993
77333
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -77011,6 +77351,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
77011
77351
|
defaultDestination?: string | undefined;
|
|
77012
77352
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
77013
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;
|
|
77014
77364
|
};
|
|
77015
77365
|
loggedOutAt?: Date | undefined;
|
|
77016
77366
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -77036,6 +77386,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
77036
77386
|
defaultDestination?: string | undefined;
|
|
77037
77387
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
77038
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;
|
|
77039
77399
|
};
|
|
77040
77400
|
loggedOutAt?: Date | undefined;
|
|
77041
77401
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -77061,6 +77421,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
77061
77421
|
defaultDestination?: string | undefined;
|
|
77062
77422
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
77063
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;
|
|
77064
77434
|
};
|
|
77065
77435
|
loggedOutAt?: Date | undefined;
|
|
77066
77436
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -94772,6 +95142,11 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
94772
95142
|
designSystemVersionId?: string | undefined;
|
|
94773
95143
|
};
|
|
94774
95144
|
}>;
|
|
95145
|
+
room(dsId: string, vId: string): Promise<{
|
|
95146
|
+
room: {
|
|
95147
|
+
id: string;
|
|
95148
|
+
};
|
|
95149
|
+
}>;
|
|
94775
95150
|
}
|
|
94776
95151
|
|
|
94777
95152
|
declare class DesignSystemBffEndpoint {
|
|
@@ -96541,6 +96916,16 @@ declare class UsersEndpoint {
|
|
|
96541
96916
|
defaultDestination?: string | undefined;
|
|
96542
96917
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96543
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;
|
|
96544
96929
|
};
|
|
96545
96930
|
loggedOutAt?: Date | undefined;
|
|
96546
96931
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96758,6 +97143,16 @@ declare class UsersEndpoint {
|
|
|
96758
97143
|
defaultDestination?: string | undefined;
|
|
96759
97144
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96760
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;
|
|
96761
97156
|
};
|
|
96762
97157
|
loggedOutAt?: Date | undefined;
|
|
96763
97158
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96784,6 +97179,16 @@ declare class UsersEndpoint {
|
|
|
96784
97179
|
defaultDestination?: string | undefined;
|
|
96785
97180
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96786
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;
|
|
96787
97192
|
};
|
|
96788
97193
|
loggedOutAt?: Date | undefined;
|
|
96789
97194
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96886,25 +97291,32 @@ type DTOEvent = z.infer<typeof DTOEvent>;
|
|
|
96886
97291
|
|
|
96887
97292
|
type HierarchyObserver = (hierarchy: DTODocumentationHierarchyV2) => void;
|
|
96888
97293
|
type TransactionExecutor = (trx: DTOElementActionInput) => Promise<void>;
|
|
97294
|
+
type TransactionIdGenerator = () => string;
|
|
97295
|
+
type Action = DTOElementActionInputOfType<SupportedActionType>;
|
|
97296
|
+
type InputAction = OmitStrict<Action, "tId">;
|
|
96889
97297
|
declare class DocsStructureRepository {
|
|
96890
97298
|
private designSystemVersionId;
|
|
96891
97299
|
private readonly yDoc;
|
|
96892
97300
|
private readonly yObserver;
|
|
96893
97301
|
private _yState;
|
|
96894
97302
|
private _currentHierarchy;
|
|
96895
|
-
private
|
|
97303
|
+
private localActions;
|
|
96896
97304
|
private readonly actionQueue;
|
|
96897
97305
|
private readonly hierarchyObservers;
|
|
96898
97306
|
private readonly initCallbacks;
|
|
96899
|
-
|
|
97307
|
+
private readonly transactionIdGenerator;
|
|
97308
|
+
constructor(designSystemVersionId: string, yDoc: Y.Doc, config: {
|
|
97309
|
+
transactionExecutor: TransactionExecutor;
|
|
97310
|
+
transactionIdGenerator: TransactionIdGenerator;
|
|
97311
|
+
});
|
|
96900
97312
|
get isInitialized(): boolean;
|
|
96901
97313
|
onInitialized(): Promise<void>;
|
|
96902
97314
|
addHierarchyObserver(observer: HierarchyObserver): void;
|
|
96903
97315
|
removeHierarchyObserver(observer: HierarchyObserver): void;
|
|
96904
97316
|
dispose(): void;
|
|
96905
97317
|
get currentHierarchy(): DTODocumentationHierarchyV2;
|
|
96906
|
-
executeAction(action:
|
|
96907
|
-
executeActionPromise(action:
|
|
97318
|
+
executeAction(action: InputAction): void;
|
|
97319
|
+
executeActionPromise(action: InputAction): Promise<void>;
|
|
96908
97320
|
private refreshHierarchy;
|
|
96909
97321
|
private calculateHierarchy;
|
|
96910
97322
|
private onYUpdate;
|
|
@@ -98729,6 +99141,7 @@ type DocumentationHierarchyTransaction = {
|
|
|
98729
99141
|
pageHashesToUpdate?: Record<string, string>;
|
|
98730
99142
|
pageApprovals?: DocumentationPageApproval[];
|
|
98731
99143
|
pageApprovalIdsToDelete?: string[];
|
|
99144
|
+
executedTransactionIds?: string[];
|
|
98732
99145
|
};
|
|
98733
99146
|
declare class BackendVersionRoomYDoc {
|
|
98734
99147
|
private readonly yDoc;
|
|
@@ -98784,6 +99197,9 @@ declare class VersionRoomBaseYDoc {
|
|
|
98784
99197
|
updatedByUserId: string;
|
|
98785
99198
|
}[];
|
|
98786
99199
|
private get documentationPageApprovalsMap();
|
|
99200
|
+
updateExecutedTransactionIds(transactionIds: string[]): void;
|
|
99201
|
+
getExecutedTransactionIds(): string[];
|
|
99202
|
+
private get executedTransactionIdsArray();
|
|
98787
99203
|
}
|
|
98788
99204
|
|
|
98789
99205
|
type DocsPage = VersionRoomDocsPage | LocalDocsPage;
|
|
@@ -98820,4 +99236,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
98820
99236
|
|
|
98821
99237
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
98822
99238
|
|
|
98823
|
-
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 };
|