@supernova-studio/client 0.59.10 → 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 +264 -1
- package/dist/index.d.ts +264 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/users/authenticated-user.ts +4 -1
package/dist/index.d.mts
CHANGED
|
@@ -76031,6 +76031,35 @@ declare const DTOUserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "Ind
|
|
|
76031
76031
|
type DTOUserOnboardingJobLevel = z.infer<typeof DTOUserOnboardingJobLevel>;
|
|
76032
76032
|
declare const DTOUserSource: z.ZodEnum<["SignUp", "Invite", "SSO"]>;
|
|
76033
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>;
|
|
76034
76063
|
declare const DTOUserOnboarding: z.ZodObject<{
|
|
76035
76064
|
companyName: z.ZodOptional<z.ZodString>;
|
|
76036
76065
|
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
@@ -76105,6 +76134,34 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76105
76134
|
defaultDestination?: string | undefined;
|
|
76106
76135
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76107
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
|
+
}>>;
|
|
76108
76165
|
}>, "strip", z.ZodTypeAny, {
|
|
76109
76166
|
name: string;
|
|
76110
76167
|
nickname?: string | undefined;
|
|
@@ -76121,6 +76178,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76121
76178
|
defaultDestination?: string | undefined;
|
|
76122
76179
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76123
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;
|
|
76124
76191
|
}, {
|
|
76125
76192
|
name: string;
|
|
76126
76193
|
nickname?: string | undefined;
|
|
@@ -76137,6 +76204,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76137
76204
|
defaultDestination?: string | undefined;
|
|
76138
76205
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76139
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;
|
|
76140
76217
|
}>;
|
|
76141
76218
|
type DTOAuthenticatedUserProfile = z.infer<typeof DTOAuthenticatedUserProfile>;
|
|
76142
76219
|
declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -76195,6 +76272,34 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76195
76272
|
defaultDestination?: string | undefined;
|
|
76196
76273
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76197
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
|
+
}>>;
|
|
76198
76303
|
}>, "strip", z.ZodTypeAny, {
|
|
76199
76304
|
name: string;
|
|
76200
76305
|
nickname?: string | undefined;
|
|
@@ -76211,6 +76316,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76211
76316
|
defaultDestination?: string | undefined;
|
|
76212
76317
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76213
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;
|
|
76214
76329
|
}, {
|
|
76215
76330
|
name: string;
|
|
76216
76331
|
nickname?: string | undefined;
|
|
@@ -76227,6 +76342,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76227
76342
|
defaultDestination?: string | undefined;
|
|
76228
76343
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76229
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;
|
|
76230
76355
|
}>;
|
|
76231
76356
|
createdAt: z.ZodDate;
|
|
76232
76357
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -76251,6 +76376,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76251
76376
|
defaultDestination?: string | undefined;
|
|
76252
76377
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76253
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;
|
|
76254
76389
|
};
|
|
76255
76390
|
loggedOutAt?: Date | undefined;
|
|
76256
76391
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76274,6 +76409,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76274
76409
|
defaultDestination?: string | undefined;
|
|
76275
76410
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76276
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;
|
|
76277
76422
|
};
|
|
76278
76423
|
loggedOutAt?: Date | undefined;
|
|
76279
76424
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76336,6 +76481,34 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76336
76481
|
defaultDestination?: string | undefined;
|
|
76337
76482
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76338
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
|
+
}>>;
|
|
76339
76512
|
}>, "strip", z.ZodTypeAny, {
|
|
76340
76513
|
name: string;
|
|
76341
76514
|
nickname?: string | undefined;
|
|
@@ -76352,6 +76525,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76352
76525
|
defaultDestination?: string | undefined;
|
|
76353
76526
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76354
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;
|
|
76355
76538
|
}, {
|
|
76356
76539
|
name: string;
|
|
76357
76540
|
nickname?: string | undefined;
|
|
@@ -76368,6 +76551,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76368
76551
|
defaultDestination?: string | undefined;
|
|
76369
76552
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76370
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;
|
|
76371
76564
|
}>;
|
|
76372
76565
|
createdAt: z.ZodDate;
|
|
76373
76566
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -76392,6 +76585,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76392
76585
|
defaultDestination?: string | undefined;
|
|
76393
76586
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76394
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;
|
|
76395
76598
|
};
|
|
76396
76599
|
loggedOutAt?: Date | undefined;
|
|
76397
76600
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76415,6 +76618,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76415
76618
|
defaultDestination?: string | undefined;
|
|
76416
76619
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76417
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;
|
|
76418
76631
|
};
|
|
76419
76632
|
loggedOutAt?: Date | undefined;
|
|
76420
76633
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76440,6 +76653,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76440
76653
|
defaultDestination?: string | undefined;
|
|
76441
76654
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76442
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;
|
|
76443
76666
|
};
|
|
76444
76667
|
loggedOutAt?: Date | undefined;
|
|
76445
76668
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76465,6 +76688,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76465
76688
|
defaultDestination?: string | undefined;
|
|
76466
76689
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76467
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;
|
|
76468
76701
|
};
|
|
76469
76702
|
loggedOutAt?: Date | undefined;
|
|
76470
76703
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -95939,6 +96172,16 @@ declare class UsersEndpoint {
|
|
|
95939
96172
|
defaultDestination?: string | undefined;
|
|
95940
96173
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
95941
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;
|
|
95942
96185
|
};
|
|
95943
96186
|
loggedOutAt?: Date | undefined;
|
|
95944
96187
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96156,6 +96399,16 @@ declare class UsersEndpoint {
|
|
|
96156
96399
|
defaultDestination?: string | undefined;
|
|
96157
96400
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96158
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;
|
|
96159
96412
|
};
|
|
96160
96413
|
loggedOutAt?: Date | undefined;
|
|
96161
96414
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96182,6 +96435,16 @@ declare class UsersEndpoint {
|
|
|
96182
96435
|
defaultDestination?: string | undefined;
|
|
96183
96436
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96184
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;
|
|
96185
96448
|
};
|
|
96186
96449
|
loggedOutAt?: Date | undefined;
|
|
96187
96450
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -98859,4 +99122,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
98859
99122
|
|
|
98860
99123
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
98861
99124
|
|
|
98862
|
-
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, 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 };
|