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 CHANGED
@@ -259,6 +259,10 @@ export interface AccountFinanceDTO {
259
259
  * Account Xero ID
260
260
  */
261
261
  'xeroId'?: string;
262
+ /**
263
+ * Account Number
264
+ */
265
+ 'accountNumber'?: string;
262
266
  /**
263
267
  * Credit Limit
264
268
  */
package/dist/api.d.ts CHANGED
@@ -249,6 +249,10 @@ export interface AccountFinanceDTO {
249
249
  * Account Xero ID
250
250
  */
251
251
  'xeroId'?: string;
252
+ /**
253
+ * Account Number
254
+ */
255
+ 'accountNumber'?: string;
252
256
  /**
253
257
  * Credit Limit
254
258
  */
@@ -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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.142-dev.0",
3
+ "version": "3.2.143-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {