Skip to content

Commit

Permalink
feature: update author model
Browse files Browse the repository at this point in the history
Added a new `author_id` and `entity_id` fields to the `Author` model.
  • Loading branch information
gibiw committed Sep 18, 2024
1 parent b9c7af5 commit 542f7ac
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
6 changes: 6 additions & 0 deletions qaseio/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [email protected]

## What's new

Added a new `author_id` and `entity_id` fields to the `Author` model.

# [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.3.0",
"version": "2.3.1",
"description": "Qase TMS Javascript API Client",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
24 changes: 18 additions & 6 deletions qaseio/src/generated/model/author.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,37 +15,49 @@


/**
*
*
* @export
* @interface Author
*/
export interface Author {
/**
*
*
* @type {number}
* @memberof Author
*/
'id'?: number;
/**
*
*
* @type {number}
* @memberof Author
*/
'author_id'?: number;
/**
*
* @type {string}
* @memberof Author
*/
'entity_type'?: string;
/**
*
*
* @type {number}
* @memberof Author
*/
'entity_id'?: number;
/**
*
* @type {string}
* @memberof Author
*/
'email'?: string;
/**
*
*
* @type {string}
* @memberof Author
*/
'name'?: string;
/**
*
*
* @type {boolean}
* @memberof Author
*/
Expand Down

0 comments on commit 542f7ac

Please sign in to comment.