@opentap/runner-client 2.27.0 → 2.28.0-alpha.1.1.13521487466

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 CHANGED
@@ -337,6 +337,8 @@ var ComponentSettingsList = /** @class */ (function (_super) {
337
337
  }
338
338
  }
339
339
  this.displayMode = _data['DisplayMode'];
340
+ this.itemType = _data['ItemType'];
341
+ this.itemTypeDisplayName = _data['ItemTypeDisplayName'];
340
342
  }
341
343
  };
342
344
  ComponentSettingsList.fromJS = function (data) {
@@ -355,6 +357,8 @@ var ComponentSettingsList = /** @class */ (function (_super) {
355
357
  }
356
358
  }
357
359
  data['DisplayMode'] = this.displayMode;
360
+ data['ItemType'] = this.itemType;
361
+ data['ItemTypeDisplayName'] = this.itemTypeDisplayName;
358
362
  _super.prototype.toJSON.call(this, data);
359
363
  return data;
360
364
  };
@@ -2337,6 +2341,7 @@ var ExecutionState;
2337
2341
  ExecutionState["Executing"] = "Executing";
2338
2342
  ExecutionState["Breaking"] = "Breaking";
2339
2343
  ExecutionState["Aborting"] = "Aborting";
2344
+ ExecutionState["WaitingForUserInput"] = "WaitingForUserInput";
2340
2345
  })(ExecutionState = exports.ExecutionState || (exports.ExecutionState = {}));
2341
2346
  var TestPlan = /** @class */ (function () {
2342
2347
  function TestPlan(data) {
@@ -125,6 +125,8 @@ export declare enum DisplayMode {
125
125
  export declare class ComponentSettingsList extends ComponentSettingsBase implements IComponentSettingsList {
126
126
  items?: ComponentSettingsListItem[] | undefined;
127
127
  displayMode?: DisplayMode | undefined;
128
+ itemType?: string | undefined;
129
+ itemTypeDisplayName?: string | undefined;
128
130
  constructor(data?: IComponentSettingsList);
129
131
  init(_data?: any): void;
130
132
  static fromJS(data: any): ComponentSettingsList;
@@ -133,6 +135,8 @@ export declare class ComponentSettingsList extends ComponentSettingsBase impleme
133
135
  export interface IComponentSettingsList extends IComponentSettingsBase {
134
136
  items?: ComponentSettingsListItem[] | undefined;
135
137
  displayMode?: DisplayMode | undefined;
138
+ itemType?: string | undefined;
139
+ itemTypeDisplayName?: string | undefined;
136
140
  }
137
141
  export declare abstract class AnnotatedObject implements IAnnotatedObject {
138
142
  visualStatus?: VisualStatus | undefined;
@@ -829,7 +833,8 @@ export declare enum ExecutionState {
829
833
  Idle = "Idle",
830
834
  Executing = "Executing",
831
835
  Breaking = "Breaking",
832
- Aborting = "Aborting"
836
+ Aborting = "Aborting",
837
+ WaitingForUserInput = "WaitingForUserInput"
833
838
  }
834
839
  export declare class TestPlan implements ITestPlan {
835
840
  childTestSteps?: TestStep[] | undefined;
package/dist/mjs/DTOs.js CHANGED
@@ -286,6 +286,8 @@ export class ComponentSettingsList extends ComponentSettingsBase {
286
286
  this.items.push(ComponentSettingsListItem.fromJS(item));
287
287
  }
288
288
  this.displayMode = _data['DisplayMode'];
289
+ this.itemType = _data['ItemType'];
290
+ this.itemTypeDisplayName = _data['ItemTypeDisplayName'];
289
291
  }
290
292
  }
291
293
  static fromJS(data) {
@@ -302,6 +304,8 @@ export class ComponentSettingsList extends ComponentSettingsBase {
302
304
  data['Items'].push(item.toJSON());
303
305
  }
304
306
  data['DisplayMode'] = this.displayMode;
307
+ data['ItemType'] = this.itemType;
308
+ data['ItemTypeDisplayName'] = this.itemTypeDisplayName;
305
309
  super.toJSON(data);
306
310
  return data;
307
311
  }
@@ -2045,6 +2049,7 @@ export var ExecutionState;
2045
2049
  ExecutionState["Executing"] = "Executing";
2046
2050
  ExecutionState["Breaking"] = "Breaking";
2047
2051
  ExecutionState["Aborting"] = "Aborting";
2052
+ ExecutionState["WaitingForUserInput"] = "WaitingForUserInput";
2048
2053
  })(ExecutionState || (ExecutionState = {}));
2049
2054
  export class TestPlan {
2050
2055
  constructor(data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentap/runner-client",
3
- "version": "2.27.0",
3
+ "version": "2.28.0-alpha.1.1.13521487466",
4
4
  "description": "This is the web client for the OpenTAP Runner.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/mjs/index.js",