@unified-api/typescript-sdk 1.0.13 → 1.0.14

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.
@@ -25,6 +25,7 @@ export declare class IntegrationSupport extends SpeakeasyBase {
25
25
  listSortByName?: boolean;
26
26
  listSortByUpdatedAt?: boolean;
27
27
  listTicketId?: boolean;
28
+ listType?: boolean;
28
29
  listUpdatedGte?: boolean;
29
30
  listUserId?: boolean;
30
31
  methods?: Record<string, boolean>;
@@ -156,6 +156,11 @@ var IntegrationSupport = /** @class */ (function (_super) {
156
156
  (0, class_transformer_1.Expose)({ name: "list_ticket_id" }),
157
157
  __metadata("design:type", Boolean)
158
158
  ], IntegrationSupport.prototype, "listTicketId", void 0);
159
+ __decorate([
160
+ (0, utils_1.SpeakeasyMetadata)(),
161
+ (0, class_transformer_1.Expose)({ name: "list_type" }),
162
+ __metadata("design:type", Boolean)
163
+ ], IntegrationSupport.prototype, "listType", void 0);
159
164
  __decorate([
160
165
  (0, utils_1.SpeakeasyMetadata)(),
161
166
  (0, class_transformer_1.Expose)({ name: "list_updated_gte" }),
@@ -1,10 +1,11 @@
1
1
  import { SpeakeasyBase } from "../../../internal/utils";
2
2
  export declare enum IssueStatus {
3
- OnHold = "ON_HOLD",
3
+ Completed = "COMPLETED",
4
4
  New = "NEW",
5
+ Roadmap = "ROADMAP",
5
6
  InProgress = "IN_PROGRESS",
7
+ OnHold = "ON_HOLD",
6
8
  Validating = "VALIDATING",
7
- Complete = "COMPLETE",
8
9
  Rejected = "REJECTED"
9
10
  }
10
11
  export declare enum IssueType {
@@ -32,11 +32,12 @@ var utils_1 = require("../../../internal/utils");
32
32
  var class_transformer_1 = require("class-transformer");
33
33
  var IssueStatus;
34
34
  (function (IssueStatus) {
35
- IssueStatus["OnHold"] = "ON_HOLD";
35
+ IssueStatus["Completed"] = "COMPLETED";
36
36
  IssueStatus["New"] = "NEW";
37
+ IssueStatus["Roadmap"] = "ROADMAP";
37
38
  IssueStatus["InProgress"] = "IN_PROGRESS";
39
+ IssueStatus["OnHold"] = "ON_HOLD";
38
40
  IssueStatus["Validating"] = "VALIDATING";
39
- IssueStatus["Complete"] = "COMPLETE";
40
41
  IssueStatus["Rejected"] = "REJECTED";
41
42
  })(IssueStatus = exports.IssueStatus || (exports.IssueStatus = {}));
42
43
  var IssueType;
package/dist/sdk/sdk.js CHANGED
@@ -83,9 +83,9 @@ var SDKConfiguration = /** @class */ (function () {
83
83
  function SDKConfiguration(init) {
84
84
  this.language = "typescript";
85
85
  this.openapiDocVersion = "1.0";
86
- this.sdkVersion = "1.0.13";
87
- this.genVersion = "2.304.1";
88
- this.userAgent = "speakeasy-sdk/typescript 1.0.13 2.304.1 1.0 @unified-api/typescript-sdk";
86
+ this.sdkVersion = "1.0.14";
87
+ this.genVersion = "2.306.0";
88
+ this.userAgent = "speakeasy-sdk/typescript 1.0.14 2.306.0 1.0 @unified-api/typescript-sdk";
89
89
  Object.assign(this, init);
90
90
  }
91
91
  return SDKConfiguration;
@@ -29,6 +29,7 @@
29
29
  | `listSortByName` | *boolean* | :heavy_minus_sign: | N/A |
30
30
  | `listSortByUpdatedAt` | *boolean* | :heavy_minus_sign: | N/A |
31
31
  | `listTicketId` | *boolean* | :heavy_minus_sign: | N/A |
32
+ | `listType` | *boolean* | :heavy_minus_sign: | N/A |
32
33
  | `listUpdatedGte` | *boolean* | :heavy_minus_sign: | N/A |
33
34
  | `listUserId` | *boolean* | :heavy_minus_sign: | N/A |
34
35
  | `methods` | Record<string, *boolean*> | :heavy_minus_sign: | N/A |
@@ -5,9 +5,10 @@
5
5
 
6
6
  | Name | Value |
7
7
  | ------------ | ------------ |
8
- | `OnHold` | ON_HOLD |
8
+ | `Completed` | COMPLETED |
9
9
  | `New` | NEW |
10
+ | `Roadmap` | ROADMAP |
10
11
  | `InProgress` | IN_PROGRESS |
12
+ | `OnHold` | ON_HOLD |
11
13
  | `Validating` | VALIDATING |
12
- | `Complete` | COMPLETE |
13
14
  | `Rejected` | REJECTED |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unified-api/typescript-sdk",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "author": "Unified",
5
5
  "scripts": {
6
6
  "prepare": "tsc --build",