@opentap/runner-client 2.28.0 → 2.29.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.
- package/dist/cjs/DTOs.js +1 -0
- package/dist/mjs/DTOs.d.ts +2 -1
- package/dist/mjs/DTOs.js +1 -0
- package/package.json +1 -1
package/dist/cjs/DTOs.js
CHANGED
|
@@ -2341,6 +2341,7 @@ var ExecutionState;
|
|
|
2341
2341
|
ExecutionState["Executing"] = "Executing";
|
|
2342
2342
|
ExecutionState["Breaking"] = "Breaking";
|
|
2343
2343
|
ExecutionState["Aborting"] = "Aborting";
|
|
2344
|
+
ExecutionState["WaitingForUserInput"] = "WaitingForUserInput";
|
|
2344
2345
|
})(ExecutionState = exports.ExecutionState || (exports.ExecutionState = {}));
|
|
2345
2346
|
var TestPlan = /** @class */ (function () {
|
|
2346
2347
|
function TestPlan(data) {
|
package/dist/mjs/DTOs.d.ts
CHANGED
|
@@ -833,7 +833,8 @@ export declare enum ExecutionState {
|
|
|
833
833
|
Idle = "Idle",
|
|
834
834
|
Executing = "Executing",
|
|
835
835
|
Breaking = "Breaking",
|
|
836
|
-
Aborting = "Aborting"
|
|
836
|
+
Aborting = "Aborting",
|
|
837
|
+
WaitingForUserInput = "WaitingForUserInput"
|
|
837
838
|
}
|
|
838
839
|
export declare class TestPlan implements ITestPlan {
|
|
839
840
|
childTestSteps?: TestStep[] | undefined;
|
package/dist/mjs/DTOs.js
CHANGED
|
@@ -2049,6 +2049,7 @@ export var ExecutionState;
|
|
|
2049
2049
|
ExecutionState["Executing"] = "Executing";
|
|
2050
2050
|
ExecutionState["Breaking"] = "Breaking";
|
|
2051
2051
|
ExecutionState["Aborting"] = "Aborting";
|
|
2052
|
+
ExecutionState["WaitingForUserInput"] = "WaitingForUserInput";
|
|
2052
2053
|
})(ExecutionState || (ExecutionState = {}));
|
|
2053
2054
|
export class TestPlan {
|
|
2054
2055
|
constructor(data) {
|