testit-api-client 1.0.4 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.MD +251 -27
- package/dist/api.d.ts +8733 -0
- package/dist/api.js +10319 -0
- package/dist/base.d.ts +55 -0
- package/dist/base.js +82 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +250 -0
- package/dist/configuration.d.ts +83 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +13 -2
- package/dist/index.js +20 -3
- package/package.json +22 -40
- package/dist/client.d.ts +0 -23
- package/dist/client.js +0 -166
- package/dist/types/attachment.d.ts +0 -14
- package/dist/types/attachment.js +0 -2
- package/dist/types/autotest.d.ts +0 -97
- package/dist/types/autotest.js +0 -2
- package/dist/types/autotestResults.d.ts +0 -22
- package/dist/types/autotestResults.js +0 -2
- package/dist/types/autotestStep.d.ts +0 -5
- package/dist/types/autotestStep.js +0 -2
- package/dist/types/capabilities.d.ts +0 -1
- package/dist/types/capabilities.js +0 -2
- package/dist/types/client.d.ts +0 -15
- package/dist/types/client.js +0 -2
- package/dist/types/config.d.ts +0 -10
- package/dist/types/config.js +0 -2
- package/dist/types/configuration.d.ts +0 -16
- package/dist/types/configuration.js +0 -2
- package/dist/types/index.d.ts +0 -18
- package/dist/types/index.js +0 -30
- package/dist/types/label.d.ts +0 -7
- package/dist/types/label.js +0 -2
- package/dist/types/link.d.ts +0 -24
- package/dist/types/link.js +0 -2
- package/dist/types/outcome.d.ts +0 -1
- package/dist/types/outcome.js +0 -2
- package/dist/types/parameters.d.ts +0 -1
- package/dist/types/parameters.js +0 -2
- package/dist/types/properties.d.ts +0 -1
- package/dist/types/properties.js +0 -2
- package/dist/types/stepResults.d.ts +0 -14
- package/dist/types/stepResults.js +0 -2
- package/dist/types/tag.d.ts +0 -3
- package/dist/types/tag.js +0 -2
- package/dist/types/testPoint.d.ts +0 -9
- package/dist/types/testPoint.js +0 -2
- package/dist/types/testResult.d.ts +0 -31
- package/dist/types/testResult.js +0 -2
- package/dist/types/testRun.d.ts +0 -20
- package/dist/types/testRun.js +0 -2
- package/dist/types/workItem.d.ts +0 -3
- package/dist/types/workItem.js +0 -2
- package/dist/validation.d.ts +0 -2
- package/dist/validation.js +0 -15
package/README.MD
CHANGED
|
@@ -1,41 +1,265 @@
|
|
|
1
|
-
# Test IT TMS
|
|
1
|
+
# Api client for Test IT TMS
|
|
2
2
|

|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
## Getting Started
|
|
5
|
+
|
|
6
|
+
### Compatibility
|
|
7
|
+
|
|
8
|
+
| Test IT | API Client |
|
|
9
|
+
|---------|------------|
|
|
10
|
+
| 3.4 | 1.0 |
|
|
11
|
+
| 3.5 | 2.0 |
|
|
5
12
|
|
|
6
13
|
## Installation
|
|
7
|
-
|
|
14
|
+
|
|
15
|
+
```shell
|
|
8
16
|
npm install testit-api-client
|
|
9
17
|
```
|
|
10
18
|
|
|
11
|
-
|
|
19
|
+
## Getting Started
|
|
12
20
|
|
|
13
|
-
|
|
21
|
+
Please follow the [installation](#installation) instruction and execute the following JS code:
|
|
14
22
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
```typescript
|
|
24
|
+
import {
|
|
25
|
+
TestRunsApi,
|
|
26
|
+
Configuration,
|
|
27
|
+
} from 'testit-api-client';
|
|
28
|
+
|
|
29
|
+
const clientConfig = new Configuration();
|
|
30
|
+
clientConfig.apiKey = "PrivateToken " + "Your private token";
|
|
31
|
+
const testRunsApi = new TestRunsApi(clientConfig, "Your TMS address");
|
|
32
|
+
|
|
33
|
+
const response = testRunsApi.createEmpty(
|
|
34
|
+
{
|
|
35
|
+
'projectId': "Project's guid in the TMS",
|
|
36
|
+
'name': "Test run name"
|
|
37
|
+
}
|
|
38
|
+
);
|
|
25
39
|
|
|
26
|
-
After configuration is done you can access different clients from `Client` object and then use methods to control Test IT.
|
|
27
|
-
|
|
28
|
-
## Examples
|
|
29
|
-
```ts
|
|
30
|
-
await client.createAutotest(autotest);
|
|
31
|
-
await client.updateAutotest(autotest);
|
|
32
|
-
await client.linkToWorkItem(autotestId, workItem);
|
|
33
|
-
await client.createTestRun(testRun);
|
|
34
|
-
await client.startTestRun(testRunId);
|
|
35
|
-
await client.loadTestRunResults(testRunId, results);
|
|
36
|
-
await client.completeTestRun(testRunId);
|
|
37
40
|
```
|
|
38
41
|
|
|
42
|
+
## Documentation for API Endpoints
|
|
43
|
+
|
|
44
|
+
All URIs are relative to *http://localhost*
|
|
45
|
+
|
|
46
|
+
Class | Method | HTTP request | Description
|
|
47
|
+
------------ | ------------- | ------------- | -------------
|
|
48
|
+
*testit_api_client.AttachmentsApi* | [**apiV2AttachmentsIdDelete**](docs/AttachmentsApi.md#apiV2AttachmentsIdDelete) | **DELETE** /api/v2/attachments/{id} | Delete attachment file
|
|
49
|
+
*testit_api_client.AttachmentsApi* | [**apiV2AttachmentsIdGet**](docs/AttachmentsApi.md#apiV2AttachmentsIdGet) | **GET** /api/v2/attachments/{id} | Download attachment file
|
|
50
|
+
*testit_api_client.AttachmentsApi* | [**apiV2AttachmentsOccupiedFileStorageSizeGet**](docs/AttachmentsApi.md#apiV2AttachmentsOccupiedFileStorageSizeGet) | **GET** /api/v2/attachments/occupiedFileStorageSize |
|
|
51
|
+
*testit_api_client.AttachmentsApi* | [**apiV2AttachmentsPost**](docs/AttachmentsApi.md#apiV2AttachmentsPost) | **POST** /api/v2/attachments | Upload new attachment file
|
|
52
|
+
*testit_api_client.AutoTestsApi* | [**apiV2AutoTestsFlakyBulkPost**](docs/AutoTestsApi.md#apiV2AutoTestsFlakyBulkPost) | **POST** /api/v2/autoTests/flaky/bulk | Set \"Flaky\" status for multiple autotests
|
|
53
|
+
*testit_api_client.AutoTestsApi* | [**apiV2AutoTestsIdWorkItemsChangedIdGet**](docs/AutoTestsApi.md#apiV2AutoTestsIdWorkItemsChangedIdGet) | **GET** /api/v2/autoTests/{id}/workItems/changed/id | Get identifiers of changed linked work items
|
|
54
|
+
*testit_api_client.AutoTestsApi* | [**apiV2AutoTestsIdWorkItemsChangedWorkItemIdApprovePost**](docs/AutoTestsApi.md#apiV2AutoTestsIdWorkItemsChangedWorkItemIdApprovePost) | **POST** /api/v2/autoTests/{id}/workItems/changed/{workItemId}/approve | Approve changes to work items linked to autotest
|
|
55
|
+
*testit_api_client.AutoTestsApi* | [**createAutoTest**](docs/AutoTestsApi.md#createAutoTest) | **POST** /api/v2/autoTests | Create autotest
|
|
56
|
+
*testit_api_client.AutoTestsApi* | [**createMultiple**](docs/AutoTestsApi.md#createMultiple) | **POST** /api/v2/autoTests/bulk | Create multiple autotests
|
|
57
|
+
*testit_api_client.AutoTestsApi* | [**deleteAutoTest**](docs/AutoTestsApi.md#deleteAutoTest) | **DELETE** /api/v2/autoTests/{id} | Delete autotest
|
|
58
|
+
*testit_api_client.AutoTestsApi* | [**deleteAutoTestLinkFromWorkItem**](docs/AutoTestsApi.md#deleteAutoTestLinkFromWorkItem) | **DELETE** /api/v2/autoTests/{id}/workItems | Unlink autotest from work item
|
|
59
|
+
*testit_api_client.AutoTestsApi* | [**getAllAutoTests**](docs/AutoTestsApi.md#getAllAutoTests) | **GET** /api/v2/autoTests | Get all autotests
|
|
60
|
+
*testit_api_client.AutoTestsApi* | [**getAutoTestAverageDuration**](docs/AutoTestsApi.md#getAutoTestAverageDuration) | **GET** /api/v2/autoTests/{id}/averageDuration | Get average autotest duration
|
|
61
|
+
*testit_api_client.AutoTestsApi* | [**getAutoTestById**](docs/AutoTestsApi.md#getAutoTestById) | **GET** /api/v2/autoTests/{id} | Get autotest by internal or global ID
|
|
62
|
+
*testit_api_client.AutoTestsApi* | [**getAutoTestChronology**](docs/AutoTestsApi.md#getAutoTestChronology) | **GET** /api/v2/autoTests/{id}/chronology | Get autotest chronology
|
|
63
|
+
*testit_api_client.AutoTestsApi* | [**getTestRuns**](docs/AutoTestsApi.md#getTestRuns) | **GET** /api/v2/autoTests/{id}/testRuns | Get completed tests runs for autotests
|
|
64
|
+
*testit_api_client.AutoTestsApi* | [**getWorkItemResults**](docs/AutoTestsApi.md#getWorkItemResults) | **GET** /api/v2/autoTests/{id}/testResultHistory | Get test results history for autotest
|
|
65
|
+
*testit_api_client.AutoTestsApi* | [**getWorkItemsLinkedToAutoTest**](docs/AutoTestsApi.md#getWorkItemsLinkedToAutoTest) | **GET** /api/v2/autoTests/{id}/workItems | Get work items linked to autotest
|
|
66
|
+
*testit_api_client.AutoTestsApi* | [**linkAutoTestToWorkItem**](docs/AutoTestsApi.md#linkAutoTestToWorkItem) | **POST** /api/v2/autoTests/{id}/workItems | Link autotest with work items
|
|
67
|
+
*testit_api_client.AutoTestsApi* | [**updateAutoTest**](docs/AutoTestsApi.md#updateAutoTest) | **PUT** /api/v2/autoTests | Update autotest
|
|
68
|
+
*testit_api_client.AutoTestsApi* | [**updateMultiple**](docs/AutoTestsApi.md#updateMultiple) | **PUT** /api/v2/autoTests/bulk | Update multiple autotests
|
|
69
|
+
*testit_api_client.ConfigurationsApi* | [**apiV2ConfigurationsCreateByParametersPost**](docs/ConfigurationsApi.md#apiV2ConfigurationsCreateByParametersPost) | **POST** /api/v2/configurations/createByParameters | Create Configurations by parameters
|
|
70
|
+
*testit_api_client.ConfigurationsApi* | [**apiV2ConfigurationsSearchPost**](docs/ConfigurationsApi.md#apiV2ConfigurationsSearchPost) | **POST** /api/v2/configurations/search | Search for configurations
|
|
71
|
+
*testit_api_client.ConfigurationsApi* | [**createConfiguration**](docs/ConfigurationsApi.md#createConfiguration) | **POST** /api/v2/configurations | Create Configuration
|
|
72
|
+
*testit_api_client.ConfigurationsApi* | [**getConfigurationById**](docs/ConfigurationsApi.md#getConfigurationById) | **GET** /api/v2/configurations/{id} | Get configuration by internal or global ID
|
|
73
|
+
*testit_api_client.ConfigurationsApi* | [**updateConfiguration**](docs/ConfigurationsApi.md#updateConfiguration) | **PUT** /api/v2/configurations | Update Configuration
|
|
74
|
+
*testit_api_client.CustomAttributeTemplatesApi* | [**apiV2CustomAttributesTemplatesIdCustomAttributesExcludePost**](docs/CustomAttributeTemplatesApi.md#apiV2CustomAttributesTemplatesIdCustomAttributesExcludePost) | **POST** /api/v2/customAttributes/templates/{id}/customAttributes/exclude | Exclude CustomAttributes from CustomAttributeTemplate
|
|
75
|
+
*testit_api_client.CustomAttributeTemplatesApi* | [**apiV2CustomAttributesTemplatesIdCustomAttributesIncludePost**](docs/CustomAttributeTemplatesApi.md#apiV2CustomAttributesTemplatesIdCustomAttributesIncludePost) | **POST** /api/v2/customAttributes/templates/{id}/customAttributes/include | Include CustomAttributes to CustomAttributeTemplate
|
|
76
|
+
*testit_api_client.CustomAttributeTemplatesApi* | [**apiV2CustomAttributesTemplatesIdDelete**](docs/CustomAttributeTemplatesApi.md#apiV2CustomAttributesTemplatesIdDelete) | **DELETE** /api/v2/customAttributes/templates/{id} | Delete CustomAttributeTemplate
|
|
77
|
+
*testit_api_client.CustomAttributeTemplatesApi* | [**apiV2CustomAttributesTemplatesIdGet**](docs/CustomAttributeTemplatesApi.md#apiV2CustomAttributesTemplatesIdGet) | **GET** /api/v2/customAttributes/templates/{id} | Get CustomAttributeTemplate by ID
|
|
78
|
+
*testit_api_client.CustomAttributeTemplatesApi* | [**apiV2CustomAttributesTemplatesNameGet**](docs/CustomAttributeTemplatesApi.md#apiV2CustomAttributesTemplatesNameGet) | **GET** /api/v2/customAttributes/templates/{name} | Get CustomAttributeTemplate by name
|
|
79
|
+
*testit_api_client.CustomAttributeTemplatesApi* | [**apiV2CustomAttributesTemplatesPost**](docs/CustomAttributeTemplatesApi.md#apiV2CustomAttributesTemplatesPost) | **POST** /api/v2/customAttributes/templates | Create CustomAttributeTemplate
|
|
80
|
+
*testit_api_client.CustomAttributeTemplatesApi* | [**apiV2CustomAttributesTemplatesPut**](docs/CustomAttributeTemplatesApi.md#apiV2CustomAttributesTemplatesPut) | **PUT** /api/v2/customAttributes/templates | Update CustomAttributeTemplate
|
|
81
|
+
*testit_api_client.CustomAttributeTemplatesApi* | [**apiV2CustomAttributesTemplatesSearchPost**](docs/CustomAttributeTemplatesApi.md#apiV2CustomAttributesTemplatesSearchPost) | **POST** /api/v2/customAttributes/templates/search | Search CustomAttributeTemplates
|
|
82
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesIdDelete**](docs/CustomAttributesApi.md#apiV2CustomAttributesIdDelete) | **DELETE** /api/v2/customAttributes/{id} |
|
|
83
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesIdGet**](docs/CustomAttributesApi.md#apiV2CustomAttributesIdGet) | **GET** /api/v2/customAttributes/{id} |
|
|
84
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesIdMakeGlobalPost**](docs/CustomAttributesApi.md#apiV2CustomAttributesIdMakeGlobalPost) | **POST** /api/v2/customAttributes/{id}/makeGlobal |
|
|
85
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesIdProjectsGet**](docs/CustomAttributesApi.md#apiV2CustomAttributesIdProjectsGet) | **GET** /api/v2/customAttributes/{id}/projects |
|
|
86
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesIdPut**](docs/CustomAttributesApi.md#apiV2CustomAttributesIdPut) | **PUT** /api/v2/customAttributes/{id} |
|
|
87
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesMergePost**](docs/CustomAttributesApi.md#apiV2CustomAttributesMergePost) | **POST** /api/v2/customAttributes/merge |
|
|
88
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesOrderPost**](docs/CustomAttributesApi.md#apiV2CustomAttributesOrderPost) | **POST** /api/v2/customAttributes/order |
|
|
89
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesPost**](docs/CustomAttributesApi.md#apiV2CustomAttributesPost) | **POST** /api/v2/customAttributes |
|
|
90
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesReplacePost**](docs/CustomAttributesApi.md#apiV2CustomAttributesReplacePost) | **POST** /api/v2/customAttributes/replace |
|
|
91
|
+
*testit_api_client.CustomAttributesApi* | [**apiV2CustomAttributesSearchPost**](docs/CustomAttributesApi.md#apiV2CustomAttributesSearchPost) | **POST** /api/v2/customAttributes/search |
|
|
92
|
+
*testit_api_client.NotificationsApi* | [**apiV2NotificationsCountGet**](docs/NotificationsApi.md#apiV2NotificationsCountGet) | **GET** /api/v2/notifications/count | Get unread Notifications total in last 7 days
|
|
93
|
+
*testit_api_client.NotificationsApi* | [**apiV2NotificationsGet**](docs/NotificationsApi.md#apiV2NotificationsGet) | **GET** /api/v2/notifications | Get all Notifications for current User
|
|
94
|
+
*testit_api_client.NotificationsApi* | [**apiV2NotificationsIdReadPost**](docs/NotificationsApi.md#apiV2NotificationsIdReadPost) | **POST** /api/v2/notifications/{id}/read | Set Notification as read
|
|
95
|
+
*testit_api_client.NotificationsApi* | [**apiV2NotificationsReadPost**](docs/NotificationsApi.md#apiV2NotificationsReadPost) | **POST** /api/v2/notifications/read | Set all Notifications as read
|
|
96
|
+
*testit_api_client.ParametersApi* | [**apiV2ParametersBulkPost**](docs/ParametersApi.md#apiV2ParametersBulkPost) | **POST** /api/v2/parameters/bulk | Create multiple parameters
|
|
97
|
+
*testit_api_client.ParametersApi* | [**apiV2ParametersBulkPut**](docs/ParametersApi.md#apiV2ParametersBulkPut) | **PUT** /api/v2/parameters/bulk | Update multiple parameters
|
|
98
|
+
*testit_api_client.ParametersApi* | [**apiV2ParametersGroupsGet**](docs/ParametersApi.md#apiV2ParametersGroupsGet) | **GET** /api/v2/parameters/groups | Get parameters as group
|
|
99
|
+
*testit_api_client.ParametersApi* | [**apiV2ParametersKeyNameNameExistsGet**](docs/ParametersApi.md#apiV2ParametersKeyNameNameExistsGet) | **GET** /api/v2/parameters/key/name/{name}/exists | Check existence parameter key in system
|
|
100
|
+
*testit_api_client.ParametersApi* | [**apiV2ParametersKeyValuesGet**](docs/ParametersApi.md#apiV2ParametersKeyValuesGet) | **GET** /api/v2/parameters/{key}/values | Get all parameter key values
|
|
101
|
+
*testit_api_client.ParametersApi* | [**apiV2ParametersKeysGet**](docs/ParametersApi.md#apiV2ParametersKeysGet) | **GET** /api/v2/parameters/keys | Get all parameter keys
|
|
102
|
+
*testit_api_client.ParametersApi* | [**createParameter**](docs/ParametersApi.md#createParameter) | **POST** /api/v2/parameters | Create parameter
|
|
103
|
+
*testit_api_client.ParametersApi* | [**deleteByName**](docs/ParametersApi.md#deleteByName) | **DELETE** /api/v2/parameters/name/{name} | Delete parameter by name
|
|
104
|
+
*testit_api_client.ParametersApi* | [**deleteByParameterKeyId**](docs/ParametersApi.md#deleteByParameterKeyId) | **DELETE** /api/v2/parameters/keyId/{keyId} | Delete parameters by parameter key identifier
|
|
105
|
+
*testit_api_client.ParametersApi* | [**deleteParameter**](docs/ParametersApi.md#deleteParameter) | **DELETE** /api/v2/parameters/{id} | Delete parameter
|
|
106
|
+
*testit_api_client.ParametersApi* | [**getAllParameters**](docs/ParametersApi.md#getAllParameters) | **GET** /api/v2/parameters | Get all parameters
|
|
107
|
+
*testit_api_client.ParametersApi* | [**getParameterById**](docs/ParametersApi.md#getParameterById) | **GET** /api/v2/parameters/{id} | Get parameter by ID
|
|
108
|
+
*testit_api_client.ParametersApi* | [**obsoleteDeleteByName**](docs/ParametersApi.md#obsoleteDeleteByName) | **POST** /api/v2/parameters/deleteByName |
|
|
109
|
+
*testit_api_client.ParametersApi* | [**updateParameter**](docs/ParametersApi.md#updateParameter) | **PUT** /api/v2/parameters | Update parameter
|
|
110
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdCustomAttributeTemplatesTemplateIdDelete**](docs/ProjectsApi.md#apiV2ProjectsIdCustomAttributeTemplatesTemplateIdDelete) | **DELETE** /api/v2/projects/{id}/customAttributeTemplates/{templateId} | Delete CustomAttributeTemplate from Project
|
|
111
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdCustomAttributeTemplatesTemplateIdPost**](docs/ProjectsApi.md#apiV2ProjectsIdCustomAttributeTemplatesTemplateIdPost) | **POST** /api/v2/projects/{id}/customAttributeTemplates/{templateId} | Add CustomAttributeTemplate to Project
|
|
112
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdFailureClassesGet**](docs/ProjectsApi.md#apiV2ProjectsIdFailureClassesGet) | **GET** /api/v2/projects/{id}/failureClasses | Get Project FailureClasses
|
|
113
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdFavoritePut**](docs/ProjectsApi.md#apiV2ProjectsIdFavoritePut) | **PUT** /api/v2/projects/{id}/favorite | Mark Project as favorite
|
|
114
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdFiltersGet**](docs/ProjectsApi.md#apiV2ProjectsIdFiltersGet) | **GET** /api/v2/projects/{id}/filters | Get Project filters
|
|
115
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdTestPlansAnalyticsGet**](docs/ProjectsApi.md#apiV2ProjectsIdTestPlansAnalyticsGet) | **GET** /api/v2/projects/{id}/testPlans/analytics | Get TestPlans analytics
|
|
116
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdTestPlansSearchPost**](docs/ProjectsApi.md#apiV2ProjectsIdTestPlansSearchPost) | **POST** /api/v2/projects/{id}/testPlans/search | Get Project TestPlans with analytics
|
|
117
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdTestRunsActiveGet**](docs/ProjectsApi.md#apiV2ProjectsIdTestRunsActiveGet) | **GET** /api/v2/projects/{id}/testRuns/active | Get active Project TestRuns
|
|
118
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdTestRunsFullGet**](docs/ProjectsApi.md#apiV2ProjectsIdTestRunsFullGet) | **GET** /api/v2/projects/{id}/testRuns/full | Get Project TestRuns full models
|
|
119
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsIdWorkItemsTagsGet**](docs/ProjectsApi.md#apiV2ProjectsIdWorkItemsTagsGet) | **GET** /api/v2/projects/{id}/workItems/tags | Get WorkItems Tags
|
|
120
|
+
*testit_api_client.ProjectsApi* | [**apiV2ProjectsSearchPost**](docs/ProjectsApi.md#apiV2ProjectsSearchPost) | **POST** /api/v2/projects/search |
|
|
121
|
+
*testit_api_client.ProjectsApi* | [**callExport**](docs/ProjectsApi.md#callExport) | **POST** /api/v2/projects/{id}/export | Export project as JSON file
|
|
122
|
+
*testit_api_client.ProjectsApi* | [**callImport**](docs/ProjectsApi.md#callImport) | **POST** /api/v2/projects/import | Import project from JSON file
|
|
123
|
+
*testit_api_client.ProjectsApi* | [**createCustomAttributeTestPlanProjectRelations**](docs/ProjectsApi.md#createCustomAttributeTestPlanProjectRelations) | **POST** /api/v2/projects/{id}/testPlans/attributes | Add attributes to project's test plans
|
|
124
|
+
*testit_api_client.ProjectsApi* | [**createProject**](docs/ProjectsApi.md#createProject) | **POST** /api/v2/projects | Create project
|
|
125
|
+
*testit_api_client.ProjectsApi* | [**createProjectsAttribute**](docs/ProjectsApi.md#createProjectsAttribute) | **POST** /api/v2/projects/{id}/attributes | Create project attribute
|
|
126
|
+
*testit_api_client.ProjectsApi* | [**deleteCustomAttributeTestPlanProjectRelations**](docs/ProjectsApi.md#deleteCustomAttributeTestPlanProjectRelations) | **DELETE** /api/v2/projects/{id}/testPlans/attribute/{attributeId} | Delete attribute from project's test plans
|
|
127
|
+
*testit_api_client.ProjectsApi* | [**deleteProject**](docs/ProjectsApi.md#deleteProject) | **DELETE** /api/v2/projects/{id} | Delete project
|
|
128
|
+
*testit_api_client.ProjectsApi* | [**deleteProjectAutoTests**](docs/ProjectsApi.md#deleteProjectAutoTests) | **DELETE** /api/v2/projects/{id}/autoTests | Delete project
|
|
129
|
+
*testit_api_client.ProjectsApi* | [**deleteProjectsAttribute**](docs/ProjectsApi.md#deleteProjectsAttribute) | **DELETE** /api/v2/projects/{id}/attributes/{attributeId} | Delete project attribute
|
|
130
|
+
*testit_api_client.ProjectsApi* | [**exportWithTestPlansAndConfigurations**](docs/ProjectsApi.md#exportWithTestPlansAndConfigurations) | **POST** /api/v2/projects/{id}/export-by-testPlans | Export project with test plans, test suites and test points as JSON file
|
|
131
|
+
*testit_api_client.ProjectsApi* | [**getAllProjects**](docs/ProjectsApi.md#getAllProjects) | **GET** /api/v2/projects | Get all projects
|
|
132
|
+
*testit_api_client.ProjectsApi* | [**getAttributeByProjectId**](docs/ProjectsApi.md#getAttributeByProjectId) | **GET** /api/v2/projects/{id}/attributes/{attributeId} | Get project attribute
|
|
133
|
+
*testit_api_client.ProjectsApi* | [**getAttributesByProjectId**](docs/ProjectsApi.md#getAttributesByProjectId) | **GET** /api/v2/projects/{id}/attributes | Get project attributes
|
|
134
|
+
*testit_api_client.ProjectsApi* | [**getAutoTestsNamespaces**](docs/ProjectsApi.md#getAutoTestsNamespaces) | **GET** /api/v2/projects/{id}/autoTestsNamespaces | Get namespaces of autotests in project
|
|
135
|
+
*testit_api_client.ProjectsApi* | [**getConfigurationsByProjectId**](docs/ProjectsApi.md#getConfigurationsByProjectId) | **GET** /api/v2/projects/{id}/configurations | Get project configurations
|
|
136
|
+
*testit_api_client.ProjectsApi* | [**getCustomAttributeTestPlanProjectRelations**](docs/ProjectsApi.md#getCustomAttributeTestPlanProjectRelations) | **GET** /api/v2/projects/{id}/testPlans/attributes | Get project's test plan attributes
|
|
137
|
+
*testit_api_client.ProjectsApi* | [**getProjectById**](docs/ProjectsApi.md#getProjectById) | **GET** /api/v2/projects/{id} | Get project by ID
|
|
138
|
+
*testit_api_client.ProjectsApi* | [**getSectionsByProjectId**](docs/ProjectsApi.md#getSectionsByProjectId) | **GET** /api/v2/projects/{id}/sections | Get project sections
|
|
139
|
+
*testit_api_client.ProjectsApi* | [**getTestPlansByProjectId**](docs/ProjectsApi.md#getTestPlansByProjectId) | **GET** /api/v2/projects/{id}/testPlans | Get project test plans
|
|
140
|
+
*testit_api_client.ProjectsApi* | [**getTestRunsByProjectId**](docs/ProjectsApi.md#getTestRunsByProjectId) | **GET** /api/v2/projects/{id}/testRuns | Get project test runs
|
|
141
|
+
*testit_api_client.ProjectsApi* | [**getWorkItemsByProjectId**](docs/ProjectsApi.md#getWorkItemsByProjectId) | **GET** /api/v2/projects/{id}/workItems | Get project work items
|
|
142
|
+
*testit_api_client.ProjectsApi* | [**importToExistingProject**](docs/ProjectsApi.md#importToExistingProject) | **POST** /api/v2/projects/{id}/import | Import project from JSON file into existing project
|
|
143
|
+
*testit_api_client.ProjectsApi* | [**restoreProject**](docs/ProjectsApi.md#restoreProject) | **POST** /api/v2/projects/{id}/restore | Restore project
|
|
144
|
+
*testit_api_client.ProjectsApi* | [**updateCustomAttributeTestPlanProjectRelations**](docs/ProjectsApi.md#updateCustomAttributeTestPlanProjectRelations) | **PUT** /api/v2/projects/{id}/testPlans/attribute | Update attribute of project's test plans
|
|
145
|
+
*testit_api_client.ProjectsApi* | [**updateProject**](docs/ProjectsApi.md#updateProject) | **PUT** /api/v2/projects | Update project
|
|
146
|
+
*testit_api_client.ProjectsApi* | [**updateProjectsAttribute**](docs/ProjectsApi.md#updateProjectsAttribute) | **PUT** /api/v2/projects/{id}/attributes | Update project attribute
|
|
147
|
+
*testit_api_client.SectionsApi* | [**createSection**](docs/SectionsApi.md#createSection) | **POST** /api/v2/sections | Create section
|
|
148
|
+
*testit_api_client.SectionsApi* | [**deleteSection**](docs/SectionsApi.md#deleteSection) | **DELETE** /api/v2/sections/{id} | Delete section
|
|
149
|
+
*testit_api_client.SectionsApi* | [**getSectionById**](docs/SectionsApi.md#getSectionById) | **GET** /api/v2/sections/{id} | Get section
|
|
150
|
+
*testit_api_client.SectionsApi* | [**getWorkItemsBySectionId**](docs/SectionsApi.md#getWorkItemsBySectionId) | **GET** /api/v2/sections/{id}/workItems | Get section work items
|
|
151
|
+
*testit_api_client.SectionsApi* | [**move**](docs/SectionsApi.md#move) | **POST** /api/v2/sections/move | Move section
|
|
152
|
+
*testit_api_client.SectionsApi* | [**rename**](docs/SectionsApi.md#rename) | **POST** /api/v2/sections/rename | Rename section
|
|
153
|
+
*testit_api_client.SectionsApi* | [**updateSection**](docs/SectionsApi.md#updateSection) | **PUT** /api/v2/sections | Update section
|
|
154
|
+
*testit_api_client.StepCommentsApi* | [**apiV2StepCommentsIdGet**](docs/StepCommentsApi.md#apiV2StepCommentsIdGet) | **GET** /api/v2/stepComments/{id} | Get StepComment by internal ID
|
|
155
|
+
*testit_api_client.TagsApi* | [**apiV2TagsGet**](docs/TagsApi.md#apiV2TagsGet) | **GET** /api/v2/tags | Get all Tags
|
|
156
|
+
*testit_api_client.TagsApi* | [**apiV2TagsTestPlansTagsGet**](docs/TagsApi.md#apiV2TagsTestPlansTagsGet) | **GET** /api/v2/tags/testPlansTags | Get all Tags that are used in TestPlans
|
|
157
|
+
*testit_api_client.TestPlansApi* | [**addTestPointsWithSections**](docs/TestPlansApi.md#addTestPointsWithSections) | **POST** /api/v2/testPlans/{id}/test-points/withSections | Add test-points to test suite with sections
|
|
158
|
+
*testit_api_client.TestPlansApi* | [**addWorkItemsWithSections**](docs/TestPlansApi.md#addWorkItemsWithSections) | **POST** /api/v2/testPlans/{id}/workItems/withSections | Add WorkItems to TestPlan with Sections as TestSuites
|
|
159
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdAnalyticsGet**](docs/TestPlansApi.md#apiV2TestPlansIdAnalyticsGet) | **GET** /api/v2/testPlans/{id}/analytics | Get analytics by TestPlan
|
|
160
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdAutobalancePost**](docs/TestPlansApi.md#apiV2TestPlansIdAutobalancePost) | **POST** /api/v2/testPlans/{id}/autobalance | Auto-balance for TestPlan with testers
|
|
161
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdConfigurationsGet**](docs/TestPlansApi.md#apiV2TestPlansIdConfigurationsGet) | **GET** /api/v2/testPlans/{id}/configurations | Get TestPlan configurations
|
|
162
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdExportTestPointsXlsxPost**](docs/TestPlansApi.md#apiV2TestPlansIdExportTestPointsXlsxPost) | **POST** /api/v2/testPlans/{id}/export/testPoints/xlsx | Export TestPoints from TestPlan in xls format
|
|
163
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdExportTestResultHistoryXlsxPost**](docs/TestPlansApi.md#apiV2TestPlansIdExportTestResultHistoryXlsxPost) | **POST** /api/v2/testPlans/{id}/export/testResultHistory/xlsx | Export TestResults history from TestPlan in xls format
|
|
164
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdHistoryGet**](docs/TestPlansApi.md#apiV2TestPlansIdHistoryGet) | **GET** /api/v2/testPlans/{id}/history | Get TestPlan history
|
|
165
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdLinksGet**](docs/TestPlansApi.md#apiV2TestPlansIdLinksGet) | **GET** /api/v2/testPlans/{id}/links | Get Links of TestPlan
|
|
166
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdTestPointsLastResultsGet**](docs/TestPlansApi.md#apiV2TestPlansIdTestPointsLastResultsGet) | **GET** /api/v2/testPlans/{id}/testPoints/lastResults | Get TestPoints with last result from TestPlan
|
|
167
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdTestPointsResetPost**](docs/TestPlansApi.md#apiV2TestPlansIdTestPointsResetPost) | **POST** /api/v2/testPlans/{id}/testPoints/reset | Reset TestPoints status of TestPlan
|
|
168
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdTestRunsGet**](docs/TestPlansApi.md#apiV2TestPlansIdTestRunsGet) | **GET** /api/v2/testPlans/{id}/testRuns | Get TestRuns of TestPlan
|
|
169
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdTestRunsSearchPost**](docs/TestPlansApi.md#apiV2TestPlansIdTestRunsSearchPost) | **POST** /api/v2/testPlans/{id}/testRuns/search | Search TestRuns of TestPlan
|
|
170
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdTestRunsTestResultsLastModifiedModifiedDateGet**](docs/TestPlansApi.md#apiV2TestPlansIdTestRunsTestResultsLastModifiedModifiedDateGet) | **GET** /api/v2/testPlans/{id}/testRuns/testResults/lastModified/modifiedDate | Get max modified date in TestRun for TestPlan
|
|
171
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansIdUnlockRequestPost**](docs/TestPlansApi.md#apiV2TestPlansIdUnlockRequestPost) | **POST** /api/v2/testPlans/{id}/unlock/request | Send unlock TestPlan notification
|
|
172
|
+
*testit_api_client.TestPlansApi* | [**apiV2TestPlansShortsPost**](docs/TestPlansApi.md#apiV2TestPlansShortsPost) | **POST** /api/v2/testPlans/shorts | Get TestPlans short models by Project identifiers
|
|
173
|
+
*testit_api_client.TestPlansApi* | [**clone**](docs/TestPlansApi.md#clone) | **POST** /api/v2/testPlans/{id}/clone | Clone TestPlan
|
|
174
|
+
*testit_api_client.TestPlansApi* | [**complete**](docs/TestPlansApi.md#complete) | **POST** /api/v2/testPlans/{id}/complete | Complete TestPlan
|
|
175
|
+
*testit_api_client.TestPlansApi* | [**createTestPlan**](docs/TestPlansApi.md#createTestPlan) | **POST** /api/v2/testPlans | Create TestPlan
|
|
176
|
+
*testit_api_client.TestPlansApi* | [**deleteTestPlan**](docs/TestPlansApi.md#deleteTestPlan) | **DELETE** /api/v2/testPlans/{id} | Delete TestPlan
|
|
177
|
+
*testit_api_client.TestPlansApi* | [**getTestPlanById**](docs/TestPlansApi.md#getTestPlanById) | **GET** /api/v2/testPlans/{id} | Get TestPlan by Id
|
|
178
|
+
*testit_api_client.TestPlansApi* | [**getTestSuitesById**](docs/TestPlansApi.md#getTestSuitesById) | **GET** /api/v2/testPlans/{id}/testSuites | Get TestSuites Tree By Id
|
|
179
|
+
*testit_api_client.TestPlansApi* | [**pause**](docs/TestPlansApi.md#pause) | **POST** /api/v2/testPlans/{id}/pause | Pause TestPlan
|
|
180
|
+
*testit_api_client.TestPlansApi* | [**restoreTestPlan**](docs/TestPlansApi.md#restoreTestPlan) | **POST** /api/v2/testPlans/{id}/restore | Restore TestPlan
|
|
181
|
+
*testit_api_client.TestPlansApi* | [**start**](docs/TestPlansApi.md#start) | **POST** /api/v2/testPlans/{id}/start | Start TestPlan
|
|
182
|
+
*testit_api_client.TestPlansApi* | [**updateTestPlan**](docs/TestPlansApi.md#updateTestPlan) | **PUT** /api/v2/testPlans | Update TestPlan
|
|
183
|
+
*testit_api_client.TestPointsApi* | [**apiV2TestPointsIdTestRunsGet**](docs/TestPointsApi.md#apiV2TestPointsIdTestRunsGet) | **GET** /api/v2/testPoints/{id}/testRuns |
|
|
184
|
+
*testit_api_client.TestPointsApi* | [**apiV2TestPointsIdWorkItemGet**](docs/TestPointsApi.md#apiV2TestPointsIdWorkItemGet) | **GET** /api/v2/testPoints/{id}/workItem |
|
|
185
|
+
*testit_api_client.TestPointsApi* | [**apiV2TestPointsSearchPost**](docs/TestPointsApi.md#apiV2TestPointsSearchPost) | **POST** /api/v2/testPoints/search |
|
|
186
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsIdAggregatedGet**](docs/TestResultsApi.md#apiV2TestResultsIdAggregatedGet) | **GET** /api/v2/testResults/{id}/aggregated |
|
|
187
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsIdAttachmentsAttachmentIdPut**](docs/TestResultsApi.md#apiV2TestResultsIdAttachmentsAttachmentIdPut) | **PUT** /api/v2/testResults/{id}/attachments/{attachmentId} |
|
|
188
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsIdAttachmentsInfoGet**](docs/TestResultsApi.md#apiV2TestResultsIdAttachmentsInfoGet) | **GET** /api/v2/testResults/{id}/attachments/info |
|
|
189
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsIdExternalProjectsExternalProjectIdDefectPost**](docs/TestResultsApi.md#apiV2TestResultsIdExternalProjectsExternalProjectIdDefectPost) | **POST** /api/v2/testResults/{id}/externalProjects/{externalProjectId}/defect |
|
|
190
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsIdExternalProjectsExternalProjectIdFormGet**](docs/TestResultsApi.md#apiV2TestResultsIdExternalProjectsExternalProjectIdFormGet) | **GET** /api/v2/testResults/{id}/externalProjects/{externalProjectId}/form |
|
|
191
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsIdGet**](docs/TestResultsApi.md#apiV2TestResultsIdGet) | **GET** /api/v2/testResults/{id} |
|
|
192
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsIdLinkRequestsPost**](docs/TestResultsApi.md#apiV2TestResultsIdLinkRequestsPost) | **POST** /api/v2/testResults/{id}/linkRequests |
|
|
193
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsIdPut**](docs/TestResultsApi.md#apiV2TestResultsIdPut) | **PUT** /api/v2/testResults/{id} |
|
|
194
|
+
*testit_api_client.TestResultsApi* | [**apiV2TestResultsLinkRequestsLinkRequestIdUsePost**](docs/TestResultsApi.md#apiV2TestResultsLinkRequestsLinkRequestIdUsePost) | **POST** /api/v2/testResults/linkRequests/{linkRequestId}/use |
|
|
195
|
+
*testit_api_client.TestResultsApi* | [**createAttachment**](docs/TestResultsApi.md#createAttachment) | **POST** /api/v2/testResults/{id}/attachments | Upload and link attachment to TestResult
|
|
196
|
+
*testit_api_client.TestResultsApi* | [**deleteAttachment**](docs/TestResultsApi.md#deleteAttachment) | **DELETE** /api/v2/testResults/{id}/attachments/{attachmentId} | Remove attachment and unlink from TestResult
|
|
197
|
+
*testit_api_client.TestResultsApi* | [**downloadAttachment**](docs/TestResultsApi.md#downloadAttachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId} | Get attachment of TestResult
|
|
198
|
+
*testit_api_client.TestResultsApi* | [**getAttachment**](docs/TestResultsApi.md#getAttachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult's attachment
|
|
199
|
+
*testit_api_client.TestResultsApi* | [**getAttachments**](docs/TestResultsApi.md#getAttachments) | **GET** /api/v2/testResults/{id}/attachments | Get all attachments of TestResult
|
|
200
|
+
*testit_api_client.TestRunsApi* | [**apiV2TestRunsIdTestPointsResultsGet**](docs/TestRunsApi.md#apiV2TestRunsIdTestPointsResultsGet) | **GET** /api/v2/testRuns/{id}/testPoints/results |
|
|
201
|
+
*testit_api_client.TestRunsApi* | [**apiV2TestRunsIdTestResultsLastModifiedModificationDateGet**](docs/TestRunsApi.md#apiV2TestRunsIdTestResultsLastModifiedModificationDateGet) | **GET** /api/v2/testRuns/{id}/testResults/lastModified/modificationDate |
|
|
202
|
+
*testit_api_client.TestRunsApi* | [**completeTestRun**](docs/TestRunsApi.md#completeTestRun) | **POST** /api/v2/testRuns/{id}/complete | Complete TestRun
|
|
203
|
+
*testit_api_client.TestRunsApi* | [**createAndFillByAutoTests**](docs/TestRunsApi.md#createAndFillByAutoTests) | **POST** /api/v2/testRuns/byAutoTests | Create test runs based on autotests and configurations
|
|
204
|
+
*testit_api_client.TestRunsApi* | [**createAndFillByConfigurations**](docs/TestRunsApi.md#createAndFillByConfigurations) | **POST** /api/v2/testRuns/byConfigurations | Create test runs picking the needed test points
|
|
205
|
+
*testit_api_client.TestRunsApi* | [**createAndFillByWorkItems**](docs/TestRunsApi.md#createAndFillByWorkItems) | **POST** /api/v2/testRuns/byWorkItems | Create test run based on configurations and work items
|
|
206
|
+
*testit_api_client.TestRunsApi* | [**createEmpty**](docs/TestRunsApi.md#createEmpty) | **POST** /api/v2/testRuns | Create empty TestRun
|
|
207
|
+
*testit_api_client.TestRunsApi* | [**getTestRunById**](docs/TestRunsApi.md#getTestRunById) | **GET** /api/v2/testRuns/{id} | Get TestRun by Id
|
|
208
|
+
*testit_api_client.TestRunsApi* | [**setAutoTestResultsForTestRun**](docs/TestRunsApi.md#setAutoTestResultsForTestRun) | **POST** /api/v2/testRuns/{id}/testResults | Send test results to the test runs in the system
|
|
209
|
+
*testit_api_client.TestRunsApi* | [**startTestRun**](docs/TestRunsApi.md#startTestRun) | **POST** /api/v2/testRuns/{id}/start | Start TestRun
|
|
210
|
+
*testit_api_client.TestRunsApi* | [**stopTestRun**](docs/TestRunsApi.md#stopTestRun) | **POST** /api/v2/testRuns/{id}/stop | Stop TestRun
|
|
211
|
+
*testit_api_client.TestRunsApi* | [**updateEmpty**](docs/TestRunsApi.md#updateEmpty) | **PUT** /api/v2/testRuns | Update empty TestRun
|
|
212
|
+
*testit_api_client.TestSuitesApi* | [**addTestPointsToTestSuite**](docs/TestSuitesApi.md#addTestPointsToTestSuite) | **POST** /api/v2/testSuites/{id}/test-points | Add test-points to test suite
|
|
213
|
+
*testit_api_client.TestSuitesApi* | [**createTestSuite**](docs/TestSuitesApi.md#createTestSuite) | **POST** /api/v2/testSuites | Create TestSuite
|
|
214
|
+
*testit_api_client.TestSuitesApi* | [**deleteTestSuite**](docs/TestSuitesApi.md#deleteTestSuite) | **DELETE** /api/v2/testSuites/{id} | Delete TestSuite
|
|
215
|
+
*testit_api_client.TestSuitesApi* | [**getConfigurationsByTestSuiteId**](docs/TestSuitesApi.md#getConfigurationsByTestSuiteId) | **GET** /api/v2/testSuites/{id}/configurations | Get Configurations By Id
|
|
216
|
+
*testit_api_client.TestSuitesApi* | [**getTestPointsById**](docs/TestSuitesApi.md#getTestPointsById) | **GET** /api/v2/testSuites/{id}/testPoints | Get TestPoints By Id
|
|
217
|
+
*testit_api_client.TestSuitesApi* | [**getTestResultsById**](docs/TestSuitesApi.md#getTestResultsById) | **GET** /api/v2/testSuites/{id}/testResults | Get TestResults By Id
|
|
218
|
+
*testit_api_client.TestSuitesApi* | [**getTestSuiteById**](docs/TestSuitesApi.md#getTestSuiteById) | **GET** /api/v2/testSuites/{id} | Get TestSuite by Id
|
|
219
|
+
*testit_api_client.TestSuitesApi* | [**getWorkItemsById**](docs/TestSuitesApi.md#getWorkItemsById) | **GET** /api/v2/testSuites/{id}/workItems |
|
|
220
|
+
*testit_api_client.TestSuitesApi* | [**searchWorkItems**](docs/TestSuitesApi.md#searchWorkItems) | **POST** /api/v2/testSuites/{id}/workItems/search | Search WorkItems
|
|
221
|
+
*testit_api_client.TestSuitesApi* | [**setConfigurationsByTestSuiteId**](docs/TestSuitesApi.md#setConfigurationsByTestSuiteId) | **POST** /api/v2/testSuites/{id}/configurations | Set Configurations By TestSuite Id
|
|
222
|
+
*testit_api_client.TestSuitesApi* | [**setWorkItemsByTestSuiteId**](docs/TestSuitesApi.md#setWorkItemsByTestSuiteId) | **POST** /api/v2/testSuites/{id}/workItems | Set WorkItems By TestSuite Id
|
|
223
|
+
*testit_api_client.TestSuitesApi* | [**updateTestSuite**](docs/TestSuitesApi.md#updateTestSuite) | **PUT** /api/v2/testSuites | Update TestSuite
|
|
224
|
+
*testit_api_client.WebhooksApi* | [**apiV2WebhooksGet**](docs/WebhooksApi.md#apiV2WebhooksGet) | **GET** /api/v2/webhooks |
|
|
225
|
+
*testit_api_client.WebhooksApi* | [**apiV2WebhooksIdDelete**](docs/WebhooksApi.md#apiV2WebhooksIdDelete) | **DELETE** /api/v2/webhooks/{id} |
|
|
226
|
+
*testit_api_client.WebhooksApi* | [**apiV2WebhooksIdGet**](docs/WebhooksApi.md#apiV2WebhooksIdGet) | **GET** /api/v2/webhooks/{id} |
|
|
227
|
+
*testit_api_client.WebhooksApi* | [**apiV2WebhooksIdPut**](docs/WebhooksApi.md#apiV2WebhooksIdPut) | **PUT** /api/v2/webhooks/{id} |
|
|
228
|
+
*testit_api_client.WebhooksApi* | [**apiV2WebhooksPost**](docs/WebhooksApi.md#apiV2WebhooksPost) | **POST** /api/v2/webhooks |
|
|
229
|
+
*testit_api_client.WebhooksApi* | [**apiV2WebhooksSpecialVariablesGet**](docs/WebhooksApi.md#apiV2WebhooksSpecialVariablesGet) | **GET** /api/v2/webhooks/specialVariables |
|
|
230
|
+
*testit_api_client.WebhooksLogsApi* | [**apiV2WebhooksLogsGet**](docs/WebhooksLogsApi.md#apiV2WebhooksLogsGet) | **GET** /api/v2/webhooks/logs |
|
|
231
|
+
*testit_api_client.WebhooksLogsApi* | [**apiV2WebhooksLogsIdDelete**](docs/WebhooksLogsApi.md#apiV2WebhooksLogsIdDelete) | **DELETE** /api/v2/webhooks/logs/{id} |
|
|
232
|
+
*testit_api_client.WebhooksLogsApi* | [**apiV2WebhooksLogsIdGet**](docs/WebhooksLogsApi.md#apiV2WebhooksLogsIdGet) | **GET** /api/v2/webhooks/logs/{id} |
|
|
233
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsIdActualPost**](docs/WorkItemsApi.md#apiV2WorkItemsIdActualPost) | **POST** /api/v2/workItems/{id}/actual | Set WorkItem as actual
|
|
234
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsIdCheckListTransformToTestCasePost**](docs/WorkItemsApi.md#apiV2WorkItemsIdCheckListTransformToTestCasePost) | **POST** /api/v2/workItems/{id}/checkList/transformTo/testCase | Transform CheckList to TestCase
|
|
235
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsIdHistoryGet**](docs/WorkItemsApi.md#apiV2WorkItemsIdHistoryGet) | **GET** /api/v2/workItems/{id}/history | Get change history of WorkItem
|
|
236
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsIdLikeDelete**](docs/WorkItemsApi.md#apiV2WorkItemsIdLikeDelete) | **DELETE** /api/v2/workItems/{id}/like | Delete like from WorkItem
|
|
237
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsIdLikePost**](docs/WorkItemsApi.md#apiV2WorkItemsIdLikePost) | **POST** /api/v2/workItems/{id}/like | Set like to WorkItem
|
|
238
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsIdLikesCountGet**](docs/WorkItemsApi.md#apiV2WorkItemsIdLikesCountGet) | **GET** /api/v2/workItems/{id}/likes/count | Get likes count of WorkItem
|
|
239
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsIdLikesGet**](docs/WorkItemsApi.md#apiV2WorkItemsIdLikesGet) | **GET** /api/v2/workItems/{id}/likes | Get likes of WorkItem
|
|
240
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsIdTestResultsHistoryGet**](docs/WorkItemsApi.md#apiV2WorkItemsIdTestResultsHistoryGet) | **GET** /api/v2/workItems/{id}/testResults/history | Get test results history of WorkItem
|
|
241
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsMovePost**](docs/WorkItemsApi.md#apiV2WorkItemsMovePost) | **POST** /api/v2/workItems/move | Move WorkItem to another section
|
|
242
|
+
*testit_api_client.WorkItemsApi* | [**apiV2WorkItemsSharedStepsSharedStepIdReferencesGet**](docs/WorkItemsApi.md#apiV2WorkItemsSharedStepsSharedStepIdReferencesGet) | **GET** /api/v2/workItems/sharedSteps/{sharedStepId}/references | Get SharedStep references
|
|
243
|
+
*testit_api_client.WorkItemsApi* | [**createWorkItem**](docs/WorkItemsApi.md#createWorkItem) | **POST** /api/v2/workItems | Create Test Case, Checklist or Shared Step
|
|
244
|
+
*testit_api_client.WorkItemsApi* | [**deleteAllWorkItemsFromAutoTest**](docs/WorkItemsApi.md#deleteAllWorkItemsFromAutoTest) | **DELETE** /api/v2/workItems/{id}/autoTests | Delete all links AutoTests from WorkItem by Id or GlobalId
|
|
245
|
+
*testit_api_client.WorkItemsApi* | [**deleteWorkItem**](docs/WorkItemsApi.md#deleteWorkItem) | **DELETE** /api/v2/workItems/{id} | Delete Test Case, Checklist or Shared Step by Id or GlobalId
|
|
246
|
+
*testit_api_client.WorkItemsApi* | [**getAutoTestsForWorkItem**](docs/WorkItemsApi.md#getAutoTestsForWorkItem) | **GET** /api/v2/workItems/{id}/autoTests | Get all AutoTests linked to WorkItem by Id or GlobalId
|
|
247
|
+
*testit_api_client.WorkItemsApi* | [**getIterations**](docs/WorkItemsApi.md#getIterations) | **GET** /api/v2/workItems/{id}/iterations | Get iterations by workitem Id or GlobalId
|
|
248
|
+
*testit_api_client.WorkItemsApi* | [**getWorkItemById**](docs/WorkItemsApi.md#getWorkItemById) | **GET** /api/v2/workItems/{id} | Get Test Case, Checklist or Shared Step by Id or GlobalId
|
|
249
|
+
*testit_api_client.WorkItemsApi* | [**getWorkItemChronology**](docs/WorkItemsApi.md#getWorkItemChronology) | **GET** /api/v2/workItems/{id}/chronology | Get WorkItem chronology by Id or GlobalId
|
|
250
|
+
*testit_api_client.WorkItemsApi* | [**getWorkItemVersions**](docs/WorkItemsApi.md#getWorkItemVersions) | **GET** /api/v2/workItems/{id}/versions | Get WorkItem versions
|
|
251
|
+
*testit_api_client.WorkItemsApi* | [**updateWorkItem**](docs/WorkItemsApi.md#updateWorkItem) | **PUT** /api/v2/workItems | Update Test Case, Checklist or Shared Step
|
|
252
|
+
*testit_api_client.WorkItemsCommentsApi* | [**apiV2WorkItemsCommentsCommentIdDelete**](docs/WorkItemsCommentsApi.md#apiV2WorkItemsCommentsCommentIdDelete) | **DELETE** /api/v2/workItems/comments/{commentId} | Delete WorkItem comment
|
|
253
|
+
*testit_api_client.WorkItemsCommentsApi* | [**apiV2WorkItemsCommentsPost**](docs/WorkItemsCommentsApi.md#apiV2WorkItemsCommentsPost) | **POST** /api/v2/workItems/comments | Create WorkItem comment
|
|
254
|
+
*testit_api_client.WorkItemsCommentsApi* | [**apiV2WorkItemsCommentsPut**](docs/WorkItemsCommentsApi.md#apiV2WorkItemsCommentsPut) | **PUT** /api/v2/workItems/comments | Update WorkItem comment
|
|
255
|
+
*testit_api_client.WorkItemsCommentsApi* | [**apiV2WorkItemsIdCommentsGet**](docs/WorkItemsCommentsApi.md#apiV2WorkItemsIdCommentsGet) | **GET** /api/v2/workItems/{id}/comments | Get WorkItem comments by Id or GlobalId
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
## Documentation for Models
|
|
259
|
+
|
|
260
|
+
- You can see the documentation [here](docs/README.md).
|
|
261
|
+
|
|
262
|
+
|
|
39
263
|
# Contributing
|
|
40
264
|
|
|
41
265
|
You can help to develop the project. Any contributions are **greatly appreciated**.
|
|
@@ -45,7 +269,7 @@ You can help to develop the project. Any contributions are **greatly appreciated
|
|
|
45
269
|
* Create individual PR for each suggestion.
|
|
46
270
|
* Please also read through the [Code Of Conduct](https://github.com/testit-tms/api-client-js/blob/master/CODE_OF_CONDUCT.md) before posting your first idea as well.
|
|
47
271
|
|
|
272
|
+
|
|
48
273
|
# License
|
|
49
274
|
|
|
50
275
|
Distributed under the Apache-2.0 License. See [LICENSE](https://github.com/testit-tms/api-client-js/blob/master/LICENSE.md) for more information.
|
|
51
|
-
|