@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.mjs
CHANGED
|
@@ -5377,6 +5377,7 @@ var DTOUserProfileUpdate = UserProfileUpdate;
|
|
|
5377
5377
|
var DTOUserOnboardingDepartment = UserOnboardingDepartment;
|
|
5378
5378
|
var DTOUserOnboardingJobLevel = UserOnboardingJobLevel;
|
|
5379
5379
|
var DTOUserSource = UserSource;
|
|
5380
|
+
var DTOUserTheme = UserTheme;
|
|
5380
5381
|
var DTOUserOnboarding = z187.object({
|
|
5381
5382
|
companyName: z187.string().optional(),
|
|
5382
5383
|
numberOfPeopleInOrg: z187.string().optional(),
|
|
@@ -5390,7 +5391,8 @@ var DTOUserOnboarding = z187.object({
|
|
|
5390
5391
|
isPageDraftOnboardingFinished: z187.boolean().optional()
|
|
5391
5392
|
});
|
|
5392
5393
|
var DTOAuthenticatedUserProfile = DTOUserProfile.extend({
|
|
5393
|
-
onboarding: DTOUserOnboarding.optional()
|
|
5394
|
+
onboarding: DTOUserOnboarding.optional(),
|
|
5395
|
+
theme: DTOUserTheme.optional()
|
|
5394
5396
|
});
|
|
5395
5397
|
var DTOAuthenticatedUser = DTOUser.extend({
|
|
5396
5398
|
profile: DTOAuthenticatedUserProfile,
|
|
@@ -13576,6 +13578,7 @@ export {
|
|
|
13576
13578
|
DTOUserProfileUpdatePayload,
|
|
13577
13579
|
DTOUserProfileUpdateResponse,
|
|
13578
13580
|
DTOUserSource,
|
|
13581
|
+
DTOUserTheme,
|
|
13579
13582
|
DTOUserWorkspaceMembership,
|
|
13580
13583
|
DTOUserWorkspaceMembershipsResponse,
|
|
13581
13584
|
DTOWorkspace,
|