@opentap/runner-client 2.12.0-alpha.1.3 → 2.13.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/DTOs.d.ts CHANGED
@@ -380,6 +380,16 @@ export interface IFilePathControl extends ISetting {
380
380
  stringValue?: string | undefined;
381
381
  fileExtension?: string | undefined;
382
382
  }
383
+ export declare class DirectoryPathControl extends Setting implements IDirectoryPathControl {
384
+ stringValue?: string | undefined;
385
+ constructor(data?: IDirectoryPathControl);
386
+ init(_data?: any): void;
387
+ static fromJS(data: any): DirectoryPathControl;
388
+ toJSON(data?: any): any;
389
+ }
390
+ export interface IDirectoryPathControl extends ISetting {
391
+ stringValue?: string | undefined;
392
+ }
383
393
  export declare class EnabledControl extends Setting implements IEnabledControl {
384
394
  isEnabled?: boolean | undefined;
385
395
  value?: Setting | undefined;
package/lib/DTOs.js CHANGED
@@ -1097,6 +1097,34 @@ var FilePathControl = /** @class */ (function (_super) {
1097
1097
  return FilePathControl;
1098
1098
  }(Setting));
1099
1099
  export { FilePathControl };
1100
+ var DirectoryPathControl = /** @class */ (function (_super) {
1101
+ __extends(DirectoryPathControl, _super);
1102
+ function DirectoryPathControl(data) {
1103
+ var _this = _super.call(this, data) || this;
1104
+ _this._discriminator = 'DirectoryPathControl';
1105
+ return _this;
1106
+ }
1107
+ DirectoryPathControl.prototype.init = function (_data) {
1108
+ _super.prototype.init.call(this, _data);
1109
+ if (_data) {
1110
+ this.stringValue = _data['StringValue'];
1111
+ }
1112
+ };
1113
+ DirectoryPathControl.fromJS = function (data) {
1114
+ data = typeof data === 'object' ? data : {};
1115
+ var result = new DirectoryPathControl();
1116
+ result.init(data);
1117
+ return result;
1118
+ };
1119
+ DirectoryPathControl.prototype.toJSON = function (data) {
1120
+ data = typeof data === 'object' ? data : {};
1121
+ data['StringValue'] = this.stringValue;
1122
+ _super.prototype.toJSON.call(this, data);
1123
+ return data;
1124
+ };
1125
+ return DirectoryPathControl;
1126
+ }(Setting));
1127
+ export { DirectoryPathControl };
1100
1128
  var EnabledControl = /** @class */ (function (_super) {
1101
1129
  __extends(EnabledControl, _super);
1102
1130
  function EnabledControl(data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentap/runner-client",
3
- "version": "2.12.0-alpha.1.3",
3
+ "version": "2.13.0-alpha.1.1",
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",