yellowgrid-api-ts 3.2.34 → 3.2.35
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 +6 -0
- package/dist/api.d.ts +6 -0
- package/docs/ProductSummaryDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4906,6 +4906,12 @@ export interface ProductSummaryDTO {
|
|
|
4906
4906
|
* @memberof ProductSummaryDTO
|
|
4907
4907
|
*/
|
|
4908
4908
|
'licenceDetails'?: TcxLicenceDetailsModel | null;
|
|
4909
|
+
/**
|
|
4910
|
+
* 3CX Hosting
|
|
4911
|
+
* @type {boolean}
|
|
4912
|
+
* @memberof ProductSummaryDTO
|
|
4913
|
+
*/
|
|
4914
|
+
'hosting'?: boolean | null;
|
|
4909
4915
|
}
|
|
4910
4916
|
/**
|
|
4911
4917
|
* PromoCodesEntity
|
package/dist/api.d.ts
CHANGED
|
@@ -4871,6 +4871,12 @@ export interface ProductSummaryDTO {
|
|
|
4871
4871
|
* @memberof ProductSummaryDTO
|
|
4872
4872
|
*/
|
|
4873
4873
|
'licenceDetails'?: TcxLicenceDetailsModel | null;
|
|
4874
|
+
/**
|
|
4875
|
+
* 3CX Hosting
|
|
4876
|
+
* @type {boolean}
|
|
4877
|
+
* @memberof ProductSummaryDTO
|
|
4878
|
+
*/
|
|
4879
|
+
'hosting'?: boolean | null;
|
|
4874
4880
|
}
|
|
4875
4881
|
/**
|
|
4876
4882
|
* PromoCodesEntity
|
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**cartonSize** | **number** | Carton Size | [optional] [default to undefined]
|
|
15
15
|
**rrp** | **number** | RRP Price | [optional] [default to undefined]
|
|
16
16
|
**licenceDetails** | [**TcxLicenceDetailsModel**](TcxLicenceDetailsModel.md) | | [optional] [default to undefined]
|
|
17
|
+
**hosting** | **boolean** | 3CX Hosting | [optional] [default to undefined]
|
|
17
18
|
|
|
18
19
|
## Example
|
|
19
20
|
|
|
@@ -29,6 +30,7 @@ const instance: ProductSummaryDTO = {
|
|
|
29
30
|
cartonSize,
|
|
30
31
|
rrp,
|
|
31
32
|
licenceDetails,
|
|
33
|
+
hosting,
|
|
32
34
|
};
|
|
33
35
|
```
|
|
34
36
|
|