From a36da5e6f058a01c96a58e6a257270bf263e2968 Mon Sep 17 00:00:00 2001 From: Vikram Kalta Date: Tue, 8 Oct 2024 22:57:03 +0100 Subject: [PATCH 1/3] fix: fixed delete config interface --- types/stack/bulkOperation/index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/types/stack/bulkOperation/index.d.ts b/types/stack/bulkOperation/index.d.ts index 56684d09..867345da 100644 --- a/types/stack/bulkOperation/index.d.ts +++ b/types/stack/bulkOperation/index.d.ts @@ -26,8 +26,9 @@ export interface BulkOperationItem { } export interface BulkDeleteConfig { - entries: Array - assets: Array + entries?: Array + assets?: Array + details?: PublishDetails } export interface BulkDeleteEntry { From db668e7afe508dbcf642ac31eeccfd38d9872f6e Mon Sep 17 00:00:00 2001 From: Vikram Kalta Date: Thu, 10 Oct 2024 22:17:45 +0100 Subject: [PATCH 2/3] fix: updated version --- package-lock.json | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1a2b5558..80a3838d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@contentstack/management", - "version": "1.18.2", + "version": "1.18.3", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 29230f6c..050ff712 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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", From b227bca708c111a8429681210d507b2d9d1113b2 Mon Sep 17 00:00:00 2001 From: Vikram Kalta Date: Mon, 14 Oct 2024 20:38:50 +0100 Subject: [PATCH 3/3] fix: npm script fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 050ff712..d27afe47 100644 --- a/package.json +++ b/package.json @@ -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 development", + "buildnode": "webpack --config webpack/webpack.node.js --mode production", "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",