@supernova-studio/model 0.47.11 → 0.47.13

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
@@ -507,7 +507,7 @@ var DataSourceFigmaScope = _zod.z.object({
507
507
  documentationFrames: _zod.z.boolean(),
508
508
  tokens: _zod.z.boolean(),
509
509
  themePersistentId: _zod.z.string().optional(),
510
- isUnpublishedImportFallbackEnabled: _zod.z.boolean()
510
+ isUnpublishedContentFallbackEnabled: _zod.z.boolean()
511
511
  });
512
512
  var DataSourceFigmaImportMetadata = _zod.z.object({
513
513
  fileData: DataSourceFigmaFileData.optional(),
@@ -3524,8 +3524,7 @@ var IntegrationCredentialsProfile = _zod.z.object({
3524
3524
  handle: _zod.z.string().optional(),
3525
3525
  type: _zod.z.string().optional(),
3526
3526
  avatarUrl: _zod.z.string().optional(),
3527
- organization: _zod.z.string().optional(),
3528
- installation: _zod.z.string().optional()
3527
+ organization: _zod.z.string().optional()
3529
3528
  });
3530
3529
  var IntegrationCredentials = _zod.z.object({
3531
3530
  id: _zod.z.string(),
@@ -3537,6 +3536,8 @@ var IntegrationCredentials = _zod.z.object({
3537
3536
  refreshToken: _zod.z.string().optional(),
3538
3537
  tokenName: _zod.z.string().optional(),
3539
3538
  expiresAt: _zod.z.coerce.date().optional(),
3539
+ refreshedAt: _zod.z.coerce.date().optional(),
3540
+ username: _zod.z.string().optional(),
3540
3541
  profile: IntegrationCredentialsProfile.optional(),
3541
3542
  customUrl: _zod.z.string().optional(),
3542
3543
  user: UserMinified.optional()