@commercelayer/cli-plugin-exports
Advanced tools
Comparing version 3.4.0 to 3.4.1
@@ -59,3 +59,3 @@ "use strict"; | ||
static examples = [ | ||
'$ commercelayer exports:all -t cusorderstomers -X <output-file-path>', | ||
'$ commercelayer exports:all -t orders -f number -X <output-file-path>', | ||
'$ cl exp:all -t customers -i customer_subscriptions -w email_end=@test.org -X <output-file-path>', | ||
@@ -62,0 +62,0 @@ '$ cl export -t skus -w code_start=SHIRT -X <output-file-path> --csv' |
@@ -12,4 +12,4 @@ "use strict"; | ||
static examples = [ | ||
'$ commercelayer exports:create -t orders -X <output-file-path>', | ||
'$ cl exp:create -t customers -i customer_subscriptions -w email_end=@test.org -X <output-file-path> --csv', | ||
'$ commercelayer exports:create -t orders -f number -X <output-file-path>', | ||
'$ cl exp:create -t customers -i customer_subscriptions -w email_end=@test.org -X <output-file-path> --csv' | ||
]; | ||
@@ -23,3 +23,3 @@ static flags = { | ||
helpValue: cli_core_1.clConfig.exports.types.slice(0, 4).join('|') + '|...', | ||
multiple: false, | ||
multiple: false | ||
}), | ||
@@ -29,3 +29,3 @@ include: base_1.Flags.string({ | ||
multiple: true, | ||
description: 'comma separated resources to include', | ||
description: 'comma separated resources to include' | ||
}), | ||
@@ -35,3 +35,3 @@ where: base_1.Flags.string({ | ||
multiple: true, | ||
description: 'comma separated list of query filters', | ||
description: 'comma separated list of query filters' | ||
}), | ||
@@ -64,3 +64,3 @@ fields: base_1.Flags.string({ | ||
multiple: false, | ||
exclusive: ['save-path'], | ||
exclusive: ['save-path'] | ||
}), | ||
@@ -71,3 +71,3 @@ 'save-path': base_1.Flags.string({ | ||
multiple: false, | ||
exclusive: ['save'], | ||
exclusive: ['save'] | ||
}), | ||
@@ -77,7 +77,7 @@ notify: base_1.Flags.boolean({ | ||
description: 'force system notification when export has finished', | ||
hidden: true, | ||
hidden: true | ||
}), | ||
blind: base_1.Flags.boolean({ | ||
char: 'b', | ||
description: 'execute in blind mode without showing the progress monitor', | ||
description: 'execute in blind mode without showing the progress monitor' | ||
}), | ||
@@ -84,0 +84,0 @@ prettify: base_1.Flags.boolean({ |
@@ -11,3 +11,3 @@ { | ||
"examples": [ | ||
"$ commercelayer exports:all -t cusorderstomers -X <output-file-path>", | ||
"$ commercelayer exports:all -t orders -f number -X <output-file-path>", | ||
"$ cl exp:all -t customers -i customer_subscriptions -w email_end=@test.org -X <output-file-path>", | ||
@@ -244,3 +244,3 @@ "$ cl export -t skus -w code_start=SHIRT -X <output-file-path> --csv" | ||
"examples": [ | ||
"$ commercelayer exports:create -t orders -X <output-file-path>", | ||
"$ commercelayer exports:create -t orders -f number -X <output-file-path>", | ||
"$ cl exp:create -t customers -i customer_subscriptions -w email_end=@test.org -X <output-file-path> --csv" | ||
@@ -921,3 +921,3 @@ ], | ||
}, | ||
"version": "3.4.0" | ||
"version": "3.4.1" | ||
} |
{ | ||
"name": "@commercelayer/cli-plugin-exports", | ||
"description": "Commerce Layer CLI Exports plugin", | ||
"version": "3.4.0", | ||
"version": "3.4.1", | ||
"author": "Pierluigi Viti <pierluigi@commercelayer.io>", | ||
@@ -52,3 +52,4 @@ "homepage": "https://github.com/commercelayer/commercelayer-cli-plugin-exports", | ||
"lint": "eslint src --ext .ts --config .eslintrc", | ||
"lint:fix": "eslint src --fix" | ||
"lint:fix": "eslint src --fix", | ||
"release": "pnpm prepack && pnpm postpack" | ||
}, | ||
@@ -55,0 +56,0 @@ "types": "lib/index.d.ts", |
@@ -109,3 +109,3 @@ # @commercelayer/cli-plugin-exports | ||
EXAMPLES | ||
$ commercelayer exports:all -t cusorderstomers -X <output-file-path> | ||
$ commercelayer exports:all -t orders -f number -X <output-file-path> | ||
@@ -151,3 +151,3 @@ $ cl exp:all -t customers -i customer_subscriptions -w email_end=@test.org -X <output-file-path> | ||
EXAMPLES | ||
$ commercelayer exports:create -t orders -X <output-file-path> | ||
$ commercelayer exports:create -t orders -f number -X <output-file-path> | ||
@@ -154,0 +154,0 @@ $ cl exp:create -t customers -i customer_subscriptions -w email_end=@test.org -X <output-file-path> --csv |
102224