yellowgrid-api-ts 3.2.106-dev.0 → 3.2.107-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 +6 -0
- package/dist/api.d.ts +6 -0
- package/docs/TcxSbcDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -10661,6 +10661,12 @@ export interface TcxSbcDTO {
|
|
|
10661
10661
|
* @memberof TcxSbcDTO
|
|
10662
10662
|
*/
|
|
10663
10663
|
'tcxKey'?: string;
|
|
10664
|
+
/**
|
|
10665
|
+
* 3CX SBC Configured
|
|
10666
|
+
* @type {boolean}
|
|
10667
|
+
* @memberof TcxSbcDTO
|
|
10668
|
+
*/
|
|
10669
|
+
'configured'?: boolean;
|
|
10664
10670
|
}
|
|
10665
10671
|
/**
|
|
10666
10672
|
* 3CX Wizard SBC
|
package/dist/api.d.ts
CHANGED
|
@@ -10573,6 +10573,12 @@ export interface TcxSbcDTO {
|
|
|
10573
10573
|
* @memberof TcxSbcDTO
|
|
10574
10574
|
*/
|
|
10575
10575
|
'tcxKey'?: string;
|
|
10576
|
+
/**
|
|
10577
|
+
* 3CX SBC Configured
|
|
10578
|
+
* @type {boolean}
|
|
10579
|
+
* @memberof TcxSbcDTO
|
|
10580
|
+
*/
|
|
10581
|
+
'configured'?: boolean;
|
|
10576
10582
|
}
|
|
10577
10583
|
/**
|
|
10578
10584
|
* 3CX Wizard SBC
|
package/docs/TcxSbcDTO.md
CHANGED
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
**dns** | **string** | DNS | [optional] [default to undefined]
|
|
14
14
|
**tcxUrl** | **string** | 3CX URL | [optional] [default to undefined]
|
|
15
15
|
**tcxKey** | **string** | 3CX SBC Key | [optional] [default to undefined]
|
|
16
|
+
**configured** | **boolean** | 3CX SBC Configured | [optional] [default to undefined]
|
|
16
17
|
|
|
17
18
|
## Example
|
|
18
19
|
|
|
@@ -27,6 +28,7 @@ const instance: TcxSbcDTO = {
|
|
|
27
28
|
dns,
|
|
28
29
|
tcxUrl,
|
|
29
30
|
tcxKey,
|
|
31
|
+
configured,
|
|
30
32
|
};
|
|
31
33
|
```
|
|
32
34
|
|