@trii/types 2.10.652 → 2.10.654

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.
@@ -12,6 +12,7 @@ export interface IExtension {
12
12
  keepAlive: boolean;
13
13
  keepAliveFrequency: number;
14
14
  disabled: boolean;
15
+ enableQualityEvaluation: boolean;
15
16
  name: string;
16
17
  email: string;
17
18
  concurrentRegistrations: number;
@@ -30,6 +30,12 @@ interface IChannelInfo {
30
30
  * ID of the channel in the external system.
31
31
  */
32
32
  externalChannelId?: string | null;
33
+ /**
34
+ * Indicates the status of the channel.
35
+ * actually each channel type has its own status values, so this property is a string to accommodate that.
36
+ * TODO: which can be one of the following values: "ACTIVE", "INACTIVE", "DELETED", "ERROR", "PROVISIONING", "DEPROVISIONING", "SUSPENDED", or "CONFIGURATION_PENDING".
37
+ */
38
+ status?: string;
33
39
  }
34
40
  interface IChannel {
35
41
  id?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.652",
3
+ "version": "2.10.654",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",