@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.
@@ -6,6 +6,7 @@ export declare class ListTicketingNotesRequest extends SpeakeasyBase {
6
6
  * ID of the connection
7
7
  */
8
8
  connectionId: string;
9
+ customerId?: string;
9
10
  /**
10
11
  * Comma-delimited fields to return
11
12
  */
@@ -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: AccountingContactPaymentMethodType;
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);
@@ -7,7 +7,7 @@ export declare class AccountingOrganization extends SpeakeasyBase {
7
7
  fiscalYearEndMonth?: number;
8
8
  id?: string;
9
9
  legalName?: string;
10
- name: string;
10
+ name?: string;
11
11
  raw?: Record<string, any>;
12
12
  taxNumber?: string;
13
13
  timezone?: string;
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.24";
89
+ this.sdkVersion = "1.0.25";
90
90
  this.genVersion = "2.333.3";
91
- this.userAgent = "speakeasy-sdk/typescript 1.0.24 2.333.3 1.0 @unified-api/typescript-sdk";
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) | :heavy_check_mark: | N/A |
9
+ | `type` | [shared.AccountingContactPaymentMethodType](../../../sdk/models/shared/accountingcontactpaymentmethodtype.md) | :heavy_minus_sign: | N/A |
@@ -11,4 +11,5 @@
11
11
  | `Giropay` | GIROPAY |
12
12
  | `Ideal` | IDEAL |
13
13
  | `Other` | OTHER |
14
- | `Paypal` | PAYPAL |
14
+ | `Paypal` | PAYPAL |
15
+ | `Unknown` | |
@@ -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* | :heavy_check_mark: | N/A |
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 |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unified-api/typescript-sdk",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "author": "Unified",
5
5
  "scripts": {
6
6
  "prepare": "tsc --build",