Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .talismanrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
fileignoreconfig:
- filename: package-lock.json
checksum: 353b5b39c9f8242902e6198b3f6c5981c813af16ce16ebbe845ebf369c1c1ff1
checksum: acd0c006f11dc01dcf578cc783843c64b2e002a8f6b654a8b5513362303a3590
- filename: pnpm-lock.yaml
checksum: 3e8de376815b1514490bcd0348e91178fa467467a3a33460300abd50edc633f9
checksum: 006cd155027af9b70649f4e9295e7a158a960d7c87a74fad0710443fb3b814bc
- filename: packages/contentstack-import-setup/test/unit/backup-handler.test.ts
checksum: 0582d62b88834554cf12951c8690a73ef3ddbb78b82d2804d994cf4148e1ef93
- filename: packages/contentstack-import-setup/test/config.json
Expand Down
113 changes: 110 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/contentstack-export-to-csv/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@contentstack/cli-cm-export-to-csv",
"description": "Export entities to csv",
"version": "1.9.1",
"version": "1.9.2",
"author": "Abhinav Gupta @abhinav-from-contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.6.1",
"@contentstack/cli-utilities": "~1.14.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.28",
"@oclif/plugin-help": "^6.2.32",
"fast-csv": "^4.3.6",
"inquirer": "8.2.6",
"inquirer": "8.2.7",
"inquirer-checkbox-plus-prompt": "1.4.2",
"mkdirp": "^3.0.1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ const {
isAuthenticated,
cliux,
doesBranchExist,
isManagementTokenValid
isManagementTokenValid,
log
} = require('@contentstack/cli-utilities');
const util = require('../../util');
const config = require('../../util/config');
Expand Down Expand Up @@ -126,7 +127,7 @@ class ExportToCsvCommand extends Command {
}

stackAPIClient = this.getStackClient(managementAPIClient, stack);
await this.checkAndUpdateBranchDetail(branchUid, stack, stackAPIClient, managementAPIClient);
stackAPIClient = await this.checkAndUpdateBranchDetail(branchUid, stack, stackAPIClient, managementAPIClient);

const contentTypeCount = await util.getContentTypeCount(stackAPIClient);

Expand Down Expand Up @@ -321,6 +322,7 @@ class ExportToCsvCommand extends Command {
stackAPIClient = this.getStackClient(managementAPIClient, stack);
}
}
return stackAPIClient;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/contentstack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@contentstack/cli-cm-bulk-publish": "~1.9.1",
"@contentstack/cli-cm-clone": "~1.16.0",
"@contentstack/cli-cm-export": "~1.20.0",
"@contentstack/cli-cm-export-to-csv": "~1.9.1",
"@contentstack/cli-cm-export-to-csv": "~1.9.2",
"@contentstack/cli-cm-import": "~1.27.0",
"@contentstack/cli-cm-import-setup": "1.4.2",
"@contentstack/cli-cm-migrate-rte": "~1.6.1",
Expand Down
36 changes: 29 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading