Queueing and batching media HTTP requests for improved reliability.
This commit is contained in:
35
src/argv.js
35
src/argv.js
@@ -101,6 +101,41 @@ const { argv } = yargs
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('media', {
|
||||
describe: 'Include any release media',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('posters', {
|
||||
describe: 'Include release posters',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('covers', {
|
||||
describe: 'Include release covers',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('photos', {
|
||||
describe: 'Include release photos',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('trailers', {
|
||||
describe: 'Include release trailers',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('teasers', {
|
||||
describe: 'Include release teasers',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('avatars', {
|
||||
describe: 'Include actor avatars',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('inspect', {
|
||||
describe: 'Show data in console.',
|
||||
type: 'boolean',
|
||||
|
||||
Reference in New Issue
Block a user