1 | import SystemData = require("../interfaces/common/SystemDataInterfaces");
|
2 | import TfsCoreInterfaces = require("../interfaces/CoreInterfaces");
|
3 | import VSSInterfaces = require("../interfaces/common/VSSInterfaces");
|
4 | export interface AbortTestRunRequest {
|
5 | options?: number;
|
6 | projectName?: string;
|
7 | revision?: number;
|
8 | testRunId?: number;
|
9 | }
|
10 | export interface AfnStrip {
|
11 | |
12 |
|
13 |
|
14 | auxiliaryUrl?: string;
|
15 | |
16 |
|
17 |
|
18 | creationDate?: Date;
|
19 | |
20 |
|
21 |
|
22 | fileName?: string;
|
23 | |
24 |
|
25 |
|
26 | id?: number;
|
27 | |
28 |
|
29 |
|
30 | project?: string;
|
31 | |
32 |
|
33 |
|
34 | storedIn?: string;
|
35 | |
36 |
|
37 |
|
38 | stream?: string;
|
39 | |
40 |
|
41 |
|
42 | testCaseId?: number;
|
43 | |
44 |
|
45 |
|
46 | testResultId?: number;
|
47 | |
48 |
|
49 |
|
50 | testRunId?: number;
|
51 | |
52 |
|
53 |
|
54 | unCompressedStreamLength?: number;
|
55 | |
56 |
|
57 |
|
58 | url?: string;
|
59 | }
|
60 | export interface AggregatedDataForResultTrend {
|
61 | |
62 |
|
63 |
|
64 | duration?: any;
|
65 | resultsByOutcome?: {
|
66 | [key: number]: AggregatedResultsByOutcome;
|
67 | };
|
68 | runSummaryByState?: {
|
69 | [key: number]: AggregatedRunsByState;
|
70 | };
|
71 | testResultsContext: TestResultsContext;
|
72 | totalTests?: number;
|
73 | }
|
74 |
|
75 |
|
76 |
|
77 | export interface AggregatedResultDetailsByOutcome {
|
78 | |
79 |
|
80 |
|
81 | count?: number;
|
82 | |
83 |
|
84 |
|
85 | duration?: any;
|
86 | |
87 |
|
88 |
|
89 | outcome?: TestOutcome;
|
90 | |
91 |
|
92 |
|
93 | rerunResultCount?: number;
|
94 | }
|
95 | export interface AggregatedResultsAnalysis {
|
96 | duration?: any;
|
97 | notReportedResultsByOutcome?: {
|
98 | [key: number]: AggregatedResultsByOutcome;
|
99 | };
|
100 | previousContext?: TestResultsContext;
|
101 | resultsByOutcome?: {
|
102 | [key: number]: AggregatedResultsByOutcome;
|
103 | };
|
104 | resultsDifference?: AggregatedResultsDifference;
|
105 | runSummaryByOutcome?: {
|
106 | [key: number]: AggregatedRunsByOutcome;
|
107 | };
|
108 | runSummaryByState?: {
|
109 | [key: number]: AggregatedRunsByState;
|
110 | };
|
111 | totalTests?: number;
|
112 | }
|
113 | export interface AggregatedResultsByOutcome {
|
114 | count?: number;
|
115 | duration?: any;
|
116 | groupByField?: string;
|
117 | groupByValue?: any;
|
118 | outcome?: TestOutcome;
|
119 | rerunResultCount?: number;
|
120 | }
|
121 | export interface AggregatedResultsDifference {
|
122 | increaseInDuration?: any;
|
123 | increaseInFailures?: number;
|
124 | increaseInNonImpactedTests?: number;
|
125 | increaseInOtherTests?: number;
|
126 | increaseInPassedTests?: number;
|
127 | increaseInTotalTests?: number;
|
128 | }
|
129 | export interface AggregatedRunsByOutcome {
|
130 | outcome?: TestRunOutcome;
|
131 | runsCount?: number;
|
132 | }
|
133 | export interface AggregatedRunsByState {
|
134 | resultsByOutcome?: {
|
135 | [key: number]: AggregatedResultsByOutcome;
|
136 | };
|
137 | runsCount?: number;
|
138 | state?: TestRunState;
|
139 | }
|
140 |
|
141 |
|
142 |
|
143 | export declare enum AttachmentType {
|
144 | |
145 |
|
146 |
|
147 | GeneralAttachment = 0,
|
148 | AfnStrip = 1,
|
149 | BugFilingData = 2,
|
150 | |
151 |
|
152 |
|
153 | CodeCoverage = 3,
|
154 | IntermediateCollectorData = 4,
|
155 | RunConfig = 5,
|
156 | TestImpactDetails = 6,
|
157 | TmiTestRunDeploymentFiles = 7,
|
158 | TmiTestRunReverseDeploymentFiles = 8,
|
159 | TmiTestResultDetail = 9,
|
160 | TmiTestRunSummary = 10,
|
161 | |
162 |
|
163 |
|
164 | ConsoleLog = 11
|
165 | }
|
166 | export interface BatchResponse {
|
167 | error: string;
|
168 | responses?: Response[];
|
169 | status: string;
|
170 | }
|
171 |
|
172 |
|
173 |
|
174 | export interface BuildConfiguration {
|
175 | |
176 |
|
177 |
|
178 | branchName?: string;
|
179 | |
180 |
|
181 |
|
182 | buildDefinitionId?: number;
|
183 | |
184 |
|
185 |
|
186 | buildSystem?: string;
|
187 | |
188 |
|
189 |
|
190 | creationDate?: Date;
|
191 | |
192 |
|
193 |
|
194 | flavor?: string;
|
195 | |
196 |
|
197 |
|
198 | id?: number;
|
199 | |
200 |
|
201 |
|
202 | number?: string;
|
203 | |
204 |
|
205 |
|
206 | platform?: string;
|
207 | |
208 |
|
209 |
|
210 | project?: ShallowReference;
|
211 | |
212 |
|
213 |
|
214 | repositoryGuid?: string;
|
215 | |
216 |
|
217 |
|
218 | repositoryId?: number;
|
219 | |
220 |
|
221 |
|
222 | repositoryType?: string;
|
223 | |
224 |
|
225 |
|
226 | sourceVersion?: string;
|
227 | |
228 |
|
229 |
|
230 | targetBranchName?: string;
|
231 | |
232 |
|
233 |
|
234 | uri?: string;
|
235 | }
|
236 |
|
237 |
|
238 |
|
239 | export interface BuildCoverage {
|
240 | |
241 |
|
242 |
|
243 | codeCoverageFileUrl?: string;
|
244 | |
245 |
|
246 |
|
247 | configuration?: BuildConfiguration;
|
248 | |
249 |
|
250 |
|
251 | lastError?: string;
|
252 | |
253 |
|
254 |
|
255 | modules?: ModuleCoverage[];
|
256 | |
257 |
|
258 |
|
259 | state?: string;
|
260 | }
|
261 |
|
262 |
|
263 |
|
264 | export interface BuildReference {
|
265 | |
266 |
|
267 |
|
268 | branchName?: string;
|
269 | |
270 |
|
271 |
|
272 | buildSystem?: string;
|
273 | |
274 |
|
275 |
|
276 | definitionId?: number;
|
277 | |
278 |
|
279 |
|
280 | id?: number;
|
281 | |
282 |
|
283 |
|
284 | number?: string;
|
285 | |
286 |
|
287 |
|
288 | repositoryId?: string;
|
289 | |
290 |
|
291 |
|
292 | uri?: string;
|
293 | }
|
294 | export interface BuildReference2 {
|
295 | branchName?: string;
|
296 | buildConfigurationId?: number;
|
297 | buildDefinitionId?: number;
|
298 | buildDeleted?: boolean;
|
299 | buildFlavor?: string;
|
300 | buildId?: number;
|
301 | buildNumber?: string;
|
302 | buildPlatform?: string;
|
303 | buildSystem?: string;
|
304 | buildUri?: string;
|
305 | coverageId?: number;
|
306 | createdDate?: Date;
|
307 | projectId?: string;
|
308 | repoId?: string;
|
309 | repoType?: string;
|
310 | sourceVersion?: string;
|
311 | }
|
312 | export interface BulkResultUpdateRequest {
|
313 | projectName?: string;
|
314 | requests?: ResultUpdateRequest[];
|
315 | }
|
316 |
|
317 |
|
318 |
|
319 | export interface CloneOperationInformation {
|
320 | |
321 |
|
322 |
|
323 | cloneStatistics?: CloneStatistics;
|
324 | |
325 |
|
326 |
|
327 | completionDate?: Date;
|
328 | |
329 |
|
330 |
|
331 | creationDate?: Date;
|
332 | |
333 |
|
334 |
|
335 | destinationObject?: ShallowReference;
|
336 | |
337 |
|
338 |
|
339 | destinationPlan?: ShallowReference;
|
340 | |
341 |
|
342 |
|
343 | destinationProject?: ShallowReference;
|
344 | |
345 |
|
346 |
|
347 | message?: string;
|
348 | |
349 |
|
350 |
|
351 | opId?: number;
|
352 | |
353 |
|
354 |
|
355 | resultObjectType?: ResultObjectType;
|
356 | |
357 |
|
358 |
|
359 | sourceObject?: ShallowReference;
|
360 | |
361 |
|
362 |
|
363 | sourcePlan?: ShallowReference;
|
364 | |
365 |
|
366 |
|
367 | sourceProject?: ShallowReference;
|
368 | |
369 |
|
370 |
|
371 | state?: CloneOperationState;
|
372 | |
373 |
|
374 |
|
375 | url?: string;
|
376 | }
|
377 |
|
378 |
|
379 |
|
380 | export declare enum CloneOperationState {
|
381 | |
382 |
|
383 |
|
384 | Failed = 2,
|
385 | |
386 |
|
387 |
|
388 | InProgress = 1,
|
389 | |
390 |
|
391 |
|
392 | Queued = 0,
|
393 | |
394 |
|
395 |
|
396 | Succeeded = 3
|
397 | }
|
398 |
|
399 |
|
400 |
|
401 | export interface CloneOptions {
|
402 | |
403 |
|
404 |
|
405 | cloneRequirements?: boolean;
|
406 | |
407 |
|
408 |
|
409 | copyAllSuites?: boolean;
|
410 | |
411 |
|
412 |
|
413 | copyAncestorHierarchy?: boolean;
|
414 | |
415 |
|
416 |
|
417 | destinationWorkItemType?: string;
|
418 | |
419 |
|
420 |
|
421 | overrideParameters?: {
|
422 | [key: string]: string;
|
423 | };
|
424 | |
425 |
|
426 |
|
427 | relatedLinkComment?: string;
|
428 | }
|
429 |
|
430 |
|
431 |
|
432 | export interface CloneStatistics {
|
433 | |
434 |
|
435 |
|
436 | clonedRequirementsCount?: number;
|
437 | |
438 |
|
439 |
|
440 | clonedSharedStepsCount?: number;
|
441 | |
442 |
|
443 |
|
444 | clonedTestCasesCount?: number;
|
445 | |
446 |
|
447 |
|
448 | totalRequirementsCount?: number;
|
449 | |
450 |
|
451 |
|
452 | totalTestCasesCount?: number;
|
453 | }
|
454 | export interface CloneTestCaseOptions {
|
455 | |
456 |
|
457 |
|
458 | includeAttachments?: boolean;
|
459 | |
460 |
|
461 |
|
462 | includeLinks?: boolean;
|
463 | |
464 |
|
465 |
|
466 | relatedLinkComment?: string;
|
467 | }
|
468 |
|
469 |
|
470 |
|
471 | export interface CodeCoverageData {
|
472 | |
473 |
|
474 |
|
475 | buildFlavor: string;
|
476 | |
477 |
|
478 |
|
479 | buildPlatform: string;
|
480 | |
481 |
|
482 |
|
483 | coverageStats: CodeCoverageStatistics[];
|
484 | }
|
485 |
|
486 |
|
487 |
|
488 | export interface CodeCoverageStatistics {
|
489 | |
490 |
|
491 |
|
492 | covered: number;
|
493 | |
494 |
|
495 |
|
496 | delta?: number;
|
497 | |
498 |
|
499 |
|
500 | isDeltaAvailable?: boolean;
|
501 | |
502 |
|
503 |
|
504 | label: string;
|
505 | |
506 |
|
507 |
|
508 | position: number;
|
509 | |
510 |
|
511 |
|
512 | total: number;
|
513 | }
|
514 |
|
515 |
|
516 |
|
517 | export interface CodeCoverageSummary {
|
518 | |
519 |
|
520 |
|
521 | build: ShallowReference;
|
522 | |
523 |
|
524 |
|
525 | coverageData?: CodeCoverageData[];
|
526 | coverageDetailedSummaryStatus?: CoverageDetailedSummaryStatus;
|
527 | |
528 |
|
529 |
|
530 | deltaBuild?: ShallowReference;
|
531 | |
532 |
|
533 |
|
534 | status?: CoverageSummaryStatus;
|
535 | }
|
536 | export interface CodeCoverageSummary2 {
|
537 | buildConfigurationId?: number;
|
538 | covered?: number;
|
539 | label?: string;
|
540 | position?: number;
|
541 | projectId?: string;
|
542 | total?: number;
|
543 | }
|
544 | export interface Coverage2 {
|
545 | coverageId?: number;
|
546 | dateCreated?: Date;
|
547 | dateModified?: Date;
|
548 | lastError?: string;
|
549 | state?: number;
|
550 | }
|
551 |
|
552 |
|
553 |
|
554 | export declare enum CoverageDetailedSummaryStatus {
|
555 | |
556 |
|
557 |
|
558 | None = 0,
|
559 | |
560 |
|
561 |
|
562 | InProgress = 1,
|
563 | |
564 |
|
565 |
|
566 | Finalized = 2,
|
567 | |
568 |
|
569 |
|
570 | Pending = 3,
|
571 | |
572 |
|
573 |
|
574 | UpdateRequestQueued = 4,
|
575 | |
576 |
|
577 |
|
578 | NoModulesFound = 5,
|
579 | |
580 |
|
581 |
|
582 | NumberOfFilesExceeded = 6,
|
583 | |
584 |
|
585 |
|
586 | NoInputFiles = 7,
|
587 | |
588 |
|
589 |
|
590 | BuildCancelled = 8,
|
591 | |
592 |
|
593 |
|
594 | FailedJobs = 9,
|
595 | |
596 |
|
597 |
|
598 | ModuleMergeJobTimeout = 10,
|
599 | |
600 |
|
601 |
|
602 | CodeCoverageSuccess = 11,
|
603 | |
604 |
|
605 |
|
606 | InvalidBuildConfiguration = 12,
|
607 | |
608 |
|
609 |
|
610 | CoverageAnalyzerBuildNotFound = 13,
|
611 | |
612 |
|
613 |
|
614 | FailedToRequeue = 14,
|
615 | |
616 |
|
617 |
|
618 | BuildBailedOut = 15,
|
619 | |
620 |
|
621 |
|
622 | NoCodeCoverageTask = 16,
|
623 | |
624 |
|
625 |
|
626 | MergeJobFailed = 17,
|
627 | |
628 |
|
629 |
|
630 | MergeInvokerJobFailed = 18,
|
631 | |
632 |
|
633 |
|
634 | MonitorJobFailed = 19,
|
635 | |
636 |
|
637 |
|
638 | ModuleMergeInvokerJobTimeout = 20,
|
639 | |
640 |
|
641 |
|
642 | MonitorJobTimeout = 21,
|
643 | |
644 |
|
645 |
|
646 | InvalidCoverageInput = 22
|
647 | }
|
648 |
|
649 |
|
650 |
|
651 | export declare enum CoverageQueryFlags {
|
652 | |
653 |
|
654 |
|
655 | Modules = 1,
|
656 | |
657 |
|
658 |
|
659 | Functions = 2,
|
660 | |
661 |
|
662 |
|
663 | BlockData = 4
|
664 | }
|
665 | export interface CoverageStatistics {
|
666 | blocksCovered?: number;
|
667 | blocksNotCovered?: number;
|
668 | linesCovered?: number;
|
669 | linesNotCovered?: number;
|
670 | linesPartiallyCovered?: number;
|
671 | }
|
672 | export declare enum CoverageStatus {
|
673 | Covered = 0,
|
674 | NotCovered = 1,
|
675 | PartiallyCovered = 2
|
676 | }
|
677 |
|
678 |
|
679 |
|
680 | export declare enum CoverageSummaryStatus {
|
681 | |
682 |
|
683 |
|
684 | None = 0,
|
685 | |
686 |
|
687 |
|
688 | InProgress = 1,
|
689 | |
690 |
|
691 |
|
692 | Completed = 2,
|
693 | |
694 |
|
695 |
|
696 | Finalized = 3,
|
697 | |
698 |
|
699 |
|
700 | Pending = 4,
|
701 | |
702 |
|
703 |
|
704 | UpdateRequestQueued = 5
|
705 | }
|
706 | export interface CreateTestMessageLogEntryRequest {
|
707 | projectName?: string;
|
708 | testMessageLogEntry?: TestMessageLogEntry[];
|
709 | testRunId?: number;
|
710 | }
|
711 | export interface CreateTestResultsRequest {
|
712 | projectName?: string;
|
713 | results?: LegacyTestCaseResult[];
|
714 | }
|
715 | export interface CreateTestRunRequest {
|
716 | projectName?: string;
|
717 | results?: LegacyTestCaseResult[];
|
718 | testRun?: LegacyTestRun;
|
719 | testSettings?: LegacyTestSettings;
|
720 | }
|
721 |
|
722 |
|
723 |
|
724 | export interface CustomTestField {
|
725 | |
726 |
|
727 |
|
728 | fieldName: string;
|
729 | |
730 |
|
731 |
|
732 | value: any;
|
733 | }
|
734 | export interface CustomTestFieldDefinition {
|
735 | fieldId?: number;
|
736 | fieldName: string;
|
737 | fieldType: CustomTestFieldType;
|
738 | scope: CustomTestFieldScope;
|
739 | }
|
740 | export declare enum CustomTestFieldScope {
|
741 | None = 0,
|
742 | TestRun = 1,
|
743 | TestResult = 2,
|
744 | System = 4,
|
745 | All = 7
|
746 | }
|
747 | export declare enum CustomTestFieldType {
|
748 | Bit = 2,
|
749 | DateTime = 4,
|
750 | Int = 8,
|
751 | Float = 6,
|
752 | String = 12,
|
753 | Guid = 14
|
754 | }
|
755 | export interface DatedTestFieldData {
|
756 | date?: Date;
|
757 | value?: TestFieldData;
|
758 | }
|
759 | export interface DefaultAfnStripBinding {
|
760 | testCaseId?: number;
|
761 | testResultId?: number;
|
762 | testRunId?: number;
|
763 | }
|
764 | export interface DeleteTestRunRequest {
|
765 | projectName?: string;
|
766 | testRunIds?: number[];
|
767 | }
|
768 | export interface DownloadAttachmentsRequest {
|
769 | ids?: number[];
|
770 | lengths?: number[];
|
771 | }
|
772 |
|
773 |
|
774 |
|
775 | export interface DtlEnvironmentDetails {
|
776 | csmContent: string;
|
777 | csmParameters?: string;
|
778 | subscriptionName?: string;
|
779 | }
|
780 |
|
781 |
|
782 |
|
783 | export interface FailingSince {
|
784 | |
785 |
|
786 |
|
787 | build?: BuildReference;
|
788 | |
789 |
|
790 |
|
791 | date: Date;
|
792 | |
793 |
|
794 |
|
795 | release?: ReleaseReference;
|
796 | }
|
797 | export interface FetchTestResultsRequest {
|
798 | idAndRevs?: TestCaseResultIdAndRev[];
|
799 | includeActionResults?: boolean;
|
800 | projectName?: string;
|
801 | }
|
802 | export interface FetchTestResultsResponse {
|
803 | actionResults?: TestActionResult[];
|
804 | attachments?: TestResultAttachment[];
|
805 | deletedIds?: LegacyTestCaseResultIdentifier[];
|
806 | results?: LegacyTestCaseResult[];
|
807 | testParameters?: TestResultParameter[];
|
808 | }
|
809 | export interface FieldDetailsForTestResults {
|
810 | |
811 |
|
812 |
|
813 | fieldName?: string;
|
814 | |
815 |
|
816 |
|
817 | groupsForField?: any[];
|
818 | }
|
819 | export interface FileCoverage {
|
820 | |
821 |
|
822 |
|
823 | lineBlocksCoverage?: LineBlockCoverage[];
|
824 | |
825 |
|
826 |
|
827 | path: string;
|
828 | }
|
829 | export interface FileCoverageData {
|
830 | coverageStatistics?: CoverageStatistics;
|
831 | name?: string;
|
832 | }
|
833 | export interface FileCoverageRequest {
|
834 | filePath: string;
|
835 | pullRequestBaseIterationId: number;
|
836 | pullRequestId: number;
|
837 | pullRequestIterationId: number;
|
838 | repoId: string;
|
839 | }
|
840 | export interface FilterPointQuery {
|
841 | planId: number;
|
842 | pointIds: number[];
|
843 | pointOutcome: number[];
|
844 | resultState: number[];
|
845 | }
|
846 | export interface FlakyDetection {
|
847 | |
848 |
|
849 |
|
850 | flakyDetectionPipelines?: FlakyDetectionPipelines;
|
851 | |
852 |
|
853 |
|
854 | flakyDetectionType: FlakyDetectionType;
|
855 | }
|
856 | export interface FlakyDetectionPipelines {
|
857 | |
858 |
|
859 |
|
860 | allowedPipelines?: number[];
|
861 | |
862 |
|
863 |
|
864 | isAllPipelinesAllowed: boolean;
|
865 | }
|
866 | export declare enum FlakyDetectionType {
|
867 | |
868 |
|
869 |
|
870 | Custom = 1,
|
871 | |
872 |
|
873 |
|
874 | System = 2
|
875 | }
|
876 | export interface FlakySettings {
|
877 | |
878 |
|
879 |
|
880 | flakyDetection?: FlakyDetection;
|
881 | |
882 |
|
883 |
|
884 | flakyInSummaryReport?: boolean;
|
885 | |
886 |
|
887 |
|
888 | isFlakyBugCreated?: boolean;
|
889 | |
890 |
|
891 |
|
892 | manualMarkUnmarkFlaky?: boolean;
|
893 | }
|
894 | export interface FolderCoverageData {
|
895 | coverageStatistics?: CoverageStatistics;
|
896 | files?: FileCoverageData[];
|
897 | folders?: FolderCoverageData[];
|
898 | name?: string;
|
899 | }
|
900 | export interface FunctionCoverage {
|
901 | class?: string;
|
902 | name?: string;
|
903 | namespace?: string;
|
904 | sourceFile?: string;
|
905 | statistics?: CoverageStatistics;
|
906 | }
|
907 | export interface FunctionCoverage2 {
|
908 | blocksCovered?: number;
|
909 | blocksNotCovered?: number;
|
910 | class?: string;
|
911 | coverageId?: number;
|
912 | functionId?: number;
|
913 | linesCovered?: number;
|
914 | linesNotCovered?: number;
|
915 | linesPartiallyCovered?: number;
|
916 | moduleId?: number;
|
917 | name?: string;
|
918 | namespace?: string;
|
919 | sourceFile?: string;
|
920 | }
|
921 | export interface HttpPostedTcmAttachment {
|
922 | attachmentContent?: string;
|
923 | contentLength?: number;
|
924 | contentType?: string;
|
925 | fileName?: string;
|
926 | }
|
927 |
|
928 |
|
929 |
|
930 | export interface JobReference {
|
931 | |
932 |
|
933 |
|
934 | attempt?: number;
|
935 | |
936 |
|
937 |
|
938 | jobName?: string;
|
939 | }
|
940 |
|
941 |
|
942 |
|
943 | export interface LastResultDetails {
|
944 | |
945 |
|
946 |
|
947 | dateCompleted?: Date;
|
948 | |
949 |
|
950 |
|
951 | duration?: number;
|
952 | |
953 |
|
954 |
|
955 | runBy?: VSSInterfaces.IdentityRef;
|
956 | }
|
957 | export interface LegacyBuildConfiguration {
|
958 | branchName?: string;
|
959 | buildConfigurationId?: number;
|
960 | buildDefinitionId?: number;
|
961 | buildDefinitionName?: string;
|
962 | buildFlavor?: string;
|
963 | buildId?: number;
|
964 | buildNumber?: string;
|
965 | buildPlatform?: string;
|
966 | buildQuality?: string;
|
967 | buildSystem?: string;
|
968 | buildUri?: string;
|
969 | completedDate?: Date;
|
970 | createdDate?: Date;
|
971 | oldBuildConfigurationId?: number;
|
972 | repositoryId?: string;
|
973 | repositoryType?: string;
|
974 | sourceVersion?: string;
|
975 | teamProjectName?: string;
|
976 | }
|
977 | export interface LegacyReleaseReference {
|
978 | attempt?: number;
|
979 | environmentCreationDate?: Date;
|
980 | primaryArtifactBuildId?: number;
|
981 | primaryArtifactProjectId?: string;
|
982 | primaryArtifactType?: string;
|
983 | releaseCreationDate?: Date;
|
984 | releaseDefId?: number;
|
985 | releaseEnvDefId?: number;
|
986 | releaseEnvId?: number;
|
987 | releaseEnvName?: string;
|
988 | releaseEnvUri?: string;
|
989 | releaseId?: number;
|
990 | releaseName?: string;
|
991 | releaseRefId?: number;
|
992 | releaseUri?: string;
|
993 | }
|
994 | export interface LegacyTestCaseResult {
|
995 | afnStripId?: number;
|
996 | areaId?: number;
|
997 | areaUri?: string;
|
998 | automatedTestId?: string;
|
999 | automatedTestName?: string;
|
1000 | automatedTestStorage?: string;
|
1001 | automatedTestType?: string;
|
1002 | automatedTestTypeId?: string;
|
1003 | buildNumber?: string;
|
1004 | buildReference?: LegacyBuildConfiguration;
|
1005 | comment?: string;
|
1006 | computerName?: string;
|
1007 | configurationId?: number;
|
1008 | configurationName?: string;
|
1009 | creationDate?: Date;
|
1010 | customFields?: TestExtensionField[];
|
1011 | dateCompleted?: Date;
|
1012 | dateStarted?: Date;
|
1013 | duration?: number;
|
1014 | errorMessage?: string;
|
1015 | failingSince?: FailingSince;
|
1016 | failureType?: number;
|
1017 | id?: LegacyTestCaseResultIdentifier;
|
1018 | isRerun?: boolean;
|
1019 | lastUpdated?: Date;
|
1020 | lastUpdatedBy?: string;
|
1021 | lastUpdatedByName?: string;
|
1022 | outcome?: number;
|
1023 | owner?: string;
|
1024 | ownerName?: string;
|
1025 | priority?: number;
|
1026 | releaseReference?: LegacyReleaseReference;
|
1027 | resetCount?: number;
|
1028 | resolutionStateId?: number;
|
1029 | resultGroupType?: ResultGroupType;
|
1030 | revision?: number;
|
1031 | runBy?: string;
|
1032 | runByName?: string;
|
1033 | sequenceId?: number;
|
1034 | stackTrace?: TestExtensionField;
|
1035 | state?: number;
|
1036 | subResultCount?: number;
|
1037 | suiteName?: string;
|
1038 | testCaseArea?: string;
|
1039 | testCaseAreaUri?: string;
|
1040 | testCaseId?: number;
|
1041 | testCaseReferenceId?: number;
|
1042 | testCaseRevision?: number;
|
1043 | testCaseTitle?: string;
|
1044 | testPlanId?: number;
|
1045 | testPointId?: number;
|
1046 | testResultId?: number;
|
1047 | testRunId?: number;
|
1048 | testRunTitle?: string;
|
1049 | testSuiteId?: number;
|
1050 | }
|
1051 | export interface LegacyTestCaseResultIdentifier {
|
1052 | areaUri?: string;
|
1053 | testResultId?: number;
|
1054 | testRunId?: number;
|
1055 | }
|
1056 | export interface LegacyTestRun {
|
1057 | bugsCount?: number;
|
1058 | buildConfigurationId?: number;
|
1059 | buildFlavor?: string;
|
1060 | buildNumber?: string;
|
1061 | buildPlatform?: string;
|
1062 | buildReference?: LegacyBuildConfiguration;
|
1063 | buildUri?: string;
|
1064 | comment?: string;
|
1065 | completeDate?: Date;
|
1066 | configurationIds?: number[];
|
1067 | controller?: string;
|
1068 | creationDate?: Date;
|
1069 | csmContent?: string;
|
1070 | csmParameters?: string;
|
1071 | customFields?: TestExtensionField[];
|
1072 | dropLocation?: string;
|
1073 | dtlAutEnvironment?: ShallowReference;
|
1074 | dtlTestEnvironment?: ShallowReference;
|
1075 | dueDate?: Date;
|
1076 | errorMessage?: string;
|
1077 | filter?: RunFilter;
|
1078 | incompleteTests?: number;
|
1079 | isAutomated?: boolean;
|
1080 | isBvt?: boolean;
|
1081 | iteration?: string;
|
1082 | iterationId?: number;
|
1083 | lastUpdated?: Date;
|
1084 | lastUpdatedBy?: string;
|
1085 | lastUpdatedByName?: string;
|
1086 | legacySharePath?: string;
|
1087 | notApplicableTests?: number;
|
1088 | owner?: string;
|
1089 | ownerName?: string;
|
1090 | passedTests?: number;
|
1091 | postProcessState?: number;
|
1092 | publicTestSettingsId?: number;
|
1093 | releaseEnvironmentUri?: string;
|
1094 | releaseReference?: LegacyReleaseReference;
|
1095 | releaseUri?: string;
|
1096 | revision?: number;
|
1097 | rowVersion?: number[];
|
1098 | runHasDtlEnvironment?: boolean;
|
1099 | runTimeout?: any;
|
1100 | serviceVersion?: string;
|
1101 | sourceWorkflow?: string;
|
1102 | startDate?: Date;
|
1103 | state?: number;
|
1104 | subscriptionName?: string;
|
1105 | substate?: number;
|
1106 | teamProject?: string;
|
1107 | teamProjectUri?: string;
|
1108 | testConfigurationsMapping?: string;
|
1109 | testEnvironmentId?: string;
|
1110 | testMessageLogEntries?: TestMessageLogDetails[];
|
1111 | testMessageLogId?: number;
|
1112 | testPlanId?: number;
|
1113 | testRunId?: number;
|
1114 | testRunStatistics?: LegacyTestRunStatistic[];
|
1115 | testSettingsId?: number;
|
1116 | title?: string;
|
1117 | totalTests?: number;
|
1118 | type?: number;
|
1119 | unanalyzedTests?: number;
|
1120 | version?: number;
|
1121 | }
|
1122 | export interface LegacyTestRunStatistic {
|
1123 | count?: number;
|
1124 | outcome?: number;
|
1125 | resolutionState?: TestResolutionState;
|
1126 | state?: number;
|
1127 | testRunId?: number;
|
1128 | }
|
1129 | export interface LegacyTestSettings {
|
1130 | areaId?: number;
|
1131 | areaPath?: string;
|
1132 | createdBy?: string;
|
1133 | createdByName?: string;
|
1134 | createdDate?: Date;
|
1135 | description?: string;
|
1136 | id?: number;
|
1137 | isAutomated?: boolean;
|
1138 | isPublic?: boolean;
|
1139 | lastUpdated?: Date;
|
1140 | lastUpdatedBy?: string;
|
1141 | lastUpdatedByName?: string;
|
1142 | machineRoles?: TestSettingsMachineRole[];
|
1143 | name?: string;
|
1144 | revision?: number;
|
1145 | settings?: string;
|
1146 | teamProjectUri?: string;
|
1147 | }
|
1148 | export interface LineBlockCoverage {
|
1149 | |
1150 |
|
1151 |
|
1152 | end: number;
|
1153 | |
1154 |
|
1155 |
|
1156 | start: number;
|
1157 | |
1158 |
|
1159 |
|
1160 | status: number;
|
1161 | }
|
1162 |
|
1163 |
|
1164 |
|
1165 | export interface Link {
|
1166 | |
1167 |
|
1168 |
|
1169 | displayName?: string;
|
1170 | |
1171 |
|
1172 |
|
1173 | operationType?: string;
|
1174 | |
1175 |
|
1176 |
|
1177 | type: string;
|
1178 | |
1179 |
|
1180 |
|
1181 | url: string;
|
1182 | }
|
1183 | export interface LinkedWorkItemsQuery {
|
1184 | automatedTestNames?: string[];
|
1185 | planId?: number;
|
1186 | pointIds?: number[];
|
1187 | suiteIds?: number[];
|
1188 | testCaseIds?: number[];
|
1189 | workItemCategory?: string;
|
1190 | }
|
1191 | export interface LinkedWorkItemsQueryResult {
|
1192 | automatedTestName?: string;
|
1193 | planId?: number;
|
1194 | pointId?: number;
|
1195 | suiteId?: number;
|
1196 | testCaseId?: number;
|
1197 | workItems?: WorkItemReference[];
|
1198 | }
|
1199 |
|
1200 |
|
1201 |
|
1202 | export declare enum Metrics {
|
1203 | |
1204 |
|
1205 |
|
1206 | All = 1,
|
1207 | |
1208 |
|
1209 |
|
1210 | ResultSummary = 2,
|
1211 | |
1212 |
|
1213 |
|
1214 | ResultsAnalysis = 3,
|
1215 | |
1216 |
|
1217 |
|
1218 | RunSummary = 4
|
1219 | }
|
1220 | export interface ModuleCoverage {
|
1221 | blockCount?: number;
|
1222 | blockData?: number[];
|
1223 | |
1224 |
|
1225 |
|
1226 | fileUrl?: string;
|
1227 | functions?: FunctionCoverage[];
|
1228 | name?: string;
|
1229 | signature?: string;
|
1230 | signatureAge?: number;
|
1231 | statistics?: CoverageStatistics;
|
1232 | }
|
1233 | export interface ModuleCoverage2 {
|
1234 | blockCount?: number;
|
1235 | blockData?: number[];
|
1236 | blockDataLength?: number;
|
1237 | blocksCovered?: number;
|
1238 | blocksNotCovered?: number;
|
1239 | coverageFileUrl?: string;
|
1240 | coverageId?: number;
|
1241 | linesCovered?: number;
|
1242 | linesNotCovered?: number;
|
1243 | linesPartiallyCovered?: number;
|
1244 | moduleId?: number;
|
1245 | name?: string;
|
1246 | signature?: string;
|
1247 | signatureAge?: number;
|
1248 | }
|
1249 |
|
1250 |
|
1251 |
|
1252 | export interface NameValuePair {
|
1253 | |
1254 |
|
1255 |
|
1256 | name?: string;
|
1257 | |
1258 |
|
1259 |
|
1260 | value?: string;
|
1261 | }
|
1262 | export interface NewTestResultLoggingSettings {
|
1263 | |
1264 |
|
1265 |
|
1266 | logNewTests?: boolean;
|
1267 | }
|
1268 | export declare enum OperationType {
|
1269 | Add = 1,
|
1270 | Delete = 2
|
1271 | }
|
1272 |
|
1273 |
|
1274 |
|
1275 | export interface PhaseReference {
|
1276 | |
1277 |
|
1278 |
|
1279 | attempt?: number;
|
1280 | |
1281 |
|
1282 |
|
1283 | phaseName?: string;
|
1284 | }
|
1285 |
|
1286 |
|
1287 |
|
1288 | export interface PipelineReference {
|
1289 | |
1290 |
|
1291 |
|
1292 | jobReference?: JobReference;
|
1293 | |
1294 |
|
1295 |
|
1296 | phaseReference?: PhaseReference;
|
1297 | |
1298 |
|
1299 |
|
1300 | pipelineDefinitionId?: number;
|
1301 | |
1302 |
|
1303 |
|
1304 | pipelineId: number;
|
1305 | |
1306 |
|
1307 |
|
1308 | stageReference?: StageReference;
|
1309 | }
|
1310 |
|
1311 |
|
1312 |
|
1313 | export interface PipelineTestMetrics {
|
1314 | |
1315 |
|
1316 |
|
1317 | currentContext?: PipelineReference;
|
1318 | |
1319 |
|
1320 |
|
1321 | resultsAnalysis?: ResultsAnalysis;
|
1322 | |
1323 |
|
1324 |
|
1325 | resultSummary?: ResultSummary;
|
1326 | |
1327 |
|
1328 |
|
1329 | runSummary?: RunSummary;
|
1330 | |
1331 |
|
1332 |
|
1333 | summaryAtChild?: PipelineTestMetrics[];
|
1334 | }
|
1335 |
|
1336 |
|
1337 |
|
1338 | export interface PlanUpdateModel {
|
1339 | |
1340 |
|
1341 |
|
1342 | area?: ShallowReference;
|
1343 | automatedTestEnvironment?: TestEnvironment;
|
1344 | automatedTestSettings?: TestSettings;
|
1345 | |
1346 |
|
1347 |
|
1348 | build?: ShallowReference;
|
1349 | |
1350 |
|
1351 |
|
1352 | buildDefinition?: ShallowReference;
|
1353 | |
1354 |
|
1355 |
|
1356 | configurationIds?: number[];
|
1357 | |
1358 |
|
1359 |
|
1360 | description?: string;
|
1361 | |
1362 |
|
1363 |
|
1364 | endDate?: string;
|
1365 | |
1366 |
|
1367 |
|
1368 | iteration?: string;
|
1369 | manualTestEnvironment?: TestEnvironment;
|
1370 | manualTestSettings?: TestSettings;
|
1371 | |
1372 |
|
1373 |
|
1374 | name?: string;
|
1375 | |
1376 |
|
1377 |
|
1378 | owner?: VSSInterfaces.IdentityRef;
|
1379 | |
1380 |
|
1381 |
|
1382 | releaseEnvironmentDefinition?: ReleaseEnvironmentDefinitionReference;
|
1383 | |
1384 |
|
1385 |
|
1386 | startDate?: string;
|
1387 | |
1388 |
|
1389 |
|
1390 | state?: string;
|
1391 | status?: string;
|
1392 | |
1393 |
|
1394 |
|
1395 | testOutcomeSettings?: TestOutcomeSettings;
|
1396 | }
|
1397 |
|
1398 |
|
1399 |
|
1400 | export interface PointAssignment {
|
1401 | |
1402 |
|
1403 |
|
1404 | configuration?: ShallowReference;
|
1405 | |
1406 |
|
1407 |
|
1408 | tester?: VSSInterfaces.IdentityRef;
|
1409 | }
|
1410 | export interface PointLastResult {
|
1411 | lastUpdatedDate?: Date;
|
1412 | pointId?: number;
|
1413 | }
|
1414 |
|
1415 |
|
1416 |
|
1417 | export interface PointsFilter {
|
1418 | |
1419 |
|
1420 |
|
1421 | configurationNames?: string[];
|
1422 | |
1423 |
|
1424 |
|
1425 | testcaseIds?: number[];
|
1426 | |
1427 |
|
1428 |
|
1429 | testers?: VSSInterfaces.IdentityRef[];
|
1430 | }
|
1431 | export interface PointsReference2 {
|
1432 | planId?: number;
|
1433 | pointId?: number;
|
1434 | }
|
1435 | export interface PointsResults2 {
|
1436 | changeNumber?: number;
|
1437 | lastFailureType?: number;
|
1438 | lastResolutionStateId?: number;
|
1439 | lastResultOutcome?: number;
|
1440 | lastResultState?: number;
|
1441 | lastTestResultId?: number;
|
1442 | lastTestRunId?: number;
|
1443 | lastUpdated?: Date;
|
1444 | lastUpdatedBy?: string;
|
1445 | planId?: number;
|
1446 | pointId?: number;
|
1447 | }
|
1448 |
|
1449 |
|
1450 |
|
1451 | export interface PointUpdateModel {
|
1452 | |
1453 |
|
1454 |
|
1455 | outcome?: string;
|
1456 | |
1457 |
|
1458 |
|
1459 | resetToActive?: boolean;
|
1460 | |
1461 |
|
1462 |
|
1463 | tester?: VSSInterfaces.IdentityRef;
|
1464 | }
|
1465 |
|
1466 |
|
1467 |
|
1468 | export interface PointWorkItemProperty {
|
1469 | |
1470 |
|
1471 |
|
1472 | workItem: {
|
1473 | key: string;
|
1474 | value: any;
|
1475 | };
|
1476 | }
|
1477 |
|
1478 |
|
1479 |
|
1480 | export interface PropertyBag {
|
1481 | |
1482 |
|
1483 |
|
1484 | bag?: {
|
1485 | [key: string]: string;
|
1486 | };
|
1487 | }
|
1488 | export interface QueryByPointRequest {
|
1489 | projectName?: string;
|
1490 | testPlanId?: number;
|
1491 | testPointId?: number;
|
1492 | }
|
1493 | export interface QueryByRunRequest {
|
1494 | includeActionResults?: boolean;
|
1495 | outcome?: number;
|
1496 | owner?: string;
|
1497 | pageSize?: number;
|
1498 | projectName?: string;
|
1499 | state?: number;
|
1500 | testRunId?: number;
|
1501 | }
|
1502 | export interface QueryModel {
|
1503 | query: string;
|
1504 | }
|
1505 | export interface QueryTestActionResultRequest {
|
1506 | identifier?: LegacyTestCaseResultIdentifier;
|
1507 | projectName?: string;
|
1508 | }
|
1509 | export interface QueryTestActionResultResponse {
|
1510 | testActionResults?: TestActionResult[];
|
1511 | testAttachments?: TestResultAttachment[];
|
1512 | testResultParameters?: TestResultParameter[];
|
1513 | }
|
1514 | export interface QueryTestMessageLogEntryRequest {
|
1515 | projectName?: string;
|
1516 | testMessageLogId?: number;
|
1517 | testRunId?: number;
|
1518 | }
|
1519 | export interface QueryTestRuns2Request {
|
1520 | includeStatistics?: boolean;
|
1521 | query?: ResultsStoreQuery;
|
1522 | }
|
1523 | export interface QueryTestRunsRequest {
|
1524 | buildUri?: string;
|
1525 | owner?: string;
|
1526 | planId?: number;
|
1527 | skip?: number;
|
1528 | teamProjectName?: string;
|
1529 | testRunId?: number;
|
1530 | top?: number;
|
1531 | }
|
1532 | export interface QueryTestRunStatsRequest {
|
1533 | teamProjectName?: string;
|
1534 | testRunId?: number;
|
1535 | }
|
1536 |
|
1537 |
|
1538 |
|
1539 | export interface ReleaseEnvironmentDefinitionReference {
|
1540 | |
1541 |
|
1542 |
|
1543 | definitionId?: number;
|
1544 | |
1545 |
|
1546 |
|
1547 | environmentDefinitionId?: number;
|
1548 | }
|
1549 |
|
1550 |
|
1551 |
|
1552 | export interface ReleaseReference {
|
1553 | |
1554 |
|
1555 |
|
1556 | attempt?: number;
|
1557 | |
1558 |
|
1559 |
|
1560 | creationDate?: Date;
|
1561 | |
1562 |
|
1563 |
|
1564 | definitionId?: number;
|
1565 | |
1566 |
|
1567 |
|
1568 | environmentCreationDate?: Date;
|
1569 | |
1570 |
|
1571 |
|
1572 | environmentDefinitionId?: number;
|
1573 | |
1574 |
|
1575 |
|
1576 | environmentDefinitionName?: string;
|
1577 | |
1578 |
|
1579 |
|
1580 | environmentId?: number;
|
1581 | |
1582 |
|
1583 |
|
1584 | environmentName?: string;
|
1585 | |
1586 |
|
1587 |
|
1588 | id?: number;
|
1589 | |
1590 |
|
1591 |
|
1592 | name?: string;
|
1593 | }
|
1594 | export interface ReleaseReference2 {
|
1595 | attempt?: number;
|
1596 | environmentCreationDate?: Date;
|
1597 | projectId?: string;
|
1598 | releaseCreationDate?: Date;
|
1599 | releaseDefId?: number;
|
1600 | releaseEnvDefId?: number;
|
1601 | releaseEnvId?: number;
|
1602 | releaseEnvName?: string;
|
1603 | releaseEnvUri?: string;
|
1604 | releaseId?: number;
|
1605 | releaseName?: string;
|
1606 | releaseRefId?: number;
|
1607 | releaseUri?: string;
|
1608 | }
|
1609 | export interface RequirementsToTestsMapping2 {
|
1610 | createdBy?: string;
|
1611 | creationDate?: Date;
|
1612 | deletedBy?: string;
|
1613 | deletionDate?: Date;
|
1614 | isMigratedToWIT?: boolean;
|
1615 | projectId?: string;
|
1616 | testMetadataId?: number;
|
1617 | workItemId?: number;
|
1618 | }
|
1619 | export interface ResetTestResultsRequest {
|
1620 | ids?: LegacyTestCaseResultIdentifier[];
|
1621 | projectName?: string;
|
1622 | }
|
1623 | export interface Response {
|
1624 | error?: string;
|
1625 | id?: string;
|
1626 | status?: string;
|
1627 | url?: string;
|
1628 | }
|
1629 |
|
1630 |
|
1631 |
|
1632 | export declare enum ResultDetails {
|
1633 | |
1634 |
|
1635 |
|
1636 | None = 0,
|
1637 | |
1638 |
|
1639 |
|
1640 | Iterations = 1,
|
1641 | |
1642 |
|
1643 |
|
1644 | WorkItems = 2,
|
1645 | |
1646 |
|
1647 |
|
1648 | SubResults = 4,
|
1649 | |
1650 |
|
1651 |
|
1652 | Point = 8
|
1653 | }
|
1654 |
|
1655 |
|
1656 |
|
1657 | export declare enum ResultGroupType {
|
1658 | |
1659 |
|
1660 |
|
1661 | None = 0,
|
1662 | |
1663 |
|
1664 |
|
1665 | Rerun = 1,
|
1666 | |
1667 |
|
1668 |
|
1669 | DataDriven = 2,
|
1670 | |
1671 |
|
1672 |
|
1673 | OrderedTest = 3,
|
1674 | |
1675 |
|
1676 |
|
1677 | Generic = 4
|
1678 | }
|
1679 | export declare enum ResultMetadata {
|
1680 | |
1681 |
|
1682 |
|
1683 | Rerun = 1,
|
1684 | |
1685 |
|
1686 |
|
1687 | Flaky = 2
|
1688 | }
|
1689 |
|
1690 |
|
1691 |
|
1692 | export declare enum ResultMetaDataDetails {
|
1693 | |
1694 |
|
1695 |
|
1696 | None = 0,
|
1697 | |
1698 |
|
1699 |
|
1700 | FlakyIdentifiers = 1
|
1701 | }
|
1702 |
|
1703 |
|
1704 |
|
1705 | export declare enum ResultObjectType {
|
1706 | |
1707 |
|
1708 |
|
1709 | TestSuite = 0,
|
1710 | |
1711 |
|
1712 |
|
1713 | TestPlan = 1
|
1714 | }
|
1715 |
|
1716 |
|
1717 |
|
1718 | export interface ResultRetentionSettings {
|
1719 | |
1720 |
|
1721 |
|
1722 | automatedResultsRetentionDuration: number;
|
1723 | |
1724 |
|
1725 |
|
1726 | lastUpdatedBy?: VSSInterfaces.IdentityRef;
|
1727 | |
1728 |
|
1729 |
|
1730 | lastUpdatedDate?: Date;
|
1731 | |
1732 |
|
1733 |
|
1734 | manualResultsRetentionDuration: number;
|
1735 | }
|
1736 |
|
1737 |
|
1738 |
|
1739 | export interface ResultsAnalysis {
|
1740 | |
1741 |
|
1742 |
|
1743 | previousContext?: PipelineReference;
|
1744 | |
1745 |
|
1746 |
|
1747 | resultsDifference?: AggregatedResultsDifference;
|
1748 | |
1749 |
|
1750 |
|
1751 | testFailuresAnalysis?: TestResultFailuresAnalysis;
|
1752 | }
|
1753 | export interface ResultsByQueryRequest {
|
1754 | pageSize?: number;
|
1755 | query?: ResultsStoreQuery;
|
1756 | }
|
1757 | export interface ResultsByQueryResponse {
|
1758 | excessIds?: LegacyTestCaseResultIdentifier[];
|
1759 | testResults?: LegacyTestCaseResult[];
|
1760 | }
|
1761 | export interface ResultsFilter {
|
1762 | automatedTestName: string;
|
1763 | branch?: string;
|
1764 | executedIn?: Service;
|
1765 | groupBy?: string;
|
1766 | maxCompleteDate?: Date;
|
1767 | resultsCount?: number;
|
1768 | testCaseId?: number;
|
1769 | testCaseReferenceIds?: number[];
|
1770 | testPlanId?: number;
|
1771 | testPointIds?: number[];
|
1772 | testResultsContext?: TestResultsContext;
|
1773 | trendDays?: number;
|
1774 | }
|
1775 | export interface ResultsStoreQuery {
|
1776 | dayPrecision?: boolean;
|
1777 | queryText?: string;
|
1778 | teamProjectName?: string;
|
1779 | timeZone?: string;
|
1780 | }
|
1781 |
|
1782 |
|
1783 |
|
1784 | export interface ResultsSummaryByOutcome {
|
1785 | |
1786 |
|
1787 |
|
1788 | aggregatedResultDetailsByOutcome?: {
|
1789 | [key: number]: AggregatedResultDetailsByOutcome;
|
1790 | };
|
1791 | |
1792 |
|
1793 |
|
1794 | duration?: any;
|
1795 | |
1796 |
|
1797 |
|
1798 | notReportedTestCount?: number;
|
1799 | |
1800 |
|
1801 |
|
1802 | totalTestCount?: number;
|
1803 | }
|
1804 |
|
1805 |
|
1806 |
|
1807 | export interface ResultSummary {
|
1808 | |
1809 |
|
1810 |
|
1811 | resultSummaryByRunState?: {
|
1812 | [key: number]: ResultsSummaryByOutcome;
|
1813 | };
|
1814 | }
|
1815 | export interface ResultUpdateRequest {
|
1816 | actionResultDeletes?: TestActionResult[];
|
1817 | actionResults?: TestActionResult[];
|
1818 | attachmentDeletes?: TestResultAttachmentIdentity[];
|
1819 | attachments?: TestResultAttachment[];
|
1820 | parameterDeletes?: TestResultParameter[];
|
1821 | parameters?: TestResultParameter[];
|
1822 | testCaseResult?: LegacyTestCaseResult;
|
1823 | testResultId?: number;
|
1824 | testRunId?: number;
|
1825 | }
|
1826 | export interface ResultUpdateRequestModel {
|
1827 | actionResultDeletes: TestActionResultModel[];
|
1828 | actionResults: TestActionResultModel[];
|
1829 | parameterDeletes: TestResultParameterModel[];
|
1830 | parameters: TestResultParameterModel[];
|
1831 | testCaseResult: TestCaseResultUpdateModel;
|
1832 | }
|
1833 | export interface ResultUpdateResponse {
|
1834 | attachmentIds?: number[];
|
1835 | lastUpdated?: Date;
|
1836 | lastUpdatedBy?: string;
|
1837 | lastUpdatedByName?: string;
|
1838 | maxReservedSubResultId?: number;
|
1839 | revision?: number;
|
1840 | testPlanId?: number;
|
1841 | testResultId?: number;
|
1842 | }
|
1843 | export interface ResultUpdateResponseModel {
|
1844 | revision: number;
|
1845 | }
|
1846 |
|
1847 |
|
1848 |
|
1849 | export interface RunCreateModel {
|
1850 | |
1851 |
|
1852 |
|
1853 | automated?: boolean;
|
1854 | |
1855 |
|
1856 |
|
1857 | build?: ShallowReference;
|
1858 | |
1859 |
|
1860 |
|
1861 | buildDropLocation?: string;
|
1862 | |
1863 |
|
1864 |
|
1865 | buildFlavor?: string;
|
1866 | |
1867 |
|
1868 |
|
1869 | buildPlatform?: string;
|
1870 | |
1871 |
|
1872 |
|
1873 | buildReference?: BuildConfiguration;
|
1874 | |
1875 |
|
1876 |
|
1877 | comment?: string;
|
1878 | |
1879 |
|
1880 |
|
1881 | completeDate?: string;
|
1882 | |
1883 |
|
1884 |
|
1885 | configurationIds: number[];
|
1886 | |
1887 |
|
1888 |
|
1889 | controller?: string;
|
1890 | |
1891 |
|
1892 |
|
1893 | customTestFields?: CustomTestField[];
|
1894 | |
1895 |
|
1896 |
|
1897 | dtlAutEnvironment?: ShallowReference;
|
1898 | |
1899 |
|
1900 |
|
1901 | dtlTestEnvironment?: ShallowReference;
|
1902 | |
1903 |
|
1904 |
|
1905 | dueDate?: string;
|
1906 | environmentDetails?: DtlEnvironmentDetails;
|
1907 | |
1908 |
|
1909 |
|
1910 | errorMessage?: string;
|
1911 | |
1912 |
|
1913 |
|
1914 | filter?: RunFilter;
|
1915 | |
1916 |
|
1917 |
|
1918 | iteration?: string;
|
1919 | |
1920 |
|
1921 |
|
1922 | name: string;
|
1923 | |
1924 |
|
1925 |
|
1926 | owner?: VSSInterfaces.IdentityRef;
|
1927 | |
1928 |
|
1929 |
|
1930 | pipelineReference?: PipelineReference;
|
1931 | |
1932 |
|
1933 |
|
1934 | plan: ShallowReference;
|
1935 | |
1936 |
|
1937 |
|
1938 | pointIds?: number[];
|
1939 | |
1940 |
|
1941 |
|
1942 | releaseEnvironmentUri?: string;
|
1943 | |
1944 |
|
1945 |
|
1946 | releaseReference?: ReleaseReference;
|
1947 | |
1948 |
|
1949 |
|
1950 | releaseUri?: string;
|
1951 | |
1952 |
|
1953 |
|
1954 | runSummary?: RunSummaryModel[];
|
1955 | |
1956 |
|
1957 |
|
1958 | runTimeout?: any;
|
1959 | |
1960 |
|
1961 |
|
1962 | sourceWorkflow?: string;
|
1963 | |
1964 |
|
1965 |
|
1966 | startDate?: string;
|
1967 | |
1968 |
|
1969 |
|
1970 | state?: string;
|
1971 | |
1972 |
|
1973 |
|
1974 | tags?: TestTag[];
|
1975 | |
1976 |
|
1977 |
|
1978 | testConfigurationsMapping?: string;
|
1979 | |
1980 |
|
1981 |
|
1982 | testEnvironmentId?: string;
|
1983 | |
1984 |
|
1985 |
|
1986 | testSettings?: ShallowReference;
|
1987 | |
1988 |
|
1989 |
|
1990 | type?: string;
|
1991 | }
|
1992 |
|
1993 |
|
1994 |
|
1995 | export interface RunFilter {
|
1996 | |
1997 |
|
1998 |
|
1999 | sourceFilter: string;
|
2000 | |
2001 |
|
2002 |
|
2003 | testCaseFilter?: string;
|
2004 | }
|
2005 |
|
2006 |
|
2007 |
|
2008 | export interface RunStatistic {
|
2009 | |
2010 |
|
2011 |
|
2012 | count: number;
|
2013 | |
2014 |
|
2015 |
|
2016 | outcome: string;
|
2017 | |
2018 |
|
2019 |
|
2020 | resolutionState?: TestResolutionState;
|
2021 | |
2022 |
|
2023 |
|
2024 | resultMetadata?: ResultMetadata;
|
2025 | |
2026 |
|
2027 |
|
2028 | state: string;
|
2029 | }
|
2030 |
|
2031 |
|
2032 |
|
2033 | export interface RunSummary {
|
2034 | |
2035 |
|
2036 |
|
2037 | duration?: any;
|
2038 | |
2039 |
|
2040 |
|
2041 | noConfigRunsCount?: number;
|
2042 | |
2043 |
|
2044 |
|
2045 | runSummaryByOutcome?: {
|
2046 | [key: number]: number;
|
2047 | };
|
2048 | |
2049 |
|
2050 |
|
2051 | runSummaryByState?: {
|
2052 | [key: number]: number;
|
2053 | };
|
2054 | |
2055 |
|
2056 |
|
2057 | totalRunsCount?: number;
|
2058 | }
|
2059 |
|
2060 |
|
2061 |
|
2062 | export interface RunSummaryModel {
|
2063 | |
2064 |
|
2065 |
|
2066 | duration?: number;
|
2067 | |
2068 |
|
2069 |
|
2070 | resultCount: number;
|
2071 | |
2072 |
|
2073 |
|
2074 | testOutcome: TestOutcome;
|
2075 | }
|
2076 | export declare enum RunType {
|
2077 | |
2078 |
|
2079 |
|
2080 | Unspecified = 0,
|
2081 | |
2082 |
|
2083 |
|
2084 | Normal = 1,
|
2085 | |
2086 |
|
2087 |
|
2088 | Blocking = 2,
|
2089 | |
2090 |
|
2091 |
|
2092 | Web = 4,
|
2093 | |
2094 |
|
2095 |
|
2096 | MtrRunInitiatedFromWeb = 8,
|
2097 | |
2098 |
|
2099 |
|
2100 | RunWithDtlEnv = 16,
|
2101 | |
2102 |
|
2103 |
|
2104 | NoConfigRun = 32
|
2105 | }
|
2106 | export interface RunUpdateModel {
|
2107 | |
2108 |
|
2109 |
|
2110 | build?: ShallowReference;
|
2111 | |
2112 |
|
2113 |
|
2114 | buildDropLocation?: string;
|
2115 | |
2116 |
|
2117 |
|
2118 | buildFlavor?: string;
|
2119 | |
2120 |
|
2121 |
|
2122 | buildPlatform?: string;
|
2123 | |
2124 |
|
2125 |
|
2126 | comment?: string;
|
2127 | |
2128 |
|
2129 |
|
2130 | completedDate?: string;
|
2131 | |
2132 |
|
2133 |
|
2134 | controller?: string;
|
2135 | |
2136 |
|
2137 |
|
2138 | customTestFields?: CustomTestField[];
|
2139 | |
2140 |
|
2141 |
|
2142 | deleteInProgressResults?: boolean;
|
2143 | |
2144 |
|
2145 |
|
2146 | dtlAutEnvironment?: ShallowReference;
|
2147 | |
2148 |
|
2149 |
|
2150 | dtlEnvironment?: ShallowReference;
|
2151 | dtlEnvironmentDetails?: DtlEnvironmentDetails;
|
2152 | |
2153 |
|
2154 |
|
2155 | dueDate?: string;
|
2156 | |
2157 |
|
2158 |
|
2159 | errorMessage?: string;
|
2160 | |
2161 |
|
2162 |
|
2163 | iteration?: string;
|
2164 | |
2165 |
|
2166 |
|
2167 | logEntries?: TestMessageLogDetails[];
|
2168 | |
2169 |
|
2170 |
|
2171 | name?: string;
|
2172 | |
2173 |
|
2174 |
|
2175 | releaseEnvironmentUri?: string;
|
2176 | |
2177 |
|
2178 |
|
2179 | releaseUri?: string;
|
2180 | |
2181 |
|
2182 |
|
2183 | runSummary?: RunSummaryModel[];
|
2184 | |
2185 |
|
2186 |
|
2187 | sourceWorkflow?: string;
|
2188 | |
2189 |
|
2190 |
|
2191 | startedDate?: string;
|
2192 | |
2193 |
|
2194 |
|
2195 | state?: string;
|
2196 | |
2197 |
|
2198 |
|
2199 | substate?: TestRunSubstate;
|
2200 | |
2201 |
|
2202 |
|
2203 | tags?: TestTag[];
|
2204 | |
2205 |
|
2206 |
|
2207 | testEnvironmentId?: string;
|
2208 | |
2209 |
|
2210 |
|
2211 | testSettings?: ShallowReference;
|
2212 | }
|
2213 | export declare enum Service {
|
2214 | Any = 0,
|
2215 | Tcm = 1,
|
2216 | Tfs = 2
|
2217 | }
|
2218 | export declare enum SessionResult {
|
2219 | |
2220 |
|
2221 |
|
2222 | None = 0,
|
2223 | |
2224 |
|
2225 |
|
2226 | Passed = 1,
|
2227 | |
2228 |
|
2229 |
|
2230 | Failed = 2
|
2231 | }
|
2232 |
|
2233 |
|
2234 |
|
2235 | export interface SessionSourcePipeline {
|
2236 | |
2237 |
|
2238 |
|
2239 | buildId: number;
|
2240 | |
2241 |
|
2242 |
|
2243 | buildUrl: string;
|
2244 | }
|
2245 | export declare enum SessionTimelineType {
|
2246 | |
2247 |
|
2248 |
|
2249 | None = 0,
|
2250 | |
2251 |
|
2252 |
|
2253 | Queued = 1,
|
2254 | |
2255 |
|
2256 |
|
2257 | Completed = 2,
|
2258 | |
2259 |
|
2260 |
|
2261 | Started = 3
|
2262 | }
|
2263 |
|
2264 |
|
2265 |
|
2266 | export interface ShallowReference {
|
2267 | |
2268 |
|
2269 |
|
2270 | id?: string;
|
2271 | |
2272 |
|
2273 |
|
2274 | name?: string;
|
2275 | |
2276 |
|
2277 |
|
2278 | url?: string;
|
2279 | }
|
2280 | export interface ShallowTestCaseResult {
|
2281 | automatedTestName?: string;
|
2282 | automatedTestStorage?: string;
|
2283 | durationInMs?: number;
|
2284 | id?: number;
|
2285 | isReRun?: boolean;
|
2286 | outcome?: string;
|
2287 | owner?: string;
|
2288 | priority?: number;
|
2289 | refId?: number;
|
2290 | runId?: number;
|
2291 | tags?: string[];
|
2292 | testCaseTitle?: string;
|
2293 | }
|
2294 |
|
2295 |
|
2296 |
|
2297 | export interface SharedStepModel {
|
2298 | |
2299 |
|
2300 |
|
2301 | id: number;
|
2302 | |
2303 |
|
2304 |
|
2305 | revision: number;
|
2306 | }
|
2307 |
|
2308 |
|
2309 |
|
2310 | export interface Source {
|
2311 | |
2312 |
|
2313 |
|
2314 | links?: Link[];
|
2315 | |
2316 |
|
2317 |
|
2318 | originSystem: string;
|
2319 | |
2320 |
|
2321 |
|
2322 | sessionId: string;
|
2323 | |
2324 |
|
2325 |
|
2326 | tenantId: string;
|
2327 | |
2328 |
|
2329 |
|
2330 | tenantName: string;
|
2331 | }
|
2332 | export interface SourceViewBuildCoverage {
|
2333 | |
2334 |
|
2335 |
|
2336 | configuration?: BuildConfiguration;
|
2337 | |
2338 |
|
2339 |
|
2340 | folderCoverageData?: FolderCoverageData;
|
2341 | }
|
2342 |
|
2343 |
|
2344 |
|
2345 | export interface StageReference {
|
2346 | |
2347 |
|
2348 |
|
2349 | attempt?: number;
|
2350 | |
2351 |
|
2352 |
|
2353 | stageName?: string;
|
2354 | }
|
2355 |
|
2356 |
|
2357 |
|
2358 | export interface SuiteCreateModel {
|
2359 | |
2360 |
|
2361 |
|
2362 | name?: string;
|
2363 | |
2364 |
|
2365 |
|
2366 | queryString?: string;
|
2367 | |
2368 |
|
2369 |
|
2370 | requirementIds?: number[];
|
2371 | |
2372 |
|
2373 |
|
2374 | suiteType?: string;
|
2375 | }
|
2376 |
|
2377 |
|
2378 |
|
2379 | export interface SuiteEntry {
|
2380 | |
2381 |
|
2382 |
|
2383 | childSuiteId?: number;
|
2384 | |
2385 |
|
2386 |
|
2387 | sequenceNumber?: number;
|
2388 | |
2389 |
|
2390 |
|
2391 | suiteId?: number;
|
2392 | |
2393 |
|
2394 |
|
2395 | testCaseId?: number;
|
2396 | }
|
2397 |
|
2398 |
|
2399 |
|
2400 | export interface SuiteEntryUpdateModel {
|
2401 | |
2402 |
|
2403 |
|
2404 | childSuiteId?: number;
|
2405 | |
2406 |
|
2407 |
|
2408 | sequenceNumber?: number;
|
2409 | |
2410 |
|
2411 |
|
2412 | testCaseId?: number;
|
2413 | }
|
2414 |
|
2415 |
|
2416 |
|
2417 | export declare enum SuiteExpand {
|
2418 | |
2419 |
|
2420 |
|
2421 | Children = 1,
|
2422 | |
2423 |
|
2424 |
|
2425 | DefaultTesters = 2
|
2426 | }
|
2427 |
|
2428 |
|
2429 |
|
2430 | export interface SuiteTestCase {
|
2431 | |
2432 |
|
2433 |
|
2434 | pointAssignments?: PointAssignment[];
|
2435 | |
2436 |
|
2437 |
|
2438 | testCase?: WorkItemReference;
|
2439 | }
|
2440 |
|
2441 |
|
2442 |
|
2443 | export interface SuiteTestCaseUpdateModel {
|
2444 | |
2445 |
|
2446 |
|
2447 | configurations?: ShallowReference[];
|
2448 | }
|
2449 |
|
2450 |
|
2451 |
|
2452 | export interface SuiteUpdateModel {
|
2453 | |
2454 |
|
2455 |
|
2456 | defaultConfigurations?: ShallowReference[];
|
2457 | |
2458 |
|
2459 |
|
2460 | defaultTesters?: ShallowReference[];
|
2461 | |
2462 |
|
2463 |
|
2464 | inheritDefaultConfigurations?: boolean;
|
2465 | |
2466 |
|
2467 |
|
2468 | name?: string;
|
2469 | |
2470 |
|
2471 |
|
2472 | parent?: ShallowReference;
|
2473 | |
2474 |
|
2475 |
|
2476 | queryString?: string;
|
2477 | }
|
2478 | export interface TCMPropertyBag2 {
|
2479 | artifactId?: number;
|
2480 | artifactType?: number;
|
2481 | name?: string;
|
2482 | value?: string;
|
2483 | }
|
2484 | export declare enum TCMServiceDataMigrationStatus {
|
2485 | |
2486 |
|
2487 |
|
2488 | NotStarted = 0,
|
2489 | |
2490 |
|
2491 |
|
2492 | InProgress = 1,
|
2493 | |
2494 |
|
2495 |
|
2496 | Completed = 2,
|
2497 | |
2498 |
|
2499 |
|
2500 | Failed = 3
|
2501 | }
|
2502 | export interface TestActionResult {
|
2503 | actionPath?: string;
|
2504 | comment?: string;
|
2505 | creationDate?: Date;
|
2506 | dateCompleted?: Date;
|
2507 | dateStarted?: Date;
|
2508 | duration?: number;
|
2509 | errorMessage?: string;
|
2510 | id?: LegacyTestCaseResultIdentifier;
|
2511 | iterationId?: number;
|
2512 | lastUpdated?: Date;
|
2513 | lastUpdatedBy?: string;
|
2514 | outcome?: number;
|
2515 | sharedStepId?: number;
|
2516 | sharedStepRevision?: number;
|
2517 | }
|
2518 | export interface TestActionResult2 {
|
2519 | actionPath?: string;
|
2520 | comment?: string;
|
2521 | creationDate?: Date;
|
2522 | dateCompleted?: Date;
|
2523 | dateStarted?: Date;
|
2524 | duration?: number;
|
2525 | errorMessage?: string;
|
2526 | iterationId?: number;
|
2527 | lastUpdated?: Date;
|
2528 | outcome?: number;
|
2529 | sharedStepId?: number;
|
2530 | sharedStepRevision?: number;
|
2531 | testResultId?: number;
|
2532 | testRunId?: number;
|
2533 | }
|
2534 |
|
2535 |
|
2536 |
|
2537 | export interface TestActionResultModel extends TestResultModelBase {
|
2538 | |
2539 |
|
2540 |
|
2541 | actionPath?: string;
|
2542 | |
2543 |
|
2544 |
|
2545 | iterationId?: number;
|
2546 | |
2547 |
|
2548 |
|
2549 | sharedStepModel?: SharedStepModel;
|
2550 | |
2551 |
|
2552 |
|
2553 | stepIdentifier?: string;
|
2554 | |
2555 |
|
2556 |
|
2557 | url?: string;
|
2558 | }
|
2559 | export interface TestAttachment {
|
2560 | |
2561 |
|
2562 |
|
2563 | attachmentType?: AttachmentType;
|
2564 | |
2565 |
|
2566 |
|
2567 | comment?: string;
|
2568 | |
2569 |
|
2570 |
|
2571 | createdDate?: Date;
|
2572 | |
2573 |
|
2574 |
|
2575 | fileName?: string;
|
2576 | |
2577 |
|
2578 |
|
2579 | id: number;
|
2580 | |
2581 |
|
2582 |
|
2583 | size?: number;
|
2584 | |
2585 |
|
2586 |
|
2587 | url?: string;
|
2588 | }
|
2589 |
|
2590 |
|
2591 |
|
2592 | export interface TestAttachmentReference {
|
2593 | |
2594 |
|
2595 |
|
2596 | id: number;
|
2597 | |
2598 |
|
2599 |
|
2600 | url: string;
|
2601 | }
|
2602 |
|
2603 |
|
2604 |
|
2605 | export interface TestAttachmentRequestModel {
|
2606 | |
2607 |
|
2608 |
|
2609 | attachmentType?: string;
|
2610 | |
2611 |
|
2612 |
|
2613 | comment?: string;
|
2614 | |
2615 |
|
2616 |
|
2617 | fileName: string;
|
2618 | |
2619 |
|
2620 |
|
2621 | stream: string;
|
2622 | }
|
2623 | export interface TestAuthoringDetails {
|
2624 | configurationId?: number;
|
2625 | isAutomated?: boolean;
|
2626 | lastUpdated?: Date;
|
2627 | pointId?: number;
|
2628 | priority?: number;
|
2629 | runBy?: string;
|
2630 | state?: TestPointState;
|
2631 | suiteId?: number;
|
2632 | testerId?: string;
|
2633 | }
|
2634 | export interface TestCaseMetadata2 {
|
2635 | container?: string;
|
2636 | name?: string;
|
2637 | projectId?: string;
|
2638 | testMetadataId?: number;
|
2639 | }
|
2640 | export interface TestCaseReference2 {
|
2641 | areaId?: number;
|
2642 | automatedTestId?: string;
|
2643 | automatedTestName?: string;
|
2644 | automatedTestNameHash?: number[];
|
2645 | automatedTestStorage?: string;
|
2646 | automatedTestStorageHash?: number[];
|
2647 | automatedTestType?: string;
|
2648 | configurationId?: number;
|
2649 | createdBy?: string;
|
2650 | creationDate?: Date;
|
2651 | lastRefTestRunDate?: Date;
|
2652 | owner?: string;
|
2653 | priority?: number;
|
2654 | projectId?: string;
|
2655 | testCaseId?: number;
|
2656 | testCaseRefId?: number;
|
2657 | testCaseRevision?: number;
|
2658 | testCaseTitle?: string;
|
2659 | testPointId?: number;
|
2660 | }
|
2661 |
|
2662 |
|
2663 |
|
2664 | export interface TestCaseResult {
|
2665 | |
2666 |
|
2667 |
|
2668 | afnStripId?: number;
|
2669 | |
2670 |
|
2671 |
|
2672 | area?: ShallowReference;
|
2673 | |
2674 |
|
2675 |
|
2676 | associatedBugs?: ShallowReference[];
|
2677 | |
2678 |
|
2679 |
|
2680 | attempt?: number;
|
2681 | |
2682 |
|
2683 |
|
2684 | automatedTestId?: string;
|
2685 | |
2686 |
|
2687 |
|
2688 | automatedTestName?: string;
|
2689 | |
2690 |
|
2691 |
|
2692 | automatedTestStorage?: string;
|
2693 | |
2694 |
|
2695 |
|
2696 | automatedTestType?: string;
|
2697 | |
2698 |
|
2699 |
|
2700 | automatedTestTypeId?: string;
|
2701 | |
2702 |
|
2703 |
|
2704 | bucketingSystem?: string;
|
2705 | |
2706 |
|
2707 |
|
2708 | bucketUid?: string;
|
2709 | |
2710 |
|
2711 |
|
2712 | build?: ShallowReference;
|
2713 | |
2714 |
|
2715 |
|
2716 | buildReference?: BuildReference;
|
2717 | |
2718 |
|
2719 |
|
2720 | buildType?: string;
|
2721 | |
2722 |
|
2723 |
|
2724 | comment?: string;
|
2725 | |
2726 |
|
2727 |
|
2728 | completedDate?: Date;
|
2729 | |
2730 |
|
2731 |
|
2732 | computerName?: string;
|
2733 | |
2734 |
|
2735 |
|
2736 | configuration?: ShallowReference;
|
2737 | |
2738 |
|
2739 |
|
2740 | createdDate?: Date;
|
2741 | |
2742 |
|
2743 |
|
2744 | customFields?: CustomTestField[];
|
2745 | |
2746 |
|
2747 |
|
2748 | dimensions?: TestResultDimension[];
|
2749 | |
2750 |
|
2751 |
|
2752 | durationInMs?: number;
|
2753 | |
2754 |
|
2755 |
|
2756 | errorMessage?: string;
|
2757 | |
2758 |
|
2759 |
|
2760 | exceptionType?: string;
|
2761 | |
2762 |
|
2763 |
|
2764 | executionNumber?: number;
|
2765 | |
2766 |
|
2767 |
|
2768 | failingSince?: FailingSince;
|
2769 | |
2770 |
|
2771 |
|
2772 | failureType?: string;
|
2773 | |
2774 |
|
2775 |
|
2776 | id?: number;
|
2777 | |
2778 |
|
2779 |
|
2780 | isSystemIssue?: boolean;
|
2781 | |
2782 |
|
2783 |
|
2784 | iterationDetails?: TestIterationDetailsModel[];
|
2785 | |
2786 |
|
2787 |
|
2788 | lastUpdatedBy?: VSSInterfaces.IdentityRef;
|
2789 | |
2790 |
|
2791 |
|
2792 | lastUpdatedDate?: Date;
|
2793 | |
2794 |
|
2795 |
|
2796 | layoutUid?: string;
|
2797 | |
2798 |
|
2799 |
|
2800 | links?: Link[];
|
2801 | |
2802 |
|
2803 |
|
2804 | locale?: string;
|
2805 | |
2806 |
|
2807 |
|
2808 | outcome?: string;
|
2809 | |
2810 |
|
2811 |
|
2812 | owner?: VSSInterfaces.IdentityRef;
|
2813 | |
2814 |
|
2815 |
|
2816 | priority?: number;
|
2817 | |
2818 |
|
2819 |
|
2820 | project?: ShallowReference;
|
2821 | |
2822 |
|
2823 |
|
2824 | release?: ShallowReference;
|
2825 | |
2826 |
|
2827 |
|
2828 | releaseReference?: ReleaseReference;
|
2829 | |
2830 |
|
2831 |
|
2832 | resetCount?: number;
|
2833 | |
2834 |
|
2835 |
|
2836 | resolutionState?: string;
|
2837 | |
2838 |
|
2839 |
|
2840 | resolutionStateId?: number;
|
2841 | |
2842 |
|
2843 |
|
2844 | resultGroupType?: ResultGroupType;
|
2845 | |
2846 |
|
2847 |
|
2848 | revision?: number;
|
2849 | |
2850 |
|
2851 |
|
2852 | runBy?: VSSInterfaces.IdentityRef;
|
2853 | |
2854 |
|
2855 |
|
2856 | stackTrace?: string;
|
2857 | |
2858 |
|
2859 |
|
2860 | startedDate?: Date;
|
2861 | |
2862 |
|
2863 |
|
2864 | state?: string;
|
2865 | |
2866 |
|
2867 |
|
2868 | subResults?: TestSubResult[];
|
2869 | |
2870 |
|
2871 |
|
2872 | testCase?: ShallowReference;
|
2873 | |
2874 |
|
2875 |
|
2876 | testCaseReferenceId?: number;
|
2877 | |
2878 |
|
2879 |
|
2880 | testCaseRevision?: number;
|
2881 | |
2882 |
|
2883 |
|
2884 | testCaseTitle?: string;
|
2885 | |
2886 |
|
2887 |
|
2888 | testPhase?: string;
|
2889 | |
2890 |
|
2891 |
|
2892 | testPlan?: ShallowReference;
|
2893 | |
2894 |
|
2895 |
|
2896 | testPoint?: ShallowReference;
|
2897 | |
2898 |
|
2899 |
|
2900 | testRun?: ShallowReference;
|
2901 | |
2902 |
|
2903 |
|
2904 | testSuite?: ShallowReference;
|
2905 | |
2906 |
|
2907 |
|
2908 | topologyId?: number;
|
2909 | |
2910 |
|
2911 |
|
2912 | url?: string;
|
2913 | }
|
2914 |
|
2915 |
|
2916 |
|
2917 | export interface TestCaseResultAttachmentModel {
|
2918 | |
2919 |
|
2920 |
|
2921 | actionPath?: string;
|
2922 | |
2923 |
|
2924 |
|
2925 | id: number;
|
2926 | |
2927 |
|
2928 |
|
2929 | iterationId: number;
|
2930 | |
2931 |
|
2932 |
|
2933 | name: string;
|
2934 | |
2935 |
|
2936 |
|
2937 | size: number;
|
2938 | |
2939 |
|
2940 |
|
2941 | url: string;
|
2942 | }
|
2943 | export interface TestCaseResultIdAndRev {
|
2944 | id?: LegacyTestCaseResultIdentifier;
|
2945 | revision?: number;
|
2946 | }
|
2947 |
|
2948 |
|
2949 |
|
2950 | export interface TestCaseResultIdentifier {
|
2951 | |
2952 |
|
2953 |
|
2954 | testResultId: number;
|
2955 | |
2956 |
|
2957 |
|
2958 | testRunId: number;
|
2959 | }
|
2960 | export interface TestCaseResultUpdateModel {
|
2961 | associatedWorkItems?: number[];
|
2962 | automatedTestTypeId?: string;
|
2963 | comment?: string;
|
2964 | completedDate?: string;
|
2965 | computerName?: string;
|
2966 | customFields?: CustomTestField[];
|
2967 | durationInMs?: string;
|
2968 | errorMessage?: string;
|
2969 | failureType?: string;
|
2970 | outcome?: string;
|
2971 | owner?: VSSInterfaces.IdentityRef;
|
2972 | resolutionState?: string;
|
2973 | runBy?: VSSInterfaces.IdentityRef;
|
2974 | stackTrace?: string;
|
2975 | startedDate?: string;
|
2976 | state?: string;
|
2977 | testCasePriority?: string;
|
2978 | testResult?: ShallowReference;
|
2979 | }
|
2980 |
|
2981 |
|
2982 |
|
2983 | export interface TestConfiguration {
|
2984 | |
2985 |
|
2986 |
|
2987 | area?: ShallowReference;
|
2988 | |
2989 |
|
2990 |
|
2991 | description?: string;
|
2992 | |
2993 |
|
2994 |
|
2995 | id: number;
|
2996 | |
2997 |
|
2998 |
|
2999 | isDefault?: boolean;
|
3000 | |
3001 |
|
3002 |
|
3003 | lastUpdatedBy?: VSSInterfaces.IdentityRef;
|
3004 | |
3005 |
|
3006 |
|
3007 | lastUpdatedDate?: Date;
|
3008 | |
3009 |
|
3010 |
|
3011 | name: string;
|
3012 | |
3013 |
|
3014 |
|
3015 | project?: ShallowReference;
|
3016 | |
3017 |
|
3018 |
|
3019 | revision?: number;
|
3020 | |
3021 |
|
3022 |
|
3023 | state?: TestConfigurationState;
|
3024 | |
3025 |
|
3026 |
|
3027 | url?: string;
|
3028 | |
3029 |
|
3030 |
|
3031 | values?: NameValuePair[];
|
3032 | }
|
3033 |
|
3034 |
|
3035 |
|
3036 | export declare enum TestConfigurationState {
|
3037 | |
3038 |
|
3039 |
|
3040 | Active = 1,
|
3041 | |
3042 |
|
3043 |
|
3044 | Inactive = 2
|
3045 | }
|
3046 |
|
3047 |
|
3048 |
|
3049 | export interface TestEnvironment {
|
3050 | |
3051 |
|
3052 |
|
3053 | environmentId: string;
|
3054 | |
3055 |
|
3056 |
|
3057 | environmentName: string;
|
3058 | }
|
3059 | export interface TestExecutionReportData {
|
3060 | reportData?: DatedTestFieldData[];
|
3061 | }
|
3062 | export interface TestExtensionField {
|
3063 | field?: TestExtensionFieldDetails;
|
3064 | value?: any;
|
3065 | }
|
3066 | export interface TestExtensionFieldDetails {
|
3067 | id?: number;
|
3068 | isResultScoped?: boolean;
|
3069 | isRunScoped?: boolean;
|
3070 | isSystemField?: boolean;
|
3071 | name?: string;
|
3072 | type?: SystemData.SqlDbType;
|
3073 | }
|
3074 | export interface TestFailureDetails {
|
3075 | count?: number;
|
3076 | testResults?: TestCaseResultIdentifier[];
|
3077 | }
|
3078 | export interface TestFailuresAnalysis {
|
3079 | existingFailures?: TestFailureDetails;
|
3080 | fixedTests?: TestFailureDetails;
|
3081 | newFailures?: TestFailureDetails;
|
3082 | previousContext?: TestResultsContext;
|
3083 | }
|
3084 | export interface TestFailureType {
|
3085 | id: number;
|
3086 | name: string;
|
3087 | project: ShallowReference;
|
3088 | }
|
3089 | export interface TestFieldData {
|
3090 | dimensions?: {
|
3091 | [key: string]: any;
|
3092 | };
|
3093 | measure?: number;
|
3094 | }
|
3095 | export interface TestFieldsEx2 {
|
3096 | fieldId?: number;
|
3097 | fieldName?: string;
|
3098 | fieldType?: number;
|
3099 | isResultScoped?: boolean;
|
3100 | isRunScoped?: boolean;
|
3101 | isSystemField?: boolean;
|
3102 | projectId?: string;
|
3103 | }
|
3104 |
|
3105 |
|
3106 |
|
3107 | export interface TestFlakyIdentifier {
|
3108 | |
3109 |
|
3110 |
|
3111 | branchName: string;
|
3112 | |
3113 |
|
3114 |
|
3115 | isFlaky: boolean;
|
3116 | }
|
3117 |
|
3118 |
|
3119 |
|
3120 | export interface TestHistoryQuery {
|
3121 | |
3122 |
|
3123 |
|
3124 | automatedTestName: string;
|
3125 | |
3126 |
|
3127 |
|
3128 | branch?: string;
|
3129 | |
3130 |
|
3131 |
|
3132 | buildDefinitionId?: number;
|
3133 | |
3134 |
|
3135 |
|
3136 | continuationToken?: string;
|
3137 | |
3138 |
|
3139 |
|
3140 | groupBy: TestResultGroupBy;
|
3141 | |
3142 |
|
3143 |
|
3144 | maxCompleteDate?: Date;
|
3145 | |
3146 |
|
3147 |
|
3148 | releaseEnvDefinitionId?: number;
|
3149 | |
3150 |
|
3151 |
|
3152 | resultsForGroup?: TestResultHistoryForGroup[];
|
3153 | |
3154 |
|
3155 |
|
3156 | testCaseId?: number;
|
3157 | |
3158 |
|
3159 |
|
3160 | trendDays?: number;
|
3161 | }
|
3162 |
|
3163 |
|
3164 |
|
3165 | export interface TestIterationDetailsModel {
|
3166 | |
3167 |
|
3168 |
|
3169 | actionResults?: TestActionResultModel[];
|
3170 | |
3171 |
|
3172 |
|
3173 | attachments?: TestCaseResultAttachmentModel[];
|
3174 | |
3175 |
|
3176 |
|
3177 | comment?: string;
|
3178 | |
3179 |
|
3180 |
|
3181 | completedDate?: Date;
|
3182 | |
3183 |
|
3184 |
|
3185 | durationInMs?: number;
|
3186 | |
3187 |
|
3188 |
|
3189 | errorMessage?: string;
|
3190 | |
3191 |
|
3192 |
|
3193 | id?: number;
|
3194 | |
3195 |
|
3196 |
|
3197 | outcome?: string;
|
3198 | |
3199 |
|
3200 |
|
3201 | parameters?: TestResultParameterModel[];
|
3202 | |
3203 |
|
3204 |
|
3205 | startedDate?: Date;
|
3206 | |
3207 |
|
3208 |
|
3209 | url?: string;
|
3210 | }
|
3211 |
|
3212 |
|
3213 |
|
3214 | export interface TestLog {
|
3215 | |
3216 |
|
3217 |
|
3218 | logReference: TestLogReference;
|
3219 | |
3220 |
|
3221 |
|
3222 | metaData?: {
|
3223 | [key: string]: string;
|
3224 | };
|
3225 | |
3226 |
|
3227 |
|
3228 | modifiedOn?: Date;
|
3229 | |
3230 |
|
3231 |
|
3232 | size?: number;
|
3233 | }
|
3234 |
|
3235 |
|
3236 |
|
3237 | export interface TestLogReference {
|
3238 | |
3239 |
|
3240 |
|
3241 | buildId: number;
|
3242 | |
3243 |
|
3244 |
|
3245 | filePath: string;
|
3246 | |
3247 |
|
3248 |
|
3249 | releaseEnvId?: number;
|
3250 | |
3251 |
|
3252 |
|
3253 | releaseId?: number;
|
3254 | |
3255 |
|
3256 |
|
3257 | resultId: number;
|
3258 | |
3259 |
|
3260 |
|
3261 | runId: number;
|
3262 | |
3263 |
|
3264 |
|
3265 | scope: TestLogScope;
|
3266 | |
3267 |
|
3268 |
|
3269 | subResultId: number;
|
3270 | |
3271 |
|
3272 |
|
3273 | type: TestLogType;
|
3274 | }
|
3275 |
|
3276 |
|
3277 |
|
3278 | export declare enum TestLogScope {
|
3279 | |
3280 |
|
3281 |
|
3282 | Run = 0,
|
3283 | |
3284 |
|
3285 |
|
3286 | Build = 1,
|
3287 | |
3288 |
|
3289 |
|
3290 | Release = 2
|
3291 | }
|
3292 |
|
3293 |
|
3294 |
|
3295 | export interface TestLogStatus {
|
3296 | |
3297 |
|
3298 |
|
3299 | exception: string;
|
3300 | |
3301 |
|
3302 |
|
3303 | status: TestLogStatusCode;
|
3304 | |
3305 |
|
3306 |
|
3307 | transferFailureType: string;
|
3308 | }
|
3309 |
|
3310 |
|
3311 |
|
3312 | export declare enum TestLogStatusCode {
|
3313 | |
3314 |
|
3315 |
|
3316 | Success = 0,
|
3317 | |
3318 |
|
3319 |
|
3320 | Failed = 1,
|
3321 | |
3322 |
|
3323 |
|
3324 | FileAlreadyExists = 2,
|
3325 | |
3326 |
|
3327 |
|
3328 | InvalidInput = 3,
|
3329 | |
3330 |
|
3331 |
|
3332 | InvalidFileName = 4,
|
3333 | |
3334 |
|
3335 |
|
3336 | InvalidContainer = 5,
|
3337 | |
3338 |
|
3339 |
|
3340 | TransferFailed = 6,
|
3341 | |
3342 |
|
3343 |
|
3344 | FeatureDisabled = 7,
|
3345 | |
3346 |
|
3347 |
|
3348 | BuildDoesNotExist = 8,
|
3349 | |
3350 |
|
3351 |
|
3352 | RunDoesNotExist = 9,
|
3353 | |
3354 |
|
3355 |
|
3356 | ContainerNotCreated = 10,
|
3357 | |
3358 |
|
3359 |
|
3360 | APINotSupported = 11,
|
3361 | |
3362 |
|
3363 |
|
3364 | FileSizeExceeds = 12,
|
3365 | |
3366 |
|
3367 |
|
3368 | ContainerNotFound = 13,
|
3369 | |
3370 |
|
3371 |
|
3372 | FileNotFound = 14,
|
3373 | |
3374 |
|
3375 |
|
3376 | DirectoryNotFound = 15,
|
3377 | |
3378 |
|
3379 |
|
3380 | StorageCapacityExceeded = 16
|
3381 | }
|
3382 |
|
3383 |
|
3384 |
|
3385 | export interface TestLogStoreAttachment {
|
3386 | |
3387 |
|
3388 |
|
3389 | attachmentType?: AttachmentType;
|
3390 | |
3391 |
|
3392 |
|
3393 | comment?: string;
|
3394 | |
3395 |
|
3396 |
|
3397 | createdDate?: Date;
|
3398 | |
3399 |
|
3400 |
|
3401 | fileName?: string;
|
3402 | |
3403 |
|
3404 |
|
3405 | size?: number;
|
3406 | |
3407 |
|
3408 |
|
3409 | url?: string;
|
3410 | }
|
3411 |
|
3412 |
|
3413 |
|
3414 | export interface TestLogStoreAttachmentReference {
|
3415 | |
3416 |
|
3417 |
|
3418 | url: string;
|
3419 | }
|
3420 |
|
3421 |
|
3422 |
|
3423 | export interface TestLogStoreEndpointDetails {
|
3424 | |
3425 |
|
3426 |
|
3427 | endpointSASUri?: string;
|
3428 | |
3429 |
|
3430 |
|
3431 | endpointType?: TestLogStoreEndpointType;
|
3432 | |
3433 |
|
3434 |
|
3435 | status?: TestLogStatusCode;
|
3436 | }
|
3437 |
|
3438 |
|
3439 |
|
3440 | export declare enum TestLogStoreEndpointType {
|
3441 | |
3442 |
|
3443 |
|
3444 | Root = 1,
|
3445 | |
3446 |
|
3447 |
|
3448 | File = 2
|
3449 | }
|
3450 |
|
3451 |
|
3452 |
|
3453 | export declare enum TestLogStoreOperationType {
|
3454 | |
3455 |
|
3456 |
|
3457 | Read = 1,
|
3458 | |
3459 |
|
3460 |
|
3461 | Create = 2,
|
3462 | |
3463 |
|
3464 |
|
3465 | ReadAndCreate = 3
|
3466 | }
|
3467 |
|
3468 |
|
3469 |
|
3470 | export declare enum TestLogType {
|
3471 | |
3472 |
|
3473 |
|
3474 | GeneralAttachment = 1,
|
3475 | |
3476 |
|
3477 |
|
3478 | CodeCoverage = 2,
|
3479 | |
3480 |
|
3481 |
|
3482 | TestImpact = 3,
|
3483 | |
3484 |
|
3485 |
|
3486 | Intermediate = 4,
|
3487 | |
3488 |
|
3489 |
|
3490 | System = 5,
|
3491 | |
3492 |
|
3493 |
|
3494 | MergedCoverageFile = 6
|
3495 | }
|
3496 | export interface TestMessageLog2 {
|
3497 | testMessageLogId?: number;
|
3498 | }
|
3499 |
|
3500 |
|
3501 |
|
3502 | export interface TestMessageLogDetails {
|
3503 | |
3504 |
|
3505 |
|
3506 | dateCreated?: Date;
|
3507 | |
3508 |
|
3509 |
|
3510 | entryId?: number;
|
3511 | |
3512 |
|
3513 |
|
3514 | message?: string;
|
3515 | }
|
3516 | export interface TestMessageLogEntry {
|
3517 | dateCreated?: Date;
|
3518 | entryId?: number;
|
3519 | logLevel?: number;
|
3520 | logUser?: string;
|
3521 | logUserName?: string;
|
3522 | message?: string;
|
3523 | testMessageLogId?: number;
|
3524 | }
|
3525 | export interface TestMessageLogEntry2 {
|
3526 | dateCreated?: Date;
|
3527 | entryId?: number;
|
3528 | logLevel?: number;
|
3529 | logUser?: string;
|
3530 | message?: string;
|
3531 | testMessageLogId?: number;
|
3532 | }
|
3533 | export interface TestMethod {
|
3534 | container?: string;
|
3535 | name: string;
|
3536 | }
|
3537 |
|
3538 |
|
3539 |
|
3540 | export interface TestOperationReference {
|
3541 | id?: string;
|
3542 | status?: string;
|
3543 | url?: string;
|
3544 | }
|
3545 |
|
3546 |
|
3547 |
|
3548 | export declare enum TestOutcome {
|
3549 | |
3550 |
|
3551 |
|
3552 | Unspecified = 0,
|
3553 | |
3554 |
|
3555 |
|
3556 | None = 1,
|
3557 | |
3558 |
|
3559 |
|
3560 | Passed = 2,
|
3561 | |
3562 |
|
3563 |
|
3564 | Failed = 3,
|
3565 | |
3566 |
|
3567 |
|
3568 | Inconclusive = 4,
|
3569 | |
3570 |
|
3571 |
|
3572 | Timeout = 5,
|
3573 | |
3574 |
|
3575 |
|
3576 | Aborted = 6,
|
3577 | |
3578 |
|
3579 |
|
3580 | Blocked = 7,
|
3581 | |
3582 |
|
3583 |
|
3584 | NotExecuted = 8,
|
3585 | |
3586 |
|
3587 |
|
3588 | Warning = 9,
|
3589 | |
3590 |
|
3591 |
|
3592 | Error = 10,
|
3593 | |
3594 |
|
3595 |
|
3596 | NotApplicable = 11,
|
3597 | |
3598 |
|
3599 |
|
3600 | Paused = 12,
|
3601 | |
3602 |
|
3603 |
|
3604 | InProgress = 13,
|
3605 | |
3606 |
|
3607 |
|
3608 | NotImpacted = 14,
|
3609 | MaxValue = 14
|
3610 | }
|
3611 |
|
3612 |
|
3613 |
|
3614 | export interface TestOutcomeSettings {
|
3615 | |
3616 |
|
3617 |
|
3618 | syncOutcomeAcrossSuites?: boolean;
|
3619 | }
|
3620 | export interface TestParameter2 {
|
3621 | actionPath?: string;
|
3622 | actual?: number[];
|
3623 | creationDate?: Date;
|
3624 | dataType?: number;
|
3625 | dateModified?: Date;
|
3626 | expected?: number[];
|
3627 | iterationId?: number;
|
3628 | parameterName?: string;
|
3629 | testResultId?: number;
|
3630 | testRunId?: number;
|
3631 | }
|
3632 |
|
3633 |
|
3634 |
|
3635 | export interface TestPlan {
|
3636 | |
3637 |
|
3638 |
|
3639 | area?: ShallowReference;
|
3640 | automatedTestEnvironment?: TestEnvironment;
|
3641 | automatedTestSettings?: TestSettings;
|
3642 | |
3643 |
|
3644 |
|
3645 | build?: ShallowReference;
|
3646 | |
3647 |
|
3648 |
|
3649 | buildDefinition?: ShallowReference;
|
3650 | clientUrl: string;
|
3651 | |
3652 |
|
3653 |
|
3654 | description?: string;
|
3655 | |
3656 |
|
3657 |
|
3658 | endDate?: Date;
|
3659 | |
3660 |
|
3661 |
|
3662 | id: number;
|
3663 | |
3664 |
|
3665 |
|
3666 | iteration: string;
|
3667 | manualTestEnvironment?: TestEnvironment;
|
3668 | manualTestSettings?: TestSettings;
|
3669 | |
3670 |
|
3671 |
|
3672 | name: string;
|
3673 | |
3674 |
|
3675 |
|
3676 | owner?: VSSInterfaces.IdentityRef;
|
3677 | previousBuild?: ShallowReference;
|
3678 | |
3679 |
|
3680 |
|
3681 | project?: ShallowReference;
|
3682 | |
3683 |
|
3684 |
|
3685 | releaseEnvironmentDefinition?: ReleaseEnvironmentDefinitionReference;
|
3686 | |
3687 |
|
3688 |
|
3689 | revision?: number;
|
3690 | |
3691 |
|
3692 |
|
3693 | rootSuite: ShallowReference;
|
3694 | |
3695 |
|
3696 |
|
3697 | startDate?: Date;
|
3698 | |
3699 |
|
3700 |
|
3701 | state?: string;
|
3702 | |
3703 |
|
3704 |
|
3705 | testOutcomeSettings?: TestOutcomeSettings;
|
3706 | updatedBy?: VSSInterfaces.IdentityRef;
|
3707 | updatedDate?: Date;
|
3708 | |
3709 |
|
3710 |
|
3711 | url?: string;
|
3712 | }
|
3713 | export interface TestPlanCloneRequest {
|
3714 | destinationTestPlan?: TestPlan;
|
3715 | options?: CloneOptions;
|
3716 | suiteIds?: number[];
|
3717 | }
|
3718 | export interface TestPlanHubData {
|
3719 | selectedSuiteId: number;
|
3720 | testPlan: TestPlan;
|
3721 | testPoints: TestPoint[];
|
3722 | testSuites: TestSuite[];
|
3723 | totalTestPoints: number;
|
3724 | }
|
3725 | export interface TestPlansWithSelection {
|
3726 | lastSelectedPlan?: number;
|
3727 | lastSelectedSuite?: number;
|
3728 | plans: TestPlan[];
|
3729 | }
|
3730 |
|
3731 |
|
3732 |
|
3733 | export interface TestPoint {
|
3734 | |
3735 |
|
3736 |
|
3737 | assignedTo?: VSSInterfaces.IdentityRef;
|
3738 | |
3739 |
|
3740 |
|
3741 | automated?: boolean;
|
3742 | |
3743 |
|
3744 |
|
3745 | comment?: string;
|
3746 | |
3747 |
|
3748 |
|
3749 | configuration: ShallowReference;
|
3750 | |
3751 |
|
3752 |
|
3753 | failureType?: string;
|
3754 | |
3755 |
|
3756 |
|
3757 | id: number;
|
3758 | |
3759 |
|
3760 |
|
3761 | lastResetToActive?: Date;
|
3762 | |
3763 |
|
3764 |
|
3765 | lastResolutionStateId?: number;
|
3766 | |
3767 |
|
3768 |
|
3769 | lastResult?: ShallowReference;
|
3770 | |
3771 |
|
3772 |
|
3773 | lastResultDetails?: LastResultDetails;
|
3774 | |
3775 |
|
3776 |
|
3777 | lastResultState?: string;
|
3778 | |
3779 |
|
3780 |
|
3781 | lastRunBuildNumber?: string;
|
3782 | |
3783 |
|
3784 |
|
3785 | lastTestRun?: ShallowReference;
|
3786 | |
3787 |
|
3788 |
|
3789 | lastUpdatedBy?: VSSInterfaces.IdentityRef;
|
3790 | |
3791 |
|
3792 |
|
3793 | lastUpdatedDate?: Date;
|
3794 | |
3795 |
|
3796 |
|
3797 | outcome: string;
|
3798 | |
3799 |
|
3800 |
|
3801 | revision?: number;
|
3802 | |
3803 |
|
3804 |
|
3805 | state?: string;
|
3806 | |
3807 |
|
3808 |
|
3809 | suite?: ShallowReference;
|
3810 | |
3811 |
|
3812 |
|
3813 | testCase: WorkItemReference;
|
3814 | |
3815 |
|
3816 |
|
3817 | testPlan?: ShallowReference;
|
3818 | |
3819 |
|
3820 |
|
3821 | url: string;
|
3822 | |
3823 |
|
3824 |
|
3825 | workItemProperties: any[];
|
3826 | }
|
3827 | export interface TestPointReference {
|
3828 | id: number;
|
3829 | state?: TestPointState;
|
3830 | }
|
3831 | export interface TestPointsEvent {
|
3832 | projectName?: string;
|
3833 | testPoints: TestPointReference[];
|
3834 | }
|
3835 |
|
3836 |
|
3837 |
|
3838 | export interface TestPointsQuery {
|
3839 | |
3840 |
|
3841 |
|
3842 | orderBy?: string;
|
3843 | |
3844 |
|
3845 |
|
3846 | points?: TestPoint[];
|
3847 | |
3848 |
|
3849 |
|
3850 | pointsFilter?: PointsFilter;
|
3851 | |
3852 |
|
3853 |
|
3854 | witFields?: string[];
|
3855 | }
|
3856 | export declare enum TestPointState {
|
3857 | |
3858 |
|
3859 |
|
3860 | None = 0,
|
3861 | |
3862 |
|
3863 |
|
3864 | Ready = 1,
|
3865 | |
3866 |
|
3867 |
|
3868 | Completed = 2,
|
3869 | |
3870 |
|
3871 |
|
3872 | NotReady = 3,
|
3873 | |
3874 |
|
3875 |
|
3876 | InProgress = 4,
|
3877 | MaxValue = 4
|
3878 | }
|
3879 | export interface TestPointsUpdatedEvent extends TestPointsEvent {
|
3880 | }
|
3881 |
|
3882 |
|
3883 |
|
3884 | export interface TestResolutionState {
|
3885 | |
3886 |
|
3887 |
|
3888 | id: number;
|
3889 | |
3890 |
|
3891 |
|
3892 | name: string;
|
3893 | project: ShallowReference;
|
3894 | }
|
3895 | export interface TestResult2 {
|
3896 | afnStripId?: number;
|
3897 | computerName?: string;
|
3898 | creationDate?: Date;
|
3899 | dateCompleted?: Date;
|
3900 | dateStarted?: Date;
|
3901 | effectivePointState?: number;
|
3902 | failureType?: number;
|
3903 | lastUpdated?: Date;
|
3904 | lastUpdatedBy?: string;
|
3905 | outcome?: number;
|
3906 | owner?: string;
|
3907 | projectId?: string;
|
3908 | resetCount?: number;
|
3909 | resolutionStateId?: number;
|
3910 | revision?: number;
|
3911 | runBy?: string;
|
3912 | state?: number;
|
3913 | testCaseRefId?: number;
|
3914 | testResultId?: number;
|
3915 | testRunId?: number;
|
3916 | }
|
3917 | export interface TestResultAcrossProjectResponse {
|
3918 | projectName?: string;
|
3919 | testResult?: LegacyTestCaseResult;
|
3920 | }
|
3921 | export interface TestResultAttachment {
|
3922 | actionPath?: string;
|
3923 | attachmentType?: AttachmentType;
|
3924 | comment?: string;
|
3925 | creationDate?: Date;
|
3926 | downloadQueryString?: string;
|
3927 | fileName?: string;
|
3928 | id?: number;
|
3929 | isComplete?: boolean;
|
3930 | iterationId?: number;
|
3931 | length?: number;
|
3932 | sessionId?: number;
|
3933 | testResultId?: number;
|
3934 | testRunId?: number;
|
3935 | tmiRunId?: string;
|
3936 | }
|
3937 | export interface TestResultAttachmentIdentity {
|
3938 | attachmentId?: number;
|
3939 | sessionId?: number;
|
3940 | testResultId?: number;
|
3941 | testRunId?: number;
|
3942 | }
|
3943 | export interface TestResultCreateModel {
|
3944 | area?: ShallowReference;
|
3945 | associatedWorkItems?: number[];
|
3946 | automatedTestId?: string;
|
3947 | automatedTestName?: string;
|
3948 | automatedTestStorage?: string;
|
3949 | automatedTestType?: string;
|
3950 | automatedTestTypeId?: string;
|
3951 | comment?: string;
|
3952 | completedDate?: string;
|
3953 | computerName?: string;
|
3954 | configuration?: ShallowReference;
|
3955 | customFields?: CustomTestField[];
|
3956 | durationInMs?: string;
|
3957 | errorMessage?: string;
|
3958 | failureType?: string;
|
3959 | outcome?: string;
|
3960 | owner?: VSSInterfaces.IdentityRef;
|
3961 | resolutionState?: string;
|
3962 | runBy?: VSSInterfaces.IdentityRef;
|
3963 | stackTrace?: string;
|
3964 | startedDate?: string;
|
3965 | state?: string;
|
3966 | testCase?: ShallowReference;
|
3967 | testCasePriority?: string;
|
3968 | testCaseTitle?: string;
|
3969 | testPoint?: ShallowReference;
|
3970 | }
|
3971 |
|
3972 |
|
3973 |
|
3974 | export interface TestResultDimension {
|
3975 | |
3976 |
|
3977 |
|
3978 | name?: string;
|
3979 | |
3980 |
|
3981 |
|
3982 | value?: string;
|
3983 | }
|
3984 | export interface TestResultDocument {
|
3985 | operationReference?: TestOperationReference;
|
3986 | payload?: TestResultPayload;
|
3987 | }
|
3988 | export interface TestResultFailuresAnalysis {
|
3989 | existingFailures?: TestFailureDetails;
|
3990 | fixedTests?: TestFailureDetails;
|
3991 | newFailures?: TestFailureDetails;
|
3992 | }
|
3993 |
|
3994 |
|
3995 |
|
3996 | export interface TestResultFailureType {
|
3997 | |
3998 |
|
3999 |
|
4000 | id: number;
|
4001 | |
4002 |
|
4003 |
|
4004 | name: string;
|
4005 | }
|
4006 |
|
4007 |
|
4008 |
|
4009 | export interface TestResultFailureTypeRequestModel {
|
4010 | |
4011 |
|
4012 |
|
4013 | name: string;
|
4014 | }
|
4015 |
|
4016 |
|
4017 |
|
4018 | export declare enum TestResultGroupBy {
|
4019 | |
4020 |
|
4021 |
|
4022 | Branch = 1,
|
4023 | |
4024 |
|
4025 |
|
4026 | Environment = 2
|
4027 | }
|
4028 | export interface TestResultHistory {
|
4029 | groupByField?: string;
|
4030 | resultsForGroup?: TestResultHistoryDetailsForGroup[];
|
4031 | }
|
4032 | export interface TestResultHistoryDetailsForGroup {
|
4033 | groupByValue?: any;
|
4034 | latestResult?: TestCaseResult;
|
4035 | }
|
4036 |
|
4037 |
|
4038 |
|
4039 | export interface TestResultHistoryForGroup {
|
4040 | |
4041 |
|
4042 |
|
4043 | displayName?: string;
|
4044 | |
4045 |
|
4046 |
|
4047 | groupByValue: string;
|
4048 | |
4049 |
|
4050 |
|
4051 | results?: TestCaseResult[];
|
4052 | }
|
4053 |
|
4054 |
|
4055 |
|
4056 | export interface TestResultMetaData {
|
4057 | |
4058 |
|
4059 |
|
4060 | automatedTestName?: string;
|
4061 | |
4062 |
|
4063 |
|
4064 | automatedTestStorage?: string;
|
4065 | |
4066 |
|
4067 |
|
4068 | flakyIdentifiers?: TestFlakyIdentifier[];
|
4069 | |
4070 |
|
4071 |
|
4072 | owner?: string;
|
4073 | |
4074 |
|
4075 |
|
4076 | priority?: number;
|
4077 | |
4078 |
|
4079 |
|
4080 | testCaseReferenceId?: number;
|
4081 | |
4082 |
|
4083 |
|
4084 | testCaseTitle?: string;
|
4085 | }
|
4086 |
|
4087 |
|
4088 |
|
4089 | export interface TestResultMetaDataUpdateInput {
|
4090 | |
4091 |
|
4092 |
|
4093 | flakyIdentifiers?: TestFlakyIdentifier[];
|
4094 | }
|
4095 | export interface TestResultMetaDataUpdateResponse {
|
4096 | status?: string;
|
4097 | }
|
4098 | export interface TestResultModelBase {
|
4099 | |
4100 |
|
4101 |
|
4102 | comment?: string;
|
4103 | |
4104 |
|
4105 |
|
4106 | completedDate?: Date;
|
4107 | |
4108 |
|
4109 |
|
4110 | durationInMs?: number;
|
4111 | |
4112 |
|
4113 |
|
4114 | errorMessage?: string;
|
4115 | |
4116 |
|
4117 |
|
4118 | outcome?: string;
|
4119 | |
4120 |
|
4121 |
|
4122 | startedDate?: Date;
|
4123 | }
|
4124 | export interface TestResultParameter {
|
4125 | actionPath?: string;
|
4126 | actual?: number[];
|
4127 | expected?: number[];
|
4128 | iterationId?: number;
|
4129 | parameterName?: string;
|
4130 | testResultId?: number;
|
4131 | testRunId?: number;
|
4132 | }
|
4133 |
|
4134 |
|
4135 |
|
4136 | export interface TestResultParameterModel {
|
4137 | |
4138 |
|
4139 |
|
4140 | actionPath?: string;
|
4141 | |
4142 |
|
4143 |
|
4144 | iterationId?: number;
|
4145 | |
4146 |
|
4147 |
|
4148 | parameterName?: string;
|
4149 | |
4150 |
|
4151 |
|
4152 | stepIdentifier?: string;
|
4153 | |
4154 |
|
4155 |
|
4156 | url?: string;
|
4157 | |
4158 |
|
4159 |
|
4160 | value?: string;
|
4161 | }
|
4162 | export interface TestResultPayload {
|
4163 | comment?: string;
|
4164 | name?: string;
|
4165 | stream?: string;
|
4166 | }
|
4167 | export interface TestResultReset2 {
|
4168 | auditIdentity?: string;
|
4169 | dateModified?: Date;
|
4170 | projectId?: string;
|
4171 | revision?: number;
|
4172 | testResultId?: number;
|
4173 | testResultRV?: number[];
|
4174 | testRunId?: number;
|
4175 | }
|
4176 | export interface TestResultsContext {
|
4177 | build?: BuildReference;
|
4178 | contextType?: TestResultsContextType;
|
4179 | pipelineReference?: PipelineReference;
|
4180 | release?: ReleaseReference;
|
4181 | }
|
4182 | export declare enum TestResultsContextType {
|
4183 | Build = 1,
|
4184 | Release = 2,
|
4185 | Pipeline = 3
|
4186 | }
|
4187 | export interface TestResultsDetails {
|
4188 | groupByField?: string;
|
4189 | resultsForGroup?: TestResultsDetailsForGroup[];
|
4190 | }
|
4191 | export interface TestResultsDetailsForGroup {
|
4192 | groupByValue?: any;
|
4193 | results?: TestCaseResult[];
|
4194 | resultsCountByOutcome?: {
|
4195 | [key: number]: AggregatedResultsByOutcome;
|
4196 | };
|
4197 | tags?: string[];
|
4198 | }
|
4199 | export interface TestResultsEx2 {
|
4200 | bitValue?: boolean;
|
4201 | creationDate?: Date;
|
4202 | dateTimeValue?: Date;
|
4203 | fieldId?: number;
|
4204 | fieldName?: string;
|
4205 | floatValue?: number;
|
4206 | guidValue?: string;
|
4207 | intValue?: number;
|
4208 | projectId?: string;
|
4209 | stringValue?: string;
|
4210 | testResultId?: number;
|
4211 | testRunId?: number;
|
4212 | }
|
4213 | export interface TestResultsGroupsForBuild {
|
4214 | |
4215 |
|
4216 |
|
4217 | buildId: number;
|
4218 | |
4219 |
|
4220 |
|
4221 | fields?: FieldDetailsForTestResults[];
|
4222 | }
|
4223 | export interface TestResultsGroupsForRelease {
|
4224 | |
4225 |
|
4226 |
|
4227 | fields?: FieldDetailsForTestResults[];
|
4228 | |
4229 |
|
4230 |
|
4231 | releaseEnvId?: number;
|
4232 | |
4233 |
|
4234 |
|
4235 | releaseId: number;
|
4236 | }
|
4237 | export interface TestResultsQuery {
|
4238 | fields?: string[];
|
4239 | results?: TestCaseResult[];
|
4240 | resultsFilter?: ResultsFilter;
|
4241 | }
|
4242 |
|
4243 |
|
4244 |
|
4245 | export interface TestResultsSession {
|
4246 | |
4247 |
|
4248 |
|
4249 | endTimeUTC: Date;
|
4250 | |
4251 |
|
4252 |
|
4253 | id: number;
|
4254 | |
4255 |
|
4256 |
|
4257 | layout: any[];
|
4258 | |
4259 |
|
4260 |
|
4261 | name: string;
|
4262 | |
4263 |
|
4264 |
|
4265 | result: SessionResult;
|
4266 | |
4267 |
|
4268 |
|
4269 | sessionSourcePipeline: SessionSourcePipeline;
|
4270 | |
4271 |
|
4272 |
|
4273 | source: Source;
|
4274 | |
4275 |
|
4276 |
|
4277 | startTimeUTC: Date;
|
4278 | |
4279 |
|
4280 |
|
4281 | state: TestResultsSessionState;
|
4282 | |
4283 |
|
4284 |
|
4285 | testRuns: number[];
|
4286 | |
4287 |
|
4288 |
|
4289 | timeline?: Timeline<SessionTimelineType>[];
|
4290 | |
4291 |
|
4292 |
|
4293 | type: string;
|
4294 | |
4295 |
|
4296 |
|
4297 | uid: string;
|
4298 | }
|
4299 | export declare enum TestResultsSessionState {
|
4300 | |
4301 |
|
4302 |
|
4303 | None = 0,
|
4304 | |
4305 |
|
4306 |
|
4307 | Running = 1,
|
4308 | |
4309 |
|
4310 |
|
4311 | Completed = 2,
|
4312 | |
4313 |
|
4314 |
|
4315 | Waiting = 3,
|
4316 | |
4317 |
|
4318 |
|
4319 | Cancelled = 4
|
4320 | }
|
4321 | export interface TestResultsSettings {
|
4322 | |
4323 |
|
4324 |
|
4325 | flakySettings?: FlakySettings;
|
4326 | newTestResultLoggingSettings?: NewTestResultLoggingSettings;
|
4327 | }
|
4328 | export declare enum TestResultsSettingsType {
|
4329 | |
4330 |
|
4331 |
|
4332 | All = 1,
|
4333 | |
4334 |
|
4335 |
|
4336 | Flaky = 2,
|
4337 | |
4338 |
|
4339 |
|
4340 | NewTestLogging = 3
|
4341 | }
|
4342 | export interface TestResultSummary {
|
4343 | aggregatedResultsAnalysis?: AggregatedResultsAnalysis;
|
4344 | noConfigRunsCount?: number;
|
4345 | teamProject?: TfsCoreInterfaces.TeamProjectReference;
|
4346 | testFailures?: TestFailuresAnalysis;
|
4347 | testResultsContext?: TestResultsContext;
|
4348 | totalRunsCount?: number;
|
4349 | }
|
4350 | export interface TestResultsUpdateSettings {
|
4351 | |
4352 |
|
4353 |
|
4354 | flakySettings?: FlakySettings;
|
4355 | |
4356 |
|
4357 |
|
4358 | newTestResultLoggingSettings?: NewTestResultLoggingSettings;
|
4359 | }
|
4360 | export interface TestResultsWithWatermark {
|
4361 | changedDate?: Date;
|
4362 | pointsResults?: PointsResults2[];
|
4363 | resultId?: number;
|
4364 | runId?: number;
|
4365 | }
|
4366 | export interface TestResultTrendFilter {
|
4367 | branchNames?: string[];
|
4368 | buildCount?: number;
|
4369 | definitionIds: number[];
|
4370 | envDefinitionIds?: number[];
|
4371 | maxCompleteDate?: Date;
|
4372 | publishContext?: string;
|
4373 | testRunTitles?: string[];
|
4374 | trendDays?: number;
|
4375 | }
|
4376 |
|
4377 |
|
4378 |
|
4379 | export interface TestRun {
|
4380 | |
4381 |
|
4382 |
|
4383 | build?: ShallowReference;
|
4384 | |
4385 |
|
4386 |
|
4387 | buildConfiguration?: BuildConfiguration;
|
4388 | |
4389 |
|
4390 |
|
4391 | comment?: string;
|
4392 | |
4393 |
|
4394 |
|
4395 | completedDate?: Date;
|
4396 | |
4397 |
|
4398 |
|
4399 | controller?: string;
|
4400 | |
4401 |
|
4402 |
|
4403 | createdDate?: Date;
|
4404 | |
4405 |
|
4406 |
|
4407 | customFields?: CustomTestField[];
|
4408 | |
4409 |
|
4410 |
|
4411 | dropLocation?: string;
|
4412 | dtlAutEnvironment?: ShallowReference;
|
4413 | dtlEnvironment?: ShallowReference;
|
4414 | dtlEnvironmentCreationDetails?: DtlEnvironmentDetails;
|
4415 | |
4416 |
|
4417 |
|
4418 | dueDate?: Date;
|
4419 | |
4420 |
|
4421 |
|
4422 | errorMessage?: string;
|
4423 | filter?: RunFilter;
|
4424 | |
4425 |
|
4426 |
|
4427 | id: number;
|
4428 | |
4429 |
|
4430 |
|
4431 | incompleteTests?: number;
|
4432 | |
4433 |
|
4434 |
|
4435 | isAutomated: boolean;
|
4436 | |
4437 |
|
4438 |
|
4439 | iteration?: string;
|
4440 | |
4441 |
|
4442 |
|
4443 | lastUpdatedBy?: VSSInterfaces.IdentityRef;
|
4444 | |
4445 |
|
4446 |
|
4447 | lastUpdatedDate?: Date;
|
4448 | |
4449 |
|
4450 |
|
4451 | name: string;
|
4452 | |
4453 |
|
4454 |
|
4455 | notApplicableTests?: number;
|
4456 | |
4457 |
|
4458 |
|
4459 | owner?: VSSInterfaces.IdentityRef;
|
4460 | |
4461 |
|
4462 |
|
4463 | passedTests?: number;
|
4464 | |
4465 |
|
4466 |
|
4467 | phase?: string;
|
4468 | |
4469 |
|
4470 |
|
4471 | pipelineReference?: PipelineReference;
|
4472 | |
4473 |
|
4474 |
|
4475 | plan?: ShallowReference;
|
4476 | |
4477 |
|
4478 |
|
4479 | postProcessState?: string;
|
4480 | |
4481 |
|
4482 |
|
4483 | project?: ShallowReference;
|
4484 | |
4485 |
|
4486 |
|
4487 | release?: ReleaseReference;
|
4488 | |
4489 |
|
4490 |
|
4491 | releaseEnvironmentUri?: string;
|
4492 | |
4493 |
|
4494 |
|
4495 | releaseUri?: string;
|
4496 | revision?: number;
|
4497 | |
4498 |
|
4499 |
|
4500 | runStatistics?: RunStatistic[];
|
4501 | |
4502 |
|
4503 |
|
4504 | startedDate?: Date;
|
4505 | |
4506 |
|
4507 |
|
4508 | state?: string;
|
4509 | |
4510 |
|
4511 |
|
4512 | substate?: TestRunSubstate;
|
4513 | |
4514 |
|
4515 |
|
4516 | tags?: TestTag[];
|
4517 | |
4518 |
|
4519 |
|
4520 | testEnvironment?: TestEnvironment;
|
4521 | testMessageLogId?: number;
|
4522 | testSettings?: ShallowReference;
|
4523 | |
4524 |
|
4525 |
|
4526 | totalTests?: number;
|
4527 | |
4528 |
|
4529 |
|
4530 | unanalyzedTests?: number;
|
4531 | |
4532 |
|
4533 |
|
4534 | url: string;
|
4535 | |
4536 |
|
4537 |
|
4538 | webAccessUrl?: string;
|
4539 | }
|
4540 | export interface TestRun2 {
|
4541 | buildConfigurationId?: number;
|
4542 | buildNumber?: string;
|
4543 | comment?: string;
|
4544 | completeDate?: Date;
|
4545 | controller?: string;
|
4546 | coverageId?: number;
|
4547 | creationDate?: Date;
|
4548 | deletedOn?: Date;
|
4549 | dropLocation?: string;
|
4550 | dueDate?: Date;
|
4551 | errorMessage?: string;
|
4552 | incompleteTests?: number;
|
4553 | isAutomated?: boolean;
|
4554 | isBvt?: boolean;
|
4555 | isMigrated?: boolean;
|
4556 | iterationId?: number;
|
4557 | lastUpdated?: Date;
|
4558 | lastUpdatedBy?: string;
|
4559 | legacySharePath?: string;
|
4560 | maxReservedResultId?: number;
|
4561 | notApplicableTests?: number;
|
4562 | owner?: string;
|
4563 | passedTests?: number;
|
4564 | postProcessState?: number;
|
4565 | projectId?: string;
|
4566 | publicTestSettingsId?: number;
|
4567 | releaseEnvironmentUri?: string;
|
4568 | releaseUri?: string;
|
4569 | revision?: number;
|
4570 | startDate?: Date;
|
4571 | state?: number;
|
4572 | testEnvironmentId?: string;
|
4573 | testMessageLogId?: number;
|
4574 | testPlanId?: number;
|
4575 | testRunContextId?: number;
|
4576 | testRunId?: number;
|
4577 | testSettingsId?: number;
|
4578 | title?: string;
|
4579 | totalTests?: number;
|
4580 | type?: number;
|
4581 | unanalyzedTests?: number;
|
4582 | version?: number;
|
4583 | }
|
4584 | export interface TestRunCanceledEvent extends TestRunEvent {
|
4585 | }
|
4586 | export interface TestRunContext2 {
|
4587 | buildRefId?: number;
|
4588 | projectId?: string;
|
4589 | releaseRefId?: number;
|
4590 | sourceWorkflow?: string;
|
4591 | testRunContextId?: number;
|
4592 | }
|
4593 |
|
4594 |
|
4595 |
|
4596 | export interface TestRunCoverage {
|
4597 | |
4598 |
|
4599 |
|
4600 | lastError?: string;
|
4601 | |
4602 |
|
4603 |
|
4604 | modules?: ModuleCoverage[];
|
4605 | |
4606 |
|
4607 |
|
4608 | state?: string;
|
4609 | |
4610 |
|
4611 |
|
4612 | testRun?: ShallowReference;
|
4613 | }
|
4614 | export interface TestRunCreatedEvent extends TestRunEvent {
|
4615 | }
|
4616 | export interface TestRunEvent {
|
4617 | testRun: TestRun;
|
4618 | }
|
4619 | export interface TestRunEx2 {
|
4620 | bitValue?: boolean;
|
4621 | createdDate?: Date;
|
4622 | dateTimeValue?: Date;
|
4623 | fieldId?: number;
|
4624 | fieldName?: string;
|
4625 | floatValue?: number;
|
4626 | guidValue?: string;
|
4627 | intValue?: number;
|
4628 | projectId?: string;
|
4629 | stringValue?: string;
|
4630 | testRunId?: number;
|
4631 | }
|
4632 | export interface TestRunExtended2 {
|
4633 | autEnvironmentUrl?: string;
|
4634 | csmContent?: string;
|
4635 | csmParameters?: string;
|
4636 | projectId?: string;
|
4637 | sourceFilter?: string;
|
4638 | subscriptionName?: string;
|
4639 | substate?: number;
|
4640 | testCaseFilter?: string;
|
4641 | testEnvironmentUrl?: string;
|
4642 | testRunId?: number;
|
4643 | }
|
4644 |
|
4645 |
|
4646 |
|
4647 | export declare enum TestRunOutcome {
|
4648 | |
4649 |
|
4650 |
|
4651 | Passed = 0,
|
4652 | |
4653 |
|
4654 |
|
4655 | Failed = 1,
|
4656 | |
4657 |
|
4658 |
|
4659 | NotImpacted = 2,
|
4660 | |
4661 |
|
4662 |
|
4663 | Others = 3
|
4664 | }
|
4665 |
|
4666 |
|
4667 |
|
4668 | export declare enum TestRunPublishContext {
|
4669 | |
4670 |
|
4671 |
|
4672 | Build = 1,
|
4673 | |
4674 |
|
4675 |
|
4676 | Release = 2,
|
4677 | |
4678 |
|
4679 |
|
4680 | All = 3
|
4681 | }
|
4682 | export interface TestRunStartedEvent extends TestRunEvent {
|
4683 | }
|
4684 |
|
4685 |
|
4686 |
|
4687 | export declare enum TestRunState {
|
4688 | |
4689 |
|
4690 |
|
4691 | Unspecified = 0,
|
4692 | |
4693 |
|
4694 |
|
4695 | NotStarted = 1,
|
4696 | |
4697 |
|
4698 |
|
4699 | InProgress = 2,
|
4700 | |
4701 |
|
4702 |
|
4703 | Completed = 3,
|
4704 | |
4705 |
|
4706 |
|
4707 | Aborted = 4,
|
4708 | |
4709 |
|
4710 |
|
4711 | Waiting = 5,
|
4712 | |
4713 |
|
4714 |
|
4715 | NeedsInvestigation = 6
|
4716 | }
|
4717 |
|
4718 |
|
4719 |
|
4720 | export interface TestRunStatistic {
|
4721 | run: ShallowReference;
|
4722 | runStatistics?: RunStatistic[];
|
4723 | }
|
4724 |
|
4725 |
|
4726 |
|
4727 | export declare enum TestRunSubstate {
|
4728 | |
4729 |
|
4730 |
|
4731 | None = 0,
|
4732 | |
4733 |
|
4734 |
|
4735 | CreatingEnvironment = 1,
|
4736 | |
4737 |
|
4738 |
|
4739 | RunningTests = 2,
|
4740 | |
4741 |
|
4742 |
|
4743 | CanceledByUser = 3,
|
4744 | |
4745 |
|
4746 |
|
4747 | AbortedBySystem = 4,
|
4748 | |
4749 |
|
4750 |
|
4751 | TimedOut = 5,
|
4752 | |
4753 |
|
4754 |
|
4755 | PendingAnalysis = 6,
|
4756 | |
4757 |
|
4758 |
|
4759 | Analyzed = 7,
|
4760 | |
4761 |
|
4762 |
|
4763 | CancellationInProgress = 8
|
4764 | }
|
4765 | export interface TestRunSummary2 {
|
4766 | isRerun?: boolean;
|
4767 | projectId?: string;
|
4768 | resultCount?: number;
|
4769 | resultDuration?: number;
|
4770 | runDuration?: number;
|
4771 | testOutcome?: number;
|
4772 | testRunCompletedDate?: Date;
|
4773 | testRunContextId?: number;
|
4774 | testRunId?: number;
|
4775 | testRunStatsId?: number;
|
4776 | }
|
4777 | export interface TestRunWithDtlEnvEvent extends TestRunEvent {
|
4778 | configurationIds: number[];
|
4779 | mappedTestRunEventType: string;
|
4780 | runTimeout: any;
|
4781 | testConfigurationsMapping: string;
|
4782 | }
|
4783 |
|
4784 |
|
4785 |
|
4786 | export interface TestSession {
|
4787 | |
4788 |
|
4789 |
|
4790 | area?: ShallowReference;
|
4791 | |
4792 |
|
4793 |
|
4794 | comment?: string;
|
4795 | |
4796 |
|
4797 |
|
4798 | endDate?: Date;
|
4799 | |
4800 |
|
4801 |
|
4802 | id: number;
|
4803 | |
4804 |
|
4805 |
|
4806 | lastUpdatedBy?: VSSInterfaces.IdentityRef;
|
4807 | |
4808 |
|
4809 |
|
4810 | lastUpdatedDate?: Date;
|
4811 | |
4812 |
|
4813 |
|
4814 | owner?: VSSInterfaces.IdentityRef;
|
4815 | |
4816 |
|
4817 |
|
4818 | project?: ShallowReference;
|
4819 | |
4820 |
|
4821 |
|
4822 | propertyBag?: PropertyBag;
|
4823 | |
4824 |
|
4825 |
|
4826 | revision?: number;
|
4827 | |
4828 |
|
4829 |
|
4830 | source?: TestSessionSource;
|
4831 | |
4832 |
|
4833 |
|
4834 | startDate?: Date;
|
4835 | |
4836 |
|
4837 |
|
4838 | state?: TestSessionState;
|
4839 | |
4840 |
|
4841 |
|
4842 | title: string;
|
4843 | |
4844 |
|
4845 |
|
4846 | url?: string;
|
4847 | }
|
4848 | export interface TestSessionEnvironment {
|
4849 | |
4850 |
|
4851 |
|
4852 | displayName: string;
|
4853 | |
4854 |
|
4855 |
|
4856 | processorArchitecture: string;
|
4857 | }
|
4858 | export interface TestSessionExploredWorkItemReference extends TestSessionWorkItemReference {
|
4859 | |
4860 |
|
4861 |
|
4862 | associatedWorkItems?: TestSessionWorkItemReference[];
|
4863 | |
4864 |
|
4865 |
|
4866 | endTime?: Date;
|
4867 | |
4868 |
|
4869 |
|
4870 | startTime?: Date;
|
4871 | }
|
4872 |
|
4873 |
|
4874 |
|
4875 | export interface TestSessionNotification {
|
4876 | |
4877 |
|
4878 |
|
4879 | body: string;
|
4880 | |
4881 |
|
4882 |
|
4883 | severity: string;
|
4884 | |
4885 |
|
4886 |
|
4887 | title: string;
|
4888 | }
|
4889 |
|
4890 |
|
4891 |
|
4892 | export declare enum TestSessionSource {
|
4893 | |
4894 |
|
4895 |
|
4896 | Unknown = 0,
|
4897 | |
4898 |
|
4899 |
|
4900 | XTDesktop = 1,
|
4901 | |
4902 |
|
4903 |
|
4904 | FeedbackDesktop = 2,
|
4905 | |
4906 |
|
4907 |
|
4908 | XTWeb = 3,
|
4909 | |
4910 |
|
4911 |
|
4912 | FeedbackWeb = 4,
|
4913 | |
4914 |
|
4915 |
|
4916 | XTDesktop2 = 5,
|
4917 | |
4918 |
|
4919 |
|
4920 | SessionInsightsForAll = 6
|
4921 | }
|
4922 |
|
4923 |
|
4924 |
|
4925 | export declare enum TestSessionState {
|
4926 | |
4927 |
|
4928 |
|
4929 | Unspecified = 0,
|
4930 | |
4931 |
|
4932 |
|
4933 | NotStarted = 1,
|
4934 | |
4935 |
|
4936 |
|
4937 | InProgress = 2,
|
4938 | |
4939 |
|
4940 |
|
4941 | Paused = 3,
|
4942 | |
4943 |
|
4944 |
|
4945 | Completed = 4,
|
4946 | |
4947 |
|
4948 |
|
4949 | Declined = 5
|
4950 | }
|
4951 | export interface TestSessionWorkItemReference {
|
4952 | |
4953 |
|
4954 |
|
4955 | id: number;
|
4956 | |
4957 |
|
4958 |
|
4959 | type?: string;
|
4960 | }
|
4961 |
|
4962 |
|
4963 |
|
4964 | export interface TestSettings {
|
4965 | |
4966 |
|
4967 |
|
4968 | areaPath?: string;
|
4969 | |
4970 |
|
4971 |
|
4972 | description?: string;
|
4973 | |
4974 |
|
4975 |
|
4976 | isPublic?: boolean;
|
4977 | |
4978 |
|
4979 |
|
4980 | machineRoles?: string;
|
4981 | |
4982 |
|
4983 |
|
4984 | testSettingsContent: string;
|
4985 | |
4986 |
|
4987 |
|
4988 | testSettingsId?: number;
|
4989 | |
4990 |
|
4991 |
|
4992 | testSettingsName: string;
|
4993 | }
|
4994 |
|
4995 |
|
4996 |
|
4997 | export interface TestSettings2 {
|
4998 | |
4999 |
|
5000 |
|
5001 | areaPath?: string;
|
5002 | createdBy?: VSSInterfaces.IdentityRef;
|
5003 | createdDate?: Date;
|
5004 | |
5005 |
|
5006 |
|
5007 | description?: string;
|
5008 | |
5009 |
|
5010 |
|
5011 | isPublic?: boolean;
|
5012 | lastUpdatedBy?: VSSInterfaces.IdentityRef;
|
5013 | lastUpdatedDate?: Date;
|
5014 | |
5015 |
|
5016 |
|
5017 | machineRoles?: string;
|
5018 | |
5019 |
|
5020 |
|
5021 | testSettingsContent: string;
|
5022 | |
5023 |
|
5024 |
|
5025 | testSettingsId?: number;
|
5026 | |
5027 |
|
5028 |
|
5029 | testSettingsName: string;
|
5030 | }
|
5031 | export interface TestSettingsMachineRole {
|
5032 | isExecution?: boolean;
|
5033 | name?: string;
|
5034 | }
|
5035 |
|
5036 |
|
5037 |
|
5038 | export interface TestSubResult {
|
5039 | |
5040 |
|
5041 |
|
5042 | comment?: string;
|
5043 | |
5044 |
|
5045 |
|
5046 | completedDate?: Date;
|
5047 | |
5048 |
|
5049 |
|
5050 | computerName?: string;
|
5051 | |
5052 |
|
5053 |
|
5054 | configuration?: ShallowReference;
|
5055 | |
5056 |
|
5057 |
|
5058 | customFields?: CustomTestField[];
|
5059 | |
5060 |
|
5061 |
|
5062 | displayName?: string;
|
5063 | |
5064 |
|
5065 |
|
5066 | durationInMs?: number;
|
5067 | |
5068 |
|
5069 |
|
5070 | errorMessage?: string;
|
5071 | |
5072 |
|
5073 |
|
5074 | id?: number;
|
5075 | |
5076 |
|
5077 |
|
5078 | lastUpdatedDate?: Date;
|
5079 | |
5080 |
|
5081 |
|
5082 | outcome?: string;
|
5083 | |
5084 |
|
5085 |
|
5086 | parentId?: number;
|
5087 | |
5088 |
|
5089 |
|
5090 | resultGroupType?: ResultGroupType;
|
5091 | |
5092 |
|
5093 |
|
5094 | sequenceId?: number;
|
5095 | |
5096 |
|
5097 |
|
5098 | stackTrace?: string;
|
5099 | |
5100 |
|
5101 |
|
5102 | startedDate?: Date;
|
5103 | |
5104 |
|
5105 |
|
5106 | subResults?: TestSubResult[];
|
5107 | |
5108 |
|
5109 |
|
5110 | testResult?: TestCaseResultIdentifier;
|
5111 | |
5112 |
|
5113 |
|
5114 | url?: string;
|
5115 | }
|
5116 |
|
5117 |
|
5118 |
|
5119 | export interface TestSuite {
|
5120 | |
5121 |
|
5122 |
|
5123 | areaUri?: string;
|
5124 | |
5125 |
|
5126 |
|
5127 | children?: TestSuite[];
|
5128 | |
5129 |
|
5130 |
|
5131 | defaultConfigurations?: ShallowReference[];
|
5132 | |
5133 |
|
5134 |
|
5135 | defaultTesters?: ShallowReference[];
|
5136 | |
5137 |
|
5138 |
|
5139 | id: number;
|
5140 | |
5141 |
|
5142 |
|
5143 | inheritDefaultConfigurations?: boolean;
|
5144 | |
5145 |
|
5146 |
|
5147 | lastError?: string;
|
5148 | |
5149 |
|
5150 |
|
5151 | lastPopulatedDate?: Date;
|
5152 | |
5153 |
|
5154 |
|
5155 | lastUpdatedBy?: VSSInterfaces.IdentityRef;
|
5156 | |
5157 |
|
5158 |
|
5159 | lastUpdatedDate?: Date;
|
5160 | |
5161 |
|
5162 |
|
5163 | name: string;
|
5164 | |
5165 |
|
5166 |
|
5167 | parent?: ShallowReference;
|
5168 | |
5169 |
|
5170 |
|
5171 | plan: ShallowReference;
|
5172 | |
5173 |
|
5174 |
|
5175 | project?: ShallowReference;
|
5176 | |
5177 |
|
5178 |
|
5179 | queryString?: string;
|
5180 | |
5181 |
|
5182 |
|
5183 | requirementId?: number;
|
5184 | |
5185 |
|
5186 |
|
5187 | revision?: number;
|
5188 | |
5189 |
|
5190 |
|
5191 | state?: string;
|
5192 | |
5193 |
|
5194 |
|
5195 | suites?: ShallowReference[];
|
5196 | |
5197 |
|
5198 |
|
5199 | suiteType?: string;
|
5200 | |
5201 |
|
5202 |
|
5203 | testCaseCount?: number;
|
5204 | |
5205 |
|
5206 |
|
5207 | testCasesUrl?: string;
|
5208 | |
5209 |
|
5210 |
|
5211 | text?: string;
|
5212 | |
5213 |
|
5214 |
|
5215 | url?: string;
|
5216 | }
|
5217 |
|
5218 |
|
5219 |
|
5220 | export interface TestSuiteCloneRequest {
|
5221 | |
5222 |
|
5223 |
|
5224 | cloneOptions?: CloneOptions;
|
5225 | |
5226 |
|
5227 |
|
5228 | destinationSuiteId?: number;
|
5229 | |
5230 |
|
5231 |
|
5232 | destinationSuiteProjectName?: string;
|
5233 | }
|
5234 | export interface TestSummaryForWorkItem {
|
5235 | summary?: AggregatedDataForResultTrend;
|
5236 | workItem: WorkItemReference;
|
5237 | }
|
5238 |
|
5239 |
|
5240 |
|
5241 | export interface TestTag {
|
5242 | |
5243 |
|
5244 |
|
5245 | name: string;
|
5246 | }
|
5247 |
|
5248 |
|
5249 |
|
5250 | export interface TestTagSummary {
|
5251 | |
5252 |
|
5253 |
|
5254 | tagsGroupByTestArtifact?: {
|
5255 | [key: number]: TestTag[];
|
5256 | };
|
5257 | }
|
5258 |
|
5259 |
|
5260 |
|
5261 | export interface TestTagsUpdateModel {
|
5262 | tags?: {
|
5263 | key: OperationType;
|
5264 | value: TestTag[];
|
5265 | }[];
|
5266 | }
|
5267 | export interface TestToWorkItemLinks {
|
5268 | test: TestMethod;
|
5269 | workItems?: WorkItemReference[];
|
5270 | }
|
5271 | export interface TestVariable {
|
5272 | |
5273 |
|
5274 |
|
5275 | description?: string;
|
5276 | |
5277 |
|
5278 |
|
5279 | id: number;
|
5280 | |
5281 |
|
5282 |
|
5283 | name: string;
|
5284 | |
5285 |
|
5286 |
|
5287 | project?: ShallowReference;
|
5288 | |
5289 |
|
5290 |
|
5291 | revision?: number;
|
5292 | |
5293 |
|
5294 |
|
5295 | url?: string;
|
5296 | |
5297 |
|
5298 |
|
5299 | values?: string[];
|
5300 | }
|
5301 |
|
5302 |
|
5303 |
|
5304 | export interface Timeline<T> {
|
5305 | |
5306 |
|
5307 |
|
5308 | display: string;
|
5309 | |
5310 |
|
5311 |
|
5312 | timestampUTC: Date;
|
5313 | |
5314 |
|
5315 |
|
5316 | type: T;
|
5317 | }
|
5318 | export interface UpdatedProperties {
|
5319 | id?: number;
|
5320 | lastUpdated?: Date;
|
5321 | lastUpdatedBy?: string;
|
5322 | lastUpdatedByName?: string;
|
5323 | revision?: number;
|
5324 | }
|
5325 | export interface UpdateTestRunRequest {
|
5326 | attachmentsToAdd?: TestResultAttachment[];
|
5327 | attachmentsToDelete?: TestResultAttachmentIdentity[];
|
5328 | projectName?: string;
|
5329 | shouldHyderate?: boolean;
|
5330 | testRun?: LegacyTestRun;
|
5331 | }
|
5332 | export interface UpdateTestRunResponse {
|
5333 | attachmentIds?: number[];
|
5334 | updatedProperties?: UpdatedProperties;
|
5335 | }
|
5336 | export interface UploadAttachmentsRequest {
|
5337 | attachments?: HttpPostedTcmAttachment[];
|
5338 | requestParams?: {
|
5339 | [key: string]: string;
|
5340 | };
|
5341 | }
|
5342 |
|
5343 |
|
5344 |
|
5345 | export interface WorkItemReference {
|
5346 | |
5347 |
|
5348 |
|
5349 | id?: string;
|
5350 | |
5351 |
|
5352 |
|
5353 | name?: string;
|
5354 | |
5355 |
|
5356 |
|
5357 | type?: string;
|
5358 | |
5359 |
|
5360 |
|
5361 | url?: string;
|
5362 | |
5363 |
|
5364 |
|
5365 | webUrl?: string;
|
5366 | }
|
5367 | export interface WorkItemToTestLinks {
|
5368 | executedIn?: Service;
|
5369 | tests?: TestMethod[];
|
5370 | workItem: WorkItemReference;
|
5371 | }
|
5372 | export declare var TypeInfo: {
|
5373 | AfnStrip: any;
|
5374 | AggregatedDataForResultTrend: any;
|
5375 | AggregatedResultDetailsByOutcome: any;
|
5376 | AggregatedResultsAnalysis: any;
|
5377 | AggregatedResultsByOutcome: any;
|
5378 | AggregatedRunsByOutcome: any;
|
5379 | AggregatedRunsByState: any;
|
5380 | AttachmentType: {
|
5381 | enumValues: {
|
5382 | generalAttachment: number;
|
5383 | afnStrip: number;
|
5384 | bugFilingData: number;
|
5385 | codeCoverage: number;
|
5386 | intermediateCollectorData: number;
|
5387 | runConfig: number;
|
5388 | testImpactDetails: number;
|
5389 | tmiTestRunDeploymentFiles: number;
|
5390 | tmiTestRunReverseDeploymentFiles: number;
|
5391 | tmiTestResultDetail: number;
|
5392 | tmiTestRunSummary: number;
|
5393 | consoleLog: number;
|
5394 | };
|
5395 | };
|
5396 | BatchResponse: any;
|
5397 | BuildConfiguration: any;
|
5398 | BuildCoverage: any;
|
5399 | BuildReference2: any;
|
5400 | BulkResultUpdateRequest: any;
|
5401 | CloneOperationInformation: any;
|
5402 | CloneOperationState: {
|
5403 | enumValues: {
|
5404 | failed: number;
|
5405 | inProgress: number;
|
5406 | queued: number;
|
5407 | succeeded: number;
|
5408 | };
|
5409 | };
|
5410 | CodeCoverageSummary: any;
|
5411 | Coverage2: any;
|
5412 | CoverageDetailedSummaryStatus: {
|
5413 | enumValues: {
|
5414 | none: number;
|
5415 | inProgress: number;
|
5416 | finalized: number;
|
5417 | pending: number;
|
5418 | updateRequestQueued: number;
|
5419 | noModulesFound: number;
|
5420 | numberOfFilesExceeded: number;
|
5421 | noInputFiles: number;
|
5422 | buildCancelled: number;
|
5423 | failedJobs: number;
|
5424 | moduleMergeJobTimeout: number;
|
5425 | codeCoverageSuccess: number;
|
5426 | invalidBuildConfiguration: number;
|
5427 | coverageAnalyzerBuildNotFound: number;
|
5428 | failedToRequeue: number;
|
5429 | buildBailedOut: number;
|
5430 | noCodeCoverageTask: number;
|
5431 | mergeJobFailed: number;
|
5432 | mergeInvokerJobFailed: number;
|
5433 | monitorJobFailed: number;
|
5434 | moduleMergeInvokerJobTimeout: number;
|
5435 | monitorJobTimeout: number;
|
5436 | invalidCoverageInput: number;
|
5437 | };
|
5438 | };
|
5439 | CoverageQueryFlags: {
|
5440 | enumValues: {
|
5441 | modules: number;
|
5442 | functions: number;
|
5443 | blockData: number;
|
5444 | };
|
5445 | };
|
5446 | CoverageStatus: {
|
5447 | enumValues: {
|
5448 | covered: number;
|
5449 | notCovered: number;
|
5450 | partiallyCovered: number;
|
5451 | };
|
5452 | };
|
5453 | CoverageSummaryStatus: {
|
5454 | enumValues: {
|
5455 | none: number;
|
5456 | inProgress: number;
|
5457 | completed: number;
|
5458 | finalized: number;
|
5459 | pending: number;
|
5460 | updateRequestQueued: number;
|
5461 | };
|
5462 | };
|
5463 | CreateTestMessageLogEntryRequest: any;
|
5464 | CreateTestResultsRequest: any;
|
5465 | CreateTestRunRequest: any;
|
5466 | CustomTestFieldDefinition: any;
|
5467 | CustomTestFieldScope: {
|
5468 | enumValues: {
|
5469 | none: number;
|
5470 | testRun: number;
|
5471 | testResult: number;
|
5472 | system: number;
|
5473 | all: number;
|
5474 | };
|
5475 | };
|
5476 | CustomTestFieldType: {
|
5477 | enumValues: {
|
5478 | bit: number;
|
5479 | dateTime: number;
|
5480 | int: number;
|
5481 | float: number;
|
5482 | string: number;
|
5483 | guid: number;
|
5484 | };
|
5485 | };
|
5486 | DatedTestFieldData: any;
|
5487 | FailingSince: any;
|
5488 | FetchTestResultsResponse: any;
|
5489 | FlakyDetection: any;
|
5490 | FlakyDetectionType: {
|
5491 | enumValues: {
|
5492 | custom: number;
|
5493 | system: number;
|
5494 | };
|
5495 | };
|
5496 | FlakySettings: any;
|
5497 | LastResultDetails: any;
|
5498 | LegacyBuildConfiguration: any;
|
5499 | LegacyReleaseReference: any;
|
5500 | LegacyTestCaseResult: any;
|
5501 | LegacyTestRun: any;
|
5502 | LegacyTestSettings: any;
|
5503 | Metrics: {
|
5504 | enumValues: {
|
5505 | all: number;
|
5506 | resultSummary: number;
|
5507 | resultsAnalysis: number;
|
5508 | runSummary: number;
|
5509 | };
|
5510 | };
|
5511 | OperationType: {
|
5512 | enumValues: {
|
5513 | add: number;
|
5514 | delete: number;
|
5515 | };
|
5516 | };
|
5517 | PipelineTestMetrics: any;
|
5518 | PointLastResult: any;
|
5519 | PointsResults2: any;
|
5520 | QueryTestActionResultResponse: any;
|
5521 | ReleaseReference: any;
|
5522 | ReleaseReference2: any;
|
5523 | RequirementsToTestsMapping2: any;
|
5524 | Response: any;
|
5525 | ResultDetails: {
|
5526 | enumValues: {
|
5527 | none: number;
|
5528 | iterations: number;
|
5529 | workItems: number;
|
5530 | subResults: number;
|
5531 | point: number;
|
5532 | };
|
5533 | };
|
5534 | ResultGroupType: {
|
5535 | enumValues: {
|
5536 | none: number;
|
5537 | rerun: number;
|
5538 | dataDriven: number;
|
5539 | orderedTest: number;
|
5540 | generic: number;
|
5541 | };
|
5542 | };
|
5543 | ResultMetadata: {
|
5544 | enumValues: {
|
5545 | rerun: number;
|
5546 | flaky: number;
|
5547 | };
|
5548 | };
|
5549 | ResultMetaDataDetails: {
|
5550 | enumValues: {
|
5551 | none: number;
|
5552 | flakyIdentifiers: number;
|
5553 | };
|
5554 | };
|
5555 | ResultObjectType: {
|
5556 | enumValues: {
|
5557 | testSuite: number;
|
5558 | testPlan: number;
|
5559 | };
|
5560 | };
|
5561 | ResultRetentionSettings: any;
|
5562 | ResultsByQueryResponse: any;
|
5563 | ResultsFilter: any;
|
5564 | ResultsSummaryByOutcome: any;
|
5565 | ResultSummary: any;
|
5566 | ResultUpdateRequest: any;
|
5567 | ResultUpdateRequestModel: any;
|
5568 | ResultUpdateResponse: any;
|
5569 | RunCreateModel: any;
|
5570 | RunStatistic: any;
|
5571 | RunSummary: any;
|
5572 | RunSummaryModel: any;
|
5573 | RunType: {
|
5574 | enumValues: {
|
5575 | unspecified: number;
|
5576 | normal: number;
|
5577 | blocking: number;
|
5578 | web: number;
|
5579 | mtrRunInitiatedFromWeb: number;
|
5580 | runWithDtlEnv: number;
|
5581 | noConfigRun: number;
|
5582 | };
|
5583 | };
|
5584 | RunUpdateModel: any;
|
5585 | Service: {
|
5586 | enumValues: {
|
5587 | any: number;
|
5588 | tcm: number;
|
5589 | tfs: number;
|
5590 | };
|
5591 | };
|
5592 | SessionResult: {
|
5593 | enumValues: {
|
5594 | none: number;
|
5595 | passed: number;
|
5596 | failed: number;
|
5597 | };
|
5598 | };
|
5599 | SessionTimelineType: {
|
5600 | enumValues: {
|
5601 | none: number;
|
5602 | queued: number;
|
5603 | completed: number;
|
5604 | started: number;
|
5605 | };
|
5606 | };
|
5607 | SourceViewBuildCoverage: any;
|
5608 | SuiteExpand: {
|
5609 | enumValues: {
|
5610 | children: number;
|
5611 | defaultTesters: number;
|
5612 | };
|
5613 | };
|
5614 | TCMServiceDataMigrationStatus: {
|
5615 | enumValues: {
|
5616 | notStarted: number;
|
5617 | inProgress: number;
|
5618 | completed: number;
|
5619 | failed: number;
|
5620 | };
|
5621 | };
|
5622 | TestActionResult: any;
|
5623 | TestActionResult2: any;
|
5624 | TestActionResultModel: any;
|
5625 | TestAttachment: any;
|
5626 | TestAuthoringDetails: any;
|
5627 | TestCaseReference2: any;
|
5628 | TestCaseResult: any;
|
5629 | TestConfiguration: any;
|
5630 | TestConfigurationState: {
|
5631 | enumValues: {
|
5632 | active: number;
|
5633 | inactive: number;
|
5634 | };
|
5635 | };
|
5636 | TestExecutionReportData: any;
|
5637 | TestExtensionField: any;
|
5638 | TestExtensionFieldDetails: any;
|
5639 | TestFailuresAnalysis: any;
|
5640 | TestHistoryQuery: any;
|
5641 | TestIterationDetailsModel: any;
|
5642 | TestLog: any;
|
5643 | TestLogReference: any;
|
5644 | TestLogScope: {
|
5645 | enumValues: {
|
5646 | run: number;
|
5647 | build: number;
|
5648 | release: number;
|
5649 | };
|
5650 | };
|
5651 | TestLogStatus: any;
|
5652 | TestLogStatusCode: {
|
5653 | enumValues: {
|
5654 | success: number;
|
5655 | failed: number;
|
5656 | fileAlreadyExists: number;
|
5657 | invalidInput: number;
|
5658 | invalidFileName: number;
|
5659 | invalidContainer: number;
|
5660 | transferFailed: number;
|
5661 | featureDisabled: number;
|
5662 | buildDoesNotExist: number;
|
5663 | runDoesNotExist: number;
|
5664 | containerNotCreated: number;
|
5665 | apiNotSupported: number;
|
5666 | fileSizeExceeds: number;
|
5667 | containerNotFound: number;
|
5668 | fileNotFound: number;
|
5669 | directoryNotFound: number;
|
5670 | storageCapacityExceeded: number;
|
5671 | };
|
5672 | };
|
5673 | TestLogStoreAttachment: any;
|
5674 | TestLogStoreEndpointDetails: any;
|
5675 | TestLogStoreEndpointType: {
|
5676 | enumValues: {
|
5677 | root: number;
|
5678 | file: number;
|
5679 | };
|
5680 | };
|
5681 | TestLogStoreOperationType: {
|
5682 | enumValues: {
|
5683 | read: number;
|
5684 | create: number;
|
5685 | readAndCreate: number;
|
5686 | };
|
5687 | };
|
5688 | TestLogType: {
|
5689 | enumValues: {
|
5690 | generalAttachment: number;
|
5691 | codeCoverage: number;
|
5692 | testImpact: number;
|
5693 | intermediate: number;
|
5694 | system: number;
|
5695 | mergedCoverageFile: number;
|
5696 | };
|
5697 | };
|
5698 | TestMessageLogDetails: any;
|
5699 | TestMessageLogEntry: any;
|
5700 | TestMessageLogEntry2: any;
|
5701 | TestOutcome: {
|
5702 | enumValues: {
|
5703 | unspecified: number;
|
5704 | none: number;
|
5705 | passed: number;
|
5706 | failed: number;
|
5707 | inconclusive: number;
|
5708 | timeout: number;
|
5709 | aborted: number;
|
5710 | blocked: number;
|
5711 | notExecuted: number;
|
5712 | warning: number;
|
5713 | error: number;
|
5714 | notApplicable: number;
|
5715 | paused: number;
|
5716 | inProgress: number;
|
5717 | notImpacted: number;
|
5718 | maxValue: number;
|
5719 | };
|
5720 | };
|
5721 | TestParameter2: any;
|
5722 | TestPlan: any;
|
5723 | TestPlanCloneRequest: any;
|
5724 | TestPlanHubData: any;
|
5725 | TestPlansWithSelection: any;
|
5726 | TestPoint: any;
|
5727 | TestPointReference: any;
|
5728 | TestPointsEvent: any;
|
5729 | TestPointsQuery: any;
|
5730 | TestPointState: {
|
5731 | enumValues: {
|
5732 | none: number;
|
5733 | ready: number;
|
5734 | completed: number;
|
5735 | notReady: number;
|
5736 | inProgress: number;
|
5737 | maxValue: number;
|
5738 | };
|
5739 | };
|
5740 | TestPointsUpdatedEvent: any;
|
5741 | TestResult2: any;
|
5742 | TestResultAcrossProjectResponse: any;
|
5743 | TestResultAttachment: any;
|
5744 | TestResultGroupBy: {
|
5745 | enumValues: {
|
5746 | branch: number;
|
5747 | environment: number;
|
5748 | };
|
5749 | };
|
5750 | TestResultHistory: any;
|
5751 | TestResultHistoryDetailsForGroup: any;
|
5752 | TestResultHistoryForGroup: any;
|
5753 | TestResultModelBase: any;
|
5754 | TestResultReset2: any;
|
5755 | TestResultsContext: any;
|
5756 | TestResultsContextType: {
|
5757 | enumValues: {
|
5758 | build: number;
|
5759 | release: number;
|
5760 | pipeline: number;
|
5761 | };
|
5762 | };
|
5763 | TestResultsDetails: any;
|
5764 | TestResultsDetailsForGroup: any;
|
5765 | TestResultsEx2: any;
|
5766 | TestResultsQuery: any;
|
5767 | TestResultsSession: any;
|
5768 | TestResultsSessionState: {
|
5769 | enumValues: {
|
5770 | none: number;
|
5771 | running: number;
|
5772 | completed: number;
|
5773 | waiting: number;
|
5774 | cancelled: number;
|
5775 | };
|
5776 | };
|
5777 | TestResultsSettings: any;
|
5778 | TestResultsSettingsType: {
|
5779 | enumValues: {
|
5780 | all: number;
|
5781 | flaky: number;
|
5782 | newTestLogging: number;
|
5783 | };
|
5784 | };
|
5785 | TestResultSummary: any;
|
5786 | TestResultsUpdateSettings: any;
|
5787 | TestResultsWithWatermark: any;
|
5788 | TestResultTrendFilter: any;
|
5789 | TestRun: any;
|
5790 | TestRun2: any;
|
5791 | TestRunCanceledEvent: any;
|
5792 | TestRunCreatedEvent: any;
|
5793 | TestRunEvent: any;
|
5794 | TestRunEx2: any;
|
5795 | TestRunOutcome: {
|
5796 | enumValues: {
|
5797 | passed: number;
|
5798 | failed: number;
|
5799 | notImpacted: number;
|
5800 | others: number;
|
5801 | };
|
5802 | };
|
5803 | TestRunPublishContext: {
|
5804 | enumValues: {
|
5805 | build: number;
|
5806 | release: number;
|
5807 | all: number;
|
5808 | };
|
5809 | };
|
5810 | TestRunStartedEvent: any;
|
5811 | TestRunState: {
|
5812 | enumValues: {
|
5813 | unspecified: number;
|
5814 | notStarted: number;
|
5815 | inProgress: number;
|
5816 | completed: number;
|
5817 | aborted: number;
|
5818 | waiting: number;
|
5819 | needsInvestigation: number;
|
5820 | };
|
5821 | };
|
5822 | TestRunStatistic: any;
|
5823 | TestRunSubstate: {
|
5824 | enumValues: {
|
5825 | none: number;
|
5826 | creatingEnvironment: number;
|
5827 | runningTests: number;
|
5828 | canceledByUser: number;
|
5829 | abortedBySystem: number;
|
5830 | timedOut: number;
|
5831 | pendingAnalysis: number;
|
5832 | analyzed: number;
|
5833 | cancellationInProgress: number;
|
5834 | };
|
5835 | };
|
5836 | TestRunSummary2: any;
|
5837 | TestRunWithDtlEnvEvent: any;
|
5838 | TestSession: any;
|
5839 | TestSessionExploredWorkItemReference: any;
|
5840 | TestSessionSource: {
|
5841 | enumValues: {
|
5842 | unknown: number;
|
5843 | xtDesktop: number;
|
5844 | feedbackDesktop: number;
|
5845 | xtWeb: number;
|
5846 | feedbackWeb: number;
|
5847 | xtDesktop2: number;
|
5848 | sessionInsightsForAll: number;
|
5849 | };
|
5850 | };
|
5851 | TestSessionState: {
|
5852 | enumValues: {
|
5853 | unspecified: number;
|
5854 | notStarted: number;
|
5855 | inProgress: number;
|
5856 | paused: number;
|
5857 | completed: number;
|
5858 | declined: number;
|
5859 | };
|
5860 | };
|
5861 | TestSettings2: any;
|
5862 | TestSubResult: any;
|
5863 | TestSuite: any;
|
5864 | TestSummaryForWorkItem: any;
|
5865 | Timeline: any;
|
5866 | UpdatedProperties: any;
|
5867 | UpdateTestRunRequest: any;
|
5868 | UpdateTestRunResponse: any;
|
5869 | WorkItemToTestLinks: any;
|
5870 | };
|