Skip to content

Commit

Permalink
feature: add group parameters
Browse files Browse the repository at this point in the history
Add a new `param_groups` field to the `ResultCreate` model
  • Loading branch information
gibiw committed Aug 26, 2024
1 parent 630c142 commit 0907271
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 13 deletions.
7 changes: 7 additions & 0 deletions qaseio/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# qaseio@2.3.0

## What's new

Added a new `param_groups` field to the `ResultCreate` model.
This field allows you to group parameters in the test results.

# qaseio@2.2.0

## What's new
Expand Down
2 changes: 1 addition & 1 deletion qaseio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qaseio",
"version": "2.2.0",
"version": "2.3.0",
"description": "Qase TMS Javascript API Client",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
30 changes: 18 additions & 12 deletions qaseio/src/generated/model/result-create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { ResultCreateCase } from './result-create-case';
import { TestStepResultCreate } from './test-step-result-create';

/**
*
*
* @export
* @interface ResultCreate
*/
Expand All @@ -29,55 +29,55 @@ export interface ResultCreate {
*/
'status': string;
/**
*
*
* @type {number}
* @memberof ResultCreate
*/
'case_id'?: number;
/**
*
*
* @type {ResultCreateCase}
* @memberof ResultCreate
*/
'case'?: ResultCreateCase;
/**
*
*
* @type {number}
* @memberof ResultCreate
*/
'start_time'?: number | null;
/**
*
*
* @type {number}
* @memberof ResultCreate
*/
'time'?: number | null;
/**
*
*
* @type {number}
* @memberof ResultCreate
*/
'time_ms'?: number | null;
/**
*
*
* @type {boolean}
* @memberof ResultCreate
*/
'defect'?: boolean | null;
/**
*
*
* @type {Array<string>}
* @memberof ResultCreate
*/
'attachments'?: Array<string> | null;
/**
*
*
* @type {string}
* @memberof ResultCreate
*/
'stacktrace'?: string | null;
/**
*
*
* @type {string}
* @memberof ResultCreate
*/
Expand All @@ -89,13 +89,19 @@ export interface ResultCreate {
*/
'param'?: { [key: string]: string; } | null;
/**
*
* A list of parameter groups
* @type {Array<Array<string>>}
* @memberof ResultCreate
*/
'param_groups'?: Array<Array<string>> | null;
/**
*
* @type {Array<TestStepResultCreate>}
* @memberof ResultCreate
*/
'steps'?: Array<TestStepResultCreate> | null;
/**
*
*
* @type {number}
* @memberof ResultCreate
*/
Expand Down

0 comments on commit 0907271

Please sign in to comment.