skysync-cli
Version:
SkySync Command Line Interface
44 lines (43 loc) • 1.02 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.detailedOutputFormat = exports.outputFormat = void 0;
exports.outputFormat = {
table: [
{
header: 'ID',
property: 'id'
},
{
header: 'Name',
property: 'name'
}
]
};
exports.detailedOutputFormat = {
table: [
...exports.outputFormat.table,
{
header: 'Description',
property: 'description'
},
{
header: 'Instructions',
property: 'instructions'
},
{
header: 'Job Templates',
property: 'job_templates[].name'
},
{
header: 'Client ID',
property: 'applications[].client_id'
},
{
header: 'Client Secret',
property: 'applications[].client_secret'
}
],
json: [
'job_templates[].id'
]
};