@contentstack/cli 1.52.0 → 1.53.0
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 +151 -89
- package/lib/hooks/init/context-init.js +5 -0
- package/lib/hooks/prerun/auth-guard.js +8 -8
- package/oclif.manifest.json +1 -1
- package/package.json +18 -18
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.53.0 linux-x64 node-v22.21.1
|
|
22
22
|
$ csdx --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ csdx COMMAND
|
|
@@ -2201,7 +2201,7 @@ FLAGS
|
|
|
2201
2201
|
-m, --module=<value> [optional] Specific module name. If not specified, the export command will export all
|
|
2202
2202
|
the modules to the stack. The available modules are assets, content-types, entries,
|
|
2203
2203
|
environments, extensions, marketplace-apps, global-fields, labels, locales, webhooks,
|
|
2204
|
-
workflows, custom-roles, and
|
|
2204
|
+
workflows, custom-roles, taxonomies, and composable-studio.
|
|
2205
2205
|
-t, --content-types=<value>... [optional] The UID of the content type(s) whose content you want to export. In case
|
|
2206
2206
|
of multiple content types, specify the IDs separated by spaces.
|
|
2207
2207
|
-y, --yes [optional] Force override all Marketplace prompts.
|
|
@@ -2372,39 +2372,68 @@ USAGE
|
|
|
2372
2372
|
[--backup-dir <value>] [--branch <value>] [--import-webhook-status disable|current]
|
|
2373
2373
|
|
|
2374
2374
|
FLAGS
|
|
2375
|
-
-B, --branch=<value>
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2375
|
+
-B, --branch=<value>
|
|
2376
|
+
The name of the branch where you want to import your content. If you don't mention the branch name, then by default
|
|
2377
|
+
the content will be imported to the main branch.
|
|
2378
|
+
|
|
2379
|
+
-a, --alias=<value>
|
|
2380
|
+
The management token of the destination stack where you will import the content.
|
|
2381
|
+
|
|
2382
|
+
-b, --backup-dir=<value>
|
|
2383
|
+
[optional] Backup directory name when using specific module.
|
|
2384
|
+
|
|
2385
|
+
-c, --config=<value>
|
|
2386
|
+
[optional] The path of the configuration JSON file containing all the options for a single run.
|
|
2387
|
+
|
|
2388
|
+
-d, --data-dir=<value>
|
|
2389
|
+
The path or the location in your file system where the content, you intend to import, is stored. For example, -d
|
|
2390
|
+
"C:\Users\Name\Desktop\cli\content". If the export folder has branches involved, then the path should point till the
|
|
2391
|
+
particular branch. For example, “-d "C:\Users\Name\Desktop\cli\content\branch_name"
|
|
2392
|
+
|
|
2393
|
+
-k, --stack-api-key=<value>
|
|
2394
|
+
API Key of the target stack
|
|
2395
|
+
|
|
2396
|
+
-m, --module=<value>
|
|
2397
|
+
[optional] Specify the module to import into the target stack. If not specified, the import command will import all
|
|
2398
|
+
the modules into the stack. The available modules are assets, content-types, entries, environments, extensions,
|
|
2399
|
+
marketplace-apps, global-fields, labels, locales, webhooks, workflows, custom-roles, personalize projects,
|
|
2400
|
+
taxonomies, and composable-studio.
|
|
2401
|
+
|
|
2402
|
+
-y, --yes
|
|
2403
|
+
[optional] Force override all Marketplace prompts.
|
|
2404
|
+
|
|
2405
|
+
--branch-alias=<value>
|
|
2406
|
+
Specify the branch alias where you want to import your content. If not specified, the content is imported into the
|
|
2407
|
+
main branch by default.
|
|
2408
|
+
|
|
2409
|
+
--exclude-global-modules
|
|
2410
|
+
Excludes the branch-independent module from the import operation.
|
|
2411
|
+
|
|
2412
|
+
--import-webhook-status=<option>
|
|
2413
|
+
[default: disable] [default: disable] (optional) This webhook state keeps the same state of webhooks as the source
|
|
2414
|
+
stack. <options: disable|current>
|
|
2415
|
+
<options: disable|current>
|
|
2416
|
+
|
|
2417
|
+
--personalize-project-name=<value>
|
|
2418
|
+
(optional) Provide a unique name for the Personalize project.
|
|
2419
|
+
|
|
2420
|
+
--replace-existing
|
|
2421
|
+
Replaces the existing module in the target stack.
|
|
2422
|
+
|
|
2423
|
+
--skip-app-recreation
|
|
2424
|
+
(optional) Skips the recreation of private apps if they already exist.
|
|
2425
|
+
|
|
2426
|
+
--skip-assets-publish
|
|
2427
|
+
Skips asset publishing during the import process.
|
|
2428
|
+
|
|
2429
|
+
--skip-audit
|
|
2430
|
+
Skips the audit fix that occurs during an import operation.
|
|
2431
|
+
|
|
2432
|
+
--skip-entries-publish
|
|
2433
|
+
Skips entry publishing during the import process
|
|
2434
|
+
|
|
2435
|
+
--skip-existing
|
|
2436
|
+
Skips the module exists warning messages.
|
|
2408
2437
|
|
|
2409
2438
|
DESCRIPTION
|
|
2410
2439
|
Import content from a stack
|
|
@@ -2851,7 +2880,7 @@ FLAGS
|
|
|
2851
2880
|
-m, --module=<value> [optional] Specific module name. If not specified, the export command will export all
|
|
2852
2881
|
the modules to the stack. The available modules are assets, content-types, entries,
|
|
2853
2882
|
environments, extensions, marketplace-apps, global-fields, labels, locales, webhooks,
|
|
2854
|
-
workflows, custom-roles, and
|
|
2883
|
+
workflows, custom-roles, taxonomies, and composable-studio.
|
|
2855
2884
|
-t, --content-types=<value>... [optional] The UID of the content type(s) whose content you want to export. In case
|
|
2856
2885
|
of multiple content types, specify the IDs separated by spaces.
|
|
2857
2886
|
-y, --yes [optional] Force override all Marketplace prompts.
|
|
@@ -2892,39 +2921,68 @@ USAGE
|
|
|
2892
2921
|
<value>] [--branch <value>] [--import-webhook-status disable|current]
|
|
2893
2922
|
|
|
2894
2923
|
FLAGS
|
|
2895
|
-
-B, --branch=<value>
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2924
|
+
-B, --branch=<value>
|
|
2925
|
+
The name of the branch where you want to import your content. If you don't mention the branch name, then by default
|
|
2926
|
+
the content will be imported to the main branch.
|
|
2927
|
+
|
|
2928
|
+
-a, --alias=<value>
|
|
2929
|
+
The management token of the destination stack where you will import the content.
|
|
2930
|
+
|
|
2931
|
+
-b, --backup-dir=<value>
|
|
2932
|
+
[optional] Backup directory name when using specific module.
|
|
2933
|
+
|
|
2934
|
+
-c, --config=<value>
|
|
2935
|
+
[optional] The path of the configuration JSON file containing all the options for a single run.
|
|
2936
|
+
|
|
2937
|
+
-d, --data-dir=<value>
|
|
2938
|
+
The path or the location in your file system where the content, you intend to import, is stored. For example, -d
|
|
2939
|
+
"C:\Users\Name\Desktop\cli\content". If the export folder has branches involved, then the path should point till the
|
|
2940
|
+
particular branch. For example, “-d "C:\Users\Name\Desktop\cli\content\branch_name"
|
|
2941
|
+
|
|
2942
|
+
-k, --stack-api-key=<value>
|
|
2943
|
+
API Key of the target stack
|
|
2944
|
+
|
|
2945
|
+
-m, --module=<value>
|
|
2946
|
+
[optional] Specify the module to import into the target stack. If not specified, the import command will import all
|
|
2947
|
+
the modules into the stack. The available modules are assets, content-types, entries, environments, extensions,
|
|
2948
|
+
marketplace-apps, global-fields, labels, locales, webhooks, workflows, custom-roles, personalize projects,
|
|
2949
|
+
taxonomies, and composable-studio.
|
|
2950
|
+
|
|
2951
|
+
-y, --yes
|
|
2952
|
+
[optional] Force override all Marketplace prompts.
|
|
2953
|
+
|
|
2954
|
+
--branch-alias=<value>
|
|
2955
|
+
Specify the branch alias where you want to import your content. If not specified, the content is imported into the
|
|
2956
|
+
main branch by default.
|
|
2957
|
+
|
|
2958
|
+
--exclude-global-modules
|
|
2959
|
+
Excludes the branch-independent module from the import operation.
|
|
2960
|
+
|
|
2961
|
+
--import-webhook-status=<option>
|
|
2962
|
+
[default: disable] [default: disable] (optional) This webhook state keeps the same state of webhooks as the source
|
|
2963
|
+
stack. <options: disable|current>
|
|
2964
|
+
<options: disable|current>
|
|
2965
|
+
|
|
2966
|
+
--personalize-project-name=<value>
|
|
2967
|
+
(optional) Provide a unique name for the Personalize project.
|
|
2968
|
+
|
|
2969
|
+
--replace-existing
|
|
2970
|
+
Replaces the existing module in the target stack.
|
|
2971
|
+
|
|
2972
|
+
--skip-app-recreation
|
|
2973
|
+
(optional) Skips the recreation of private apps if they already exist.
|
|
2974
|
+
|
|
2975
|
+
--skip-assets-publish
|
|
2976
|
+
Skips asset publishing during the import process.
|
|
2977
|
+
|
|
2978
|
+
--skip-audit
|
|
2979
|
+
Skips the audit fix that occurs during an import operation.
|
|
2980
|
+
|
|
2981
|
+
--skip-entries-publish
|
|
2982
|
+
Skips entry publishing during the import process
|
|
2983
|
+
|
|
2984
|
+
--skip-existing
|
|
2985
|
+
Skips the module exists warning messages.
|
|
2928
2986
|
|
|
2929
2987
|
DESCRIPTION
|
|
2930
2988
|
Import content from a stack
|
|
@@ -3670,22 +3728,24 @@ Set region for CLI
|
|
|
3670
3728
|
```
|
|
3671
3729
|
USAGE
|
|
3672
3730
|
$ csdx config:set:region [REGION] [-d <value> -m <value> --ui-host <value> -n <value>] [--developer-hub <value>]
|
|
3673
|
-
[--personalize <value>] [--launch <value>]
|
|
3731
|
+
[--personalize <value>] [--launch <value>] [--composable-studio <value>]
|
|
3674
3732
|
|
|
3675
3733
|
ARGUMENTS
|
|
3676
3734
|
[REGION] Name for the region
|
|
3677
3735
|
|
|
3678
3736
|
FLAGS
|
|
3679
|
-
-d, --cda=<value>
|
|
3680
|
-
|
|
3681
|
-
-m, --cma=<value>
|
|
3682
|
-
|
|
3683
|
-
-n, --name=<value>
|
|
3684
|
-
|
|
3685
|
-
--
|
|
3686
|
-
--
|
|
3687
|
-
--
|
|
3688
|
-
|
|
3737
|
+
-d, --cda=<value> Custom host to set for content delivery API, if this flag is added then cma, ui-host
|
|
3738
|
+
and name flags are required
|
|
3739
|
+
-m, --cma=<value> Custom host to set for content management API, , if this flag is added then cda,
|
|
3740
|
+
ui-host and name flags are required
|
|
3741
|
+
-n, --name=<value> Name for the region, if this flag is added then cda, cma and ui-host flags are
|
|
3742
|
+
required
|
|
3743
|
+
--composable-studio=<value> Custom host to set for Composable Studio API
|
|
3744
|
+
--developer-hub=<value> Custom host to set for Developer hub API
|
|
3745
|
+
--launch=<value> Custom host to set for Launch API
|
|
3746
|
+
--personalize=<value> Custom host to set for Personalize API
|
|
3747
|
+
--ui-host=<value> Custom UI host to set for CLI, if this flag is added then cda, cma and name flags are
|
|
3748
|
+
required
|
|
3689
3749
|
|
|
3690
3750
|
DESCRIPTION
|
|
3691
3751
|
Set region for CLI
|
|
@@ -3715,7 +3775,9 @@ EXAMPLES
|
|
|
3715
3775
|
|
|
3716
3776
|
$ csdx config:set:region --cma <custom_cma_host_url> --cda <custom_cda_host_url> --ui-host <custom_ui_host_url> --name "India" --launch <custom_launch_url>
|
|
3717
3777
|
|
|
3718
|
-
$ csdx config:set:region --
|
|
3778
|
+
$ csdx config:set:region --cma <custom_cma_host_url> --cda <custom_cda_host_url> --ui-host <custom_ui_host_url> --name "India" --composable-studio <custom_composable_studio_url>
|
|
3779
|
+
|
|
3780
|
+
$ csdx config:set:region --cda <custom_cda_host_url> --cma <custom_cma_host_url> --ui-host <custom_ui_host_url> --name "India" --developer-hub <custom_developer_hub_url> --launch <custom_launch_url> --personalize <custom_personalize_url> --composable-studio <custom_composable_studio_url>
|
|
3719
3781
|
```
|
|
3720
3782
|
|
|
3721
3783
|
_See code: [@contentstack/cli-config](https://github.com/contentstack/cli/blob/main/packages/contentstack-config/src/commands/config/set/region.ts)_
|
|
@@ -3738,7 +3800,7 @@ DESCRIPTION
|
|
|
3738
3800
|
Display help for csdx.
|
|
3739
3801
|
```
|
|
3740
3802
|
|
|
3741
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.
|
|
3803
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.36/src/commands/help.ts)_
|
|
3742
3804
|
|
|
3743
3805
|
## `csdx launch`
|
|
3744
3806
|
|
|
@@ -4055,7 +4117,7 @@ EXAMPLES
|
|
|
4055
4117
|
$ csdx plugins
|
|
4056
4118
|
```
|
|
4057
4119
|
|
|
4058
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4120
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.54/src/commands/plugins/index.ts)_
|
|
4059
4121
|
|
|
4060
4122
|
## `csdx plugins:add PLUGIN`
|
|
4061
4123
|
|
|
@@ -4129,7 +4191,7 @@ EXAMPLES
|
|
|
4129
4191
|
$ csdx plugins:inspect myplugin
|
|
4130
4192
|
```
|
|
4131
4193
|
|
|
4132
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4194
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.54/src/commands/plugins/inspect.ts)_
|
|
4133
4195
|
|
|
4134
4196
|
## `csdx plugins:install PLUGIN`
|
|
4135
4197
|
|
|
@@ -4178,7 +4240,7 @@ EXAMPLES
|
|
|
4178
4240
|
$ csdx plugins:install someuser/someplugin
|
|
4179
4241
|
```
|
|
4180
4242
|
|
|
4181
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4243
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.54/src/commands/plugins/install.ts)_
|
|
4182
4244
|
|
|
4183
4245
|
## `csdx plugins:link PATH`
|
|
4184
4246
|
|
|
@@ -4209,7 +4271,7 @@ EXAMPLES
|
|
|
4209
4271
|
$ csdx plugins:link myplugin
|
|
4210
4272
|
```
|
|
4211
4273
|
|
|
4212
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4274
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.54/src/commands/plugins/link.ts)_
|
|
4213
4275
|
|
|
4214
4276
|
## `csdx plugins:remove [PLUGIN]`
|
|
4215
4277
|
|
|
@@ -4250,7 +4312,7 @@ FLAGS
|
|
|
4250
4312
|
--reinstall Reinstall all plugins after uninstalling.
|
|
4251
4313
|
```
|
|
4252
4314
|
|
|
4253
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4315
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.54/src/commands/plugins/reset.ts)_
|
|
4254
4316
|
|
|
4255
4317
|
## `csdx plugins:uninstall [PLUGIN]`
|
|
4256
4318
|
|
|
@@ -4278,7 +4340,7 @@ EXAMPLES
|
|
|
4278
4340
|
$ csdx plugins:uninstall myplugin
|
|
4279
4341
|
```
|
|
4280
4342
|
|
|
4281
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4343
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.54/src/commands/plugins/uninstall.ts)_
|
|
4282
4344
|
|
|
4283
4345
|
## `csdx plugins:unlink [PLUGIN]`
|
|
4284
4346
|
|
|
@@ -4322,7 +4384,7 @@ DESCRIPTION
|
|
|
4322
4384
|
Update installed plugins.
|
|
4323
4385
|
```
|
|
4324
4386
|
|
|
4325
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
4387
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.54/src/commands/plugins/update.ts)_
|
|
4326
4388
|
|
|
4327
4389
|
## `csdx tokens`
|
|
4328
4390
|
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const utils_1 = require("../../utils");
|
|
4
|
+
const cli_utilities_1 = require("@contentstack/cli-utilities");
|
|
4
5
|
/**
|
|
5
6
|
* Set the cli context
|
|
6
7
|
*/
|
|
7
8
|
function default_1(opts) {
|
|
9
|
+
// Store command ID for session-based log organization
|
|
10
|
+
if (opts.id) {
|
|
11
|
+
cli_utilities_1.configHandler.set('currentCommandId', opts.id);
|
|
12
|
+
}
|
|
8
13
|
this.config.context = new utils_1.CsdxContext(opts, this.config);
|
|
9
14
|
}
|
|
10
15
|
exports.default = default_1;
|
|
@@ -12,28 +12,28 @@ async function default_1(opts) {
|
|
|
12
12
|
this.exit();
|
|
13
13
|
return;
|
|
14
14
|
}
|
|
15
|
-
cli_utilities_1.cliux.print(
|
|
15
|
+
cli_utilities_1.cliux.print(`Currently using region: ${region.name}`, { color: 'grey' });
|
|
16
16
|
}
|
|
17
17
|
// Auth guard
|
|
18
18
|
if (protectedCommands[opts.Command.id]) {
|
|
19
19
|
if (!(0, cli_utilities_1.isAuthenticated)()) {
|
|
20
|
-
newLogger.error('No auth token found for command', opts.Command.id);
|
|
21
|
-
cli_utilities_1.cliux.error('Please
|
|
20
|
+
newLogger.error('No auth token found for command.', opts.Command.id);
|
|
21
|
+
cli_utilities_1.cliux.error('Please log in to execute the command');
|
|
22
22
|
this.exit();
|
|
23
23
|
}
|
|
24
24
|
const client = await (0, cli_utilities_1.managementSDKClient)({ host: region.cma });
|
|
25
25
|
try {
|
|
26
26
|
const result = await client.getUser();
|
|
27
27
|
if (!result) {
|
|
28
|
-
newLogger.error('
|
|
29
|
-
cli_utilities_1.cliux.error('Please
|
|
28
|
+
newLogger.error('Error in auth validation');
|
|
29
|
+
cli_utilities_1.cliux.error('Please log in to execute the command');
|
|
30
30
|
this.exit();
|
|
31
31
|
}
|
|
32
|
-
newLogger.debug('
|
|
32
|
+
newLogger.debug('Logged-in user', result.data);
|
|
33
33
|
}
|
|
34
34
|
catch (error) {
|
|
35
|
-
newLogger.error('
|
|
36
|
-
cli_utilities_1.cliux.error('Please
|
|
35
|
+
newLogger.error('Error in auth validation', error);
|
|
36
|
+
cli_utilities_1.cliux.error('Please log in to execute the command');
|
|
37
37
|
process.exit();
|
|
38
38
|
}
|
|
39
39
|
}
|
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.53.0",
|
|
5
5
|
"author": "Contentstack",
|
|
6
6
|
"bin": {
|
|
7
7
|
"csdx": "./bin/run.js"
|
|
@@ -22,24 +22,24 @@
|
|
|
22
22
|
"prepack": "pnpm compile && oclif manifest && oclif readme"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@contentstack/cli-audit": "~1.16.
|
|
26
|
-
"@contentstack/cli-
|
|
27
|
-
"@contentstack/cli-cm-
|
|
28
|
-
"@contentstack/cli-
|
|
29
|
-
"@contentstack/cli-cm-
|
|
30
|
-
"@contentstack/cli-cm-
|
|
31
|
-
"@contentstack/cli-cm-
|
|
32
|
-
"@contentstack/cli-cm-
|
|
33
|
-
"@contentstack/cli-cm-
|
|
34
|
-
"@contentstack/cli-cm-import-setup": "~1.7.
|
|
35
|
-
"@contentstack/cli-cm-migrate-rte": "~1.6.
|
|
36
|
-
"@contentstack/cli-cm-seed": "~1.13.
|
|
37
|
-
"@contentstack/cli-command": "~1.
|
|
38
|
-
"@contentstack/cli-config": "~1.
|
|
25
|
+
"@contentstack/cli-audit": "~1.16.1",
|
|
26
|
+
"@contentstack/cli-cm-export": "~1.22.0",
|
|
27
|
+
"@contentstack/cli-cm-import": "~1.30.0",
|
|
28
|
+
"@contentstack/cli-auth": "~1.6.2",
|
|
29
|
+
"@contentstack/cli-cm-bootstrap": "~1.17.1",
|
|
30
|
+
"@contentstack/cli-cm-branches": "~1.6.1",
|
|
31
|
+
"@contentstack/cli-cm-bulk-publish": "~1.10.3",
|
|
32
|
+
"@contentstack/cli-cm-clone": "~1.18.0",
|
|
33
|
+
"@contentstack/cli-cm-export-to-csv": "~1.10.1",
|
|
34
|
+
"@contentstack/cli-cm-import-setup": "~1.7.1",
|
|
35
|
+
"@contentstack/cli-cm-migrate-rte": "~1.6.2",
|
|
36
|
+
"@contentstack/cli-cm-seed": "~1.13.1",
|
|
37
|
+
"@contentstack/cli-command": "~1.7.0",
|
|
38
|
+
"@contentstack/cli-config": "~1.16.0",
|
|
39
39
|
"@contentstack/cli-launch": "^1.9.2",
|
|
40
|
-
"@contentstack/cli-migration": "~1.10.
|
|
41
|
-
"@contentstack/cli-utilities": "~1.
|
|
42
|
-
"@contentstack/cli-variants": "~1.3.
|
|
40
|
+
"@contentstack/cli-migration": "~1.10.1",
|
|
41
|
+
"@contentstack/cli-utilities": "~1.15.0",
|
|
42
|
+
"@contentstack/cli-variants": "~1.3.5",
|
|
43
43
|
"@contentstack/management": "~1.22.0",
|
|
44
44
|
"@oclif/core": "^4.3.0",
|
|
45
45
|
"@oclif/plugin-help": "^6.2.28",
|