@unified-api/typescript-sdk 1.0.45 → 1.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,18 +8,14 @@ export declare enum IssueStatus {
|
|
|
8
8
|
Validating = "VALIDATING",
|
|
9
9
|
Rejected = "REJECTED"
|
|
10
10
|
}
|
|
11
|
-
export declare enum IssueType {
|
|
12
|
-
Bug = "BUG",
|
|
13
|
-
FeatureRequest = "FEATURE_REQUEST",
|
|
14
|
-
Inquiry = "INQUIRY"
|
|
15
|
-
}
|
|
16
11
|
export declare class Issue extends SpeakeasyBase {
|
|
17
12
|
createdAt?: string;
|
|
18
13
|
id?: string;
|
|
19
14
|
resolutionTime?: number;
|
|
20
15
|
status: IssueStatus;
|
|
16
|
+
ticketRef: string;
|
|
21
17
|
title: string;
|
|
22
|
-
type
|
|
18
|
+
type?: string[];
|
|
23
19
|
updatedAt?: string;
|
|
24
20
|
url?: string;
|
|
25
21
|
workspaceId: string;
|
|
@@ -27,7 +27,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
27
27
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
-
exports.Issue = exports.
|
|
30
|
+
exports.Issue = exports.IssueStatus = void 0;
|
|
31
31
|
var utils_1 = require("../../../internal/utils");
|
|
32
32
|
var class_transformer_1 = require("class-transformer");
|
|
33
33
|
var IssueStatus;
|
|
@@ -40,12 +40,6 @@ var IssueStatus;
|
|
|
40
40
|
IssueStatus["Validating"] = "VALIDATING";
|
|
41
41
|
IssueStatus["Rejected"] = "REJECTED";
|
|
42
42
|
})(IssueStatus = exports.IssueStatus || (exports.IssueStatus = {}));
|
|
43
|
-
var IssueType;
|
|
44
|
-
(function (IssueType) {
|
|
45
|
-
IssueType["Bug"] = "BUG";
|
|
46
|
-
IssueType["FeatureRequest"] = "FEATURE_REQUEST";
|
|
47
|
-
IssueType["Inquiry"] = "INQUIRY";
|
|
48
|
-
})(IssueType = exports.IssueType || (exports.IssueType = {}));
|
|
49
43
|
var Issue = /** @class */ (function (_super) {
|
|
50
44
|
__extends(Issue, _super);
|
|
51
45
|
function Issue() {
|
|
@@ -71,6 +65,11 @@ var Issue = /** @class */ (function (_super) {
|
|
|
71
65
|
(0, class_transformer_1.Expose)({ name: "status" }),
|
|
72
66
|
__metadata("design:type", String)
|
|
73
67
|
], Issue.prototype, "status", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, utils_1.SpeakeasyMetadata)(),
|
|
70
|
+
(0, class_transformer_1.Expose)({ name: "ticket_ref" }),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], Issue.prototype, "ticketRef", void 0);
|
|
74
73
|
__decorate([
|
|
75
74
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
76
75
|
(0, class_transformer_1.Expose)({ name: "title" }),
|
|
@@ -79,7 +78,7 @@ var Issue = /** @class */ (function (_super) {
|
|
|
79
78
|
__decorate([
|
|
80
79
|
(0, utils_1.SpeakeasyMetadata)(),
|
|
81
80
|
(0, class_transformer_1.Expose)({ name: "type" }),
|
|
82
|
-
__metadata("design:type",
|
|
81
|
+
__metadata("design:type", Array)
|
|
83
82
|
], Issue.prototype, "type", void 0);
|
|
84
83
|
__decorate([
|
|
85
84
|
(0, utils_1.SpeakeasyMetadata)(),
|
package/dist/sdk/sdk.js
CHANGED
|
@@ -95,9 +95,9 @@ var SDKConfiguration = /** @class */ (function () {
|
|
|
95
95
|
function SDKConfiguration(init) {
|
|
96
96
|
this.language = "typescript";
|
|
97
97
|
this.openapiDocVersion = "1.0";
|
|
98
|
-
this.sdkVersion = "1.0.
|
|
99
|
-
this.genVersion = "2.
|
|
100
|
-
this.userAgent = "speakeasy-sdk/typescript 1.0.
|
|
98
|
+
this.sdkVersion = "1.0.46";
|
|
99
|
+
this.genVersion = "2.354.2";
|
|
100
|
+
this.userAgent = "speakeasy-sdk/typescript 1.0.46 2.354.2 1.0 @unified-api/typescript-sdk";
|
|
101
101
|
Object.assign(this, init);
|
|
102
102
|
}
|
|
103
103
|
return SDKConfiguration;
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
| `id` | *string* | :heavy_minus_sign: | N/A |
|
|
10
10
|
| `resolutionTime` | *number* | :heavy_minus_sign: | N/A |
|
|
11
11
|
| `status` | [shared.IssueStatus](../../../sdk/models/shared/issuestatus.md) | :heavy_check_mark: | N/A |
|
|
12
|
+
| `ticketRef` | *string* | :heavy_check_mark: | N/A |
|
|
12
13
|
| `title` | *string* | :heavy_check_mark: | N/A |
|
|
13
|
-
| `type` | [
|
|
14
|
+
| `type` | *string*[] | :heavy_minus_sign: | N/A |
|
|
14
15
|
| `updatedAt` | *string* | :heavy_minus_sign: | N/A |
|
|
15
16
|
| `url` | *string* | :heavy_minus_sign: | N/A |
|
|
16
17
|
| `workspaceId` | *string* | :heavy_check_mark: | N/A |
|
package/package.json
CHANGED