@opentap/runner-client 2.29.0 → 2.29.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/dist/cjs/BaseClient.d.ts +253 -0
- package/dist/cjs/DTOs.d.ts +1505 -0
- package/dist/cjs/RunnerClient.d.ts +93 -0
- package/dist/cjs/SessionClient.d.ts +359 -0
- package/dist/cjs/SystemClient.d.ts +62 -0
- package/dist/cjs/encoders.d.ts +7 -0
- package/dist/cjs/index.d.ts +6 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/requestDTOs.d.ts +78 -0
- package/dist/cjs/utils.d.ts +11 -0
- package/dist/mjs/package.json +1 -0
- package/package.json +4 -3
|
@@ -0,0 +1,1505 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
export declare class Image implements IImage {
|
|
3
|
+
name?: string | undefined;
|
|
4
|
+
packages?: PackageSpecifier[];
|
|
5
|
+
repositories?: string[];
|
|
6
|
+
id?: string | undefined;
|
|
7
|
+
constructor(data?: IImage);
|
|
8
|
+
init(_data?: any): void;
|
|
9
|
+
static fromJS(data: any): Image;
|
|
10
|
+
toJSON(data?: any): any;
|
|
11
|
+
}
|
|
12
|
+
export interface IImage {
|
|
13
|
+
name?: string | undefined;
|
|
14
|
+
packages?: PackageSpecifier[] | undefined;
|
|
15
|
+
repositories?: string[] | undefined;
|
|
16
|
+
id?: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
export declare class PackageSpecifier implements IPackageSpecifier {
|
|
19
|
+
name?: string | undefined;
|
|
20
|
+
version?: string | undefined;
|
|
21
|
+
architecture?: string | undefined;
|
|
22
|
+
oS?: string | undefined;
|
|
23
|
+
constructor(data?: IPackageSpecifier);
|
|
24
|
+
init(_data?: any): void;
|
|
25
|
+
static fromJS(data: any): PackageSpecifier;
|
|
26
|
+
toJSON(data?: any): any;
|
|
27
|
+
}
|
|
28
|
+
export interface IPackageSpecifier {
|
|
29
|
+
name?: string | undefined;
|
|
30
|
+
version?: string | undefined;
|
|
31
|
+
architecture?: string | undefined;
|
|
32
|
+
oS?: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
export declare class ErrorResponse implements IErrorResponse {
|
|
35
|
+
type?: string | undefined;
|
|
36
|
+
message?: string | undefined;
|
|
37
|
+
parameter?: string | undefined;
|
|
38
|
+
source?: string | undefined;
|
|
39
|
+
stackTrace?: string | undefined;
|
|
40
|
+
inner?: ErrorResponse | undefined;
|
|
41
|
+
subject?: string | undefined;
|
|
42
|
+
constructor(data?: IErrorResponse);
|
|
43
|
+
init(_data?: any): void;
|
|
44
|
+
static fromJS(data: any): ErrorResponse;
|
|
45
|
+
toJSON(data?: any): any;
|
|
46
|
+
}
|
|
47
|
+
export interface IErrorResponse {
|
|
48
|
+
type?: string | undefined;
|
|
49
|
+
message?: string | undefined;
|
|
50
|
+
parameter?: string | undefined;
|
|
51
|
+
source?: string | undefined;
|
|
52
|
+
stackTrace?: string | undefined;
|
|
53
|
+
inner?: ErrorResponse | undefined;
|
|
54
|
+
}
|
|
55
|
+
export declare class ImageResolveErrorResponse extends ErrorResponse implements IImageResolveErrorResponse {
|
|
56
|
+
dotGraph?: string | undefined;
|
|
57
|
+
constructor(data?: IImageResolveErrorResponse);
|
|
58
|
+
init(_data?: any): void;
|
|
59
|
+
static fromJS(data: any): ImageResolveErrorResponse;
|
|
60
|
+
toJSON(data?: any): any;
|
|
61
|
+
}
|
|
62
|
+
export interface IImageResolveErrorResponse extends IErrorResponse {
|
|
63
|
+
dotGraph?: string | undefined;
|
|
64
|
+
}
|
|
65
|
+
export declare class Session implements ISession {
|
|
66
|
+
subject?: string | undefined;
|
|
67
|
+
id?: string | undefined;
|
|
68
|
+
imageId?: string | undefined;
|
|
69
|
+
executionState?: ExecutionState;
|
|
70
|
+
testPlanRunId?: string | undefined;
|
|
71
|
+
startedBy?: string | undefined;
|
|
72
|
+
metadata?: {
|
|
73
|
+
[key: string]: string;
|
|
74
|
+
} | undefined;
|
|
75
|
+
constructor(data?: ISession);
|
|
76
|
+
init(_data?: any): void;
|
|
77
|
+
static fromJS(data: any): Session;
|
|
78
|
+
toJSON(data?: any): any;
|
|
79
|
+
}
|
|
80
|
+
export interface ISession {
|
|
81
|
+
subject?: string | undefined;
|
|
82
|
+
id?: string | undefined;
|
|
83
|
+
imageId?: string | undefined;
|
|
84
|
+
executionState?: ExecutionState;
|
|
85
|
+
testPlanRunId?: string | undefined;
|
|
86
|
+
startedBy?: string | undefined;
|
|
87
|
+
metadata?: {
|
|
88
|
+
[key: string]: string;
|
|
89
|
+
} | undefined;
|
|
90
|
+
}
|
|
91
|
+
export declare class Links implements ILinks {
|
|
92
|
+
editor?: string | undefined;
|
|
93
|
+
constructor(data?: ILinks);
|
|
94
|
+
init(_data?: any): void;
|
|
95
|
+
static fromJS(data: any): Links;
|
|
96
|
+
toJSON(data?: any): any;
|
|
97
|
+
}
|
|
98
|
+
export interface ILinks {
|
|
99
|
+
editor?: string | undefined;
|
|
100
|
+
}
|
|
101
|
+
export declare abstract class ComponentSettingsBase implements IComponentSettingsBase {
|
|
102
|
+
name?: string | undefined;
|
|
103
|
+
groupName?: string | undefined;
|
|
104
|
+
protected _discriminator: string;
|
|
105
|
+
constructor(data?: IComponentSettingsBase);
|
|
106
|
+
init(_data?: any): void;
|
|
107
|
+
static fromJS(data: any): ComponentSettingsBase;
|
|
108
|
+
toJSON(data?: any): any;
|
|
109
|
+
}
|
|
110
|
+
export interface IComponentSettingsBase {
|
|
111
|
+
name?: string | undefined;
|
|
112
|
+
groupName?: string | undefined;
|
|
113
|
+
}
|
|
114
|
+
export declare class ComponentSettingsIdentifier extends ComponentSettingsBase implements IComponentSettingsBase {
|
|
115
|
+
constructor(data?: IComponentSettingsBase);
|
|
116
|
+
init(_data?: any): void;
|
|
117
|
+
static fromJS(data: any): ComponentSettingsIdentifier;
|
|
118
|
+
toJSON(data?: any): any;
|
|
119
|
+
}
|
|
120
|
+
/** The supported layout modes. */
|
|
121
|
+
export declare enum DisplayMode {
|
|
122
|
+
MasterDetail = "MasterDetail",
|
|
123
|
+
DataGrid = "DataGrid"
|
|
124
|
+
}
|
|
125
|
+
export declare class ComponentSettingsList extends ComponentSettingsBase implements IComponentSettingsList {
|
|
126
|
+
items?: ComponentSettingsListItem[] | undefined;
|
|
127
|
+
displayMode?: DisplayMode | undefined;
|
|
128
|
+
itemType?: string | undefined;
|
|
129
|
+
itemTypeDisplayName?: string | undefined;
|
|
130
|
+
constructor(data?: IComponentSettingsList);
|
|
131
|
+
init(_data?: any): void;
|
|
132
|
+
static fromJS(data: any): ComponentSettingsList;
|
|
133
|
+
toJSON(data?: any): any;
|
|
134
|
+
}
|
|
135
|
+
export interface IComponentSettingsList extends IComponentSettingsBase {
|
|
136
|
+
items?: ComponentSettingsListItem[] | undefined;
|
|
137
|
+
displayMode?: DisplayMode | undefined;
|
|
138
|
+
itemType?: string | undefined;
|
|
139
|
+
itemTypeDisplayName?: string | undefined;
|
|
140
|
+
}
|
|
141
|
+
export declare abstract class AnnotatedObject implements IAnnotatedObject {
|
|
142
|
+
visualStatus?: VisualStatus | undefined;
|
|
143
|
+
valueType?: string | undefined;
|
|
144
|
+
display?: DisplayAttribute | undefined;
|
|
145
|
+
metaData?: MetaData | undefined;
|
|
146
|
+
externalParameter?: ExternalParameter | undefined;
|
|
147
|
+
unitAttribute?: UnitAttribute | undefined;
|
|
148
|
+
constructor(data?: IAnnotatedObject);
|
|
149
|
+
init(_data?: any): void;
|
|
150
|
+
static fromJS(data: any): AnnotatedObject;
|
|
151
|
+
toJSON(data?: any): any;
|
|
152
|
+
}
|
|
153
|
+
export interface IAnnotatedObject {
|
|
154
|
+
visualStatus?: VisualStatus | undefined;
|
|
155
|
+
valueType?: string | undefined;
|
|
156
|
+
display?: DisplayAttribute | undefined;
|
|
157
|
+
metaData?: MetaData | undefined;
|
|
158
|
+
externalParameter?: ExternalParameter | undefined;
|
|
159
|
+
unitAttribute?: UnitAttribute | undefined;
|
|
160
|
+
}
|
|
161
|
+
export declare class ComponentSettingsListItem extends AnnotatedObject implements IComponentSettingsListItem {
|
|
162
|
+
settings?: Setting[] | undefined;
|
|
163
|
+
name?: string | undefined;
|
|
164
|
+
enabledResource?: boolean | undefined;
|
|
165
|
+
constructor(data?: IComponentSettingsListItem);
|
|
166
|
+
init(_data?: any): void;
|
|
167
|
+
static fromJS(data: any): ComponentSettingsListItem;
|
|
168
|
+
toJSON(data?: any): any;
|
|
169
|
+
}
|
|
170
|
+
export interface IComponentSettingsListItem extends IAnnotatedObject {
|
|
171
|
+
settings?: Setting[] | undefined;
|
|
172
|
+
name?: string | undefined;
|
|
173
|
+
enabledResource?: boolean | undefined;
|
|
174
|
+
}
|
|
175
|
+
export declare class Setting extends AnnotatedObject implements ISetting {
|
|
176
|
+
errors?: string[] | undefined;
|
|
177
|
+
layout?: Layout | undefined;
|
|
178
|
+
columnDisplayName?: ColumnDisplayName | undefined;
|
|
179
|
+
valueDescription?: string | undefined;
|
|
180
|
+
propertyName?: string | undefined;
|
|
181
|
+
icons?: Icon[] | undefined;
|
|
182
|
+
submit?: boolean | undefined;
|
|
183
|
+
protected _discriminator: string;
|
|
184
|
+
constructor(data?: ISetting);
|
|
185
|
+
init(_data?: any): void;
|
|
186
|
+
static fromJS(data: any): Setting;
|
|
187
|
+
toJSON(data?: any): any;
|
|
188
|
+
}
|
|
189
|
+
export interface ISetting extends IAnnotatedObject {
|
|
190
|
+
errors?: string[] | undefined;
|
|
191
|
+
layout?: Layout | undefined;
|
|
192
|
+
columnDisplayName?: ColumnDisplayName | undefined;
|
|
193
|
+
valueDescription?: string | undefined;
|
|
194
|
+
propertyName?: string | undefined;
|
|
195
|
+
icons?: Icon[] | undefined;
|
|
196
|
+
submit?: boolean | undefined;
|
|
197
|
+
}
|
|
198
|
+
export declare class Layout implements ILayout {
|
|
199
|
+
mode?: LayoutMode;
|
|
200
|
+
rowHeight?: number;
|
|
201
|
+
maxRowHeight?: number;
|
|
202
|
+
constructor(data?: ILayout);
|
|
203
|
+
init(_data?: any): void;
|
|
204
|
+
static fromJS(data: any): Layout;
|
|
205
|
+
toJSON(data?: any): any;
|
|
206
|
+
}
|
|
207
|
+
export interface ILayout {
|
|
208
|
+
mode?: LayoutMode;
|
|
209
|
+
rowHeight?: number;
|
|
210
|
+
maxRowHeight?: number;
|
|
211
|
+
}
|
|
212
|
+
/** The supported layout modes. */
|
|
213
|
+
export declare enum LayoutMode {
|
|
214
|
+
Normal = "Normal",
|
|
215
|
+
FullRow = "FullRow",
|
|
216
|
+
FloatBottom = "FloatBottom"
|
|
217
|
+
}
|
|
218
|
+
export declare class ColumnDisplayName implements IColumnDisplayName {
|
|
219
|
+
columnName?: string | undefined;
|
|
220
|
+
order?: number;
|
|
221
|
+
isReadOnly?: boolean;
|
|
222
|
+
constructor(data?: IColumnDisplayName);
|
|
223
|
+
init(_data?: any): void;
|
|
224
|
+
static fromJS(data: any): ColumnDisplayName;
|
|
225
|
+
toJSON(data?: any): any;
|
|
226
|
+
}
|
|
227
|
+
export interface IColumnDisplayName {
|
|
228
|
+
columnName?: string | undefined;
|
|
229
|
+
order?: number;
|
|
230
|
+
isReadOnly?: boolean;
|
|
231
|
+
}
|
|
232
|
+
export declare class Icon implements IIcon {
|
|
233
|
+
iconName?: string | undefined;
|
|
234
|
+
invoke?: boolean | undefined;
|
|
235
|
+
stepReference?: string | undefined;
|
|
236
|
+
propertyReference?: string | undefined;
|
|
237
|
+
constructor(data?: IIcon);
|
|
238
|
+
init(_data?: any): void;
|
|
239
|
+
static fromJS(data: any): Icon;
|
|
240
|
+
toJSON(data?: any): any;
|
|
241
|
+
}
|
|
242
|
+
export interface IUnitAttribute {
|
|
243
|
+
unit: string | undefined;
|
|
244
|
+
preScaling: number | undefined;
|
|
245
|
+
stringFormat: string | undefined;
|
|
246
|
+
useRanges: boolean | undefined;
|
|
247
|
+
useEngineeringPrefix: boolean | undefined;
|
|
248
|
+
}
|
|
249
|
+
export declare class UnitAttribute implements IUnitAttribute {
|
|
250
|
+
unit: undefined;
|
|
251
|
+
preScaling: undefined;
|
|
252
|
+
stringFormat: undefined;
|
|
253
|
+
useRanges: undefined;
|
|
254
|
+
useEngineeringPrefix: undefined;
|
|
255
|
+
constructor(data?: IUnitAttribute);
|
|
256
|
+
init(_data?: any): void;
|
|
257
|
+
static fromJS(data: any): UnitAttribute;
|
|
258
|
+
toJSON(data?: any): any;
|
|
259
|
+
}
|
|
260
|
+
export interface IIcon {
|
|
261
|
+
iconName?: string | undefined;
|
|
262
|
+
invoke?: boolean | undefined;
|
|
263
|
+
stepReference?: string | undefined;
|
|
264
|
+
propertyReference?: string | undefined;
|
|
265
|
+
}
|
|
266
|
+
export declare class VisualStatus implements IVisualStatus {
|
|
267
|
+
isReadOnly?: boolean;
|
|
268
|
+
isVisible?: boolean;
|
|
269
|
+
isEnabled?: boolean;
|
|
270
|
+
constructor(data?: IVisualStatus);
|
|
271
|
+
init(_data?: any): void;
|
|
272
|
+
static fromJS(data: any): VisualStatus;
|
|
273
|
+
toJSON(data?: any): any;
|
|
274
|
+
}
|
|
275
|
+
export interface IVisualStatus {
|
|
276
|
+
isReadOnly?: boolean;
|
|
277
|
+
isVisible?: boolean;
|
|
278
|
+
isEnabled?: boolean;
|
|
279
|
+
}
|
|
280
|
+
export declare class DisplayAttribute implements IDisplayAttribute {
|
|
281
|
+
description?: string | undefined;
|
|
282
|
+
group?: string[] | undefined;
|
|
283
|
+
name?: string | undefined;
|
|
284
|
+
order?: number;
|
|
285
|
+
collapsed?: boolean;
|
|
286
|
+
constructor(data?: IDisplayAttribute);
|
|
287
|
+
init(_data?: any): void;
|
|
288
|
+
static fromJS(data: any): DisplayAttribute;
|
|
289
|
+
toJSON(data?: any): any;
|
|
290
|
+
}
|
|
291
|
+
export interface IDisplayAttribute {
|
|
292
|
+
description?: string | undefined;
|
|
293
|
+
group?: string[] | undefined;
|
|
294
|
+
name?: string | undefined;
|
|
295
|
+
order?: number;
|
|
296
|
+
collapsed?: boolean;
|
|
297
|
+
}
|
|
298
|
+
export declare class MetaData implements IMetaData {
|
|
299
|
+
name?: string | undefined;
|
|
300
|
+
macroName?: string | undefined;
|
|
301
|
+
group?: string | undefined;
|
|
302
|
+
frozen?: boolean;
|
|
303
|
+
constructor(data?: IMetaData);
|
|
304
|
+
init(_data?: any): void;
|
|
305
|
+
static fromJS(data: any): MetaData;
|
|
306
|
+
toJSON(data?: any): any;
|
|
307
|
+
}
|
|
308
|
+
export interface IMetaData {
|
|
309
|
+
name?: string | undefined;
|
|
310
|
+
macroName?: string | undefined;
|
|
311
|
+
group?: string | undefined;
|
|
312
|
+
frozen?: boolean;
|
|
313
|
+
}
|
|
314
|
+
export declare class ExternalParameter implements IExternalParameter {
|
|
315
|
+
name?: string | undefined;
|
|
316
|
+
constructor(data?: IExternalParameter);
|
|
317
|
+
init(_data?: any): void;
|
|
318
|
+
static fromJS(data: any): ExternalParameter;
|
|
319
|
+
toJSON(data?: any): any;
|
|
320
|
+
}
|
|
321
|
+
export interface IExternalParameter {
|
|
322
|
+
name?: string | undefined;
|
|
323
|
+
}
|
|
324
|
+
export declare class ButtonControl extends Setting implements IButtonControl {
|
|
325
|
+
invokeMethod?: boolean;
|
|
326
|
+
constructor(data?: IButtonControl);
|
|
327
|
+
init(_data?: any): void;
|
|
328
|
+
static fromJS(data: any): ButtonControl;
|
|
329
|
+
toJSON(data?: any): any;
|
|
330
|
+
}
|
|
331
|
+
export interface IButtonControl extends ISetting {
|
|
332
|
+
invokeMethod?: boolean;
|
|
333
|
+
}
|
|
334
|
+
export declare class ButtonsControl extends Setting implements IButtonsControl {
|
|
335
|
+
availableValues?: AvailableValue[] | undefined;
|
|
336
|
+
selectedIndex?: number;
|
|
337
|
+
invokeMethod?: boolean;
|
|
338
|
+
constructor(data?: IButtonsControl);
|
|
339
|
+
init(_data?: any): void;
|
|
340
|
+
static fromJS(data: any): ButtonsControl;
|
|
341
|
+
toJSON(data?: any): any;
|
|
342
|
+
}
|
|
343
|
+
export interface IButtonsControl extends ISetting {
|
|
344
|
+
availableValues?: AvailableValue[] | undefined;
|
|
345
|
+
selectedIndex?: number;
|
|
346
|
+
invokeMethod?: boolean;
|
|
347
|
+
}
|
|
348
|
+
export declare class AvailableValue implements IAvailableValue {
|
|
349
|
+
name?: string | undefined;
|
|
350
|
+
description?: string | undefined;
|
|
351
|
+
constructor(data?: IAvailableValue);
|
|
352
|
+
init(_data?: any): void;
|
|
353
|
+
static fromJS(data: any): AvailableValue;
|
|
354
|
+
toJSON(data?: any): any;
|
|
355
|
+
}
|
|
356
|
+
export interface IAvailableValue {
|
|
357
|
+
name?: string | undefined;
|
|
358
|
+
description?: string | undefined;
|
|
359
|
+
}
|
|
360
|
+
export declare class CheckBoxControl extends Setting implements ICheckBoxControl {
|
|
361
|
+
boolValue?: boolean | undefined;
|
|
362
|
+
constructor(data?: ICheckBoxControl);
|
|
363
|
+
init(_data?: any): void;
|
|
364
|
+
static fromJS(data: any): CheckBoxControl;
|
|
365
|
+
toJSON(data?: any): any;
|
|
366
|
+
}
|
|
367
|
+
export interface ICheckBoxControl extends ISetting {
|
|
368
|
+
boolValue?: boolean | undefined;
|
|
369
|
+
}
|
|
370
|
+
export declare class DataGridReferenceControl extends Setting implements IDataGridReferenceControl {
|
|
371
|
+
constructor(data?: IDataGridReferenceControl);
|
|
372
|
+
init(_data?: any): void;
|
|
373
|
+
static fromJS(data: any): DataGridReferenceControl;
|
|
374
|
+
toJSON(data?: any): any;
|
|
375
|
+
}
|
|
376
|
+
export declare type IDataGridReferenceControl = ISetting;
|
|
377
|
+
export declare class DataGridControl extends Setting implements IDataGridControl {
|
|
378
|
+
items?: Setting[][] | undefined;
|
|
379
|
+
fixedSize?: boolean;
|
|
380
|
+
constructor(data?: IDataGridControl);
|
|
381
|
+
init(_data?: any): void;
|
|
382
|
+
static fromJS(data: any): DataGridControl;
|
|
383
|
+
toJSON(data?: any): any;
|
|
384
|
+
}
|
|
385
|
+
export interface IDataGridControl extends ISetting {
|
|
386
|
+
items?: Setting[][] | undefined;
|
|
387
|
+
fixedSize?: boolean;
|
|
388
|
+
}
|
|
389
|
+
export declare class TextBoxControl extends Setting implements ITextBoxControl {
|
|
390
|
+
stringValue?: string | undefined;
|
|
391
|
+
constructor(data?: ITextBoxControl);
|
|
392
|
+
init(_data?: any): void;
|
|
393
|
+
static fromJS(data: any): TextBoxControl;
|
|
394
|
+
toJSON(data?: any): any;
|
|
395
|
+
}
|
|
396
|
+
export interface ITextBoxControl extends ISetting {
|
|
397
|
+
stringValue?: string | undefined;
|
|
398
|
+
}
|
|
399
|
+
export declare class ComboBoxControl extends TextBoxControl implements IComboBoxControl {
|
|
400
|
+
suggestedValues?: string[] | undefined;
|
|
401
|
+
constructor(data?: IComboBoxControl);
|
|
402
|
+
init(_data?: any): void;
|
|
403
|
+
static fromJS(data: any): ComboBoxControl;
|
|
404
|
+
toJSON(data?: any): any;
|
|
405
|
+
}
|
|
406
|
+
export interface IComboBoxControl extends ITextBoxControl {
|
|
407
|
+
suggestedValues?: string[] | undefined;
|
|
408
|
+
}
|
|
409
|
+
export declare class FilePathControl extends Setting implements IFilePathControl {
|
|
410
|
+
stringValue?: string | undefined;
|
|
411
|
+
fileExtension?: string | undefined;
|
|
412
|
+
constructor(data?: IFilePathControl);
|
|
413
|
+
init(_data?: any): void;
|
|
414
|
+
static fromJS(data: any): FilePathControl;
|
|
415
|
+
toJSON(data?: any): any;
|
|
416
|
+
}
|
|
417
|
+
export interface IFilePathControl extends ISetting {
|
|
418
|
+
stringValue?: string | undefined;
|
|
419
|
+
fileExtension?: string | undefined;
|
|
420
|
+
}
|
|
421
|
+
export declare class DirectoryPathControl extends Setting implements IDirectoryPathControl {
|
|
422
|
+
stringValue?: string | undefined;
|
|
423
|
+
constructor(data?: IDirectoryPathControl);
|
|
424
|
+
init(_data?: any): void;
|
|
425
|
+
static fromJS(data: any): DirectoryPathControl;
|
|
426
|
+
toJSON(data?: any): any;
|
|
427
|
+
}
|
|
428
|
+
export interface IDirectoryPathControl extends ISetting {
|
|
429
|
+
stringValue?: string | undefined;
|
|
430
|
+
}
|
|
431
|
+
export declare class EnabledControl extends Setting implements IEnabledControl {
|
|
432
|
+
isEnabled?: boolean | undefined;
|
|
433
|
+
value?: Setting | undefined;
|
|
434
|
+
constructor(data?: IEnabledControl);
|
|
435
|
+
init(_data?: any): void;
|
|
436
|
+
static fromJS(data: any): EnabledControl;
|
|
437
|
+
toJSON(data?: any): any;
|
|
438
|
+
}
|
|
439
|
+
export interface IEnabledControl extends ISetting {
|
|
440
|
+
isEnabled?: boolean | undefined;
|
|
441
|
+
value?: Setting | undefined;
|
|
442
|
+
}
|
|
443
|
+
export declare class DropdownControl extends Setting implements IDropdownControl {
|
|
444
|
+
availableValues?: AvailableValue[] | undefined;
|
|
445
|
+
selectedIndex?: number;
|
|
446
|
+
constructor(data?: IDropdownControl);
|
|
447
|
+
init(_data?: any): void;
|
|
448
|
+
static fromJS(data: any): DropdownControl;
|
|
449
|
+
toJSON(data?: any): any;
|
|
450
|
+
}
|
|
451
|
+
export interface IDropdownControl extends ISetting {
|
|
452
|
+
availableValues?: AvailableValue[] | undefined;
|
|
453
|
+
selectedIndex?: number;
|
|
454
|
+
}
|
|
455
|
+
export declare class MultiSelectControl extends Setting implements IMultiSelectControl {
|
|
456
|
+
availableValues?: AvailableValue[] | undefined;
|
|
457
|
+
selectedIndex?: number[] | undefined;
|
|
458
|
+
constructor(data?: IMultiSelectControl);
|
|
459
|
+
init(_data?: any): void;
|
|
460
|
+
static fromJS(data: any): MultiSelectControl;
|
|
461
|
+
toJSON(data?: any): any;
|
|
462
|
+
}
|
|
463
|
+
export interface IMultiSelectControl extends ISetting {
|
|
464
|
+
availableValues?: AvailableValue[] | undefined;
|
|
465
|
+
selectedIndex?: number[] | undefined;
|
|
466
|
+
}
|
|
467
|
+
export declare class PasswordControl extends Setting implements IPasswordControl {
|
|
468
|
+
password?: string | undefined;
|
|
469
|
+
constructor(data?: IPasswordControl);
|
|
470
|
+
init(_data?: any): void;
|
|
471
|
+
static fromJS(data: any): PasswordControl;
|
|
472
|
+
toJSON(data?: any): any;
|
|
473
|
+
}
|
|
474
|
+
export interface IPasswordControl extends ISetting {
|
|
475
|
+
password?: string | undefined;
|
|
476
|
+
}
|
|
477
|
+
export declare class PictureControl extends Setting implements IPictureControl {
|
|
478
|
+
description?: string | undefined;
|
|
479
|
+
mimeType?: string | undefined;
|
|
480
|
+
resource?: Resource | undefined;
|
|
481
|
+
constructor(data?: IPictureControl);
|
|
482
|
+
init(_data?: any): void;
|
|
483
|
+
static fromJS(data: any): PictureControl;
|
|
484
|
+
toJSON(data?: any): any;
|
|
485
|
+
}
|
|
486
|
+
export interface IPictureControl extends ISetting {
|
|
487
|
+
description?: string | undefined;
|
|
488
|
+
mimeType?: string | undefined;
|
|
489
|
+
resource?: Resource | undefined;
|
|
490
|
+
}
|
|
491
|
+
export declare class PluginTypeSelectorControl extends Setting implements IPluginTypeSelectorControl {
|
|
492
|
+
availableValues: AvailableValue[];
|
|
493
|
+
selectedIndex?: number;
|
|
494
|
+
constructor(data?: IPluginTypeSelectorControl);
|
|
495
|
+
init(_data?: any): void;
|
|
496
|
+
static fromJS(data: any): PluginTypeSelectorControl;
|
|
497
|
+
toJSON(data?: any): any;
|
|
498
|
+
}
|
|
499
|
+
export interface IPluginTypeSelectorControl extends ISetting {
|
|
500
|
+
availableValues: AvailableValue[];
|
|
501
|
+
selectedIndex?: number;
|
|
502
|
+
}
|
|
503
|
+
export declare class Resource implements IResource {
|
|
504
|
+
source?: string | undefined;
|
|
505
|
+
constructor(data?: IResource);
|
|
506
|
+
init(_data?: any): void;
|
|
507
|
+
static fromJS(data: any): Resource;
|
|
508
|
+
toJSON(data?: any): any;
|
|
509
|
+
}
|
|
510
|
+
export interface IResource {
|
|
511
|
+
source?: string | undefined;
|
|
512
|
+
}
|
|
513
|
+
export declare class FileDescriptor implements IFileDescriptor {
|
|
514
|
+
numberOfChunks: number;
|
|
515
|
+
fileSize: number;
|
|
516
|
+
chunkSize: number;
|
|
517
|
+
constructor(fileSize: number, chunkSize: number);
|
|
518
|
+
init(_data?: any): void;
|
|
519
|
+
static fromJS(data: any): FileDescriptor;
|
|
520
|
+
toJSON(data?: any): any;
|
|
521
|
+
}
|
|
522
|
+
export interface IFileDescriptor {
|
|
523
|
+
numberOfChunks: number;
|
|
524
|
+
fileSize: number;
|
|
525
|
+
chunkSize: number;
|
|
526
|
+
}
|
|
527
|
+
export declare class ComponentSettings extends ComponentSettingsBase implements IComponentSettings {
|
|
528
|
+
settings?: Setting[] | undefined;
|
|
529
|
+
constructor(data?: IComponentSettings);
|
|
530
|
+
init(_data?: any): void;
|
|
531
|
+
static fromJS(data: any): ComponentSettings;
|
|
532
|
+
toJSON(data?: any): any;
|
|
533
|
+
}
|
|
534
|
+
export interface IComponentSettings extends IComponentSettingsBase {
|
|
535
|
+
settings?: Setting[] | undefined;
|
|
536
|
+
}
|
|
537
|
+
export declare class ListItemType implements IListItemType {
|
|
538
|
+
typeName?: string | undefined;
|
|
539
|
+
typeDisplay?: DisplayAttribute | undefined;
|
|
540
|
+
constructor(data?: IListItemType);
|
|
541
|
+
init(_data?: any): void;
|
|
542
|
+
static fromJS(data: any): ListItemType;
|
|
543
|
+
toJSON(data?: any): any;
|
|
544
|
+
}
|
|
545
|
+
export interface IListItemType {
|
|
546
|
+
typeName?: string | undefined;
|
|
547
|
+
typeDisplay?: DisplayAttribute | undefined;
|
|
548
|
+
}
|
|
549
|
+
export declare class ProfileGroup implements IProfileGroup {
|
|
550
|
+
profiles?: string[] | undefined;
|
|
551
|
+
currentProfile?: string | undefined;
|
|
552
|
+
groupName?: string | undefined;
|
|
553
|
+
constructor(data?: IProfileGroup);
|
|
554
|
+
init(_data?: any): void;
|
|
555
|
+
static fromJS(data: any): ProfileGroup;
|
|
556
|
+
toJSON(data?: any): any;
|
|
557
|
+
}
|
|
558
|
+
export interface IProfileGroup {
|
|
559
|
+
profiles?: string[] | undefined;
|
|
560
|
+
currentProfile?: string | undefined;
|
|
561
|
+
groupName?: string | undefined;
|
|
562
|
+
}
|
|
563
|
+
export declare class RepositoryPackageReference implements IRepositoryPackageReference {
|
|
564
|
+
name?: string | undefined;
|
|
565
|
+
version?: string | undefined;
|
|
566
|
+
repository?: string | undefined;
|
|
567
|
+
path?: string | undefined;
|
|
568
|
+
constructor(data?: IRepositoryPackageReference);
|
|
569
|
+
init(_data?: any): void;
|
|
570
|
+
static fromJS(data: any): RepositoryPackageReference;
|
|
571
|
+
toJSON(data?: any): any;
|
|
572
|
+
}
|
|
573
|
+
export interface IRepositoryPackageReference {
|
|
574
|
+
name?: string | undefined;
|
|
575
|
+
version?: string | undefined;
|
|
576
|
+
repository?: string | undefined;
|
|
577
|
+
path?: string | undefined;
|
|
578
|
+
}
|
|
579
|
+
export declare class RepositoryPackageDefinition extends RepositoryPackageReference implements IRepositoryPackageDefinition {
|
|
580
|
+
tags?: string[] | undefined;
|
|
581
|
+
constructor(data?: IRepositoryPackageDefinition);
|
|
582
|
+
init(_data?: any): void;
|
|
583
|
+
static fromJS(data: any): RepositoryPackageDefinition;
|
|
584
|
+
toJSON(data?: any): any;
|
|
585
|
+
}
|
|
586
|
+
export interface IRepositoryPackageDefinition extends IRepositoryPackageReference {
|
|
587
|
+
tags?: string[] | undefined;
|
|
588
|
+
}
|
|
589
|
+
export declare class RepositorySettingsPackageDefinition extends RepositoryPackageDefinition implements IRepositorySettingsPackageDefinition {
|
|
590
|
+
constructor(data?: IRepositorySettingsPackageDefinition);
|
|
591
|
+
init(_data?: any): void;
|
|
592
|
+
static fromJS(data: any): RepositorySettingsPackageDefinition;
|
|
593
|
+
toJSON(data?: any): any;
|
|
594
|
+
}
|
|
595
|
+
export declare type IRepositorySettingsPackageDefinition = IRepositoryPackageDefinition;
|
|
596
|
+
export declare class SettingsTapPackage implements ISettingsTapPackage {
|
|
597
|
+
name?: string | undefined;
|
|
598
|
+
version?: string | undefined;
|
|
599
|
+
tags?: string | undefined;
|
|
600
|
+
group?: string | undefined;
|
|
601
|
+
owner?: string | undefined;
|
|
602
|
+
infoLink?: string | undefined;
|
|
603
|
+
description?: string | undefined;
|
|
604
|
+
files?: string[] | undefined;
|
|
605
|
+
settingsTypes?: string[] | undefined;
|
|
606
|
+
constructor(data?: ISettingsTapPackage);
|
|
607
|
+
init(_data?: any): void;
|
|
608
|
+
static fromJS(data: any): SettingsTapPackage;
|
|
609
|
+
toJSON(data?: any): any;
|
|
610
|
+
}
|
|
611
|
+
export interface ISettingsTapPackage {
|
|
612
|
+
name?: string | undefined;
|
|
613
|
+
version?: string | undefined;
|
|
614
|
+
tags?: string | undefined;
|
|
615
|
+
group?: string | undefined;
|
|
616
|
+
owner?: string | undefined;
|
|
617
|
+
infoLink?: string | undefined;
|
|
618
|
+
description?: string | undefined;
|
|
619
|
+
files?: string[] | undefined;
|
|
620
|
+
settingsTypes?: string[] | undefined;
|
|
621
|
+
}
|
|
622
|
+
export declare class SessionEventArgs implements ISessionEventArgs {
|
|
623
|
+
sessionId?: string;
|
|
624
|
+
protected _discriminator: string;
|
|
625
|
+
constructor(data?: ISessionEventArgs);
|
|
626
|
+
init(_data?: any): void;
|
|
627
|
+
static fromJS(data: any): SessionEventArgs;
|
|
628
|
+
toJSON(data?: any): any;
|
|
629
|
+
}
|
|
630
|
+
export interface ISessionEventArgs {
|
|
631
|
+
sessionId?: string;
|
|
632
|
+
}
|
|
633
|
+
export declare class SessionStartInitiated extends SessionEventArgs implements ISessionStartInitiated {
|
|
634
|
+
constructor(data?: ISessionStartInitiated);
|
|
635
|
+
init(_data?: any): void;
|
|
636
|
+
static fromJS(data: any): SessionStartInitiated;
|
|
637
|
+
toJSON(data?: any): any;
|
|
638
|
+
}
|
|
639
|
+
export declare type ISessionStartInitiated = ISessionEventArgs;
|
|
640
|
+
export declare class SessionStarted extends SessionEventArgs implements ISessionStarted {
|
|
641
|
+
session?: Session | undefined;
|
|
642
|
+
constructor(data?: ISessionStarted);
|
|
643
|
+
init(_data?: any): void;
|
|
644
|
+
static fromJS(data: any): SessionStarted;
|
|
645
|
+
toJSON(data?: any): any;
|
|
646
|
+
}
|
|
647
|
+
export interface ISessionStarted extends ISessionEventArgs {
|
|
648
|
+
session?: Session | undefined;
|
|
649
|
+
}
|
|
650
|
+
export declare class SessionStartFailed extends SessionEventArgs implements ISessionStartFailed {
|
|
651
|
+
reason?: string | undefined;
|
|
652
|
+
constructor(data?: ISessionStartFailed);
|
|
653
|
+
init(_data?: any): void;
|
|
654
|
+
static fromJS(data: any): SessionStartFailed;
|
|
655
|
+
toJSON(data?: any): any;
|
|
656
|
+
}
|
|
657
|
+
export interface ISessionStartFailed extends ISessionEventArgs {
|
|
658
|
+
reason?: string | undefined;
|
|
659
|
+
}
|
|
660
|
+
export declare class SessionShutdownInitiated extends SessionEventArgs implements ISessionShutdownInitiated {
|
|
661
|
+
constructor(data?: ISessionShutdownInitiated);
|
|
662
|
+
init(_data?: any): void;
|
|
663
|
+
static fromJS(data: any): SessionShutdownInitiated;
|
|
664
|
+
toJSON(data?: any): any;
|
|
665
|
+
}
|
|
666
|
+
export declare type ISessionShutdownInitiated = ISessionEventArgs;
|
|
667
|
+
export declare class SessionShutdown extends SessionEventArgs implements ISessionShutdown {
|
|
668
|
+
constructor(data?: ISessionShutdown);
|
|
669
|
+
init(_data?: any): void;
|
|
670
|
+
static fromJS(data: any): SessionShutdown;
|
|
671
|
+
toJSON(data?: any): any;
|
|
672
|
+
}
|
|
673
|
+
export declare type ISessionShutdown = ISessionEventArgs;
|
|
674
|
+
export declare class SessionShutdownFailed extends SessionEventArgs implements ISessionShutdownFailed {
|
|
675
|
+
reason?: string | undefined;
|
|
676
|
+
constructor(data?: ISessionShutdownFailed);
|
|
677
|
+
init(_data?: any): void;
|
|
678
|
+
static fromJS(data: any): SessionShutdownFailed;
|
|
679
|
+
toJSON(data?: any): any;
|
|
680
|
+
}
|
|
681
|
+
export interface ISessionShutdownFailed extends ISessionEventArgs {
|
|
682
|
+
reason?: string | undefined;
|
|
683
|
+
}
|
|
684
|
+
export declare class SessionInactivityLimitHit extends SessionEventArgs implements ISessionInactivityLimitHit {
|
|
685
|
+
constructor(data?: ISessionInactivityLimitHit);
|
|
686
|
+
init(_data?: any): void;
|
|
687
|
+
static fromJS(data: any): SessionInactivityLimitHit;
|
|
688
|
+
toJSON(data?: any): any;
|
|
689
|
+
}
|
|
690
|
+
export declare type ISessionInactivityLimitHit = ISessionEventArgs;
|
|
691
|
+
export declare class ImageEventArgs implements IImageEventArgs {
|
|
692
|
+
imageId?: string | undefined;
|
|
693
|
+
protected _discriminator: string;
|
|
694
|
+
constructor(data?: IImageEventArgs);
|
|
695
|
+
init(_data?: any): void;
|
|
696
|
+
static fromJS(data: any): ImageEventArgs;
|
|
697
|
+
toJSON(data?: any): any;
|
|
698
|
+
}
|
|
699
|
+
export interface IImageEventArgs {
|
|
700
|
+
imageId?: string | undefined;
|
|
701
|
+
}
|
|
702
|
+
export declare class ImageCreating extends ImageEventArgs implements IImageCreating {
|
|
703
|
+
constructor(data?: IImageCreating);
|
|
704
|
+
init(_data?: any): void;
|
|
705
|
+
static fromJS(data: any): ImageCreating;
|
|
706
|
+
toJSON(data?: any): any;
|
|
707
|
+
}
|
|
708
|
+
export declare type IImageCreating = IImageEventArgs;
|
|
709
|
+
export declare class ImageCreated extends ImageEventArgs implements IImageCreated {
|
|
710
|
+
image?: Image | undefined;
|
|
711
|
+
constructor(data?: IImageCreated);
|
|
712
|
+
init(_data?: any): void;
|
|
713
|
+
static fromJS(data: any): ImageCreated;
|
|
714
|
+
toJSON(data?: any): any;
|
|
715
|
+
}
|
|
716
|
+
export interface IImageCreated extends IImageEventArgs {
|
|
717
|
+
image?: Image | undefined;
|
|
718
|
+
}
|
|
719
|
+
export declare class ImageCreationFailed extends ImageEventArgs implements IImageCreationFailed {
|
|
720
|
+
reason?: string | undefined;
|
|
721
|
+
constructor(data?: IImageCreationFailed);
|
|
722
|
+
init(_data?: any): void;
|
|
723
|
+
static fromJS(data: any): ImageCreationFailed;
|
|
724
|
+
toJSON(data?: any): any;
|
|
725
|
+
}
|
|
726
|
+
export interface IImageCreationFailed extends IImageEventArgs {
|
|
727
|
+
reason?: string | undefined;
|
|
728
|
+
}
|
|
729
|
+
export interface FileParameter {
|
|
730
|
+
file: any;
|
|
731
|
+
fileName: string;
|
|
732
|
+
}
|
|
733
|
+
export interface FileResponse {
|
|
734
|
+
data: Blob;
|
|
735
|
+
status: number;
|
|
736
|
+
fileName?: string;
|
|
737
|
+
headers?: {
|
|
738
|
+
[name: string]: any;
|
|
739
|
+
};
|
|
740
|
+
}
|
|
741
|
+
export declare class ApiException extends Error {
|
|
742
|
+
message: string;
|
|
743
|
+
status: number;
|
|
744
|
+
response: string;
|
|
745
|
+
headers: {
|
|
746
|
+
[key: string]: any;
|
|
747
|
+
};
|
|
748
|
+
result: any;
|
|
749
|
+
constructor(message: string, status: number, response: string, headers: {
|
|
750
|
+
[key: string]: any;
|
|
751
|
+
}, result: any);
|
|
752
|
+
protected isApiException: boolean;
|
|
753
|
+
static isApiException(obj: any): obj is ApiException;
|
|
754
|
+
}
|
|
755
|
+
export declare class LogList implements ILogList {
|
|
756
|
+
logs?: LogEntry[] | undefined;
|
|
757
|
+
offset?: number;
|
|
758
|
+
filteredCount?: number;
|
|
759
|
+
totalCount?: {
|
|
760
|
+
[key: string]: number;
|
|
761
|
+
} | undefined;
|
|
762
|
+
constructor(data?: ILogList);
|
|
763
|
+
init(_data?: any): void;
|
|
764
|
+
static fromJS(data: any): LogList;
|
|
765
|
+
toJSON(data?: any): any;
|
|
766
|
+
}
|
|
767
|
+
export interface ILogList {
|
|
768
|
+
logs?: LogEntry[] | undefined;
|
|
769
|
+
offset?: number;
|
|
770
|
+
filteredCount?: number;
|
|
771
|
+
totalCount?: {
|
|
772
|
+
[key: string]: number;
|
|
773
|
+
} | undefined;
|
|
774
|
+
}
|
|
775
|
+
export declare class LogEntry implements ILogEntry {
|
|
776
|
+
source?: string | undefined;
|
|
777
|
+
timestamp?: number;
|
|
778
|
+
message?: string | undefined;
|
|
779
|
+
level?: number;
|
|
780
|
+
durationNS?: number;
|
|
781
|
+
constructor(data?: ILogEntry);
|
|
782
|
+
init(_data?: any): void;
|
|
783
|
+
static fromJS(data: any): LogEntry;
|
|
784
|
+
toJSON(data?: any): any;
|
|
785
|
+
}
|
|
786
|
+
export interface ILogEntry {
|
|
787
|
+
source?: string | undefined;
|
|
788
|
+
timestamp?: number;
|
|
789
|
+
message?: string | undefined;
|
|
790
|
+
level?: number;
|
|
791
|
+
durationNS?: number;
|
|
792
|
+
}
|
|
793
|
+
export declare class MissingLicenseResponse implements IMissingLicenseResponse {
|
|
794
|
+
message?: string | undefined;
|
|
795
|
+
constructor(data?: IMissingLicenseResponse);
|
|
796
|
+
init(_data?: any): void;
|
|
797
|
+
static fromJS(data: any): MissingLicenseResponse;
|
|
798
|
+
toJSON(data?: any): any;
|
|
799
|
+
}
|
|
800
|
+
export interface IMissingLicenseResponse {
|
|
801
|
+
message?: string | undefined;
|
|
802
|
+
}
|
|
803
|
+
export declare class RunStatus implements IRunStatus {
|
|
804
|
+
sessionId?: string;
|
|
805
|
+
verdict?: Verdict;
|
|
806
|
+
testPlanRunId?: string | undefined;
|
|
807
|
+
failedToStart?: boolean;
|
|
808
|
+
executionState?: ExecutionState;
|
|
809
|
+
executingSteps?: string[] | undefined;
|
|
810
|
+
constructor(data?: IRunStatus);
|
|
811
|
+
init(_data?: any): void;
|
|
812
|
+
static fromJS(data: any): RunStatus;
|
|
813
|
+
toJSON(data?: any): any;
|
|
814
|
+
}
|
|
815
|
+
export interface IRunStatus {
|
|
816
|
+
sessionId?: string;
|
|
817
|
+
verdict?: Verdict;
|
|
818
|
+
testPlanRunId?: string | undefined;
|
|
819
|
+
failedToStart?: boolean;
|
|
820
|
+
executionState?: ExecutionState;
|
|
821
|
+
executingSteps?: string[] | undefined;
|
|
822
|
+
}
|
|
823
|
+
/** Enumeration containing the verdict types used for Verdict and Verdict properties. */
|
|
824
|
+
export declare enum Verdict {
|
|
825
|
+
NotSet = "NotSet",
|
|
826
|
+
Pass = "Pass",
|
|
827
|
+
Inconclusive = "Inconclusive",
|
|
828
|
+
Fail = "Fail",
|
|
829
|
+
Aborted = "Aborted",
|
|
830
|
+
Error = "Error"
|
|
831
|
+
}
|
|
832
|
+
export declare enum ExecutionState {
|
|
833
|
+
Idle = "Idle",
|
|
834
|
+
Executing = "Executing",
|
|
835
|
+
Breaking = "Breaking",
|
|
836
|
+
Aborting = "Aborting",
|
|
837
|
+
WaitingForUserInput = "WaitingForUserInput"
|
|
838
|
+
}
|
|
839
|
+
export declare class TestPlan implements ITestPlan {
|
|
840
|
+
childTestSteps?: TestStep[] | undefined;
|
|
841
|
+
settings?: Setting[] | undefined;
|
|
842
|
+
isOpen?: boolean;
|
|
843
|
+
propertiesToInclude?: string[] | undefined;
|
|
844
|
+
id?: string;
|
|
845
|
+
constructor(data?: ITestPlan);
|
|
846
|
+
init(_data?: any): void;
|
|
847
|
+
static fromJS(data: any): TestPlan;
|
|
848
|
+
toJSON(data?: any): any;
|
|
849
|
+
}
|
|
850
|
+
export interface ITestPlan {
|
|
851
|
+
childTestSteps?: TestStep[] | undefined;
|
|
852
|
+
settings?: Setting[] | undefined;
|
|
853
|
+
isOpen?: boolean;
|
|
854
|
+
propertiesToInclude?: string[] | undefined;
|
|
855
|
+
id?: string;
|
|
856
|
+
}
|
|
857
|
+
export declare class TestStep implements ITestStep {
|
|
858
|
+
id?: string;
|
|
859
|
+
childTestSteps?: TestStep[] | undefined;
|
|
860
|
+
isChildTestStepsReadOnly?: boolean;
|
|
861
|
+
isReadOnly?: boolean;
|
|
862
|
+
settings?: Setting[] | undefined;
|
|
863
|
+
typeName?: string | undefined;
|
|
864
|
+
typeDisplay?: DisplayAttribute | undefined;
|
|
865
|
+
name?: string | undefined;
|
|
866
|
+
expandedName?: string | undefined;
|
|
867
|
+
protected _discriminator: string;
|
|
868
|
+
constructor(data?: ITestStep);
|
|
869
|
+
init(_data?: any): void;
|
|
870
|
+
static fromJS(data: any): TestStep;
|
|
871
|
+
toJSON(data?: any): any;
|
|
872
|
+
}
|
|
873
|
+
export interface ITestStep {
|
|
874
|
+
id?: string;
|
|
875
|
+
childTestSteps?: TestStep[] | undefined;
|
|
876
|
+
isChildTestStepsReadOnly?: boolean;
|
|
877
|
+
isReadOnly?: boolean;
|
|
878
|
+
settings?: Setting[] | undefined;
|
|
879
|
+
typeName?: string | undefined;
|
|
880
|
+
typeDisplay?: DisplayAttribute | undefined;
|
|
881
|
+
name?: string | undefined;
|
|
882
|
+
expandedName?: string | undefined;
|
|
883
|
+
}
|
|
884
|
+
export declare class TestStepType extends TestStep implements ITestStepType {
|
|
885
|
+
availableChildrenTypes?: string[] | undefined;
|
|
886
|
+
constructor(data?: ITestStepType);
|
|
887
|
+
init(_data?: any): void;
|
|
888
|
+
static fromJS(data: any): TestStepType;
|
|
889
|
+
toJSON(data?: any): any;
|
|
890
|
+
}
|
|
891
|
+
export interface ITestStepType extends ITestStep {
|
|
892
|
+
availableChildrenTypes?: string[] | undefined;
|
|
893
|
+
}
|
|
894
|
+
export declare class TestStepCopy extends TestStep implements ITestStepCopy {
|
|
895
|
+
constructor(data?: ITestStepCopy);
|
|
896
|
+
init(_data?: any): void;
|
|
897
|
+
static fromJS(data: any): TestStepCopy;
|
|
898
|
+
toJSON(data?: any): any;
|
|
899
|
+
}
|
|
900
|
+
export declare type ITestStepCopy = ITestStep;
|
|
901
|
+
export declare class TestStepValidationError implements ITestStepValidationError {
|
|
902
|
+
stepId?: string | undefined;
|
|
903
|
+
validationErrors?: ValidationError[] | undefined;
|
|
904
|
+
constructor(data?: ITestStepValidationError);
|
|
905
|
+
init(_data?: any): void;
|
|
906
|
+
static fromJS(data: any): TestStepValidationError;
|
|
907
|
+
toJSON(data?: any): any;
|
|
908
|
+
}
|
|
909
|
+
export interface ITestStepValidationError {
|
|
910
|
+
stepId?: string | undefined;
|
|
911
|
+
validationErrors?: ValidationError[] | undefined;
|
|
912
|
+
}
|
|
913
|
+
export declare class ValidationError implements IValidationError {
|
|
914
|
+
propertyName?: string | undefined;
|
|
915
|
+
error?: string | undefined;
|
|
916
|
+
constructor(data?: IValidationError);
|
|
917
|
+
init(_data?: any): void;
|
|
918
|
+
static fromJS(data: any): ValidationError;
|
|
919
|
+
toJSON(data?: any): any;
|
|
920
|
+
}
|
|
921
|
+
export interface IValidationError {
|
|
922
|
+
propertyName?: string | undefined;
|
|
923
|
+
error?: string | undefined;
|
|
924
|
+
}
|
|
925
|
+
export declare class CommonSettings implements ICommonSettings {
|
|
926
|
+
step?: TestStep | undefined;
|
|
927
|
+
stepIds?: string[] | undefined;
|
|
928
|
+
constructor(data?: ICommonSettings);
|
|
929
|
+
init(_data?: any): void;
|
|
930
|
+
static fromJS(data: any): CommonSettings;
|
|
931
|
+
toJSON(data?: any): any;
|
|
932
|
+
}
|
|
933
|
+
export interface ICommonSettings {
|
|
934
|
+
step?: TestStep | undefined;
|
|
935
|
+
stepIds?: string[] | undefined;
|
|
936
|
+
}
|
|
937
|
+
export declare class CommonContext implements ICommonContext {
|
|
938
|
+
contextItems?: Setting[] | undefined;
|
|
939
|
+
stepIds?: string[] | undefined;
|
|
940
|
+
constructor(data?: ICommonContext);
|
|
941
|
+
init(_data?: any): void;
|
|
942
|
+
static fromJS(data: any): CommonContext;
|
|
943
|
+
toJSON(data?: any): any;
|
|
944
|
+
}
|
|
945
|
+
export interface ICommonContext {
|
|
946
|
+
contextItems?: Setting[] | undefined;
|
|
947
|
+
stepIds?: string[] | undefined;
|
|
948
|
+
}
|
|
949
|
+
export declare class Interaction implements IInteraction {
|
|
950
|
+
timeout?: string | undefined;
|
|
951
|
+
title?: string | undefined;
|
|
952
|
+
modal?: boolean | undefined;
|
|
953
|
+
settings?: Setting[] | undefined;
|
|
954
|
+
id?: string;
|
|
955
|
+
constructor(data?: IInteraction);
|
|
956
|
+
init(_data?: any): void;
|
|
957
|
+
static fromJS(data: any): Interaction;
|
|
958
|
+
toJSON(data?: any): any;
|
|
959
|
+
}
|
|
960
|
+
export interface IInteraction {
|
|
961
|
+
timeout?: string | undefined;
|
|
962
|
+
title?: string | undefined;
|
|
963
|
+
modal?: boolean | undefined;
|
|
964
|
+
settings?: Setting[] | undefined;
|
|
965
|
+
id?: string;
|
|
966
|
+
}
|
|
967
|
+
export declare class InstalledFile implements IInstalledFile {
|
|
968
|
+
relativePath?: string | undefined;
|
|
969
|
+
tapPackage?: string | undefined;
|
|
970
|
+
constructor(data?: IInstalledFile);
|
|
971
|
+
init(_data?: any): void;
|
|
972
|
+
static fromJS(data: any): InstalledFile;
|
|
973
|
+
toJSON(data?: any): any;
|
|
974
|
+
}
|
|
975
|
+
export interface IInstalledFile {
|
|
976
|
+
relativePath?: string | undefined;
|
|
977
|
+
tapPackage?: string | undefined;
|
|
978
|
+
}
|
|
979
|
+
export declare class BreakPoints implements IBreakPoints {
|
|
980
|
+
testSteps?: string[] | undefined;
|
|
981
|
+
constructor(data?: IBreakPoints);
|
|
982
|
+
init(_data?: any): void;
|
|
983
|
+
static fromJS(data: any): BreakPoints;
|
|
984
|
+
toJSON(data?: any): any;
|
|
985
|
+
}
|
|
986
|
+
export interface IBreakPoints {
|
|
987
|
+
testSteps?: string[] | undefined;
|
|
988
|
+
}
|
|
989
|
+
export declare class Parameter implements IParameter {
|
|
990
|
+
group?: string | undefined;
|
|
991
|
+
name?: string | undefined;
|
|
992
|
+
macroName?: string | undefined;
|
|
993
|
+
parentLevel?: string | undefined;
|
|
994
|
+
value?: string | undefined;
|
|
995
|
+
constructor(data?: IParameter);
|
|
996
|
+
init(_data?: any): void;
|
|
997
|
+
static fromJS(data: any): Parameter;
|
|
998
|
+
toJSON(data?: any): any;
|
|
999
|
+
}
|
|
1000
|
+
export interface IParameter {
|
|
1001
|
+
group?: string | undefined;
|
|
1002
|
+
name?: string | undefined;
|
|
1003
|
+
macroName?: string | undefined;
|
|
1004
|
+
parentLevel?: string | undefined;
|
|
1005
|
+
value?: string | undefined;
|
|
1006
|
+
}
|
|
1007
|
+
export declare class WatchDog implements IWatchDog {
|
|
1008
|
+
inactiveSeconds?: number;
|
|
1009
|
+
terminationTimeout?: number;
|
|
1010
|
+
constructor(data?: IWatchDog);
|
|
1011
|
+
init(_data?: any): void;
|
|
1012
|
+
static fromJS(data: any): WatchDog;
|
|
1013
|
+
toJSON(data?: any): any;
|
|
1014
|
+
}
|
|
1015
|
+
export interface IWatchDog {
|
|
1016
|
+
inactiveSeconds?: number;
|
|
1017
|
+
terminationTimeout?: number;
|
|
1018
|
+
}
|
|
1019
|
+
export declare type IComponentSettingsIdentifier = IComponentSettingsBase;
|
|
1020
|
+
export declare class TestRun implements ITestRun {
|
|
1021
|
+
status?: string | undefined;
|
|
1022
|
+
id?: string | undefined;
|
|
1023
|
+
verdict?: string | undefined;
|
|
1024
|
+
duration?: string | undefined;
|
|
1025
|
+
parameters?: Parameter[] | undefined;
|
|
1026
|
+
testStepRun?: TestStepRun | undefined;
|
|
1027
|
+
constructor(data?: ITestRun);
|
|
1028
|
+
init(_data?: any): void;
|
|
1029
|
+
static fromJS(data: any): TestRun;
|
|
1030
|
+
toJSON(data?: any): any;
|
|
1031
|
+
}
|
|
1032
|
+
export interface ITestRun {
|
|
1033
|
+
status?: string | undefined;
|
|
1034
|
+
id?: string | undefined;
|
|
1035
|
+
verdict?: string | undefined;
|
|
1036
|
+
duration?: string | undefined;
|
|
1037
|
+
parameters?: Parameter[] | undefined;
|
|
1038
|
+
testStepRun?: TestStepRun | undefined;
|
|
1039
|
+
}
|
|
1040
|
+
export declare class TestStepRun implements ITestStepRun {
|
|
1041
|
+
parentId?: string | undefined;
|
|
1042
|
+
testStepId?: string | undefined;
|
|
1043
|
+
testStepName?: string | undefined;
|
|
1044
|
+
constructor(data?: ITestStepRun);
|
|
1045
|
+
init(_data?: any): void;
|
|
1046
|
+
static fromJS(data: any): TestStepRun;
|
|
1047
|
+
toJSON(data?: any): any;
|
|
1048
|
+
}
|
|
1049
|
+
export interface ITestStepRun {
|
|
1050
|
+
parentId?: string | undefined;
|
|
1051
|
+
testStepId?: string | undefined;
|
|
1052
|
+
testStepName?: string | undefined;
|
|
1053
|
+
}
|
|
1054
|
+
export declare class LogEvent implements ILogEvent {
|
|
1055
|
+
source?: string | undefined;
|
|
1056
|
+
timestamp?: number;
|
|
1057
|
+
message?: string | undefined;
|
|
1058
|
+
eventType?: number;
|
|
1059
|
+
durationNS?: number;
|
|
1060
|
+
constructor(data?: ILogEvent);
|
|
1061
|
+
init(_data?: any): void;
|
|
1062
|
+
static fromJS(data: any): LogEvent;
|
|
1063
|
+
toJSON(data?: any): any;
|
|
1064
|
+
}
|
|
1065
|
+
export interface ILogEvent {
|
|
1066
|
+
source?: string | undefined;
|
|
1067
|
+
timestamp?: number;
|
|
1068
|
+
message?: string | undefined;
|
|
1069
|
+
eventType?: number;
|
|
1070
|
+
durationNS?: number;
|
|
1071
|
+
}
|
|
1072
|
+
export declare class Result implements IResult {
|
|
1073
|
+
stepRunID?: string | undefined;
|
|
1074
|
+
status?: string | undefined;
|
|
1075
|
+
name?: string | undefined;
|
|
1076
|
+
rows?: number;
|
|
1077
|
+
parent?: string | undefined;
|
|
1078
|
+
columns?: ResultColumn[] | undefined;
|
|
1079
|
+
constructor(data?: IResult);
|
|
1080
|
+
init(_data?: any): void;
|
|
1081
|
+
static fromJS(data: any): Result;
|
|
1082
|
+
toJSON(data?: any): any;
|
|
1083
|
+
}
|
|
1084
|
+
export interface IResult {
|
|
1085
|
+
stepRunID?: string | undefined;
|
|
1086
|
+
status?: string | undefined;
|
|
1087
|
+
name?: string | undefined;
|
|
1088
|
+
rows?: number;
|
|
1089
|
+
parent?: string | undefined;
|
|
1090
|
+
columns?: ResultColumn[] | undefined;
|
|
1091
|
+
}
|
|
1092
|
+
export declare class ResultColumn implements IResultColumn {
|
|
1093
|
+
name?: string | undefined;
|
|
1094
|
+
objectType?: string | undefined;
|
|
1095
|
+
data?: any[] | undefined;
|
|
1096
|
+
typeCode?: string | undefined;
|
|
1097
|
+
constructor(data?: IResultColumn);
|
|
1098
|
+
init(_data?: any): void;
|
|
1099
|
+
static fromJS(data: any): ResultColumn;
|
|
1100
|
+
toJSON(data?: any): any;
|
|
1101
|
+
}
|
|
1102
|
+
export interface IResultColumn {
|
|
1103
|
+
name?: string | undefined;
|
|
1104
|
+
objectType?: string | undefined;
|
|
1105
|
+
data?: any[] | undefined;
|
|
1106
|
+
typeCode?: string | undefined;
|
|
1107
|
+
}
|
|
1108
|
+
export declare enum SessionMetricKind {
|
|
1109
|
+
Poll = "Poll",
|
|
1110
|
+
Push = "Push",
|
|
1111
|
+
PushPoll = "PushPoll"
|
|
1112
|
+
}
|
|
1113
|
+
export declare enum SessionMetricType {
|
|
1114
|
+
Unknown = "Unknown",
|
|
1115
|
+
Double = "Double",
|
|
1116
|
+
Boolean = "Boolean",
|
|
1117
|
+
String = "String"
|
|
1118
|
+
}
|
|
1119
|
+
export declare enum MetricsPollRate {
|
|
1120
|
+
OneSecond = "OneSecond",
|
|
1121
|
+
TwoSeconds = "TwoSeconds",
|
|
1122
|
+
FiveSeconds = "FiveSeconds",
|
|
1123
|
+
TenSeconds = "TenSeconds",
|
|
1124
|
+
FifteenSeconds = "FifteenSeconds",
|
|
1125
|
+
OneMinute = "OneMinute",
|
|
1126
|
+
TwoMinutes = "TwoMinutes",
|
|
1127
|
+
FiveMinutes = "FiveMinutes",
|
|
1128
|
+
TenMinutes = "TenMinutes",
|
|
1129
|
+
FifteenMinutes = "FifteenMinutes",
|
|
1130
|
+
OneHour = "OneHour"
|
|
1131
|
+
}
|
|
1132
|
+
export declare class SessionMetricInfo implements ISessionMetricInfo {
|
|
1133
|
+
publish: boolean;
|
|
1134
|
+
kind: SessionMetricKind;
|
|
1135
|
+
type: SessionMetricType;
|
|
1136
|
+
attributes: object[];
|
|
1137
|
+
groupName: string;
|
|
1138
|
+
name: string;
|
|
1139
|
+
metricFullName: string;
|
|
1140
|
+
subjectPostfix: string;
|
|
1141
|
+
constructor(data?: ISessionMetricInfo);
|
|
1142
|
+
init(_data?: any): void;
|
|
1143
|
+
static fromJS(data: any): SessionMetricInfo;
|
|
1144
|
+
toJSON(data?: any): any;
|
|
1145
|
+
}
|
|
1146
|
+
export interface ISessionMetricInfo {
|
|
1147
|
+
publish: boolean;
|
|
1148
|
+
kind: SessionMetricKind;
|
|
1149
|
+
type: SessionMetricType;
|
|
1150
|
+
attributes: object[];
|
|
1151
|
+
groupName: string;
|
|
1152
|
+
name: string;
|
|
1153
|
+
metricFullName: string;
|
|
1154
|
+
subjectPostfix: string;
|
|
1155
|
+
}
|
|
1156
|
+
export declare class MetricsConfiguration implements IMetricsConfiguration {
|
|
1157
|
+
publishRate: MetricsPollRate;
|
|
1158
|
+
metrics: SessionMetricInfo[];
|
|
1159
|
+
constructor(data?: IMetricsConfiguration);
|
|
1160
|
+
init(_data?: any): void;
|
|
1161
|
+
static fromJS(data: any): MetricsConfiguration;
|
|
1162
|
+
toJSON(data?: any): any;
|
|
1163
|
+
}
|
|
1164
|
+
export interface IMetricsConfiguration {
|
|
1165
|
+
publishRate: MetricsPollRate;
|
|
1166
|
+
metrics: ISessionMetricInfo[];
|
|
1167
|
+
}
|
|
1168
|
+
export declare class MetricValue implements IMetricValue {
|
|
1169
|
+
time: number;
|
|
1170
|
+
value: boolean | number | string | object;
|
|
1171
|
+
constructor(data?: IMetricValue);
|
|
1172
|
+
init(_data?: any): void;
|
|
1173
|
+
static fromJS(data: any): MetricValue;
|
|
1174
|
+
toJSON(data?: any): any;
|
|
1175
|
+
}
|
|
1176
|
+
export interface IMetricValue {
|
|
1177
|
+
time: number;
|
|
1178
|
+
value: boolean | number | string | object;
|
|
1179
|
+
}
|
|
1180
|
+
export declare class SessionEvent implements ISessionEvent {
|
|
1181
|
+
eventType?: SessionEventType;
|
|
1182
|
+
sessionId?: string;
|
|
1183
|
+
protected _discriminator: string;
|
|
1184
|
+
constructor(data?: ISessionEvent);
|
|
1185
|
+
init(_data?: any): void;
|
|
1186
|
+
static fromJS(data: any): SessionEvent;
|
|
1187
|
+
toJSON(data?: any): any;
|
|
1188
|
+
}
|
|
1189
|
+
export interface ISessionEvent {
|
|
1190
|
+
eventType?: SessionEventType;
|
|
1191
|
+
sessionId?: string;
|
|
1192
|
+
}
|
|
1193
|
+
export declare enum SessionEventType {
|
|
1194
|
+
SessionStarting = "SessionStarting",
|
|
1195
|
+
SessionStarted = "SessionStarted",
|
|
1196
|
+
SessionStopping = "SessionStopping",
|
|
1197
|
+
SessionStopped = "SessionStopped",
|
|
1198
|
+
TestPlanChanged = "TestPlanChanged",
|
|
1199
|
+
TestPlanExecutionStateChanged = "TestPlanExecutionStateChanged",
|
|
1200
|
+
SettingsChanged = "SettingsChanged",
|
|
1201
|
+
TestStepChanged = "TestStepChanged",
|
|
1202
|
+
BreakEvent = "BreakEvent",
|
|
1203
|
+
UserInputRequested = "UserInputRequested",
|
|
1204
|
+
UserInputCompleted = "UserInputCompleted",
|
|
1205
|
+
SessionTimeoutHit = "SessionTimeoutHit",
|
|
1206
|
+
TestPlanSettingsChanged = "TestPlanSettingsChanged",
|
|
1207
|
+
TypeCacheInvalidated = "TypeCacheInvalidated",
|
|
1208
|
+
Heartbeat = "Heartbeat",
|
|
1209
|
+
MetricsConfigurationChanged = "MetricsConfigurationChanged"
|
|
1210
|
+
}
|
|
1211
|
+
export declare class SessionTimeoutEventArgs extends SessionEvent implements ISessionTimeoutEventArgs {
|
|
1212
|
+
constructor(data?: ISessionTimeoutEventArgs);
|
|
1213
|
+
init(_data?: any): void;
|
|
1214
|
+
static fromJS(data: any): SessionTimeoutEventArgs;
|
|
1215
|
+
toJSON(data?: any): any;
|
|
1216
|
+
}
|
|
1217
|
+
export declare type ISessionTimeoutEventArgs = ISessionEvent;
|
|
1218
|
+
export declare class StartingEventArgs extends SessionEvent implements IStartingEventArgs {
|
|
1219
|
+
constructor(data?: IStartingEventArgs);
|
|
1220
|
+
init(_data?: any): void;
|
|
1221
|
+
static fromJS(data: any): StartingEventArgs;
|
|
1222
|
+
toJSON(data?: any): any;
|
|
1223
|
+
}
|
|
1224
|
+
export declare type IStartingEventArgs = ISessionEvent;
|
|
1225
|
+
export declare class StartedEventArgs extends SessionEvent implements IStartedEventArgs {
|
|
1226
|
+
constructor(data?: IStartedEventArgs);
|
|
1227
|
+
init(_data?: any): void;
|
|
1228
|
+
static fromJS(data: any): StartedEventArgs;
|
|
1229
|
+
toJSON(data?: any): any;
|
|
1230
|
+
}
|
|
1231
|
+
export declare type IStartedEventArgs = ISessionEvent;
|
|
1232
|
+
export declare class StoppingEventArgs extends SessionEvent implements IStoppingEventArgs {
|
|
1233
|
+
constructor(data?: IStoppingEventArgs);
|
|
1234
|
+
init(_data?: any): void;
|
|
1235
|
+
static fromJS(data: any): StoppingEventArgs;
|
|
1236
|
+
toJSON(data?: any): any;
|
|
1237
|
+
}
|
|
1238
|
+
export declare type IStoppingEventArgs = ISessionEvent;
|
|
1239
|
+
export declare class StoppedEventArgs extends SessionEvent implements IStoppedEventArgs {
|
|
1240
|
+
constructor(data?: IStoppedEventArgs);
|
|
1241
|
+
init(_data?: any): void;
|
|
1242
|
+
static fromJS(data: any): StoppedEventArgs;
|
|
1243
|
+
toJSON(data?: any): any;
|
|
1244
|
+
}
|
|
1245
|
+
export declare type IStoppedEventArgs = ISessionEvent;
|
|
1246
|
+
export declare class TestPlanChangeEventArgs extends SessionEvent implements ITestPlanChangeEventArgs {
|
|
1247
|
+
constructor(data?: ITestPlanChangeEventArgs);
|
|
1248
|
+
init(_data?: any): void;
|
|
1249
|
+
static fromJS(data: any): TestPlanChangeEventArgs;
|
|
1250
|
+
toJSON(data?: any): any;
|
|
1251
|
+
}
|
|
1252
|
+
export declare type ITestPlanChangeEventArgs = ISessionEvent;
|
|
1253
|
+
export declare class TestPlanExecutionStateChangedEventArgs extends SessionEvent implements ITestPlanExecutionStateChangedEventArgs {
|
|
1254
|
+
runStatus?: RunStatus | undefined;
|
|
1255
|
+
constructor(data?: ITestPlanExecutionStateChangedEventArgs);
|
|
1256
|
+
init(_data?: any): void;
|
|
1257
|
+
static fromJS(data: any): TestPlanExecutionStateChangedEventArgs;
|
|
1258
|
+
toJSON(data?: any): any;
|
|
1259
|
+
}
|
|
1260
|
+
export interface ITestPlanExecutionStateChangedEventArgs extends ISessionEvent {
|
|
1261
|
+
runStatus?: RunStatus | undefined;
|
|
1262
|
+
}
|
|
1263
|
+
export declare class SettingsChangedEventArgs extends SessionEvent implements ISettingsChangedEventArgs {
|
|
1264
|
+
constructor(data?: ISettingsChangedEventArgs);
|
|
1265
|
+
init(_data?: any): void;
|
|
1266
|
+
static fromJS(data: any): SettingsChangedEventArgs;
|
|
1267
|
+
toJSON(data?: any): any;
|
|
1268
|
+
}
|
|
1269
|
+
export declare type ISettingsChangedEventArgs = ISessionEvent;
|
|
1270
|
+
export declare class TestStepChangeEventArgs extends SessionEvent implements ITestStepChangeEventArgs {
|
|
1271
|
+
stepId?: string;
|
|
1272
|
+
constructor(data?: ITestStepChangeEventArgs);
|
|
1273
|
+
init(_data?: any): void;
|
|
1274
|
+
static fromJS(data: any): TestStepChangeEventArgs;
|
|
1275
|
+
toJSON(data?: any): any;
|
|
1276
|
+
}
|
|
1277
|
+
export interface ITestStepChangeEventArgs extends ISessionEvent {
|
|
1278
|
+
stepId?: string;
|
|
1279
|
+
}
|
|
1280
|
+
export declare class BreakEventArgs extends SessionEvent implements IBreakEventArgs {
|
|
1281
|
+
stepId?: string;
|
|
1282
|
+
constructor(data?: IBreakEventArgs);
|
|
1283
|
+
init(_data?: any): void;
|
|
1284
|
+
static fromJS(data: any): BreakEventArgs;
|
|
1285
|
+
toJSON(data?: any): any;
|
|
1286
|
+
}
|
|
1287
|
+
export interface IBreakEventArgs extends ISessionEvent {
|
|
1288
|
+
stepId?: string;
|
|
1289
|
+
}
|
|
1290
|
+
export declare class UserInputRequestEventArgs extends SessionEvent implements IUserInputRequestEventArgs {
|
|
1291
|
+
requestId?: string;
|
|
1292
|
+
constructor(data?: IUserInputRequestEventArgs);
|
|
1293
|
+
init(_data?: any): void;
|
|
1294
|
+
static fromJS(data: any): UserInputRequestEventArgs;
|
|
1295
|
+
toJSON(data?: any): any;
|
|
1296
|
+
}
|
|
1297
|
+
export interface IUserInputRequestEventArgs extends ISessionEvent {
|
|
1298
|
+
requestId?: string;
|
|
1299
|
+
}
|
|
1300
|
+
export declare class UserInputRequestCompletedEventArgs extends SessionEvent implements IUserInputRequestCompletedEventArgs {
|
|
1301
|
+
requestId?: string;
|
|
1302
|
+
answered?: boolean;
|
|
1303
|
+
timeout?: boolean;
|
|
1304
|
+
constructor(data?: IUserInputRequestCompletedEventArgs);
|
|
1305
|
+
init(_data?: any): void;
|
|
1306
|
+
static fromJS(data: any): UserInputRequestCompletedEventArgs;
|
|
1307
|
+
toJSON(data?: any): any;
|
|
1308
|
+
}
|
|
1309
|
+
export interface IUserInputRequestCompletedEventArgs extends ISessionEvent {
|
|
1310
|
+
requestId?: string;
|
|
1311
|
+
answered?: boolean;
|
|
1312
|
+
timeout?: boolean;
|
|
1313
|
+
}
|
|
1314
|
+
export declare class TestPlanSettingsChangedEventArgs extends SessionEvent implements ITestPlanSettingsChangedEventArgs {
|
|
1315
|
+
constructor(data?: ITestPlanSettingsChangedEventArgs);
|
|
1316
|
+
init(_data?: any): void;
|
|
1317
|
+
static fromJS(data: any): TestPlanSettingsChangedEventArgs;
|
|
1318
|
+
toJSON(data?: any): any;
|
|
1319
|
+
}
|
|
1320
|
+
export declare type ITestPlanSettingsChangedEventArgs = ISessionEvent;
|
|
1321
|
+
export declare class HeartbeatEventArgs extends SessionEvent implements IHeartbeatEventArgs {
|
|
1322
|
+
constructor(data?: IHeartbeatEventArgs);
|
|
1323
|
+
init(_data?: any): void;
|
|
1324
|
+
static fromJS(data: any): HeartbeatEventArgs;
|
|
1325
|
+
toJSON(data?: any): any;
|
|
1326
|
+
}
|
|
1327
|
+
export interface IHeartbeatEventArgs extends ISessionEvent {
|
|
1328
|
+
timestamp?: number;
|
|
1329
|
+
watchDog?: IWatchDog;
|
|
1330
|
+
state?: ExecutionState;
|
|
1331
|
+
testPlanRunID?: string;
|
|
1332
|
+
}
|
|
1333
|
+
export declare class MetricsConfigurationChangedEventArgs extends SessionEvent implements IMetricsConfigurationChangedEventArgs {
|
|
1334
|
+
constructor(data?: IMetricsConfigurationChangedEventArgs);
|
|
1335
|
+
init(_data?: any): void;
|
|
1336
|
+
static fromJS(data: any): MetricsConfigurationChangedEventArgs;
|
|
1337
|
+
toJSON(data?: any): any;
|
|
1338
|
+
}
|
|
1339
|
+
export interface IMetricsConfigurationChangedEventArgs extends ISessionEvent {
|
|
1340
|
+
metricsConfiguration?: IMetricsConfiguration;
|
|
1341
|
+
}
|
|
1342
|
+
export interface IOnTestPlanRun {
|
|
1343
|
+
status?: string;
|
|
1344
|
+
userId?: string;
|
|
1345
|
+
}
|
|
1346
|
+
export declare class OnTestPlanRun implements IOnTestPlanRun {
|
|
1347
|
+
status?: string;
|
|
1348
|
+
userId?: string;
|
|
1349
|
+
constructor(data?: IOnTestPlanRun);
|
|
1350
|
+
init(_data?: any): void;
|
|
1351
|
+
static fromJS(data: any): OnTestPlanRun;
|
|
1352
|
+
toJSON(data?: any): any;
|
|
1353
|
+
}
|
|
1354
|
+
export interface IOnTestStepRun {
|
|
1355
|
+
status?: string;
|
|
1356
|
+
stepId?: string;
|
|
1357
|
+
parentRunId?: string;
|
|
1358
|
+
verdict?: string;
|
|
1359
|
+
duration?: string;
|
|
1360
|
+
}
|
|
1361
|
+
export declare class OnTestStepRun implements IOnTestStepRun {
|
|
1362
|
+
status?: string;
|
|
1363
|
+
stepId?: string;
|
|
1364
|
+
parentRunId?: string;
|
|
1365
|
+
verdict?: string;
|
|
1366
|
+
duration?: string;
|
|
1367
|
+
constructor(data?: IOnTestStepRun);
|
|
1368
|
+
init(_data?: any): void;
|
|
1369
|
+
static fromJS(data: any): OnTestStepRun;
|
|
1370
|
+
toJSON(data?: any): any;
|
|
1371
|
+
}
|
|
1372
|
+
export interface ITestStepRunEvent {
|
|
1373
|
+
parent?: string;
|
|
1374
|
+
testStepId?: string;
|
|
1375
|
+
testStepName?: string;
|
|
1376
|
+
testStepTypeName?: string;
|
|
1377
|
+
id?: string;
|
|
1378
|
+
verdict?: number;
|
|
1379
|
+
startTime?: string;
|
|
1380
|
+
parameters?: Parameter[];
|
|
1381
|
+
}
|
|
1382
|
+
export declare class TestStepRunEvent implements ITestStepRunEvent {
|
|
1383
|
+
parent?: string;
|
|
1384
|
+
testStepId?: string;
|
|
1385
|
+
testStepName?: string;
|
|
1386
|
+
testStepTypeName?: string;
|
|
1387
|
+
id?: string;
|
|
1388
|
+
verdict?: number;
|
|
1389
|
+
startTime?: string;
|
|
1390
|
+
parameters?: Parameter[];
|
|
1391
|
+
protected _discriminator: string;
|
|
1392
|
+
constructor(data?: ITestStepRunEvent);
|
|
1393
|
+
init(_data?: any): void;
|
|
1394
|
+
static fromJS(data: any): TestStepRunEvent;
|
|
1395
|
+
toJSON(data?: any): any;
|
|
1396
|
+
}
|
|
1397
|
+
export declare type ITestStepRunStartEventArgs = ITestStepRunEvent;
|
|
1398
|
+
export declare class TestStepRunStartEventArgs extends TestStepRunEvent implements ITestStepRunStartEventArgs {
|
|
1399
|
+
constructor(data?: ITestStepRunStartEventArgs);
|
|
1400
|
+
init(_data?: any): void;
|
|
1401
|
+
static fromJS(data: any): TestStepRunStartEventArgs;
|
|
1402
|
+
toJSON(data?: any): any;
|
|
1403
|
+
}
|
|
1404
|
+
export declare type ITestStepRunCompletedEventArgs = ITestStepRunEvent;
|
|
1405
|
+
export declare class TestStepRunCompletedEventArgs extends TestStepRunEvent implements ITestStepRunCompletedEventArgs {
|
|
1406
|
+
constructor(data?: ITestStepRunCompletedEventArgs);
|
|
1407
|
+
init(_data?: any): void;
|
|
1408
|
+
static fromJS(data: any): TestStepRunCompletedEventArgs;
|
|
1409
|
+
toJSON(data?: any): any;
|
|
1410
|
+
}
|
|
1411
|
+
export interface ITestPlanRunEvent {
|
|
1412
|
+
testPlanRunId?: number;
|
|
1413
|
+
testPlanRunGuid?: string;
|
|
1414
|
+
path?: string;
|
|
1415
|
+
name?: string;
|
|
1416
|
+
verdict?: string;
|
|
1417
|
+
startTime?: string;
|
|
1418
|
+
runner?: string;
|
|
1419
|
+
status?: string;
|
|
1420
|
+
isCampaign?: boolean;
|
|
1421
|
+
operator?: string;
|
|
1422
|
+
}
|
|
1423
|
+
export declare class TestPlanRunEvent implements ITestPlanRunEvent {
|
|
1424
|
+
testPlanRunId?: number;
|
|
1425
|
+
testPlanRunGuid?: string;
|
|
1426
|
+
path?: string;
|
|
1427
|
+
name?: string;
|
|
1428
|
+
verdict?: string;
|
|
1429
|
+
startTime?: string;
|
|
1430
|
+
runner?: string;
|
|
1431
|
+
status?: string;
|
|
1432
|
+
isCampaign?: boolean;
|
|
1433
|
+
operator?: string;
|
|
1434
|
+
protected _discriminator: string;
|
|
1435
|
+
constructor(data?: ITestPlanRunEvent);
|
|
1436
|
+
init(_data?: any): void;
|
|
1437
|
+
static fromJS(data: any): TestPlanRunEvent;
|
|
1438
|
+
toJSON(data?: any): any;
|
|
1439
|
+
}
|
|
1440
|
+
export declare type ITestPlanRunStartEventArgs = ITestPlanRunEvent;
|
|
1441
|
+
export declare class TestPlanRunStartEventArgs extends TestPlanRunEvent implements ITestPlanRunStartEventArgs {
|
|
1442
|
+
constructor(data?: ITestPlanRunStartEventArgs);
|
|
1443
|
+
init(_data?: any): void;
|
|
1444
|
+
static fromJS(data: any): TestPlanRunStartEventArgs;
|
|
1445
|
+
toJSON(data?: any): any;
|
|
1446
|
+
}
|
|
1447
|
+
export interface ITestPlanRunCompletedEventArgs extends ITestPlanRunEvent {
|
|
1448
|
+
durationInSeconds?: number;
|
|
1449
|
+
}
|
|
1450
|
+
export declare class TestPlanRunCompletedEventArgs extends TestPlanRunEvent implements ITestPlanRunCompletedEventArgs {
|
|
1451
|
+
durationInSeconds?: number;
|
|
1452
|
+
constructor(data?: ITestPlanRunCompletedEventArgs);
|
|
1453
|
+
init(_data?: any): void;
|
|
1454
|
+
static fromJS(data: any): TestPlanRunCompletedEventArgs;
|
|
1455
|
+
toJSON(data?: any): any;
|
|
1456
|
+
}
|
|
1457
|
+
export interface IRunnerEvent {
|
|
1458
|
+
runnerId?: string;
|
|
1459
|
+
type?: string;
|
|
1460
|
+
}
|
|
1461
|
+
export declare class RunnerEvent implements IRunnerEvent {
|
|
1462
|
+
runnerId?: string;
|
|
1463
|
+
type?: string;
|
|
1464
|
+
constructor(data?: IRunnerEvent);
|
|
1465
|
+
init(_data?: any): void;
|
|
1466
|
+
static fromJS(data: any): RunnerEvent;
|
|
1467
|
+
toJSON(data?: any): any;
|
|
1468
|
+
}
|
|
1469
|
+
export declare type IRunnerRegisteredEvent = IRunnerEvent;
|
|
1470
|
+
export declare class RunnerRegisteredEvent extends RunnerEvent implements IRunnerRegisteredEvent {
|
|
1471
|
+
constructor(data?: IRunnerRegisteredEvent);
|
|
1472
|
+
init(_data?: any): void;
|
|
1473
|
+
static fromJS(data: any): RunnerRegisteredEvent;
|
|
1474
|
+
toJSON(data?: any): any;
|
|
1475
|
+
}
|
|
1476
|
+
export declare type IRunnerUpdatedEvent = IRunnerEvent;
|
|
1477
|
+
export declare class RunnerUpdatedEvent extends RunnerEvent implements IRunnerUpdatedEvent {
|
|
1478
|
+
constructor(data?: IRunnerUpdatedEvent);
|
|
1479
|
+
init(_data?: any): void;
|
|
1480
|
+
static fromJS(data: any): RunnerUpdatedEvent;
|
|
1481
|
+
toJSON(data?: any): any;
|
|
1482
|
+
}
|
|
1483
|
+
export declare type IRunnerDeletedEvent = IRunnerEvent;
|
|
1484
|
+
export declare class RunnerDeletedEvent extends RunnerEvent implements IRunnerDeletedEvent {
|
|
1485
|
+
constructor(data?: IRunnerDeletedEvent);
|
|
1486
|
+
init(_data?: any): void;
|
|
1487
|
+
static fromJS(data: any): RunnerDeletedEvent;
|
|
1488
|
+
toJSON(data?: any): any;
|
|
1489
|
+
}
|
|
1490
|
+
export declare class MetadataUpdatedEvent implements IMetadataUpdatedEvent {
|
|
1491
|
+
sessionId: string;
|
|
1492
|
+
metadata: {
|
|
1493
|
+
[key: string]: string;
|
|
1494
|
+
} | undefined;
|
|
1495
|
+
constructor(data?: IMetadataUpdatedEvent);
|
|
1496
|
+
init(_data?: any): void;
|
|
1497
|
+
static fromJS(data: any): MetadataUpdatedEvent;
|
|
1498
|
+
toJSON(data?: any): any;
|
|
1499
|
+
}
|
|
1500
|
+
export interface IMetadataUpdatedEvent {
|
|
1501
|
+
sessionId: string;
|
|
1502
|
+
metadata: {
|
|
1503
|
+
[key: string]: string;
|
|
1504
|
+
} | undefined;
|
|
1505
|
+
}
|