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