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.
@@ -1,6 +1,5 @@
1
1
  .gitignore
2
2
  .npmignore
3
- .openapi-generator-ignore
4
3
  README.md
5
4
  api.ts
6
5
  base.ts
package/api.ts CHANGED
@@ -1934,11 +1934,15 @@ export interface CustomerListAccountDTO {
1934
1934
  */
1935
1935
  'xeroId'?: string;
1936
1936
  /**
1937
- * Xero ID
1937
+ * Account Number
1938
+ */
1939
+ 'accountNumber'?: string;
1940
+ /**
1941
+ * Company Name
1938
1942
  */
1939
1943
  'company'?: string;
1940
1944
  /**
1941
- * Xero ID
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
- * Xero ID
1914
+ * Account Number
1915
+ */
1916
+ 'accountNumber'?: string;
1917
+ /**
1918
+ * Company Name
1915
1919
  */
1916
1920
  'company'?: string;
1917
1921
  /**
1918
- * Xero ID
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
- **company** | **string** | Xero ID | [optional] [default to undefined]
12
- **domains** | **Array&lt;string&gt;** | Xero ID | [optional] [default to undefined]
11
+ **accountNumber** | **string** | Account Number | [optional] [default to undefined]
12
+ **company** | **string** | Company Name | [optional] [default to undefined]
13
+ **domains** | **Array&lt;string&gt;** | 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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.162-dev.0",
3
+ "version": "3.2.163-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {