@contentstack/cli 1.2.3 → 1.2.4
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 +7 -6
- package/bin/run +4 -1
- package/lib/index.js +3 -1
- package/oclif.manifest.json +1 -1
- package/package.json +20 -21
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli
|
|
|
18
18
|
$ csdx COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ csdx (-v|--version|version)
|
|
21
|
-
@contentstack/cli/1.2.
|
|
21
|
+
@contentstack/cli/1.2.4 linux-x64 node-v16.18.1
|
|
22
22
|
$ csdx --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ csdx COMMAND
|
|
@@ -389,7 +389,7 @@ USAGE
|
|
|
389
389
|
FLAGS
|
|
390
390
|
-k, --stack-api-key=<value> Provide stack API key to seed content
|
|
391
391
|
-n, --stack-name=<value> Name of a new stack that will be created.
|
|
392
|
-
-y, --yes=<value>
|
|
392
|
+
-y, --yes=<value> [Optional] Skip stack confirmation
|
|
393
393
|
--app-name=<value> App name, reactjs-starter, nextjs-starter, gatsby-starter, angular-starter, nuxt-starter,
|
|
394
394
|
vue-starter, stencil-starter
|
|
395
395
|
--org=<value> Provide organization UID to create a new stack
|
|
@@ -1024,10 +1024,10 @@ USAGE
|
|
|
1024
1024
|
|
|
1025
1025
|
FLAGS
|
|
1026
1026
|
-n, --stack-name=<value> Name for the new stack to store the cloned content.
|
|
1027
|
-
-y, --yes [
|
|
1027
|
+
-y, --yes [Optional] Override marketplace prompts
|
|
1028
1028
|
--destination-management-token-alias=<value> Source API key of the target stack token alias.
|
|
1029
1029
|
--destination-stack-api-key=<value> Destination stack API Key
|
|
1030
|
-
--import-webhook-status=<option> [default: disable] Webhook state
|
|
1030
|
+
--import-webhook-status=<option> [default: disable] [Optional] Webhook state
|
|
1031
1031
|
<options: disable|current>
|
|
1032
1032
|
--source-branch=<value> Branch of the source stack.
|
|
1033
1033
|
--source-management-token-alias=<value> Source API key of the target stack token alias.
|
|
@@ -1080,6 +1080,7 @@ FLAGS
|
|
|
1080
1080
|
-k, --stack-api-key=<value> API key of the source stack
|
|
1081
1081
|
-m, --module=<value> [optional] specific module name
|
|
1082
1082
|
-t, --content-types=<value> [optional] content type
|
|
1083
|
+
-y, --yes [optional] Override marketplace apps related prompts
|
|
1083
1084
|
--secured-assets [optional] use when assets are secured
|
|
1084
1085
|
|
|
1085
1086
|
DESCRIPTION
|
|
@@ -1124,7 +1125,7 @@ FLAGS
|
|
|
1124
1125
|
-k, --stack-api-key=<value> API key of the target stack
|
|
1125
1126
|
-m, --module=<value> [optional] specific module name
|
|
1126
1127
|
-y, --yes [optional] Override marketplace prompts
|
|
1127
|
-
--import-webhook-status=<option> [default: disable] Webhook state
|
|
1128
|
+
--import-webhook-status=<option> [default: disable] [optional] Webhook state
|
|
1128
1129
|
<options: disable|current>
|
|
1129
1130
|
|
|
1130
1131
|
DESCRIPTION
|
|
@@ -1350,7 +1351,7 @@ FLAGS
|
|
|
1350
1351
|
-o, --org=<value> Provide Organization UID to create a new stack
|
|
1351
1352
|
-r, --repo=<value> GitHub account or GitHub account/repository
|
|
1352
1353
|
-s, --stack=<value> Provide stack UID to seed content to
|
|
1353
|
-
-y, --yes=<value>
|
|
1354
|
+
-y, --yes=<value> [Optional] Skip stack confirmation
|
|
1354
1355
|
|
|
1355
1356
|
DESCRIPTION
|
|
1356
1357
|
Create a stack from existing content types, entries, assets, etc
|
package/bin/run
CHANGED
package/lib/index.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.run = void 0;
|
|
4
|
+
var core_1 = require("@oclif/core");
|
|
5
|
+
Object.defineProperty(exports, "run", { enumerable: true, get: function () { return core_1.run; } });
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.2.
|
|
1
|
+
{"version":"1.2.4","commands":{}}
|
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.2.
|
|
4
|
+
"version": "1.2.4",
|
|
5
5
|
"author": "Contentstack",
|
|
6
6
|
"bin": {
|
|
7
7
|
"csdx": "./bin/run"
|
|
@@ -21,20 +21,20 @@
|
|
|
21
21
|
"lint": "eslint src/**/*.ts"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@contentstack/cli-auth": "^1.0.
|
|
25
|
-
"@contentstack/cli-cm-bootstrap": "^1.1.
|
|
26
|
-
"@contentstack/cli-cm-bulk-publish": "^1.0.
|
|
27
|
-
"@contentstack/cli-cm-clone": "^1.1.
|
|
28
|
-
"@contentstack/cli-cm-export": "^1.2.
|
|
29
|
-
"@contentstack/cli-cm-export-to-csv": "^1.0.
|
|
30
|
-
"@contentstack/cli-cm-import": "^1.2.
|
|
31
|
-
"@contentstack/cli-cm-migrate-rte": "^1.1.
|
|
32
|
-
"@contentstack/cli-cm-seed": "^1.1.
|
|
33
|
-
"@contentstack/cli-command": "^1.0.
|
|
34
|
-
"@contentstack/cli-config": "^1.0.
|
|
35
|
-
"@contentstack/cli-migration": "^1.0.
|
|
36
|
-
"@contentstack/cli-utilities": "^1.0.
|
|
37
|
-
"@contentstack/management": "^1.
|
|
24
|
+
"@contentstack/cli-auth": "^1.0.4",
|
|
25
|
+
"@contentstack/cli-cm-bootstrap": "^1.1.5",
|
|
26
|
+
"@contentstack/cli-cm-bulk-publish": "^1.0.3",
|
|
27
|
+
"@contentstack/cli-cm-clone": "^1.1.5",
|
|
28
|
+
"@contentstack/cli-cm-export": "^1.2.2",
|
|
29
|
+
"@contentstack/cli-cm-export-to-csv": "^1.0.3",
|
|
30
|
+
"@contentstack/cli-cm-import": "^1.2.3",
|
|
31
|
+
"@contentstack/cli-cm-migrate-rte": "^1.1.4",
|
|
32
|
+
"@contentstack/cli-cm-seed": "^1.1.5",
|
|
33
|
+
"@contentstack/cli-command": "^1.0.3",
|
|
34
|
+
"@contentstack/cli-config": "^1.0.3",
|
|
35
|
+
"@contentstack/cli-migration": "^1.0.3",
|
|
36
|
+
"@contentstack/cli-utilities": "^1.0.4",
|
|
37
|
+
"@contentstack/management": "^1.6.0",
|
|
38
38
|
"@oclif/command": "^1.8.16",
|
|
39
39
|
"@oclif/config": "^1.18.3",
|
|
40
40
|
"@oclif/core": "^1.9.5",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"chalk": "^4.1.2",
|
|
45
45
|
"debug": "^4.1.1",
|
|
46
46
|
"figlet": "^1.5.2",
|
|
47
|
-
"inquirer": "
|
|
48
|
-
"uuid": "^
|
|
47
|
+
"inquirer": "8.2.4",
|
|
48
|
+
"uuid": "^9.0.0",
|
|
49
49
|
"winston": "^3.7.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@oclif/plugin-help": "^5.1.12",
|
|
54
54
|
"@oclif/test": "^1.2.8",
|
|
55
55
|
"@types/chai": "^4.2.18",
|
|
56
|
-
"@types/inquirer": "^
|
|
56
|
+
"@types/inquirer": "^9.0.3",
|
|
57
57
|
"@types/mkdirp": "^1.0.1",
|
|
58
58
|
"@types/mocha": "^8.2.2",
|
|
59
59
|
"@types/node": "^14.14.32",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"sinon": "^11.1.1",
|
|
73
73
|
"tmp": "^0.2.1",
|
|
74
74
|
"ts-node": "^10.9.1",
|
|
75
|
-
"typescript": "^4.
|
|
75
|
+
"typescript": "^4.9.3"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": ">=8.0.0"
|
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
}
|
|
116
116
|
},
|
|
117
117
|
"helpClass": "./lib/help.js",
|
|
118
|
-
"commands": "./lib/commands",
|
|
119
118
|
"bin": "csdx",
|
|
120
119
|
"plugins": [
|
|
121
120
|
"@oclif/plugin-not-found",
|
|
@@ -144,4 +143,4 @@
|
|
|
144
143
|
}
|
|
145
144
|
},
|
|
146
145
|
"repository": "https://github.com/contentstack/cli"
|
|
147
|
-
}
|
|
146
|
+
}
|