@cognigy/rest-api-client 2025.20.0 → 2025.21.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/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# 2025.
|
|
2
|
-
Released: October
|
|
1
|
+
# 2025.21.0
|
|
2
|
+
Released: October 14th, 2025
|
|
3
3
|
|
|
4
|
-
Released state of package up to date with Cognigy.AI v2025.
|
|
4
|
+
Released state of package up to date with Cognigy.AI v2025.21.0
|
|
5
5
|
|
|
6
6
|
# 2025.19.0
|
|
7
7
|
Released: September 16th, 2025
|
|
@@ -66,6 +66,7 @@ exports.organisationDataSchema = {
|
|
|
66
66
|
quotaMaxProjects: { type: "integer", minimum: 0 },
|
|
67
67
|
quotaMaxUsers: { type: "integer", minimum: 0 },
|
|
68
68
|
quotaMaxKnowledgeChunks: { type: "integer", minimum: 0 },
|
|
69
|
+
aiOpsCenterEnabled: { type: "boolean" },
|
|
69
70
|
sessionStateTTLInMinutes: { type: "integer", minimum: 0 },
|
|
70
71
|
billingTimezone: { type: "string", format: "timezone" },
|
|
71
72
|
dataPrivacySettings: exports.organisationDataPrivacySettingsSchema,
|
|
@@ -16,6 +16,13 @@ exports.licenseCapabilitiesMapping = exports.licenseCapabilitiesFromKey = export
|
|
|
16
16
|
* - willExpireSoon
|
|
17
17
|
* - expiredRenewRequired
|
|
18
18
|
* - expired
|
|
19
|
+
* systemCapabilities:
|
|
20
|
+
* type: object
|
|
21
|
+
* properties:
|
|
22
|
+
* aiOpsCenterEnabled:
|
|
23
|
+
* type: boolean
|
|
24
|
+
* quotaMaxKnowledgeChunks:
|
|
25
|
+
* type: number
|
|
19
26
|
*/
|
|
20
27
|
exports.licenseStates = [
|
|
21
28
|
"invalid",
|
|
@@ -25,11 +32,12 @@ exports.licenseStates = [
|
|
|
25
32
|
"expiredRenewRequired",
|
|
26
33
|
"expired" /* The license is expired. The system can no longer be used (ui, api) */
|
|
27
34
|
];
|
|
28
|
-
exports.licenseCapabilitiesFromKey = ["ui", "handover", "liveAgent", "knowledge"];
|
|
35
|
+
exports.licenseCapabilitiesFromKey = ["ui", "handover", "liveAgent", "knowledge", "aiOpsCenter"];
|
|
29
36
|
exports.licenseCapabilitiesMapping = {
|
|
30
37
|
ui: "uiLicensed",
|
|
31
38
|
handover: "handoverLicensed",
|
|
32
39
|
liveAgent: "liveAgentLicensed",
|
|
33
40
|
knowledge: "knowledgeLicensed",
|
|
41
|
+
aiOpsCenter: "aiOpsCenterLicensed"
|
|
34
42
|
};
|
|
35
43
|
//# sourceMappingURL=license.js.map
|
|
@@ -63,6 +63,7 @@ export const organisationDataSchema = {
|
|
|
63
63
|
quotaMaxProjects: { type: "integer", minimum: 0 },
|
|
64
64
|
quotaMaxUsers: { type: "integer", minimum: 0 },
|
|
65
65
|
quotaMaxKnowledgeChunks: { type: "integer", minimum: 0 },
|
|
66
|
+
aiOpsCenterEnabled: { type: "boolean" },
|
|
66
67
|
sessionStateTTLInMinutes: { type: "integer", minimum: 0 },
|
|
67
68
|
billingTimezone: { type: "string", format: "timezone" },
|
|
68
69
|
dataPrivacySettings: organisationDataPrivacySettingsSchema,
|
|
@@ -13,6 +13,13 @@
|
|
|
13
13
|
* - willExpireSoon
|
|
14
14
|
* - expiredRenewRequired
|
|
15
15
|
* - expired
|
|
16
|
+
* systemCapabilities:
|
|
17
|
+
* type: object
|
|
18
|
+
* properties:
|
|
19
|
+
* aiOpsCenterEnabled:
|
|
20
|
+
* type: boolean
|
|
21
|
+
* quotaMaxKnowledgeChunks:
|
|
22
|
+
* type: number
|
|
16
23
|
*/
|
|
17
24
|
export const licenseStates = [
|
|
18
25
|
"invalid",
|
|
@@ -22,11 +29,12 @@ export const licenseStates = [
|
|
|
22
29
|
"expiredRenewRequired",
|
|
23
30
|
"expired" /* The license is expired. The system can no longer be used (ui, api) */
|
|
24
31
|
];
|
|
25
|
-
export const licenseCapabilitiesFromKey = ["ui", "handover", "liveAgent", "knowledge"];
|
|
32
|
+
export const licenseCapabilitiesFromKey = ["ui", "handover", "liveAgent", "knowledge", "aiOpsCenter"];
|
|
26
33
|
export const licenseCapabilitiesMapping = {
|
|
27
34
|
ui: "uiLicensed",
|
|
28
35
|
handover: "handoverLicensed",
|
|
29
36
|
liveAgent: "liveAgentLicensed",
|
|
30
37
|
knowledge: "knowledgeLicensed",
|
|
38
|
+
aiOpsCenter: "aiOpsCenterLicensed"
|
|
31
39
|
};
|
|
32
40
|
//# sourceMappingURL=license.js.map
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -21604,6 +21604,10 @@ declare const licenseStates: readonly [
|
|
|
21604
21604
|
export declare type TLicenseState = typeof licenseStates[number];
|
|
21605
21605
|
export interface IGetSystemLicenseStateRestReturnValue_2_0 {
|
|
21606
21606
|
state: TLicenseState;
|
|
21607
|
+
systemCapabilities?: {
|
|
21608
|
+
aiOpsCenterEnabled?: boolean;
|
|
21609
|
+
quotaMaxKnowledgeChunks?: number;
|
|
21610
|
+
};
|
|
21607
21611
|
}
|
|
21608
21612
|
export interface ISetSystemLicenseRestDataBody_2_0 {
|
|
21609
21613
|
email: string;
|
|
@@ -22330,6 +22334,8 @@ export interface ISetupVoiceGatewayRestData_2_0 extends ISetupVoiceGatewayRestDa
|
|
|
22330
22334
|
* $ref: '#/components/schemas/TTimezone'
|
|
22331
22335
|
* dataPrivacySettings:
|
|
22332
22336
|
* $ref: '#/components/schemas/IOrganisationDataPrivacySettings_2_0'
|
|
22337
|
+
* aiOpsCenterEnabled:
|
|
22338
|
+
* type: boolean
|
|
22333
22339
|
* businessUnitId:
|
|
22334
22340
|
* type: string
|
|
22335
22341
|
* description: The business unit ID
|
|
@@ -22372,6 +22378,7 @@ export interface IOrganisation_2_0 {
|
|
|
22372
22378
|
stepEventsTTLInMinutes: number;
|
|
22373
22379
|
billingTimezone: string;
|
|
22374
22380
|
dataPrivacySettings: IOrganisationDataPrivacySettings_2_0;
|
|
22381
|
+
aiOpsCenterEnabled: boolean;
|
|
22375
22382
|
}
|
|
22376
22383
|
/**
|
|
22377
22384
|
* @openapi
|
|
@@ -22485,6 +22492,8 @@ export interface IOrganisationDataPrivacySettings_2_0 {
|
|
|
22485
22492
|
* $ref: '#/components/schemas/TTimezone'
|
|
22486
22493
|
* dataPrivacySettings:
|
|
22487
22494
|
* $ref: '#/components/schemas/IOrganisationDataPrivacySettings_2_0'
|
|
22495
|
+
* aiOpsCenterEnabled:
|
|
22496
|
+
* type: boolean
|
|
22488
22497
|
*/
|
|
22489
22498
|
export interface IOrganisationIndexItem_2_0 {
|
|
22490
22499
|
/** The mongo object id of this organisation */
|
|
@@ -22508,6 +22517,7 @@ export interface IOrganisationIndexItem_2_0 {
|
|
|
22508
22517
|
conversationTTLInMinutes: number;
|
|
22509
22518
|
liveAgentAccount: number;
|
|
22510
22519
|
dataPrivacySettings: IOrganisationDataPrivacySettings_2_0;
|
|
22520
|
+
aiOpsCenterEnabled: boolean;
|
|
22511
22521
|
}
|
|
22512
22522
|
export interface IIndexOrganisationsRestData_2_0 extends IRestPagination<IOrganisationIndexItem_2_0> {
|
|
22513
22523
|
}
|