Skip to content

Commit 0e44372

Browse files
authored
Merge pull request #35 from contentstack/fix/dev
fixed prepack failing issue
2 parents 26670ae + af97c84 commit 0e44372

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ EXAMPLES
8686
$ csdx content-type:audit --alias "management token" --content-type "home_page"
8787
```
8888

89-
_See code: [src/commands/content-type/audit.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/audit.ts)_
89+
_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)_
9090

9191
## `csdx content-type:compare`
9292

@@ -116,7 +116,7 @@ EXAMPLES
116116
$ csdx content-type:compare --alias "management token" --content-type "home_page" --left # --right #
117117
```
118118

119-
_See code: [src/commands/content-type/compare.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/compare.ts)_
119+
_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)_
120120

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

@@ -138,7 +138,7 @@ EXAMPLES
138138
$ csdx content-type:compare-remote --origin-stack "xxxxxxxxxxxxxxxxxxx" --remote-stack "xxxxxxxxxxxxxxxxxxx" -content-type "home_page"
139139
```
140140

141-
_See code: [src/commands/content-type/compare-remote.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/compare-remote.ts)_
141+
_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)_
142142

143143
## `csdx content-type:details`
144144

@@ -167,7 +167,7 @@ EXAMPLES
167167
$ csdx content-type:details --alias "management token" --content-type "home_page" --no-path
168168
```
169169

170-
_See code: [src/commands/content-type/details.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/details.ts)_
170+
_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)_
171171

172172
## `csdx content-type:diagram`
173173

@@ -202,7 +202,7 @@ EXAMPLES
202202
$ csdx content-type:diagram --alias "management token" --output "content-model.dot" --type "dot"
203203
```
204204

205-
_See code: [src/commands/content-type/diagram.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/diagram.ts)_
205+
_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)_
206206

207207
## `csdx content-type:list`
208208

@@ -231,5 +231,5 @@ EXAMPLES
231231
$ csdx content-type:list --alias "management token" --order modified
232232
```
233233

234-
_See code: [src/commands/content-type/list.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/list.ts)_
234+
_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)_
235235
<!-- commandsstop -->

src/commands/content-type/audit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default class AuditCommand extends Command {
1111
'$ csdx content-type:audit --alias "management token" --content-type "home_page"'
1212
]
1313

14-
static flags: FlagInput = {
14+
static flags: any = {
1515
stack: flags.string({
1616
char: 's',
1717
description: 'Stack UID',

src/commands/content-type/compare-remote.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default class CompareRemoteCommand extends Command {
1010
'$ csdx content-type:compare-remote --origin-stack "xxxxxxxxxxxxxxxxxxx" --remote-stack "xxxxxxxxxxxxxxxxxxx" -content-type "home_page"'
1111
]
1212

13-
static flags: FlagInput = {
13+
static flags: any = {
1414
'origin-stack': flags.string({
1515
char: 'o',
1616
description: 'Origin Stack API Key',

src/commands/content-type/compare.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default class CompareCommand extends Command {
1212
'$ csdx content-type:compare --alias "management token" --content-type "home_page" --left # --right #'
1313
]
1414

15-
static flags: FlagInput = {
15+
static flags: any = {
1616
stack: flags.string({
1717
char: 's',
1818
description: 'Stack UID',

src/commands/content-type/details.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default class DetailsCommand extends Command {
1212
'$ csdx content-type:details --alias "management token" --content-type "home_page" --no-path'
1313
]
1414

15-
static flags: FlagInput = {
15+
static flags: any = {
1616
stack: flags.string({
1717
char: 's',
1818
description: 'Stack UID',

src/commands/content-type/diagram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default class DiagramCommand extends Command {
1414
'$ csdx content-type:diagram --alias "management token" --output "content-model.dot" --type "dot"'
1515
]
1616

17-
static flags: FlagInput = {
17+
static flags: any = {
1818
stack: flags.string({
1919
char: 's',
2020
description: 'Stack UID',

src/commands/content-type/list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default class ListCommand extends Command {
1212
'$ csdx content-type:list --alias "management token" --order modified'
1313
]
1414

15-
static flags: FlagInput = {
15+
static flags: any = {
1616
stack: flags.string({
1717
char: 's',
1818
description: 'Stack UID',

0 commit comments

Comments
 (0)