@newpeak/barista-cli 0.2.151 → 0.2.152
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.
- package/dist/commands/liberica/system/druid/datasource.js +1 -1
- package/dist/commands/liberica/system/druid/sql.js +1 -1
- package/dist/commands/liberica/system/druid/uri.js +1 -1
- package/package.json +1 -1
- package/skills/barista-cli/data/commands.json +1 -1
- package/skills/barista-cli/data/commands.yaml +1 -1
|
@@ -24,7 +24,7 @@ export function createDruidDatasourceCommand() {
|
|
|
24
24
|
console.error(chalk.red(`\n✗ Failed: ${errorMsg}`));
|
|
25
25
|
if (errorCode)
|
|
26
26
|
console.error(chalk.gray(` Error code: ${errorCode}`));
|
|
27
|
-
if (errorCode === '
|
|
27
|
+
if (errorCode === 'B0309') {
|
|
28
28
|
console.error(chalk.yellow('\n 💡 This command requires platform administrator privileges (tenantId=1).'));
|
|
29
29
|
}
|
|
30
30
|
console.error();
|
|
@@ -24,7 +24,7 @@ export function createDruidSqlCommand() {
|
|
|
24
24
|
console.error(chalk.red(`\n✗ Failed: ${errorMsg}`));
|
|
25
25
|
if (errorCode)
|
|
26
26
|
console.error(chalk.gray(` Error code: ${errorCode}`));
|
|
27
|
-
if (errorCode === '
|
|
27
|
+
if (errorCode === 'B0309') {
|
|
28
28
|
console.error(chalk.yellow('\n 💡 This command requires platform administrator privileges (tenantId=1).'));
|
|
29
29
|
}
|
|
30
30
|
console.error();
|
|
@@ -24,7 +24,7 @@ export function createDruidUriCommand() {
|
|
|
24
24
|
console.error(chalk.red(`\n✗ Failed: ${errorMsg}`));
|
|
25
25
|
if (errorCode)
|
|
26
26
|
console.error(chalk.gray(` Error code: ${errorCode}`));
|
|
27
|
-
if (errorCode === '
|
|
27
|
+
if (errorCode === 'B0309') {
|
|
28
28
|
console.error(chalk.yellow('\n 💡 This command requires platform administrator privileges (tenantId=1).'));
|
|
29
29
|
}
|
|
30
30
|
console.error();
|
package/package.json
CHANGED