contensis-cli 1.0.0-beta.53 → 1.0.0-beta.54
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/.vscode/launch.json +15 -15
- package/README.md +1226 -1226
- package/dist/commands/connect.js.map +1 -1
- package/dist/commands/create.js.map +1 -1
- package/dist/commands/diff.js.map +1 -1
- package/dist/commands/get.js.map +1 -1
- package/dist/commands/globalOptions.js.map +1 -1
- package/dist/commands/import.js.map +1 -1
- package/dist/commands/index.js.map +1 -1
- package/dist/commands/list.js.map +1 -1
- package/dist/commands/login.js.map +1 -1
- package/dist/commands/push.js.map +1 -1
- package/dist/commands/release.js.map +1 -1
- package/dist/commands/remove.js.map +1 -1
- package/dist/commands/set.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/localisation/en-GB.js.map +1 -1
- package/dist/providers/CredentialProvider.js.map +1 -1
- package/dist/providers/SessionCacheProvider.js.map +1 -1
- package/dist/providers/file-provider.js.map +1 -1
- package/dist/services/ContensisAuthService.js.map +1 -1
- package/dist/services/ContensisCliService.js.map +1 -1
- package/dist/shell.js.map +1 -1
- package/dist/util/console.printer.js +5 -5
- package/dist/util/console.printer.js.map +2 -2
- package/dist/util/csv.formatter.js.map +1 -1
- package/dist/util/index.js.map +1 -1
- package/dist/util/json.formatter.js.map +1 -1
- package/dist/util/logger.js.map +1 -1
- package/dist/util/xml.formatter.js.map +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/esbuild.config.js +49 -49
- package/headless-setup.sh +6 -6
- package/package.json +59 -59
- package/src/commands/connect.ts +24 -24
- package/src/commands/create.ts +70 -70
- package/src/commands/diff.ts +41 -41
- package/src/commands/get.ts +214 -214
- package/src/commands/globalOptions.ts +127 -127
- package/src/commands/import.ts +128 -128
- package/src/commands/index.ts +80 -80
- package/src/commands/list.ts +116 -116
- package/src/commands/login.ts +34 -34
- package/src/commands/push.ts +127 -127
- package/src/commands/release.ts +32 -32
- package/src/commands/remove.ts +85 -85
- package/src/commands/set.ts +96 -96
- package/src/index.ts +19 -19
- package/src/localisation/en-GB.ts +289 -289
- package/src/models/AppError.d.ts +40 -40
- package/src/models/Cache.d.ts +25 -25
- package/src/models/JsModules.d.ts +1 -1
- package/src/providers/CredentialProvider.ts +121 -121
- package/src/providers/SessionCacheProvider.ts +101 -101
- package/src/providers/file-provider.ts +76 -76
- package/src/services/ContensisAuthService.ts +70 -70
- package/src/services/ContensisCliService.ts +1745 -1745
- package/src/shell.ts +270 -270
- package/src/util/console.printer.ts +371 -371
- package/src/util/csv.formatter.ts +21 -21
- package/src/util/index.ts +73 -73
- package/src/util/json.formatter.ts +1 -1
- package/src/util/logger.ts +234 -234
- package/src/util/xml.formatter.ts +20 -20
- package/src/version.ts +1 -1
- package/tsconfig.json +22 -22
package/src/commands/set.ts
CHANGED
|
@@ -1,96 +1,96 @@
|
|
|
1
|
-
import { Argument, Command } from 'commander';
|
|
2
|
-
import { cliCommand } from '~/services/ContensisCliService';
|
|
3
|
-
import { shell } from '~/shell';
|
|
4
|
-
|
|
5
|
-
export const makeSetCommand = () => {
|
|
6
|
-
const set = new Command()
|
|
7
|
-
.command('set')
|
|
8
|
-
.description('set command')
|
|
9
|
-
.addHelpText('after', `\n`)
|
|
10
|
-
.showHelpAfterError(true)
|
|
11
|
-
.exitOverride();
|
|
12
|
-
|
|
13
|
-
const project = set
|
|
14
|
-
.command('project')
|
|
15
|
-
.description('set current working project')
|
|
16
|
-
.argument('<projectId>', 'the project id to work with')
|
|
17
|
-
.usage('<projectId>')
|
|
18
|
-
.addHelpText(
|
|
19
|
-
'after',
|
|
20
|
-
`
|
|
21
|
-
Example call:
|
|
22
|
-
> set project website\n`
|
|
23
|
-
)
|
|
24
|
-
.action(async projectId => {
|
|
25
|
-
const nextProjectId = cliCommand([
|
|
26
|
-
'set',
|
|
27
|
-
'project',
|
|
28
|
-
projectId,
|
|
29
|
-
]).SetProject(projectId);
|
|
30
|
-
if (nextProjectId) await shell().restart();
|
|
31
|
-
});
|
|
32
|
-
|
|
33
|
-
project
|
|
34
|
-
.command('name')
|
|
35
|
-
.description('update project name')
|
|
36
|
-
.argument('<"Project name">', 'update the current project name')
|
|
37
|
-
.usage('<"Project name">')
|
|
38
|
-
.addHelpText(
|
|
39
|
-
'after',
|
|
40
|
-
`
|
|
41
|
-
Example call:
|
|
42
|
-
> set project name "Project name"\n`
|
|
43
|
-
)
|
|
44
|
-
.action(async (name: string, opts) => {
|
|
45
|
-
const success = await cliCommand(
|
|
46
|
-
['set', 'project', 'name'],
|
|
47
|
-
opts
|
|
48
|
-
).UpdateProject({
|
|
49
|
-
name,
|
|
50
|
-
});
|
|
51
|
-
if (success) await shell().restart();
|
|
52
|
-
});
|
|
53
|
-
|
|
54
|
-
project
|
|
55
|
-
.command('description')
|
|
56
|
-
.description('update project description')
|
|
57
|
-
.argument(
|
|
58
|
-
'<"Project description">',
|
|
59
|
-
'update the current project description'
|
|
60
|
-
)
|
|
61
|
-
.usage('<"Project description">')
|
|
62
|
-
.addHelpText(
|
|
63
|
-
'after',
|
|
64
|
-
`
|
|
65
|
-
Example call:
|
|
66
|
-
> set project description "Description of project"\n`
|
|
67
|
-
)
|
|
68
|
-
.action(async (description: string, opts) => {
|
|
69
|
-
const success = await cliCommand(
|
|
70
|
-
['set', 'project', 'description'],
|
|
71
|
-
opts
|
|
72
|
-
).UpdateProject({
|
|
73
|
-
description,
|
|
74
|
-
});
|
|
75
|
-
if (success) await shell().restart();
|
|
76
|
-
});
|
|
77
|
-
|
|
78
|
-
set
|
|
79
|
-
.command('version')
|
|
80
|
-
.description('set content version')
|
|
81
|
-
.addArgument(
|
|
82
|
-
new Argument('<versionStatus>', 'content version status')
|
|
83
|
-
.choices(['latest', 'published'])
|
|
84
|
-
.default('latest')
|
|
85
|
-
)
|
|
86
|
-
.usage('<latest/published>')
|
|
87
|
-
.addHelpText('after', `\n`)
|
|
88
|
-
.action(async versionStatus => {
|
|
89
|
-
const success = cliCommand(['set', 'version', versionStatus]).SetVersion(
|
|
90
|
-
versionStatus
|
|
91
|
-
);
|
|
92
|
-
if (success) await shell().restart();
|
|
93
|
-
});
|
|
94
|
-
|
|
95
|
-
return set;
|
|
96
|
-
};
|
|
1
|
+
import { Argument, Command } from 'commander';
|
|
2
|
+
import { cliCommand } from '~/services/ContensisCliService';
|
|
3
|
+
import { shell } from '~/shell';
|
|
4
|
+
|
|
5
|
+
export const makeSetCommand = () => {
|
|
6
|
+
const set = new Command()
|
|
7
|
+
.command('set')
|
|
8
|
+
.description('set command')
|
|
9
|
+
.addHelpText('after', `\n`)
|
|
10
|
+
.showHelpAfterError(true)
|
|
11
|
+
.exitOverride();
|
|
12
|
+
|
|
13
|
+
const project = set
|
|
14
|
+
.command('project')
|
|
15
|
+
.description('set current working project')
|
|
16
|
+
.argument('<projectId>', 'the project id to work with')
|
|
17
|
+
.usage('<projectId>')
|
|
18
|
+
.addHelpText(
|
|
19
|
+
'after',
|
|
20
|
+
`
|
|
21
|
+
Example call:
|
|
22
|
+
> set project website\n`
|
|
23
|
+
)
|
|
24
|
+
.action(async projectId => {
|
|
25
|
+
const nextProjectId = cliCommand([
|
|
26
|
+
'set',
|
|
27
|
+
'project',
|
|
28
|
+
projectId,
|
|
29
|
+
]).SetProject(projectId);
|
|
30
|
+
if (nextProjectId) await shell().restart();
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
project
|
|
34
|
+
.command('name')
|
|
35
|
+
.description('update project name')
|
|
36
|
+
.argument('<"Project name">', 'update the current project name')
|
|
37
|
+
.usage('<"Project name">')
|
|
38
|
+
.addHelpText(
|
|
39
|
+
'after',
|
|
40
|
+
`
|
|
41
|
+
Example call:
|
|
42
|
+
> set project name "Project name"\n`
|
|
43
|
+
)
|
|
44
|
+
.action(async (name: string, opts) => {
|
|
45
|
+
const success = await cliCommand(
|
|
46
|
+
['set', 'project', 'name'],
|
|
47
|
+
opts
|
|
48
|
+
).UpdateProject({
|
|
49
|
+
name,
|
|
50
|
+
});
|
|
51
|
+
if (success) await shell().restart();
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
project
|
|
55
|
+
.command('description')
|
|
56
|
+
.description('update project description')
|
|
57
|
+
.argument(
|
|
58
|
+
'<"Project description">',
|
|
59
|
+
'update the current project description'
|
|
60
|
+
)
|
|
61
|
+
.usage('<"Project description">')
|
|
62
|
+
.addHelpText(
|
|
63
|
+
'after',
|
|
64
|
+
`
|
|
65
|
+
Example call:
|
|
66
|
+
> set project description "Description of project"\n`
|
|
67
|
+
)
|
|
68
|
+
.action(async (description: string, opts) => {
|
|
69
|
+
const success = await cliCommand(
|
|
70
|
+
['set', 'project', 'description'],
|
|
71
|
+
opts
|
|
72
|
+
).UpdateProject({
|
|
73
|
+
description,
|
|
74
|
+
});
|
|
75
|
+
if (success) await shell().restart();
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
set
|
|
79
|
+
.command('version')
|
|
80
|
+
.description('set content version')
|
|
81
|
+
.addArgument(
|
|
82
|
+
new Argument('<versionStatus>', 'content version status')
|
|
83
|
+
.choices(['latest', 'published'])
|
|
84
|
+
.default('latest')
|
|
85
|
+
)
|
|
86
|
+
.usage('<latest/published>')
|
|
87
|
+
.addHelpText('after', `\n`)
|
|
88
|
+
.action(async versionStatus => {
|
|
89
|
+
const success = cliCommand(['set', 'version', versionStatus]).SetVersion(
|
|
90
|
+
versionStatus
|
|
91
|
+
);
|
|
92
|
+
if (success) await shell().restart();
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
return set;
|
|
96
|
+
};
|
package/src/index.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import commands from './commands';
|
|
2
|
-
import { logError } from './util/logger';
|
|
3
|
-
import ContensisCli from './services/ContensisCliService';
|
|
4
|
-
import { jsonFormatter } from './util/json.formatter';
|
|
5
|
-
// new ContensisCli(process.argv).DoCommandTasksAsync();
|
|
6
|
-
|
|
7
|
-
// This is the CLI part of the app
|
|
8
|
-
const program = commands();
|
|
9
|
-
program
|
|
10
|
-
.parseAsync(process.argv)
|
|
11
|
-
.then(() => {
|
|
12
|
-
ContensisCli.quit();
|
|
13
|
-
})
|
|
14
|
-
.catch((err: any) => {
|
|
15
|
-
if (!err.name?.includes('CommanderError'))
|
|
16
|
-
logError(err, `CLI ${err.toString()}`);
|
|
17
|
-
ContensisCli.quit(err);
|
|
18
|
-
});
|
|
19
|
-
//.exitOverride(() => console.log('exit override!!!'));
|
|
1
|
+
import commands from './commands';
|
|
2
|
+
import { logError } from './util/logger';
|
|
3
|
+
import ContensisCli from './services/ContensisCliService';
|
|
4
|
+
import { jsonFormatter } from './util/json.formatter';
|
|
5
|
+
// new ContensisCli(process.argv).DoCommandTasksAsync();
|
|
6
|
+
|
|
7
|
+
// This is the CLI part of the app
|
|
8
|
+
const program = commands();
|
|
9
|
+
program
|
|
10
|
+
.parseAsync(process.argv)
|
|
11
|
+
.then(() => {
|
|
12
|
+
ContensisCli.quit();
|
|
13
|
+
})
|
|
14
|
+
.catch((err: any) => {
|
|
15
|
+
if (!err.name?.includes('CommanderError'))
|
|
16
|
+
logError(err, `CLI ${err.toString()}`);
|
|
17
|
+
ContensisCli.quit(err);
|
|
18
|
+
});
|
|
19
|
+
//.exitOverride(() => console.log('exit override!!!'));
|