Skip to content

Commit

Permalink
Merge branch 'hotfix/1.7.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
nsteenbeek committed Jun 9, 2020
2 parents f763679 + 1b18946 commit d9d8d9b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bin/main.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions bin/root/src/WebApi/WebApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,7 @@ export class WebApi {
}

private static async executeUnboundAction(actionName: string, data?: any): Promise<JSON> {
const method: Method = data ? 'POST' : 'GET',
xmlHttpRequest = await WebApi.request(method, `${actionName}`, data);
const xmlHttpRequest = await WebApi.request('POST', `${actionName}`, data);
return xmlHttpRequest.response && JSON.parse(xmlHttpRequest.response, dateReviver);
}

Expand Down
2 changes: 1 addition & 1 deletion bin/root/tools/deploy.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/root/tools/resx.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/root/tools/setFormCustomizable.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hso/d365-cli",
"version": "1.7.5",
"version": "1.7.6",
"author": "HSO Innovation <[email protected]> (http://www.hso.com)",
"description": "HSO D365 Command Line Interface",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {Generator} from './generator/Generator';
import {Variables} from './Variables';

program
.version('1.7.5') // .version(require('../package').version)
.version('1.7.6') // .version(require('../package').version)
.usage('<command> [options]');

program
Expand Down

0 comments on commit d9d8d9b

Please sign in to comment.