@corellium/corellium-cli 1.3.1 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" ?>
2
2
  <!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
3
- <coverage lines-valid="0" lines-covered="0" line-rate="NaN" branches-valid="0" branches-covered="0" branch-rate="NaN" timestamp="1716906748524" complexity="0" version="0.1">
3
+ <coverage lines-valid="0" lines-covered="0" line-rate="NaN" branches-valid="0" branches-covered="0" branch-rate="NaN" timestamp="1717076946903" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/builds/middleware/corellium-cli</source>
6
6
  </sources>
@@ -86,7 +86,7 @@
86
86
  <div class='footer quiet pad2 space-top1 center small'>
87
87
  Code coverage generated by
88
88
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
89
- at 2024-05-28T14:32:28.531Z
89
+ at 2024-05-30T13:49:06.910Z
90
90
  </div>
91
91
  <script src="prettify.js"></script>
92
92
  <script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corellium/corellium-cli",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "Corellium CLI Tool",
5
5
  "scripts": {
6
6
  "corellium": "node index.js",
@@ -33,8 +33,7 @@ async function builder (yargs) {
33
33
  .positional('imageType', {
34
34
  type: 'string',
35
35
  describe: 'Image type to upload',
36
- demandOption: true,
37
- choices: ['fwbinary', 'kernel', 'devicetree', 'ramdisk', 'loaderfile', 'sepf']
36
+ demandOption: true
38
37
  })
39
38
  .positional('encoding', {
40
39
  type: 'string',
@@ -15,5 +15,5 @@ module.exports = {
15
15
  builder: yargs => (_yargs = yargs) && yargs.command(subcommands).scriptName(''),
16
16
  handler: argv => !argv[1] && _yargs.showHelp(),
17
17
  command: 'matrix',
18
- describe: 'Mobile Application Security Testing (MATRIX) related commands'
18
+ describe: 'Mobile Automated Testing and Reporting Interface (MATRIX) related commands'
19
19
  }