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