Skip to content

Commit 49e6bd1

Browse files
committed
pre-release update
1 parent 4affb91 commit 49e6bd1

File tree

8 files changed

+49
-36
lines changed

8 files changed

+49
-36
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2021 - Software AG, Darmstadt, Germany and/or its licensors
189+
Copyright 2022 - Software AG, Darmstadt, Germany and/or its licensors
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1-
# Supported Verisons
2-
This tool has been tested against
3-
* webMethods.io v10.11
1+
# About
2+
This is a Node CLI tool allowing you to utilize the webMethods.io Integration public APIs from a command line.
3+
This requires you to provide your tenant domain name, along with a user and password that has the appropriate permissions to call the API.
4+
The --help parameter provides further information on how to use this along with some examples of its usage.
5+
6+
This CLI tool has been tested against
7+
* webMethods.io Integration v10.11
8+
9+
# License
10+
This project is licensed under the Apache 2.0 License - see the LICENSE file for details
11+
These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the master project.
12+
13+
Contact us via the TECHcommunity if you have any questions.
414

515
# Installation
616
```
@@ -13,9 +23,6 @@ node wmiocli.js --help
1323
# Usage
1424

1525
```
16-
# wmiocli
17-
webMethods.io Integration CLI Tool
18-
1926
┌──────────────────────────────────────────────────────────────────────────────┐
2027
│ webMethods.io Integration API CLI tool │
2128
│ This tool provides command line access to the webMethods.io Integration APIs │
@@ -64,7 +71,7 @@ Examples:
6471
Help
6572
6673
Show the command line help:
67-
$ node wmiocli.js --help
74+
$ node wmiocli.js --help
6875
6976
7077
Projects

debug.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
01 /*
2-
02 * webMethods.io CLI
3-
03 * Copyright 2021 Software AG
4-
04 * Apache-2.0
5-
05 */
1+
/*
2+
* webMethods.io CLI
3+
* Copyright 2022 Software AG
4+
* Apache-2.0
5+
*/
66

77
var debug = false;
88
function enableDebug(){
@@ -16,4 +16,4 @@ function message(inMessage)
1616
}
1717
}
1818

19-
module.exports = { enableDebug, message };
19+
module.exports = { enableDebug, message };

flowservice.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
01 /*
2-
02 * webMethods.io CLI
3-
03 * Copyright 2021 Software AG
4-
04 * Apache-2.0
5-
05 */
1+
/*
2+
* webMethods.io CLI
3+
* Copyright 2022 Software AG
4+
* Apache-2.0
5+
*/
66

77
const rest = require('./rest.js');
88
const dbg = require('./debug.js');

projects.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* webMethods.io CLI
3+
* Copyright 2022 Software AG
4+
* Apache-2.0
5+
*/
6+
17
const request = require('./rest.js');
28

39
var domainName, username,password,timeout;

rest.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
01 /*
2-
02 * webMethods.io CLI
3-
03 * Copyright 2021 Software AG
4-
04 * Apache-2.0
5-
05 */
1+
/*
2+
* webMethods.io CLI
3+
* Copyright 2022 Software AG
4+
* Apache-2.0
5+
*/
66

77
const request = require('request');
88
const fs = require ('fs');
@@ -229,4 +229,4 @@ function del(restEndPoint,user,pass,timeout,data,callback){
229229
});
230230
}
231231

232-
module.exports = { get, post, put, del, postDownloadFile, postUploadFile, downloadFile };
232+
module.exports = { get, post, put, del, postDownloadFile, postUploadFile, downloadFile };

wmiocli.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
01 /*
2-
02 * webMethods.io CLI
3-
03 * Copyright 2021 Software AG
4-
04 * Apache-2.0
5-
05 */
1+
/*
2+
* webMethods.io CLI
3+
* Copyright 2022 Software AG
4+
* Apache-2.0
5+
*/
66

77
var project = require('./projects.js');
88
var wf = require('./workflow.js');
@@ -255,4 +255,4 @@ program.command('flowservice-execute <project-id> <flow-name> [input-json]')
255255
flowservice.runFlowService(flowName,inputJson);
256256
});
257257

258-
program.parse();
258+
program.parse();

workflow.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
01 /*
2-
02 * webMethods.io CLI
3-
03 * Copyright 2021 Software AG
4-
04 * Apache-2.0
5-
05 */
1+
/*
2+
* webMethods.io CLI
3+
* Copyright 2022 Software AG
4+
* Apache-2.0
5+
*/
66

77
const rest = require('./rest.js');
88
const dbg = require('./debug.js');

0 commit comments

Comments
 (0)