yellowgrid-api-ts 3.2.212 → 3.2.214
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/TcxInstallationModel.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -7516,6 +7516,14 @@ export interface TcxInstallationModel {
|
|
|
7516
7516
|
* Auto Failover
|
|
7517
7517
|
*/
|
|
7518
7518
|
'autoFailover'?: boolean;
|
|
7519
|
+
/**
|
|
7520
|
+
* Extensions in Use
|
|
7521
|
+
*/
|
|
7522
|
+
'extensions'?: number | null;
|
|
7523
|
+
/**
|
|
7524
|
+
* Max Allowed Extensions
|
|
7525
|
+
*/
|
|
7526
|
+
'maxExtensions'?: number | null;
|
|
7519
7527
|
}
|
|
7520
7528
|
/**
|
|
7521
7529
|
* 3CX Installations
|
package/dist/api.d.ts
CHANGED
|
@@ -7416,6 +7416,14 @@ export interface TcxInstallationModel {
|
|
|
7416
7416
|
* Auto Failover
|
|
7417
7417
|
*/
|
|
7418
7418
|
'autoFailover'?: boolean;
|
|
7419
|
+
/**
|
|
7420
|
+
* Extensions in Use
|
|
7421
|
+
*/
|
|
7422
|
+
'extensions'?: number | null;
|
|
7423
|
+
/**
|
|
7424
|
+
* Max Allowed Extensions
|
|
7425
|
+
*/
|
|
7426
|
+
'maxExtensions'?: number | null;
|
|
7419
7427
|
}
|
|
7420
7428
|
/**
|
|
7421
7429
|
* 3CX Installations
|
|
@@ -35,6 +35,8 @@ Name | Type | Description | Notes
|
|
|
35
35
|
**disk** | **number** | Recordings Disk Size | [optional] [default to undefined]
|
|
36
36
|
**flavour** | **string** | Instance Spec | [optional] [default to undefined]
|
|
37
37
|
**autoFailover** | **boolean** | Auto Failover | [optional] [default to undefined]
|
|
38
|
+
**extensions** | **number** | Extensions in Use | [optional] [default to undefined]
|
|
39
|
+
**maxExtensions** | **number** | Max Allowed Extensions | [optional] [default to undefined]
|
|
38
40
|
|
|
39
41
|
## Example
|
|
40
42
|
|
|
@@ -71,6 +73,8 @@ const instance: TcxInstallationModel = {
|
|
|
71
73
|
disk,
|
|
72
74
|
flavour,
|
|
73
75
|
autoFailover,
|
|
76
|
+
extensions,
|
|
77
|
+
maxExtensions,
|
|
74
78
|
};
|
|
75
79
|
```
|
|
76
80
|
|