This is a plugin for Contentstack's CLI. It allows you to quickly retrieve information about Content Types in a Stack.
The
csdx content-type:auditcommand lists recent changes to a content type and by whom. This is useful when needing to find Content Type versions to compare withcsdx content-type:compare. Audit logs are stored for 90 days within Contentstack.The
csdx content-type:compare-remotecommand allows you to compare the same Content Type between two Stacks. This is useful when you have cloned or duplicated a Stack, and want to check what has changed in a child Stack.The
csdx content-type:comparecommand allows you to compare multiple versions of a Content Type within a single Stack. This is useful when you are working in a development team, and want to compare changes made by colleagues.The
csdx content-type:listcommand is useful when you want to see all the Content Types within a Stack. The Content Type's Display Name, UID, Last Modified Date, and Version number is shown. The list can be ordered bytitleormodifieddate. When developing against Contentstack, Content Type UIDs are needed when requesting data.The
csdx content-type:detailscommand provides useful information, such as:- Field UID and Data Types
- Referenced Content Types
- Options such as required, multiple, and unique
- The full path to a field, useful when using the include reference endpoint or filtering operations, such as the equality endpoint.
The
csdx content-type:diagramcommand creates a visual representation of a Stack's content model.- The ouput format can be either
svgordot. - The diagram's orientation can be changed, using the
-d landscape|portraitflag. - GraphViz is the layout engine. You can export the generated DOT Language source, using the
-t dotflag.
- The ouput format can be either
$ csdx plugins:install contentstack-cli-content-type$ npm install -g contentstack-cli-content-type
$ csdx COMMANDrunning command...
$ csdx (--version)contentstack-cli-content-type/2.0.0 darwin-arm64 node-v22.21.1
$ csdx --help [COMMAND]USAGE $ csdx COMMAND...csdx content-type:auditcsdx content-type:comparecsdx content-type:compare-remotecsdx content-type:detailscsdx content-type:diagramcsdx content-type:list
Display recent changes to a Content Type
USAGE
$ csdx content-type:audit --content-type <value> [-k <value> | -a <value>]
FLAGS
-a, --alias=<value> Alias of the management token
-k, --stack-api-key=<value> Stack API Key
--content-type=<value> (required) Content Type UID
DESCRIPTION
Display recent changes to a Content Type
EXAMPLES
$ csdx content-type:audit --stack-api-key "xxxxxxxxxxxxxxxxxxx" --content-type "home_page"
$ csdx content-type:audit --alias "management token" --content-type "home_page"
See code: src/commands/content-type/audit.ts
Compare two Content Type versions
USAGE
$ csdx content-type:compare --content-type <value> [-k <value> | -a <value>] [--left <value> --right <value>]
FLAGS
-a, --alias=<value> Alias of the management token
-k, --stack-api-key=<value> Stack API Key
--content-type=<value> (required) Content Type UID
--left=<value> Content Type version, i.e. prev version
--right=<value> Content Type version, i.e. later version
DESCRIPTION
Compare two Content Type versions
EXAMPLES
$ csdx content-type:compare --stack-api-key "xxxxxxxxxxxxxxxxxxx" --content-type "home_page"
$ csdx content-type:compare --stack-api-key "xxxxxxxxxxxxxxxxxxx" --content-type "home_page" --left # --right #
$ csdx content-type:compare --alias "management token" --content-type "home_page" --left # --right #
See code: src/commands/content-type/compare.ts
compare two Content Types on different Stacks
USAGE
$ csdx content-type:compare-remote (--origin-stack <value> --remote-stack <value>) --content-type <value>
FLAGS
--content-type=<value> (required) Content Type UID
--origin-stack=<value> (required) Origin Stack API Key
--remote-stack=<value> (required) Remote Stack API Key
DESCRIPTION
compare two Content Types on different Stacks
EXAMPLES
$ csdx content-type:compare-remote --origin-stack "xxxxxxxxxxxxxxxxxxx" --remote-stack "xxxxxxxxxxxxxxxxxxx" --content-type "home_page"
See code: src/commands/content-type/compare-remote.ts
Display Content Type details
USAGE
$ csdx content-type:details --content-type <value> [-k <value> | -a <value>] [--path]
FLAGS
-a, --alias=<value> Alias of the management token
-k, --stack-api-key=<value> Stack API Key
--content-type=<value> (required) Content Type UID
--[no-]path show path column
DESCRIPTION
Display Content Type details
EXAMPLES
$ csdx content-type:details --stack-api-key "xxxxxxxxxxxxxxxxxxx" --content-type "home_page"
$ csdx content-type:details --alias "management token" --content-type "home_page"
$ csdx content-type:details --alias "management token" --content-type "home_page" --no-path
See code: src/commands/content-type/details.ts
Create a visual diagram of a Stack's Content Types
USAGE
$ csdx content-type:diagram --output <value> --direction portrait|landscape --type svg|dot [-k <value> | -a <value>]
FLAGS
-a, --alias=<value> Alias of the management token
-k, --stack-api-key=<value> Stack API Key
--direction=<option> (required) [default: portrait] graph orientation
<options: portrait|landscape>
--output=<value> (required) full path to output
--type=<option> (required) [default: svg] graph output file type
<options: svg|dot>
DESCRIPTION
Create a visual diagram of a Stack's Content Types
EXAMPLES
$ csdx content-type:diagram --stack-api-key "xxxxxxxxxxxxxxxxxxx" --output "content-model.svg"
$ csdx content-type:diagram --alias "management token" --output "content-model.svg"
$ csdx content-type:diagram --alias "management token" --output "content-model.svg" --direction "landscape"
$ csdx content-type:diagram --alias "management token" --output "content-model.dot" --type "dot"
See code: src/commands/content-type/diagram.ts
List all Content Types in a Stack
USAGE
$ csdx content-type:list [-k <value> | -a <value>] [--order title|modified]
FLAGS
-a, --alias=<value> Alias of the management token
-k, --stack-api-key=<value> Stack API Key
--order=<option> [default: title] order by column
<options: title|modified>
DESCRIPTION
List all Content Types in a Stack
EXAMPLES
$ csdx content-type:list --stack-api-key "xxxxxxxxxxxxxxxxxxx"
$ csdx content-type:list --alias "management token"
$ csdx content-type:list --alias "management token" --order modified
See code: src/commands/content-type/list.ts