Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: add group parameters #662

Merged
merged 1 commit into from
Aug 27, 2024
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
24 changes: 23 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions qaseio/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [email protected]

## What's new

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

# [email protected]

## 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
Loading