Package version:

The authorization properties for accessing the source code repository.

interface AuthInfoUpdateParameters {
    expiresIn?: number;
    refreshToken?: string;
    scope?: string;
    token?: string;
    tokenType?: string;
}

Properties

expiresIn?: number

Time in seconds that the token remains valid

refreshToken?: string

The refresh token used to refresh the access token.

scope?: string

The scope of the access token.

token?: string

The access token used to access the source control provider.

tokenType?: string

The type of Auth token.