trm-client 2.1.0 → 2.2.0

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.
@@ -144,18 +144,14 @@ function compare(commandArgs, actionArgs) {
144
144
  connectionData.push(oConnection.getDest());
145
145
  connectionData.push(oSystemViewManifest ? `Yes` : `No`);
146
146
  connectionData.push(oSystemViewManifest ? oSystemViewManifest.version : '');
147
- if (oSystemViewManifest) {
147
+ if (oSystemViewManifest && oSystemViewManifest.linkedTransport) {
148
148
  const devclass = yield oSystemViewManifest.linkedTransport.getDevclass();
149
149
  connectionData.push(devclass);
150
- }
151
- else {
152
- connectionData.push('');
153
- }
154
- if (oSystemViewManifest && oSystemViewManifest.linkedTransport) {
155
150
  connectionData.push(oSystemViewManifest.linkedTransport.trkorr);
156
151
  }
157
152
  else {
158
153
  connectionData.push('');
154
+ connectionData.push('');
159
155
  }
160
156
  if (oSystemViewManifest) {
161
157
  connectionData.push('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "TRM (Transport Request Manager) Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",