* Legacy git credentials interface (for backward compatibility) * @deprecated Use the new provider-specific credential types
| 42 | * @deprecated Use the new provider-specific credential types |
| 43 | */ |
| 44 | interface BaseGitCredentialsV1 { |
| 45 | /** @deprecated Use provider-specific credentials.token instead */ |
| 46 | token: string; |
| 47 | /** @deprecated Use provider-specific credentials.refreshToken instead */ |
| 48 | refreshToken?: string; |
| 49 | provider: 'githubapp' | 'github' | 'gitlab' | 'custom'; |
| 50 | author: { |
| 51 | avatarUrl?: string; |
| 52 | name: string; |
| 53 | email: string; |
| 54 | }; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Email from provider |
nothing calls this directly
no outgoing calls
no test coverage detected