2024-01-13 14:53:17 -07:00
|
|
|
import {Inputs} from './inputs'
|
|
|
|
|
2024-01-17 20:39:20 -07:00
|
|
|
export const DEFAULT_VALUES_OF_UNSUPPORTED_API_INPUTS: Partial<Inputs> = {
|
2024-01-17 20:27:20 -07: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 10:24:26 -06:00
|
|
|
dirNamesDeletedFilesIncludeOnlyDeletedDirs: false,
|
2024-04-18 12:45:07 -06:00
|
|
|
excludeSubmodules: false,
|
|
|
|
fetchMissingHistoryMaxRetries: 10
|
2024-01-17 20:27:20 -07:00
|
|
|
}
|