@emilgroup/accounting-sdk 1.16.1-beta.1 → 1.16.1-beta.2
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@1.16.1-beta.
|
|
20
|
+
npm install @emilgroup/accounting-sdk@1.16.1-beta.2 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/accounting-sdk@1.16.1-beta.
|
|
24
|
+
yarn add @emilgroup/accounting-sdk@1.16.1-beta.2
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `FinancialAccountsApi`.
|
|
@@ -34,11 +34,11 @@ export interface CreateFinancialAccountRequestDto {
|
|
|
34
34
|
*/
|
|
35
35
|
'type': CreateFinancialAccountRequestDtoTypeEnum;
|
|
36
36
|
/**
|
|
37
|
-
* An optional code representing the
|
|
37
|
+
* An optional code representing the partner associated with this account. Useful for associating the account with specific partner in Emil.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof CreateFinancialAccountRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'
|
|
41
|
+
'partnerNumber'?: string;
|
|
42
42
|
/**
|
|
43
43
|
* An optional identifier for the parent account. If provided, this allows the creation of sub-accounts under a parent financial account, establishing a hierarchy.
|
|
44
44
|
* @type {number}
|
|
@@ -46,11 +46,11 @@ export interface FinancialAccountClass {
|
|
|
46
46
|
*/
|
|
47
47
|
'parentId': number;
|
|
48
48
|
/**
|
|
49
|
-
* The
|
|
49
|
+
* The partner number of the account.
|
|
50
50
|
* @type {string}
|
|
51
51
|
* @memberof FinancialAccountClass
|
|
52
52
|
*/
|
|
53
|
-
'
|
|
53
|
+
'partnerNumber': string;
|
|
54
54
|
/**
|
|
55
55
|
* The type of account, e.g. \"Asset\", \"Liability\", \"Equity\", \"Revenue\", \"Expense\".
|
|
56
56
|
* @type {string}
|
|
@@ -39,11 +39,11 @@ export interface CreateFinancialAccountRequestDto {
|
|
|
39
39
|
*/
|
|
40
40
|
'type': CreateFinancialAccountRequestDtoTypeEnum;
|
|
41
41
|
/**
|
|
42
|
-
* An optional code representing the
|
|
42
|
+
* An optional code representing the partner associated with this account. Useful for associating the account with specific partner in Emil.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof CreateFinancialAccountRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'partnerNumber'?: string;
|
|
47
47
|
/**
|
|
48
48
|
* An optional identifier for the parent account. If provided, this allows the creation of sub-accounts under a parent financial account, establishing a hierarchy.
|
|
49
49
|
* @type {number}
|
|
@@ -51,11 +51,11 @@ export interface FinancialAccountClass {
|
|
|
51
51
|
*/
|
|
52
52
|
'parentId': number;
|
|
53
53
|
/**
|
|
54
|
-
* The
|
|
54
|
+
* The partner number of the account.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof FinancialAccountClass
|
|
57
57
|
*/
|
|
58
|
-
'
|
|
58
|
+
'partnerNumber': string;
|
|
59
59
|
/**
|
|
60
60
|
* The type of account, e.g. \"Asset\", \"Liability\", \"Equity\", \"Revenue\", \"Expense\".
|
|
61
61
|
* @type {string}
|