yellowgrid-api-ts 3.2.142-dev.0 → 3.2.143-dev.0
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/api.ts +4 -0
- package/dist/api.d.ts +4 -0
- package/docs/AccountFinanceDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**id** | **number** | Account ID | [optional] [default to undefined]
|
|
10
10
|
**xeroId** | **string** | Account Xero ID | [optional] [default to undefined]
|
|
11
|
+
**accountNumber** | **string** | Account Number | [optional] [default to undefined]
|
|
11
12
|
**creditLimit** | **number** | Credit Limit | [optional] [default to undefined]
|
|
12
13
|
**balance** | **number** | Balance Used | [optional] [default to undefined]
|
|
13
14
|
**overdue** | **number** | Overdue Amount | [optional] [default to undefined]
|
|
@@ -23,6 +24,7 @@ import { AccountFinanceDTO } from 'yellowgrid-api-ts';
|
|
|
23
24
|
const instance: AccountFinanceDTO = {
|
|
24
25
|
id,
|
|
25
26
|
xeroId,
|
|
27
|
+
accountNumber,
|
|
26
28
|
creditLimit,
|
|
27
29
|
balance,
|
|
28
30
|
overdue,
|