yellowgrid-api-ts 3.2.162-dev.0 → 3.2.163-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/.openapi-generator/FILES +0 -1
- package/api.ts +6 -2
- package/dist/api.d.ts +6 -2
- package/docs/CustomerListAccountDTO.md +4 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
package/api.ts
CHANGED
|
@@ -1934,11 +1934,15 @@ export interface CustomerListAccountDTO {
|
|
|
1934
1934
|
*/
|
|
1935
1935
|
'xeroId'?: string;
|
|
1936
1936
|
/**
|
|
1937
|
-
*
|
|
1937
|
+
* Account Number
|
|
1938
|
+
*/
|
|
1939
|
+
'accountNumber'?: string;
|
|
1940
|
+
/**
|
|
1941
|
+
* Company Name
|
|
1938
1942
|
*/
|
|
1939
1943
|
'company'?: string;
|
|
1940
1944
|
/**
|
|
1941
|
-
*
|
|
1945
|
+
* Associated Email Domains
|
|
1942
1946
|
*/
|
|
1943
1947
|
'domains'?: Array<string>;
|
|
1944
1948
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -1911,11 +1911,15 @@ export interface CustomerListAccountDTO {
|
|
|
1911
1911
|
*/
|
|
1912
1912
|
'xeroId'?: string;
|
|
1913
1913
|
/**
|
|
1914
|
-
*
|
|
1914
|
+
* Account Number
|
|
1915
|
+
*/
|
|
1916
|
+
'accountNumber'?: string;
|
|
1917
|
+
/**
|
|
1918
|
+
* Company Name
|
|
1915
1919
|
*/
|
|
1916
1920
|
'company'?: string;
|
|
1917
1921
|
/**
|
|
1918
|
-
*
|
|
1922
|
+
* Associated Email Domains
|
|
1919
1923
|
*/
|
|
1920
1924
|
'domains'?: Array<string>;
|
|
1921
1925
|
}
|
|
@@ -8,8 +8,9 @@ Name | Type | Description | Notes
|
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**id** | **number** | ID | [optional] [default to undefined]
|
|
10
10
|
**xeroId** | **string** | Xero ID | [optional] [default to undefined]
|
|
11
|
-
**
|
|
12
|
-
**
|
|
11
|
+
**accountNumber** | **string** | Account Number | [optional] [default to undefined]
|
|
12
|
+
**company** | **string** | Company Name | [optional] [default to undefined]
|
|
13
|
+
**domains** | **Array<string>** | Associated Email Domains | [optional] [default to undefined]
|
|
13
14
|
|
|
14
15
|
## Example
|
|
15
16
|
|
|
@@ -19,6 +20,7 @@ import { CustomerListAccountDTO } from 'yellowgrid-api-ts';
|
|
|
19
20
|
const instance: CustomerListAccountDTO = {
|
|
20
21
|
id,
|
|
21
22
|
xeroId,
|
|
23
|
+
accountNumber,
|
|
22
24
|
company,
|
|
23
25
|
domains,
|
|
24
26
|
};
|