yellowgrid-api-ts 3.2.162-dev.0 → 3.2.164-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
@@ -1510,6 +1510,10 @@ export interface CreditAccountEntity {
1510
1510
  * Service Payment Method
1511
1511
  */
1512
1512
  'servicePaymentMethod'?: string;
1513
+ /**
1514
+ * Active
1515
+ */
1516
+ 'status'?: boolean;
1513
1517
  /**
1514
1518
  * 3CX Reseller ID
1515
1519
  */
@@ -1934,11 +1938,15 @@ export interface CustomerListAccountDTO {
1934
1938
  */
1935
1939
  'xeroId'?: string;
1936
1940
  /**
1937
- * Xero ID
1941
+ * Account Number
1942
+ */
1943
+ 'accountNumber'?: string;
1944
+ /**
1945
+ * Company Name
1938
1946
  */
1939
1947
  'company'?: string;
1940
1948
  /**
1941
- * Xero ID
1949
+ * Associated Email Domains
1942
1950
  */
1943
1951
  'domains'?: Array<string>;
1944
1952
  }
@@ -4471,6 +4479,10 @@ export interface PortalAccountModel {
4471
4479
  * Service Payment Method
4472
4480
  */
4473
4481
  'servicePaymentMethod'?: string;
4482
+ /**
4483
+ * Active
4484
+ */
4485
+ 'status'?: boolean;
4474
4486
  /**
4475
4487
  * 3CX Reseller ID
4476
4488
  */
package/dist/api.d.ts CHANGED
@@ -1487,6 +1487,10 @@ export interface CreditAccountEntity {
1487
1487
  * Service Payment Method
1488
1488
  */
1489
1489
  'servicePaymentMethod'?: string;
1490
+ /**
1491
+ * Active
1492
+ */
1493
+ 'status'?: boolean;
1490
1494
  /**
1491
1495
  * 3CX Reseller ID
1492
1496
  */
@@ -1911,11 +1915,15 @@ export interface CustomerListAccountDTO {
1911
1915
  */
1912
1916
  'xeroId'?: string;
1913
1917
  /**
1914
- * Xero ID
1918
+ * Account Number
1919
+ */
1920
+ 'accountNumber'?: string;
1921
+ /**
1922
+ * Company Name
1915
1923
  */
1916
1924
  'company'?: string;
1917
1925
  /**
1918
- * Xero ID
1926
+ * Associated Email Domains
1919
1927
  */
1920
1928
  'domains'?: Array<string>;
1921
1929
  }
@@ -4417,6 +4425,10 @@ export interface PortalAccountModel {
4417
4425
  * Service Payment Method
4418
4426
  */
4419
4427
  'servicePaymentMethod'?: string;
4428
+ /**
4429
+ * Active
4430
+ */
4431
+ 'status'?: boolean;
4420
4432
  /**
4421
4433
  * 3CX Reseller ID
4422
4434
  */
@@ -24,6 +24,7 @@ Name | Type | Description | Notes
24
24
  **creditLimit** | **number** | Credit Limit | [optional] [default to undefined]
25
25
  **paymentMethod** | **string** | Payment Method | [optional] [default to undefined]
26
26
  **servicePaymentMethod** | **string** | Service Payment Method | [optional] [default to undefined]
27
+ **status** | **boolean** | Active | [optional] [default to undefined]
27
28
  **resellerId** | **string** | 3CX Reseller ID | [optional] [default to undefined]
28
29
  **creationDate** | **string** | Creation Date | [optional] [default to undefined]
29
30
  **prizePromo** | **boolean** | Prize Promo Enabled | [optional] [default to undefined]
@@ -54,6 +55,7 @@ const instance: CreditAccountEntity = {
54
55
  creditLimit,
55
56
  paymentMethod,
56
57
  servicePaymentMethod,
58
+ status,
57
59
  resellerId,
58
60
  creationDate,
59
61
  prizePromo,
@@ -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
  };
@@ -24,6 +24,7 @@ Name | Type | Description | Notes
24
24
  **creditLimit** | **number** | Credit Limit | [optional] [default to undefined]
25
25
  **paymentMethod** | **string** | Payment Method | [optional] [default to undefined]
26
26
  **servicePaymentMethod** | **string** | Service Payment Method | [optional] [default to undefined]
27
+ **status** | **boolean** | Active | [optional] [default to undefined]
27
28
  **resellerId** | **string** | 3CX Reseller ID | [optional] [default to undefined]
28
29
  **creationDate** | **string** | Creation Date | [optional] [default to undefined]
29
30
  **prizePromo** | **boolean** | Prize Promo Enabled | [optional] [default to undefined]
@@ -56,6 +57,7 @@ const instance: PortalAccountModel = {
56
57
  creditLimit,
57
58
  paymentMethod,
58
59
  servicePaymentMethod,
60
+ status,
59
61
  resellerId,
60
62
  creationDate,
61
63
  prizePromo,
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.164-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {