Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
![Node.js CI](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/workflows/Node.js%20CI/badge.svg)
![Node.js CI](https://github.com/contentstack/contentstack-cli-content-type/workflows/Node.js%20CI/badge.svg)
![npm](https://img.shields.io/npm/v/contentstack-cli-content-type)

## Description
Expand DownExpand Up@@ -29,7 +29,7 @@ The Content Type's Display Name, UID, Last Modified Date, and Version number is
* The ouput format can be either `svg` or `dot`.
* The diagram's orientation can be changed, using the `-d landscape|portrait` flag.
* [GraphViz](https://graphviz.org/) is the layout engine. You can export the generated DOT Language source, using the `-t dot` flag.
* ![Diagram Output](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/main/screenshots/starter-app.svg)
* ![Diagram Output](https://github.com/contentstack/contentstack-cli-content-type/blob/main/screenshots/starter-app.svg)

## How to install this plugin

Expand DownExpand Up@@ -86,7 +86,7 @@ EXAMPLES
$ csdx content-type:audit --alias "management token" --content-type "home_page"
```

_See code: [src/commands/content-type/audit.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/audit.ts)_
_See code: [src/commands/content-type/audit.ts](https://github.com/contentstack/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/audit.ts)_

## `csdx content-type:compare`

Expand DownExpand Up@@ -116,7 +116,7 @@ EXAMPLES
$ csdx content-type:compare --alias "management token" --content-type "home_page" --left # --right #
```

_See code: [src/commands/content-type/compare.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/compare.ts)_
_See code: [src/commands/content-type/compare.ts](https://github.com/contentstack/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/compare.ts)_

## `csdx content-type:compare-remote`

Expand All@@ -138,7 +138,7 @@ 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](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/compare-remote.ts)_
_See code: [src/commands/content-type/compare-remote.ts](https://github.com/contentstack/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/compare-remote.ts)_

## `csdx content-type:details`

Expand DownExpand Up@@ -167,7 +167,7 @@ EXAMPLES
$ csdx content-type:details --alias "management token" --content-type "home_page" --no-path
```

_See code: [src/commands/content-type/details.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/details.ts)_
_See code: [src/commands/content-type/details.ts](https://github.com/contentstack/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/details.ts)_

## `csdx content-type:diagram`

Expand DownExpand Up@@ -202,7 +202,7 @@ EXAMPLES
$ csdx content-type:diagram --alias "management token" --output "content-model.dot" --type "dot"
```

_See code: [src/commands/content-type/diagram.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/diagram.ts)_
_See code: [src/commands/content-type/diagram.ts](https://github.com/contentstack/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/diagram.ts)_

## `csdx content-type:list`

Expand DownExpand Up@@ -231,5 +231,5 @@ EXAMPLES
$ csdx content-type:list --alias "management token" --order modified
```

_See code: [src/commands/content-type/list.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/list.ts)_
_See code: [src/commands/content-type/list.ts](https://github.com/contentstack/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/list.ts)_
<!-- commandsstop -->
8 changes: 4 additions & 4 deletions package.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,8 +2,8 @@
"name": "contentstack-cli-content-type",
"description": "Retrieve information about Content Types in a Stack.",
"version": "1.2.3",
"author": "Michael Davis",
"bugs": "https://github.com/Contentstack-Solutions/contentstack-cli-content-type/issues",
"author": "Contentstack Developer",
"bugs": "https://github.com/contentstack/contentstack-cli-content-type/issues",
"dependencies": {
"@contentstack/cli-command": "^1.3.2",
"@contentstack/cli-utilities": "^1.8.0",
Expand DownExpand Up@@ -45,7 +45,7 @@
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Contentstack-Solutions/contentstack-cli-content-type",
"homepage": "https://github.com/contentstack/contentstack-cli-content-type",
"keywords": [
"contentstack",
"cli",
Expand All@@ -60,7 +60,7 @@
"@oclif/plugin-help"
]
},
"repository": "Contentstack-Solutions/contentstack-cli-content-type",
"repository": "contentstack/contentstack-cli-content-type",
"scripts": {
"test": "jest",
"postpack": "rm -f oclif.manifest.json",
Expand Down