@supernova-studio/client 0.54.30 → 0.54.32

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.js CHANGED
@@ -3957,6 +3957,30 @@ var UserLinkedIntegrations = _zod.z.object({
3957
3957
  gitlab: IntegrationUserInfo.array().optional(),
3958
3958
  bitbucket: IntegrationUserInfo.array().optional()
3959
3959
  });
3960
+ var UserAnalyticsCleanupSchedule = _zod.z.object({
3961
+ userId: _zod.z.string(),
3962
+ createdAt: _zod.z.coerce.date(),
3963
+ deleteAt: _zod.z.coerce.date()
3964
+ });
3965
+ var UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupSchedule.omit({
3966
+ createdAt: true
3967
+ });
3968
+ var UserIdentity = _zod.z.object({
3969
+ id: _zod.z.string(),
3970
+ userId: _zod.z.string()
3971
+ });
3972
+ var UserMinified = _zod.z.object({
3973
+ id: _zod.z.string(),
3974
+ name: _zod.z.string(),
3975
+ email: _zod.z.string(),
3976
+ avatar: _zod.z.string().optional()
3977
+ });
3978
+ var LiveblocksNotificationSettings = _zod.z.object({
3979
+ sendCommentNotificationEmails: _zod.z.boolean()
3980
+ });
3981
+ var UserNotificationSettings = _zod.z.object({
3982
+ liveblocksNotificationSettings: LiveblocksNotificationSettings
3983
+ });
3960
3984
  var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
3961
3985
  var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
3962
3986
  var UserOnboarding = _zod.z.object({
@@ -3982,6 +4006,10 @@ var UserProfile = _zod.z.object({
3982
4006
  var UserProfileUpdate = UserProfile.partial().omit({
3983
4007
  avatar: true
3984
4008
  });
4009
+ var UserTest = _zod.z.object({
4010
+ id: _zod.z.string(),
4011
+ email: _zod.z.string()
4012
+ });
3985
4013
  var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO"]);
3986
4014
  var User = _zod.z.object({
3987
4015
  id: _zod.z.string(),
@@ -3995,34 +4023,6 @@ var User = _zod.z.object({
3995
4023
  isProtected: _zod.z.boolean(),
3996
4024
  source: UserSource.optional()
3997
4025
  });
3998
- var UserAnalyticsCleanupSchedule = _zod.z.object({
3999
- userId: _zod.z.string(),
4000
- createdAt: _zod.z.coerce.date(),
4001
- deleteAt: _zod.z.coerce.date()
4002
- });
4003
- var UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupSchedule.omit({
4004
- createdAt: true
4005
- });
4006
- var UserIdentity = _zod.z.object({
4007
- id: _zod.z.string(),
4008
- userId: _zod.z.string()
4009
- });
4010
- var UserMinified = _zod.z.object({
4011
- id: _zod.z.string(),
4012
- name: _zod.z.string(),
4013
- email: _zod.z.string(),
4014
- avatar: _zod.z.string().optional()
4015
- });
4016
- var LiveblocksNotificationSettings = _zod.z.object({
4017
- sendCommentNotificationEmails: _zod.z.boolean()
4018
- });
4019
- var UserNotificationSettings = _zod.z.object({
4020
- liveblocksNotificationSettings: LiveblocksNotificationSettings
4021
- });
4022
- var UserTest = _zod.z.object({
4023
- id: _zod.z.string(),
4024
- email: _zod.z.string()
4025
- });
4026
4026
  var IntegrationDesignSystem = _zod.z.object({
4027
4027
  designSystemId: _zod.z.string(),
4028
4028
  brandId: _zod.z.string(),