MCPcopy
hub / github.com/Kong/insomnia / BaseGitCredentialsV1

Interface BaseGitCredentialsV1

packages/insomnia-data/src/models/git-credentials.ts:44–55  ·  view source on GitHub ↗

* Legacy git credentials interface (for backward compatibility) * @deprecated Use the new provider-specific credential types

Source from the content-addressed store, hash-verified

42 * @deprecated Use the new provider-specific credential types
43 */
44interface 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected