yellowgrid-api-ts 3.2.167-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 +4 -4
- package/dist/api.d.ts +4 -4
- package/docs/CustomerListAccountDTO.md +5 -5
- 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,7 +1969,7 @@ 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
|
*/
|
|
@@ -1981,7 +1981,7 @@ export interface CustomerListAccountDTO {
|
|
|
1981
1981
|
/**
|
|
1982
1982
|
* Prize Promo
|
|
1983
1983
|
*/
|
|
1984
|
-
'
|
|
1984
|
+
'prizePromo'?: boolean;
|
|
1985
1985
|
}
|
|
1986
1986
|
/**
|
|
1987
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,7 +1946,7 @@ 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
|
*/
|
|
@@ -1958,7 +1958,7 @@ export interface CustomerListAccountDTO {
|
|
|
1958
1958
|
/**
|
|
1959
1959
|
* Prize Promo
|
|
1960
1960
|
*/
|
|
1961
|
-
'
|
|
1961
|
+
'prizePromo'?: boolean;
|
|
1962
1962
|
}
|
|
1963
1963
|
/**
|
|
1964
1964
|
* Order Request
|
|
@@ -12,13 +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
20
|
**portalAccess** | **boolean** | Portal Access | [optional] [default to undefined]
|
|
21
|
-
**
|
|
21
|
+
**prizePromo** | **boolean** | Prize Promo | [optional] [default to undefined]
|
|
22
22
|
|
|
23
23
|
## Example
|
|
24
24
|
|
|
@@ -38,7 +38,7 @@ const instance: CustomerListAccountDTO = {
|
|
|
38
38
|
partnerId,
|
|
39
39
|
status,
|
|
40
40
|
portalAccess,
|
|
41
|
-
|
|
41
|
+
prizePromo,
|
|
42
42
|
};
|
|
43
43
|
```
|
|
44
44
|
|