Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentstack/management",
"version": "1.18.2",
"version": "1.18.3",
"description": "The Content Management API is used to manage the content of your Contentstack account",
"main": "./dist/node/contentstack-management.js",
"browser": "./dist/web/contentstack-management.js",
Expand All @@ -25,7 +25,7 @@
"build:es5": "BABEL_ENV=es5 babel lib -d dist/es5",
"build:es-modules": "BABEL_ENV=es-modules babel lib -d dist/es-modules",
"buildall": "npm run buildnode && npm run buildweb && npm run buildreactnative && npm run buildnativescript",
"buildnode": "webpack --config webpack/webpack.node.js --mode production",
"buildnode": "webpack --config webpack/webpack.node.js --mode development",
"buildreactnative": "webpack --config webpack/webpack.react-native.js --mode production",
"buildnativescript": "webpack --config webpack/webpack.nativescript.js --mode production",
"buildweb": "webpack --config webpack/webpack.web.js --mode production",
Expand Down
5 changes: 3 additions & 2 deletions types/stack/bulkOperation/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ export interface BulkOperationItem {
}

export interface BulkDeleteConfig {
entries: Array<BulkDeleteEntry>
assets: Array<BulkDeleteAsset>
entries?: Array<BulkDeleteEntry>
assets?: Array<BulkDeleteAsset>
details?: PublishDetails
}

export interface BulkDeleteEntry {
Expand Down