Skip to content

Commit 658d897

Browse files
Merge pull request #120 from TaskarCenterAtUW/feature-generate-api-client
system:auto generated API client
2 parents 81706f4 + d3a7655 commit 658d897

File tree

8 files changed

+74
-10
lines changed

8 files changed

+74
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## tdei-client@1.1.95
1+
## tdei-client@1.1.96
22

33
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
44

@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
3636
_published:_
3737

3838
```
39-
npm install tdei-client@1.1.95 --save
39+
npm install tdei-client@1.1.96 --save
4040
```
4141

4242
_unPublished (not recommended):_

dist/models/feedback.d.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,24 @@ export interface Feedback {
5353
* @memberof Feedback
5454
*/
5555
status?: FeedbackStatusEnum;
56+
/**
57+
* Description of the feedback resolution.
58+
* @type {string}
59+
* @memberof Feedback
60+
*/
61+
resolution_description?: string;
62+
/**
63+
* User who resolved the feedback.
64+
* @type {string}
65+
* @memberof Feedback
66+
*/
67+
resolved_by?: string;
68+
/**
69+
* Resolution status for the feedback.
70+
* @type {string}
71+
* @memberof Feedback
72+
*/
73+
resolution?: FeedbackResolutionEnum;
5674
/**
5775
* Latitude of the location related to the feedback.
5876
* @type {number}
@@ -92,3 +110,12 @@ export declare enum FeedbackStatusEnum {
92110
Open = "open",
93111
Resolved = "resolved"
94112
}
113+
/**
114+
* @export
115+
* @enum {string}
116+
*/
117+
export declare enum FeedbackResolutionEnum {
118+
Fixed = "fixed",
119+
WontFix = "wont_fix",
120+
NotAnIssue = "not_an_issue"
121+
}

dist/models/feedback.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
3-
exports.FeedbackStatusEnum = void 0;
3+
exports.FeedbackResolutionEnum = exports.FeedbackStatusEnum = void 0;
44
/**
55
* @export
66
* @enum {string}
@@ -10,3 +10,13 @@ var FeedbackStatusEnum;
1010
FeedbackStatusEnum["Open"] = "open";
1111
FeedbackStatusEnum["Resolved"] = "resolved";
1212
})(FeedbackStatusEnum = exports.FeedbackStatusEnum || (exports.FeedbackStatusEnum = {}));
13+
/**
14+
* @export
15+
* @enum {string}
16+
*/
17+
var FeedbackResolutionEnum;
18+
(function (FeedbackResolutionEnum) {
19+
FeedbackResolutionEnum["Fixed"] = "fixed";
20+
FeedbackResolutionEnum["WontFix"] = "wont_fix";
21+
FeedbackResolutionEnum["NotAnIssue"] = "not_an_issue";
22+
})(FeedbackResolutionEnum = exports.FeedbackResolutionEnum || (exports.FeedbackResolutionEnum = {}));

dist/models/project-id-tdei-dataset-id-body.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ export interface ProjectIdTdeiDatasetIdBody {
3434
*/
3535
resolved?: ProjectIdTdeiDatasetIdBodyResolvedEnum;
3636
/**
37-
* Description of the feedback status.
37+
* Description of the feedback resolution.
3838
* @type {string}
3939
* @memberof ProjectIdTdeiDatasetIdBody
4040
*/
41-
status_description?: string;
41+
resolution_description?: string;
4242
}
4343
/**
4444
* @export

models/feedback.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,24 @@ export interface Feedback {
5555
* @memberof Feedback
5656
*/
5757
status?: FeedbackStatusEnum;
58+
/**
59+
* Description of the feedback resolution.
60+
* @type {string}
61+
* @memberof Feedback
62+
*/
63+
resolution_description?: string;
64+
/**
65+
* User who resolved the feedback.
66+
* @type {string}
67+
* @memberof Feedback
68+
*/
69+
resolved_by?: string;
70+
/**
71+
* Resolution status for the feedback.
72+
* @type {string}
73+
* @memberof Feedback
74+
*/
75+
resolution?: FeedbackResolutionEnum;
5876
/**
5977
* Latitude of the location related to the feedback.
6078
* @type {number}
@@ -95,4 +113,13 @@ export enum FeedbackStatusEnum {
95113
Open = 'open',
96114
Resolved = 'resolved'
97115
}
116+
/**
117+
* @export
118+
* @enum {string}
119+
*/
120+
export enum FeedbackResolutionEnum {
121+
Fixed = 'fixed',
122+
WontFix = 'wont_fix',
123+
NotAnIssue = 'not_an_issue'
124+
}
98125

models/project-id-tdei-dataset-id-body.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ export interface ProjectIdTdeiDatasetIdBody {
3636
*/
3737
resolved?: ProjectIdTdeiDatasetIdBodyResolvedEnum;
3838
/**
39-
* Description of the feedback status.
39+
* Description of the feedback resolution.
4040
* @type {string}
4141
* @memberof ProjectIdTdeiDatasetIdBody
4242
*/
43-
status_description?: string;
43+
resolution_description?: string;
4444
}
4545

4646
/**

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tdei-client",
3-
"version": "1.1.95",
3+
"version": "1.1.96",
44
"description": "OpenAPI client for tdei-client",
55
"author": "OpenAPI-Generator Contributors",
66
"keywords": [

0 commit comments

Comments
 (0)