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
189 changes: 114 additions & 75 deletions .swagger/cloud-swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -34681,42 +34681,6 @@
},
"additionalProperties": false
},
"AutoTestResultReasonsCountItemModel": {
"required": [
"count",
"failureCategory"
],
"type": "object",
"properties": {
"failureCategory": {
"allOf": [
{
"$ref": "#/components/schemas/AvailableFailureCategory"
}
]
},
"count": {
"type": "integer",
"format": "int32"
}
},
"additionalProperties": false
},
"AutoTestResultReasonsCountModel": {
"required": [
"data"
],
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AutoTestResultReasonsCountItemModel"
}
}
},
"additionalProperties": false
},
"AutoTestResultsForTestRunModel": {
"required": [
"autoTestExternalId",
Expand Down Expand Up @@ -34762,7 +34726,16 @@
},
"statusCode": {
"type": "string",
"description": "Specifies the result of the autotest execution.",
"description": "Specifies code of result status of the autotest execution.",
"nullable": true
},
"statusType": {
"allOf": [
{
"$ref": "#/components/schemas/TestStatusType"
}
],
"description": "Specifies type of result status of the autotest execution.",
"nullable": true
},
"message": {
Expand Down Expand Up @@ -36240,10 +36213,12 @@
"properties": {
"id": {
"type": "string",
"description": "Identifier of the configuration.",
"format": "uuid"
},
"name": {
"type": "string"
"type": "string",
"description": "Name of the configuration."
}
},
"additionalProperties": false
Expand Down Expand Up @@ -38868,34 +38843,49 @@
"required": [
"externalServiceId",
"previewLimit",
"sectionId",
"taskKey",
"temperature"
],
"type": "object",
"properties": {
"externalServiceId": {
"type": "string",
"description": "The ID of the external AI service to be used for generation.",
"format": "uuid"
},
"taskKey": {
"minLength": 1,
"type": "string"
"maxLength": 255,
"minLength": 0,
"type": "string",
"description": "The key of the issue in an issue tracker (e.g., JIRA-123).",
"nullable": true,
"deprecated": true
},
"sectionId": {
"issueKey": {
"maxLength": 255,
"minLength": 0,
"type": "string",
"format": "uuid"
"description": "The key of the issue in an issue tracker (e.g., JIRA-123).",
"nullable": true
},
"userContext": {
"maxLength": 30000,
"minLength": 0,
"type": "string",
"description": "Additional user context or description of the issue if no issue key is provided.",
"nullable": true
},
"temperature": {
"maximum": 1,
"minimum": 0,
"type": "number",
"description": "Controls randomness of the AI model output.",
"format": "float"
},
"previewLimit": {
"maximum": 30,
"minimum": 1,
"type": "integer",
"description": "Number of work item previews to generate.",
"format": "int32"
}
},
Expand Down Expand Up @@ -39875,22 +39865,6 @@
},
"additionalProperties": false
},
"LinkShort": {
"required": [
"name",
"url"
],
"type": "object",
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
}
},
"additionalProperties": false
},
"LinkShortApiResult": {
"required": [
"id",
Expand Down Expand Up @@ -41767,20 +41741,24 @@
"properties": {
"id": {
"type": "string",
"description": "Identifier of the rerun result.",
"format": "uuid"
},
"outcome": {
"type": "string"
"type": "string",
"description": "Status of the autotest run."
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/TestStatusApiResult"
"$ref": "#/components/schemas/TestStatusShortApiResult"
}
]
],
"description": "Status of the autotest run."
},
"runNumber": {
"type": "integer",
"description": "Number of the run (e.g., 1 for the first attempt).",
"format": "int32"
}
},
Expand Down Expand Up @@ -44926,7 +44904,7 @@
},
"duration": {
"type": "integer",
"format": "int32"
"format": "int64"
},
"state": {
"allOf": [
Expand Down Expand Up @@ -47100,6 +47078,56 @@
},
"additionalProperties": false
},
"TestResultLinkApiResult": {
"required": [
"hasInfo",
"url"
],
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Link unique identifier",
"format": "uuid",
"nullable": true
},
"title": {
"type": "string",
"description": "Link name.",
"nullable": true
},
"url": {
"type": "string",
"description": "Address can be specified without protocol, but necessarily with the domain."
},
"description": {
"type": "string",
"description": "Link description.",
"nullable": true
},
"type": {
"allOf": [
{
"$ref": "#/components/schemas/LinkType"
}
],
"description": "Specifies the type of the link.",
"nullable": true
},
"hasInfo": {
"type": "boolean",
"description": "Flag defines if link relates to integrated jira service"
},
"name": {
"type": "string",
"description": "Link name. Backward compatibility.",
"nullable": true,
"readOnly": true,
"deprecated": true
}
},
"additionalProperties": false
},
"TestResultOutcome": {
"enum": [
"InProgress",
Expand Down Expand Up @@ -47505,7 +47533,7 @@
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LinkShort"
"$ref": "#/components/schemas/TestResultLinkApiResult"
},
"description": "Collection of links attached to the test result"
},
Expand Down Expand Up @@ -47583,6 +47611,14 @@
"type": "string",
"nullable": true
},
"statusType": {
"allOf": [
{
"$ref": "#/components/schemas/TestStatusType"
}
],
"nullable": true
},
"comment": {
"type": "string",
"nullable": true
Expand Down Expand Up @@ -49328,21 +49364,24 @@
"properties": {
"id": {
"type": "string",
"description": "Identifier of the test status.",
"format": "uuid"
},
"name": {
"type": "string"
},
"code": {
"type": "string"
"type": "string",
"description": "Code representing the test status."
},
"name": {
"type": "string",
"description": "Name of the test status."
},
"type": {
"allOf": [
{
"$ref": "#/components/schemas/TestStatusApiType"
}
],
"description": "Collection of possible status types"
"description": "Type of the test status (e.g., Passed, Failed)."
}
},
"additionalProperties": false
Expand Down Expand Up @@ -49970,7 +50009,7 @@
"duration": {
"allOf": [
{
"$ref": "#/components/schemas/Int32RangeSelectorModel"
"$ref": "#/components/schemas/Int64RangeSelectorModel"
}
],
"description": "Specifies a work item duration range to search for",
Expand Down Expand Up @@ -52643,7 +52682,7 @@
"duration": {
"allOf": [
{
"$ref": "#/components/schemas/Int32RangeSelectorModel"
"$ref": "#/components/schemas/Int64RangeSelectorModel"
}
],
"description": "Specifies a work item duration range to search for",
Expand Down Expand Up @@ -53195,7 +53234,7 @@
"duration": {
"allOf": [
{
"$ref": "#/components/schemas/Int32RangeSelectorModel"
"$ref": "#/components/schemas/Int64RangeSelectorModel"
}
],
"description": "Specifies a work item duration range to search for",
Expand Down Expand Up @@ -53796,7 +53835,7 @@
"duration": {
"allOf": [
{
"$ref": "#/components/schemas/Int32RangeSelectorModel"
"$ref": "#/components/schemas/Int64RangeSelectorModel"
}
],
"description": "Specifies a work item duration range to search for",
Expand Down Expand Up @@ -54000,7 +54039,7 @@
"duration": {
"type": "integer",
"description": "Work Item duration",
"format": "int32"
"format": "int64"
},
"medianDuration": {
"type": "integer",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,6 @@ Class | Method | HTTP request | Description
- [AutoTestResultHistoryApiResultStatus](docs/AutoTestResultHistoryApiResultStatus.md)
- [AutoTestResultHistorySelectApiModel](docs/AutoTestResultHistorySelectApiModel.md)
- [AutoTestResultReasonShort](docs/AutoTestResultReasonShort.md)
- [AutoTestResultReasonsCountItemModel](docs/AutoTestResultReasonsCountItemModel.md)
- [AutoTestResultReasonsCountModel](docs/AutoTestResultReasonsCountModel.md)
- [AutoTestResultsForTestRunModel](docs/AutoTestResultsForTestRunModel.md)
- [AutoTestSearchApiModel](docs/AutoTestSearchApiModel.md)
- [AutoTestSearchApiModelFilter](docs/AutoTestSearchApiModelFilter.md)
Expand Down Expand Up @@ -699,7 +697,6 @@ Class | Method | HTTP request | Description
- [LinkModel](docs/LinkModel.md)
- [LinkPostModel](docs/LinkPostModel.md)
- [LinkPutModel](docs/LinkPutModel.md)
- [LinkShort](docs/LinkShort.md)
- [LinkShortApiResult](docs/LinkShortApiResult.md)
- [LinkShortModel](docs/LinkShortModel.md)
- [LinkType](docs/LinkType.md)
Expand Down Expand Up @@ -769,6 +766,7 @@ Class | Method | HTTP request | Description
- [RequestTypeApiModel](docs/RequestTypeApiModel.md)
- [RequestTypeModel](docs/RequestTypeModel.md)
- [RerunTestResultApiResult](docs/RerunTestResultApiResult.md)
- [RerunTestResultApiResultStatus](docs/RerunTestResultApiResultStatus.md)
- [RerunsApiResult](docs/RerunsApiResult.md)
- [SearchAttributesInProjectRequest](docs/SearchAttributesInProjectRequest.md)
- [SearchCustomAttributeTemplateGetModel](docs/SearchCustomAttributeTemplateGetModel.md)
Expand Down Expand Up @@ -907,6 +905,7 @@ Class | Method | HTTP request | Description
- [TestResultFailureClassApiResult](docs/TestResultFailureClassApiResult.md)
- [TestResultHistoryReportApiResult](docs/TestResultHistoryReportApiResult.md)
- [TestResultHistoryReportApiResultStatus](docs/TestResultHistoryReportApiResultStatus.md)
- [TestResultLinkApiResult](docs/TestResultLinkApiResult.md)
- [TestResultOutcome](docs/TestResultOutcome.md)
- [TestResultResponse](docs/TestResultResponse.md)
- [TestResultShortApiResult](docs/TestResultShortApiResult.md)
Expand Down Expand Up @@ -1063,6 +1062,7 @@ Class | Method | HTTP request | Description
- [WorkItemExtractionApiModelSectionIds](docs/WorkItemExtractionApiModelSectionIds.md)
- [WorkItemExtractionModel](docs/WorkItemExtractionModel.md)
- [WorkItemFilterApiModel](docs/WorkItemFilterApiModel.md)
- [WorkItemFilterApiModelDuration](docs/WorkItemFilterApiModelDuration.md)
- [WorkItemFilterApiModelExternalMetadata](docs/WorkItemFilterApiModelExternalMetadata.md)
- [WorkItemFilterApiModelLinks](docs/WorkItemFilterApiModelLinks.md)
- [WorkItemFilterModel](docs/WorkItemFilterModel.md)
Expand Down
1 change: 1 addition & 0 deletions docs/ApiV2TestResultsIdPutRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
**failure_class_ids** | **[str], none_type** | | [optional]
**outcome** | [**TestResultOutcome**](TestResultOutcome.md) | | [optional]
**status_code** | **str, none_type** | | [optional]
**status_type** | [**TestStatusType**](TestStatusType.md) | | [optional]
**comment** | **str, none_type** | | [optional]
**links** | [**[Link], none_type**](Link.md) | | [optional]
**step_results** | [**[StepResultApiModel], none_type**](StepResultApiModel.md) | | [optional]
Expand Down
Loading
Loading