@opentap/runner-client 2.19.0-alpha.1.4 → 2.20.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/BaseClient.d.ts +0 -1
- package/lib/BaseClient.js +50 -52
- package/lib/DTOs.js +116 -111
- package/lib/RunnerClient.js +20 -17
- package/lib/SessionClient.js +67 -74
- package/lib/SystemClient.js +19 -16
- package/lib/index.js +25 -5
- package/lib/requestDTOs.js +2 -1
- package/package.json +3 -4
package/lib/DTOs.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __extends = (this && this.__extends) || (function () {
|
|
2
3
|
var extendStatics = function (d, b) {
|
|
3
4
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -13,6 +14,10 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
13
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
15
|
};
|
|
15
16
|
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.SessionShutdownInitiated = exports.SessionStartFailed = exports.SessionStarted = exports.SessionStartInitiated = exports.SessionEventArgs = exports.SettingsTapPackage = exports.RepositorySettingsPackageDefinition = exports.RepositoryPackageDefinition = exports.RepositoryPackageReference = exports.ProfileGroup = exports.ListItemType = exports.ComponentSettings = exports.FileDescriptor = exports.Resource = exports.PluginTypeSelectorControl = exports.PictureControl = exports.PasswordControl = exports.MultiSelectControl = exports.DropdownControl = exports.EnabledControl = exports.DirectoryPathControl = exports.FilePathControl = exports.ComboBoxControl = exports.TextBoxControl = exports.DataGridControl = exports.DataGridReferenceControl = exports.CheckBoxControl = exports.AvailableValue = exports.ButtonsControl = exports.ButtonControl = exports.ExternalParameter = exports.MetaData = exports.DisplayAttribute = exports.VisualStatus = exports.Icon = exports.ColumnDisplayName = exports.LayoutMode = exports.Layout = exports.Setting = exports.ComponentSettingsListItem = exports.AnnotatedObject = exports.ComponentSettingsList = exports.ComponentSettingsIdentifier = exports.ComponentSettingsBase = exports.Links = exports.Session = exports.ImageResolveErrorResponse = exports.ErrorResponse = exports.PackageSpecifier = exports.Image = void 0;
|
|
19
|
+
exports.TestStepRunCompletedEventArgs = exports.TestStepRunStartEventArgs = exports.TestStepRunEvent = exports.TestPlanSettingsChangedEventArgs = exports.UserInputRequestCompletedEventArgs = exports.UserInputRequestEventArgs = exports.BreakEventArgs = exports.TestStepChangeEventArgs = exports.SettingsChangedEventArgs = exports.TestPlanExecutionStateChangedEventArgs = exports.TestPlanChangeEventArgs = exports.StoppedEventArgs = exports.StoppingEventArgs = exports.StartedEventArgs = exports.StartingEventArgs = exports.SessionTimeoutEventArgs = exports.SessionEventType = exports.SessionEvent = exports.ResultColumn = exports.Result = exports.LogEvent = exports.TestStepRun = exports.TestRun = exports.WatchDog = exports.Parameter = exports.BreakPoints = exports.InstalledFile = exports.Interaction = exports.CommonContext = exports.CommonSettings = exports.ValidationError = exports.TestStepValidationError = exports.TestStepCopy = exports.TestStepType = exports.TestStep = exports.TestPlan = exports.ExecutionState = exports.Verdict = exports.RunStatus = exports.MissingLicenseResponse = exports.LogEntry = exports.LogList = exports.ApiException = exports.ImageCreationFailed = exports.ImageCreated = exports.ImageCreating = exports.ImageEventArgs = exports.SessionInactivityLimitHit = exports.SessionShutdownFailed = exports.SessionShutdown = void 0;
|
|
20
|
+
exports.RunnerDeletedEvent = exports.RunnerUpdatedEvent = exports.RunnerRegisteredEvent = exports.RunnerEvent = exports.TestPlanRunCompletedEventArgs = exports.TestPlanRunStartEventArgs = exports.TestPlanRunEvent = void 0;
|
|
16
21
|
var Image = /** @class */ (function () {
|
|
17
22
|
function Image(data) {
|
|
18
23
|
this.packages = [];
|
|
@@ -72,7 +77,7 @@ var Image = /** @class */ (function () {
|
|
|
72
77
|
};
|
|
73
78
|
return Image;
|
|
74
79
|
}());
|
|
75
|
-
|
|
80
|
+
exports.Image = Image;
|
|
76
81
|
var PackageSpecifier = /** @class */ (function () {
|
|
77
82
|
function PackageSpecifier(data) {
|
|
78
83
|
if (data) {
|
|
@@ -106,7 +111,7 @@ var PackageSpecifier = /** @class */ (function () {
|
|
|
106
111
|
};
|
|
107
112
|
return PackageSpecifier;
|
|
108
113
|
}());
|
|
109
|
-
|
|
114
|
+
exports.PackageSpecifier = PackageSpecifier;
|
|
110
115
|
var ErrorResponse = /** @class */ (function () {
|
|
111
116
|
function ErrorResponse(data) {
|
|
112
117
|
if (data) {
|
|
@@ -144,7 +149,7 @@ var ErrorResponse = /** @class */ (function () {
|
|
|
144
149
|
};
|
|
145
150
|
return ErrorResponse;
|
|
146
151
|
}());
|
|
147
|
-
|
|
152
|
+
exports.ErrorResponse = ErrorResponse;
|
|
148
153
|
var ImageResolveErrorResponse = /** @class */ (function (_super) {
|
|
149
154
|
__extends(ImageResolveErrorResponse, _super);
|
|
150
155
|
function ImageResolveErrorResponse(data) {
|
|
@@ -170,7 +175,7 @@ var ImageResolveErrorResponse = /** @class */ (function (_super) {
|
|
|
170
175
|
};
|
|
171
176
|
return ImageResolveErrorResponse;
|
|
172
177
|
}(ErrorResponse));
|
|
173
|
-
|
|
178
|
+
exports.ImageResolveErrorResponse = ImageResolveErrorResponse;
|
|
174
179
|
var Session = /** @class */ (function () {
|
|
175
180
|
function Session(data) {
|
|
176
181
|
if (data) {
|
|
@@ -208,7 +213,7 @@ var Session = /** @class */ (function () {
|
|
|
208
213
|
};
|
|
209
214
|
return Session;
|
|
210
215
|
}());
|
|
211
|
-
|
|
216
|
+
exports.Session = Session;
|
|
212
217
|
var Links = /** @class */ (function () {
|
|
213
218
|
function Links(data) {
|
|
214
219
|
if (data) {
|
|
@@ -236,7 +241,7 @@ var Links = /** @class */ (function () {
|
|
|
236
241
|
};
|
|
237
242
|
return Links;
|
|
238
243
|
}());
|
|
239
|
-
|
|
244
|
+
exports.Links = Links;
|
|
240
245
|
var ComponentSettingsBase = /** @class */ (function () {
|
|
241
246
|
function ComponentSettingsBase(data) {
|
|
242
247
|
if (data) {
|
|
@@ -281,7 +286,7 @@ var ComponentSettingsBase = /** @class */ (function () {
|
|
|
281
286
|
};
|
|
282
287
|
return ComponentSettingsBase;
|
|
283
288
|
}());
|
|
284
|
-
|
|
289
|
+
exports.ComponentSettingsBase = ComponentSettingsBase;
|
|
285
290
|
var ComponentSettingsIdentifier = /** @class */ (function (_super) {
|
|
286
291
|
__extends(ComponentSettingsIdentifier, _super);
|
|
287
292
|
function ComponentSettingsIdentifier(data) {
|
|
@@ -305,7 +310,7 @@ var ComponentSettingsIdentifier = /** @class */ (function (_super) {
|
|
|
305
310
|
};
|
|
306
311
|
return ComponentSettingsIdentifier;
|
|
307
312
|
}(ComponentSettingsBase));
|
|
308
|
-
|
|
313
|
+
exports.ComponentSettingsIdentifier = ComponentSettingsIdentifier;
|
|
309
314
|
var ComponentSettingsList = /** @class */ (function (_super) {
|
|
310
315
|
__extends(ComponentSettingsList, _super);
|
|
311
316
|
function ComponentSettingsList(data) {
|
|
@@ -345,7 +350,7 @@ var ComponentSettingsList = /** @class */ (function (_super) {
|
|
|
345
350
|
};
|
|
346
351
|
return ComponentSettingsList;
|
|
347
352
|
}(ComponentSettingsBase));
|
|
348
|
-
|
|
353
|
+
exports.ComponentSettingsList = ComponentSettingsList;
|
|
349
354
|
var AnnotatedObject = /** @class */ (function () {
|
|
350
355
|
function AnnotatedObject(data) {
|
|
351
356
|
if (data) {
|
|
@@ -380,7 +385,7 @@ var AnnotatedObject = /** @class */ (function () {
|
|
|
380
385
|
};
|
|
381
386
|
return AnnotatedObject;
|
|
382
387
|
}());
|
|
383
|
-
|
|
388
|
+
exports.AnnotatedObject = AnnotatedObject;
|
|
384
389
|
var ComponentSettingsListItem = /** @class */ (function (_super) {
|
|
385
390
|
__extends(ComponentSettingsListItem, _super);
|
|
386
391
|
function ComponentSettingsListItem(data) {
|
|
@@ -422,7 +427,7 @@ var ComponentSettingsListItem = /** @class */ (function (_super) {
|
|
|
422
427
|
};
|
|
423
428
|
return ComponentSettingsListItem;
|
|
424
429
|
}(AnnotatedObject));
|
|
425
|
-
|
|
430
|
+
exports.ComponentSettingsListItem = ComponentSettingsListItem;
|
|
426
431
|
var Setting = /** @class */ (function (_super) {
|
|
427
432
|
__extends(Setting, _super);
|
|
428
433
|
function Setting(data) {
|
|
@@ -562,7 +567,7 @@ var Setting = /** @class */ (function (_super) {
|
|
|
562
567
|
};
|
|
563
568
|
return Setting;
|
|
564
569
|
}(AnnotatedObject));
|
|
565
|
-
|
|
570
|
+
exports.Setting = Setting;
|
|
566
571
|
var Layout = /** @class */ (function () {
|
|
567
572
|
function Layout(data) {
|
|
568
573
|
if (data) {
|
|
@@ -594,14 +599,14 @@ var Layout = /** @class */ (function () {
|
|
|
594
599
|
};
|
|
595
600
|
return Layout;
|
|
596
601
|
}());
|
|
597
|
-
|
|
602
|
+
exports.Layout = Layout;
|
|
598
603
|
/** The supported layout modes. */
|
|
599
|
-
|
|
604
|
+
var LayoutMode;
|
|
600
605
|
(function (LayoutMode) {
|
|
601
606
|
LayoutMode["Normal"] = "Normal";
|
|
602
607
|
LayoutMode["FullRow"] = "FullRow";
|
|
603
608
|
LayoutMode["FloatBottom"] = "FloatBottom";
|
|
604
|
-
})(LayoutMode || (LayoutMode = {}));
|
|
609
|
+
})(LayoutMode = exports.LayoutMode || (exports.LayoutMode = {}));
|
|
605
610
|
var ColumnDisplayName = /** @class */ (function () {
|
|
606
611
|
function ColumnDisplayName(data) {
|
|
607
612
|
if (data) {
|
|
@@ -633,7 +638,7 @@ var ColumnDisplayName = /** @class */ (function () {
|
|
|
633
638
|
};
|
|
634
639
|
return ColumnDisplayName;
|
|
635
640
|
}());
|
|
636
|
-
|
|
641
|
+
exports.ColumnDisplayName = ColumnDisplayName;
|
|
637
642
|
var Icon = /** @class */ (function () {
|
|
638
643
|
function Icon(data) {
|
|
639
644
|
if (data) {
|
|
@@ -667,7 +672,7 @@ var Icon = /** @class */ (function () {
|
|
|
667
672
|
};
|
|
668
673
|
return Icon;
|
|
669
674
|
}());
|
|
670
|
-
|
|
675
|
+
exports.Icon = Icon;
|
|
671
676
|
var VisualStatus = /** @class */ (function () {
|
|
672
677
|
function VisualStatus(data) {
|
|
673
678
|
if (data) {
|
|
@@ -699,7 +704,7 @@ var VisualStatus = /** @class */ (function () {
|
|
|
699
704
|
};
|
|
700
705
|
return VisualStatus;
|
|
701
706
|
}());
|
|
702
|
-
|
|
707
|
+
exports.VisualStatus = VisualStatus;
|
|
703
708
|
var DisplayAttribute = /** @class */ (function () {
|
|
704
709
|
function DisplayAttribute(data) {
|
|
705
710
|
if (data) {
|
|
@@ -747,7 +752,7 @@ var DisplayAttribute = /** @class */ (function () {
|
|
|
747
752
|
};
|
|
748
753
|
return DisplayAttribute;
|
|
749
754
|
}());
|
|
750
|
-
|
|
755
|
+
exports.DisplayAttribute = DisplayAttribute;
|
|
751
756
|
var MetaData = /** @class */ (function () {
|
|
752
757
|
function MetaData(data) {
|
|
753
758
|
if (data) {
|
|
@@ -781,7 +786,7 @@ var MetaData = /** @class */ (function () {
|
|
|
781
786
|
};
|
|
782
787
|
return MetaData;
|
|
783
788
|
}());
|
|
784
|
-
|
|
789
|
+
exports.MetaData = MetaData;
|
|
785
790
|
var ExternalParameter = /** @class */ (function () {
|
|
786
791
|
function ExternalParameter(data) {
|
|
787
792
|
if (data) {
|
|
@@ -809,7 +814,7 @@ var ExternalParameter = /** @class */ (function () {
|
|
|
809
814
|
};
|
|
810
815
|
return ExternalParameter;
|
|
811
816
|
}());
|
|
812
|
-
|
|
817
|
+
exports.ExternalParameter = ExternalParameter;
|
|
813
818
|
var ButtonControl = /** @class */ (function (_super) {
|
|
814
819
|
__extends(ButtonControl, _super);
|
|
815
820
|
function ButtonControl(data) {
|
|
@@ -837,7 +842,7 @@ var ButtonControl = /** @class */ (function (_super) {
|
|
|
837
842
|
};
|
|
838
843
|
return ButtonControl;
|
|
839
844
|
}(Setting));
|
|
840
|
-
|
|
845
|
+
exports.ButtonControl = ButtonControl;
|
|
841
846
|
var ButtonsControl = /** @class */ (function (_super) {
|
|
842
847
|
__extends(ButtonsControl, _super);
|
|
843
848
|
function ButtonsControl(data) {
|
|
@@ -881,7 +886,7 @@ var ButtonsControl = /** @class */ (function (_super) {
|
|
|
881
886
|
};
|
|
882
887
|
return ButtonsControl;
|
|
883
888
|
}(Setting));
|
|
884
|
-
|
|
889
|
+
exports.ButtonsControl = ButtonsControl;
|
|
885
890
|
var AvailableValue = /** @class */ (function () {
|
|
886
891
|
function AvailableValue(data) {
|
|
887
892
|
if (data) {
|
|
@@ -911,7 +916,7 @@ var AvailableValue = /** @class */ (function () {
|
|
|
911
916
|
};
|
|
912
917
|
return AvailableValue;
|
|
913
918
|
}());
|
|
914
|
-
|
|
919
|
+
exports.AvailableValue = AvailableValue;
|
|
915
920
|
var CheckBoxControl = /** @class */ (function (_super) {
|
|
916
921
|
__extends(CheckBoxControl, _super);
|
|
917
922
|
function CheckBoxControl(data) {
|
|
@@ -939,7 +944,7 @@ var CheckBoxControl = /** @class */ (function (_super) {
|
|
|
939
944
|
};
|
|
940
945
|
return CheckBoxControl;
|
|
941
946
|
}(Setting));
|
|
942
|
-
|
|
947
|
+
exports.CheckBoxControl = CheckBoxControl;
|
|
943
948
|
var DataGridReferenceControl = /** @class */ (function (_super) {
|
|
944
949
|
__extends(DataGridReferenceControl, _super);
|
|
945
950
|
function DataGridReferenceControl(data) {
|
|
@@ -963,7 +968,7 @@ var DataGridReferenceControl = /** @class */ (function (_super) {
|
|
|
963
968
|
};
|
|
964
969
|
return DataGridReferenceControl;
|
|
965
970
|
}(Setting));
|
|
966
|
-
|
|
971
|
+
exports.DataGridReferenceControl = DataGridReferenceControl;
|
|
967
972
|
var DataGridControl = /** @class */ (function (_super) {
|
|
968
973
|
__extends(DataGridControl, _super);
|
|
969
974
|
function DataGridControl(data) {
|
|
@@ -1005,7 +1010,7 @@ var DataGridControl = /** @class */ (function (_super) {
|
|
|
1005
1010
|
};
|
|
1006
1011
|
return DataGridControl;
|
|
1007
1012
|
}(Setting));
|
|
1008
|
-
|
|
1013
|
+
exports.DataGridControl = DataGridControl;
|
|
1009
1014
|
var TextBoxControl = /** @class */ (function (_super) {
|
|
1010
1015
|
__extends(TextBoxControl, _super);
|
|
1011
1016
|
function TextBoxControl(data) {
|
|
@@ -1038,7 +1043,7 @@ var TextBoxControl = /** @class */ (function (_super) {
|
|
|
1038
1043
|
};
|
|
1039
1044
|
return TextBoxControl;
|
|
1040
1045
|
}(Setting));
|
|
1041
|
-
|
|
1046
|
+
exports.TextBoxControl = TextBoxControl;
|
|
1042
1047
|
var ComboBoxControl = /** @class */ (function (_super) {
|
|
1043
1048
|
__extends(ComboBoxControl, _super);
|
|
1044
1049
|
function ComboBoxControl(data) {
|
|
@@ -1078,7 +1083,7 @@ var ComboBoxControl = /** @class */ (function (_super) {
|
|
|
1078
1083
|
};
|
|
1079
1084
|
return ComboBoxControl;
|
|
1080
1085
|
}(TextBoxControl));
|
|
1081
|
-
|
|
1086
|
+
exports.ComboBoxControl = ComboBoxControl;
|
|
1082
1087
|
var FilePathControl = /** @class */ (function (_super) {
|
|
1083
1088
|
__extends(FilePathControl, _super);
|
|
1084
1089
|
function FilePathControl(data) {
|
|
@@ -1108,7 +1113,7 @@ var FilePathControl = /** @class */ (function (_super) {
|
|
|
1108
1113
|
};
|
|
1109
1114
|
return FilePathControl;
|
|
1110
1115
|
}(Setting));
|
|
1111
|
-
|
|
1116
|
+
exports.FilePathControl = FilePathControl;
|
|
1112
1117
|
var DirectoryPathControl = /** @class */ (function (_super) {
|
|
1113
1118
|
__extends(DirectoryPathControl, _super);
|
|
1114
1119
|
function DirectoryPathControl(data) {
|
|
@@ -1136,7 +1141,7 @@ var DirectoryPathControl = /** @class */ (function (_super) {
|
|
|
1136
1141
|
};
|
|
1137
1142
|
return DirectoryPathControl;
|
|
1138
1143
|
}(Setting));
|
|
1139
|
-
|
|
1144
|
+
exports.DirectoryPathControl = DirectoryPathControl;
|
|
1140
1145
|
var EnabledControl = /** @class */ (function (_super) {
|
|
1141
1146
|
__extends(EnabledControl, _super);
|
|
1142
1147
|
function EnabledControl(data) {
|
|
@@ -1166,7 +1171,7 @@ var EnabledControl = /** @class */ (function (_super) {
|
|
|
1166
1171
|
};
|
|
1167
1172
|
return EnabledControl;
|
|
1168
1173
|
}(Setting));
|
|
1169
|
-
|
|
1174
|
+
exports.EnabledControl = EnabledControl;
|
|
1170
1175
|
var DropdownControl = /** @class */ (function (_super) {
|
|
1171
1176
|
__extends(DropdownControl, _super);
|
|
1172
1177
|
function DropdownControl(data) {
|
|
@@ -1208,7 +1213,7 @@ var DropdownControl = /** @class */ (function (_super) {
|
|
|
1208
1213
|
};
|
|
1209
1214
|
return DropdownControl;
|
|
1210
1215
|
}(Setting));
|
|
1211
|
-
|
|
1216
|
+
exports.DropdownControl = DropdownControl;
|
|
1212
1217
|
var MultiSelectControl = /** @class */ (function (_super) {
|
|
1213
1218
|
__extends(MultiSelectControl, _super);
|
|
1214
1219
|
function MultiSelectControl(data) {
|
|
@@ -1262,7 +1267,7 @@ var MultiSelectControl = /** @class */ (function (_super) {
|
|
|
1262
1267
|
};
|
|
1263
1268
|
return MultiSelectControl;
|
|
1264
1269
|
}(Setting));
|
|
1265
|
-
|
|
1270
|
+
exports.MultiSelectControl = MultiSelectControl;
|
|
1266
1271
|
var PasswordControl = /** @class */ (function (_super) {
|
|
1267
1272
|
__extends(PasswordControl, _super);
|
|
1268
1273
|
function PasswordControl(data) {
|
|
@@ -1290,7 +1295,7 @@ var PasswordControl = /** @class */ (function (_super) {
|
|
|
1290
1295
|
};
|
|
1291
1296
|
return PasswordControl;
|
|
1292
1297
|
}(Setting));
|
|
1293
|
-
|
|
1298
|
+
exports.PasswordControl = PasswordControl;
|
|
1294
1299
|
var PictureControl = /** @class */ (function (_super) {
|
|
1295
1300
|
__extends(PictureControl, _super);
|
|
1296
1301
|
function PictureControl(data) {
|
|
@@ -1322,7 +1327,7 @@ var PictureControl = /** @class */ (function (_super) {
|
|
|
1322
1327
|
};
|
|
1323
1328
|
return PictureControl;
|
|
1324
1329
|
}(Setting));
|
|
1325
|
-
|
|
1330
|
+
exports.PictureControl = PictureControl;
|
|
1326
1331
|
var PluginTypeSelectorControl = /** @class */ (function (_super) {
|
|
1327
1332
|
__extends(PluginTypeSelectorControl, _super);
|
|
1328
1333
|
function PluginTypeSelectorControl(data) {
|
|
@@ -1365,7 +1370,7 @@ var PluginTypeSelectorControl = /** @class */ (function (_super) {
|
|
|
1365
1370
|
};
|
|
1366
1371
|
return PluginTypeSelectorControl;
|
|
1367
1372
|
}(Setting));
|
|
1368
|
-
|
|
1373
|
+
exports.PluginTypeSelectorControl = PluginTypeSelectorControl;
|
|
1369
1374
|
var Resource = /** @class */ (function () {
|
|
1370
1375
|
function Resource(data) {
|
|
1371
1376
|
if (data) {
|
|
@@ -1393,7 +1398,7 @@ var Resource = /** @class */ (function () {
|
|
|
1393
1398
|
};
|
|
1394
1399
|
return Resource;
|
|
1395
1400
|
}());
|
|
1396
|
-
|
|
1401
|
+
exports.Resource = Resource;
|
|
1397
1402
|
var FileDescriptor = /** @class */ (function () {
|
|
1398
1403
|
function FileDescriptor(fileSize, chunkSize) {
|
|
1399
1404
|
var _a;
|
|
@@ -1426,7 +1431,7 @@ var FileDescriptor = /** @class */ (function () {
|
|
|
1426
1431
|
};
|
|
1427
1432
|
return FileDescriptor;
|
|
1428
1433
|
}());
|
|
1429
|
-
|
|
1434
|
+
exports.FileDescriptor = FileDescriptor;
|
|
1430
1435
|
var ComponentSettings = /** @class */ (function (_super) {
|
|
1431
1436
|
__extends(ComponentSettings, _super);
|
|
1432
1437
|
function ComponentSettings(data) {
|
|
@@ -1466,7 +1471,7 @@ var ComponentSettings = /** @class */ (function (_super) {
|
|
|
1466
1471
|
};
|
|
1467
1472
|
return ComponentSettings;
|
|
1468
1473
|
}(ComponentSettingsBase));
|
|
1469
|
-
|
|
1474
|
+
exports.ComponentSettings = ComponentSettings;
|
|
1470
1475
|
var ListItemType = /** @class */ (function () {
|
|
1471
1476
|
function ListItemType(data) {
|
|
1472
1477
|
if (data) {
|
|
@@ -1496,7 +1501,7 @@ var ListItemType = /** @class */ (function () {
|
|
|
1496
1501
|
};
|
|
1497
1502
|
return ListItemType;
|
|
1498
1503
|
}());
|
|
1499
|
-
|
|
1504
|
+
exports.ListItemType = ListItemType;
|
|
1500
1505
|
var ProfileGroup = /** @class */ (function () {
|
|
1501
1506
|
function ProfileGroup(data) {
|
|
1502
1507
|
if (data) {
|
|
@@ -1540,7 +1545,7 @@ var ProfileGroup = /** @class */ (function () {
|
|
|
1540
1545
|
};
|
|
1541
1546
|
return ProfileGroup;
|
|
1542
1547
|
}());
|
|
1543
|
-
|
|
1548
|
+
exports.ProfileGroup = ProfileGroup;
|
|
1544
1549
|
var RepositoryPackageReference = /** @class */ (function () {
|
|
1545
1550
|
function RepositoryPackageReference(data) {
|
|
1546
1551
|
if (data) {
|
|
@@ -1574,7 +1579,7 @@ var RepositoryPackageReference = /** @class */ (function () {
|
|
|
1574
1579
|
};
|
|
1575
1580
|
return RepositoryPackageReference;
|
|
1576
1581
|
}());
|
|
1577
|
-
|
|
1582
|
+
exports.RepositoryPackageReference = RepositoryPackageReference;
|
|
1578
1583
|
var RepositoryPackageDefinition = /** @class */ (function (_super) {
|
|
1579
1584
|
__extends(RepositoryPackageDefinition, _super);
|
|
1580
1585
|
function RepositoryPackageDefinition(data) {
|
|
@@ -1612,7 +1617,7 @@ var RepositoryPackageDefinition = /** @class */ (function (_super) {
|
|
|
1612
1617
|
};
|
|
1613
1618
|
return RepositoryPackageDefinition;
|
|
1614
1619
|
}(RepositoryPackageReference));
|
|
1615
|
-
|
|
1620
|
+
exports.RepositoryPackageDefinition = RepositoryPackageDefinition;
|
|
1616
1621
|
var RepositorySettingsPackageDefinition = /** @class */ (function (_super) {
|
|
1617
1622
|
__extends(RepositorySettingsPackageDefinition, _super);
|
|
1618
1623
|
function RepositorySettingsPackageDefinition(data) {
|
|
@@ -1634,7 +1639,7 @@ var RepositorySettingsPackageDefinition = /** @class */ (function (_super) {
|
|
|
1634
1639
|
};
|
|
1635
1640
|
return RepositorySettingsPackageDefinition;
|
|
1636
1641
|
}(RepositoryPackageDefinition));
|
|
1637
|
-
|
|
1642
|
+
exports.RepositorySettingsPackageDefinition = RepositorySettingsPackageDefinition;
|
|
1638
1643
|
var SettingsTapPackage = /** @class */ (function () {
|
|
1639
1644
|
function SettingsTapPackage(data) {
|
|
1640
1645
|
if (data) {
|
|
@@ -1702,7 +1707,7 @@ var SettingsTapPackage = /** @class */ (function () {
|
|
|
1702
1707
|
};
|
|
1703
1708
|
return SettingsTapPackage;
|
|
1704
1709
|
}());
|
|
1705
|
-
|
|
1710
|
+
exports.SettingsTapPackage = SettingsTapPackage;
|
|
1706
1711
|
var SessionEventArgs = /** @class */ (function () {
|
|
1707
1712
|
function SessionEventArgs(data) {
|
|
1708
1713
|
if (data) {
|
|
@@ -1767,7 +1772,7 @@ var SessionEventArgs = /** @class */ (function () {
|
|
|
1767
1772
|
};
|
|
1768
1773
|
return SessionEventArgs;
|
|
1769
1774
|
}());
|
|
1770
|
-
|
|
1775
|
+
exports.SessionEventArgs = SessionEventArgs;
|
|
1771
1776
|
var SessionStartInitiated = /** @class */ (function (_super) {
|
|
1772
1777
|
__extends(SessionStartInitiated, _super);
|
|
1773
1778
|
function SessionStartInitiated(data) {
|
|
@@ -1791,7 +1796,7 @@ var SessionStartInitiated = /** @class */ (function (_super) {
|
|
|
1791
1796
|
};
|
|
1792
1797
|
return SessionStartInitiated;
|
|
1793
1798
|
}(SessionEventArgs));
|
|
1794
|
-
|
|
1799
|
+
exports.SessionStartInitiated = SessionStartInitiated;
|
|
1795
1800
|
var SessionStarted = /** @class */ (function (_super) {
|
|
1796
1801
|
__extends(SessionStarted, _super);
|
|
1797
1802
|
function SessionStarted(data) {
|
|
@@ -1819,7 +1824,7 @@ var SessionStarted = /** @class */ (function (_super) {
|
|
|
1819
1824
|
};
|
|
1820
1825
|
return SessionStarted;
|
|
1821
1826
|
}(SessionEventArgs));
|
|
1822
|
-
|
|
1827
|
+
exports.SessionStarted = SessionStarted;
|
|
1823
1828
|
var SessionStartFailed = /** @class */ (function (_super) {
|
|
1824
1829
|
__extends(SessionStartFailed, _super);
|
|
1825
1830
|
function SessionStartFailed(data) {
|
|
@@ -1847,7 +1852,7 @@ var SessionStartFailed = /** @class */ (function (_super) {
|
|
|
1847
1852
|
};
|
|
1848
1853
|
return SessionStartFailed;
|
|
1849
1854
|
}(SessionEventArgs));
|
|
1850
|
-
|
|
1855
|
+
exports.SessionStartFailed = SessionStartFailed;
|
|
1851
1856
|
var SessionShutdownInitiated = /** @class */ (function (_super) {
|
|
1852
1857
|
__extends(SessionShutdownInitiated, _super);
|
|
1853
1858
|
function SessionShutdownInitiated(data) {
|
|
@@ -1871,7 +1876,7 @@ var SessionShutdownInitiated = /** @class */ (function (_super) {
|
|
|
1871
1876
|
};
|
|
1872
1877
|
return SessionShutdownInitiated;
|
|
1873
1878
|
}(SessionEventArgs));
|
|
1874
|
-
|
|
1879
|
+
exports.SessionShutdownInitiated = SessionShutdownInitiated;
|
|
1875
1880
|
var SessionShutdown = /** @class */ (function (_super) {
|
|
1876
1881
|
__extends(SessionShutdown, _super);
|
|
1877
1882
|
function SessionShutdown(data) {
|
|
@@ -1895,7 +1900,7 @@ var SessionShutdown = /** @class */ (function (_super) {
|
|
|
1895
1900
|
};
|
|
1896
1901
|
return SessionShutdown;
|
|
1897
1902
|
}(SessionEventArgs));
|
|
1898
|
-
|
|
1903
|
+
exports.SessionShutdown = SessionShutdown;
|
|
1899
1904
|
var SessionShutdownFailed = /** @class */ (function (_super) {
|
|
1900
1905
|
__extends(SessionShutdownFailed, _super);
|
|
1901
1906
|
function SessionShutdownFailed(data) {
|
|
@@ -1923,7 +1928,7 @@ var SessionShutdownFailed = /** @class */ (function (_super) {
|
|
|
1923
1928
|
};
|
|
1924
1929
|
return SessionShutdownFailed;
|
|
1925
1930
|
}(SessionEventArgs));
|
|
1926
|
-
|
|
1931
|
+
exports.SessionShutdownFailed = SessionShutdownFailed;
|
|
1927
1932
|
var SessionInactivityLimitHit = /** @class */ (function (_super) {
|
|
1928
1933
|
__extends(SessionInactivityLimitHit, _super);
|
|
1929
1934
|
function SessionInactivityLimitHit(data) {
|
|
@@ -1947,7 +1952,7 @@ var SessionInactivityLimitHit = /** @class */ (function (_super) {
|
|
|
1947
1952
|
};
|
|
1948
1953
|
return SessionInactivityLimitHit;
|
|
1949
1954
|
}(SessionEventArgs));
|
|
1950
|
-
|
|
1955
|
+
exports.SessionInactivityLimitHit = SessionInactivityLimitHit;
|
|
1951
1956
|
var ImageEventArgs = /** @class */ (function () {
|
|
1952
1957
|
function ImageEventArgs(data) {
|
|
1953
1958
|
if (data) {
|
|
@@ -1992,7 +1997,7 @@ var ImageEventArgs = /** @class */ (function () {
|
|
|
1992
1997
|
};
|
|
1993
1998
|
return ImageEventArgs;
|
|
1994
1999
|
}());
|
|
1995
|
-
|
|
2000
|
+
exports.ImageEventArgs = ImageEventArgs;
|
|
1996
2001
|
var ImageCreating = /** @class */ (function (_super) {
|
|
1997
2002
|
__extends(ImageCreating, _super);
|
|
1998
2003
|
function ImageCreating(data) {
|
|
@@ -2016,7 +2021,7 @@ var ImageCreating = /** @class */ (function (_super) {
|
|
|
2016
2021
|
};
|
|
2017
2022
|
return ImageCreating;
|
|
2018
2023
|
}(ImageEventArgs));
|
|
2019
|
-
|
|
2024
|
+
exports.ImageCreating = ImageCreating;
|
|
2020
2025
|
var ImageCreated = /** @class */ (function (_super) {
|
|
2021
2026
|
__extends(ImageCreated, _super);
|
|
2022
2027
|
function ImageCreated(data) {
|
|
@@ -2044,7 +2049,7 @@ var ImageCreated = /** @class */ (function (_super) {
|
|
|
2044
2049
|
};
|
|
2045
2050
|
return ImageCreated;
|
|
2046
2051
|
}(ImageEventArgs));
|
|
2047
|
-
|
|
2052
|
+
exports.ImageCreated = ImageCreated;
|
|
2048
2053
|
var ImageCreationFailed = /** @class */ (function (_super) {
|
|
2049
2054
|
__extends(ImageCreationFailed, _super);
|
|
2050
2055
|
function ImageCreationFailed(data) {
|
|
@@ -2072,7 +2077,7 @@ var ImageCreationFailed = /** @class */ (function (_super) {
|
|
|
2072
2077
|
};
|
|
2073
2078
|
return ImageCreationFailed;
|
|
2074
2079
|
}(ImageEventArgs));
|
|
2075
|
-
|
|
2080
|
+
exports.ImageCreationFailed = ImageCreationFailed;
|
|
2076
2081
|
var ApiException = /** @class */ (function (_super) {
|
|
2077
2082
|
__extends(ApiException, _super);
|
|
2078
2083
|
function ApiException(message, status, response, headers, result) {
|
|
@@ -2090,7 +2095,7 @@ var ApiException = /** @class */ (function (_super) {
|
|
|
2090
2095
|
};
|
|
2091
2096
|
return ApiException;
|
|
2092
2097
|
}(Error));
|
|
2093
|
-
|
|
2098
|
+
exports.ApiException = ApiException;
|
|
2094
2099
|
var LogList = /** @class */ (function () {
|
|
2095
2100
|
function LogList(data) {
|
|
2096
2101
|
if (data) {
|
|
@@ -2148,7 +2153,7 @@ var LogList = /** @class */ (function () {
|
|
|
2148
2153
|
};
|
|
2149
2154
|
return LogList;
|
|
2150
2155
|
}());
|
|
2151
|
-
|
|
2156
|
+
exports.LogList = LogList;
|
|
2152
2157
|
var LogEntry = /** @class */ (function () {
|
|
2153
2158
|
function LogEntry(data) {
|
|
2154
2159
|
if (data) {
|
|
@@ -2184,7 +2189,7 @@ var LogEntry = /** @class */ (function () {
|
|
|
2184
2189
|
};
|
|
2185
2190
|
return LogEntry;
|
|
2186
2191
|
}());
|
|
2187
|
-
|
|
2192
|
+
exports.LogEntry = LogEntry;
|
|
2188
2193
|
var MissingLicenseResponse = /** @class */ (function () {
|
|
2189
2194
|
function MissingLicenseResponse(data) {
|
|
2190
2195
|
if (data) {
|
|
@@ -2212,7 +2217,7 @@ var MissingLicenseResponse = /** @class */ (function () {
|
|
|
2212
2217
|
};
|
|
2213
2218
|
return MissingLicenseResponse;
|
|
2214
2219
|
}());
|
|
2215
|
-
|
|
2220
|
+
exports.MissingLicenseResponse = MissingLicenseResponse;
|
|
2216
2221
|
var RunStatus = /** @class */ (function () {
|
|
2217
2222
|
function RunStatus(data) {
|
|
2218
2223
|
if (data) {
|
|
@@ -2262,9 +2267,9 @@ var RunStatus = /** @class */ (function () {
|
|
|
2262
2267
|
};
|
|
2263
2268
|
return RunStatus;
|
|
2264
2269
|
}());
|
|
2265
|
-
|
|
2270
|
+
exports.RunStatus = RunStatus;
|
|
2266
2271
|
/** Enumeration containing the verdict types used for Verdict and Verdict properties. */
|
|
2267
|
-
|
|
2272
|
+
var Verdict;
|
|
2268
2273
|
(function (Verdict) {
|
|
2269
2274
|
Verdict["NotSet"] = "NotSet";
|
|
2270
2275
|
Verdict["Pass"] = "Pass";
|
|
@@ -2272,14 +2277,14 @@ export var Verdict;
|
|
|
2272
2277
|
Verdict["Fail"] = "Fail";
|
|
2273
2278
|
Verdict["Aborted"] = "Aborted";
|
|
2274
2279
|
Verdict["Error"] = "Error";
|
|
2275
|
-
})(Verdict || (Verdict = {}));
|
|
2276
|
-
|
|
2280
|
+
})(Verdict = exports.Verdict || (exports.Verdict = {}));
|
|
2281
|
+
var ExecutionState;
|
|
2277
2282
|
(function (ExecutionState) {
|
|
2278
2283
|
ExecutionState["Idle"] = "Idle";
|
|
2279
2284
|
ExecutionState["Executing"] = "Executing";
|
|
2280
2285
|
ExecutionState["Breaking"] = "Breaking";
|
|
2281
2286
|
ExecutionState["Aborting"] = "Aborting";
|
|
2282
|
-
})(ExecutionState || (ExecutionState = {}));
|
|
2287
|
+
})(ExecutionState = exports.ExecutionState || (exports.ExecutionState = {}));
|
|
2283
2288
|
var TestPlan = /** @class */ (function () {
|
|
2284
2289
|
function TestPlan(data) {
|
|
2285
2290
|
if (data) {
|
|
@@ -2351,7 +2356,7 @@ var TestPlan = /** @class */ (function () {
|
|
|
2351
2356
|
};
|
|
2352
2357
|
return TestPlan;
|
|
2353
2358
|
}());
|
|
2354
|
-
|
|
2359
|
+
exports.TestPlan = TestPlan;
|
|
2355
2360
|
var TestStep = /** @class */ (function () {
|
|
2356
2361
|
function TestStep(data) {
|
|
2357
2362
|
if (data) {
|
|
@@ -2426,7 +2431,7 @@ var TestStep = /** @class */ (function () {
|
|
|
2426
2431
|
};
|
|
2427
2432
|
return TestStep;
|
|
2428
2433
|
}());
|
|
2429
|
-
|
|
2434
|
+
exports.TestStep = TestStep;
|
|
2430
2435
|
var TestStepType = /** @class */ (function (_super) {
|
|
2431
2436
|
__extends(TestStepType, _super);
|
|
2432
2437
|
function TestStepType(data) {
|
|
@@ -2466,7 +2471,7 @@ var TestStepType = /** @class */ (function (_super) {
|
|
|
2466
2471
|
};
|
|
2467
2472
|
return TestStepType;
|
|
2468
2473
|
}(TestStep));
|
|
2469
|
-
|
|
2474
|
+
exports.TestStepType = TestStepType;
|
|
2470
2475
|
var TestStepCopy = /** @class */ (function (_super) {
|
|
2471
2476
|
__extends(TestStepCopy, _super);
|
|
2472
2477
|
function TestStepCopy(data) {
|
|
@@ -2490,7 +2495,7 @@ var TestStepCopy = /** @class */ (function (_super) {
|
|
|
2490
2495
|
};
|
|
2491
2496
|
return TestStepCopy;
|
|
2492
2497
|
}(TestStep));
|
|
2493
|
-
|
|
2498
|
+
exports.TestStepCopy = TestStepCopy;
|
|
2494
2499
|
var TestStepValidationError = /** @class */ (function () {
|
|
2495
2500
|
function TestStepValidationError(data) {
|
|
2496
2501
|
if (data) {
|
|
@@ -2532,7 +2537,7 @@ var TestStepValidationError = /** @class */ (function () {
|
|
|
2532
2537
|
};
|
|
2533
2538
|
return TestStepValidationError;
|
|
2534
2539
|
}());
|
|
2535
|
-
|
|
2540
|
+
exports.TestStepValidationError = TestStepValidationError;
|
|
2536
2541
|
var ValidationError = /** @class */ (function () {
|
|
2537
2542
|
function ValidationError(data) {
|
|
2538
2543
|
if (data) {
|
|
@@ -2562,7 +2567,7 @@ var ValidationError = /** @class */ (function () {
|
|
|
2562
2567
|
};
|
|
2563
2568
|
return ValidationError;
|
|
2564
2569
|
}());
|
|
2565
|
-
|
|
2570
|
+
exports.ValidationError = ValidationError;
|
|
2566
2571
|
var CommonSettings = /** @class */ (function () {
|
|
2567
2572
|
function CommonSettings(data) {
|
|
2568
2573
|
if (data) {
|
|
@@ -2604,7 +2609,7 @@ var CommonSettings = /** @class */ (function () {
|
|
|
2604
2609
|
};
|
|
2605
2610
|
return CommonSettings;
|
|
2606
2611
|
}());
|
|
2607
|
-
|
|
2612
|
+
exports.CommonSettings = CommonSettings;
|
|
2608
2613
|
var CommonContext = /** @class */ (function () {
|
|
2609
2614
|
function CommonContext(data) {
|
|
2610
2615
|
if (data) {
|
|
@@ -2658,7 +2663,7 @@ var CommonContext = /** @class */ (function () {
|
|
|
2658
2663
|
};
|
|
2659
2664
|
return CommonContext;
|
|
2660
2665
|
}());
|
|
2661
|
-
|
|
2666
|
+
exports.CommonContext = CommonContext;
|
|
2662
2667
|
var Interaction = /** @class */ (function () {
|
|
2663
2668
|
function Interaction(data) {
|
|
2664
2669
|
if (data) {
|
|
@@ -2706,7 +2711,7 @@ var Interaction = /** @class */ (function () {
|
|
|
2706
2711
|
};
|
|
2707
2712
|
return Interaction;
|
|
2708
2713
|
}());
|
|
2709
|
-
|
|
2714
|
+
exports.Interaction = Interaction;
|
|
2710
2715
|
var InstalledFile = /** @class */ (function () {
|
|
2711
2716
|
function InstalledFile(data) {
|
|
2712
2717
|
if (data) {
|
|
@@ -2736,7 +2741,7 @@ var InstalledFile = /** @class */ (function () {
|
|
|
2736
2741
|
};
|
|
2737
2742
|
return InstalledFile;
|
|
2738
2743
|
}());
|
|
2739
|
-
|
|
2744
|
+
exports.InstalledFile = InstalledFile;
|
|
2740
2745
|
var BreakPoints = /** @class */ (function () {
|
|
2741
2746
|
function BreakPoints(data) {
|
|
2742
2747
|
if (data) {
|
|
@@ -2776,7 +2781,7 @@ var BreakPoints = /** @class */ (function () {
|
|
|
2776
2781
|
};
|
|
2777
2782
|
return BreakPoints;
|
|
2778
2783
|
}());
|
|
2779
|
-
|
|
2784
|
+
exports.BreakPoints = BreakPoints;
|
|
2780
2785
|
var Parameter = /** @class */ (function () {
|
|
2781
2786
|
function Parameter(data) {
|
|
2782
2787
|
if (data) {
|
|
@@ -2812,7 +2817,7 @@ var Parameter = /** @class */ (function () {
|
|
|
2812
2817
|
};
|
|
2813
2818
|
return Parameter;
|
|
2814
2819
|
}());
|
|
2815
|
-
|
|
2820
|
+
exports.Parameter = Parameter;
|
|
2816
2821
|
var WatchDog = /** @class */ (function () {
|
|
2817
2822
|
function WatchDog(data) {
|
|
2818
2823
|
if (data) {
|
|
@@ -2842,7 +2847,7 @@ var WatchDog = /** @class */ (function () {
|
|
|
2842
2847
|
};
|
|
2843
2848
|
return WatchDog;
|
|
2844
2849
|
}());
|
|
2845
|
-
|
|
2850
|
+
exports.WatchDog = WatchDog;
|
|
2846
2851
|
var TestRun = /** @class */ (function () {
|
|
2847
2852
|
function TestRun(data) {
|
|
2848
2853
|
if (data) {
|
|
@@ -2892,7 +2897,7 @@ var TestRun = /** @class */ (function () {
|
|
|
2892
2897
|
};
|
|
2893
2898
|
return TestRun;
|
|
2894
2899
|
}());
|
|
2895
|
-
|
|
2900
|
+
exports.TestRun = TestRun;
|
|
2896
2901
|
var TestStepRun = /** @class */ (function () {
|
|
2897
2902
|
function TestStepRun(data) {
|
|
2898
2903
|
if (data) {
|
|
@@ -2924,7 +2929,7 @@ var TestStepRun = /** @class */ (function () {
|
|
|
2924
2929
|
};
|
|
2925
2930
|
return TestStepRun;
|
|
2926
2931
|
}());
|
|
2927
|
-
|
|
2932
|
+
exports.TestStepRun = TestStepRun;
|
|
2928
2933
|
var LogEvent = /** @class */ (function () {
|
|
2929
2934
|
function LogEvent(data) {
|
|
2930
2935
|
if (data) {
|
|
@@ -2960,7 +2965,7 @@ var LogEvent = /** @class */ (function () {
|
|
|
2960
2965
|
};
|
|
2961
2966
|
return LogEvent;
|
|
2962
2967
|
}());
|
|
2963
|
-
|
|
2968
|
+
exports.LogEvent = LogEvent;
|
|
2964
2969
|
var Result = /** @class */ (function () {
|
|
2965
2970
|
function Result(data) {
|
|
2966
2971
|
if (data) {
|
|
@@ -3010,7 +3015,7 @@ var Result = /** @class */ (function () {
|
|
|
3010
3015
|
};
|
|
3011
3016
|
return Result;
|
|
3012
3017
|
}());
|
|
3013
|
-
|
|
3018
|
+
exports.Result = Result;
|
|
3014
3019
|
var ResultColumn = /** @class */ (function () {
|
|
3015
3020
|
function ResultColumn(data) {
|
|
3016
3021
|
if (data) {
|
|
@@ -3056,7 +3061,7 @@ var ResultColumn = /** @class */ (function () {
|
|
|
3056
3061
|
};
|
|
3057
3062
|
return ResultColumn;
|
|
3058
3063
|
}());
|
|
3059
|
-
|
|
3064
|
+
exports.ResultColumn = ResultColumn;
|
|
3060
3065
|
var SessionEvent = /** @class */ (function () {
|
|
3061
3066
|
function SessionEvent(data) {
|
|
3062
3067
|
if (data) {
|
|
@@ -3153,8 +3158,8 @@ var SessionEvent = /** @class */ (function () {
|
|
|
3153
3158
|
};
|
|
3154
3159
|
return SessionEvent;
|
|
3155
3160
|
}());
|
|
3156
|
-
|
|
3157
|
-
|
|
3161
|
+
exports.SessionEvent = SessionEvent;
|
|
3162
|
+
var SessionEventType;
|
|
3158
3163
|
(function (SessionEventType) {
|
|
3159
3164
|
SessionEventType["SessionStarting"] = "SessionStarting";
|
|
3160
3165
|
SessionEventType["SessionStarted"] = "SessionStarted";
|
|
@@ -3170,7 +3175,7 @@ export var SessionEventType;
|
|
|
3170
3175
|
SessionEventType["SessionTimeoutHit"] = "SessionTimeoutHit";
|
|
3171
3176
|
SessionEventType["TestPlanSettingsChanged"] = "TestPlanSettingsChanged";
|
|
3172
3177
|
SessionEventType["TypeCacheInvalidated"] = "TypeCacheInvalidated";
|
|
3173
|
-
})(SessionEventType || (SessionEventType = {}));
|
|
3178
|
+
})(SessionEventType = exports.SessionEventType || (exports.SessionEventType = {}));
|
|
3174
3179
|
var SessionTimeoutEventArgs = /** @class */ (function (_super) {
|
|
3175
3180
|
__extends(SessionTimeoutEventArgs, _super);
|
|
3176
3181
|
function SessionTimeoutEventArgs(data) {
|
|
@@ -3194,7 +3199,7 @@ var SessionTimeoutEventArgs = /** @class */ (function (_super) {
|
|
|
3194
3199
|
};
|
|
3195
3200
|
return SessionTimeoutEventArgs;
|
|
3196
3201
|
}(SessionEvent));
|
|
3197
|
-
|
|
3202
|
+
exports.SessionTimeoutEventArgs = SessionTimeoutEventArgs;
|
|
3198
3203
|
var StartingEventArgs = /** @class */ (function (_super) {
|
|
3199
3204
|
__extends(StartingEventArgs, _super);
|
|
3200
3205
|
function StartingEventArgs(data) {
|
|
@@ -3218,7 +3223,7 @@ var StartingEventArgs = /** @class */ (function (_super) {
|
|
|
3218
3223
|
};
|
|
3219
3224
|
return StartingEventArgs;
|
|
3220
3225
|
}(SessionEvent));
|
|
3221
|
-
|
|
3226
|
+
exports.StartingEventArgs = StartingEventArgs;
|
|
3222
3227
|
var StartedEventArgs = /** @class */ (function (_super) {
|
|
3223
3228
|
__extends(StartedEventArgs, _super);
|
|
3224
3229
|
function StartedEventArgs(data) {
|
|
@@ -3242,7 +3247,7 @@ var StartedEventArgs = /** @class */ (function (_super) {
|
|
|
3242
3247
|
};
|
|
3243
3248
|
return StartedEventArgs;
|
|
3244
3249
|
}(SessionEvent));
|
|
3245
|
-
|
|
3250
|
+
exports.StartedEventArgs = StartedEventArgs;
|
|
3246
3251
|
var StoppingEventArgs = /** @class */ (function (_super) {
|
|
3247
3252
|
__extends(StoppingEventArgs, _super);
|
|
3248
3253
|
function StoppingEventArgs(data) {
|
|
@@ -3266,7 +3271,7 @@ var StoppingEventArgs = /** @class */ (function (_super) {
|
|
|
3266
3271
|
};
|
|
3267
3272
|
return StoppingEventArgs;
|
|
3268
3273
|
}(SessionEvent));
|
|
3269
|
-
|
|
3274
|
+
exports.StoppingEventArgs = StoppingEventArgs;
|
|
3270
3275
|
var StoppedEventArgs = /** @class */ (function (_super) {
|
|
3271
3276
|
__extends(StoppedEventArgs, _super);
|
|
3272
3277
|
function StoppedEventArgs(data) {
|
|
@@ -3290,7 +3295,7 @@ var StoppedEventArgs = /** @class */ (function (_super) {
|
|
|
3290
3295
|
};
|
|
3291
3296
|
return StoppedEventArgs;
|
|
3292
3297
|
}(SessionEvent));
|
|
3293
|
-
|
|
3298
|
+
exports.StoppedEventArgs = StoppedEventArgs;
|
|
3294
3299
|
var TestPlanChangeEventArgs = /** @class */ (function (_super) {
|
|
3295
3300
|
__extends(TestPlanChangeEventArgs, _super);
|
|
3296
3301
|
function TestPlanChangeEventArgs(data) {
|
|
@@ -3314,7 +3319,7 @@ var TestPlanChangeEventArgs = /** @class */ (function (_super) {
|
|
|
3314
3319
|
};
|
|
3315
3320
|
return TestPlanChangeEventArgs;
|
|
3316
3321
|
}(SessionEvent));
|
|
3317
|
-
|
|
3322
|
+
exports.TestPlanChangeEventArgs = TestPlanChangeEventArgs;
|
|
3318
3323
|
var TestPlanExecutionStateChangedEventArgs = /** @class */ (function (_super) {
|
|
3319
3324
|
__extends(TestPlanExecutionStateChangedEventArgs, _super);
|
|
3320
3325
|
function TestPlanExecutionStateChangedEventArgs(data) {
|
|
@@ -3342,7 +3347,7 @@ var TestPlanExecutionStateChangedEventArgs = /** @class */ (function (_super) {
|
|
|
3342
3347
|
};
|
|
3343
3348
|
return TestPlanExecutionStateChangedEventArgs;
|
|
3344
3349
|
}(SessionEvent));
|
|
3345
|
-
|
|
3350
|
+
exports.TestPlanExecutionStateChangedEventArgs = TestPlanExecutionStateChangedEventArgs;
|
|
3346
3351
|
var SettingsChangedEventArgs = /** @class */ (function (_super) {
|
|
3347
3352
|
__extends(SettingsChangedEventArgs, _super);
|
|
3348
3353
|
function SettingsChangedEventArgs(data) {
|
|
@@ -3366,7 +3371,7 @@ var SettingsChangedEventArgs = /** @class */ (function (_super) {
|
|
|
3366
3371
|
};
|
|
3367
3372
|
return SettingsChangedEventArgs;
|
|
3368
3373
|
}(SessionEvent));
|
|
3369
|
-
|
|
3374
|
+
exports.SettingsChangedEventArgs = SettingsChangedEventArgs;
|
|
3370
3375
|
var TestStepChangeEventArgs = /** @class */ (function (_super) {
|
|
3371
3376
|
__extends(TestStepChangeEventArgs, _super);
|
|
3372
3377
|
function TestStepChangeEventArgs(data) {
|
|
@@ -3394,7 +3399,7 @@ var TestStepChangeEventArgs = /** @class */ (function (_super) {
|
|
|
3394
3399
|
};
|
|
3395
3400
|
return TestStepChangeEventArgs;
|
|
3396
3401
|
}(SessionEvent));
|
|
3397
|
-
|
|
3402
|
+
exports.TestStepChangeEventArgs = TestStepChangeEventArgs;
|
|
3398
3403
|
var BreakEventArgs = /** @class */ (function (_super) {
|
|
3399
3404
|
__extends(BreakEventArgs, _super);
|
|
3400
3405
|
function BreakEventArgs(data) {
|
|
@@ -3422,7 +3427,7 @@ var BreakEventArgs = /** @class */ (function (_super) {
|
|
|
3422
3427
|
};
|
|
3423
3428
|
return BreakEventArgs;
|
|
3424
3429
|
}(SessionEvent));
|
|
3425
|
-
|
|
3430
|
+
exports.BreakEventArgs = BreakEventArgs;
|
|
3426
3431
|
var UserInputRequestEventArgs = /** @class */ (function (_super) {
|
|
3427
3432
|
__extends(UserInputRequestEventArgs, _super);
|
|
3428
3433
|
function UserInputRequestEventArgs(data) {
|
|
@@ -3450,7 +3455,7 @@ var UserInputRequestEventArgs = /** @class */ (function (_super) {
|
|
|
3450
3455
|
};
|
|
3451
3456
|
return UserInputRequestEventArgs;
|
|
3452
3457
|
}(SessionEvent));
|
|
3453
|
-
|
|
3458
|
+
exports.UserInputRequestEventArgs = UserInputRequestEventArgs;
|
|
3454
3459
|
var UserInputRequestCompletedEventArgs = /** @class */ (function (_super) {
|
|
3455
3460
|
__extends(UserInputRequestCompletedEventArgs, _super);
|
|
3456
3461
|
function UserInputRequestCompletedEventArgs(data) {
|
|
@@ -3482,7 +3487,7 @@ var UserInputRequestCompletedEventArgs = /** @class */ (function (_super) {
|
|
|
3482
3487
|
};
|
|
3483
3488
|
return UserInputRequestCompletedEventArgs;
|
|
3484
3489
|
}(SessionEvent));
|
|
3485
|
-
|
|
3490
|
+
exports.UserInputRequestCompletedEventArgs = UserInputRequestCompletedEventArgs;
|
|
3486
3491
|
var TestPlanSettingsChangedEventArgs = /** @class */ (function (_super) {
|
|
3487
3492
|
__extends(TestPlanSettingsChangedEventArgs, _super);
|
|
3488
3493
|
function TestPlanSettingsChangedEventArgs(data) {
|
|
@@ -3506,7 +3511,7 @@ var TestPlanSettingsChangedEventArgs = /** @class */ (function (_super) {
|
|
|
3506
3511
|
};
|
|
3507
3512
|
return TestPlanSettingsChangedEventArgs;
|
|
3508
3513
|
}(SessionEvent));
|
|
3509
|
-
|
|
3514
|
+
exports.TestPlanSettingsChangedEventArgs = TestPlanSettingsChangedEventArgs;
|
|
3510
3515
|
var TestStepRunEvent = /** @class */ (function () {
|
|
3511
3516
|
function TestStepRunEvent(data) {
|
|
3512
3517
|
if (data) {
|
|
@@ -3570,7 +3575,7 @@ var TestStepRunEvent = /** @class */ (function () {
|
|
|
3570
3575
|
};
|
|
3571
3576
|
return TestStepRunEvent;
|
|
3572
3577
|
}());
|
|
3573
|
-
|
|
3578
|
+
exports.TestStepRunEvent = TestStepRunEvent;
|
|
3574
3579
|
var TestStepRunStartEventArgs = /** @class */ (function (_super) {
|
|
3575
3580
|
__extends(TestStepRunStartEventArgs, _super);
|
|
3576
3581
|
function TestStepRunStartEventArgs(data) {
|
|
@@ -3594,7 +3599,7 @@ var TestStepRunStartEventArgs = /** @class */ (function (_super) {
|
|
|
3594
3599
|
};
|
|
3595
3600
|
return TestStepRunStartEventArgs;
|
|
3596
3601
|
}(TestStepRunEvent));
|
|
3597
|
-
|
|
3602
|
+
exports.TestStepRunStartEventArgs = TestStepRunStartEventArgs;
|
|
3598
3603
|
var TestStepRunCompletedEventArgs = /** @class */ (function (_super) {
|
|
3599
3604
|
__extends(TestStepRunCompletedEventArgs, _super);
|
|
3600
3605
|
function TestStepRunCompletedEventArgs(data) {
|
|
@@ -3618,7 +3623,7 @@ var TestStepRunCompletedEventArgs = /** @class */ (function (_super) {
|
|
|
3618
3623
|
};
|
|
3619
3624
|
return TestStepRunCompletedEventArgs;
|
|
3620
3625
|
}(TestStepRunEvent));
|
|
3621
|
-
|
|
3626
|
+
exports.TestStepRunCompletedEventArgs = TestStepRunCompletedEventArgs;
|
|
3622
3627
|
var TestPlanRunEvent = /** @class */ (function () {
|
|
3623
3628
|
function TestPlanRunEvent(data) {
|
|
3624
3629
|
if (data) {
|
|
@@ -3675,7 +3680,7 @@ var TestPlanRunEvent = /** @class */ (function () {
|
|
|
3675
3680
|
};
|
|
3676
3681
|
return TestPlanRunEvent;
|
|
3677
3682
|
}());
|
|
3678
|
-
|
|
3683
|
+
exports.TestPlanRunEvent = TestPlanRunEvent;
|
|
3679
3684
|
var TestPlanRunStartEventArgs = /** @class */ (function (_super) {
|
|
3680
3685
|
__extends(TestPlanRunStartEventArgs, _super);
|
|
3681
3686
|
function TestPlanRunStartEventArgs(data) {
|
|
@@ -3699,7 +3704,7 @@ var TestPlanRunStartEventArgs = /** @class */ (function (_super) {
|
|
|
3699
3704
|
};
|
|
3700
3705
|
return TestPlanRunStartEventArgs;
|
|
3701
3706
|
}(TestPlanRunEvent));
|
|
3702
|
-
|
|
3707
|
+
exports.TestPlanRunStartEventArgs = TestPlanRunStartEventArgs;
|
|
3703
3708
|
var TestPlanRunCompletedEventArgs = /** @class */ (function (_super) {
|
|
3704
3709
|
__extends(TestPlanRunCompletedEventArgs, _super);
|
|
3705
3710
|
function TestPlanRunCompletedEventArgs(data) {
|
|
@@ -3727,7 +3732,7 @@ var TestPlanRunCompletedEventArgs = /** @class */ (function (_super) {
|
|
|
3727
3732
|
};
|
|
3728
3733
|
return TestPlanRunCompletedEventArgs;
|
|
3729
3734
|
}(TestPlanRunEvent));
|
|
3730
|
-
|
|
3735
|
+
exports.TestPlanRunCompletedEventArgs = TestPlanRunCompletedEventArgs;
|
|
3731
3736
|
var RunnerEvent = /** @class */ (function () {
|
|
3732
3737
|
function RunnerEvent(data) {
|
|
3733
3738
|
if (data) {
|
|
@@ -3771,7 +3776,7 @@ var RunnerEvent = /** @class */ (function () {
|
|
|
3771
3776
|
};
|
|
3772
3777
|
return RunnerEvent;
|
|
3773
3778
|
}());
|
|
3774
|
-
|
|
3779
|
+
exports.RunnerEvent = RunnerEvent;
|
|
3775
3780
|
var RunnerRegisteredEvent = /** @class */ (function (_super) {
|
|
3776
3781
|
__extends(RunnerRegisteredEvent, _super);
|
|
3777
3782
|
function RunnerRegisteredEvent(data) {
|
|
@@ -3795,7 +3800,7 @@ var RunnerRegisteredEvent = /** @class */ (function (_super) {
|
|
|
3795
3800
|
};
|
|
3796
3801
|
return RunnerRegisteredEvent;
|
|
3797
3802
|
}(RunnerEvent));
|
|
3798
|
-
|
|
3803
|
+
exports.RunnerRegisteredEvent = RunnerRegisteredEvent;
|
|
3799
3804
|
var RunnerUpdatedEvent = /** @class */ (function (_super) {
|
|
3800
3805
|
__extends(RunnerUpdatedEvent, _super);
|
|
3801
3806
|
function RunnerUpdatedEvent(data) {
|
|
@@ -3819,7 +3824,7 @@ var RunnerUpdatedEvent = /** @class */ (function (_super) {
|
|
|
3819
3824
|
};
|
|
3820
3825
|
return RunnerUpdatedEvent;
|
|
3821
3826
|
}(RunnerEvent));
|
|
3822
|
-
|
|
3827
|
+
exports.RunnerUpdatedEvent = RunnerUpdatedEvent;
|
|
3823
3828
|
var RunnerDeletedEvent = /** @class */ (function (_super) {
|
|
3824
3829
|
__extends(RunnerDeletedEvent, _super);
|
|
3825
3830
|
function RunnerDeletedEvent(data) {
|
|
@@ -3843,4 +3848,4 @@ var RunnerDeletedEvent = /** @class */ (function (_super) {
|
|
|
3843
3848
|
};
|
|
3844
3849
|
return RunnerDeletedEvent;
|
|
3845
3850
|
}(RunnerEvent));
|
|
3846
|
-
|
|
3851
|
+
exports.RunnerDeletedEvent = RunnerDeletedEvent;
|