yellowgrid-api-ts 3.2.165-dev.0 → 3.2.167-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 +32 -0
- package/dist/api.d.ts +32 -0
- package/docs/CustomerListAccountDTO.md +16 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1950,6 +1950,38 @@ 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;
|
|
1977
|
+
/**
|
|
1978
|
+
* Portal Access
|
|
1979
|
+
*/
|
|
1980
|
+
'portalAccess'?: boolean;
|
|
1981
|
+
/**
|
|
1982
|
+
* Prize Promo
|
|
1983
|
+
*/
|
|
1984
|
+
'pirzePromo'?: boolean;
|
|
1953
1985
|
}
|
|
1954
1986
|
/**
|
|
1955
1987
|
* Order Request
|
package/dist/api.d.ts
CHANGED
|
@@ -1927,6 +1927,38 @@ 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;
|
|
1954
|
+
/**
|
|
1955
|
+
* Portal Access
|
|
1956
|
+
*/
|
|
1957
|
+
'portalAccess'?: boolean;
|
|
1958
|
+
/**
|
|
1959
|
+
* Prize Promo
|
|
1960
|
+
*/
|
|
1961
|
+
'pirzePromo'?: boolean;
|
|
1930
1962
|
}
|
|
1931
1963
|
/**
|
|
1932
1964
|
* 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** | **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]
|
|
20
|
+
**portalAccess** | **boolean** | Portal Access | [optional] [default to undefined]
|
|
21
|
+
**pirzePromo** | **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
|
+
pirzePromo,
|
|
26
42
|
};
|
|
27
43
|
```
|
|
28
44
|
|