@contentstack/cli-cm-export 1.20.0 → 1.20.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 +3 -3
- package/lib/commands/cm/stacks/export.js +0 -1
- package/oclif.manifest.json +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ $ npm install -g @contentstack/cli-cm-export
|
|
|
48
48
|
$ csdx COMMAND
|
|
49
49
|
running command...
|
|
50
50
|
$ csdx (--version)
|
|
51
|
-
@contentstack/cli-cm-export/1.20.
|
|
51
|
+
@contentstack/cli-cm-export/1.20.1 linux-x64 node-v22.19.0
|
|
52
52
|
$ csdx --help [COMMAND]
|
|
53
53
|
USAGE
|
|
54
54
|
$ csdx COMMAND
|
|
@@ -76,7 +76,6 @@ FLAGS
|
|
|
76
76
|
mention the branch name, then by default the content will be exported from all the
|
|
77
77
|
branches of your stack.
|
|
78
78
|
-a, --alias=<value> The management token alias of the source stack from which you will export content.
|
|
79
|
-
-b, --branch-alias=<value> (Optional) The alias of the branch from which you want to export content.
|
|
80
79
|
-c, --config=<value> [optional] Path of the config
|
|
81
80
|
-d, --data-dir=<value> The path or the location in your file system to store the exported content. For e.g.,
|
|
82
81
|
./content
|
|
@@ -88,6 +87,7 @@ FLAGS
|
|
|
88
87
|
-t, --content-types=<value>... [optional] The UID of the content type(s) whose content you want to export. In case
|
|
89
88
|
of multiple content types, specify the IDs separated by spaces.
|
|
90
89
|
-y, --yes [optional] Force override all Marketplace prompts.
|
|
90
|
+
--branch-alias=<value> (Optional) The alias of the branch from which you want to export content.
|
|
91
91
|
--secured-assets [optional] Use this flag for assets that are secured.
|
|
92
92
|
|
|
93
93
|
DESCRIPTION
|
|
@@ -126,7 +126,6 @@ FLAGS
|
|
|
126
126
|
mention the branch name, then by default the content will be exported from all the
|
|
127
127
|
branches of your stack.
|
|
128
128
|
-a, --alias=<value> The management token alias of the source stack from which you will export content.
|
|
129
|
-
-b, --branch-alias=<value> (Optional) The alias of the branch from which you want to export content.
|
|
130
129
|
-c, --config=<value> [optional] Path of the config
|
|
131
130
|
-d, --data-dir=<value> The path or the location in your file system to store the exported content. For e.g.,
|
|
132
131
|
./content
|
|
@@ -138,6 +137,7 @@ FLAGS
|
|
|
138
137
|
-t, --content-types=<value>... [optional] The UID of the content type(s) whose content you want to export. In case
|
|
139
138
|
of multiple content types, specify the IDs separated by spaces.
|
|
140
139
|
-y, --yes [optional] Force override all Marketplace prompts.
|
|
140
|
+
--branch-alias=<value> (Optional) The alias of the branch from which you want to export content.
|
|
141
141
|
--secured-assets [optional] Use this flag for assets that are secured.
|
|
142
142
|
|
|
143
143
|
DESCRIPTION
|
|
@@ -130,7 +130,6 @@ ExportCommand.flags = {
|
|
|
130
130
|
exclusive: ['branch-alias'],
|
|
131
131
|
}),
|
|
132
132
|
'branch-alias': cli_utilities_1.flags.string({
|
|
133
|
-
char: 'b',
|
|
134
133
|
description: '(Optional) The alias of the branch from which you want to export content.',
|
|
135
134
|
exclusive: ['branch'],
|
|
136
135
|
}),
|
package/oclif.manifest.json
CHANGED
|
@@ -109,7 +109,6 @@
|
|
|
109
109
|
"type": "option"
|
|
110
110
|
},
|
|
111
111
|
"branch-alias": {
|
|
112
|
-
"char": "b",
|
|
113
112
|
"description": "(Optional) The alias of the branch from which you want to export content.",
|
|
114
113
|
"exclusive": [
|
|
115
114
|
"branch"
|
|
@@ -160,5 +159,5 @@
|
|
|
160
159
|
]
|
|
161
160
|
}
|
|
162
161
|
},
|
|
163
|
-
"version": "1.20.
|
|
162
|
+
"version": "1.20.1"
|
|
164
163
|
}
|
package/package.json
CHANGED