yellowgrid-api-ts 3.2.165-dev.0 → 3.2.166-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 +24 -0
- package/dist/api.d.ts +24 -0
- package/docs/CustomerListAccountDTO.md +12 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1950,6 +1950,30 @@ export interface CustomerListAccountDTO {
|
|
|
1950
1950
|
* Associated Email Domains
|
|
1951
1951
|
*/
|
|
1952
1952
|
'domains'?: Array<string>;
|
|
1953
|
+
/**
|
|
1954
|
+
* Telephone
|
|
1955
|
+
*/
|
|
1956
|
+
'telephone'?: string;
|
|
1957
|
+
/**
|
|
1958
|
+
* VAT Number
|
|
1959
|
+
*/
|
|
1960
|
+
'vatNumber'?: number;
|
|
1961
|
+
/**
|
|
1962
|
+
* Company Number
|
|
1963
|
+
*/
|
|
1964
|
+
'companyNumber'?: number;
|
|
1965
|
+
/**
|
|
1966
|
+
* Wizard CNAME
|
|
1967
|
+
*/
|
|
1968
|
+
'cname'?: string;
|
|
1969
|
+
/**
|
|
1970
|
+
* 3CX Reseller ID
|
|
1971
|
+
*/
|
|
1972
|
+
'partnerId'?: number;
|
|
1973
|
+
/**
|
|
1974
|
+
* Account Status
|
|
1975
|
+
*/
|
|
1976
|
+
'status'?: boolean;
|
|
1953
1977
|
}
|
|
1954
1978
|
/**
|
|
1955
1979
|
* Order Request
|
package/dist/api.d.ts
CHANGED
|
@@ -1927,6 +1927,30 @@ export interface CustomerListAccountDTO {
|
|
|
1927
1927
|
* Associated Email Domains
|
|
1928
1928
|
*/
|
|
1929
1929
|
'domains'?: Array<string>;
|
|
1930
|
+
/**
|
|
1931
|
+
* Telephone
|
|
1932
|
+
*/
|
|
1933
|
+
'telephone'?: string;
|
|
1934
|
+
/**
|
|
1935
|
+
* VAT Number
|
|
1936
|
+
*/
|
|
1937
|
+
'vatNumber'?: number;
|
|
1938
|
+
/**
|
|
1939
|
+
* Company Number
|
|
1940
|
+
*/
|
|
1941
|
+
'companyNumber'?: number;
|
|
1942
|
+
/**
|
|
1943
|
+
* Wizard CNAME
|
|
1944
|
+
*/
|
|
1945
|
+
'cname'?: string;
|
|
1946
|
+
/**
|
|
1947
|
+
* 3CX Reseller ID
|
|
1948
|
+
*/
|
|
1949
|
+
'partnerId'?: number;
|
|
1950
|
+
/**
|
|
1951
|
+
* Account Status
|
|
1952
|
+
*/
|
|
1953
|
+
'status'?: boolean;
|
|
1930
1954
|
}
|
|
1931
1955
|
/**
|
|
1932
1956
|
* Order Request
|
|
@@ -11,6 +11,12 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**accountNumber** | **string** | Account Number | [optional] [default to undefined]
|
|
12
12
|
**company** | **string** | Company Name | [optional] [default to undefined]
|
|
13
13
|
**domains** | **Array<string>** | Associated Email Domains | [optional] [default to undefined]
|
|
14
|
+
**telephone** | **string** | Telephone | [optional] [default to undefined]
|
|
15
|
+
**vatNumber** | **number** | VAT Number | [optional] [default to undefined]
|
|
16
|
+
**companyNumber** | **number** | Company Number | [optional] [default to undefined]
|
|
17
|
+
**cname** | **string** | Wizard CNAME | [optional] [default to undefined]
|
|
18
|
+
**partnerId** | **number** | 3CX Reseller ID | [optional] [default to undefined]
|
|
19
|
+
**status** | **boolean** | Account Status | [optional] [default to undefined]
|
|
14
20
|
|
|
15
21
|
## Example
|
|
16
22
|
|
|
@@ -23,6 +29,12 @@ const instance: CustomerListAccountDTO = {
|
|
|
23
29
|
accountNumber,
|
|
24
30
|
company,
|
|
25
31
|
domains,
|
|
32
|
+
telephone,
|
|
33
|
+
vatNumber,
|
|
34
|
+
companyNumber,
|
|
35
|
+
cname,
|
|
36
|
+
partnerId,
|
|
37
|
+
status,
|
|
26
38
|
};
|
|
27
39
|
```
|
|
28
40
|
|