@opentap/runner-client 1.0.0-beta.80 → 1.1.0-beta.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.
@@ -221,7 +221,7 @@ export declare class SessionClient extends BaseClient {
221
221
  * Retrieve static available step type information.
222
222
  * @return StepTypes retrieved
223
223
  */
224
- getTestStepTypes(): Promise<TestStepType[]>;
224
+ getStepTypes(): Promise<TestStepType[]>;
225
225
  /**
226
226
  * Pause test plan execution at next possible test step
227
227
  */
@@ -464,8 +464,8 @@ var SessionClient = /** @class */ (function (_super) {
464
464
  * Retrieve static available step type information.
465
465
  * @return StepTypes retrieved
466
466
  */
467
- SessionClient.prototype.getTestStepTypes = function () {
468
- return this.request('GetTestStepTypes')
467
+ SessionClient.prototype.getStepTypes = function () {
468
+ return this.request('GetStepTypes')
469
469
  .then(function (testStepTypeArrayJs) { return testStepTypeArrayJs.map(function (testStepTypeJs) { return TestStepType.fromJS(testStepTypeJs); }); })
470
470
  .then(this.success())
471
471
  .catch(this.error());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentap/runner-client",
3
- "version": "1.0.0-beta.80",
3
+ "version": "1.1.0-beta.1",
4
4
  "description": "This is the TypeScript Client for the OpenTAP Runner Plugin.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",