Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
216 changes: 103 additions & 113 deletions .swagger/cloud-swagger.json

Large diffs are not rendered by default.

14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,6 @@ Class | Method | HTTP request | Description
- [LabelShortModel](docs/LabelShortModel.md)
- [LastTestResultApiResult](docs/LastTestResultApiResult.md)
- [LastTestResultModel](docs/LastTestResultModel.md)
- [Link](docs/Link.md)
- [LinkApiResult](docs/LinkApiResult.md)
- [LinkAutoTestToWorkItemRequest](docs/LinkAutoTestToWorkItemRequest.md)
- [LinkCreateApiModel](docs/LinkCreateApiModel.md)
Expand Down Expand Up @@ -1053,7 +1052,6 @@ Class | Method | HTTP request | Description
- [WorkItemChangedFieldsViewModelTags](docs/WorkItemChangedFieldsViewModelTags.md)
- [WorkItemCommentApiResult](docs/WorkItemCommentApiResult.md)
- [WorkItemEntityTypeApiModel](docs/WorkItemEntityTypeApiModel.md)
- [WorkItemEntityTypes](docs/WorkItemEntityTypes.md)
- [WorkItemExternalMetadataFieldFilterApiModel](docs/WorkItemExternalMetadataFieldFilterApiModel.md)
- [WorkItemExternalMetadataFieldFilterModel](docs/WorkItemExternalMetadataFieldFilterModel.md)
- [WorkItemExternalMetadataFilterApiModel](docs/WorkItemExternalMetadataFilterApiModel.md)
Expand Down Expand Up @@ -1113,6 +1111,7 @@ Class | Method | HTTP request | Description
- [WorkItemStepChangeViewModel](docs/WorkItemStepChangeViewModel.md)
- [WorkItemStepChangeViewModelArrayChangedFieldWithDiffsViewModel](docs/WorkItemStepChangeViewModelArrayChangedFieldWithDiffsViewModel.md)
- [WorkItemStepChangeViewModelWorkItem](docs/WorkItemStepChangeViewModelWorkItem.md)
- [WorkItemTypeModel](docs/WorkItemTypeModel.md)
- [WorkItemUpdatingFieldsApiModel](docs/WorkItemUpdatingFieldsApiModel.md)
- [WorkItemUpdatingFieldsApiResult](docs/WorkItemUpdatingFieldsApiResult.md)
- [WorkItemVersionModel](docs/WorkItemVersionModel.md)
Expand All @@ -1133,13 +1132,20 @@ Class | Method | HTTP request | Description


Authentication schemes defined for the API:
<a id="Bearer or PrivateToken"></a>
### Bearer or PrivateToken
<a id="PrivateToken"></a>
### PrivateToken

- **Type**: API key
- **API key parameter name**: Authorization
- **Location**: HTTP header

<a id="Session Cookie"></a>
### Session Cookie

- **Type**: API key
- **API key parameter name**: backoffice
- **Location**:


## Author

Expand Down
2 changes: 1 addition & 1 deletion docs/ApiV2TestResultsIdPutRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
**status_code** | **str, none_type** | | [optional]
**status_type** | [**TestStatusType**](TestStatusType.md) | | [optional]
**comment** | **str, none_type** | | [optional]
**links** | [**[Link], none_type**](Link.md) | | [optional]
**links** | [**[CreateLinkApiModel], none_type**](CreateLinkApiModel.md) | | [optional]
**step_results** | [**[StepResultApiModel], none_type**](StepResultApiModel.md) | | [optional]
**attachments** | [**[AttachmentUpdateRequest], none_type**](AttachmentUpdateRequest.md) | | [optional]
**duration_in_ms** | **int, none_type** | | [optional]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Name | Type | Description | Notes
**modified_by_ids** | **[str], none_type** | Collection of identifiers of users who applied last modification to work item | [optional]
**states** | [**[WorkItemStates], none_type**](WorkItemStates.md) | Collection of states of work item | [optional]
**priorities** | [**[WorkItemPriorityModel], none_type**](WorkItemPriorityModel.md) | Collection of priorities of work item | [optional]
**entity_types** | **[str], none_type** | Collection of types of work item Allowed values: &#x60;TestCases&#x60;, &#x60;CheckLists&#x60;, &#x60;SharedSteps&#x60; | [optional]
**entity_types** | [**[WorkItemTypeModel], none_type**](WorkItemTypeModel.md) | Collection of types of work item Allowed values: &#x60;TestCases&#x60;, &#x60;CheckLists&#x60;, &#x60;SharedSteps&#x60; | [optional]
**created_date** | [**SharedStepReferenceSectionsQueryFilterModelCreatedDate**](SharedStepReferenceSectionsQueryFilterModelCreatedDate.md) | | [optional]
**modified_date** | [**SharedStepReferenceSectionsQueryFilterModelModifiedDate**](SharedStepReferenceSectionsQueryFilterModelModifiedDate.md) | | [optional]
**is_automated** | **bool, none_type** | Is result must consist of only manual/automated work items | [optional]
Expand Down
85 changes: 60 additions & 25 deletions docs/AttachmentsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Delete attachment file

### Example

* Api Key Authentication (Bearer or PrivateToken):
* Api Key Authentication (PrivateToken):
* Api Key Authentication (Session Cookie):

```python
import time
Expand All @@ -38,11 +39,17 @@ configuration = testit_api_client.Configuration(
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: Bearer or PrivateToken
configuration.api_key['Bearer or PrivateToken'] = 'YOUR_API_KEY'
# Configure API key authorization: PrivateToken
configuration.api_key['PrivateToken'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Bearer or PrivateToken'] = 'Bearer'
# configuration.api_key_prefix['PrivateToken'] = 'Bearer'

# Configure API key authorization: Session Cookie
configuration.api_key['Session Cookie'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Session Cookie'] = 'Bearer'

# Enter a context with an instance of the API client
with testit_api_client.ApiClient(configuration) as api_client:
Expand Down Expand Up @@ -71,7 +78,7 @@ void (empty response body)

### Authorization

[Bearer or PrivateToken](../README.md#Bearer or PrivateToken)
[PrivateToken](../README.md#PrivateToken), [Session Cookie](../README.md#Session Cookie)

### HTTP request headers

Expand Down Expand Up @@ -100,7 +107,8 @@ Download attachment file

### Example

* Api Key Authentication (Bearer or PrivateToken):
* Api Key Authentication (PrivateToken):
* Api Key Authentication (Session Cookie):

```python
import time
Expand All @@ -121,11 +129,17 @@ configuration = testit_api_client.Configuration(
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: Bearer or PrivateToken
configuration.api_key['Bearer or PrivateToken'] = 'YOUR_API_KEY'
# Configure API key authorization: PrivateToken
configuration.api_key['PrivateToken'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['PrivateToken'] = 'Bearer'

# Configure API key authorization: Session Cookie
configuration.api_key['Session Cookie'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Bearer or PrivateToken'] = 'Bearer'
# configuration.api_key_prefix['Session Cookie'] = 'Bearer'

# Enter a context with an instance of the API client
with testit_api_client.ApiClient(configuration) as api_client:
Expand Down Expand Up @@ -172,7 +186,7 @@ void (empty response body)

### Authorization

[Bearer or PrivateToken](../README.md#Bearer or PrivateToken)
[PrivateToken](../README.md#PrivateToken), [Session Cookie](../README.md#Session Cookie)

### HTTP request headers

Expand Down Expand Up @@ -201,7 +215,8 @@ Get attachment metadata

### Example

* Api Key Authentication (Bearer or PrivateToken):
* Api Key Authentication (PrivateToken):
* Api Key Authentication (Session Cookie):

```python
import time
Expand All @@ -222,11 +237,17 @@ configuration = testit_api_client.Configuration(
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: Bearer or PrivateToken
configuration.api_key['Bearer or PrivateToken'] = 'YOUR_API_KEY'
# Configure API key authorization: PrivateToken
configuration.api_key['PrivateToken'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Bearer or PrivateToken'] = 'Bearer'
# configuration.api_key_prefix['PrivateToken'] = 'Bearer'

# Configure API key authorization: Session Cookie
configuration.api_key['Session Cookie'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Session Cookie'] = 'Bearer'

# Enter a context with an instance of the API client
with testit_api_client.ApiClient(configuration) as api_client:
Expand Down Expand Up @@ -256,7 +277,7 @@ Name | Type | Description | Notes

### Authorization

[Bearer or PrivateToken](../README.md#Bearer or PrivateToken)
[PrivateToken](../README.md#PrivateToken), [Session Cookie](../README.md#Session Cookie)

### HTTP request headers

Expand Down Expand Up @@ -285,7 +306,8 @@ Get size of attachments storage in bytes

### Example

* Api Key Authentication (Bearer or PrivateToken):
* Api Key Authentication (PrivateToken):
* Api Key Authentication (Session Cookie):

```python
import time
Expand All @@ -305,11 +327,17 @@ configuration = testit_api_client.Configuration(
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: Bearer or PrivateToken
configuration.api_key['Bearer or PrivateToken'] = 'YOUR_API_KEY'
# Configure API key authorization: PrivateToken
configuration.api_key['PrivateToken'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['PrivateToken'] = 'Bearer'

# Configure API key authorization: Session Cookie
configuration.api_key['Session Cookie'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Bearer or PrivateToken'] = 'Bearer'
# configuration.api_key_prefix['Session Cookie'] = 'Bearer'

# Enter a context with an instance of the API client
with testit_api_client.ApiClient(configuration) as api_client:
Expand All @@ -335,7 +363,7 @@ This endpoint does not need any parameter.

### Authorization

[Bearer or PrivateToken](../README.md#Bearer or PrivateToken)
[PrivateToken](../README.md#PrivateToken), [Session Cookie](../README.md#Session Cookie)

### HTTP request headers

Expand Down Expand Up @@ -366,7 +394,8 @@ File size is restricted to 50 MB (52 428 800 bytes)

### Example

* Api Key Authentication (Bearer or PrivateToken):
* Api Key Authentication (PrivateToken):
* Api Key Authentication (Session Cookie):

```python
import time
Expand All @@ -387,11 +416,17 @@ configuration = testit_api_client.Configuration(
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: Bearer or PrivateToken
configuration.api_key['Bearer or PrivateToken'] = 'YOUR_API_KEY'
# Configure API key authorization: PrivateToken
configuration.api_key['PrivateToken'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['PrivateToken'] = 'Bearer'

# Configure API key authorization: Session Cookie
configuration.api_key['Session Cookie'] = 'YOUR_API_KEY'

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Bearer or PrivateToken'] = 'Bearer'
# configuration.api_key_prefix['Session Cookie'] = 'Bearer'

# Enter a context with an instance of the API client
with testit_api_client.ApiClient(configuration) as api_client:
Expand Down Expand Up @@ -422,7 +457,7 @@ Name | Type | Description | Notes

### Authorization

[Bearer or PrivateToken](../README.md#Bearer or PrivateToken)
[PrivateToken](../README.md#PrivateToken), [Session Cookie](../README.md#Session Cookie)

### HTTP request headers

Expand Down
2 changes: 1 addition & 1 deletion docs/AutoTest.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Name | Type | Description | Notes
**id** | **str** | Unique ID of the autotest |
**created_date** | **datetime** | Creation date of the autotest |
**created_by_id** | **str** | Unique ID of the project creator |
**links** | [**[Link], none_type**](Link.md) | Collection of the autotest links | [optional]
**links** | [**[LinkApiResult], none_type**](LinkApiResult.md) | Collection of the autotest links | [optional]
**namespace** | **str, none_type** | Name of the autotest namespace | [optional]
**classname** | **str, none_type** | Name of the autotest class | [optional]
**steps** | [**[AutoTestStep], none_type**](AutoTestStep.md) | Collection of the autotest steps | [optional]
Expand Down
Loading
Loading