@opentap/runner-client 2.6.0-alpha.1.1 → 2.7.0-alpha.1.1
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.
- package/lib/BaseClient.js +1 -1
- package/lib/DTOs.d.ts +0 -7
- package/lib/DTOs.js +0 -24
- package/package.json +1 -1
package/lib/BaseClient.js
CHANGED
|
@@ -126,7 +126,7 @@ var BaseClient = /** @class */ (function () {
|
|
|
126
126
|
data = this.encode(payload);
|
|
127
127
|
headers = this.buildHeaders();
|
|
128
128
|
timeout = (options === null || options === void 0 ? void 0 : options.timeout) || this.timeout;
|
|
129
|
-
replySubject = uuidv4();
|
|
129
|
+
replySubject = "".concat(subject, ".Reply.").concat(uuidv4());
|
|
130
130
|
serverMaxPayload = (_b = (_a = this.connection) === null || _a === void 0 ? void 0 : _a.info) === null || _b === void 0 ? void 0 : _b.max_payload;
|
|
131
131
|
chunkSize = serverMaxPayload ? serverMaxPayload - 50000 : 512000;
|
|
132
132
|
// The Session and the Client need to agree on the chunk size. Put it in a header.
|
package/lib/DTOs.d.ts
CHANGED
|
@@ -822,13 +822,6 @@ export declare class TestStepType extends TestStep implements ITestStepType {
|
|
|
822
822
|
export interface ITestStepType extends ITestStep {
|
|
823
823
|
availableChildrenTypes?: string[] | undefined;
|
|
824
824
|
}
|
|
825
|
-
export declare class TestStepCopy extends TestStep implements ITestStepCopy {
|
|
826
|
-
constructor(data?: ITestStepCopy);
|
|
827
|
-
init(_data?: any): void;
|
|
828
|
-
static fromJS(data: any): TestStepCopy;
|
|
829
|
-
toJSON(data?: any): any;
|
|
830
|
-
}
|
|
831
|
-
export declare type ITestStepCopy = ITestStep;
|
|
832
825
|
export declare class TestStepValidationError implements ITestStepValidationError {
|
|
833
826
|
stepId?: string | undefined;
|
|
834
827
|
validationErrors?: ValidationError[] | undefined;
|
package/lib/DTOs.js
CHANGED
|
@@ -2376,30 +2376,6 @@ var TestStepType = /** @class */ (function (_super) {
|
|
|
2376
2376
|
return TestStepType;
|
|
2377
2377
|
}(TestStep));
|
|
2378
2378
|
export { TestStepType };
|
|
2379
|
-
var TestStepCopy = /** @class */ (function (_super) {
|
|
2380
|
-
__extends(TestStepCopy, _super);
|
|
2381
|
-
function TestStepCopy(data) {
|
|
2382
|
-
var _this = _super.call(this, data) || this;
|
|
2383
|
-
_this._discriminator = 'TestStepCopy';
|
|
2384
|
-
return _this;
|
|
2385
|
-
}
|
|
2386
|
-
TestStepCopy.prototype.init = function (_data) {
|
|
2387
|
-
_super.prototype.init.call(this, _data);
|
|
2388
|
-
};
|
|
2389
|
-
TestStepCopy.fromJS = function (data) {
|
|
2390
|
-
data = typeof data === 'object' ? data : {};
|
|
2391
|
-
var result = new TestStepCopy();
|
|
2392
|
-
result.init(data);
|
|
2393
|
-
return result;
|
|
2394
|
-
};
|
|
2395
|
-
TestStepCopy.prototype.toJSON = function (data) {
|
|
2396
|
-
data = typeof data === 'object' ? data : {};
|
|
2397
|
-
_super.prototype.toJSON.call(this, data);
|
|
2398
|
-
return data;
|
|
2399
|
-
};
|
|
2400
|
-
return TestStepCopy;
|
|
2401
|
-
}(TestStep));
|
|
2402
|
-
export { TestStepCopy };
|
|
2403
2379
|
var TestStepValidationError = /** @class */ (function () {
|
|
2404
2380
|
function TestStepValidationError(data) {
|
|
2405
2381
|
if (data) {
|