2024-01-13 21:53:17 +00:00
|
|
|
import {Inputs} from './inputs'
|
|
|
|
|
2024-01-18 03:39:20 +00:00
|
|
|
export const DEFAULT_VALUES_OF_UNSUPPORTED_API_INPUTS: Partial<Inputs> = {
|
2024-01-18 03:27:20 +00:00
|
|
|
sha: '',
|
|
|
|
baseSha: '',
|
|
|
|
since: '',
|
|
|
|
until: '',
|
|
|
|
path: '.',
|
|
|
|
quotepath: true,
|
|
|
|
diffRelative: true,
|
|
|
|
sinceLastRemoteCommit: false,
|
|
|
|
recoverDeletedFiles: false,
|
|
|
|
recoverDeletedFilesToDestination: '',
|
|
|
|
recoverFiles: '',
|
|
|
|
recoverFilesSeparator: '\n',
|
|
|
|
recoverFilesIgnore: '',
|
|
|
|
recoverFilesIgnoreSeparator: '\n',
|
|
|
|
includeAllOldNewRenamedFiles: false,
|
|
|
|
oldNewSeparator: ',',
|
|
|
|
oldNewFilesSeparator: ' ',
|
|
|
|
skipInitialFetch: false,
|
|
|
|
fetchAdditionalSubmoduleHistory: false,
|
2024-04-17 16:24:26 +00:00
|
|
|
dirNamesDeletedFilesIncludeOnlyDeletedDirs: false,
|
2024-04-18 18:45:07 +00:00
|
|
|
excludeSubmodules: false,
|
2024-04-18 21:03:38 +00:00
|
|
|
fetchMissingHistoryMaxRetries: 10,
|
2024-05-21 04:17:52 +00:00
|
|
|
usePosixPathSeparator: false,
|
|
|
|
tagsPattern: '*',
|
|
|
|
tagsIgnorePattern: ''
|
2024-01-18 03:27:20 +00:00
|
|
|
}
|