@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli
1818$ csdx COMMAND
1919running command...
2020$ csdx (--version| -v)
21- @contentstack/cli/1.50 .0 darwin-arm64 node-v22.14.0
21+ @contentstack/cli/1.52 .0 darwin-arm64 node-v22.14.0
2222$ csdx --help [COMMAND]
2323USAGE
2424 $ csdx COMMAND
@@ -335,7 +335,7 @@ FLAGS
335335 -e, --environment=<value> Environment name for delivery token
336336 -k, --stack-api-key=<value> Stack API Key
337337 -m, --management Set this flag to save management token
338- -t, --token=<value> Add the token name
338+ -t, --token=<value> [env: TOKEN] Add the token name
339339 -y, --yes Use this flag to skip confirmation
340340
341341DESCRIPTION
@@ -2238,24 +2238,30 @@ Export entries, taxonomies, terms or organization users to csv using this comman
22382238USAGE
22392239 $ csdx cm:export-to-csv [--action entries|users|teams|taxonomies] [-a <value>] [--org <value>] [-n <value>] [-k
22402240 <value>] [--org-name <value>] [--locale <value>] [--content-type <value>] [--branch <value>] [--team-uid <value>]
2241- [--taxonomy-uid <value>] [--delimiter <value>]
2241+ [--taxonomy-uid <value>] [--include-fallback] [--fallback-locale <value>] [-- delimiter <value>]
22422242
22432243FLAGS
2244- -a, --alias=<value> Alias of the management token.
2245- -k, --stack-api-key=<value> API Key of the source stack.
2246- -n, --stack-name=<value> Name of the stack that needs to be created as CSV filename.
2247- --action=<option> Option to export data (entries, users, teams, taxonomies). <options:
2248- entries|users|teams|taxonomies>
2249- <options: entries|users|teams|taxonomies>
2250- --branch=<value> Branch from which entries will be exported.
2251- --content-type=<value> Content type of entries that will be exported.
2252- --delimiter=<value> [default: ,] [optional] Provide a delimiter to separate individual data fields within the
2253- CSV file. For example: cm:export-to-csv --delimiter '|'
2254- --locale=<value> Locale of entries that will be exported.
2255- --org=<value> Provide organization UID to clone org users.
2256- --org-name=<value> Name of the organization that needs to be created as CSV filename.
2257- --taxonomy-uid=<value> Provide the taxonomy UID of the related terms you want to export.
2258- --team-uid=<value> Provide the UID of a specific team in an organization.
2244+ -a, --alias=<value> Alias of the management token.
2245+ -k, --stack-api-key=<value> API Key of the source stack.
2246+ -n, --stack-name=<value> Name of the stack that needs to be created as CSV filename.
2247+ --action=<option> Option to export data (entries, users, teams, taxonomies). <options:
2248+ entries|users|teams|taxonomies>
2249+ <options: entries|users|teams|taxonomies>
2250+ --branch=<value> Branch from which entries will be exported.
2251+ --content-type=<value> Content type of entries that will be exported.
2252+ --delimiter=<value> [default: ,] [optional] Provide a delimiter to separate individual data fields within
2253+ the CSV file. For example: cm:export-to-csv --delimiter '|'
2254+ --fallback-locale=<value> [Optional] Specify a specific fallback locale for taxonomy export. This locale will be
2255+ used when a taxonomy term doesn't exist in the primary locale. Takes priority over
2256+ branch fallback hierarchy when both are specified.
2257+ --include-fallback [Optional] Include fallback locale data when exporting taxonomies. When enabled, if a
2258+ taxonomy term doesn't exist in the specified locale, it will fallback to the hierarchy
2259+ defined in the branch settings.
2260+ --locale=<value> Locale of entries that will be exported.
2261+ --org=<value> Provide organization UID to clone org users.
2262+ --org-name=<value> Name of the organization that needs to be created as CSV filename.
2263+ --taxonomy-uid=<value> Provide the taxonomy UID of the related terms you want to export.
2264+ --team-uid=<value> Provide the UID of a specific team in an organization.
22592265
22602266DESCRIPTION
22612267 Export entries, taxonomies, terms or organization users to csv using this command
@@ -2334,6 +2340,24 @@ EXAMPLES
23342340 Exporting taxonomies and respective terms to a .CSV file with a delimiter
23352341
23362342 $ csdx cm:export-to-csv --action <taxonomies> --alias <management-token-alias> --delimiter <delimiter>
2343+
2344+
2345+
2346+ Exporting taxonomies with specific locale
2347+
2348+ $ csdx cm:export-to-csv --action <taxonomies> --alias <management-token-alias> --locale <locale>
2349+
2350+
2351+
2352+ Exporting taxonomies with fallback locale support
2353+
2354+ $ csdx cm:export-to-csv --action <taxonomies> --alias <management-token-alias> --locale <locale> --include-fallback
2355+
2356+
2357+
2358+ Exporting taxonomies with custom fallback locale
2359+
2360+ $ csdx cm:export-to-csv --action <taxonomies> --alias <management-token-alias> --locale <locale> --include-fallback --fallback-locale <fallback-locale>
23372361```
23382362
23392363_ See code: [ @contentstack/cli-cm-export-to-csv ] ( https://github.com/contentstack/cli/blob/main/packages/contentstack-export-to-csv/src/commands/cm/export-to-csv.js ) _
@@ -3649,7 +3673,7 @@ USAGE
36493673 [--personalize <value>] [--launch <value>]
36503674
36513675ARGUMENTS
3652- REGION Name for the region
3676+ [ REGION] Name for the region
36533677
36543678FLAGS
36553679 -d, --cda=<value> Custom host to set for content delivery API, if this flag is added then cma, ui-host and
@@ -3705,7 +3729,7 @@ USAGE
37053729 $ csdx help [COMMAND...] [-n]
37063730
37073731ARGUMENTS
3708- COMMAND... Command to show help for.
3732+ [ COMMAND...] Command to show help for.
37093733
37103734FLAGS
37113735 -n, --nested-commands Include all nested commands in the output.
@@ -3714,7 +3738,7 @@ DESCRIPTION
37143738 Display help for csdx.
37153739```
37163740
3717- _ See code: [ @oclif/plugin-help ] ( https://github.com/oclif/plugin-help/blob/v6.2.33 /src/commands/help.ts ) _
3741+ _ See code: [ @oclif/plugin-help ] ( https://github.com/oclif/plugin-help/blob/v6.2.34 /src/commands/help.ts ) _
37183742
37193743## ` csdx launch `
37203744
@@ -3855,7 +3879,7 @@ USAGE
38553879 $ csdx launch:functions [-p <value>] [-d <value>]
38563880
38573881FLAGS
3858- -d, --data-dir=<value> [default: /cli/packages/contentstack] Current working directory
3882+ -d, --data-dir=<value> [default: /Users/sunil.lakshman/Documents/ cli/packages/contentstack] Current working directory
38593883 -p, --port=<value> [default: 3000] Port number
38603884
38613885DESCRIPTION
@@ -4031,7 +4055,7 @@ EXAMPLES
40314055 $ csdx plugins
40324056```
40334057
4034- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.50 /src/commands/plugins/index.ts ) _
4058+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.52 /src/commands/plugins/index.ts ) _
40354059
40364060## ` csdx plugins:add PLUGIN `
40374061
@@ -4105,7 +4129,7 @@ EXAMPLES
41054129 $ csdx plugins:inspect myplugin
41064130```
41074131
4108- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.50 /src/commands/plugins/inspect.ts ) _
4132+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.52 /src/commands/plugins/inspect.ts ) _
41094133
41104134## ` csdx plugins:install PLUGIN `
41114135
@@ -4154,7 +4178,7 @@ EXAMPLES
41544178 $ csdx plugins:install someuser/someplugin
41554179```
41564180
4157- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.50 /src/commands/plugins/install.ts ) _
4181+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.52 /src/commands/plugins/install.ts ) _
41584182
41594183## ` csdx plugins:link PATH `
41604184
@@ -4185,7 +4209,7 @@ EXAMPLES
41854209 $ csdx plugins:link myplugin
41864210```
41874211
4188- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.50 /src/commands/plugins/link.ts ) _
4212+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.52 /src/commands/plugins/link.ts ) _
41894213
41904214## ` csdx plugins:remove [PLUGIN] `
41914215
@@ -4196,7 +4220,7 @@ USAGE
41964220 $ csdx plugins:remove [PLUGIN...] [-h] [-v]
41974221
41984222ARGUMENTS
4199- PLUGIN... plugin to uninstall
4223+ [ PLUGIN...] plugin to uninstall
42004224
42014225FLAGS
42024226 -h, --help Show CLI help.
@@ -4226,7 +4250,7 @@ FLAGS
42264250 --reinstall Reinstall all plugins after uninstalling.
42274251```
42284252
4229- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.50 /src/commands/plugins/reset.ts ) _
4253+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.52 /src/commands/plugins/reset.ts ) _
42304254
42314255## ` csdx plugins:uninstall [PLUGIN] `
42324256
@@ -4237,7 +4261,7 @@ USAGE
42374261 $ csdx plugins:uninstall [PLUGIN...] [-h] [-v]
42384262
42394263ARGUMENTS
4240- PLUGIN... plugin to uninstall
4264+ [ PLUGIN...] plugin to uninstall
42414265
42424266FLAGS
42434267 -h, --help Show CLI help.
@@ -4254,7 +4278,7 @@ EXAMPLES
42544278 $ csdx plugins:uninstall myplugin
42554279```
42564280
4257- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.50 /src/commands/plugins/uninstall.ts ) _
4281+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.52 /src/commands/plugins/uninstall.ts ) _
42584282
42594283## ` csdx plugins:unlink [PLUGIN] `
42604284
@@ -4265,7 +4289,7 @@ USAGE
42654289 $ csdx plugins:unlink [PLUGIN...] [-h] [-v]
42664290
42674291ARGUMENTS
4268- PLUGIN... plugin to uninstall
4292+ [ PLUGIN...] plugin to uninstall
42694293
42704294FLAGS
42714295 -h, --help Show CLI help.
@@ -4298,7 +4322,7 @@ DESCRIPTION
42984322 Update installed plugins.
42994323```
43004324
4301- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.50 /src/commands/plugins/update.ts ) _
4325+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.52 /src/commands/plugins/update.ts ) _
43024326
43034327## ` csdx tokens `
43044328
0 commit comments