@opentap/runner-client 2.0.0-alpha.2.6 → 2.0.0-alpha.2.8

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/DTOs.d.ts CHANGED
@@ -151,6 +151,7 @@ export declare class Setting extends AnnotatedObject implements ISetting {
151
151
  valueDescription?: string | undefined;
152
152
  propertyName?: string | undefined;
153
153
  icons?: Icon[] | undefined;
154
+ submit?: boolean | undefined;
154
155
  protected _discriminator: string;
155
156
  constructor(data?: ISetting);
156
157
  init(_data?: any): void;
@@ -164,6 +165,7 @@ export interface ISetting extends IAnnotatedObject {
164
165
  valueDescription?: string | undefined;
165
166
  propertyName?: string | undefined;
166
167
  icons?: Icon[] | undefined;
168
+ submit?: boolean | undefined;
167
169
  }
168
170
  export declare class Layout implements ILayout {
169
171
  mode?: LayoutMode;
@@ -754,6 +756,7 @@ export declare class TestStep implements ITestStep {
754
756
  typeName?: string | undefined;
755
757
  typeDisplay?: DisplayAttribute | undefined;
756
758
  name?: string | undefined;
759
+ expandedName?: string | undefined;
757
760
  protected _discriminator: string;
758
761
  constructor(data?: ITestStep);
759
762
  init(_data?: any): void;
@@ -769,6 +772,7 @@ export interface ITestStep {
769
772
  typeName?: string | undefined;
770
773
  typeDisplay?: DisplayAttribute | undefined;
771
774
  name?: string | undefined;
775
+ expandedName?: string | undefined;
772
776
  }
773
777
  export declare class TestStepType extends TestStep implements ITestStepType {
774
778
  availableChildrenTypes?: string[] | undefined;
@@ -831,6 +835,7 @@ export interface ICommonContext {
831
835
  export declare class Interaction implements IInteraction {
832
836
  timeout?: string | undefined;
833
837
  title?: string | undefined;
838
+ modal?: boolean | undefined;
834
839
  settings?: Setting[] | undefined;
835
840
  id?: string;
836
841
  constructor(data?: IInteraction);
@@ -841,6 +846,7 @@ export declare class Interaction implements IInteraction {
841
846
  export interface IInteraction {
842
847
  timeout?: string | undefined;
843
848
  title?: string | undefined;
849
+ modal?: boolean | undefined;
844
850
  settings?: Setting[] | undefined;
845
851
  id?: string;
846
852
  }
package/lib/DTOs.js CHANGED
@@ -434,6 +434,7 @@ var Setting = /** @class */ (function (_super) {
434
434
  this.columnDisplayName = _data['ColumnDisplayName'] ? ColumnDisplayName.fromJS(_data['ColumnDisplayName']) : undefined;
435
435
  this.valueDescription = _data['ValueDescription'];
436
436
  this.propertyName = _data['PropertyName'];
437
+ this.submit = _data['Submit'];
437
438
  if (Array.isArray(_data['Icons'])) {
438
439
  this.icons = [];
439
440
  for (var _b = 0, _c = _data['Icons']; _b < _c.length; _b++) {
@@ -523,6 +524,7 @@ var Setting = /** @class */ (function (_super) {
523
524
  data['ColumnDisplayName'] = this.columnDisplayName ? this.columnDisplayName.toJSON() : undefined;
524
525
  data['ValueDescription'] = this.valueDescription;
525
526
  data['PropertyName'] = this.propertyName;
527
+ data['Submit'] = this.submit;
526
528
  if (Array.isArray(this.icons)) {
527
529
  data['Icons'] = [];
528
530
  for (var _b = 0, _c = this.icons; _b < _c.length; _b++) {
@@ -2193,6 +2195,7 @@ var TestStep = /** @class */ (function () {
2193
2195
  this.typeName = _data['TypeName'];
2194
2196
  this.typeDisplay = _data['TypeDisplay'] ? DisplayAttribute.fromJS(_data['TypeDisplay']) : undefined;
2195
2197
  this.name = _data['Name'];
2198
+ this.expandedName = _data['ExpandedName'];
2196
2199
  }
2197
2200
  };
2198
2201
  TestStep.fromJS = function (data) {
@@ -2229,6 +2232,7 @@ var TestStep = /** @class */ (function () {
2229
2232
  data['TypeName'] = this.typeName;
2230
2233
  data['TypeDisplay'] = this.typeDisplay ? this.typeDisplay.toJSON() : undefined;
2231
2234
  data['Name'] = this.name;
2235
+ data['ExpandedName'] = this.expandedName;
2232
2236
  return data;
2233
2237
  };
2234
2238
  return TestStep;
@@ -2455,6 +2459,7 @@ var Interaction = /** @class */ (function () {
2455
2459
  if (_data) {
2456
2460
  this.timeout = _data['Timeout'];
2457
2461
  this.title = _data['Title'];
2462
+ this.modal = _data['Modal'];
2458
2463
  if (Array.isArray(_data['Settings'])) {
2459
2464
  this.settings = [];
2460
2465
  for (var _i = 0, _a = _data['Settings']; _i < _a.length; _i++) {
@@ -2475,6 +2480,7 @@ var Interaction = /** @class */ (function () {
2475
2480
  data = typeof data === 'object' ? data : {};
2476
2481
  data['Timeout'] = this.timeout;
2477
2482
  data['Title'] = this.title;
2483
+ data['Modal'] = this.modal;
2478
2484
  if (Array.isArray(this.settings)) {
2479
2485
  data['Settings'] = [];
2480
2486
  for (var _i = 0, _a = this.settings; _i < _a.length; _i++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentap/runner-client",
3
- "version": "2.0.0-alpha.2.6",
3
+ "version": "2.0.0-alpha.2.8",
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",