@supernova-studio/client 1.43.5 → 1.43.7
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 +4134 -2926
- package/dist/index.d.ts +4134 -2926
- package/dist/index.js +7 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4588,11 +4588,11 @@ var UserOnboarding = _zod.z.object({
|
|
|
4588
4588
|
});
|
|
4589
4589
|
var UserProfile = _zod.z.object({
|
|
4590
4590
|
name: _zod.z.string(),
|
|
4591
|
-
avatar: _zod.z.string()
|
|
4592
|
-
nickname: _zod.z.string()
|
|
4593
|
-
onboarding: UserOnboarding
|
|
4594
|
-
theme: UserTheme
|
|
4595
|
-
portalTheme: PortalTheme
|
|
4591
|
+
avatar: nullishToOptional(_zod.z.string()),
|
|
4592
|
+
nickname: nullishToOptional(_zod.z.string()),
|
|
4593
|
+
onboarding: nullishToOptional(UserOnboarding),
|
|
4594
|
+
theme: nullishToOptional(UserTheme),
|
|
4595
|
+
portalTheme: nullishToOptional(PortalTheme)
|
|
4596
4596
|
});
|
|
4597
4597
|
var UserProfileUpdate = UserProfile.partial().omit({
|
|
4598
4598
|
avatar: true
|
|
@@ -10324,7 +10324,8 @@ var DTOForgeProject = _zod.z.object({
|
|
|
10324
10324
|
}),
|
|
10325
10325
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
10326
10326
|
context: DTOForgeProjectContextV2,
|
|
10327
|
-
numberOfFeatures: _zod.z.number().int().nonnegative()
|
|
10327
|
+
numberOfFeatures: _zod.z.number().int().nonnegative(),
|
|
10328
|
+
numberOfDocuments: _zod.z.number().int().nonnegative().optional()
|
|
10328
10329
|
});
|
|
10329
10330
|
var DTOForgeProjectCreate = DTOForgeProject.pick({
|
|
10330
10331
|
name: true,
|