Skip to content

Commit

Permalink
fixed export of specific content types
Browse files Browse the repository at this point in the history
  • Loading branch information
shafeeqd959 committed Feb 2, 2024
1 parent 57e88bf commit 7ebf54e
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/contentstack-audit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g @contentstack/cli-audit
$ csdx COMMAND
running command...
$ csdx (--version|-v)
@contentstack/cli-audit/1.3.4 darwin-arm64 node-v20.8.0
@contentstack/cli-audit/1.3.5 darwin-arm64 node-v20.8.0
$ csdx --help [COMMAND]
USAGE
$ csdx COMMAND
Expand Down
2 changes: 1 addition & 1 deletion packages/contentstack-export/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@contentstack/cli-cm-export",
"description": "Contentstack CLI plugin to export content from stack",
"version": "1.10.4",
"version": "1.10.5",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
Expand Down
2 changes: 0 additions & 2 deletions packages/contentstack-export/src/commands/cm/stacks/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,12 @@ export default class ExportCommand extends Command {
module: flags.string({
char: 'm',
description: '[optional] specific module name',
exclusive: ['content-types'],
parse: printFlagDeprecation(['-m'], ['--module']),
}),
'content-types': flags.string({
char: 't',
description: '[optional] content type',
multiple: true,
exclusive: ['module'],
parse: printFlagDeprecation(['-t'], ['--content-types']),
}),
branch: flags.string({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ContentTypesExport {
include_global_field_schema: true,
};
// If content type id is provided then use it as part of query
if (Array.isArray(this.exportConfig.contentTypes) && this.exportConfig.length > 0) {
if (Array.isArray(this.exportConfig.contentTypes) && this.exportConfig.contentTypes.length > 0) {
this.qs.uid = { $in: this.exportConfig.contentTypes };
}
this.contentTypesPath = path.resolve(
Expand Down Expand Up @@ -45,6 +45,8 @@ class ContentTypesExport {
this.qs.skip = skip;
}

console.log("QS", this.qs);

const contentTypeSearchResponse = await this.stackAPIClient.contentType().query(this.qs).find();
if (Array.isArray(contentTypeSearchResponse.items) && contentTypeSearchResponse.items.length > 0) {
let updatedContentTypes = this.sanitizeAttribs(contentTypeSearchResponse.items);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default class ContentTypesExport extends BaseClass {
skip?: number;
limit?: number;
include_global_field_schema: boolean;
uid?: Record<string, string[]>
};
private contentTypesConfig: {
dirName?: string;
Expand All @@ -35,6 +36,10 @@ export default class ContentTypesExport extends BaseClass {
limit: this.contentTypesConfig.limit,
include_global_field_schema: true,
};
// If content type id is provided then use it as part of query
if (Array.isArray(this.exportConfig.contentTypes) && this.exportConfig.contentTypes.length > 0) {
this.qs.uid = { $in: this.exportConfig.contentTypes };
}
this.contentTypesDirPath = path.resolve(
exportConfig.data,
exportConfig.branchName || '',
Expand Down
2 changes: 1 addition & 1 deletion packages/contentstack-launch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g @contentstack/cli-launch
$ csdx COMMAND
running command...
$ csdx (--version|-v)
@contentstack/cli-launch/1.0.16 darwin-arm64 node-v20.10.0
@contentstack/cli-launch/1.0.16 darwin-arm64 node-v20.8.0
$ csdx --help [COMMAND]
USAGE
$ csdx COMMAND
Expand Down
2 changes: 1 addition & 1 deletion packages/contentstack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli
$ csdx COMMAND
running command...
$ csdx (--version|-v)
@contentstack/cli/1.13.0 darwin-arm64 node-v20.10.0
@contentstack/cli/1.13.0 darwin-arm64 node-v20.8.0
$ csdx --help [COMMAND]
USAGE
$ csdx COMMAND
Expand Down
4 changes: 2 additions & 2 deletions packages/contentstack/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@contentstack/cli",
"description": "Command-line tool (CLI) to interact with Contentstack",
"version": "1.13.0",
"version": "1.13.1",
"author": "Contentstack",
"bin": {
"csdx": "./bin/run"
Expand All @@ -28,7 +28,7 @@
"@contentstack/cli-cm-branches": "~1.0.22",
"@contentstack/cli-cm-bulk-publish": "~1.4.0",
"@contentstack/cli-cm-clone": "~1.10.0",
"@contentstack/cli-cm-export": "~1.10.4",
"@contentstack/cli-cm-export": "~1.10.5",
"@contentstack/cli-cm-export-to-csv": "~1.6.2",
"@contentstack/cli-cm-import": "~1.13.2",
"@contentstack/cli-cm-migrate-rte": "~1.4.15",
Expand Down

0 comments on commit 7ebf54e

Please sign in to comment.