@unified-api/typescript-sdk 1.0.15 → 1.0.17

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.
@@ -7,7 +7,11 @@ export declare enum PaymentCollectionMethod {
7
7
  export declare enum AccountingInvoiceStatus {
8
8
  Draft = "DRAFT",
9
9
  Voided = "VOIDED",
10
- Authorized = "AUTHORIZED"
10
+ Authorized = "AUTHORIZED",
11
+ Paid = "PAID",
12
+ PartiallyPaid = "PARTIALLY_PAID",
13
+ PartiallyRefunded = "PARTIALLY_REFUNDED",
14
+ Refunded = "REFUNDED"
11
15
  }
12
16
  export declare class AccountingInvoice extends SpeakeasyBase {
13
17
  balanceAmount?: number;
@@ -41,6 +41,10 @@ var AccountingInvoiceStatus;
41
41
  AccountingInvoiceStatus["Draft"] = "DRAFT";
42
42
  AccountingInvoiceStatus["Voided"] = "VOIDED";
43
43
  AccountingInvoiceStatus["Authorized"] = "AUTHORIZED";
44
+ AccountingInvoiceStatus["Paid"] = "PAID";
45
+ AccountingInvoiceStatus["PartiallyPaid"] = "PARTIALLY_PAID";
46
+ AccountingInvoiceStatus["PartiallyRefunded"] = "PARTIALLY_REFUNDED";
47
+ AccountingInvoiceStatus["Refunded"] = "REFUNDED";
44
48
  })(AccountingInvoiceStatus = exports.AccountingInvoiceStatus || (exports.AccountingInvoiceStatus = {}));
45
49
  var AccountingInvoice = /** @class */ (function (_super) {
46
50
  __extends(AccountingInvoice, _super);
@@ -32,7 +32,7 @@ export declare class IntegrationSupport extends SpeakeasyBase {
32
32
  outboundFields?: Record<string, any>;
33
33
  searchDomain?: boolean;
34
34
  searchEmail?: boolean;
35
- searchLinkedinUrl?: boolean;
35
+ searchLinkedinurl?: boolean;
36
36
  searchName?: boolean;
37
37
  searchTwitter?: boolean;
38
38
  webhookEvents?: PropertyIntegrationSupportWebhookEvents;
@@ -193,9 +193,9 @@ var IntegrationSupport = /** @class */ (function (_super) {
193
193
  ], IntegrationSupport.prototype, "searchEmail", void 0);
194
194
  __decorate([
195
195
  (0, utils_1.SpeakeasyMetadata)(),
196
- (0, class_transformer_1.Expose)({ name: "search_linkedin_url" }),
196
+ (0, class_transformer_1.Expose)({ name: "search_linkedinurl" }),
197
197
  __metadata("design:type", Boolean)
198
- ], IntegrationSupport.prototype, "searchLinkedinUrl", void 0);
198
+ ], IntegrationSupport.prototype, "searchLinkedinurl", void 0);
199
199
  __decorate([
200
200
  (0, utils_1.SpeakeasyMetadata)(),
201
201
  (0, class_transformer_1.Expose)({ name: "search_name" }),
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.15";
87
- this.genVersion = "2.306.0";
88
- this.userAgent = "speakeasy-sdk/typescript 1.0.15 2.306.0 1.0 @unified-api/typescript-sdk";
86
+ this.sdkVersion = "1.0.17";
87
+ this.genVersion = "2.311.1";
88
+ this.userAgent = "speakeasy-sdk/typescript 1.0.17 2.311.1 1.0 @unified-api/typescript-sdk";
89
89
  Object.assign(this, init);
90
90
  }
91
91
  return SDKConfiguration;
@@ -3,8 +3,12 @@
3
3
 
4
4
  ## Values
5
5
 
6
- | Name | Value |
7
- | ------------ | ------------ |
8
- | `Draft` | DRAFT |
9
- | `Voided` | VOIDED |
10
- | `Authorized` | AUTHORIZED |
6
+ | Name | Value |
7
+ | ------------------- | ------------------- |
8
+ | `Draft` | DRAFT |
9
+ | `Voided` | VOIDED |
10
+ | `Authorized` | AUTHORIZED |
11
+ | `Paid` | PAID |
12
+ | `PartiallyPaid` | PARTIALLY_PAID |
13
+ | `PartiallyRefunded` | PARTIALLY_REFUNDED |
14
+ | `Refunded` | REFUNDED |
@@ -36,7 +36,7 @@
36
36
  | `outboundFields` | Record<string, *any*> | :heavy_minus_sign: | N/A |
37
37
  | `searchDomain` | *boolean* | :heavy_minus_sign: | N/A |
38
38
  | `searchEmail` | *boolean* | :heavy_minus_sign: | N/A |
39
- | `searchLinkedinUrl` | *boolean* | :heavy_minus_sign: | N/A |
39
+ | `searchLinkedinurl` | *boolean* | :heavy_minus_sign: | N/A |
40
40
  | `searchName` | *boolean* | :heavy_minus_sign: | N/A |
41
41
  | `searchTwitter` | *boolean* | :heavy_minus_sign: | N/A |
42
42
  | `webhookEvents` | [shared.PropertyIntegrationSupportWebhookEvents](../../../sdk/models/shared/propertyintegrationsupportwebhookevents.md) | :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.15",
3
+ "version": "1.0.17",
4
4
  "author": "Unified",
5
5
  "scripts": {
6
6
  "prepare": "tsc --build",