@contentstack/cli 1.47.0 → 1.48.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -12
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli
|
|
|
18
18
|
$ csdx COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ csdx (--version|-v)
|
|
21
|
-
@contentstack/cli/1.
|
|
21
|
+
@contentstack/cli/1.48.1 linux-x64 node-v22.19.0
|
|
22
22
|
$ csdx --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ csdx COMMAND
|
|
@@ -43,7 +43,7 @@ USAGE
|
|
|
43
43
|
* [`csdx cm:branches`](#csdx-cmbranches)
|
|
44
44
|
* [`csdx cm:branches:create`](#csdx-cmbranchescreate)
|
|
45
45
|
* [`csdx cm:branches:delete [-uid <value>] [-k <value>]`](#csdx-cmbranchesdelete--uid-value--k-value)
|
|
46
|
-
* [`csdx cm:branches:diff [--base-branch <value>] [--compare-branch <value>] [-k <value>][--module <value>]`](#csdx-cmbranchesdiff---base-branch-value---compare-branch-value--k-value--module-value)
|
|
46
|
+
* [`csdx cm:branches:diff [--base-branch <value>] [--compare-branch <value>] [-k <value>][--module <value>] [--format <value>] [--csv-path <value>]`](#csdx-cmbranchesdiff---base-branch-value---compare-branch-value--k-value--module-value---format-value---csv-path-value)
|
|
47
47
|
* [`csdx cm:branches:merge [-k <value>][--compare-branch <value>] [--no-revert] [--export-summary-path <value>] [--use-merge-summary <value>] [--comment <value>] [--base-branch <value>]`](#csdx-cmbranchesmerge--k-value--compare-branch-value---no-revert---export-summary-path-value---use-merge-summary-value---comment-value---base-branch-value)
|
|
48
48
|
* [`csdx cm:bulk-publish`](#csdx-cmbulk-publish)
|
|
49
49
|
* [`csdx cm:entries:update-and-publish [-a <value>] [--retry-failed <value>] [--bulk-publish <value>] [--content-types <value>] [-t <value>] [-e <value>] [-c <value>] [-y] [--locales <value>] [--branch <value>]`](#csdx-cmentriesupdate-and-publish--a-value---retry-failed-value---bulk-publish-value---content-types-value--t-value--e-value--c-value--y---locales-value---branch-value)
|
|
@@ -693,18 +693,21 @@ EXAMPLES
|
|
|
693
693
|
|
|
694
694
|
_See code: [@contentstack/cli-cm-branches](https://github.com/contentstack/cli/blob/main/packages/contentstack-export/src/commands/cm/branches/delete.ts)_
|
|
695
695
|
|
|
696
|
-
## `csdx cm:branches:diff [--base-branch <value>] [--compare-branch <value>] [-k <value>][--module <value>]`
|
|
696
|
+
## `csdx cm:branches:diff [--base-branch <value>] [--compare-branch <value>] [-k <value>][--module <value>] [--format <value>] [--csv-path <value>]`
|
|
697
697
|
|
|
698
698
|
Differences between two branches
|
|
699
699
|
|
|
700
700
|
```
|
|
701
701
|
USAGE
|
|
702
|
-
$ csdx cm:branches:diff [--base-branch <value>] [--compare-branch <value>] [-k <value>][--module <value>]
|
|
702
|
+
$ csdx cm:branches:diff [--base-branch <value>] [--compare-branch <value>] [-k <value>][--module <value>] [--format
|
|
703
|
+
<value>] [--csv-path <value>]
|
|
703
704
|
|
|
704
705
|
FLAGS
|
|
705
706
|
-k, --stack-api-key=<value> [optional] Provide the stack API key to show the difference between branches.
|
|
706
707
|
--base-branch=<value> [optional] Base branch (Target branch).
|
|
707
708
|
--compare-branch=<value> [optional] Compare branch (Source branch).
|
|
709
|
+
--csv-path=<value> [optional] Custom path for CSV output file. If not provided, will use the current
|
|
710
|
+
working directory.
|
|
708
711
|
--format=<option> [default: compact-text] [default: compact-text] [optional] Type of flags to show the
|
|
709
712
|
difference between two branches. <options: compact-text, detailed-text>
|
|
710
713
|
<options: compact-text|detailed-text>
|
|
@@ -738,6 +741,10 @@ EXAMPLES
|
|
|
738
741
|
$ csdx cm:branches:diff --stack-api-key "bltxxxxxxxx" --base-branch "main" --compare-branch "develop" --module "content-types"
|
|
739
742
|
|
|
740
743
|
$ csdx cm:branches:diff --stack-api-key "bltxxxxxxxx" --base-branch "main" --compare-branch "develop" --module "content-types" --format "detailed-text"
|
|
744
|
+
|
|
745
|
+
$ csdx cm:branches:diff --stack-api-key "bltxxxxxxxx" --base-branch "main" --compare-branch "develop" --module "content-types" --format "compact-text"
|
|
746
|
+
|
|
747
|
+
$ csdx cm:branches:diff --stack-api-key "bltxxxxxxxx" --base-branch "main" --compare-branch "develop" --module "content-types" --format "detailed-text" --csv-path "./reports/diff-report.csv"
|
|
741
748
|
```
|
|
742
749
|
|
|
743
750
|
_See code: [@contentstack/cli-cm-branches](https://github.com/contentstack/cli/blob/main/packages/contentstack-export/src/commands/cm/branches/diff.ts)_
|
|
@@ -3705,7 +3712,7 @@ DESCRIPTION
|
|
|
3705
3712
|
Display help for csdx.
|
|
3706
3713
|
```
|
|
3707
3714
|
|
|
3708
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.
|
|
3715
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.33/src/commands/help.ts)_
|
|
3709
3716
|
|
|
3710
3717
|
## `csdx launch`
|
|
3711
3718
|
|
|
@@ -4022,7 +4029,7 @@ EXAMPLES
|
|
|
4022
4029
|
$ csdx plugins
|
|
4023
4030
|
```
|
|
4024
4031
|
|
|
4025
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4032
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.47/src/commands/plugins/index.ts)_
|
|
4026
4033
|
|
|
4027
4034
|
## `csdx plugins:add PLUGIN`
|
|
4028
4035
|
|
|
@@ -4096,7 +4103,7 @@ EXAMPLES
|
|
|
4096
4103
|
$ csdx plugins:inspect myplugin
|
|
4097
4104
|
```
|
|
4098
4105
|
|
|
4099
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4106
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.47/src/commands/plugins/inspect.ts)_
|
|
4100
4107
|
|
|
4101
4108
|
## `csdx plugins:install PLUGIN`
|
|
4102
4109
|
|
|
@@ -4145,7 +4152,7 @@ EXAMPLES
|
|
|
4145
4152
|
$ csdx plugins:install someuser/someplugin
|
|
4146
4153
|
```
|
|
4147
4154
|
|
|
4148
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4155
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.47/src/commands/plugins/install.ts)_
|
|
4149
4156
|
|
|
4150
4157
|
## `csdx plugins:link PATH`
|
|
4151
4158
|
|
|
@@ -4176,7 +4183,7 @@ EXAMPLES
|
|
|
4176
4183
|
$ csdx plugins:link myplugin
|
|
4177
4184
|
```
|
|
4178
4185
|
|
|
4179
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4186
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.47/src/commands/plugins/link.ts)_
|
|
4180
4187
|
|
|
4181
4188
|
## `csdx plugins:remove [PLUGIN]`
|
|
4182
4189
|
|
|
@@ -4217,7 +4224,7 @@ FLAGS
|
|
|
4217
4224
|
--reinstall Reinstall all plugins after uninstalling.
|
|
4218
4225
|
```
|
|
4219
4226
|
|
|
4220
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4227
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.47/src/commands/plugins/reset.ts)_
|
|
4221
4228
|
|
|
4222
4229
|
## `csdx plugins:uninstall [PLUGIN]`
|
|
4223
4230
|
|
|
@@ -4245,7 +4252,7 @@ EXAMPLES
|
|
|
4245
4252
|
$ csdx plugins:uninstall myplugin
|
|
4246
4253
|
```
|
|
4247
4254
|
|
|
4248
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4255
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.47/src/commands/plugins/uninstall.ts)_
|
|
4249
4256
|
|
|
4250
4257
|
## `csdx plugins:unlink [PLUGIN]`
|
|
4251
4258
|
|
|
@@ -4289,7 +4296,7 @@ DESCRIPTION
|
|
|
4289
4296
|
Update installed plugins.
|
|
4290
4297
|
```
|
|
4291
4298
|
|
|
4292
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4299
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.47/src/commands/plugins/update.ts)_
|
|
4293
4300
|
|
|
4294
4301
|
## `csdx tokens`
|
|
4295
4302
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentstack/cli",
|
|
3
3
|
"description": "Command-line tool (CLI) to interact with Contentstack",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.48.1",
|
|
5
5
|
"author": "Contentstack",
|
|
6
6
|
"bin": {
|
|
7
7
|
"csdx": "./bin/run.js"
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"@contentstack/cli-audit": "~1.14.1",
|
|
26
26
|
"@contentstack/cli-auth": "~1.6.1",
|
|
27
27
|
"@contentstack/cli-cm-bootstrap": "~1.16.0",
|
|
28
|
-
"@contentstack/cli-cm-branches": "~1.
|
|
28
|
+
"@contentstack/cli-cm-branches": "~1.6.0",
|
|
29
29
|
"@contentstack/cli-cm-bulk-publish": "~1.10.0",
|
|
30
30
|
"@contentstack/cli-cm-clone": "~1.16.1",
|
|
31
31
|
"@contentstack/cli-cm-export": "~1.20.1",
|
|
32
32
|
"@contentstack/cli-cm-export-to-csv": "~1.9.1",
|
|
33
|
-
"@contentstack/cli-cm-import": "~1.28.
|
|
33
|
+
"@contentstack/cli-cm-import": "~1.28.1",
|
|
34
34
|
"@contentstack/cli-cm-import-setup": "1.5.0",
|
|
35
35
|
"@contentstack/cli-cm-migrate-rte": "~1.6.1",
|
|
36
36
|
"@contentstack/cli-cm-seed": "~1.12.2",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@contentstack/cli-config": "~1.15.2",
|
|
39
39
|
"@contentstack/cli-launch": "^1.9.2",
|
|
40
40
|
"@contentstack/cli-migration": "~1.8.1",
|
|
41
|
-
"@contentstack/cli-utilities": "~1.14.
|
|
41
|
+
"@contentstack/cli-utilities": "~1.14.3",
|
|
42
42
|
"@contentstack/cli-variants": "~1.3.1",
|
|
43
43
|
"@contentstack/management": "~1.22.0",
|
|
44
44
|
"@oclif/core": "^4.3.0",
|