@supernova-studio/client 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
@@ -3030,8 +3030,7 @@ var IntegrationCredentialsProfile = z144.object({
3030
3030
  handle: z144.string().optional(),
3031
3031
  type: z144.string().optional(),
3032
3032
  avatarUrl: z144.string().optional(),
3033
- organization: z144.string().optional(),
3034
- installation: z144.string().optional()
3033
+ organization: z144.string().optional()
3035
3034
  });
3036
3035
  var IntegrationCredentials = z144.object({
3037
3036
  id: z144.string(),
@@ -3043,6 +3042,8 @@ var IntegrationCredentials = z144.object({
3043
3042
  refreshToken: z144.string().optional(),
3044
3043
  tokenName: z144.string().optional(),
3045
3044
  expiresAt: z144.coerce.date().optional(),
3045
+ refreshedAt: z144.coerce.date().optional(),
3046
+ username: z144.string().optional(),
3046
3047
  profile: IntegrationCredentialsProfile.optional(),
3047
3048
  customUrl: z144.string().optional(),
3048
3049
  user: UserMinified.optional()