@emilgroup/accounting-sdk-node 1.32.1-beta.5 → 1.32.1-beta.7
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/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/accounting-sdk-node@1.32.1-beta.
|
|
20
|
+
npm install @emilgroup/accounting-sdk-node@1.32.1-beta.7 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/accounting-sdk-node@1.32.1-beta.
|
|
24
|
+
yarn add @emilgroup/accounting-sdk-node@1.32.1-beta.7
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `FinancialAccountsApi`.
|
|
@@ -77,6 +77,12 @@ export interface CreateFinancialAccountRequestDto {
|
|
|
77
77
|
* @memberof CreateFinancialAccountRequestDto
|
|
78
78
|
*/
|
|
79
79
|
'functionalCategory': CreateFinancialAccountRequestDtoFunctionalCategoryEnum;
|
|
80
|
+
/**
|
|
81
|
+
* Whether this account is the default for its functional category. Only meaningful for pool categories. Setting true on creation will clear isDefault on any other account in the same category.
|
|
82
|
+
* @type {boolean}
|
|
83
|
+
* @memberof CreateFinancialAccountRequestDto
|
|
84
|
+
*/
|
|
85
|
+
'isDefault'?: boolean;
|
|
80
86
|
}
|
|
81
87
|
export declare const CreateFinancialAccountRequestDtoTypeEnum: {
|
|
82
88
|
readonly Asset: "asset";
|
|
@@ -93,6 +93,12 @@ export interface FinancialAccountClass {
|
|
|
93
93
|
* @memberof FinancialAccountClass
|
|
94
94
|
*/
|
|
95
95
|
'functionalCategory': string;
|
|
96
|
+
/**
|
|
97
|
+
* Whether this is the default account for its functional category. Only one pool-category account per category can have isDefault set to true.
|
|
98
|
+
* @type {boolean}
|
|
99
|
+
* @memberof FinancialAccountClass
|
|
100
|
+
*/
|
|
101
|
+
'isDefault': boolean;
|
|
96
102
|
/**
|
|
97
103
|
* Time at which the object was created.
|
|
98
104
|
* @type {string}
|
|
@@ -80,6 +80,12 @@ export interface CreateFinancialAccountRequestDto {
|
|
|
80
80
|
* @memberof CreateFinancialAccountRequestDto
|
|
81
81
|
*/
|
|
82
82
|
'functionalCategory': CreateFinancialAccountRequestDtoFunctionalCategoryEnum;
|
|
83
|
+
/**
|
|
84
|
+
* Whether this account is the default for its functional category. Only meaningful for pool categories. Setting true on creation will clear isDefault on any other account in the same category.
|
|
85
|
+
* @type {boolean}
|
|
86
|
+
* @memberof CreateFinancialAccountRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'isDefault'?: boolean;
|
|
83
89
|
}
|
|
84
90
|
|
|
85
91
|
export const CreateFinancialAccountRequestDtoTypeEnum = {
|
|
@@ -98,6 +98,12 @@ export interface FinancialAccountClass {
|
|
|
98
98
|
* @memberof FinancialAccountClass
|
|
99
99
|
*/
|
|
100
100
|
'functionalCategory': string;
|
|
101
|
+
/**
|
|
102
|
+
* Whether this is the default account for its functional category. Only one pool-category account per category can have isDefault set to true.
|
|
103
|
+
* @type {boolean}
|
|
104
|
+
* @memberof FinancialAccountClass
|
|
105
|
+
*/
|
|
106
|
+
'isDefault': boolean;
|
|
101
107
|
/**
|
|
102
108
|
* Time at which the object was created.
|
|
103
109
|
* @type {string}
|