@supernova-studio/client 0.47.7 → 0.47.9

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(),
@@ -575,8 +577,11 @@ var DataSourceFigmaImportMetadata = z29.object({
575
577
  var DataSourceFigmaRemote = z29.object({
576
578
  type: z29.literal(DataSourceRemoteType.Enum.Figma),
577
579
  fileId: z29.string(),
580
+ preferredCredentialId: z29.string().optional(),
578
581
  ownerId: z29.string(),
582
+ // todo remove or keep to reference who created data source
579
583
  ownerName: z29.string(),
584
+ // todo probably remove
580
585
  scope: DataSourceFigmaScope,
581
586
  state: DataSourceFigmaState,
582
587
  requiresSync: z29.boolean().optional().transform((v) => v ?? false),