@capgo/cli 4.13.20 → 4.13.21-beta.2

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.
Files changed (3) hide show
  1. package/README.md +6 -6
  2. package/dist/index.js +259 -253
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -128,8 +128,8 @@ Optionally, you can give:
128
128
  * `--path [/path/to/my/bundle]` to upload a specific folder.
129
129
  * `--channel [test]` to upload to a specific channel.
130
130
  * `--external="https://mydomain.com/myapp.zip"` to link to an external URL instead of upload to Capgo cloud, it should be a zip URL in HTTPS.
131
- * `--key [/path/to/my/private_key]` the path of your private key.
132
- * `--key-data [privateKey]` the private key data, if you want to use inline.
131
+ * `--key [/path/to/my/public_key]` the path of your public key.
132
+ * `--key-data [publicKey]` the public key data, if you want to use inline.
133
133
  * `--no-key` to ignore the signing key and send clear update.
134
134
  * `--bundle [1.0.0]` to set the bundle version number of the file to upload.
135
135
  * `--iv-session-key [key]` to send a custom session key to the cloud.
@@ -221,9 +221,9 @@ The command will print your `ivSessionKey`y and generate an encrypted zip, to us
221
221
 
222
222
  Optionally, you can give:
223
223
 
224
- `--key [/path/to/my/private_key]` the path of your private key.
224
+ `--key [/path/to/my/public_key]` the path of your public key.
225
225
 
226
- `--key-data [privateKey]` the private key data, if you want to use inline. This command is mainly used for test purpose, it will decrypt the zip and print the base64 decrypted session key in the console.
226
+ `--key-data [publicKey]` the public key data, if you want to use inline. This command is mainly used for test purpose, it will decrypt the zip and print the base64 decrypted session key in the console.
227
227
 
228
228
  ### **Zip**
229
229
 
@@ -308,9 +308,9 @@ Optionally, you can give: `--force` to overwrite the existing key. This command
308
308
 
309
309
  Optionally, you can give:
310
310
 
311
- `--key [/path/to/my/private_key]` the path of your private key.
311
+ `--key [/path/to/my/public_key]` the path of your public key.
312
312
 
313
- `--key-data [privateKey]` the private key data, if you want to use inline. This command is useful if you followed the recommendation and didn't commit the key in your app, and in the config.
313
+ `--key-data [publicKey]` the public key data, if you want to use inline. This command is useful if you followed the recommendation and didn't commit the key in your app, and in the config.
314
314
  ## Dev contribution
315
315
 
316
316
  1. Install development dependencies