@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.
- package/dist/sdk/models/operations/listmessagingchannels.d.ts +1 -0
- package/dist/sdk/models/operations/listmessagingchannels.js +4 -0
- package/dist/sdk/models/shared/accountingcontactpaymentmethod.d.ts +1 -0
- package/dist/sdk/models/shared/accountingcontactpaymentmethod.js +5 -0
- package/dist/sdk/sdk.js +3 -3
- package/docs/sdk/models/operations/listmessagingchannelsrequest.md +1 -0
- package/docs/sdk/models/shared/accountingcontactpaymentmethod.md +1 -0
- package/package.json +1 -1
|
@@ -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)
|
|
@@ -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.
|
|
96
|
-
this.genVersion = "2.
|
|
97
|
-
this.userAgent = "speakeasy-sdk/typescript 1.0.
|
|
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 |
|