@contentstack/cli-cm-import 1.0.0 → 1.0.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 +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
- package/src/lib/import/assets.js +8 -10
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ $ npm install -g @contentstack/cli-cm-import
|
|
|
37
37
|
$ csdx COMMAND
|
|
38
38
|
running command...
|
|
39
39
|
$ csdx (-v|--version|version)
|
|
40
|
-
@contentstack/cli-cm-import/1.0.
|
|
40
|
+
@contentstack/cli-cm-import/1.0.1 darwin-arm64 node-v16.17.0
|
|
41
41
|
$ csdx --help [COMMAND]
|
|
42
42
|
USAGE
|
|
43
43
|
$ csdx COMMAND
|
|
@@ -88,5 +88,5 @@ EXAMPLES
|
|
|
88
88
|
csdx cm:stacks:import --branch <branch name>
|
|
89
89
|
```
|
|
90
90
|
|
|
91
|
-
_See code: [src/commands/cm/stacks/import.js](https://github.com/contentstack/cli/blob/v1.0.
|
|
91
|
+
_See code: [src/commands/cm/stacks/import.js](https://github.com/contentstack/cli/blob/v1.0.1/packages/contentstack-import/src/commands/cm/stacks/import.js)_
|
|
92
92
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.0.
|
|
1
|
+
{"version":"1.0.1","commands":{"cm:stacks:import":{"id":"cm:stacks:import","description":"Import script for importing the content into the new stack\n...\nOnce you export content from the source stack, import it to your destination stack by using the cm:stacks:import command.\n","usage":"cm:stacks:import [-c <value>] [-k <value>] [-d <value>] [-a <value>] [--module <value>] [--backup-dir <value>] [--branch <value>] [--import-webhook-status disable|current]","pluginName":"@contentstack/cli-cm-import","pluginType":"core","aliases":["cm:import"],"examples":["csdx cm:stacks:import --stack-api-key <stack_api_key> --data-dir <path/of/export/destination/dir>","csdx cm:stacks:import --config <path/of/config/dir>","csdx cm:stacks:import --module <single module name>","csdx cm:stacks:import --module <single module name> --backup-dir <backup dir>","csdx cm:stacks:import --alias <management_token_alias>","csdx cm:stacks:import --alias <management_token_alias> --data-dir <path/of/export/destination/dir>","csdx cm:stacks:import --alias <management_token_alias> --config <path/of/config/file>","csdx cm:stacks:import --branch <branch name>"],"flags":{"config":{"name":"config","type":"option","char":"c","description":"[optional] path of config file"},"stack-uid":{"name":"stack-uid","type":"option","char":"s","description":"API key of the target stack","hidden":true},"stack-api-key":{"name":"stack-api-key","type":"option","char":"k","description":"API key of the target stack"},"data":{"name":"data","type":"option","description":"path and location where data is stored","hidden":true},"data-dir":{"name":"data-dir","type":"option","char":"d","description":"path and location where data is stored"},"alias":{"name":"alias","type":"option","char":"a","description":"alias of the management token"},"management-token-alias":{"name":"management-token-alias","type":"option","description":"alias of the management token","hidden":true},"auth-token":{"name":"auth-token","type":"boolean","char":"A","description":"to use auth token","hidden":true,"allowNo":false},"module":{"name":"module","type":"option","char":"m","description":"[optional] specific module name"},"backup-dir":{"name":"backup-dir","type":"option","char":"b","description":"[optional] backup directory name when using specific module"},"branch":{"name":"branch","type":"option","char":"B","description":"[optional] branch name"},"import-webhook-status":{"name":"import-webhook-status","type":"option","description":"Webhook state","required":false,"options":["disable","current"],"default":"disable"}},"args":[]}}}
|
package/package.json
CHANGED
package/src/lib/import/assets.js
CHANGED
|
@@ -418,22 +418,20 @@ importAssets.prototype = {
|
|
|
418
418
|
i--;
|
|
419
419
|
}
|
|
420
420
|
}
|
|
421
|
-
this.findBranches(tree, coll);
|
|
421
|
+
this.findBranches(tree, _.keys(tree), coll);
|
|
422
422
|
return tree;
|
|
423
423
|
},
|
|
424
|
-
findBranches: function (
|
|
424
|
+
findBranches: function (tree, branches, coll) {
|
|
425
425
|
let self = this;
|
|
426
|
-
_.forEach(
|
|
426
|
+
_.forEach(branches, (branch) => {
|
|
427
427
|
for (let j = 0; j < coll.length; j++) {
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
branch
|
|
431
|
-
|
|
432
|
-
self.findBranches(branch[parent_uid], coll);
|
|
433
|
-
--j;
|
|
428
|
+
if (branch === coll[j].parent_uid) {
|
|
429
|
+
let childUid = coll[j].uid;
|
|
430
|
+
tree[branch][childUid] = {};
|
|
431
|
+
self.findBranches(tree[branch], [childUid], coll);
|
|
434
432
|
}
|
|
435
433
|
}
|
|
436
|
-
})
|
|
434
|
+
});
|
|
437
435
|
},
|
|
438
436
|
publish: function (assetUid, assetObject) {
|
|
439
437
|
let self = this;
|