@supernova-studio/client 0.59.9 → 0.59.11

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 CHANGED
@@ -9892,6 +9892,107 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
9892
9892
  }>;
9893
9893
  type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
9894
9894
 
9895
+ declare const DTOPageRedirectCreateBody: z.ZodObject<{
9896
+ pagePersistentId: z.ZodString;
9897
+ path: z.ZodString;
9898
+ }, "strip", z.ZodTypeAny, {
9899
+ path: string;
9900
+ pagePersistentId: string;
9901
+ }, {
9902
+ path: string;
9903
+ pagePersistentId: string;
9904
+ }>;
9905
+ type DTOPageRedirectCreateBody = z.infer<typeof DTOPageRedirectCreateBody>;
9906
+ declare const DTOPageRedirectUpdateBody: z.ZodObject<{
9907
+ pagePersistentId: z.ZodOptional<z.ZodString>;
9908
+ path: z.ZodOptional<z.ZodString>;
9909
+ }, "strip", z.ZodTypeAny, {
9910
+ path?: string | undefined;
9911
+ pagePersistentId?: string | undefined;
9912
+ }, {
9913
+ path?: string | undefined;
9914
+ pagePersistentId?: string | undefined;
9915
+ }>;
9916
+ type DTOPageRedirectUpdateBody = z.infer<typeof DTOPageRedirectUpdateBody>;
9917
+ declare const DTOPageRedirect: z.ZodObject<{
9918
+ id: z.ZodString;
9919
+ pagePersistentId: z.ZodString;
9920
+ path: z.ZodString;
9921
+ }, "strip", z.ZodTypeAny, {
9922
+ path: string;
9923
+ id: string;
9924
+ pagePersistentId: string;
9925
+ }, {
9926
+ path: string;
9927
+ id: string;
9928
+ pagePersistentId: string;
9929
+ }>;
9930
+ type DTOPageRedirect = z.infer<typeof DTOPageRedirect>;
9931
+ declare const DTOPageRedirectListResponse: z.ZodObject<{
9932
+ redirects: z.ZodArray<z.ZodObject<{
9933
+ id: z.ZodString;
9934
+ pagePersistentId: z.ZodString;
9935
+ path: z.ZodString;
9936
+ }, "strip", z.ZodTypeAny, {
9937
+ path: string;
9938
+ id: string;
9939
+ pagePersistentId: string;
9940
+ }, {
9941
+ path: string;
9942
+ id: string;
9943
+ pagePersistentId: string;
9944
+ }>, "many">;
9945
+ }, "strip", z.ZodTypeAny, {
9946
+ redirects: {
9947
+ path: string;
9948
+ id: string;
9949
+ pagePersistentId: string;
9950
+ }[];
9951
+ }, {
9952
+ redirects: {
9953
+ path: string;
9954
+ id: string;
9955
+ pagePersistentId: string;
9956
+ }[];
9957
+ }>;
9958
+ type DTOPageRedirectListResponse = z.infer<typeof DTOPageRedirectListResponse>;
9959
+ declare const DTOPageRedirectResponse: z.ZodObject<{
9960
+ redirect: z.ZodObject<{
9961
+ id: z.ZodString;
9962
+ pagePersistentId: z.ZodString;
9963
+ path: z.ZodString;
9964
+ }, "strip", z.ZodTypeAny, {
9965
+ path: string;
9966
+ id: string;
9967
+ pagePersistentId: string;
9968
+ }, {
9969
+ path: string;
9970
+ id: string;
9971
+ pagePersistentId: string;
9972
+ }>;
9973
+ }, "strip", z.ZodTypeAny, {
9974
+ redirect: {
9975
+ path: string;
9976
+ id: string;
9977
+ pagePersistentId: string;
9978
+ };
9979
+ }, {
9980
+ redirect: {
9981
+ path: string;
9982
+ id: string;
9983
+ pagePersistentId: string;
9984
+ };
9985
+ }>;
9986
+ type DTOPageRedirectResponse = z.infer<typeof DTOPageRedirectResponse>;
9987
+ declare const DTOPageRedirectDeleteResponse: z.ZodObject<{
9988
+ success: z.ZodBoolean;
9989
+ }, "strip", z.ZodTypeAny, {
9990
+ success: boolean;
9991
+ }, {
9992
+ success: boolean;
9993
+ }>;
9994
+ type DTOPageRedirectDeleteResponse = z.infer<typeof DTOPageRedirectDeleteResponse>;
9995
+
9895
9996
  declare const DTODesignSystemRole: z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>;
9896
9997
  type DTODesignSystemRole = z.infer<typeof DTODesignSystemRole>;
9897
9998
 
@@ -75930,6 +76031,35 @@ declare const DTOUserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "Ind
75930
76031
  type DTOUserOnboardingJobLevel = z.infer<typeof DTOUserOnboardingJobLevel>;
75931
76032
  declare const DTOUserSource: z.ZodEnum<["SignUp", "Invite", "SSO"]>;
75932
76033
  type DTOUserSource = z.infer<typeof DTOUserSource>;
76034
+ declare const DTOUserTheme: z.ZodObject<{
76035
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
76036
+ backgroundColor: z.ZodOptional<z.ZodString>;
76037
+ accentColor: z.ZodOptional<z.ZodString>;
76038
+ contrast: z.ZodOptional<z.ZodNumber>;
76039
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
76040
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
76041
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
76042
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
76043
+ }, "strip", z.ZodTypeAny, {
76044
+ backgroundColor?: string | undefined;
76045
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76046
+ accentColor?: string | undefined;
76047
+ contrast?: number | undefined;
76048
+ isSecondaryEnabled?: boolean | undefined;
76049
+ secondaryBackgroundColor?: string | undefined;
76050
+ secondaryContrast?: number | undefined;
76051
+ isEditorWhite?: boolean | undefined;
76052
+ }, {
76053
+ backgroundColor?: string | undefined;
76054
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76055
+ accentColor?: string | undefined;
76056
+ contrast?: number | undefined;
76057
+ isSecondaryEnabled?: boolean | undefined;
76058
+ secondaryBackgroundColor?: string | undefined;
76059
+ secondaryContrast?: number | undefined;
76060
+ isEditorWhite?: boolean | undefined;
76061
+ }>;
76062
+ type DTOUserTheme = z.infer<typeof DTOUserTheme>;
75933
76063
  declare const DTOUserOnboarding: z.ZodObject<{
75934
76064
  companyName: z.ZodOptional<z.ZodString>;
75935
76065
  numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
@@ -76004,6 +76134,34 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
76004
76134
  defaultDestination?: string | undefined;
76005
76135
  isPageDraftOnboardingFinished?: boolean | undefined;
76006
76136
  }>>;
76137
+ theme: z.ZodOptional<z.ZodObject<{
76138
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
76139
+ backgroundColor: z.ZodOptional<z.ZodString>;
76140
+ accentColor: z.ZodOptional<z.ZodString>;
76141
+ contrast: z.ZodOptional<z.ZodNumber>;
76142
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
76143
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
76144
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
76145
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
76146
+ }, "strip", z.ZodTypeAny, {
76147
+ backgroundColor?: string | undefined;
76148
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76149
+ accentColor?: string | undefined;
76150
+ contrast?: number | undefined;
76151
+ isSecondaryEnabled?: boolean | undefined;
76152
+ secondaryBackgroundColor?: string | undefined;
76153
+ secondaryContrast?: number | undefined;
76154
+ isEditorWhite?: boolean | undefined;
76155
+ }, {
76156
+ backgroundColor?: string | undefined;
76157
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76158
+ accentColor?: string | undefined;
76159
+ contrast?: number | undefined;
76160
+ isSecondaryEnabled?: boolean | undefined;
76161
+ secondaryBackgroundColor?: string | undefined;
76162
+ secondaryContrast?: number | undefined;
76163
+ isEditorWhite?: boolean | undefined;
76164
+ }>>;
76007
76165
  }>, "strip", z.ZodTypeAny, {
76008
76166
  name: string;
76009
76167
  nickname?: string | undefined;
@@ -76020,6 +76178,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
76020
76178
  defaultDestination?: string | undefined;
76021
76179
  isPageDraftOnboardingFinished?: boolean | undefined;
76022
76180
  } | undefined;
76181
+ theme?: {
76182
+ backgroundColor?: string | undefined;
76183
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76184
+ accentColor?: string | undefined;
76185
+ contrast?: number | undefined;
76186
+ isSecondaryEnabled?: boolean | undefined;
76187
+ secondaryBackgroundColor?: string | undefined;
76188
+ secondaryContrast?: number | undefined;
76189
+ isEditorWhite?: boolean | undefined;
76190
+ } | undefined;
76023
76191
  }, {
76024
76192
  name: string;
76025
76193
  nickname?: string | undefined;
@@ -76036,6 +76204,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
76036
76204
  defaultDestination?: string | undefined;
76037
76205
  isPageDraftOnboardingFinished?: boolean | undefined;
76038
76206
  } | undefined;
76207
+ theme?: {
76208
+ backgroundColor?: string | undefined;
76209
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76210
+ accentColor?: string | undefined;
76211
+ contrast?: number | undefined;
76212
+ isSecondaryEnabled?: boolean | undefined;
76213
+ secondaryBackgroundColor?: string | undefined;
76214
+ secondaryContrast?: number | undefined;
76215
+ isEditorWhite?: boolean | undefined;
76216
+ } | undefined;
76039
76217
  }>;
76040
76218
  type DTOAuthenticatedUserProfile = z.infer<typeof DTOAuthenticatedUserProfile>;
76041
76219
  declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
@@ -76094,6 +76272,34 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
76094
76272
  defaultDestination?: string | undefined;
76095
76273
  isPageDraftOnboardingFinished?: boolean | undefined;
76096
76274
  }>>;
76275
+ theme: z.ZodOptional<z.ZodObject<{
76276
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
76277
+ backgroundColor: z.ZodOptional<z.ZodString>;
76278
+ accentColor: z.ZodOptional<z.ZodString>;
76279
+ contrast: z.ZodOptional<z.ZodNumber>;
76280
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
76281
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
76282
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
76283
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
76284
+ }, "strip", z.ZodTypeAny, {
76285
+ backgroundColor?: string | undefined;
76286
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76287
+ accentColor?: string | undefined;
76288
+ contrast?: number | undefined;
76289
+ isSecondaryEnabled?: boolean | undefined;
76290
+ secondaryBackgroundColor?: string | undefined;
76291
+ secondaryContrast?: number | undefined;
76292
+ isEditorWhite?: boolean | undefined;
76293
+ }, {
76294
+ backgroundColor?: string | undefined;
76295
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76296
+ accentColor?: string | undefined;
76297
+ contrast?: number | undefined;
76298
+ isSecondaryEnabled?: boolean | undefined;
76299
+ secondaryBackgroundColor?: string | undefined;
76300
+ secondaryContrast?: number | undefined;
76301
+ isEditorWhite?: boolean | undefined;
76302
+ }>>;
76097
76303
  }>, "strip", z.ZodTypeAny, {
76098
76304
  name: string;
76099
76305
  nickname?: string | undefined;
@@ -76110,6 +76316,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
76110
76316
  defaultDestination?: string | undefined;
76111
76317
  isPageDraftOnboardingFinished?: boolean | undefined;
76112
76318
  } | undefined;
76319
+ theme?: {
76320
+ backgroundColor?: string | undefined;
76321
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76322
+ accentColor?: string | undefined;
76323
+ contrast?: number | undefined;
76324
+ isSecondaryEnabled?: boolean | undefined;
76325
+ secondaryBackgroundColor?: string | undefined;
76326
+ secondaryContrast?: number | undefined;
76327
+ isEditorWhite?: boolean | undefined;
76328
+ } | undefined;
76113
76329
  }, {
76114
76330
  name: string;
76115
76331
  nickname?: string | undefined;
@@ -76126,6 +76342,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
76126
76342
  defaultDestination?: string | undefined;
76127
76343
  isPageDraftOnboardingFinished?: boolean | undefined;
76128
76344
  } | undefined;
76345
+ theme?: {
76346
+ backgroundColor?: string | undefined;
76347
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76348
+ accentColor?: string | undefined;
76349
+ contrast?: number | undefined;
76350
+ isSecondaryEnabled?: boolean | undefined;
76351
+ secondaryBackgroundColor?: string | undefined;
76352
+ secondaryContrast?: number | undefined;
76353
+ isEditorWhite?: boolean | undefined;
76354
+ } | undefined;
76129
76355
  }>;
76130
76356
  createdAt: z.ZodDate;
76131
76357
  loggedOutAt: z.ZodOptional<z.ZodDate>;
@@ -76150,6 +76376,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
76150
76376
  defaultDestination?: string | undefined;
76151
76377
  isPageDraftOnboardingFinished?: boolean | undefined;
76152
76378
  } | undefined;
76379
+ theme?: {
76380
+ backgroundColor?: string | undefined;
76381
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76382
+ accentColor?: string | undefined;
76383
+ contrast?: number | undefined;
76384
+ isSecondaryEnabled?: boolean | undefined;
76385
+ secondaryBackgroundColor?: string | undefined;
76386
+ secondaryContrast?: number | undefined;
76387
+ isEditorWhite?: boolean | undefined;
76388
+ } | undefined;
76153
76389
  };
76154
76390
  loggedOutAt?: Date | undefined;
76155
76391
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -76173,6 +76409,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
76173
76409
  defaultDestination?: string | undefined;
76174
76410
  isPageDraftOnboardingFinished?: boolean | undefined;
76175
76411
  } | undefined;
76412
+ theme?: {
76413
+ backgroundColor?: string | undefined;
76414
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76415
+ accentColor?: string | undefined;
76416
+ contrast?: number | undefined;
76417
+ isSecondaryEnabled?: boolean | undefined;
76418
+ secondaryBackgroundColor?: string | undefined;
76419
+ secondaryContrast?: number | undefined;
76420
+ isEditorWhite?: boolean | undefined;
76421
+ } | undefined;
76176
76422
  };
76177
76423
  loggedOutAt?: Date | undefined;
76178
76424
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -76235,6 +76481,34 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
76235
76481
  defaultDestination?: string | undefined;
76236
76482
  isPageDraftOnboardingFinished?: boolean | undefined;
76237
76483
  }>>;
76484
+ theme: z.ZodOptional<z.ZodObject<{
76485
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
76486
+ backgroundColor: z.ZodOptional<z.ZodString>;
76487
+ accentColor: z.ZodOptional<z.ZodString>;
76488
+ contrast: z.ZodOptional<z.ZodNumber>;
76489
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
76490
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
76491
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
76492
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
76493
+ }, "strip", z.ZodTypeAny, {
76494
+ backgroundColor?: string | undefined;
76495
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76496
+ accentColor?: string | undefined;
76497
+ contrast?: number | undefined;
76498
+ isSecondaryEnabled?: boolean | undefined;
76499
+ secondaryBackgroundColor?: string | undefined;
76500
+ secondaryContrast?: number | undefined;
76501
+ isEditorWhite?: boolean | undefined;
76502
+ }, {
76503
+ backgroundColor?: string | undefined;
76504
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76505
+ accentColor?: string | undefined;
76506
+ contrast?: number | undefined;
76507
+ isSecondaryEnabled?: boolean | undefined;
76508
+ secondaryBackgroundColor?: string | undefined;
76509
+ secondaryContrast?: number | undefined;
76510
+ isEditorWhite?: boolean | undefined;
76511
+ }>>;
76238
76512
  }>, "strip", z.ZodTypeAny, {
76239
76513
  name: string;
76240
76514
  nickname?: string | undefined;
@@ -76251,6 +76525,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
76251
76525
  defaultDestination?: string | undefined;
76252
76526
  isPageDraftOnboardingFinished?: boolean | undefined;
76253
76527
  } | undefined;
76528
+ theme?: {
76529
+ backgroundColor?: string | undefined;
76530
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76531
+ accentColor?: string | undefined;
76532
+ contrast?: number | undefined;
76533
+ isSecondaryEnabled?: boolean | undefined;
76534
+ secondaryBackgroundColor?: string | undefined;
76535
+ secondaryContrast?: number | undefined;
76536
+ isEditorWhite?: boolean | undefined;
76537
+ } | undefined;
76254
76538
  }, {
76255
76539
  name: string;
76256
76540
  nickname?: string | undefined;
@@ -76267,6 +76551,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
76267
76551
  defaultDestination?: string | undefined;
76268
76552
  isPageDraftOnboardingFinished?: boolean | undefined;
76269
76553
  } | undefined;
76554
+ theme?: {
76555
+ backgroundColor?: string | undefined;
76556
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76557
+ accentColor?: string | undefined;
76558
+ contrast?: number | undefined;
76559
+ isSecondaryEnabled?: boolean | undefined;
76560
+ secondaryBackgroundColor?: string | undefined;
76561
+ secondaryContrast?: number | undefined;
76562
+ isEditorWhite?: boolean | undefined;
76563
+ } | undefined;
76270
76564
  }>;
76271
76565
  createdAt: z.ZodDate;
76272
76566
  loggedOutAt: z.ZodOptional<z.ZodDate>;
@@ -76291,6 +76585,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
76291
76585
  defaultDestination?: string | undefined;
76292
76586
  isPageDraftOnboardingFinished?: boolean | undefined;
76293
76587
  } | undefined;
76588
+ theme?: {
76589
+ backgroundColor?: string | undefined;
76590
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76591
+ accentColor?: string | undefined;
76592
+ contrast?: number | undefined;
76593
+ isSecondaryEnabled?: boolean | undefined;
76594
+ secondaryBackgroundColor?: string | undefined;
76595
+ secondaryContrast?: number | undefined;
76596
+ isEditorWhite?: boolean | undefined;
76597
+ } | undefined;
76294
76598
  };
76295
76599
  loggedOutAt?: Date | undefined;
76296
76600
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -76314,6 +76618,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
76314
76618
  defaultDestination?: string | undefined;
76315
76619
  isPageDraftOnboardingFinished?: boolean | undefined;
76316
76620
  } | undefined;
76621
+ theme?: {
76622
+ backgroundColor?: string | undefined;
76623
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76624
+ accentColor?: string | undefined;
76625
+ contrast?: number | undefined;
76626
+ isSecondaryEnabled?: boolean | undefined;
76627
+ secondaryBackgroundColor?: string | undefined;
76628
+ secondaryContrast?: number | undefined;
76629
+ isEditorWhite?: boolean | undefined;
76630
+ } | undefined;
76317
76631
  };
76318
76632
  loggedOutAt?: Date | undefined;
76319
76633
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -76339,6 +76653,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
76339
76653
  defaultDestination?: string | undefined;
76340
76654
  isPageDraftOnboardingFinished?: boolean | undefined;
76341
76655
  } | undefined;
76656
+ theme?: {
76657
+ backgroundColor?: string | undefined;
76658
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76659
+ accentColor?: string | undefined;
76660
+ contrast?: number | undefined;
76661
+ isSecondaryEnabled?: boolean | undefined;
76662
+ secondaryBackgroundColor?: string | undefined;
76663
+ secondaryContrast?: number | undefined;
76664
+ isEditorWhite?: boolean | undefined;
76665
+ } | undefined;
76342
76666
  };
76343
76667
  loggedOutAt?: Date | undefined;
76344
76668
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -76364,6 +76688,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
76364
76688
  defaultDestination?: string | undefined;
76365
76689
  isPageDraftOnboardingFinished?: boolean | undefined;
76366
76690
  } | undefined;
76691
+ theme?: {
76692
+ backgroundColor?: string | undefined;
76693
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
76694
+ accentColor?: string | undefined;
76695
+ contrast?: number | undefined;
76696
+ isSecondaryEnabled?: boolean | undefined;
76697
+ secondaryBackgroundColor?: string | undefined;
76698
+ secondaryContrast?: number | undefined;
76699
+ isEditorWhite?: boolean | undefined;
76700
+ } | undefined;
76367
76701
  };
76368
76702
  loggedOutAt?: Date | undefined;
76369
76703
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -95838,6 +96172,16 @@ declare class UsersEndpoint {
95838
96172
  defaultDestination?: string | undefined;
95839
96173
  isPageDraftOnboardingFinished?: boolean | undefined;
95840
96174
  } | undefined;
96175
+ theme?: {
96176
+ backgroundColor?: string | undefined;
96177
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
96178
+ accentColor?: string | undefined;
96179
+ contrast?: number | undefined;
96180
+ isSecondaryEnabled?: boolean | undefined;
96181
+ secondaryBackgroundColor?: string | undefined;
96182
+ secondaryContrast?: number | undefined;
96183
+ isEditorWhite?: boolean | undefined;
96184
+ } | undefined;
95841
96185
  };
95842
96186
  loggedOutAt?: Date | undefined;
95843
96187
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -96055,6 +96399,16 @@ declare class UsersEndpoint {
96055
96399
  defaultDestination?: string | undefined;
96056
96400
  isPageDraftOnboardingFinished?: boolean | undefined;
96057
96401
  } | undefined;
96402
+ theme?: {
96403
+ backgroundColor?: string | undefined;
96404
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
96405
+ accentColor?: string | undefined;
96406
+ contrast?: number | undefined;
96407
+ isSecondaryEnabled?: boolean | undefined;
96408
+ secondaryBackgroundColor?: string | undefined;
96409
+ secondaryContrast?: number | undefined;
96410
+ isEditorWhite?: boolean | undefined;
96411
+ } | undefined;
96058
96412
  };
96059
96413
  loggedOutAt?: Date | undefined;
96060
96414
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -96081,6 +96435,16 @@ declare class UsersEndpoint {
96081
96435
  defaultDestination?: string | undefined;
96082
96436
  isPageDraftOnboardingFinished?: boolean | undefined;
96083
96437
  } | undefined;
96438
+ theme?: {
96439
+ backgroundColor?: string | undefined;
96440
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
96441
+ accentColor?: string | undefined;
96442
+ contrast?: number | undefined;
96443
+ isSecondaryEnabled?: boolean | undefined;
96444
+ secondaryBackgroundColor?: string | undefined;
96445
+ secondaryContrast?: number | undefined;
96446
+ isEditorWhite?: boolean | undefined;
96447
+ } | undefined;
96084
96448
  };
96085
96449
  loggedOutAt?: Date | undefined;
96086
96450
  source?: "SignUp" | "Invite" | "SSO" | undefined;
@@ -98758,4 +99122,4 @@ declare class FrontendVersionRoomYDoc {
98758
99122
 
98759
99123
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
98760
99124
 
98761
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, 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, 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, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
99125
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, 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, 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, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };