File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
contentstack-export-to-csv/src/messages
contentstack-utilities/src Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ export const messages = {
1111 FLAG_ALIAS : 'Alias of the management token' ,
1212 FLAG_ORG : 'Provide organization UID to clone org users' ,
1313 FLAG_STACK_NAME : 'Name of the stack that needs to be created as CSV filename' ,
14+ // deepcode ignore HardcodedNonCryptoSecret: <Its not a secret>
1415 FLAG_STACK_API_KEY : 'Provide the stack API key of the source stack' ,
1516 FLAG_ORG_NAME : 'Name of the organization that needs to be created as CSV filename' ,
1617 FLAG_LOCALE : 'Locale of entries that will be exported' ,
Original file line number Diff line number Diff line change @@ -253,6 +253,14 @@ const sensitiveKeys = [
253253 / d e l i v e r y [ - . _ ] ? t o k e n / i,
254254] ;
255255
256+ export function clearProgressModuleSetting ( ) : void {
257+ const logConfig = configHandler . get ( 'log' ) || { } ;
258+ if ( logConfig ?. progressSupportedModule ) {
259+ delete logConfig . progressSupportedModule ;
260+ configHandler . set ( 'log' , logConfig ) ;
261+ }
262+ }
263+
256264/**
257265 * Get authentication method from config
258266 * @returns Authentication method string ('OAuth', 'Basic Auth', or empty string)
You can’t perform that action at this time.
0 commit comments