@opentap/runner-client 2.2.1-alpha.1.1 → 2.2.1-beta.2

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.
@@ -19,7 +19,7 @@ export declare class BaseClient {
19
19
  set headers(value: Headers);
20
20
  /** Get timeout */
21
21
  get timeout(): number;
22
- /** Set timeout */
22
+ /** Set timeout in milliseconds. Default is 40000 milliseconds */
23
23
  set timeout(value: number);
24
24
  constructor(baseSubject: string, options: ConnectionOptions);
25
25
  /**
package/lib/BaseClient.js CHANGED
@@ -57,7 +57,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
57
57
  import { ComponentSettingsBase, ComponentSettingsIdentifier, ComponentSettingsListItem, DataGridControl, ErrorResponse, FileDescriptor, ListItemType, ProfileGroup, } from './DTOs';
58
58
  import { Empty, ErrorCode, JSONCodec, StringCodec, connect, headers, } from 'nats.ws';
59
59
  import { EventEmitter } from 'events';
60
- var DEFAULT_TIMEOUT = 6000;
60
+ var DEFAULT_TIMEOUT = 40000; // default timeout of 40 seconds
61
61
  var Events;
62
62
  (function (Events) {
63
63
  Events["ERROR"] = "error_event";
@@ -100,7 +100,7 @@ var BaseClient = /** @class */ (function () {
100
100
  get: function () {
101
101
  return this._timeout || DEFAULT_TIMEOUT;
102
102
  },
103
- /** Set timeout */
103
+ /** Set timeout in milliseconds. Default is 40000 milliseconds */
104
104
  set: function (value) {
105
105
  this._timeout = value;
106
106
  },
@@ -141,12 +141,7 @@ var BaseClient = /** @class */ (function () {
141
141
  var jsonCodec = JSONCodec();
142
142
  response = jsonCodec.decode(message.data);
143
143
  }
144
- if (_this.isErrorResponse(response)) {
145
- var error = ErrorResponse.fromJS(response);
146
- _this.eventEmitter.emit(Events.ERROR, error);
147
- return Promise.reject(error);
148
- }
149
- return Promise.resolve(response);
144
+ return _this.isErrorResponse(response) ? Promise.reject(ErrorResponse.fromJS(response)) : Promise.resolve(response);
150
145
  })
151
146
  .catch(function (error) { return Promise.reject(_this.natsErrorHandler(error, subject)); })];
152
147
  case 1: return [2 /*return*/, _a.sent()];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentap/runner-client",
3
- "version": "2.2.1-alpha.1.1",
3
+ "version": "2.2.1-beta.2",
4
4
  "description": "This is the web client for the OpenTAP Runner.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",