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