diff --git a/qaseio/changelog.md b/qaseio/changelog.md index 40f841a9..d9821b09 100644 --- a/qaseio/changelog.md +++ b/qaseio/changelog.md @@ -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 diff --git a/qaseio/package.json b/qaseio/package.json index db28b791..64cc9677 100644 --- a/qaseio/package.json +++ b/qaseio/package.json @@ -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", diff --git a/qaseio/src/generated/model/result-create.ts b/qaseio/src/generated/model/result-create.ts index eaf6b2ea..9c0bea51 100644 --- a/qaseio/src/generated/model/result-create.ts +++ b/qaseio/src/generated/model/result-create.ts @@ -17,7 +17,7 @@ import { ResultCreateCase } from './result-create-case'; import { TestStepResultCreate } from './test-step-result-create'; /** - * + * * @export * @interface ResultCreate */ @@ -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} * @memberof ResultCreate */ 'attachments'?: Array | null; /** - * + * * @type {string} * @memberof ResultCreate */ 'stacktrace'?: string | null; /** - * + * * @type {string} * @memberof ResultCreate */ @@ -89,13 +89,19 @@ export interface ResultCreate { */ 'param'?: { [key: string]: string; } | null; /** - * + * A list of parameter groups + * @type {Array>} + * @memberof ResultCreate + */ + 'param_groups'?: Array> | null; + /** + * * @type {Array} * @memberof ResultCreate */ 'steps'?: Array | null; /** - * + * * @type {number} * @memberof ResultCreate */