testit-api-client 7.0.0-rc7 → 7.0.0
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/index.d.ts +77 -127
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6313,7 +6313,7 @@ declare module 'testit-api-client/ApiClient' {
|
|
|
6313
6313
|
* @param {String} apiBasePath base path defined in the operation/path level to override the default one
|
|
6314
6314
|
* @returns {Promise} A {@link https://www.promisejs.org/|Promise} object.
|
|
6315
6315
|
*/
|
|
6316
|
-
callApi(path: string, httpMethod: string, pathParams: any, queryParams: any, headerParams: any, formParams: any, bodyParam: any, authNames: Array<string>, contentTypes: Array<string>, accepts: Array<string>, returnType: (string | any[]
|
|
6316
|
+
callApi(path: string, httpMethod: string, pathParams: any, queryParams: any, headerParams: any, formParams: any, bodyParam: any, authNames: Array<string>, contentTypes: Array<string>, accepts: Array<string>, returnType: (string | any[] ), apiBasePath: string): Promise<any>;
|
|
6317
6317
|
/**
|
|
6318
6318
|
* Gets an array of host settings
|
|
6319
6319
|
* @returns An array of host settings
|
|
@@ -6922,7 +6922,6 @@ declare module 'testit-api-client/model/ActionUpdate' {
|
|
|
6922
6922
|
/**
|
|
6923
6923
|
* *
|
|
6924
6924
|
*/
|
|
6925
|
-
export type ActionUpdate = any;
|
|
6926
6925
|
|
|
6927
6926
|
}
|
|
6928
6927
|
declare module 'testit-api-client/model/AIServiceModelApiResult' {
|
|
@@ -7002,7 +7001,7 @@ declare module 'testit-api-client/model/AIServiceModelApiResultReply' {
|
|
|
7002
7001
|
* @param data {Array.<module:model/AIServiceModelApiResult>}
|
|
7003
7002
|
* @param totalCount {Number}
|
|
7004
7003
|
*/
|
|
7005
|
-
constructor(data: Array<
|
|
7004
|
+
constructor(data: Array<any>, totalCount: number);
|
|
7006
7005
|
data: any;
|
|
7007
7006
|
totalCount: any;
|
|
7008
7007
|
}
|
|
@@ -7038,7 +7037,6 @@ declare module 'testit-api-client/model/ApiExternalServiceCategory' {
|
|
|
7038
7037
|
/**
|
|
7039
7038
|
* *
|
|
7040
7039
|
*/
|
|
7041
|
-
export type ApiExternalServiceCategory = any;
|
|
7042
7040
|
|
|
7043
7041
|
}
|
|
7044
7042
|
declare module 'testit-api-client/model/AssignAttachmentApiModel' {
|
|
@@ -7116,7 +7114,7 @@ declare module 'testit-api-client/model/AssignIterationApiModel' {
|
|
|
7116
7114
|
* @param parameters {Array.<module:model/ParameterIterationModel>}
|
|
7117
7115
|
* @param id {String} Iteration identifier, must be empty for new or changed iteration
|
|
7118
7116
|
*/
|
|
7119
|
-
constructor(parameters: Array<
|
|
7117
|
+
constructor(parameters: Array<any>, id: string);
|
|
7120
7118
|
parameters: any;
|
|
7121
7119
|
id: any;
|
|
7122
7120
|
}
|
|
@@ -8377,7 +8375,7 @@ declare module 'testit-api-client/model/AutoTestNamespaceCountApiModel' {
|
|
|
8377
8375
|
* @param count {Number}
|
|
8378
8376
|
* @param classes {Array.<module:model/AutoTestClassCountApiModel>}
|
|
8379
8377
|
*/
|
|
8380
|
-
constructor(count: number, classes: Array<
|
|
8378
|
+
constructor(count: number, classes: Array<any>);
|
|
8381
8379
|
name: any;
|
|
8382
8380
|
count: any;
|
|
8383
8381
|
classes: any;
|
|
@@ -8420,7 +8418,7 @@ declare module 'testit-api-client/model/AutoTestNamespacesCountResponse' {
|
|
|
8420
8418
|
* @alias module:model/AutoTestNamespacesCountResponse
|
|
8421
8419
|
* @param namespaces {Array.<module:model/AutoTestNamespaceCountApiModel>}
|
|
8422
8420
|
*/
|
|
8423
|
-
constructor(namespaces: Array<
|
|
8421
|
+
constructor(namespaces: Array<any>);
|
|
8424
8422
|
namespaces: any;
|
|
8425
8423
|
}
|
|
8426
8424
|
namespace AutoTestNamespacesCountResponse {
|
|
@@ -8465,7 +8463,6 @@ declare module 'testit-api-client/model/AutoTestOutcome' {
|
|
|
8465
8463
|
/**
|
|
8466
8464
|
* *
|
|
8467
8465
|
*/
|
|
8468
|
-
export type AutoTestOutcome = any;
|
|
8469
8466
|
|
|
8470
8467
|
}
|
|
8471
8468
|
declare module 'testit-api-client/model/AutoTestProjectSettingsApiModel' {
|
|
@@ -8607,7 +8604,7 @@ declare module 'testit-api-client/model/AutoTestResultHistoryApiResult' {
|
|
|
8607
8604
|
* @param createdDate {Date}
|
|
8608
8605
|
* @param createdById {String}
|
|
8609
8606
|
*/
|
|
8610
|
-
constructor(id: string, testRunId: string, configurationId: string, configurationName: string, outcome: any, status: any, rerunCount: number, rerunTestResults: Array<
|
|
8607
|
+
constructor(id: string, testRunId: string, configurationId: string, configurationName: string, outcome: any, status: any, rerunCount: number, rerunTestResults: Array<any>, createdDate: Date, createdById: string);
|
|
8611
8608
|
id: any;
|
|
8612
8609
|
testPlanId: any;
|
|
8613
8610
|
testPlanGlobalId: any;
|
|
@@ -8714,7 +8711,6 @@ declare module 'testit-api-client/model/AutotestResultOutcome' {
|
|
|
8714
8711
|
/**
|
|
8715
8712
|
* *
|
|
8716
8713
|
*/
|
|
8717
|
-
export type AutotestResultOutcome = any;
|
|
8718
8714
|
|
|
8719
8715
|
}
|
|
8720
8716
|
declare module 'testit-api-client/model/AutotestResultReasonFilterModel' {
|
|
@@ -8828,7 +8824,7 @@ declare module 'testit-api-client/model/AutoTestResultReasonsCountModel' {
|
|
|
8828
8824
|
* @alias module:model/AutoTestResultReasonsCountModel
|
|
8829
8825
|
* @param data {Array.<module:model/AutoTestResultReasonsCountItemModel>}
|
|
8830
8826
|
*/
|
|
8831
|
-
constructor(data: Array<
|
|
8827
|
+
constructor(data: Array<any>);
|
|
8832
8828
|
data: any;
|
|
8833
8829
|
}
|
|
8834
8830
|
namespace AutoTestResultReasonsCountModel {
|
|
@@ -9645,7 +9641,6 @@ declare module 'testit-api-client/model/AvailableFailureCategory' {
|
|
|
9645
9641
|
/**
|
|
9646
9642
|
* *
|
|
9647
9643
|
*/
|
|
9648
|
-
export type AvailableFailureCategory = any;
|
|
9649
9644
|
|
|
9650
9645
|
}
|
|
9651
9646
|
declare module 'testit-api-client/model/AvailableTestResultOutcome' {
|
|
@@ -9685,7 +9680,6 @@ declare module 'testit-api-client/model/AvailableTestResultOutcome' {
|
|
|
9685
9680
|
/**
|
|
9686
9681
|
* *
|
|
9687
9682
|
*/
|
|
9688
|
-
export type AvailableTestResultOutcome = any;
|
|
9689
9683
|
|
|
9690
9684
|
}
|
|
9691
9685
|
declare module 'testit-api-client/model/BackgroundJobAttachmentModel' {
|
|
@@ -9811,7 +9805,7 @@ declare module 'testit-api-client/model/BackgroundJobGetModel' {
|
|
|
9811
9805
|
* @param createdDate {Date}
|
|
9812
9806
|
* @param attachments {Array.<module:model/BackgroundJobAttachmentModel>}
|
|
9813
9807
|
*/
|
|
9814
|
-
constructor(id: string, jobId: string, jobType: any, state: any, isDeleted: boolean, progress: number, createdDate: Date, attachments: Array<
|
|
9808
|
+
constructor(id: string, jobId: string, jobType: any, state: any, isDeleted: boolean, progress: number, createdDate: Date, attachments: Array<any>);
|
|
9815
9809
|
id: any;
|
|
9816
9810
|
jobId: any;
|
|
9817
9811
|
jobType: any;
|
|
@@ -9871,7 +9865,6 @@ declare module 'testit-api-client/model/BackgroundJobState' {
|
|
|
9871
9865
|
/**
|
|
9872
9866
|
* *
|
|
9873
9867
|
*/
|
|
9874
|
-
export type BackgroundJobState = any;
|
|
9875
9868
|
|
|
9876
9869
|
}
|
|
9877
9870
|
declare module 'testit-api-client/model/BackgroundJobType' {
|
|
@@ -9981,7 +9974,6 @@ declare module 'testit-api-client/model/BackgroundJobType' {
|
|
|
9981
9974
|
/**
|
|
9982
9975
|
* *
|
|
9983
9976
|
*/
|
|
9984
|
-
export type BackgroundJobType = any;
|
|
9985
9977
|
|
|
9986
9978
|
}
|
|
9987
9979
|
declare module 'testit-api-client/model/BooleanChangedFieldViewModel' {
|
|
@@ -10132,7 +10124,6 @@ declare module 'testit-api-client/model/CollectionOperator' {
|
|
|
10132
10124
|
/**
|
|
10133
10125
|
* *
|
|
10134
10126
|
*/
|
|
10135
|
-
export type CollectionOperator = any;
|
|
10136
10127
|
|
|
10137
10128
|
}
|
|
10138
10129
|
declare module 'testit-api-client/model/CompositeFilter' {
|
|
@@ -10169,7 +10160,7 @@ declare module 'testit-api-client/model/CompositeFilter' {
|
|
|
10169
10160
|
* @param filters {Array.<module:model/IFilter>}
|
|
10170
10161
|
* @param operator {module:model/LogicalOperator}
|
|
10171
10162
|
*/
|
|
10172
|
-
constructor(filters: Array<
|
|
10163
|
+
constructor(filters: Array<any>, operator: any);
|
|
10173
10164
|
filters: any;
|
|
10174
10165
|
operator: any;
|
|
10175
10166
|
}
|
|
@@ -11276,7 +11267,7 @@ declare module 'testit-api-client/model/CreateTestRunAndFillByConfigurationsApiM
|
|
|
11276
11267
|
* @param testPlanId {String} Specifies the GUID of the test plan, within which the test run will be created.
|
|
11277
11268
|
* @param testPointSelectors {Array.<module:model/TestPointSelector>} Specifies an array of work items and configuration to create a test run for.
|
|
11278
11269
|
*/
|
|
11279
|
-
constructor(projectId: string, testPlanId: string, testPointSelectors: Array<
|
|
11270
|
+
constructor(projectId: string, testPlanId: string, testPointSelectors: Array<any>);
|
|
11280
11271
|
projectId: any;
|
|
11281
11272
|
testPlanId: any;
|
|
11282
11273
|
name: any;
|
|
@@ -11423,7 +11414,7 @@ declare module 'testit-api-client/model/CreateWorkflowApiModel' {
|
|
|
11423
11414
|
* @param name {String}
|
|
11424
11415
|
* @param statuses {Array.<module:model/WorkflowStatusApiModel>}
|
|
11425
11416
|
*/
|
|
11426
|
-
constructor(name: string, statuses: Array<
|
|
11417
|
+
constructor(name: string, statuses: Array<any>);
|
|
11427
11418
|
name: any;
|
|
11428
11419
|
isDefault: any;
|
|
11429
11420
|
statuses: any;
|
|
@@ -11478,7 +11469,7 @@ declare module 'testit-api-client/model/CreateWorkItemApiModel' {
|
|
|
11478
11469
|
* @param postconditionSteps {Array.<module:model/CreateStepApiModel>} Set of postcondition steps that are executed after completing the main steps
|
|
11479
11470
|
* @param links {Array.<module:model/CreateLinkApiModel>} Set of links related to the work item
|
|
11480
11471
|
*/
|
|
11481
|
-
constructor(projectId: string, name: string, entityTypeName: any, duration: number, state: any, priority: any, attributes: any, tags: Array<
|
|
11472
|
+
constructor(projectId: string, name: string, entityTypeName: any, duration: number, state: any, priority: any, attributes: any, tags: Array<any>, preconditionSteps: Array<any>, steps: Array<any>, postconditionSteps: Array<any>, links: Array<any>);
|
|
11482
11473
|
projectId: any;
|
|
11483
11474
|
sectionId: any;
|
|
11484
11475
|
name: any;
|
|
@@ -11536,7 +11527,7 @@ declare module 'testit-api-client/model/CreateWorkItemPreviewsApiModel' {
|
|
|
11536
11527
|
* @param sectionId {String}
|
|
11537
11528
|
* @param previews {Array.<module:model/WorkItemPreviewApiModel>}
|
|
11538
11529
|
*/
|
|
11539
|
-
constructor(sectionId: string, previews: Array<
|
|
11530
|
+
constructor(sectionId: string, previews: Array<any>);
|
|
11540
11531
|
sectionId: any;
|
|
11541
11532
|
previews: any;
|
|
11542
11533
|
attributes: any;
|
|
@@ -11587,7 +11578,7 @@ declare module 'testit-api-client/model/CustomAttributeApiResult' {
|
|
|
11587
11578
|
* @param isRequired {Boolean} Indicates if the attribute value is mandatory to specify
|
|
11588
11579
|
* @param isGlobal {Boolean} Indicates if the attribute is available across all projects
|
|
11589
11580
|
*/
|
|
11590
|
-
constructor(id: string, options: Array<
|
|
11581
|
+
constructor(id: string, options: Array<any>, type: any, isDeleted: boolean, name: string, isEnabled: boolean, isRequired: boolean, isGlobal: boolean);
|
|
11591
11582
|
id: any;
|
|
11592
11583
|
options: any;
|
|
11593
11584
|
type: any;
|
|
@@ -11678,7 +11669,7 @@ declare module 'testit-api-client/model/CustomAttributeGetModel' {
|
|
|
11678
11669
|
* @param isRequired {Boolean} Indicates if the attribute is mandatory to specify
|
|
11679
11670
|
* @param isGlobal {Boolean} Indicates if the attribute is available across all projects
|
|
11680
11671
|
*/
|
|
11681
|
-
constructor(id: string, options: Array<
|
|
11672
|
+
constructor(id: string, options: Array<any>, type: any, isDeleted: boolean, name: string, isEnabled: boolean, isRequired: boolean, isGlobal: boolean);
|
|
11682
11673
|
id: any;
|
|
11683
11674
|
options: any;
|
|
11684
11675
|
type: any;
|
|
@@ -11733,7 +11724,7 @@ declare module 'testit-api-client/model/CustomAttributeModel' {
|
|
|
11733
11724
|
* @param isRequired {Boolean} Indicates if the attribute value is mandatory to specify
|
|
11734
11725
|
* @param isGlobal {Boolean} Indicates if the attribute is available across all projects
|
|
11735
11726
|
*/
|
|
11736
|
-
constructor(id: string, options: Array<
|
|
11727
|
+
constructor(id: string, options: Array<any>, type: any, isDeleted: boolean, name: string, isEnabled: boolean, isRequired: boolean, isGlobal: boolean);
|
|
11737
11728
|
id: any;
|
|
11738
11729
|
options: any;
|
|
11739
11730
|
type: any;
|
|
@@ -12065,7 +12056,7 @@ declare module 'testit-api-client/model/CustomAttributeSearchResponseModel' {
|
|
|
12065
12056
|
* @param isRequired {Boolean} Indicates if the attribute value is mandatory to specify
|
|
12066
12057
|
* @param isGlobal {Boolean} Indicates if the attribute is available across all projects
|
|
12067
12058
|
*/
|
|
12068
|
-
constructor(workItemUsage: Array<
|
|
12059
|
+
constructor(workItemUsage: Array<any>, testPlanUsage: Array<any>, id: string, options: Array<any>, type: any, isDeleted: boolean, name: string, isEnabled: boolean, isRequired: boolean, isGlobal: boolean);
|
|
12069
12060
|
workItemUsage: any;
|
|
12070
12061
|
testPlanUsage: any;
|
|
12071
12062
|
id: any;
|
|
@@ -12381,7 +12372,6 @@ declare module 'testit-api-client/model/CustomAttributeType' {
|
|
|
12381
12372
|
/**
|
|
12382
12373
|
* *
|
|
12383
12374
|
*/
|
|
12384
|
-
export type CustomAttributeType = any;
|
|
12385
12375
|
|
|
12386
12376
|
}
|
|
12387
12377
|
declare module 'testit-api-client/model/CustomAttributeTypesEnum' {
|
|
@@ -12431,7 +12421,6 @@ declare module 'testit-api-client/model/CustomAttributeTypesEnum' {
|
|
|
12431
12421
|
/**
|
|
12432
12422
|
* *
|
|
12433
12423
|
*/
|
|
12434
|
-
export type CustomAttributeTypesEnum = any;
|
|
12435
12424
|
|
|
12436
12425
|
}
|
|
12437
12426
|
declare module 'testit-api-client/model/CustomAttributeValidationResult' {
|
|
@@ -12581,7 +12570,6 @@ declare module 'testit-api-client/model/DeletionState' {
|
|
|
12581
12570
|
/**
|
|
12582
12571
|
* *
|
|
12583
12572
|
*/
|
|
12584
|
-
export type DeletionState = any;
|
|
12585
12573
|
|
|
12586
12574
|
}
|
|
12587
12575
|
declare module 'testit-api-client/model/DemoProjectApiResult' {
|
|
@@ -12746,7 +12734,7 @@ declare module 'testit-api-client/model/ExternalFormCreateModel' {
|
|
|
12746
12734
|
* @param links {Array.<module:model/ExternalFormLinkModel>}
|
|
12747
12735
|
* @param values {Object.<String, Object>}
|
|
12748
12736
|
*/
|
|
12749
|
-
constructor(possibleValues: any, fields: Array<
|
|
12737
|
+
constructor(possibleValues: any, fields: Array<any>, links: Array<any>, values: any);
|
|
12750
12738
|
possibleValues: any;
|
|
12751
12739
|
fields: any;
|
|
12752
12740
|
links: any;
|
|
@@ -12888,7 +12876,7 @@ declare module 'testit-api-client/model/ExternalFormModel' {
|
|
|
12888
12876
|
* @param fields {Array.<module:model/ExternalFormFieldModel>}
|
|
12889
12877
|
* @param possibleValues {Object.<String, Array.<module:model/ExternalFormAllowedValueModel>>}
|
|
12890
12878
|
*/
|
|
12891
|
-
constructor(fields: Array<
|
|
12879
|
+
constructor(fields: Array<any>, possibleValues: any);
|
|
12892
12880
|
fields: any;
|
|
12893
12881
|
possibleValues: any;
|
|
12894
12882
|
}
|
|
@@ -12939,7 +12927,6 @@ declare module 'testit-api-client/model/ExternalIssueApiField' {
|
|
|
12939
12927
|
/**
|
|
12940
12928
|
* *
|
|
12941
12929
|
*/
|
|
12942
|
-
export type ExternalIssueApiField = any;
|
|
12943
12930
|
|
|
12944
12931
|
}
|
|
12945
12932
|
declare module 'testit-api-client/model/ExternalIssueApiFieldSuggestion' {
|
|
@@ -13019,7 +13006,7 @@ declare module 'testit-api-client/model/ExternalIssueApiFieldSuggestionReply' {
|
|
|
13019
13006
|
* @param data {Array.<module:model/ExternalIssueApiFieldSuggestion>}
|
|
13020
13007
|
* @param totalCount {Number}
|
|
13021
13008
|
*/
|
|
13022
|
-
constructor(data: Array<
|
|
13009
|
+
constructor(data: Array<any>, totalCount: number);
|
|
13023
13010
|
data: any;
|
|
13024
13011
|
totalCount: any;
|
|
13025
13012
|
}
|
|
@@ -13550,7 +13537,7 @@ declare module 'testit-api-client/model/ExternalServicesMetadataApiResult' {
|
|
|
13550
13537
|
* @alias module:model/ExternalServicesMetadataApiResult
|
|
13551
13538
|
* @param data {Array.<module:model/ExternalServiceMetadataApiResult>} External services metadata
|
|
13552
13539
|
*/
|
|
13553
|
-
constructor(data: Array<
|
|
13540
|
+
constructor(data: Array<any>);
|
|
13554
13541
|
data: any;
|
|
13555
13542
|
}
|
|
13556
13543
|
namespace ExternalServicesMetadataApiResult {
|
|
@@ -13600,7 +13587,6 @@ declare module 'testit-api-client/model/FailureCategory' {
|
|
|
13600
13587
|
/**
|
|
13601
13588
|
* *
|
|
13602
13589
|
*/
|
|
13603
|
-
export type FailureCategory = any;
|
|
13604
13590
|
|
|
13605
13591
|
}
|
|
13606
13592
|
declare module 'testit-api-client/model/FailureCategoryApiResult' {
|
|
@@ -13642,7 +13628,7 @@ declare module 'testit-api-client/model/FailureCategoryApiResult' {
|
|
|
13642
13628
|
* @param projects {Array.<module:model/ProjectNameApiResult>} Projects names
|
|
13643
13629
|
* @param failureClassRegexes {Array.<module:model/FailureClassRegexApiResult>} Failure category regexes
|
|
13644
13630
|
*/
|
|
13645
|
-
constructor(id: string, isDeleted: boolean, failureCategory: any, createdDate: Date, createdById: string, projects: Array<
|
|
13631
|
+
constructor(id: string, isDeleted: boolean, failureCategory: any, createdDate: Date, createdById: string, projects: Array<any>, failureClassRegexes: Array<any>);
|
|
13646
13632
|
id: any;
|
|
13647
13633
|
name: any;
|
|
13648
13634
|
isDeleted: any;
|
|
@@ -13777,7 +13763,7 @@ declare module 'testit-api-client/model/FailureCategoryGroupItemApiResult' {
|
|
|
13777
13763
|
* @alias module:model/FailureCategoryGroupItemApiResult
|
|
13778
13764
|
* @param items {Array.<module:model/FailureCategoryItemApiResult>} Group data
|
|
13779
13765
|
*/
|
|
13780
|
-
constructor(items: Array<
|
|
13766
|
+
constructor(items: Array<any>);
|
|
13781
13767
|
group: any;
|
|
13782
13768
|
items: any;
|
|
13783
13769
|
}
|
|
@@ -13820,7 +13806,7 @@ declare module 'testit-api-client/model/FailureCategoryGroupItemApiResultReply'
|
|
|
13820
13806
|
* @param data {Array.<module:model/FailureCategoryGroupItemApiResult>}
|
|
13821
13807
|
* @param totalCount {Number}
|
|
13822
13808
|
*/
|
|
13823
|
-
constructor(data: Array<
|
|
13809
|
+
constructor(data: Array<any>, totalCount: number);
|
|
13824
13810
|
data: any;
|
|
13825
13811
|
totalCount: any;
|
|
13826
13812
|
}
|
|
@@ -13911,7 +13897,7 @@ declare module 'testit-api-client/model/FailureCategoryItemApiResult' {
|
|
|
13911
13897
|
* @param projects {Array.<module:model/ProjectNameApiResult>} Projects names
|
|
13912
13898
|
* @param projectIds {Array.<String>} Projects identifiers
|
|
13913
13899
|
*/
|
|
13914
|
-
constructor(id: string, failureCategory: any, createdDate: Date, createdById: string, failureCategoryId: number, regexCount: number, projects: Array<
|
|
13900
|
+
constructor(id: string, failureCategory: any, createdDate: Date, createdById: string, failureCategoryId: number, regexCount: number, projects: Array<any>, projectIds: Array<string>);
|
|
13915
13901
|
id: any;
|
|
13916
13902
|
name: any;
|
|
13917
13903
|
failureCategory: any;
|
|
@@ -13971,7 +13957,6 @@ declare module 'testit-api-client/model/FailureCategoryModel' {
|
|
|
13971
13957
|
/**
|
|
13972
13958
|
* *
|
|
13973
13959
|
*/
|
|
13974
|
-
export type FailureCategoryModel = any;
|
|
13975
13960
|
|
|
13976
13961
|
}
|
|
13977
13962
|
declare module 'testit-api-client/model/FailureClassRegexApiResult' {
|
|
@@ -14187,7 +14172,6 @@ declare module 'testit-api-client/model/FilterOperator' {
|
|
|
14187
14172
|
/**
|
|
14188
14173
|
* *
|
|
14189
14174
|
*/
|
|
14190
|
-
export type FilterOperator = any;
|
|
14191
14175
|
|
|
14192
14176
|
}
|
|
14193
14177
|
declare module 'testit-api-client/model/GenerateWorkItemPreviewsApiModel' {
|
|
@@ -14268,7 +14252,7 @@ declare module 'testit-api-client/model/GenerateWorkItemPreviewsApiResult' {
|
|
|
14268
14252
|
* @alias module:model/GenerateWorkItemPreviewsApiResult
|
|
14269
14253
|
* @param previews {Array.<module:model/WorkItemPreviewApiModel>}
|
|
14270
14254
|
*/
|
|
14271
|
-
constructor(previews: Array<
|
|
14255
|
+
constructor(previews: Array<any>);
|
|
14272
14256
|
previews: any;
|
|
14273
14257
|
link: any;
|
|
14274
14258
|
}
|
|
@@ -14715,7 +14699,7 @@ declare module 'testit-api-client/model/GlobalSearchResponse' {
|
|
|
14715
14699
|
* @param moreResultsAvailable {Boolean}
|
|
14716
14700
|
* @param availableResourceTypes {Array.<String>}
|
|
14717
14701
|
*/
|
|
14718
|
-
constructor(results: Array<
|
|
14702
|
+
constructor(results: Array<any>, moreResultsAvailable: boolean, availableResourceTypes: Array<string>);
|
|
14719
14703
|
results: any;
|
|
14720
14704
|
moreResultsAvailable: any;
|
|
14721
14705
|
availableResourceTypes: any;
|
|
@@ -14834,7 +14818,7 @@ declare module 'testit-api-client/model/IFilter' {
|
|
|
14834
14818
|
* Gets the actual instance, which can be <code>CollectionFilter</code>, <code>CompositeFilter</code>, <code>Filter</code>.
|
|
14835
14819
|
* @return {(module:model/CollectionFilter|module:model/CompositeFilter|module:model/Filter)} The actual instance.
|
|
14836
14820
|
*/
|
|
14837
|
-
getActualInstance(): (module:
|
|
14821
|
+
getActualInstance(): (module: any) => any;
|
|
14838
14822
|
/**
|
|
14839
14823
|
* Sets the actual instance, which can be <code>CollectionFilter</code>, <code>CompositeFilter</code>, <code>Filter</code>.
|
|
14840
14824
|
* @param {(module:model/CollectionFilter|module:model/CompositeFilter|module:model/Filter)} obj The actual instance.
|
|
@@ -14883,7 +14867,6 @@ declare module 'testit-api-client/model/ImageResizeType' {
|
|
|
14883
14867
|
/**
|
|
14884
14868
|
* *
|
|
14885
14869
|
*/
|
|
14886
|
-
export type ImageResizeType = any;
|
|
14887
14870
|
|
|
14888
14871
|
}
|
|
14889
14872
|
declare module 'testit-api-client/model/Inquiry' {
|
|
@@ -14919,7 +14902,7 @@ declare module 'testit-api-client/model/Inquiry' {
|
|
|
14919
14902
|
* @alias module:model/Inquiry
|
|
14920
14903
|
* @param order {Array.<module:model/Order>}
|
|
14921
14904
|
*/
|
|
14922
|
-
constructor(order: Array<
|
|
14905
|
+
constructor(order: Array<any>);
|
|
14923
14906
|
filter: any;
|
|
14924
14907
|
order: any;
|
|
14925
14908
|
page: any;
|
|
@@ -15371,7 +15354,7 @@ declare module 'testit-api-client/model/LastTestResultApiResult' {
|
|
|
15371
15354
|
* @param links {Array.<module:model/LinkApiResult>}
|
|
15372
15355
|
* @param attachments {Array.<module:model/AttachmentApiResult>}
|
|
15373
15356
|
*/
|
|
15374
|
-
constructor(id: string, testRunId: string, links: Array<
|
|
15357
|
+
constructor(id: string, testRunId: string, links: Array<any>, attachments: Array<any>);
|
|
15375
15358
|
id: any;
|
|
15376
15359
|
testRunId: any;
|
|
15377
15360
|
autoTestId: any;
|
|
@@ -15897,7 +15880,6 @@ declare module 'testit-api-client/model/LinkType' {
|
|
|
15897
15880
|
/**
|
|
15898
15881
|
* *
|
|
15899
15882
|
*/
|
|
15900
|
-
export type LinkType = any;
|
|
15901
15883
|
|
|
15902
15884
|
}
|
|
15903
15885
|
declare module 'testit-api-client/model/LinkUpdateApiModel' {
|
|
@@ -15974,7 +15956,6 @@ declare module 'testit-api-client/model/ListSortDirection' {
|
|
|
15974
15956
|
/**
|
|
15975
15957
|
* *
|
|
15976
15958
|
*/
|
|
15977
|
-
export type ListSortDirection = any;
|
|
15978
15959
|
|
|
15979
15960
|
}
|
|
15980
15961
|
declare module 'testit-api-client/model/LogicalOperator' {
|
|
@@ -16004,7 +15985,6 @@ declare module 'testit-api-client/model/LogicalOperator' {
|
|
|
16004
15985
|
/**
|
|
16005
15986
|
* *
|
|
16006
15987
|
*/
|
|
16007
|
-
export type LogicalOperator = any;
|
|
16008
15988
|
|
|
16009
15989
|
}
|
|
16010
15990
|
declare module 'testit-api-client/model/ManualRerunApiResult' {
|
|
@@ -16290,7 +16270,6 @@ declare module 'testit-api-client/model/NotificationTypeModel' {
|
|
|
16290
16270
|
/**
|
|
16291
16271
|
* *
|
|
16292
16272
|
*/
|
|
16293
|
-
export type NotificationTypeModel = any;
|
|
16294
16273
|
|
|
16295
16274
|
}
|
|
16296
16275
|
declare module 'testit-api-client/model/Operation' {
|
|
@@ -17013,7 +16992,7 @@ declare module 'testit-api-client/model/ProjectAttributesFilterModel' {
|
|
|
17013
16992
|
* @param name {String} Specifies an attribute name to search for
|
|
17014
16993
|
* @param types {Array.<module:model/CustomAttributeTypesEnum>} Specifies an attribute types to search for
|
|
17015
16994
|
*/
|
|
17016
|
-
constructor(name: string, types: Array<
|
|
16995
|
+
constructor(name: string, types: Array<any>);
|
|
17017
16996
|
name: any;
|
|
17018
16997
|
isRequired: any;
|
|
17019
16998
|
isGlobal: any;
|
|
@@ -17094,7 +17073,7 @@ declare module 'testit-api-client/model/ProjectCustomAttributeTemplateGetModel'
|
|
|
17094
17073
|
* @param name {String} Name of the custom attribute template
|
|
17095
17074
|
* @param customAttributeModels {Array.<module:model/CustomAttributeModel>} Attributes of the template
|
|
17096
17075
|
*/
|
|
17097
|
-
constructor(id: string, isDeleted: boolean, name: string, customAttributeModels: Array<
|
|
17076
|
+
constructor(id: string, isDeleted: boolean, name: string, customAttributeModels: Array<any>);
|
|
17098
17077
|
id: any;
|
|
17099
17078
|
isDeleted: any;
|
|
17100
17079
|
name: any;
|
|
@@ -17144,7 +17123,7 @@ declare module 'testit-api-client/model/ProjectDetailedFailureCategoryApiResult'
|
|
|
17144
17123
|
* @param failureClassRegexes {Array.<module:model/FailureClassRegexApiResult>} Failure category regexes
|
|
17145
17124
|
* @param projectsCount {Number} Projects relations count
|
|
17146
17125
|
*/
|
|
17147
|
-
constructor(id: string, isDeleted: boolean, failureCategory: any, createdDate: Date, createdById: string, failureClassRegexes: Array<
|
|
17126
|
+
constructor(id: string, isDeleted: boolean, failureCategory: any, createdDate: Date, createdById: string, failureClassRegexes: Array<any>, projectsCount: number);
|
|
17148
17127
|
id: any;
|
|
17149
17128
|
name: any;
|
|
17150
17129
|
isDeleted: any;
|
|
@@ -17241,7 +17220,7 @@ declare module 'testit-api-client/model/ProjectExternalServicesApiResult' {
|
|
|
17241
17220
|
* @alias module:model/ProjectExternalServicesApiResult
|
|
17242
17221
|
* @param data {Array.<module:model/ProjectExternalServiceApiResult>} External services associated with a project
|
|
17243
17222
|
*/
|
|
17244
|
-
constructor(data: Array<
|
|
17223
|
+
constructor(data: Array<any>);
|
|
17245
17224
|
data: any;
|
|
17246
17225
|
}
|
|
17247
17226
|
namespace ProjectExternalServicesApiResult {
|
|
@@ -17402,7 +17381,7 @@ declare module 'testit-api-client/model/ProjectFailureCategoryGroupItemApiResult
|
|
|
17402
17381
|
* @alias module:model/ProjectFailureCategoryGroupItemApiResult
|
|
17403
17382
|
* @param items {Array.<module:model/ProjectFailureCategoryApiResult>} Group data
|
|
17404
17383
|
*/
|
|
17405
|
-
constructor(items: Array<
|
|
17384
|
+
constructor(items: Array<any>);
|
|
17406
17385
|
group: any;
|
|
17407
17386
|
items: any;
|
|
17408
17387
|
}
|
|
@@ -17445,7 +17424,7 @@ declare module 'testit-api-client/model/ProjectFailureCategoryGroupItemApiResult
|
|
|
17445
17424
|
* @param data {Array.<module:model/ProjectFailureCategoryGroupItemApiResult>}
|
|
17446
17425
|
* @param totalCount {Number}
|
|
17447
17426
|
*/
|
|
17448
|
-
constructor(data: Array<
|
|
17427
|
+
constructor(data: Array<any>, totalCount: number);
|
|
17449
17428
|
data: any;
|
|
17450
17429
|
totalCount: any;
|
|
17451
17430
|
}
|
|
@@ -17724,7 +17703,7 @@ declare module 'testit-api-client/model/ProjectShortApiResultReply' {
|
|
|
17724
17703
|
* @param data {Array.<module:model/ProjectShortApiResult>}
|
|
17725
17704
|
* @param totalCount {Number}
|
|
17726
17705
|
*/
|
|
17727
|
-
constructor(data: Array<
|
|
17706
|
+
constructor(data: Array<any>, totalCount: number);
|
|
17728
17707
|
data: any;
|
|
17729
17708
|
totalCount: any;
|
|
17730
17709
|
}
|
|
@@ -17922,7 +17901,6 @@ declare module 'testit-api-client/model/ProjectType' {
|
|
|
17922
17901
|
/**
|
|
17923
17902
|
* *
|
|
17924
17903
|
*/
|
|
17925
|
-
export type ProjectType = any;
|
|
17926
17904
|
|
|
17927
17905
|
}
|
|
17928
17906
|
declare module 'testit-api-client/model/ProjectTypeModel' {
|
|
@@ -17952,7 +17930,6 @@ declare module 'testit-api-client/model/ProjectTypeModel' {
|
|
|
17952
17930
|
/**
|
|
17953
17931
|
* *
|
|
17954
17932
|
*/
|
|
17955
|
-
export type ProjectTypeModel = any;
|
|
17956
17933
|
|
|
17957
17934
|
}
|
|
17958
17935
|
declare module 'testit-api-client/model/ReplaceProjectExternalServiceApiModel' {
|
|
@@ -18030,7 +18007,6 @@ declare module 'testit-api-client/model/RequestType' {
|
|
|
18030
18007
|
/**
|
|
18031
18008
|
* *
|
|
18032
18009
|
*/
|
|
18033
|
-
export type RequestType = any;
|
|
18034
18010
|
|
|
18035
18011
|
}
|
|
18036
18012
|
declare module 'testit-api-client/model/RequestTypeApiModel' {
|
|
@@ -18065,7 +18041,6 @@ declare module 'testit-api-client/model/RequestTypeApiModel' {
|
|
|
18065
18041
|
/**
|
|
18066
18042
|
* *
|
|
18067
18043
|
*/
|
|
18068
|
-
export type RequestTypeApiModel = any;
|
|
18069
18044
|
|
|
18070
18045
|
}
|
|
18071
18046
|
declare module 'testit-api-client/model/RequestTypeModel' {
|
|
@@ -18100,7 +18075,6 @@ declare module 'testit-api-client/model/RequestTypeModel' {
|
|
|
18100
18075
|
/**
|
|
18101
18076
|
* *
|
|
18102
18077
|
*/
|
|
18103
|
-
export type RequestTypeModel = any;
|
|
18104
18078
|
|
|
18105
18079
|
}
|
|
18106
18080
|
declare module 'testit-api-client/model/RerunsModel' {
|
|
@@ -18137,7 +18111,7 @@ declare module 'testit-api-client/model/RerunsModel' {
|
|
|
18137
18111
|
* @param rerunCount {Number}
|
|
18138
18112
|
* @param rerunTestResults {Array.<module:model/RerunTestResultModel>}
|
|
18139
18113
|
*/
|
|
18140
|
-
constructor(rerunCount: number, rerunTestResults: Array<
|
|
18114
|
+
constructor(rerunCount: number, rerunTestResults: Array<any>);
|
|
18141
18115
|
rerunCount: any;
|
|
18142
18116
|
rerunTestResults: any;
|
|
18143
18117
|
}
|
|
@@ -18274,7 +18248,7 @@ declare module 'testit-api-client/model/SearchCustomAttributeTemplateGetModel' {
|
|
|
18274
18248
|
* @param projectShortestModels {Array.<module:model/ProjectShortestModel>}
|
|
18275
18249
|
* @param customAttributeModels {Array.<module:model/CustomAttributeModel>}
|
|
18276
18250
|
*/
|
|
18277
|
-
constructor(id: string, isDeleted: boolean, name: string, projectShortestModels: Array<
|
|
18251
|
+
constructor(id: string, isDeleted: boolean, name: string, projectShortestModels: Array<any>, customAttributeModels: Array<any>);
|
|
18278
18252
|
id: any;
|
|
18279
18253
|
isDeleted: any;
|
|
18280
18254
|
name: any;
|
|
@@ -18530,7 +18504,7 @@ declare module 'testit-api-client/model/SearchWorkItemLinkUrlsApiResult' {
|
|
|
18530
18504
|
* @alias module:model/SearchWorkItemLinkUrlsApiResult
|
|
18531
18505
|
* @param data {Array.<module:model/WorkItemLinkUrlApiResult>}
|
|
18532
18506
|
*/
|
|
18533
|
-
constructor(data: Array<
|
|
18507
|
+
constructor(data: Array<any>);
|
|
18534
18508
|
data: any;
|
|
18535
18509
|
}
|
|
18536
18510
|
namespace SearchWorkItemLinkUrlsApiResult {
|
|
@@ -18672,7 +18646,7 @@ declare module 'testit-api-client/model/SectionPostModel' {
|
|
|
18672
18646
|
* @param projectId {String}
|
|
18673
18647
|
* @param attachments {Array.<module:model/AttachmentPutModel>}
|
|
18674
18648
|
*/
|
|
18675
|
-
constructor(name: string, projectId: string, attachments: Array<
|
|
18649
|
+
constructor(name: string, projectId: string, attachments: Array<any>);
|
|
18676
18650
|
name: any;
|
|
18677
18651
|
projectId: any;
|
|
18678
18652
|
parentId: any;
|
|
@@ -18721,7 +18695,7 @@ declare module 'testit-api-client/model/SectionPutModel' {
|
|
|
18721
18695
|
* @param projectId {String}
|
|
18722
18696
|
* @param attachments {Array.<module:model/AttachmentPutModel>}
|
|
18723
18697
|
*/
|
|
18724
|
-
constructor(id: string, name: string, projectId: string, attachments: Array<
|
|
18698
|
+
constructor(id: string, name: string, projectId: string, attachments: Array<any>);
|
|
18725
18699
|
id: any;
|
|
18726
18700
|
name: any;
|
|
18727
18701
|
projectId: any;
|
|
@@ -18903,7 +18877,7 @@ declare module 'testit-api-client/model/SharedStepChangeViewModel' {
|
|
|
18903
18877
|
* @param name {String}
|
|
18904
18878
|
* @param steps {Array.<module:model/WorkItemStepChangeViewModel>}
|
|
18905
18879
|
*/
|
|
18906
|
-
constructor(id: string, globalId: number, name: string, steps: Array<
|
|
18880
|
+
constructor(id: string, globalId: number, name: string, steps: Array<any>);
|
|
18907
18881
|
id: any;
|
|
18908
18882
|
globalId: any;
|
|
18909
18883
|
name: any;
|
|
@@ -18951,7 +18925,7 @@ declare module 'testit-api-client/model/SharedStepModel' {
|
|
|
18951
18925
|
* @param steps {Array.<module:model/StepModel>}
|
|
18952
18926
|
* @param isDeleted {Boolean}
|
|
18953
18927
|
*/
|
|
18954
|
-
constructor(versionId: string, globalId: number, name: string, steps: Array<
|
|
18928
|
+
constructor(versionId: string, globalId: number, name: string, steps: Array<any>, isDeleted: boolean);
|
|
18955
18929
|
versionId: any;
|
|
18956
18930
|
globalId: any;
|
|
18957
18931
|
name: any;
|
|
@@ -19293,7 +19267,7 @@ declare module 'testit-api-client/model/StepCommentApiModel' {
|
|
|
19293
19267
|
* @param createdById {String}
|
|
19294
19268
|
* @param createdDate {Date}
|
|
19295
19269
|
*/
|
|
19296
|
-
constructor(id: string, stepId: string, attachments: Array<
|
|
19270
|
+
constructor(id: string, stepId: string, attachments: Array<any>, testResultId: string, createdById: string, createdDate: Date);
|
|
19297
19271
|
id: any;
|
|
19298
19272
|
text: any;
|
|
19299
19273
|
stepId: any;
|
|
@@ -19896,7 +19870,7 @@ declare module 'testit-api-client/model/TestPlanApiResult' {
|
|
|
19896
19870
|
* @param createdById {String}
|
|
19897
19871
|
* @param isDeleted {Boolean}
|
|
19898
19872
|
*/
|
|
19899
|
-
constructor(id: string, name: string, status: any, tags: Array<
|
|
19873
|
+
constructor(id: string, name: string, status: any, tags: Array<any>, globalId: number, attributes: any, createdById: string, isDeleted: boolean);
|
|
19900
19874
|
id: any;
|
|
19901
19875
|
name: any;
|
|
19902
19876
|
startDate: any;
|
|
@@ -20584,7 +20558,6 @@ declare module 'testit-api-client/model/TestPlanStatus' {
|
|
|
20584
20558
|
/**
|
|
20585
20559
|
* *
|
|
20586
20560
|
*/
|
|
20587
|
-
export type TestPlanStatus = any;
|
|
20588
20561
|
|
|
20589
20562
|
}
|
|
20590
20563
|
declare module 'testit-api-client/model/TestPlanStatusModel' {
|
|
@@ -20624,7 +20597,6 @@ declare module 'testit-api-client/model/TestPlanStatusModel' {
|
|
|
20624
20597
|
/**
|
|
20625
20598
|
* *
|
|
20626
20599
|
*/
|
|
20627
|
-
export type TestPlanStatusModel = any;
|
|
20628
20600
|
|
|
20629
20601
|
}
|
|
20630
20602
|
declare module 'testit-api-client/model/TestPlanSummaryModel' {
|
|
@@ -20791,7 +20763,7 @@ declare module 'testit-api-client/model/TestPlanTestPointsAnalyticsApiResult' {
|
|
|
20791
20763
|
* @param countGroupByStatusType {Array.<module:model/TestPlanTestPointsStatusTypeGroupApiResult>}
|
|
20792
20764
|
* @param countGroupByTesterAndStatusType {Array.<module:model/TestPlanTestPointsTesterAndStatusTypeGroupApiResult>}
|
|
20793
20765
|
*/
|
|
20794
|
-
constructor(countGroupByStatus: Array<
|
|
20766
|
+
constructor(countGroupByStatus: Array<any>, countGroupByTesterAndStatus: Array<any>, sumGroupByTester: Array<any>, countGroupByTester: Array<any>, countGroupByStatusType: Array<any>, countGroupByTesterAndStatusType: Array<any>);
|
|
20795
20767
|
countGroupByStatus: any;
|
|
20796
20768
|
countGroupByTesterAndStatus: any;
|
|
20797
20769
|
sumGroupByTester: any;
|
|
@@ -21072,7 +21044,7 @@ declare module 'testit-api-client/model/TestPlanTestPointsGroupSearchApiResult'
|
|
|
21072
21044
|
* @param totalCount {Number}
|
|
21073
21045
|
* @param statusCounters {module:model/TestPlanTestPointsSearchStatusCountersApiResult}
|
|
21074
21046
|
*/
|
|
21075
|
-
constructor(data: Array<
|
|
21047
|
+
constructor(data: Array<any>, totalCount: number, statusCounters: any);
|
|
21076
21048
|
data: any;
|
|
21077
21049
|
totalCount: any;
|
|
21078
21050
|
statusCounters: any;
|
|
@@ -21116,7 +21088,7 @@ declare module 'testit-api-client/model/TestPlanTestPointsGroupSearchItemApiResu
|
|
|
21116
21088
|
* @param group {module:model/TestPlanTestPointsGroupApiResult}
|
|
21117
21089
|
* @param items {Array.<module:model/TestPlanTestPointsSearchApiResult>}
|
|
21118
21090
|
*/
|
|
21119
|
-
constructor(group: any, items: Array<
|
|
21091
|
+
constructor(group: any, items: Array<any>);
|
|
21120
21092
|
group: any;
|
|
21121
21093
|
items: any;
|
|
21122
21094
|
}
|
|
@@ -21158,7 +21130,7 @@ declare module 'testit-api-client/model/TestPlanTestPointsInquiryApiModel' {
|
|
|
21158
21130
|
* @alias module:model/TestPlanTestPointsInquiryApiModel
|
|
21159
21131
|
* @param order {Array.<module:model/Order>}
|
|
21160
21132
|
*/
|
|
21161
|
-
constructor(order: Array<
|
|
21133
|
+
constructor(order: Array<any>);
|
|
21162
21134
|
order: any;
|
|
21163
21135
|
page: any;
|
|
21164
21136
|
}
|
|
@@ -21262,7 +21234,7 @@ declare module 'testit-api-client/model/TestPlanTestPointsSearchApiResult' {
|
|
|
21262
21234
|
* @param workItem {module:model/TestPlanTestPointsWorkItemSearchApiResult}
|
|
21263
21235
|
* @param parameters {Array.<module:model/ParameterShortApiResult>}
|
|
21264
21236
|
*/
|
|
21265
|
-
constructor(id: string, created: any, status: string, statusModel: any, inProgress: boolean, configuration: any, testSuite: any, workItem: any, parameters: Array<
|
|
21237
|
+
constructor(id: string, created: any, status: string, statusModel: any, inProgress: boolean, configuration: any, testSuite: any, workItem: any, parameters: Array<any>);
|
|
21266
21238
|
id: any;
|
|
21267
21239
|
created: any;
|
|
21268
21240
|
modified: any;
|
|
@@ -21537,7 +21509,7 @@ declare module 'testit-api-client/model/TestPlanTestPointsStatusTypeGroupApiResu
|
|
|
21537
21509
|
* @param statusType {module:model/TestStatusApiType} Collection of possible status types
|
|
21538
21510
|
* @param statuses {Array.<module:model/TestPlanTestPointsStatusCodeGroupApiResult>}
|
|
21539
21511
|
*/
|
|
21540
|
-
constructor(statusType: any, statuses: Array<
|
|
21512
|
+
constructor(statusType: any, statuses: Array<any>);
|
|
21541
21513
|
statusType: any;
|
|
21542
21514
|
statuses: any;
|
|
21543
21515
|
}
|
|
@@ -21626,7 +21598,7 @@ declare module 'testit-api-client/model/TestPlanTestPointsTesterAndStatusTypeGro
|
|
|
21626
21598
|
* @param statusType {module:model/TestStatusApiType} Collection of possible status types
|
|
21627
21599
|
* @param statuses {Array.<module:model/TestPlanTestPointsStatusCodeGroupApiResult>}
|
|
21628
21600
|
*/
|
|
21629
|
-
constructor(userId: string, statusType: any, statuses: Array<
|
|
21601
|
+
constructor(userId: string, statusType: any, statuses: Array<any>);
|
|
21630
21602
|
userId: any;
|
|
21631
21603
|
statusType: any;
|
|
21632
21604
|
statuses: any;
|
|
@@ -21903,7 +21875,7 @@ declare module 'testit-api-client/model/TestPlanWithTestSuiteTreeModel' {
|
|
|
21903
21875
|
* @param projectId {String}
|
|
21904
21876
|
* @param attributes {Object.<String, Object>}
|
|
21905
21877
|
*/
|
|
21906
|
-
constructor(testSuites: Array<
|
|
21878
|
+
constructor(testSuites: Array<any>, status: any, createdById: string, globalId: number, isDeleted: boolean, id: string, name: string, projectId: string, attributes: any);
|
|
21907
21879
|
testSuites: any;
|
|
21908
21880
|
status: any;
|
|
21909
21881
|
startedOn: any;
|
|
@@ -22026,7 +21998,7 @@ declare module 'testit-api-client/model/TestPointAnalyticResult' {
|
|
|
22026
21998
|
* @param countGroupByTesterAndStatusCode {Array.<module:model/TestPlanGroupByTesterAndStatusCode>}
|
|
22027
21999
|
* @param countGroupByStatusType {Array.<module:model/TestPlanGroupByStatusType>}
|
|
22028
22000
|
*/
|
|
22029
|
-
constructor(countGroupByStatus: Array<
|
|
22001
|
+
constructor(countGroupByStatus: Array<any>, sumGroupByTester: Array<any>, countGroupByTester: Array<any>, countGroupByTestSuite: Array<any>, countGroupByTesterAndStatus: Array<any>, countGroupByStatusCode: Array<any>, countGroupByTesterAndStatusCode: Array<any>, countGroupByStatusType: Array<any>);
|
|
22030
22002
|
countGroupByStatus: any;
|
|
22031
22003
|
sumGroupByTester: any;
|
|
22032
22004
|
countGroupByTester: any;
|
|
@@ -22312,7 +22284,7 @@ declare module 'testit-api-client/model/TestPointResultApiResult' {
|
|
|
22312
22284
|
* @alias module:model/TestPointResultApiResult
|
|
22313
22285
|
* @param testResults {Array.<module:model/TestResultShortApiResult>}
|
|
22314
22286
|
*/
|
|
22315
|
-
constructor(testResults: Array<
|
|
22287
|
+
constructor(testResults: Array<any>);
|
|
22316
22288
|
testPointId: any;
|
|
22317
22289
|
aggregatedOutcome: any;
|
|
22318
22290
|
aggregatedStatus: any;
|
|
@@ -22687,7 +22659,6 @@ declare module 'testit-api-client/model/TestPointStatus' {
|
|
|
22687
22659
|
/**
|
|
22688
22660
|
* *
|
|
22689
22661
|
*/
|
|
22690
|
-
export type TestPointStatus = any;
|
|
22691
22662
|
|
|
22692
22663
|
}
|
|
22693
22664
|
declare module 'testit-api-client/model/TestPointWithLastResultResponseModel' {
|
|
@@ -22807,7 +22778,7 @@ declare module 'testit-api-client/model/TestResultApiResult' {
|
|
|
22807
22778
|
* @param createdById {String}
|
|
22808
22779
|
* @param isDeleted {Boolean}
|
|
22809
22780
|
*/
|
|
22810
|
-
constructor(id: string, outcome: string, testRunId: string, configurationId: string, status: any, attachments: Array<
|
|
22781
|
+
constructor(id: string, outcome: string, testRunId: string, configurationId: string, status: any, attachments: Array<any>, links: Array<any>, failureClasses: Array<any>, createdDate: Date, createdById: string, isDeleted: boolean);
|
|
22811
22782
|
id: any;
|
|
22812
22783
|
startedOn: any;
|
|
22813
22784
|
completedOn: any;
|
|
@@ -23119,7 +23090,6 @@ declare module 'testit-api-client/model/TestResultOutcome' {
|
|
|
23119
23090
|
/**
|
|
23120
23091
|
* *
|
|
23121
23092
|
*/
|
|
23122
|
-
export type TestResultOutcome = any;
|
|
23123
23093
|
|
|
23124
23094
|
}
|
|
23125
23095
|
declare module 'testit-api-client/model/TestResultResponse' {
|
|
@@ -23318,7 +23288,7 @@ declare module 'testit-api-client/model/TestResultShortApiResult' {
|
|
|
23318
23288
|
* @param createdDate {Date}
|
|
23319
23289
|
* @param attachments {Array.<module:model/AttachmentApiResult>}
|
|
23320
23290
|
*/
|
|
23321
|
-
constructor(id: string, outcome: string, status: any, createdDate: Date, attachments: Array<
|
|
23291
|
+
constructor(id: string, outcome: string, status: any, createdDate: Date, attachments: Array<any>);
|
|
23322
23292
|
id: any;
|
|
23323
23293
|
outcome: any;
|
|
23324
23294
|
status: any;
|
|
@@ -23380,7 +23350,7 @@ declare module 'testit-api-client/model/TestResultShortResponse' {
|
|
|
23380
23350
|
* @param attachments {Array.<module:model/AttachmentApiResult>} Collection of files attached to the test result
|
|
23381
23351
|
* @param rerunCompletedCount {Number} Run count
|
|
23382
23352
|
*/
|
|
23383
|
-
constructor(id: string, name: string, autotestGlobalId: number, testRunId: string, configurationId: string, configurationName: string, status: any, resultReasons: Array<
|
|
23353
|
+
constructor(id: string, name: string, autotestGlobalId: number, testRunId: string, configurationId: string, configurationName: string, status: any, resultReasons: Array<any>, date: Date, createdDate: Date, links: Array<any>, attachments: Array<any>, rerunCompletedCount: number);
|
|
23384
23354
|
id: any;
|
|
23385
23355
|
name: any;
|
|
23386
23356
|
autotestGlobalId: any;
|
|
@@ -23664,7 +23634,7 @@ declare module 'testit-api-client/model/TestResultStepCommentUpdateRequest' {
|
|
|
23664
23634
|
* @param stepId {String}
|
|
23665
23635
|
* @param attachments {Array.<module:model/AttachmentUpdateRequest>}
|
|
23666
23636
|
*/
|
|
23667
|
-
constructor(id: string, text: string, stepId: string, attachments: Array<
|
|
23637
|
+
constructor(id: string, text: string, stepId: string, attachments: Array<any>);
|
|
23668
23638
|
id: any;
|
|
23669
23639
|
text: any;
|
|
23670
23640
|
stepId: any;
|
|
@@ -23884,7 +23854,7 @@ declare module 'testit-api-client/model/TestRunAnalyticApiResult' {
|
|
|
23884
23854
|
* @param countGroupByStatusType {Array.<module:model/TestRunGroupByStatusTypeApiResult>}
|
|
23885
23855
|
* @param countGroupByFailureClass {Array.<module:model/TestRunGroupByFailureClassApiResult>}
|
|
23886
23856
|
*/
|
|
23887
|
-
constructor(countGroupByStatus: Array<
|
|
23857
|
+
constructor(countGroupByStatus: Array<any>, countGroupByStatusType: Array<any>, countGroupByFailureClass: Array<any>);
|
|
23888
23858
|
countGroupByStatus: any;
|
|
23889
23859
|
countGroupByStatusType: any;
|
|
23890
23860
|
countGroupByFailureClass: any;
|
|
@@ -23940,7 +23910,7 @@ declare module 'testit-api-client/model/TestRunApiResult' {
|
|
|
23940
23910
|
* @param createdDate {Date}
|
|
23941
23911
|
* @param createdById {String}
|
|
23942
23912
|
*/
|
|
23943
|
-
constructor(id: string, isDeleted: boolean, build: string, stateName: any, status: any, projectId: string, autoTests: Array<
|
|
23913
|
+
constructor(id: string, isDeleted: boolean, build: string, stateName: any, status: any, projectId: string, autoTests: Array<any>, autoTestsCount: number, testSuiteIds: Array<string>, isAutomated: boolean, analytic: any, testResults: Array<any>, createdDate: Date, createdById: string);
|
|
23944
23914
|
id: any;
|
|
23945
23915
|
isDeleted: any;
|
|
23946
23916
|
startedDate: any;
|
|
@@ -24361,7 +24331,7 @@ declare module 'testit-api-client/model/TestRunShortApiResult' {
|
|
|
24361
24331
|
* @param statistics {module:model/TestResultsStatisticsApiResult} Statistics of the test run
|
|
24362
24332
|
* @param testResultsConfigurations {Array.<module:model/ConfigurationShortApiResult>} Test results configurations
|
|
24363
24333
|
*/
|
|
24364
|
-
constructor(id: string, name: string, state: any, status: any, createdDate: Date, createdById: string, isDeleted: boolean, autoTestsCount: number, statistics: any, testResultsConfigurations: Array<
|
|
24334
|
+
constructor(id: string, name: string, state: any, status: any, createdDate: Date, createdById: string, isDeleted: boolean, autoTestsCount: number, statistics: any, testResultsConfigurations: Array<any>);
|
|
24365
24335
|
id: any;
|
|
24366
24336
|
name: any;
|
|
24367
24337
|
state: any;
|
|
@@ -24418,7 +24388,6 @@ declare module 'testit-api-client/model/TestRunState' {
|
|
|
24418
24388
|
/**
|
|
24419
24389
|
* *
|
|
24420
24390
|
*/
|
|
24421
|
-
export type TestRunState = any;
|
|
24422
24391
|
|
|
24423
24392
|
}
|
|
24424
24393
|
declare module 'testit-api-client/model/TestRunStatisticsFilterApiModel' {
|
|
@@ -24570,7 +24539,7 @@ declare module 'testit-api-client/model/TestRunV2ApiResult' {
|
|
|
24570
24539
|
* @param webhooks {Array.<module:model/NamedEntityApiModel>} Enabled webhooks
|
|
24571
24540
|
* @param runCount {Number} Run count
|
|
24572
24541
|
*/
|
|
24573
|
-
constructor(id: string, name: string, stateName: any, status: any, projectId: string, createdDate: Date, createdById: string, attachments: Array<
|
|
24542
|
+
constructor(id: string, name: string, stateName: any, status: any, projectId: string, createdDate: Date, createdById: string, attachments: Array<any>, links: Array<any>, webhooks: Array<any>, runCount: number);
|
|
24574
24543
|
id: any;
|
|
24575
24544
|
name: any;
|
|
24576
24545
|
description: any;
|
|
@@ -24682,7 +24651,7 @@ declare module 'testit-api-client/model/TestStatusApiResultReply' {
|
|
|
24682
24651
|
* @param data {Array.<module:model/TestStatusApiResult>}
|
|
24683
24652
|
* @param totalCount {Number}
|
|
24684
24653
|
*/
|
|
24685
|
-
constructor(data: Array<
|
|
24654
|
+
constructor(data: Array<any>, totalCount: number);
|
|
24686
24655
|
data: any;
|
|
24687
24656
|
totalCount: any;
|
|
24688
24657
|
}
|
|
@@ -24733,7 +24702,6 @@ declare module 'testit-api-client/model/TestStatusApiType' {
|
|
|
24733
24702
|
/**
|
|
24734
24703
|
* *
|
|
24735
24704
|
*/
|
|
24736
|
-
export type TestStatusApiType = any;
|
|
24737
24705
|
|
|
24738
24706
|
}
|
|
24739
24707
|
declare module 'testit-api-client/model/TestStatusModel' {
|
|
@@ -24875,7 +24843,6 @@ declare module 'testit-api-client/model/TestStatusType' {
|
|
|
24875
24843
|
/**
|
|
24876
24844
|
* *
|
|
24877
24845
|
*/
|
|
24878
|
-
export type TestStatusType = any;
|
|
24879
24846
|
|
|
24880
24847
|
}
|
|
24881
24848
|
declare module 'testit-api-client/model/TestSuiteApiResult' {
|
|
@@ -25146,7 +25113,6 @@ declare module 'testit-api-client/model/TestSuiteType' {
|
|
|
25146
25113
|
/**
|
|
25147
25114
|
* *
|
|
25148
25115
|
*/
|
|
25149
|
-
export type TestSuiteType = any;
|
|
25150
25116
|
|
|
25151
25117
|
}
|
|
25152
25118
|
declare module 'testit-api-client/model/TestSuiteTypeApiResult' {
|
|
@@ -25181,7 +25147,6 @@ declare module 'testit-api-client/model/TestSuiteTypeApiResult' {
|
|
|
25181
25147
|
/**
|
|
25182
25148
|
* *
|
|
25183
25149
|
*/
|
|
25184
|
-
export type TestSuiteTypeApiResult = any;
|
|
25185
25150
|
|
|
25186
25151
|
}
|
|
25187
25152
|
declare module 'testit-api-client/model/TestSuiteV2GetModel' {
|
|
@@ -26107,7 +26072,7 @@ declare module 'testit-api-client/model/UpdateWorkflowApiModel' {
|
|
|
26107
26072
|
* @param statuses {Array.<module:model/WorkflowStatusApiModel>}
|
|
26108
26073
|
* @param projectIds {Array.<String>}
|
|
26109
26074
|
*/
|
|
26110
|
-
constructor(name: string, isDefault: boolean, statuses: Array<
|
|
26075
|
+
constructor(name: string, isDefault: boolean, statuses: Array<any>, projectIds: Array<string>);
|
|
26111
26076
|
name: any;
|
|
26112
26077
|
isDefault: any;
|
|
26113
26078
|
statuses: any;
|
|
@@ -26163,7 +26128,7 @@ declare module 'testit-api-client/model/UpdateWorkItemApiModel' {
|
|
|
26163
26128
|
* @param name {String} Workitem name
|
|
26164
26129
|
* @param attachments {Array.<module:model/AssignAttachmentApiModel>}
|
|
26165
26130
|
*/
|
|
26166
|
-
constructor(id: string, sectionId: string, state: any, priority: any, steps: Array<
|
|
26131
|
+
constructor(id: string, sectionId: string, state: any, priority: any, steps: Array<any>, preconditionSteps: Array<any>, postconditionSteps: Array<any>, duration: number, attributes: any, tags: Array<any>, links: Array<any>, name: string, attachments: Array<any>);
|
|
26167
26132
|
id: any;
|
|
26168
26133
|
sectionId: any;
|
|
26169
26134
|
description: any;
|
|
@@ -26583,7 +26548,6 @@ declare module 'testit-api-client/model/WebHookEventType' {
|
|
|
26583
26548
|
/**
|
|
26584
26549
|
* *
|
|
26585
26550
|
*/
|
|
26586
|
-
export type WebHookEventType = any;
|
|
26587
26551
|
|
|
26588
26552
|
}
|
|
26589
26553
|
declare module 'testit-api-client/model/WebHookEventTypeModel' {
|
|
@@ -26688,7 +26652,6 @@ declare module 'testit-api-client/model/WebHookEventTypeModel' {
|
|
|
26688
26652
|
/**
|
|
26689
26653
|
* *
|
|
26690
26654
|
*/
|
|
26691
|
-
export type WebHookEventTypeModel = any;
|
|
26692
26655
|
|
|
26693
26656
|
}
|
|
26694
26657
|
declare module 'testit-api-client/model/WebHookEventTypeRequest' {
|
|
@@ -26793,7 +26756,6 @@ declare module 'testit-api-client/model/WebHookEventTypeRequest' {
|
|
|
26793
26756
|
/**
|
|
26794
26757
|
* *
|
|
26795
26758
|
*/
|
|
26796
|
-
export type WebHookEventTypeRequest = any;
|
|
26797
26759
|
|
|
26798
26760
|
}
|
|
26799
26761
|
declare module 'testit-api-client/model/WebhookLogApiResult' {
|
|
@@ -27357,7 +27319,6 @@ declare module 'testit-api-client/model/WebhookVariablesType' {
|
|
|
27357
27319
|
/**
|
|
27358
27320
|
* *
|
|
27359
27321
|
*/
|
|
27360
|
-
export type WebhookVariablesType = any;
|
|
27361
27322
|
|
|
27362
27323
|
}
|
|
27363
27324
|
declare module 'testit-api-client/model/WorkflowApiResult' {
|
|
@@ -27402,7 +27363,7 @@ declare module 'testit-api-client/model/WorkflowApiResult' {
|
|
|
27402
27363
|
* @param statuses {Array.<module:model/WorkflowStatusApiResult>}
|
|
27403
27364
|
* @param projects {Array.<module:model/WorkflowProjectApiResult>}
|
|
27404
27365
|
*/
|
|
27405
|
-
constructor(id: string, name: string, isSystem: boolean, isDefault: boolean, createdDate: Date, createdById: string, modifiedDate: Date, modifiedById: string, statuses: Array<
|
|
27366
|
+
constructor(id: string, name: string, isSystem: boolean, isDefault: boolean, createdDate: Date, createdById: string, modifiedDate: Date, modifiedById: string, statuses: Array<any>, projects: Array<any>);
|
|
27406
27367
|
id: any;
|
|
27407
27368
|
name: any;
|
|
27408
27369
|
isSystem: any;
|
|
@@ -27535,7 +27496,7 @@ declare module 'testit-api-client/model/WorkflowProjectApiResultApiCollectionPre
|
|
|
27535
27496
|
* @param data {Array.<module:model/WorkflowProjectApiResult>} Preview items
|
|
27536
27497
|
* @param totalCount {Number} Total count
|
|
27537
27498
|
*/
|
|
27538
|
-
constructor(data: Array<
|
|
27499
|
+
constructor(data: Array<any>, totalCount: number);
|
|
27539
27500
|
data: any;
|
|
27540
27501
|
totalCount: any;
|
|
27541
27502
|
}
|
|
@@ -27578,7 +27539,7 @@ declare module 'testit-api-client/model/WorkflowProjectApiResultReply' {
|
|
|
27578
27539
|
* @param data {Array.<module:model/WorkflowProjectApiResult>}
|
|
27579
27540
|
* @param totalCount {Number}
|
|
27580
27541
|
*/
|
|
27581
|
-
constructor(data: Array<
|
|
27542
|
+
constructor(data: Array<any>, totalCount: number);
|
|
27582
27543
|
data: any;
|
|
27583
27544
|
totalCount: any;
|
|
27584
27545
|
}
|
|
@@ -27678,7 +27639,7 @@ declare module 'testit-api-client/model/WorkflowShortApiResultReply' {
|
|
|
27678
27639
|
* @param data {Array.<module:model/WorkflowShortApiResult>}
|
|
27679
27640
|
* @param totalCount {Number}
|
|
27680
27641
|
*/
|
|
27681
|
-
constructor(data: Array<
|
|
27642
|
+
constructor(data: Array<any>, totalCount: number);
|
|
27682
27643
|
data: any;
|
|
27683
27644
|
totalCount: any;
|
|
27684
27645
|
}
|
|
@@ -27844,7 +27805,7 @@ declare module 'testit-api-client/model/WorkItemApiResult' {
|
|
|
27844
27805
|
* @param createdById {String} Unique identifier of the work item creator
|
|
27845
27806
|
* @param isDeleted {Boolean} Indicates whether the work item is marked as deleted
|
|
27846
27807
|
*/
|
|
27847
|
-
constructor(id: string, globalId: number, versionId: string, versionNumber: number, projectId: string, sectionId: string, name: string, sourceType: any, entityTypeName: any, duration: number, medianDuration: number, state: any, priority: any, isAutomated: boolean, attributes: any, tags: Array<
|
|
27808
|
+
constructor(id: string, globalId: number, versionId: string, versionNumber: number, projectId: string, sectionId: string, name: string, sourceType: any, entityTypeName: any, duration: number, medianDuration: number, state: any, priority: any, isAutomated: boolean, attributes: any, tags: Array<any>, sectionPreconditionSteps: Array<any>, sectionPostconditionSteps: Array<any>, preconditionSteps: Array<any>, steps: Array<any>, postconditionSteps: Array<any>, iterations: Array<any>, autoTests: Array<any>, attachments: Array<any>, links: Array<any>, externalIssues: Array<any>, createdDate: Date, createdById: string, isDeleted: boolean);
|
|
27848
27809
|
id: any;
|
|
27849
27810
|
globalId: any;
|
|
27850
27811
|
versionId: any;
|
|
@@ -28230,7 +28191,6 @@ declare module 'testit-api-client/model/WorkItemEntityTypeApiModel' {
|
|
|
28230
28191
|
/**
|
|
28231
28192
|
* *
|
|
28232
28193
|
*/
|
|
28233
|
-
export type WorkItemEntityTypeApiModel = any;
|
|
28234
28194
|
|
|
28235
28195
|
}
|
|
28236
28196
|
declare module 'testit-api-client/model/WorkItemEntityTypes' {
|
|
@@ -28265,7 +28225,6 @@ declare module 'testit-api-client/model/WorkItemEntityTypes' {
|
|
|
28265
28225
|
/**
|
|
28266
28226
|
* *
|
|
28267
28227
|
*/
|
|
28268
|
-
export type WorkItemEntityTypes = any;
|
|
28269
28228
|
|
|
28270
28229
|
}
|
|
28271
28230
|
declare module 'testit-api-client/model/WorkItemExternalMetadataFieldFilterApiModel' {
|
|
@@ -28687,7 +28646,7 @@ declare module 'testit-api-client/model/WorkItemGroupModel' {
|
|
|
28687
28646
|
* @param size {Number}
|
|
28688
28647
|
* @param workItems {Array.<module:model/WorkItemShortModel>}
|
|
28689
28648
|
*/
|
|
28690
|
-
constructor(size: number, workItems: Array<
|
|
28649
|
+
constructor(size: number, workItems: Array<any>);
|
|
28691
28650
|
key: any;
|
|
28692
28651
|
size: any;
|
|
28693
28652
|
workItems: any;
|
|
@@ -28749,7 +28708,6 @@ declare module 'testit-api-client/model/WorkItemGroupType' {
|
|
|
28749
28708
|
/**
|
|
28750
28709
|
* *
|
|
28751
28710
|
*/
|
|
28752
|
-
export type WorkItemGroupType = any;
|
|
28753
28711
|
|
|
28754
28712
|
}
|
|
28755
28713
|
declare module 'testit-api-client/model/WorkItemIdApiModel' {
|
|
@@ -29333,7 +29291,7 @@ declare module 'testit-api-client/model/WorkItemModel' {
|
|
|
29333
29291
|
* @param links {Array.<module:model/LinkModel>}
|
|
29334
29292
|
* @param name {String}
|
|
29335
29293
|
*/
|
|
29336
|
-
constructor(versionId: string, medianDuration: number, isDeleted: boolean, projectId: string, entityTypeName: any, isAutomated: boolean, versionNumber: number, createdDate: Date, createdById: string, globalId: number, externalIssues: Array<
|
|
29294
|
+
constructor(versionId: string, medianDuration: number, isDeleted: boolean, projectId: string, entityTypeName: any, isAutomated: boolean, versionNumber: number, createdDate: Date, createdById: string, globalId: number, externalIssues: Array<any>, id: string, sectionId: string, state: any, priority: any, sourceType: any, steps: Array<any>, preconditionSteps: Array<any>, postconditionSteps: Array<any>, duration: number, attributes: any, tags: Array<any>, links: Array<any>, name: string);
|
|
29337
29295
|
versionId: any;
|
|
29338
29296
|
medianDuration: any;
|
|
29339
29297
|
isDeleted: any;
|
|
@@ -29452,7 +29410,7 @@ declare module 'testit-api-client/model/WorkItemPreviewApiModel' {
|
|
|
29452
29410
|
* @param description {String}
|
|
29453
29411
|
* @param steps {Array.<module:model/WorkItemPreviewStepApiModel>}
|
|
29454
29412
|
*/
|
|
29455
|
-
constructor(name: string, description: string, steps: Array<
|
|
29413
|
+
constructor(name: string, description: string, steps: Array<any>);
|
|
29456
29414
|
name: any;
|
|
29457
29415
|
description: any;
|
|
29458
29416
|
steps: any;
|
|
@@ -29549,7 +29507,6 @@ declare module 'testit-api-client/model/WorkItemPriority' {
|
|
|
29549
29507
|
/**
|
|
29550
29508
|
* *
|
|
29551
29509
|
*/
|
|
29552
|
-
export type WorkItemPriority = any;
|
|
29553
29510
|
|
|
29554
29511
|
}
|
|
29555
29512
|
declare module 'testit-api-client/model/WorkItemPriorityApiModel' {
|
|
@@ -29594,7 +29551,6 @@ declare module 'testit-api-client/model/WorkItemPriorityApiModel' {
|
|
|
29594
29551
|
/**
|
|
29595
29552
|
* *
|
|
29596
29553
|
*/
|
|
29597
|
-
export type WorkItemPriorityApiModel = any;
|
|
29598
29554
|
|
|
29599
29555
|
}
|
|
29600
29556
|
declare module 'testit-api-client/model/WorkItemPriorityModel' {
|
|
@@ -29639,7 +29595,6 @@ declare module 'testit-api-client/model/WorkItemPriorityModel' {
|
|
|
29639
29595
|
/**
|
|
29640
29596
|
* *
|
|
29641
29597
|
*/
|
|
29642
|
-
export type WorkItemPriorityModel = any;
|
|
29643
29598
|
|
|
29644
29599
|
}
|
|
29645
29600
|
declare module 'testit-api-client/model/WorkItemSearchQueryModel' {
|
|
@@ -29831,7 +29786,7 @@ declare module 'testit-api-client/model/WorkItemShortApiResult' {
|
|
|
29831
29786
|
* @param iterations {Array.<module:model/IterationApiResult>} Set of iterations related to Work Item
|
|
29832
29787
|
* @param links {Array.<module:model/LinkShortApiResult>} Set of links related to Work Item
|
|
29833
29788
|
*/
|
|
29834
|
-
constructor(id: string, versionId: string, versionNumber: number, name: string, entityTypeName: string, projectId: string, sectionId: string, sectionName: string, isAutomated: boolean, globalId: number, duration: number, createdById: string, state: any, priority: any, sourceType: any, isDeleted: boolean, iterations: Array<
|
|
29789
|
+
constructor(id: string, versionId: string, versionNumber: number, name: string, entityTypeName: string, projectId: string, sectionId: string, sectionName: string, isAutomated: boolean, globalId: number, duration: number, createdById: string, state: any, priority: any, sourceType: any, isDeleted: boolean, iterations: Array<any>, links: Array<any>);
|
|
29835
29790
|
id: any;
|
|
29836
29791
|
versionId: any;
|
|
29837
29792
|
versionNumber: any;
|
|
@@ -29912,7 +29867,7 @@ declare module 'testit-api-client/model/WorkItemShortModel' {
|
|
|
29912
29867
|
* @param iterations {Array.<module:model/IterationModel>} Set of iterations related to Work Item
|
|
29913
29868
|
* @param links {Array.<module:model/LinkShortModel>} Set of links related to Work Item
|
|
29914
29869
|
*/
|
|
29915
|
-
constructor(id: string, versionId: string, versionNumber: number, name: string, entityTypeName: string, projectId: string, sectionId: string, sectionName: string, isAutomated: boolean, globalId: number, duration: number, createdById: string, state: any, priority: any, sourceType: any, isDeleted: boolean, iterations: Array<
|
|
29870
|
+
constructor(id: string, versionId: string, versionNumber: number, name: string, entityTypeName: string, projectId: string, sectionId: string, sectionName: string, isAutomated: boolean, globalId: number, duration: number, createdById: string, state: any, priority: any, sourceType: any, isDeleted: boolean, iterations: Array<any>, links: Array<any>);
|
|
29916
29871
|
id: any;
|
|
29917
29872
|
versionId: any;
|
|
29918
29873
|
versionNumber: any;
|
|
@@ -29970,7 +29925,6 @@ declare module 'testit-api-client/model/WorkItemSourceTypeApiModel' {
|
|
|
29970
29925
|
/**
|
|
29971
29926
|
* *
|
|
29972
29927
|
*/
|
|
29973
|
-
export type WorkItemSourceTypeApiModel = any;
|
|
29974
29928
|
|
|
29975
29929
|
}
|
|
29976
29930
|
declare module 'testit-api-client/model/WorkItemSourceTypeModel' {
|
|
@@ -30000,7 +29954,6 @@ declare module 'testit-api-client/model/WorkItemSourceTypeModel' {
|
|
|
30000
29954
|
/**
|
|
30001
29955
|
* *
|
|
30002
29956
|
*/
|
|
30003
|
-
export type WorkItemSourceTypeModel = any;
|
|
30004
29957
|
|
|
30005
29958
|
}
|
|
30006
29959
|
declare module 'testit-api-client/model/WorkItemState' {
|
|
@@ -30035,7 +29988,6 @@ declare module 'testit-api-client/model/WorkItemState' {
|
|
|
30035
29988
|
/**
|
|
30036
29989
|
* *
|
|
30037
29990
|
*/
|
|
30038
|
-
export type WorkItemState = any;
|
|
30039
29991
|
|
|
30040
29992
|
}
|
|
30041
29993
|
declare module 'testit-api-client/model/WorkItemStateApiModel' {
|
|
@@ -30070,7 +30022,6 @@ declare module 'testit-api-client/model/WorkItemStateApiModel' {
|
|
|
30070
30022
|
/**
|
|
30071
30023
|
* *
|
|
30072
30024
|
*/
|
|
30073
|
-
export type WorkItemStateApiModel = any;
|
|
30074
30025
|
|
|
30075
30026
|
}
|
|
30076
30027
|
declare module 'testit-api-client/model/WorkItemStates' {
|
|
@@ -30105,7 +30056,6 @@ declare module 'testit-api-client/model/WorkItemStates' {
|
|
|
30105
30056
|
/**
|
|
30106
30057
|
* *
|
|
30107
30058
|
*/
|
|
30108
|
-
export type WorkItemStates = any;
|
|
30109
30059
|
|
|
30110
30060
|
}
|
|
30111
30061
|
declare module 'testit-api-client/model/WorkItemStepChangeViewModel' {
|