@supernova-studio/client 1.10.15 → 1.10.17

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.ts CHANGED
@@ -100747,6 +100747,607 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100747
100747
  } | null;
100748
100748
  }>;
100749
100749
  type DTOUpdateForgeProjectResponse = z.infer<typeof DTOUpdateForgeProjectResponse>;
100750
+ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
100751
+ project: z.ZodObject<Omit<{
100752
+ createdAt: z.ZodDate;
100753
+ createdByUserId: z.ZodOptional<z.ZodString>;
100754
+ fpContextId: z.ZodString;
100755
+ id: z.ZodString;
100756
+ instruction: z.ZodNullable<z.ZodString>;
100757
+ meta: z.ZodObject<{
100758
+ name: z.ZodString;
100759
+ description: z.ZodOptional<z.ZodString>;
100760
+ }, "strip", z.ZodTypeAny, {
100761
+ name: string;
100762
+ description?: string | undefined;
100763
+ }, {
100764
+ name: string;
100765
+ description?: string | undefined;
100766
+ }>;
100767
+ name: z.ZodString;
100768
+ tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
100769
+ updatedAt: z.ZodOptional<z.ZodDate>;
100770
+ workspaceId: z.ZodString;
100771
+ accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
100772
+ }, "fpContextId"> & {
100773
+ context: z.ZodObject<{
100774
+ createdAt: z.ZodDate;
100775
+ definition: z.ZodString;
100776
+ dependencies: z.ZodArray<z.ZodObject<{
100777
+ packageName: z.ZodString;
100778
+ type: z.ZodLiteral<"npm">;
100779
+ version: z.ZodDefault<z.ZodString>;
100780
+ }, "strip", z.ZodTypeAny, {
100781
+ type: "npm";
100782
+ version: string;
100783
+ packageName: string;
100784
+ }, {
100785
+ type: "npm";
100786
+ packageName: string;
100787
+ version?: string | undefined;
100788
+ }>, "many">;
100789
+ designSystemId: z.ZodString;
100790
+ id: z.ZodString;
100791
+ meta: z.ZodObject<{
100792
+ name: z.ZodString;
100793
+ description: z.ZodOptional<z.ZodString>;
100794
+ }, "strip", z.ZodTypeAny, {
100795
+ name: string;
100796
+ description?: string | undefined;
100797
+ }, {
100798
+ name: string;
100799
+ description?: string | undefined;
100800
+ }>;
100801
+ name: z.ZodString;
100802
+ npmProxySettings: z.ZodIntersection<z.ZodObject<{
100803
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
100804
+ enabledScopes: z.ZodArray<z.ZodString, "many">;
100805
+ customRegistryUrl: z.ZodOptional<z.ZodString>;
100806
+ bypassProxy: z.ZodDefault<z.ZodBoolean>;
100807
+ npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
100808
+ npmProxyVersion: z.ZodOptional<z.ZodNumber>;
100809
+ }, "strip", z.ZodTypeAny, {
100810
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
100811
+ enabledScopes: string[];
100812
+ bypassProxy: boolean;
100813
+ customRegistryUrl?: string | undefined;
100814
+ npmProxyRegistryConfigId?: string | undefined;
100815
+ npmProxyVersion?: number | undefined;
100816
+ }, {
100817
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
100818
+ enabledScopes: string[];
100819
+ customRegistryUrl?: string | undefined;
100820
+ bypassProxy?: boolean | undefined;
100821
+ npmProxyRegistryConfigId?: string | undefined;
100822
+ npmProxyVersion?: number | undefined;
100823
+ }>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
100824
+ authType: z.ZodLiteral<"Basic">;
100825
+ username: z.ZodString;
100826
+ password: z.ZodString;
100827
+ }, "strip", z.ZodTypeAny, {
100828
+ password: string;
100829
+ username: string;
100830
+ authType: "Basic";
100831
+ }, {
100832
+ password: string;
100833
+ username: string;
100834
+ authType: "Basic";
100835
+ }>, z.ZodObject<{
100836
+ authType: z.ZodLiteral<"Bearer">;
100837
+ accessToken: z.ZodString;
100838
+ }, "strip", z.ZodTypeAny, {
100839
+ accessToken: string;
100840
+ authType: "Bearer";
100841
+ }, {
100842
+ accessToken: string;
100843
+ authType: "Bearer";
100844
+ }>, z.ZodObject<{
100845
+ authType: z.ZodLiteral<"None">;
100846
+ }, "strip", z.ZodTypeAny, {
100847
+ authType: "None";
100848
+ }, {
100849
+ authType: "None";
100850
+ }>, z.ZodObject<{
100851
+ authType: z.ZodLiteral<"Custom">;
100852
+ authHeaderName: z.ZodString;
100853
+ authHeaderValue: z.ZodString;
100854
+ }, "strip", z.ZodTypeAny, {
100855
+ authType: "Custom";
100856
+ authHeaderName: string;
100857
+ authHeaderValue: string;
100858
+ }, {
100859
+ authType: "Custom";
100860
+ authHeaderName: string;
100861
+ authHeaderValue: string;
100862
+ }>]>>;
100863
+ platform: z.ZodEnum<["React", "Vue", "Angular"]>;
100864
+ styling: z.ZodEnum<["CSS", "Tailwind"]>;
100865
+ tailwindConfig: z.ZodOptional<z.ZodObject<{
100866
+ content: z.ZodString;
100867
+ version: z.ZodString;
100868
+ }, "strip", z.ZodTypeAny, {
100869
+ version: string;
100870
+ content: string;
100871
+ }, {
100872
+ version: string;
100873
+ content: string;
100874
+ }>>;
100875
+ updatedAt: z.ZodDate;
100876
+ workspaceId: z.ZodString;
100877
+ }, "strip", z.ZodTypeAny, {
100878
+ id: string;
100879
+ name: string;
100880
+ createdAt: Date;
100881
+ updatedAt: Date;
100882
+ workspaceId: string;
100883
+ designSystemId: string;
100884
+ dependencies: {
100885
+ type: "npm";
100886
+ version: string;
100887
+ packageName: string;
100888
+ }[];
100889
+ meta: {
100890
+ name: string;
100891
+ description?: string | undefined;
100892
+ };
100893
+ definition: string;
100894
+ npmProxySettings: {
100895
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
100896
+ enabledScopes: string[];
100897
+ bypassProxy: boolean;
100898
+ customRegistryUrl?: string | undefined;
100899
+ npmProxyRegistryConfigId?: string | undefined;
100900
+ npmProxyVersion?: number | undefined;
100901
+ } & ({
100902
+ password: string;
100903
+ username: string;
100904
+ authType: "Basic";
100905
+ } | {
100906
+ accessToken: string;
100907
+ authType: "Bearer";
100908
+ } | {
100909
+ authType: "None";
100910
+ } | {
100911
+ authType: "Custom";
100912
+ authHeaderName: string;
100913
+ authHeaderValue: string;
100914
+ });
100915
+ platform: "Angular" | "Vue" | "React";
100916
+ styling: "CSS" | "Tailwind";
100917
+ tailwindConfig?: {
100918
+ version: string;
100919
+ content: string;
100920
+ } | undefined;
100921
+ }, {
100922
+ id: string;
100923
+ name: string;
100924
+ createdAt: Date;
100925
+ updatedAt: Date;
100926
+ workspaceId: string;
100927
+ designSystemId: string;
100928
+ dependencies: {
100929
+ type: "npm";
100930
+ packageName: string;
100931
+ version?: string | undefined;
100932
+ }[];
100933
+ meta: {
100934
+ name: string;
100935
+ description?: string | undefined;
100936
+ };
100937
+ definition: string;
100938
+ npmProxySettings: {
100939
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
100940
+ enabledScopes: string[];
100941
+ customRegistryUrl?: string | undefined;
100942
+ bypassProxy?: boolean | undefined;
100943
+ npmProxyRegistryConfigId?: string | undefined;
100944
+ npmProxyVersion?: number | undefined;
100945
+ } & ({
100946
+ password: string;
100947
+ username: string;
100948
+ authType: "Basic";
100949
+ } | {
100950
+ accessToken: string;
100951
+ authType: "Bearer";
100952
+ } | {
100953
+ authType: "None";
100954
+ } | {
100955
+ authType: "Custom";
100956
+ authHeaderName: string;
100957
+ authHeaderValue: string;
100958
+ });
100959
+ platform: "Angular" | "Vue" | "React";
100960
+ styling: "CSS" | "Tailwind";
100961
+ tailwindConfig?: {
100962
+ version: string;
100963
+ content: string;
100964
+ } | undefined;
100965
+ }>;
100966
+ members: z.ZodArray<z.ZodObject<{
100967
+ userId: z.ZodString;
100968
+ forgeProjectId: z.ZodString;
100969
+ workspaceMembershipId: z.ZodString;
100970
+ workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
100971
+ role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
100972
+ } & {
100973
+ user: z.ZodObject<{
100974
+ id: z.ZodString;
100975
+ email: z.ZodString;
100976
+ profile: z.ZodObject<{
100977
+ name: z.ZodString;
100978
+ nickname: z.ZodOptional<z.ZodString>;
100979
+ avatar: z.ZodOptional<z.ZodString>;
100980
+ }, "strip", z.ZodTypeAny, {
100981
+ name: string;
100982
+ nickname?: string | undefined;
100983
+ avatar?: string | undefined;
100984
+ }, {
100985
+ name: string;
100986
+ nickname?: string | undefined;
100987
+ avatar?: string | undefined;
100988
+ }>;
100989
+ }, "strip", z.ZodTypeAny, {
100990
+ id: string;
100991
+ email: string;
100992
+ profile: {
100993
+ name: string;
100994
+ nickname?: string | undefined;
100995
+ avatar?: string | undefined;
100996
+ };
100997
+ }, {
100998
+ id: string;
100999
+ email: string;
101000
+ profile: {
101001
+ name: string;
101002
+ nickname?: string | undefined;
101003
+ avatar?: string | undefined;
101004
+ };
101005
+ }>;
101006
+ effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
101007
+ }, "strip", z.ZodTypeAny, {
101008
+ user: {
101009
+ id: string;
101010
+ email: string;
101011
+ profile: {
101012
+ name: string;
101013
+ nickname?: string | undefined;
101014
+ avatar?: string | undefined;
101015
+ };
101016
+ };
101017
+ userId: string;
101018
+ role: "Admin" | "Viewer" | "Editor";
101019
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101020
+ forgeProjectId: string;
101021
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101022
+ workspaceMembershipId: string;
101023
+ }, {
101024
+ user: {
101025
+ id: string;
101026
+ email: string;
101027
+ profile: {
101028
+ name: string;
101029
+ nickname?: string | undefined;
101030
+ avatar?: string | undefined;
101031
+ };
101032
+ };
101033
+ userId: string;
101034
+ role: "Admin" | "Viewer" | "Editor";
101035
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101036
+ forgeProjectId: string;
101037
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101038
+ workspaceMembershipId: string;
101039
+ }>, "many">;
101040
+ }, "strip", z.ZodTypeAny, {
101041
+ id: string;
101042
+ createdAt: Date;
101043
+ name: string;
101044
+ meta: {
101045
+ name: string;
101046
+ description?: string | undefined;
101047
+ };
101048
+ tags: string[];
101049
+ members: {
101050
+ user: {
101051
+ id: string;
101052
+ email: string;
101053
+ profile: {
101054
+ name: string;
101055
+ nickname?: string | undefined;
101056
+ avatar?: string | undefined;
101057
+ };
101058
+ };
101059
+ userId: string;
101060
+ role: "Admin" | "Viewer" | "Editor";
101061
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101062
+ forgeProjectId: string;
101063
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101064
+ workspaceMembershipId: string;
101065
+ }[];
101066
+ workspaceId: string;
101067
+ accessMode: "Open" | "InviteOnly";
101068
+ context: {
101069
+ id: string;
101070
+ name: string;
101071
+ createdAt: Date;
101072
+ updatedAt: Date;
101073
+ workspaceId: string;
101074
+ designSystemId: string;
101075
+ dependencies: {
101076
+ type: "npm";
101077
+ version: string;
101078
+ packageName: string;
101079
+ }[];
101080
+ meta: {
101081
+ name: string;
101082
+ description?: string | undefined;
101083
+ };
101084
+ definition: string;
101085
+ npmProxySettings: {
101086
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
101087
+ enabledScopes: string[];
101088
+ bypassProxy: boolean;
101089
+ customRegistryUrl?: string | undefined;
101090
+ npmProxyRegistryConfigId?: string | undefined;
101091
+ npmProxyVersion?: number | undefined;
101092
+ } & ({
101093
+ password: string;
101094
+ username: string;
101095
+ authType: "Basic";
101096
+ } | {
101097
+ accessToken: string;
101098
+ authType: "Bearer";
101099
+ } | {
101100
+ authType: "None";
101101
+ } | {
101102
+ authType: "Custom";
101103
+ authHeaderName: string;
101104
+ authHeaderValue: string;
101105
+ });
101106
+ platform: "Angular" | "Vue" | "React";
101107
+ styling: "CSS" | "Tailwind";
101108
+ tailwindConfig?: {
101109
+ version: string;
101110
+ content: string;
101111
+ } | undefined;
101112
+ };
101113
+ instruction: string | null;
101114
+ updatedAt?: Date | undefined;
101115
+ createdByUserId?: string | undefined;
101116
+ }, {
101117
+ id: string;
101118
+ createdAt: Date;
101119
+ name: string;
101120
+ meta: {
101121
+ name: string;
101122
+ description?: string | undefined;
101123
+ };
101124
+ members: {
101125
+ user: {
101126
+ id: string;
101127
+ email: string;
101128
+ profile: {
101129
+ name: string;
101130
+ nickname?: string | undefined;
101131
+ avatar?: string | undefined;
101132
+ };
101133
+ };
101134
+ userId: string;
101135
+ role: "Admin" | "Viewer" | "Editor";
101136
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101137
+ forgeProjectId: string;
101138
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101139
+ workspaceMembershipId: string;
101140
+ }[];
101141
+ workspaceId: string;
101142
+ accessMode: "Open" | "InviteOnly";
101143
+ context: {
101144
+ id: string;
101145
+ name: string;
101146
+ createdAt: Date;
101147
+ updatedAt: Date;
101148
+ workspaceId: string;
101149
+ designSystemId: string;
101150
+ dependencies: {
101151
+ type: "npm";
101152
+ packageName: string;
101153
+ version?: string | undefined;
101154
+ }[];
101155
+ meta: {
101156
+ name: string;
101157
+ description?: string | undefined;
101158
+ };
101159
+ definition: string;
101160
+ npmProxySettings: {
101161
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
101162
+ enabledScopes: string[];
101163
+ customRegistryUrl?: string | undefined;
101164
+ bypassProxy?: boolean | undefined;
101165
+ npmProxyRegistryConfigId?: string | undefined;
101166
+ npmProxyVersion?: number | undefined;
101167
+ } & ({
101168
+ password: string;
101169
+ username: string;
101170
+ authType: "Basic";
101171
+ } | {
101172
+ accessToken: string;
101173
+ authType: "Bearer";
101174
+ } | {
101175
+ authType: "None";
101176
+ } | {
101177
+ authType: "Custom";
101178
+ authHeaderName: string;
101179
+ authHeaderValue: string;
101180
+ });
101181
+ platform: "Angular" | "Vue" | "React";
101182
+ styling: "CSS" | "Tailwind";
101183
+ tailwindConfig?: {
101184
+ version: string;
101185
+ content: string;
101186
+ } | undefined;
101187
+ };
101188
+ instruction: string | null;
101189
+ tags?: string[] | undefined;
101190
+ updatedAt?: Date | undefined;
101191
+ createdByUserId?: string | undefined;
101192
+ }>;
101193
+ }, "strip", z.ZodTypeAny, {
101194
+ project: {
101195
+ id: string;
101196
+ createdAt: Date;
101197
+ name: string;
101198
+ meta: {
101199
+ name: string;
101200
+ description?: string | undefined;
101201
+ };
101202
+ tags: string[];
101203
+ members: {
101204
+ user: {
101205
+ id: string;
101206
+ email: string;
101207
+ profile: {
101208
+ name: string;
101209
+ nickname?: string | undefined;
101210
+ avatar?: string | undefined;
101211
+ };
101212
+ };
101213
+ userId: string;
101214
+ role: "Admin" | "Viewer" | "Editor";
101215
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101216
+ forgeProjectId: string;
101217
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101218
+ workspaceMembershipId: string;
101219
+ }[];
101220
+ workspaceId: string;
101221
+ accessMode: "Open" | "InviteOnly";
101222
+ context: {
101223
+ id: string;
101224
+ name: string;
101225
+ createdAt: Date;
101226
+ updatedAt: Date;
101227
+ workspaceId: string;
101228
+ designSystemId: string;
101229
+ dependencies: {
101230
+ type: "npm";
101231
+ version: string;
101232
+ packageName: string;
101233
+ }[];
101234
+ meta: {
101235
+ name: string;
101236
+ description?: string | undefined;
101237
+ };
101238
+ definition: string;
101239
+ npmProxySettings: {
101240
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
101241
+ enabledScopes: string[];
101242
+ bypassProxy: boolean;
101243
+ customRegistryUrl?: string | undefined;
101244
+ npmProxyRegistryConfigId?: string | undefined;
101245
+ npmProxyVersion?: number | undefined;
101246
+ } & ({
101247
+ password: string;
101248
+ username: string;
101249
+ authType: "Basic";
101250
+ } | {
101251
+ accessToken: string;
101252
+ authType: "Bearer";
101253
+ } | {
101254
+ authType: "None";
101255
+ } | {
101256
+ authType: "Custom";
101257
+ authHeaderName: string;
101258
+ authHeaderValue: string;
101259
+ });
101260
+ platform: "Angular" | "Vue" | "React";
101261
+ styling: "CSS" | "Tailwind";
101262
+ tailwindConfig?: {
101263
+ version: string;
101264
+ content: string;
101265
+ } | undefined;
101266
+ };
101267
+ instruction: string | null;
101268
+ updatedAt?: Date | undefined;
101269
+ createdByUserId?: string | undefined;
101270
+ };
101271
+ }, {
101272
+ project: {
101273
+ id: string;
101274
+ createdAt: Date;
101275
+ name: string;
101276
+ meta: {
101277
+ name: string;
101278
+ description?: string | undefined;
101279
+ };
101280
+ members: {
101281
+ user: {
101282
+ id: string;
101283
+ email: string;
101284
+ profile: {
101285
+ name: string;
101286
+ nickname?: string | undefined;
101287
+ avatar?: string | undefined;
101288
+ };
101289
+ };
101290
+ userId: string;
101291
+ role: "Admin" | "Viewer" | "Editor";
101292
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101293
+ forgeProjectId: string;
101294
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101295
+ workspaceMembershipId: string;
101296
+ }[];
101297
+ workspaceId: string;
101298
+ accessMode: "Open" | "InviteOnly";
101299
+ context: {
101300
+ id: string;
101301
+ name: string;
101302
+ createdAt: Date;
101303
+ updatedAt: Date;
101304
+ workspaceId: string;
101305
+ designSystemId: string;
101306
+ dependencies: {
101307
+ type: "npm";
101308
+ packageName: string;
101309
+ version?: string | undefined;
101310
+ }[];
101311
+ meta: {
101312
+ name: string;
101313
+ description?: string | undefined;
101314
+ };
101315
+ definition: string;
101316
+ npmProxySettings: {
101317
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
101318
+ enabledScopes: string[];
101319
+ customRegistryUrl?: string | undefined;
101320
+ bypassProxy?: boolean | undefined;
101321
+ npmProxyRegistryConfigId?: string | undefined;
101322
+ npmProxyVersion?: number | undefined;
101323
+ } & ({
101324
+ password: string;
101325
+ username: string;
101326
+ authType: "Basic";
101327
+ } | {
101328
+ accessToken: string;
101329
+ authType: "Bearer";
101330
+ } | {
101331
+ authType: "None";
101332
+ } | {
101333
+ authType: "Custom";
101334
+ authHeaderName: string;
101335
+ authHeaderValue: string;
101336
+ });
101337
+ platform: "Angular" | "Vue" | "React";
101338
+ styling: "CSS" | "Tailwind";
101339
+ tailwindConfig?: {
101340
+ version: string;
101341
+ content: string;
101342
+ } | undefined;
101343
+ };
101344
+ instruction: string | null;
101345
+ tags?: string[] | undefined;
101346
+ updatedAt?: Date | undefined;
101347
+ createdByUserId?: string | undefined;
101348
+ };
101349
+ }>;
101350
+ type DTOUGetForgeProjectResponse = z.infer<typeof DTOUGetForgeProjectResponse>;
100750
101351
  declare const DTOCreateForgeProject: z.ZodObject<Pick<{
100751
101352
  createdAt: z.ZodDate;
100752
101353
  createdByUserId: z.ZodOptional<z.ZodString>;
@@ -148483,4 +149084,4 @@ declare function isValidRedirectPath(path: string): {
148483
149084
  reason: ValidationErrorReason | undefined;
148484
149085
  };
148485
149086
 
148486
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, 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, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, 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, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, 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, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, 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, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, 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, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, 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, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, 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, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
149087
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, 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, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, 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, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, 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, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, 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, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, 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, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, 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, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, 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, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };