@memberjunction/cli 2.103.0 → 2.104.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -78,7 +78,11 @@ class ActionsRun extends core_1.Command {
78
78
  // Execute action
79
79
  const spinner = (0, ora_classic_1.default)();
80
80
  spinner.start(`Executing action: ${flags.name}`);
81
- const result = await service.executeAction(flags.name, params);
81
+ const result = await service.executeAction(flags.name, {
82
+ parameters: params,
83
+ verbose: flags.verbose,
84
+ timeout: flags.timeout
85
+ });
82
86
  spinner.stop();
83
87
  this.log(formatter.formatActionResult(result));
84
88
  if (!result.success) {
@@ -117,12 +117,14 @@ class Push extends core_1.Command {
117
117
  'File backups rolled back',
118
118
  'Failed to rollback file backups',
119
119
  'SQL logging requested but provider does not support it',
120
- 'Failed to close SQL logging session'
120
+ 'Failed to close SQL logging session',
121
+ 'WARNING: alwaysPush is enabled',
122
+ 'WARNING: autoCreateMissingRecords is enabled'
121
123
  ];
122
124
  const isUserFriendly = userFriendlyPatterns.some(pattern => message.includes(pattern));
123
125
  if (isUserFriendly) {
124
126
  // Log as a styled warning without stack trace
125
- this.log(chalk_1.default.yellow(`⚠️ ${message}`));
127
+ this.log(chalk_1.default.yellow(message));
126
128
  }
127
129
  else {
128
130
  // Use standard warn for unexpected warnings that need debugging info
@@ -1061,5 +1061,5 @@
1061
1061
  ]
1062
1062
  }
1063
1063
  },
1064
- "version": "2.103.0"
1064
+ "version": "2.104.0"
1065
1065
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/cli",
3
- "version": "2.103.0",
3
+ "version": "2.104.0",
4
4
  "description": "MemberJunction command line tools",
5
5
  "keywords": [
6
6
  "oclif"
@@ -51,10 +51,10 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "@inquirer/prompts": "^5.0.1",
54
- "@memberjunction/ai-cli": "2.103.0",
55
- "@memberjunction/codegen-lib": "2.103.0",
56
- "@memberjunction/metadata-sync": "2.103.0",
57
- "@memberjunction/sqlserver-dataprovider": "2.103.0",
54
+ "@memberjunction/ai-cli": "2.104.0",
55
+ "@memberjunction/codegen-lib": "2.104.0",
56
+ "@memberjunction/metadata-sync": "2.104.0",
57
+ "@memberjunction/sqlserver-dataprovider": "2.104.0",
58
58
  "@oclif/core": "^3",
59
59
  "@oclif/plugin-help": "^6",
60
60
  "@oclif/plugin-version": "^2.0.17",