@supernova-studio/model 0.47.12 → 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.mjs CHANGED
@@ -3524,8 +3524,7 @@ var IntegrationCredentialsProfile = z144.object({
3524
3524
  handle: z144.string().optional(),
3525
3525
  type: z144.string().optional(),
3526
3526
  avatarUrl: z144.string().optional(),
3527
- organization: z144.string().optional(),
3528
- installation: z144.string().optional()
3527
+ organization: z144.string().optional()
3529
3528
  });
3530
3529
  var IntegrationCredentials = z144.object({
3531
3530
  id: z144.string(),
@@ -3537,6 +3536,8 @@ var IntegrationCredentials = z144.object({
3537
3536
  refreshToken: z144.string().optional(),
3538
3537
  tokenName: z144.string().optional(),
3539
3538
  expiresAt: z144.coerce.date().optional(),
3539
+ refreshedAt: z144.coerce.date().optional(),
3540
+ username: z144.string().optional(),
3540
3541
  profile: IntegrationCredentialsProfile.optional(),
3541
3542
  customUrl: z144.string().optional(),
3542
3543
  user: UserMinified.optional()