-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from testit-tms/release/0.2.0
feat: support TMS 5.2.
- Loading branch information
Showing
506 changed files
with
7,078 additions
and
23,878 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
# Attachment | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **id** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the attachment | | | ||
| **fileId** | **kotlin.String** | Unique ID of the attachment file | | | ||
| **type** | **kotlin.String** | MIME type of the attachment | | | ||
| **propertySize** | **kotlin.Float** | Size in bytes of the attachment file | | | ||
| **createdDate** | [**java.time.OffsetDateTime**](java.time.OffsetDateTime.md) | Creation date of the attachment | | | ||
| **createdById** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the attachment creator | | | ||
| **name** | **kotlin.String** | Name of the attachment file | | | ||
| **modifiedDate** | [**java.time.OffsetDateTime**](java.time.OffsetDateTime.md) | Last modification date of the attachment | [optional] | | ||
| **modifiedById** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the attachment last editor | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
# AttachmentUpdateRequest | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **id** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the attachment | | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
# AutoTest | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **externalId** | **kotlin.String** | External ID of the autotest | | | ||
| **projectId** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the autotest project | | | ||
| **name** | **kotlin.String** | Name of the autotest | | | ||
| **globalId** | **kotlin.Long** | Global ID of the autotest | | | ||
| **isDeleted** | **kotlin.Boolean** | Indicates if the autotest is deleted | | | ||
| **mustBeApproved** | **kotlin.Boolean** | Indicates if the autotest has unapproved changes from linked work items | | | ||
| **id** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the autotest | | | ||
| **createdDate** | [**java.time.OffsetDateTime**](java.time.OffsetDateTime.md) | Creation date of the autotest | | | ||
| **createdById** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the project creator | | | ||
| **links** | [**kotlin.collections.List<Link>**](Link.md) | Collection of the autotest links | [optional] | | ||
| **namespace** | **kotlin.String** | Name of the autotest namespace | [optional] | | ||
| **classname** | **kotlin.String** | Name of the autotest class | [optional] | | ||
| **steps** | [**kotlin.collections.List<AutoTestStep>**](AutoTestStep.md) | Collection of the autotest steps | [optional] | | ||
| **setup** | [**kotlin.collections.List<AutoTestStep>**](AutoTestStep.md) | Collection of the autotest setup steps | [optional] | | ||
| **teardown** | [**kotlin.collections.List<AutoTestStep>**](AutoTestStep.md) | Collection of the autotest teardown steps | [optional] | | ||
| **title** | **kotlin.String** | Name of the autotest in autotest's card | [optional] | | ||
| **description** | **kotlin.String** | Description of the autotest in autotest's card | [optional] | | ||
| **labels** | [**kotlin.collections.List<Label>**](Label.md) | Collection of the autotest labels | [optional] | | ||
| **isFlaky** | **kotlin.Boolean** | Indicates if the autotest is marked as flaky | [optional] | | ||
| **externalKey** | **kotlin.String** | External key of the autotest | [optional] | | ||
| **modifiedDate** | [**java.time.OffsetDateTime**](java.time.OffsetDateTime.md) | Last modification date of the project | [optional] | | ||
| **modifiedById** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the project last editor | [optional] | | ||
| **lastTestRunId** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the autotest last test run | [optional] | | ||
| **lastTestRunName** | **kotlin.String** | Name of the autotest last test run | [optional] | | ||
| **lastTestResultId** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the autotest last test result | [optional] | | ||
| **lastTestResultConfiguration** | [**ConfigurationShort**](ConfigurationShort.md) | Configuration of the autotest last test result | [optional] | | ||
| **lastTestResultOutcome** | **kotlin.String** | Outcome of the autotest last test result | [optional] | | ||
| **stabilityPercentage** | **kotlin.Int** | Stability percentage of the autotest | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
# AutoTestClassCountApiModel | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **count** | **kotlin.Long** | | | | ||
| **name** | **kotlin.String** | | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
# AutoTestNamespaceCountApiModel | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **count** | **kotlin.Long** | | | | ||
| **classes** | [**kotlin.collections.List<AutoTestClassCountApiModel>**](AutoTestClassCountApiModel.md) | | | | ||
| **name** | **kotlin.String** | | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
# AutoTestNamespacesCountResponse | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **namespaces** | [**kotlin.collections.List<AutoTestNamespaceCountApiModel>**](AutoTestNamespaceCountApiModel.md) | | | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
# AutoTestProjectSettingsGetModel | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **projectId** | [**java.util.UUID**](java.util.UUID.md) | Unique ID of the project. | | | ||
| **rerunEnabled** | **kotlin.Boolean** | Auto rerun enabled | | | ||
| **rerunAttemptsCount** | **kotlin.Int** | Auto rerun attempt count | | | ||
| **isFlakyAuto** | **kotlin.Boolean** | Indicates if the status \"Flaky/Stable\" sets automatically | [optional] | | ||
| **flakyStabilityPercentage** | **kotlin.Int** | Stability percentage for autotest flaky computing | [optional] | | ||
| **flakyTestRunCount** | **kotlin.Int** | Last test run count for autotest flaky computing | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
# AutoTestProjectSettingsPostModel | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **rerunEnabled** | **kotlin.Boolean** | Auto rerun enabled | | | ||
| **rerunAttemptsCount** | **kotlin.Int** | Auto rerun attempt count | | | ||
| **isFlakyAuto** | **kotlin.Boolean** | Indicates if the status \"Flaky/Stable\" sets automatically | [optional] | | ||
| **flakyStabilityPercentage** | **kotlin.Int** | Stability percentage for autotest flaky computing | [optional] | | ||
| **flakyTestRunCount** | **kotlin.Int** | Last test run count for autotest flaky computing | [optional] | | ||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/AutotestResultReasonSubGetModel.md → docs/AutoTestResultReasonShort.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
# AutoTestStep | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **title** | **kotlin.String** | Step name. | | | ||
| **description** | **kotlin.String** | Detailed step description. It appears when the step is unfolded. | [optional] | | ||
| **steps** | [**kotlin.collections.List<AutoTestStep>**](AutoTestStep.md) | Includes a nested step inside another step. The maximum nesting level is 15. | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
# AutoTestStepResult | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **title** | **kotlin.String** | The name of the step. | [optional] | | ||
| **description** | **kotlin.String** | Description of the step result. | [optional] | | ||
| **info** | **kotlin.String** | Extended description of the step result. | [optional] | | ||
| **startedOn** | [**java.time.OffsetDateTime**](java.time.OffsetDateTime.md) | Step start date. | [optional] | | ||
| **completedOn** | [**java.time.OffsetDateTime**](java.time.OffsetDateTime.md) | Step end date. | [optional] | | ||
| **duration** | **kotlin.Long** | Expected or actual duration of the test run execution in milliseconds. | [optional] | | ||
| **outcome** | [**AvailableTestResultOutcome**](AvailableTestResultOutcome.md) | Specifies the result of the autotest execution. | [optional] | | ||
| **stepResults** | [**kotlin.collections.List<AutoTestStepResult>**](AutoTestStepResult.md) | Nested step results. The maximum nesting level is 15. | [optional] | | ||
| **attachments** | [**kotlin.collections.List<Attachment>**](Attachment.md) | /// <summary> Specifies an attachment GUID. Multiple values can be sent. </summary> | [optional] | | ||
| **parameters** | **kotlin.collections.Map<kotlin.String, kotlin.String>** | \"<b>parameter</b>\": \"<b>value</b>\" pair with arbitrary custom parameters. Multiple parameters can be sent. | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
# AutoTestStepResultUpdateRequest | ||
|
||
## Properties | ||
| Name | Type | Description | Notes | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
| **title** | **kotlin.String** | The name of the step. | [optional] | | ||
| **description** | **kotlin.String** | Description of the step result. | [optional] | | ||
| **info** | **kotlin.String** | Extended description of the step result. | [optional] | | ||
| **startedOn** | [**java.time.OffsetDateTime**](java.time.OffsetDateTime.md) | Step start date. | [optional] | | ||
| **completedOn** | [**java.time.OffsetDateTime**](java.time.OffsetDateTime.md) | Step end date. | [optional] | | ||
| **duration** | **kotlin.Long** | Expected or actual duration of the test run execution in milliseconds. | [optional] | | ||
| **outcome** | [**AvailableTestResultOutcome**](AvailableTestResultOutcome.md) | Specifies the result of the autotest execution. | [optional] | | ||
| **stepResults** | [**kotlin.collections.List<AttachmentPutModelAutoTestStepResultsModel>**](AttachmentPutModelAutoTestStepResultsModel.md) | Nested step results. The maximum nesting level is 15. | [optional] | | ||
| **attachments** | [**kotlin.collections.List<AttachmentUpdateRequest>**](AttachmentUpdateRequest.md) | /// <summary> Specifies an attachment GUID. Multiple values can be sent. </summary> | [optional] | | ||
| **parameters** | **kotlin.collections.Map<kotlin.String, kotlin.String>** | \"<b>parameter</b>\": \"<b>value</b>\" pair with arbitrary custom parameters. Multiple parameters can be sent. | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.