@supernova-studio/client 0.54.28 → 0.54.29

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.mjs CHANGED
@@ -4016,6 +4016,7 @@ var UserTest = z139.object({
4016
4016
  id: z139.string(),
4017
4017
  email: z139.string()
4018
4018
  });
4019
+ var UserSource = z140.enum(["SignUp", "Invite", "SSO"]);
4019
4020
  var User = z140.object({
4020
4021
  id: z140.string(),
4021
4022
  email: z140.string(),
@@ -4025,7 +4026,8 @@ var User = z140.object({
4025
4026
  profile: UserProfile,
4026
4027
  linkedIntegrations: UserLinkedIntegrations.optional(),
4027
4028
  loggedOutAt: z140.coerce.date().optional(),
4028
- isProtected: z140.boolean()
4029
+ isProtected: z140.boolean(),
4030
+ source: UserSource.optional()
4029
4031
  });
4030
4032
  var IntegrationDesignSystem = z141.object({
4031
4033
  designSystemId: z141.string(),
@@ -6399,9 +6401,9 @@ var DTOUserGetResponse = z227.object({
6399
6401
  });
6400
6402
 
6401
6403
  // src/api/dto/users/authenticated-user.ts
6402
- var DTOUserOnboardingDepartment = z228.enum(["Design", "Engineering", "Brand", "Other"]);
6403
- var DTOUserOnboardingJobLevel = z228.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
6404
- var DTOUserSource = z228.enum(["SignUp", "Invite", "SSO"]);
6404
+ var DTOUserOnboardingDepartment = UserOnboardingDepartment;
6405
+ var DTOUserOnboardingJobLevel = UserOnboardingJobLevel;
6406
+ var DTOUserSource = UserSource;
6405
6407
  var DTOUserOnboarding = z228.object({
6406
6408
  companyName: z228.string().optional(),
6407
6409
  numberOfPeopleInOrg: z228.string().optional(),