fix: fix docs

This commit is contained in:
Andrey Ponomarenko 2020-11-25 11:19:00 +03:00
parent d09e2a4e84
commit 3d554be4b9
1 changed files with 38 additions and 7 deletions

View File

@ -18,15 +18,46 @@ All options except token and file are optional.
```js
import { upload } from 'diawi-nodejs-uploader';
await upload({
file,
token,
}, {
onStatusProgress: console.log,
onUploadProgress: console.log,
})
const result = await upload({
file: '/files/bundle.apk',
token: 'token',
});
console.log(result);
```
Full example
```js
import { upload } from 'diawi-nodejs-uploader';
const result = await upload({
file: '/file/bundle.apk',
token: 'token',
callback_emails: 'email@mail.com',
callback_url: 'myUrl.com/cb',
comment: 'comment text',
find_by_udid: true,
installation_notifications: true,
password: 'passwordForBundle',
wall_of_apps: true,
}, {
apiUploadEndpoint: 'rewriteDefauitDiawiUploadEndpoint',
apiStatusEndpoint: 'rewriteDefauitDiawiStatusEndpoint',
maxApiStatusCalls: 99,
onUploadProgress: (progressPercent) => {
console.log(`uploading: ${progressPercent}`);
},
onStatusProgress: (status) => {
console.log(`status: ${status}`);
},
});
console.log(result);
```
#### CLI
```js