@unified-api/typescript-sdk 1.0.25 → 1.0.26
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/createaccountingaccount.d.ts +3 -0
- package/dist/sdk/models/operations/patchaccountingaccount.d.ts +3 -0
- package/dist/sdk/models/operations/updateaccountingaccount.d.ts +3 -0
- package/dist/sdk/models/shared/accountingaccount.d.ts +3 -0
- package/dist/sdk/models/shared/accountingaccount.js +3 -0
- package/dist/sdk/models/shared/accountingcontactpaymentmethod.d.ts +2 -3
- package/dist/sdk/models/shared/accountingcontactpaymentmethod.js +0 -1
- package/dist/sdk/models/shared/accountingorganization.d.ts +1 -1
- package/dist/sdk/sdk.js +2 -2
- package/docs/sdk/models/operations/createaccountingaccountrequest.md +1 -1
- package/docs/sdk/models/operations/patchaccountingaccountrequest.md +1 -1
- package/docs/sdk/models/operations/updateaccountingaccountrequest.md +1 -1
- package/docs/sdk/models/shared/accountingaccount.md +2 -0
- package/docs/sdk/models/shared/accountingcontactpaymentmethod.md +1 -1
- package/docs/sdk/models/shared/accountingcontactpaymentmethodtype.md +1 -2
- package/docs/sdk/models/shared/accountingorganization.md +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,9 @@ import { SpeakeasyBase } from "../../../internal/utils";
|
|
|
2
2
|
import * as shared from "../../../sdk/models/shared";
|
|
3
3
|
import { AxiosResponse } from "axios";
|
|
4
4
|
export declare class CreateAccountingAccountRequest extends SpeakeasyBase {
|
|
5
|
+
/**
|
|
6
|
+
* Chart of accounts
|
|
7
|
+
*/
|
|
5
8
|
accountingAccount?: shared.AccountingAccount;
|
|
6
9
|
/**
|
|
7
10
|
* ID of the connection
|
|
@@ -2,6 +2,9 @@ import { SpeakeasyBase } from "../../../internal/utils";
|
|
|
2
2
|
import * as shared from "../../../sdk/models/shared";
|
|
3
3
|
import { AxiosResponse } from "axios";
|
|
4
4
|
export declare class PatchAccountingAccountRequest extends SpeakeasyBase {
|
|
5
|
+
/**
|
|
6
|
+
* Chart of accounts
|
|
7
|
+
*/
|
|
5
8
|
accountingAccount?: shared.AccountingAccount;
|
|
6
9
|
/**
|
|
7
10
|
* ID of the connection
|
|
@@ -2,6 +2,9 @@ import { SpeakeasyBase } from "../../../internal/utils";
|
|
|
2
2
|
import * as shared from "../../../sdk/models/shared";
|
|
3
3
|
import { AxiosResponse } from "axios";
|
|
4
4
|
export declare class UpdateAccountingAccountRequest extends SpeakeasyBase {
|
|
5
|
+
/**
|
|
6
|
+
* Chart of accounts
|
|
7
|
+
*/
|
|
5
8
|
accountingAccount?: shared.AccountingAccount;
|
|
6
9
|
/**
|
|
7
10
|
* ID of the connection
|
|
@@ -48,6 +48,9 @@ var TypeT;
|
|
|
48
48
|
TypeT["Revenue"] = "REVENUE";
|
|
49
49
|
TypeT["Other"] = "OTHER";
|
|
50
50
|
})(TypeT = exports.TypeT || (exports.TypeT = {}));
|
|
51
|
+
/**
|
|
52
|
+
* Chart of accounts
|
|
53
|
+
*/
|
|
51
54
|
var AccountingAccount = /** @class */ (function (_super) {
|
|
52
55
|
__extends(AccountingAccount, _super);
|
|
53
56
|
function AccountingAccount() {
|
|
@@ -6,10 +6,9 @@ export declare enum AccountingContactPaymentMethodType {
|
|
|
6
6
|
Giropay = "GIROPAY",
|
|
7
7
|
Ideal = "IDEAL",
|
|
8
8
|
Other = "OTHER",
|
|
9
|
-
Paypal = "PAYPAL"
|
|
10
|
-
Unknown = ""
|
|
9
|
+
Paypal = "PAYPAL"
|
|
11
10
|
}
|
|
12
11
|
export declare class AccountingContactPaymentMethod extends SpeakeasyBase {
|
|
13
12
|
name?: string;
|
|
14
|
-
type
|
|
13
|
+
type: AccountingContactPaymentMethodType;
|
|
15
14
|
}
|
|
@@ -39,7 +39,6 @@ var AccountingContactPaymentMethodType;
|
|
|
39
39
|
AccountingContactPaymentMethodType["Ideal"] = "IDEAL";
|
|
40
40
|
AccountingContactPaymentMethodType["Other"] = "OTHER";
|
|
41
41
|
AccountingContactPaymentMethodType["Paypal"] = "PAYPAL";
|
|
42
|
-
AccountingContactPaymentMethodType["Unknown"] = "";
|
|
43
42
|
})(AccountingContactPaymentMethodType = exports.AccountingContactPaymentMethodType || (exports.AccountingContactPaymentMethodType = {}));
|
|
44
43
|
var AccountingContactPaymentMethod = /** @class */ (function (_super) {
|
|
45
44
|
__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.26";
|
|
90
90
|
this.genVersion = "2.333.3";
|
|
91
|
-
this.userAgent = "speakeasy-sdk/typescript 1.0.
|
|
91
|
+
this.userAgent = "speakeasy-sdk/typescript 1.0.26 2.333.3 1.0 @unified-api/typescript-sdk";
|
|
92
92
|
Object.assign(this, init);
|
|
93
93
|
}
|
|
94
94
|
return SDKConfiguration;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
|
|
6
6
|
| Field | Type | Required | Description |
|
|
7
7
|
| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
8
|
-
| `accountingAccount` | [shared.AccountingAccount](../../../sdk/models/shared/accountingaccount.md) | :heavy_minus_sign: |
|
|
8
|
+
| `accountingAccount` | [shared.AccountingAccount](../../../sdk/models/shared/accountingaccount.md) | :heavy_minus_sign: | Chart of accounts |
|
|
9
9
|
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
| Field | Type | Required | Description |
|
|
7
7
|
| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
8
|
-
| `accountingAccount` | [shared.AccountingAccount](../../../sdk/models/shared/accountingaccount.md) | :heavy_minus_sign: |
|
|
8
|
+
| `accountingAccount` | [shared.AccountingAccount](../../../sdk/models/shared/accountingaccount.md) | :heavy_minus_sign: | Chart of accounts |
|
|
9
9
|
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
10
10
|
| `id` | *string* | :heavy_check_mark: | ID of the Account |
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
| Field | Type | Required | Description |
|
|
7
7
|
| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
8
|
-
| `accountingAccount` | [shared.AccountingAccount](../../../sdk/models/shared/accountingaccount.md) | :heavy_minus_sign: |
|
|
8
|
+
| `accountingAccount` | [shared.AccountingAccount](../../../sdk/models/shared/accountingaccount.md) | :heavy_minus_sign: | Chart of accounts |
|
|
9
9
|
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
10
10
|
| `id` | *string* | :heavy_check_mark: | ID of the Account |
|
|
@@ -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_check_mark: | 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_check_mark: | 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 |
|