1
0
mirror of synced 2024-11-21 20:16:03 +03:00

Fixes building get parameters in request

This commit is contained in:
Alex Lushpai 2020-08-18 12:44:01 +03:00 committed by GitHub
commit da8631e5d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5395 additions and 19 deletions

3
.gitignore vendored
View File

@ -61,6 +61,5 @@ typings/
.next .next
.idea .idea
package-lock.json
out/ out/
dist/ dist/

View File

@ -1,19 +1,43 @@
os: linux
language: node_js language: node_js
node_js: if: tag IS blank
- "11"
- "10" stages:
- "8" - test
- gh pages
- npm deploy
script: npm run test script: npm run test
after_success: npm run doc jobs:
include:
deploy: - node_js: 8
provider: pages - node_js: 10
skip-cleanup: true - node_js: 12
github-token: $GITHUB_TOKEN - node_js: 13
keep-history: true after_success:
local-dir: out - npm install -g codecov
on: - npm run report-coverage
branch: master - stage: gh pages
script: skip
before_deploy: npm run doc
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
keep-history: true
local-dir: out
on:
branch: master
if: branch = master AND type = push AND fork = false
- stage: npm deploy
script: skip
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_API_KEY
skip-cleanup: true
on:
branch: master
if: branch = master AND type = push AND fork = false

View File

@ -48,7 +48,7 @@ export default class Request {
let path = this._getPath(endpoint); let path = this._getPath(endpoint);
let response = ''; let response = '';
if (method === 'GET' && data.length > 0) { if (method === 'GET' && Object.keys(data).length > 0) {
path += '?' + querystring.stringify(data); path += '?' + querystring.stringify(data);
} }

5351
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -7,11 +7,12 @@
"Bot", "Bot",
"Chat" "Chat"
], ],
"version": "1.0.1", "version": "1.0.3",
"scripts": { "scripts": {
"doc": "./node_modules/.bin/jsdoc lib/v1/client.js lib/consts.js -R README.md", "doc": "./node_modules/.bin/jsdoc lib/v1/client.js lib/consts.js -R README.md",
"build": "./node_modules/.bin/rollup -c", "build": "./node_modules/.bin/rollup -c",
"test": "./node_modules/.bin/_mocha --require @babel/register ./tests/." "test": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha --require @babel/register ./tests/.",
"report-coverage": "./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && codecov"
}, },
"author": "retailCRM", "author": "retailCRM",
"license": "MIT", "license": "MIT",
@ -30,6 +31,7 @@
"jsdoc": "^3.5.5", "jsdoc": "^3.5.5",
"mocha": "^5.2.0", "mocha": "^5.2.0",
"nock": "^10.0.6", "nock": "^10.0.6",
"nyc": "^15.1.0",
"rollup": "^1.2.2", "rollup": "^1.2.2",
"rollup-plugin-babel": "^4.3.2", "rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-builtins": "^2.1.2", "rollup-plugin-node-builtins": "^2.1.2",