yellowgrid-api-ts 3.2.166-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 +8 -0
- package/dist/api.d.ts +8 -0
- package/docs/CustomerListAccountDTO.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1974,6 +1974,14 @@ export interface CustomerListAccountDTO {
|
|
|
1974
1974
|
* Account Status
|
|
1975
1975
|
*/
|
|
1976
1976
|
'status'?: boolean;
|
|
1977
|
+
/**
|
|
1978
|
+
* Portal Access
|
|
1979
|
+
*/
|
|
1980
|
+
'portalAccess'?: boolean;
|
|
1981
|
+
/**
|
|
1982
|
+
* Prize Promo
|
|
1983
|
+
*/
|
|
1984
|
+
'pirzePromo'?: boolean;
|
|
1977
1985
|
}
|
|
1978
1986
|
/**
|
|
1979
1987
|
* Order Request
|
package/dist/api.d.ts
CHANGED
|
@@ -1951,6 +1951,14 @@ export interface CustomerListAccountDTO {
|
|
|
1951
1951
|
* Account Status
|
|
1952
1952
|
*/
|
|
1953
1953
|
'status'?: boolean;
|
|
1954
|
+
/**
|
|
1955
|
+
* Portal Access
|
|
1956
|
+
*/
|
|
1957
|
+
'portalAccess'?: boolean;
|
|
1958
|
+
/**
|
|
1959
|
+
* Prize Promo
|
|
1960
|
+
*/
|
|
1961
|
+
'pirzePromo'?: boolean;
|
|
1954
1962
|
}
|
|
1955
1963
|
/**
|
|
1956
1964
|
* Order Request
|
|
@@ -17,6 +17,8 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**cname** | **string** | Wizard CNAME | [optional] [default to undefined]
|
|
18
18
|
**partnerId** | **number** | 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
|
+
**pirzePromo** | **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
|
+
pirzePromo,
|
|
38
42
|
};
|
|
39
43
|
```
|
|
40
44
|
|