@supernova-studio/client 0.47.6 → 0.47.8

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
@@ -449,7 +449,9 @@ var UserOnboarding = z21.object({
449
449
  jobTitle: z21.string().optional(),
450
450
  phase: z21.string().optional(),
451
451
  jobLevel: UserOnboardingJobLevel.optional(),
452
- designSystemName: z21.string().optional()
452
+ designSystemName: z21.string().optional(),
453
+ defaultDestination: z21.string().optional(),
454
+ figmaUrl: z21.string().optional()
453
455
  });
454
456
  var UserProfile = z21.object({
455
457
  name: z21.string(),
@@ -3209,6 +3211,9 @@ var SupernovaException = class _SupernovaException extends Error {
3209
3211
  static wrongFormat(message) {
3210
3212
  return new _SupernovaException("WrongFormat", message);
3211
3213
  }
3214
+ static validationError(message) {
3215
+ return new _SupernovaException("ValidationError", message);
3216
+ }
3212
3217
  static accessDenied(message) {
3213
3218
  return new _SupernovaException("AccessDenied", message);
3214
3219
  }