@unified-api/typescript-sdk 1.0.29 → 1.0.31

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.
@@ -13,6 +13,7 @@ export declare class ListMessagingChannelsRequest extends SpeakeasyBase {
13
13
  limit?: number;
14
14
  offset?: number;
15
15
  order?: string;
16
+ parentId?: string;
16
17
  /**
17
18
  * Query string to search. eg. email address or name
18
19
  */
@@ -78,6 +78,10 @@ var ListMessagingChannelsRequest = /** @class */ (function (_super) {
78
78
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=order" }),
79
79
  __metadata("design:type", String)
80
80
  ], ListMessagingChannelsRequest.prototype, "order", void 0);
81
+ __decorate([
82
+ (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=parent_id" }),
83
+ __metadata("design:type", String)
84
+ ], ListMessagingChannelsRequest.prototype, "parentId", void 0);
81
85
  __decorate([
82
86
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=query" }),
83
87
  __metadata("design:type", String)
@@ -9,6 +9,7 @@ export declare enum AccountingContactPaymentMethodType {
9
9
  Paypal = "PAYPAL"
10
10
  }
11
11
  export declare class AccountingContactPaymentMethod extends SpeakeasyBase {
12
+ id?: string;
12
13
  name?: string;
13
14
  type: AccountingContactPaymentMethodType;
14
15
  }
@@ -45,6 +45,11 @@ var AccountingContactPaymentMethod = /** @class */ (function (_super) {
45
45
  function AccountingContactPaymentMethod() {
46
46
  return _super !== null && _super.apply(this, arguments) || this;
47
47
  }
48
+ __decorate([
49
+ (0, utils_1.SpeakeasyMetadata)(),
50
+ (0, class_transformer_1.Expose)({ name: "id" }),
51
+ __metadata("design:type", String)
52
+ ], AccountingContactPaymentMethod.prototype, "id", void 0);
48
53
  __decorate([
49
54
  (0, utils_1.SpeakeasyMetadata)(),
50
55
  (0, class_transformer_1.Expose)({ name: "name" }),
package/dist/sdk/sdk.js CHANGED
@@ -92,9 +92,9 @@ var SDKConfiguration = /** @class */ (function () {
92
92
  function SDKConfiguration(init) {
93
93
  this.language = "typescript";
94
94
  this.openapiDocVersion = "1.0";
95
- this.sdkVersion = "1.0.29";
96
- this.genVersion = "2.337.1";
97
- this.userAgent = "speakeasy-sdk/typescript 1.0.29 2.337.1 1.0 @unified-api/typescript-sdk";
95
+ this.sdkVersion = "1.0.31";
96
+ this.genVersion = "2.338.5";
97
+ this.userAgent = "speakeasy-sdk/typescript 1.0.31 2.338.5 1.0 @unified-api/typescript-sdk";
98
98
  Object.assign(this, init);
99
99
  }
100
100
  return SDKConfiguration;
@@ -10,6 +10,7 @@
10
10
  | `limit` | *number* | :heavy_minus_sign: | N/A |
11
11
  | `offset` | *number* | :heavy_minus_sign: | N/A |
12
12
  | `order` | *string* | :heavy_minus_sign: | N/A |
13
+ | `parentId` | *string* | :heavy_minus_sign: | N/A |
13
14
  | `query` | *string* | :heavy_minus_sign: | Query string to search. eg. email address or name |
14
15
  | `sort` | *string* | :heavy_minus_sign: | N/A |
15
16
  | `updatedGte` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | Return only results whose updated date is equal or greater to this value |
@@ -5,5 +5,6 @@
5
5
 
6
6
  | Field | Type | Required | Description |
7
7
  | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
8
+ | `id` | *string* | :heavy_minus_sign: | N/A |
8
9
  | `name` | *string* | :heavy_minus_sign: | N/A |
9
10
  | `type` | [shared.AccountingContactPaymentMethodType](../../../sdk/models/shared/accountingcontactpaymentmethodtype.md) | :heavy_check_mark: | N/A |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unified-api/typescript-sdk",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "author": "Unified",
5
5
  "scripts": {
6
6
  "prepare": "tsc --build",