Skip to content

Commit a8b0809

Browse files
fix: fixed yes flag issue in seed command
1 parent 6b95c96 commit a8b0809

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

packages/contentstack/README.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli
1818
$ csdx COMMAND
1919
running command...
2020
$ csdx (--version|-v)
21-
@contentstack/cli/1.56.0 darwin-arm64 node-v24.13.0
21+
@contentstack/cli/1.58.1 darwin-arm64 node-v22.14.0
2222
$ csdx --help [COMMAND]
2323
USAGE
2424
$ csdx COMMAND
@@ -70,7 +70,7 @@ USAGE
7070
* [`csdx cm:stacks:import-setup [-k <value>] [-d <value>] [-a <value>] [--modules <value,value>]`](#csdx-cmstacksimport-setup--k-value--d-value--a-value---modules-valuevalue)
7171
* [`csdx cm:migrate-rte`](#csdx-cmmigrate-rte)
7272
* [`csdx cm:stacks:migration [-k <value>] [-a <value>] [--file-path <value>] [--branch <value>] [--config-file <value>] [--config <value>] [--multiple]`](#csdx-cmstacksmigration--k-value--a-value---file-path-value---branch-value---config-file-value---config-value---multiple)
73-
* [`csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y <value>] [-s <value>] [--locale <value>]`](#csdx-cmstacksseed---repo-value---org-value--k-value--n-value--y-value--s-value---locale-value)
73+
* [`csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y] [-s <value>] [--locale <value>]`](#csdx-cmstacksseed---repo-value---org-value--k-value--n-value--y--s-value---locale-value)
7474
* [`csdx cm:stacks:clone [--source-branch <value>] [--target-branch <value>] [--source-management-token-alias <value>] [--destination-management-token-alias <value>] [-n <value>] [--type a|b] [--source-stack-api-key <value>] [--destination-stack-api-key <value>] [--import-webhook-status disable|current]`](#csdx-cmstacksclone---source-branch-value---target-branch-value---source-management-token-alias-value---destination-management-token-alias-value--n-value---type-ab---source-stack-api-key-value---destination-stack-api-key-value---import-webhook-status-disablecurrent)
7575
* [`csdx cm:stacks:audit`](#csdx-cmstacksaudit)
7676
* [`csdx cm:stacks:audit:fix`](#csdx-cmstacksauditfix)
@@ -83,7 +83,7 @@ USAGE
8383
* [`csdx cm:stacks:publish-clear-logs`](#csdx-cmstackspublish-clear-logs)
8484
* [`csdx cm:stacks:publish-configure`](#csdx-cmstackspublish-configure)
8585
* [`csdx cm:stacks:publish-revert`](#csdx-cmstackspublish-revert)
86-
* [`csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y <value>] [-s <value>] [--locale <value>]`](#csdx-cmstacksseed---repo-value---org-value--k-value--n-value--y-value--s-value---locale-value)
86+
* [`csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y] [-s <value>] [--locale <value>]`](#csdx-cmstacksseed---repo-value---org-value--k-value--n-value--y--s-value---locale-value)
8787
* [`csdx csdx cm:stacks:unpublish [-a <value>] [-e <value>] [-c <value>] [-y] [--locale <value>] [--branch <value>] [--retry-failed <value>] [--bulk-unpublish <value>] [--content-type <value>] [--delivery-token <value>] [--only-assets] [--only-entries]`](#csdx-csdx-cmstacksunpublish--a-value--e-value--c-value--y---locale-value---branch-value---retry-failed-value---bulk-unpublish-value---content-type-value---delivery-token-value---only-assets---only-entries)
8888
* [`csdx config:get:base-branch`](#csdx-configgetbase-branch)
8989
* [`csdx config:get:ea-header`](#csdx-configgetea-header)
@@ -2566,14 +2566,14 @@ EXAMPLES
25662566
$ csdx cm:migration --alias --file-path <migration/script/file/path> -k <api-key>
25672567
```
25682568

2569-
## `csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y <value>] [-s <value>] [--locale <value>]`
2569+
## `csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y] [-s <value>] [--locale <value>]`
25702570

25712571
Create a stack from existing content types, entries, assets, etc
25722572

25732573
```
25742574
USAGE
2575-
$ csdx cm:seed cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y <value>] [-s
2576-
<value>] [--locale <value>]
2575+
$ csdx cm:seed cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y] [-s <value>]
2576+
[--locale <value>]
25772577
25782578
FLAGS
25792579
-a, --alias=<value> Alias of the management token
@@ -2582,7 +2582,7 @@ FLAGS
25822582
-o, --org=<value> Provide Organization UID to create a new stack
25832583
-r, --repo=<value> GitHub organization name or GitHub user name/repository name.
25842584
-s, --stack=<value> Provide the stack UID to seed content.
2585-
-y, --yes=<value> [Optional] Skip the stack confirmation.
2585+
-y, --yes [Optional] Skip the stack confirmation.
25862586
25872587
DESCRIPTION
25882588
Create a stack from existing content types, entries, assets, etc
@@ -3060,7 +3060,7 @@ EXAMPLES
30603060
$ csdx cm:migration --alias --file-path <migration/script/file/path> -k <api-key>
30613061
```
30623062

3063-
_See code: [@contentstack/cli-migration](https://github.com/contentstack/cli/blob/main/packages/contentstack-migration/src/commands/cm/stacks/migration.js)_
3063+
_See code: [@contentstack/cli-migration](https://github.com/contentstack/cli/blob/main/packages/contentstack-migration/src/commands/cm/stacks/migration.ts)_
30643064

30653065
## `csdx cm:stacks:publish`
30663066

@@ -3213,14 +3213,14 @@ EXAMPLES
32133213

32143214
_See code: [@contentstack/cli-cm-bulk-publish](https://github.com/contentstack/cli/blob/main/packages/contentstack-bulk-publish/src/commands/cm/stacks/publish-revert.js)_
32153215

3216-
## `csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y <value>] [-s <value>] [--locale <value>]`
3216+
## `csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y] [-s <value>] [--locale <value>]`
32173217

32183218
Create a stack from existing content types, entries, assets, etc
32193219

32203220
```
32213221
USAGE
3222-
$ csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y <value>] [-s <value>]
3223-
[--locale <value>]
3222+
$ csdx cm:stacks:seed [--repo <value>] [--org <value>] [-k <value>] [-n <value>] [-y] [-s <value>] [--locale
3223+
<value>]
32243224
32253225
FLAGS
32263226
-a, --alias=<value> Alias of the management token
@@ -3229,7 +3229,7 @@ FLAGS
32293229
-o, --org=<value> Provide Organization UID to create a new stack
32303230
-r, --repo=<value> GitHub organization name or GitHub user name/repository name.
32313231
-s, --stack=<value> Provide the stack UID to seed content.
3232-
-y, --yes=<value> [Optional] Skip the stack confirmation.
3232+
-y, --yes [Optional] Skip the stack confirmation.
32333233
32343234
DESCRIPTION
32353235
Create a stack from existing content types, entries, assets, etc
@@ -3972,8 +3972,7 @@ USAGE
39723972
$ csdx launch:functions [-p <value>] [-d <value>]
39733973
39743974
FLAGS
3975-
-d, --data-dir=<value> [default: /Users/netraj.patel/projects/contentstack/cli/packages/contentstack] Current working
3976-
directory
3975+
-d, --data-dir=<value> Current working directory
39773976
-p, --port=<value> [default: 3000] Port number
39783977
39793978
DESCRIPTION
@@ -4149,7 +4148,7 @@ EXAMPLES
41494148
$ csdx plugins
41504149
```
41514150

4152-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.55/src/commands/plugins/index.ts)_
4151+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/index.ts)_
41534152

41544153
## `csdx plugins:add PLUGIN`
41554154

@@ -4223,7 +4222,7 @@ EXAMPLES
42234222
$ csdx plugins:inspect myplugin
42244223
```
42254224

4226-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.55/src/commands/plugins/inspect.ts)_
4225+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/inspect.ts)_
42274226

42284227
## `csdx plugins:install PLUGIN`
42294228

@@ -4272,7 +4271,7 @@ EXAMPLES
42724271
$ csdx plugins:install someuser/someplugin
42734272
```
42744273

4275-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.55/src/commands/plugins/install.ts)_
4274+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/install.ts)_
42764275

42774276
## `csdx plugins:link PATH`
42784277

@@ -4303,7 +4302,7 @@ EXAMPLES
43034302
$ csdx plugins:link myplugin
43044303
```
43054304

4306-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.55/src/commands/plugins/link.ts)_
4305+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/link.ts)_
43074306

43084307
## `csdx plugins:remove [PLUGIN]`
43094308

@@ -4344,7 +4343,7 @@ FLAGS
43444343
--reinstall Reinstall all plugins after uninstalling.
43454344
```
43464345

4347-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.55/src/commands/plugins/reset.ts)_
4346+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/reset.ts)_
43484347

43494348
## `csdx plugins:uninstall [PLUGIN]`
43504349

@@ -4372,7 +4371,7 @@ EXAMPLES
43724371
$ csdx plugins:uninstall myplugin
43734372
```
43744373

4375-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.55/src/commands/plugins/uninstall.ts)_
4374+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/uninstall.ts)_
43764375

43774376
## `csdx plugins:unlink [PLUGIN]`
43784377

@@ -4416,7 +4415,7 @@ DESCRIPTION
44164415
Update installed plugins.
44174416
```
44184417

4419-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.55/src/commands/plugins/update.ts)_
4418+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/update.ts)_
44204419

44214420
## `csdx tokens`
44224421

0 commit comments

Comments
 (0)