-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcommon.js
More file actions
37 lines (36 loc) · 961 Bytes
/
common.js
File metadata and controls
37 lines (36 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const DEFAULT_OPTIONS = [
{
name: 'help', type: Boolean, defaultValue: false
},
{
name: 'id', type: String, multiple: true,
description: 'Restrict by id.\nNote: These are currently assigned automatically on load based on source properties and are thus subject to change.'
},
{
name: 'country', type: String, multiple: true,
description: 'Restrict by country.'
},
{
name: 'city', type: String, multiple: true,
description: 'Restrict by city.'
},
{
name: 'state', type: String, multiple: true,
description: 'Restrict by state.'
},
{
name: 'designation', type: String, multiple: true,
description: 'Restrict by designation.'
},
{
name: 'scope', type: String, multiple: true,
description: 'Restrict by scope.'
},
{
name: 'omit', type: Boolean, defaultValue: false,
description: 'Whether to keep sources flagged as `omit: true`.'
}
]
module.exports = {
DEFAULT_OPTIONS
}