@unified-api/typescript-sdk 1.0.24 → 1.0.25
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/listticketingnotes.d.ts +1 -0
- package/dist/sdk/models/operations/listticketingnotes.js +4 -0
- package/dist/sdk/models/shared/accountingcontactpaymentmethod.d.ts +3 -2
- package/dist/sdk/models/shared/accountingcontactpaymentmethod.js +1 -0
- package/dist/sdk/models/shared/accountingorganization.d.ts +1 -1
- package/dist/sdk/sdk.js +2 -2
- package/docs/sdk/models/operations/listticketingnotesrequest.md +1 -0
- package/docs/sdk/models/shared/accountingcontactpaymentmethod.md +1 -1
- package/docs/sdk/models/shared/accountingcontactpaymentmethodtype.md +2 -1
- package/docs/sdk/models/shared/accountingorganization.md +1 -1
- package/package.json +1 -1
|
@@ -62,6 +62,10 @@ var ListTicketingNotesRequest = /** @class */ (function (_super) {
|
|
|
62
62
|
(0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
|
|
63
63
|
__metadata("design:type", String)
|
|
64
64
|
], ListTicketingNotesRequest.prototype, "connectionId", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=customer_id" }),
|
|
67
|
+
__metadata("design:type", String)
|
|
68
|
+
], ListTicketingNotesRequest.prototype, "customerId", void 0);
|
|
65
69
|
__decorate([
|
|
66
70
|
(0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=fields" }),
|
|
67
71
|
__metadata("design:type", Array)
|
|
@@ -6,9 +6,10 @@ export declare enum AccountingContactPaymentMethodType {
|
|
|
6
6
|
Giropay = "GIROPAY",
|
|
7
7
|
Ideal = "IDEAL",
|
|
8
8
|
Other = "OTHER",
|
|
9
|
-
Paypal = "PAYPAL"
|
|
9
|
+
Paypal = "PAYPAL",
|
|
10
|
+
Unknown = ""
|
|
10
11
|
}
|
|
11
12
|
export declare class AccountingContactPaymentMethod extends SpeakeasyBase {
|
|
12
13
|
name?: string;
|
|
13
|
-
type
|
|
14
|
+
type?: AccountingContactPaymentMethodType;
|
|
14
15
|
}
|
|
@@ -39,6 +39,7 @@ var AccountingContactPaymentMethodType;
|
|
|
39
39
|
AccountingContactPaymentMethodType["Ideal"] = "IDEAL";
|
|
40
40
|
AccountingContactPaymentMethodType["Other"] = "OTHER";
|
|
41
41
|
AccountingContactPaymentMethodType["Paypal"] = "PAYPAL";
|
|
42
|
+
AccountingContactPaymentMethodType["Unknown"] = "";
|
|
42
43
|
})(AccountingContactPaymentMethodType = exports.AccountingContactPaymentMethodType || (exports.AccountingContactPaymentMethodType = {}));
|
|
43
44
|
var AccountingContactPaymentMethod = /** @class */ (function (_super) {
|
|
44
45
|
__extends(AccountingContactPaymentMethod, _super);
|
package/dist/sdk/sdk.js
CHANGED
|
@@ -86,9 +86,9 @@ var SDKConfiguration = /** @class */ (function () {
|
|
|
86
86
|
function SDKConfiguration(init) {
|
|
87
87
|
this.language = "typescript";
|
|
88
88
|
this.openapiDocVersion = "1.0";
|
|
89
|
-
this.sdkVersion = "1.0.
|
|
89
|
+
this.sdkVersion = "1.0.25";
|
|
90
90
|
this.genVersion = "2.333.3";
|
|
91
|
-
this.userAgent = "speakeasy-sdk/typescript 1.0.
|
|
91
|
+
this.userAgent = "speakeasy-sdk/typescript 1.0.25 2.333.3 1.0 @unified-api/typescript-sdk";
|
|
92
92
|
Object.assign(this, init);
|
|
93
93
|
}
|
|
94
94
|
return SDKConfiguration;
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
| Field | Type | Required | Description |
|
|
7
7
|
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
|
|
8
8
|
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
9
|
+
| `customerId` | *string* | :heavy_minus_sign: | N/A |
|
|
9
10
|
| `fields` | *string*[] | :heavy_minus_sign: | Comma-delimited fields to return |
|
|
10
11
|
| `limit` | *number* | :heavy_minus_sign: | N/A |
|
|
11
12
|
| `offset` | *number* | :heavy_minus_sign: | N/A |
|
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
| Field | Type | Required | Description |
|
|
7
7
|
| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
|
|
8
8
|
| `name` | *string* | :heavy_minus_sign: | N/A |
|
|
9
|
-
| `type` | [shared.AccountingContactPaymentMethodType](../../../sdk/models/shared/accountingcontactpaymentmethodtype.md) | :
|
|
9
|
+
| `type` | [shared.AccountingContactPaymentMethodType](../../../sdk/models/shared/accountingcontactpaymentmethodtype.md) | :heavy_minus_sign: | N/A |
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
| `fiscalYearEndMonth` | *number* | :heavy_minus_sign: | N/A |
|
|
12
12
|
| `id` | *string* | :heavy_minus_sign: | N/A |
|
|
13
13
|
| `legalName` | *string* | :heavy_minus_sign: | N/A |
|
|
14
|
-
| `name` | *string* | :
|
|
14
|
+
| `name` | *string* | :heavy_minus_sign: | N/A |
|
|
15
15
|
| `raw` | Record<string, *any*> | :heavy_minus_sign: | N/A |
|
|
16
16
|
| `taxNumber` | *string* | :heavy_minus_sign: | N/A |
|
|
17
17
|
| `timezone` | *string* | :heavy_minus_sign: | N/A |
|