@cognigy/rest-api-client 0.13.1 → 0.14.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/.eslintConfig.json +117 -0
- package/.eslintrc.json +2 -2
- package/CHANGELOG.md +12 -1
- package/build/apigroups/ResourcesAPIGroup_2_0.js +25 -4
- package/build/shared/charts/descriptors/allFields.js +8 -0
- package/build/shared/charts/descriptors/apps/getAppSessionPin.js +9 -9
- package/build/shared/charts/descriptors/apps/initAppSession.js +36 -53
- package/build/shared/charts/descriptors/apps/setAdaptiveCardAppState.js +5 -18
- package/build/shared/charts/descriptors/apps/setAppState.js +6 -6
- package/build/shared/charts/descriptors/apps/setHtmlAppState.js +85 -15
- package/build/shared/charts/descriptors/apps/utils/buildAppUrl.js +12 -0
- package/build/shared/charts/descriptors/connectionNodes/generativeAIProviders/azureOpenAIProviderConnection.js +14 -0
- package/build/shared/charts/descriptors/connectionNodes/generativeAIProviders/index.js +19 -0
- package/build/shared/charts/descriptors/connectionNodes/generativeAIProviders/openAIProviderConnection.js +11 -0
- package/build/shared/charts/descriptors/index.js +9 -6
- package/build/shared/charts/descriptors/logic/switch/switch.js +3 -2
- package/build/shared/charts/descriptors/message/question/optionalQuestion.js +30 -7
- package/build/shared/charts/descriptors/message/question/question.js +200 -28
- package/build/shared/charts/descriptors/message/question/utils/evaluateQuestionAnswer.js +6 -0
- package/build/shared/charts/descriptors/message/say.js +33 -2
- package/build/shared/charts/descriptors/service/completeText.js +316 -0
- package/build/shared/charts/descriptors/service/handoverV2.js +48 -2
- package/build/shared/charts/descriptors/service/index.js +3 -1
- package/build/shared/charts/descriptors/voice/mappers/setSessionConfig.mapper.js +62 -26
- package/build/shared/charts/descriptors/voice/mappers/transfer.mapper.js +93 -32
- package/build/shared/charts/descriptors/voice/nodes/bargeIn.js +53 -0
- package/build/shared/charts/descriptors/voice/nodes/dtmf.js +5 -3
- package/build/shared/charts/descriptors/voice/nodes/play.js +14 -5
- package/build/shared/charts/descriptors/voice/nodes/sessionSpeechParameters.js +90 -8
- package/build/shared/charts/descriptors/voice/nodes/transfer.js +6 -2
- package/build/shared/charts/descriptors/voice/utils/helper.js +11 -1
- package/build/shared/charts/descriptors/voicegateway/nodes/agentAssist.js +2 -2
- package/build/shared/charts/descriptors/voicegateway/nodes/handover.js +5 -1
- package/build/shared/charts/descriptors/voicegateway2/nodes/play.js +20 -5
- package/build/shared/charts/descriptors/voicegateway2/nodes/refer.js +3 -3
- package/build/shared/charts/descriptors/voicegateway2/nodes/setSessionConfig.js +150 -33
- package/build/shared/charts/descriptors/voicegateway2/nodes/transfer.js +95 -7
- package/build/shared/charts/descriptors/voicegateway2/utils/helper.js +18 -11
- package/build/shared/charts/descriptors/voicegateway2/utils/strip-nulls.js +4 -1
- package/build/shared/charts/helpers/generativeAI/getRephraseWithAIFields.js +100 -0
- package/build/shared/charts/helpers/generativeAI/rephraseSentenceWithAi.js +44 -0
- package/build/shared/constants.js +2 -1
- package/build/shared/errors/BadGatewayError.js +2 -1
- package/build/shared/errors/BadRequestError.js +2 -1
- package/build/shared/errors/ForbiddenError.js +2 -1
- package/build/shared/errors/GatewayTimeoutError.js +2 -1
- package/build/shared/errors/MethodNotAllowedError.js +2 -1
- package/build/shared/errors/NetworkError.js +2 -1
- package/build/shared/errors/PayloadTooLargeError.js +2 -1
- package/build/shared/errors/PaymentRequiredError.js +2 -1
- package/build/shared/errors/ServiceUnavailableError.js +2 -1
- package/build/shared/errors/UnauthorizedError.js +2 -1
- package/build/shared/errors/baseError.js +27 -4
- package/build/shared/errors/conflict.js +2 -1
- package/build/shared/errors/databaseConnectError.js +2 -2
- package/build/shared/errors/databaseQueryError.js +2 -2
- package/build/shared/errors/databaseRead.js +2 -2
- package/build/shared/errors/databaseWrite.js +2 -2
- package/build/shared/errors/exportError.js +2 -2
- package/build/shared/errors/fileRead.js +2 -2
- package/build/shared/errors/fileWrite.js +2 -2
- package/build/shared/errors/importError.js +1 -1
- package/build/shared/errors/inputOutputError.js +2 -2
- package/build/shared/errors/internalServerError.js +2 -1
- package/build/shared/errors/invalidArgument.js +2 -2
- package/build/shared/errors/missingArgument.js +2 -2
- package/build/shared/errors/notImplementedError.js +2 -1
- package/build/shared/errors/process.js +2 -2
- package/build/shared/errors/resourceNotFound.js +5 -1
- package/build/shared/errors/smtpConnectError.js +2 -2
- package/build/shared/errors/timeoutError.js +2 -2
- package/build/shared/interfaces/ai.js +16 -0
- package/build/shared/interfaces/analytics/IAnalyticsDataGoals.js +3 -0
- package/build/shared/interfaces/endpointInterface.js +1 -0
- package/build/shared/interfaces/filemanager/IRuntimeFile.js +30 -0
- package/build/shared/interfaces/filemanager/index.js +1 -0
- package/build/shared/interfaces/handover.js +40 -3
- package/build/shared/interfaces/messageAPI/endpoints.js +2 -0
- package/build/shared/interfaces/messageAPI/handover.js +6 -0
- package/build/shared/interfaces/resources/IAgentAssistConfig.js +56 -0
- package/build/shared/interfaces/resources/IConnectionSchema.js +2 -1
- package/build/shared/interfaces/resources/IExtension.js +2 -1
- package/build/shared/interfaces/resources/IFlow.js +2 -1
- package/build/shared/interfaces/resources/ILexicon.js +15 -2
- package/build/shared/interfaces/resources/ILocale.js +25 -3
- package/build/shared/interfaces/resources/INodeDescriptorSet.js +2 -1
- package/build/shared/interfaces/resources/TResourceType.js +3 -0
- package/build/shared/interfaces/resources/intent/IIntent.js +5 -2
- package/build/shared/interfaces/resources/intent/IIntentRelation.js +3 -1
- package/build/shared/interfaces/resources/settings/IAgentSettings.js +9 -4
- package/build/shared/interfaces/resources/settings/IGenerativeAISettings.js +136 -0
- package/build/shared/interfaces/resources/settings/ISharedSettings.js +1 -1
- package/build/shared/interfaces/resources/settings/index.js +7 -1
- package/build/shared/interfaces/resources/yesNoIntent/IYesNoItem.js +5 -5
- package/build/shared/interfaces/restAPI/administration/liveAgent/v2.0/ICognigyLiveAgentMiddleware_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/agentAssist/v2.0/IAgentAssistConfig_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/agentAssist/v2.0/ICreateAgentAssistConfigRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/agentAssist/v2.0/IDeleteAgentAssistConfigRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/agentAssist/v2.0/IIndexAgentAssistConfigsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/agentAssist/v2.0/IReadAgentAssistConfigRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/agentAssist/v2.0/IUpdateAgentAssistConfigRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/agentAssist/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/IGenerateSentencesRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/yesNoIntents/ITrainYesNoIntentsProjectRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/yesNoIntents/IYesNoIntents_2_0.js +4 -4
- package/build/shared/interfaces/security/IACL.js +1 -1
- package/build/shared/interfaces/security/IPermission.js +2 -0
- package/build/shared/interfaces/security/IRole.js +4 -0
- package/package.json +2 -2
- package/types/index.d.ts +925 -388
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.genesysCloudSettingsSchema = exports.liveAgentSettingsSchema = exports.salesforceSettingsSchema = exports.chatwootSettingsSchema = exports.handoverAgentReplySchema = exports.rceSettingsSchema = exports.foreignSessionDataSchema = exports.handoverSettingsSchema = exports.whisperAssistConfigurations = exports.handoverProviders = exports.internalHandoverProviders = exports.externalHandoverProviders = void 0;
|
|
3
|
+
exports.genesysCloudSettingsSchema = exports.liveAgentSettingsSchema = exports.salesforceSettingsSchema = exports.chatwootSettingsSchema = exports.handoverAgentReplySchema = exports.eightByEightSettingsSchema = exports.rceSettingsSchema = exports.foreignSessionDataSchema = exports.handoverRequestSettingsSchema = exports.handoverSettingsSchema = exports.whisperAssistConfigurations = exports.handoverProviders = exports.internalHandoverProviders = exports.externalHandoverProviders = void 0;
|
|
4
4
|
exports.externalHandoverProviders = [
|
|
5
5
|
"rce",
|
|
6
6
|
"chatwoot",
|
|
7
7
|
"salesforce",
|
|
8
8
|
"liveAgent",
|
|
9
|
-
"genesysCloud"
|
|
9
|
+
"genesysCloud",
|
|
10
|
+
"eightByEight",
|
|
10
11
|
];
|
|
11
12
|
exports.internalHandoverProviders = [
|
|
12
13
|
"cognigy",
|
|
@@ -28,7 +29,7 @@ exports.handoverSettingsSchema = {
|
|
|
28
29
|
properties: {
|
|
29
30
|
provider: {
|
|
30
31
|
type: "string",
|
|
31
|
-
enum: ["none", "chatwoot", "cognigy", "rce", "salesforce", "liveAgent", "genesysCloud"]
|
|
32
|
+
enum: ["none", "chatwoot", "cognigy", "rce", "salesforce", "liveAgent", "genesysCloud", "eightByEight"]
|
|
32
33
|
},
|
|
33
34
|
providerSettings: {
|
|
34
35
|
type: "object",
|
|
@@ -40,6 +41,7 @@ exports.handoverSettingsSchema = {
|
|
|
40
41
|
accountId: { type: "string" },
|
|
41
42
|
baseUrl: { type: "string" },
|
|
42
43
|
apiKey: { type: "string" },
|
|
44
|
+
apiTenant: { type: "string" },
|
|
43
45
|
usePlatformToken: { type: "boolean" },
|
|
44
46
|
forwardOnlyHandoverConversations: { type: "boolean" },
|
|
45
47
|
apiAccessToken: { type: "string" },
|
|
@@ -71,10 +73,19 @@ exports.handoverSettingsSchema = {
|
|
|
71
73
|
additionalProperties: false,
|
|
72
74
|
properties: {
|
|
73
75
|
agentAssistFlowId: { type: "string" },
|
|
76
|
+
agentAssistConfigId: { type: "string" },
|
|
74
77
|
}
|
|
75
78
|
}
|
|
76
79
|
}
|
|
77
80
|
};
|
|
81
|
+
exports.handoverRequestSettingsSchema = {
|
|
82
|
+
title: "handoverRequestSettingsSchema",
|
|
83
|
+
type: "object",
|
|
84
|
+
additionalProperties: false,
|
|
85
|
+
properties: {
|
|
86
|
+
additionalCategoryIds: { type: "array" }
|
|
87
|
+
}
|
|
88
|
+
};
|
|
78
89
|
exports.foreignSessionDataSchema = {
|
|
79
90
|
title: "foreignSettingsDataSchema",
|
|
80
91
|
type: "object",
|
|
@@ -129,6 +140,32 @@ exports.rceSettingsSchema = {
|
|
|
129
140
|
}
|
|
130
141
|
}
|
|
131
142
|
};
|
|
143
|
+
exports.eightByEightSettingsSchema = {
|
|
144
|
+
"title": "eightByEightSettingsSchema",
|
|
145
|
+
"type": "object",
|
|
146
|
+
"additionalProperties": false,
|
|
147
|
+
"required": [
|
|
148
|
+
"baseUrl",
|
|
149
|
+
"apiKey",
|
|
150
|
+
"apiTenant"
|
|
151
|
+
],
|
|
152
|
+
"properties": {
|
|
153
|
+
"baseUrl": {
|
|
154
|
+
"type": "string",
|
|
155
|
+
"format": "url"
|
|
156
|
+
},
|
|
157
|
+
"apiKey": {
|
|
158
|
+
"type": "string"
|
|
159
|
+
},
|
|
160
|
+
"apiTenant": {
|
|
161
|
+
"type": "string",
|
|
162
|
+
"maxLength": 255
|
|
163
|
+
},
|
|
164
|
+
"forwardOnlyHandoverConversations": {
|
|
165
|
+
"type": "boolean"
|
|
166
|
+
},
|
|
167
|
+
}
|
|
168
|
+
};
|
|
132
169
|
exports.handoverAgentReplySchema = {
|
|
133
170
|
"required": ["sessionId", "message"],
|
|
134
171
|
"type": "object",
|
|
@@ -229,6 +229,8 @@ exports.anyEndpointSettingsSchema = {
|
|
|
229
229
|
enableSTT: { type: "boolean" },
|
|
230
230
|
enableTTS: { type: "boolean" },
|
|
231
231
|
enableTypingIndicator: { type: "boolean" },
|
|
232
|
+
enableFileAttachment: { type: "boolean" },
|
|
233
|
+
fileAttachmentMaxSize: { type: "number" },
|
|
232
234
|
facebookPageToken: { type: "string" },
|
|
233
235
|
finishOnKey: {
|
|
234
236
|
type: "string",
|
|
@@ -65,6 +65,9 @@ exports.createHandoverRequestDataSchema = {
|
|
|
65
65
|
"foreignSessionData": {
|
|
66
66
|
"type": "object"
|
|
67
67
|
},
|
|
68
|
+
"settings": {
|
|
69
|
+
"type": "object"
|
|
70
|
+
},
|
|
68
71
|
"foreignSessionId": {
|
|
69
72
|
"type": "string"
|
|
70
73
|
},
|
|
@@ -160,6 +163,9 @@ exports.sendMessageToProviderSchema = {
|
|
|
160
163
|
"sessionId": {
|
|
161
164
|
"type": "string"
|
|
162
165
|
},
|
|
166
|
+
"projectId": {
|
|
167
|
+
"type": "string"
|
|
168
|
+
},
|
|
163
169
|
"messages": {
|
|
164
170
|
"type": "array",
|
|
165
171
|
"items": {
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.generateAgentAssistConfigRedisKeys = exports.agentAssistConfigSchema = exports.agentAssistConfigDataSchema = exports.agentAssistGridConfigSchema = void 0;
|
|
4
|
+
/* Interfaces & Types */
|
|
5
|
+
const IEntityMeta_1 = require("./IEntityMeta");
|
|
6
|
+
exports.agentAssistGridConfigSchema = {
|
|
7
|
+
title: "agentAssistGridConfigSchema",
|
|
8
|
+
type: "object",
|
|
9
|
+
minProperties: 1,
|
|
10
|
+
additionalProperties: false,
|
|
11
|
+
patternProperties: {
|
|
12
|
+
"[a-zA-Z][0-9a-zA-Z_$]*": {
|
|
13
|
+
type: "object",
|
|
14
|
+
required: [
|
|
15
|
+
"x",
|
|
16
|
+
"y",
|
|
17
|
+
"columns",
|
|
18
|
+
"rows"
|
|
19
|
+
],
|
|
20
|
+
additionalProperties: false,
|
|
21
|
+
properties: {
|
|
22
|
+
x: { type: "number" },
|
|
23
|
+
y: { type: "number" },
|
|
24
|
+
columns: { type: "number" },
|
|
25
|
+
rows: { type: "number" }
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
exports.agentAssistConfigDataSchema = {
|
|
31
|
+
title: "agentAssistConfigDataSchema",
|
|
32
|
+
type: "object",
|
|
33
|
+
additionalProperties: false,
|
|
34
|
+
required: [
|
|
35
|
+
"name",
|
|
36
|
+
"config",
|
|
37
|
+
],
|
|
38
|
+
properties: {
|
|
39
|
+
name: { type: "string", format: "resource-name" },
|
|
40
|
+
description: { type: "string", format: "snapshot-description" },
|
|
41
|
+
config: exports.agentAssistGridConfigSchema
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
exports.agentAssistConfigSchema = {
|
|
45
|
+
title: "agentAssistConfigSchema",
|
|
46
|
+
type: "object",
|
|
47
|
+
additionalProperties: false,
|
|
48
|
+
properties: Object.assign(Object.assign(Object.assign({}, IEntityMeta_1.entityMetaSchema.properties), exports.agentAssistConfigDataSchema.properties), { referenceId: { type: "string", format: "uuid" }, projectReference: { type: "string", format: "mongo-id" }, organisationReference: { type: "string", format: "mongo-id" } }),
|
|
49
|
+
};
|
|
50
|
+
const generateAgentAssistConfigRedisKeys = (data) => {
|
|
51
|
+
return [
|
|
52
|
+
`organisationId:${data.organisationReference}:projectId:${data.projectReference}:flowId:${data.configId}:agentAssistConfig:v1`
|
|
53
|
+
];
|
|
54
|
+
};
|
|
55
|
+
exports.generateAgentAssistConfigRedisKeys = generateAgentAssistConfigRedisKeys;
|
|
56
|
+
//# sourceMappingURL=IAgentAssistConfig.js.map
|
|
@@ -21,7 +21,7 @@ exports.flowInDBSchema = {
|
|
|
21
21
|
title: "flowInDBSchema",
|
|
22
22
|
type: "object",
|
|
23
23
|
additionalProperties: false,
|
|
24
|
-
properties: Object.assign(Object.assign({}, IEntityMeta_1.entityMetaSchema.properties), { attachedFlows: { type: "array", additionalItems: { type: "string", format: "mongo-id" } }, localizedData: { type: "array", items: exports.localizedFlowDataSchema }, context: {}, img: { type: "string" }, name: { type: "string", format: "resource-name" }, chartReference: { type: "string", format: "mongo-id" }, projectReference: { type: "string", format: "mongo-id" }, organisationReference: { type: "string", format: "mongo-id" }, referenceId: { type: "string", format: "uuid" } }),
|
|
24
|
+
properties: Object.assign(Object.assign({}, IEntityMeta_1.entityMetaSchema.properties), { attachedFlows: { type: "array", additionalItems: { type: "string", format: "mongo-id" } }, localizedData: { type: "array", items: exports.localizedFlowDataSchema }, context: {}, img: { type: "string" }, name: { type: "string", format: "resource-name" }, description: { type: "string", format: "resource-description" }, chartReference: { type: "string", format: "mongo-id" }, projectReference: { type: "string", format: "mongo-id" }, organisationReference: { type: "string", format: "mongo-id" }, referenceId: { type: "string", format: "uuid" } }),
|
|
25
25
|
};
|
|
26
26
|
const generateFlowRedisKeys = (data) => {
|
|
27
27
|
return [
|
|
@@ -40,6 +40,7 @@ exports.flowDataSchema = {
|
|
|
40
40
|
context: {},
|
|
41
41
|
img: { type: "string" },
|
|
42
42
|
name: { type: "string", format: "resource-name" },
|
|
43
|
+
description: { type: "string", format: "resource-description" },
|
|
43
44
|
}
|
|
44
45
|
};
|
|
45
46
|
exports.flowSchema = {
|
|
@@ -1,17 +1,30 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.generateExportFromLexiconRedisKeys = exports.lexiconQuerySchema = exports.lexiconSchema = exports.lexiconDataSchema = void 0;
|
|
3
|
+
exports.generateExportFromLexiconRedisKeys = exports.lexiconQuerySchema = exports.lexiconSchema = exports.lexiconDataSchema = exports.lexiconGenerationSchema = void 0;
|
|
4
4
|
/* Custom Modules */
|
|
5
5
|
const createQuerySchema_1 = require("../../helper/createQuerySchema");
|
|
6
6
|
/* Interfaces & Types */
|
|
7
7
|
const IEntityMeta_1 = require("./IEntityMeta");
|
|
8
|
+
exports.lexiconGenerationSchema = {
|
|
9
|
+
title: "lexiconGenerationSchema",
|
|
10
|
+
type: "object",
|
|
11
|
+
additionalProperties: false,
|
|
12
|
+
minProperties: 1,
|
|
13
|
+
properties: {
|
|
14
|
+
shouldGenerateLexiconEntries: { type: "boolean" },
|
|
15
|
+
generateLexiconEntriesLimit: { type: "number" },
|
|
16
|
+
defaultSlot: { type: "string" },
|
|
17
|
+
languageCode: { type: "string" }
|
|
18
|
+
}
|
|
19
|
+
};
|
|
8
20
|
exports.lexiconDataSchema = {
|
|
9
21
|
title: "lexiconDataSchema",
|
|
10
22
|
type: "object",
|
|
11
23
|
additionalProperties: false,
|
|
12
24
|
minProperties: 1,
|
|
13
25
|
properties: {
|
|
14
|
-
name: { type: "string", format: "resource-name" }
|
|
26
|
+
name: { type: "string", format: "resource-name" },
|
|
27
|
+
description: { type: "string", format: "resource-description" },
|
|
15
28
|
}
|
|
16
29
|
};
|
|
17
30
|
exports.lexiconSchema = {
|
|
@@ -1,17 +1,39 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.localeSchema = exports.localeDataSchema = void 0;
|
|
3
|
+
exports.localeSchema = exports.localeDataSchema = exports.localeInDBSchema = exports.localeInDBDataSchema = void 0;
|
|
4
|
+
const ITrainGroupFeedbackReport_1 = require("./intent/ITrainGroupFeedbackReport");
|
|
5
|
+
exports.localeInDBDataSchema = {
|
|
6
|
+
title: "localeDataSchema",
|
|
7
|
+
additionalProperties: false,
|
|
8
|
+
properties: {
|
|
9
|
+
name: { type: "string", format: "resource-name" },
|
|
10
|
+
nluLanguage: { type: "string", format: "nlu-language" }
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
exports.localeInDBSchema = {
|
|
14
|
+
title: "localeSchema",
|
|
15
|
+
additionalProperties: false,
|
|
16
|
+
properties: Object.assign(Object.assign({}, exports.localeInDBDataSchema.properties), { _id: { type: "string", format: "mongo-id" }, referenceId: { type: "string", format: "uuid" }, primary: { type: "boolean" }, createdAt: { type: "number" }, createdBy: { type: "string", format: "mongo-id" }, lastChanged: { type: "number" }, lastChangedBy: { type: "string", format: "mongo-id" }, projectReference: { type: "string", format: "mongo-id" }, organisationReference: { type: "string", format: "mongo-id" }, fallbackLocaleReference: { type: ["string", "null"], format: "mongo-id" } })
|
|
17
|
+
};
|
|
4
18
|
exports.localeDataSchema = {
|
|
5
19
|
title: "localeDataSchema",
|
|
6
20
|
additionalProperties: false,
|
|
7
21
|
properties: {
|
|
8
22
|
name: { type: "string", format: "resource-name" },
|
|
9
|
-
nluLanguage: { type: "string", format: "nlu-language" }
|
|
23
|
+
nluLanguage: { type: "string", format: "nlu-language" }
|
|
10
24
|
}
|
|
11
25
|
};
|
|
12
26
|
exports.localeSchema = {
|
|
13
27
|
title: "localeSchema",
|
|
14
28
|
additionalProperties: false,
|
|
15
|
-
properties: Object.assign(Object.assign({}, exports.localeDataSchema.properties), { _id: { type: "string", format: "mongo-id" }, referenceId: { type: "string", format: "uuid" }, primary: { type: "boolean" }, createdAt: { type: "number" }, createdBy: { type: "string", format: "mongo-id" }, lastChanged: { type: "number" }, lastChangedBy: { type: "string", format: "mongo-id" }, projectReference: { type: "string", format: "mongo-id" }, organisationReference: { type: "string", format: "mongo-id" }, fallbackLocaleReference: { type: ["string", "null"], format: "mongo-id" } }
|
|
29
|
+
properties: Object.assign(Object.assign({}, exports.localeDataSchema.properties), { _id: { type: "string", format: "mongo-id" }, referenceId: { type: "string", format: "uuid" }, primary: { type: "boolean" }, createdAt: { type: "number" }, createdBy: { type: "string", format: "mongo-id" }, lastChanged: { type: "number" }, lastChangedBy: { type: "string", format: "mongo-id" }, projectReference: { type: "string", format: "mongo-id" }, organisationReference: { type: "string", format: "mongo-id" }, fallbackLocaleReference: { type: ["string", "null"], format: "mongo-id" }, intentTrainGroupReference: { type: "string", format: "mongo-id" }, intentTrainGroupReferenceId: { type: "string", format: "uuid" }, feedbackReport: ITrainGroupFeedbackReport_1.trainGroupFeedbackReportDataSchema, isTrainingOutOfDate: { type: "boolean" }, lastTrainedAt: { type: "number" }, nluOptions: {
|
|
30
|
+
type: "object",
|
|
31
|
+
additionalProperties: false,
|
|
32
|
+
properties: {
|
|
33
|
+
intentModelVersion: {
|
|
34
|
+
type: "string"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
} })
|
|
16
38
|
};
|
|
17
39
|
//# sourceMappingURL=ILocale.js.map
|
|
@@ -121,6 +121,7 @@ exports.nodeFieldTypes = [
|
|
|
121
121
|
"appTemplate",
|
|
122
122
|
"sttSelect",
|
|
123
123
|
"ttsSelect",
|
|
124
|
+
"adaptivecard",
|
|
124
125
|
];
|
|
125
126
|
exports.searchableNodeFieldTypes = [
|
|
126
127
|
"text",
|
|
@@ -279,7 +280,7 @@ exports.nodeSectionSchema = {
|
|
|
279
280
|
defaultCollapsed: { type: "boolean" },
|
|
280
281
|
fields: {
|
|
281
282
|
type: "array",
|
|
282
|
-
maxItems:
|
|
283
|
+
maxItems: 30,
|
|
283
284
|
additionalItems: false,
|
|
284
285
|
uniqueItems: true,
|
|
285
286
|
items: {
|
|
@@ -10,6 +10,7 @@ exports.primaryResourceTypes = exports.packageableResourceTypes = exports.search
|
|
|
10
10
|
* description: The type of a resource
|
|
11
11
|
* example: flow
|
|
12
12
|
* enum:
|
|
13
|
+
* - agentassistconfig
|
|
13
14
|
* - agentSettings
|
|
14
15
|
* - chart
|
|
15
16
|
* - connection
|
|
@@ -42,6 +43,7 @@ exports.primaryResourceTypes = exports.packageableResourceTypes = exports.search
|
|
|
42
43
|
* - snippet
|
|
43
44
|
*/
|
|
44
45
|
exports.arrayTResourceType = [
|
|
46
|
+
"agentassistconfig",
|
|
45
47
|
"agentSettings",
|
|
46
48
|
"chart",
|
|
47
49
|
"connection",
|
|
@@ -136,6 +138,7 @@ exports.searchableResourceTypes = [
|
|
|
136
138
|
"snapshot",
|
|
137
139
|
];
|
|
138
140
|
exports.packageableResourceTypes = [
|
|
141
|
+
"agentAssistConfig",
|
|
139
142
|
"connection",
|
|
140
143
|
"endpoint",
|
|
141
144
|
"extension",
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.intentSchema = exports.intentDataSchema = exports.intentInDBDataSchema = exports.localizedIntentDataSchema = exports.overrideIntentDefaultRepliesAsExamplesTypes = exports.intentTypes = void 0;
|
|
4
4
|
const IEntityMeta_1 = require("../IEntityMeta");
|
|
5
5
|
const IIntentFeedbackReport_1 = require("./IIntentFeedbackReport");
|
|
6
|
+
const IIntentRelation_1 = require("./IIntentRelation");
|
|
6
7
|
exports.intentTypes = ["yesNoIntent", "default"];
|
|
7
8
|
exports.overrideIntentDefaultRepliesAsExamplesTypes = [
|
|
8
9
|
"useFlowSettings",
|
|
@@ -33,7 +34,7 @@ exports.intentInDBDataSchema = {
|
|
|
33
34
|
title: "intentInDBDataSchema",
|
|
34
35
|
type: "object",
|
|
35
36
|
additionalProperties: false,
|
|
36
|
-
properties: Object.assign(Object.assign({}, IEntityMeta_1.entityMetaSchema.properties), { feedbackReport: IIntentFeedbackReport_1.intentFeedbackInDBReportSchema, localizedData: { type: "array", items: exports.localizedIntentDataSchema }, enabledLocaleReferences: { type: "array", items: { format: "mongo-id" } }, name: { type: "string", format: "resource-name" }, intentType: { type: "string", enum: [...exports.intentTypes] }, intentRelationReferences: {
|
|
37
|
+
properties: Object.assign(Object.assign({}, IEntityMeta_1.entityMetaSchema.properties), { feedbackReport: IIntentFeedbackReport_1.intentFeedbackInDBReportSchema, localizedData: { type: "array", items: exports.localizedIntentDataSchema }, enabledLocaleReferences: { type: "array", items: { format: "mongo-id" } }, name: { type: "string", format: "resource-name" }, description: { type: "string", format: "resource-description" }, intentType: { type: "string", enum: [...exports.intentTypes] }, intentRelationReferences: {
|
|
37
38
|
type: "array",
|
|
38
39
|
items: { type: "string", format: "mongo-id" }
|
|
39
40
|
}, tags: {
|
|
@@ -45,7 +46,7 @@ exports.intentInDBDataSchema = {
|
|
|
45
46
|
{ type: "boolean" },
|
|
46
47
|
{ type: "array", items: { type: "string", format: "mongo-id" } }
|
|
47
48
|
]
|
|
48
|
-
}, flowReferenceId: { type: "string", format: "uuid" }, referenceId: { type: "string", format: "uuid" }, flowReference: { type: "string", format: "mongo-id" }, projectReference: { type: "string", format: "mongo-id" }, organisationReference: { type: "string", format: "mongo-id" }, analyticsLabel: { type: "string", format: "analytics-label" }, overrideIntentDefaultRepliesAsExamples: {
|
|
49
|
+
}, biasTowardsParentOrChildIntents: { type: "string", enum: [...IIntentRelation_1.biasTowardsParentOrChildIntentsTypes] }, flowReferenceId: { type: "string", format: "uuid" }, referenceId: { type: "string", format: "uuid" }, flowReference: { type: "string", format: "mongo-id" }, projectReference: { type: "string", format: "mongo-id" }, organisationReference: { type: "string", format: "mongo-id" }, analyticsLabel: { type: "string", format: "analytics-label" }, overrideIntentDefaultRepliesAsExamples: {
|
|
49
50
|
type: ["string", "null"],
|
|
50
51
|
enum: [...exports.overrideIntentDefaultRepliesAsExamplesTypes]
|
|
51
52
|
} })
|
|
@@ -56,6 +57,7 @@ exports.intentDataSchema = {
|
|
|
56
57
|
additionalProperties: false,
|
|
57
58
|
properties: {
|
|
58
59
|
name: { type: "string", format: "resource-name" },
|
|
60
|
+
description: { type: "string", format: "resource-description" },
|
|
59
61
|
intentType: { type: "string", enum: [...exports.intentTypes] },
|
|
60
62
|
condition: { type: ["string", "null"], maxLength: 2000 },
|
|
61
63
|
intentRelationReferences: {
|
|
@@ -89,6 +91,7 @@ exports.intentDataSchema = {
|
|
|
89
91
|
{ type: "array", items: { type: "string", format: "mongo-id" } }
|
|
90
92
|
]
|
|
91
93
|
},
|
|
94
|
+
biasTowardsParentOrChildIntents: { type: "string", enum: [...IIntentRelation_1.biasTowardsParentOrChildIntentsTypes] },
|
|
92
95
|
flowReferenceId: { type: "string", format: "uuid" },
|
|
93
96
|
feedbackReport: IIntentFeedbackReport_1.intentFeedbackReportDataSchema,
|
|
94
97
|
analyticsLabel: { type: "string", format: "analytics-label" },
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.intentRelationSchema = void 0;
|
|
3
|
+
exports.intentRelationSchema = exports.biasTowardsParentOrChildIntentsTypes = void 0;
|
|
4
|
+
exports.biasTowardsParentOrChildIntentsTypes = ["parents", "children"];
|
|
4
5
|
exports.intentRelationSchema = {
|
|
5
6
|
title: "intentHierarchyRelationSchema",
|
|
6
7
|
type: "object",
|
|
@@ -14,6 +15,7 @@ exports.intentRelationSchema = {
|
|
|
14
15
|
{ type: "array", items: { type: "string", format: "mongo-id" } }
|
|
15
16
|
]
|
|
16
17
|
},
|
|
18
|
+
biasTowardsParentOrChildIntents: { type: "string", enum: [...exports.biasTowardsParentOrChildIntentsTypes] },
|
|
17
19
|
intentReference: { type: "string", format: "mongo-id" },
|
|
18
20
|
flowReference: { type: "string", format: "mongo-id" },
|
|
19
21
|
projectReference: { type: "string", format: "mongo-id" },
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.agentSettingsSchema = exports.agentSettingsDataSchema = exports.generateAgentSettingsRedisKey = void 0;
|
|
4
4
|
const IEntityMeta_1 = require("../IEntityMeta");
|
|
5
5
|
const ISharedSettings_1 = require("./ISharedSettings");
|
|
6
|
+
const IGenerativeAISettings_1 = require("./IGenerativeAISettings");
|
|
6
7
|
const arrayTranslationProviders = [
|
|
7
8
|
"none",
|
|
8
9
|
"microsoft",
|
|
@@ -57,7 +58,7 @@ exports.agentSettingsDataSchema = {
|
|
|
57
58
|
additionalProperties: false,
|
|
58
59
|
properties: {
|
|
59
60
|
apiKey: { type: "string", maxLength: 255 },
|
|
60
|
-
region: { type: "string", maxLength: 50 }
|
|
61
|
+
region: { type: "string", maxLength: 50 }
|
|
61
62
|
}
|
|
62
63
|
},
|
|
63
64
|
aws: {
|
|
@@ -67,7 +68,7 @@ exports.agentSettingsDataSchema = {
|
|
|
67
68
|
accessKeyId: { type: "string", maxLength: 255 },
|
|
68
69
|
secretAccessKey: { type: "string", maxLength: 255 },
|
|
69
70
|
sessionToken: { type: "string", default: undefined },
|
|
70
|
-
region: { type: "string", maxLength: 50, default: undefined }
|
|
71
|
+
region: { type: "string", maxLength: 50, default: undefined }
|
|
71
72
|
}
|
|
72
73
|
},
|
|
73
74
|
google: {
|
|
@@ -78,14 +79,18 @@ exports.agentSettingsDataSchema = {
|
|
|
78
79
|
fileToken: { type: "string", maxLength: 350 },
|
|
79
80
|
credentialsStringified: { type: "string", maxLength: 2000 },
|
|
80
81
|
clientEmail: { type: "string", maxLength: 250 },
|
|
81
|
-
privateKey: { type: "string", maxLength: 2000 }
|
|
82
|
+
privateKey: { type: "string", maxLength: 2000 }
|
|
82
83
|
}
|
|
83
84
|
},
|
|
84
85
|
audioPreviewProviderCustomBaseUrl: { type: "string", maxLength: 255 },
|
|
85
86
|
audioPreviewRetries: { type: "integer", minimum: 0, maximum: 3 },
|
|
86
87
|
audioPreviewTimeout: { type: "integer", minimum: 0, maximum: 8000 },
|
|
87
|
-
audioPreviewCacheExpiry: { type: "integer", enum: [0, 3600, 84600] }
|
|
88
|
+
audioPreviewCacheExpiry: { type: "integer", enum: [0, 3600, 84600] }
|
|
88
89
|
}
|
|
90
|
+
}, generativeAISettings: {
|
|
91
|
+
type: "object",
|
|
92
|
+
additionalProperties: false,
|
|
93
|
+
properties: Object.assign({}, IGenerativeAISettings_1.generativeAISettingsDataSchema.properties)
|
|
89
94
|
} })
|
|
90
95
|
};
|
|
91
96
|
exports.agentSettingsSchema = {
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.generativeAISettingsDataSchema = exports.generativeAIMetaAzureOpenAIDataSchema = exports.generativeAIMetaOpenAIDataSchema = exports.azureOpenAIModels = exports.openAIModels = exports.generativeAIProviders = exports.generativeAIUseCases = void 0;
|
|
4
|
+
exports.generativeAIUseCases = [
|
|
5
|
+
"intentGeneration",
|
|
6
|
+
"ouputContextualization",
|
|
7
|
+
"lexiconGeneration",
|
|
8
|
+
"flowGeneration",
|
|
9
|
+
"flowExplanation"
|
|
10
|
+
];
|
|
11
|
+
exports.generativeAIProviders = ["none", "openAI", "azureOpenAI"];
|
|
12
|
+
/**
|
|
13
|
+
* For Open.AI default should be => "text-davinci-003"
|
|
14
|
+
* For Azure OpenAI default should be => "text-davinci-002"
|
|
15
|
+
*/
|
|
16
|
+
exports.openAIModels = ["text-davinci-003"];
|
|
17
|
+
exports.azureOpenAIModels = ["text-davinci-002"];
|
|
18
|
+
exports.generativeAIMetaOpenAIDataSchema = {
|
|
19
|
+
title: "generativeAIMetaOpenAIDataSchema",
|
|
20
|
+
type: "object",
|
|
21
|
+
additionalProperties: false,
|
|
22
|
+
required: ["model", "temperature"],
|
|
23
|
+
properties: {
|
|
24
|
+
model: {
|
|
25
|
+
type: "string",
|
|
26
|
+
maxLength: 50
|
|
27
|
+
},
|
|
28
|
+
temperature: {
|
|
29
|
+
type: "number",
|
|
30
|
+
minimum: 0,
|
|
31
|
+
maximum: 1
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
exports.generativeAIMetaAzureOpenAIDataSchema = {
|
|
36
|
+
title: "generativeAIMetaAzureOpenAIDataSchema",
|
|
37
|
+
type: "object",
|
|
38
|
+
additionalProperties: false,
|
|
39
|
+
required: ["model", "temperature"],
|
|
40
|
+
properties: {
|
|
41
|
+
model: {
|
|
42
|
+
type: "string",
|
|
43
|
+
maxLength: 50
|
|
44
|
+
},
|
|
45
|
+
temperature: {
|
|
46
|
+
type: "number",
|
|
47
|
+
minimum: 0,
|
|
48
|
+
maximum: 1
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
exports.generativeAISettingsDataSchema = {
|
|
53
|
+
title: "generativeAISettingsDataSchema",
|
|
54
|
+
type: "object",
|
|
55
|
+
additionalProperties: false,
|
|
56
|
+
required: ["generativeAIProvider"],
|
|
57
|
+
properties: {
|
|
58
|
+
generativeAIProvider: {
|
|
59
|
+
type: "string",
|
|
60
|
+
enum: [...exports.generativeAIProviders]
|
|
61
|
+
},
|
|
62
|
+
openAI: {
|
|
63
|
+
type: "object",
|
|
64
|
+
additionalProperties: false,
|
|
65
|
+
properties: {
|
|
66
|
+
provider: {
|
|
67
|
+
type: "string",
|
|
68
|
+
enum: [...exports.generativeAIProviders]
|
|
69
|
+
},
|
|
70
|
+
connectionId: { type: "string", maxLength: 255 },
|
|
71
|
+
intentGeneration: {
|
|
72
|
+
type: "object",
|
|
73
|
+
additionalProperties: false,
|
|
74
|
+
properties: Object.assign({}, exports.generativeAIMetaOpenAIDataSchema.properties)
|
|
75
|
+
},
|
|
76
|
+
ouputContextualization: {
|
|
77
|
+
type: "object",
|
|
78
|
+
additionalProperties: false,
|
|
79
|
+
properties: Object.assign({}, exports.generativeAIMetaOpenAIDataSchema.properties)
|
|
80
|
+
},
|
|
81
|
+
lexiconGeneration: {
|
|
82
|
+
type: "object",
|
|
83
|
+
additionalProperties: false,
|
|
84
|
+
properties: Object.assign({}, exports.generativeAIMetaOpenAIDataSchema.properties)
|
|
85
|
+
},
|
|
86
|
+
flowGeneration: {
|
|
87
|
+
type: "object",
|
|
88
|
+
additionalProperties: false,
|
|
89
|
+
properties: Object.assign({}, exports.generativeAIMetaOpenAIDataSchema.properties)
|
|
90
|
+
},
|
|
91
|
+
flowExplanation: {
|
|
92
|
+
type: "object",
|
|
93
|
+
additionalProperties: false,
|
|
94
|
+
properties: Object.assign({}, exports.generativeAIMetaOpenAIDataSchema.properties)
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
azureOpenAI: {
|
|
99
|
+
type: "object",
|
|
100
|
+
additionalProperties: false,
|
|
101
|
+
properties: {
|
|
102
|
+
provider: {
|
|
103
|
+
type: "string",
|
|
104
|
+
enum: [...exports.generativeAIProviders]
|
|
105
|
+
},
|
|
106
|
+
connectionId: { type: "string", maxLength: 255 },
|
|
107
|
+
intentGeneration: {
|
|
108
|
+
type: "object",
|
|
109
|
+
additionalProperties: false,
|
|
110
|
+
properties: Object.assign({}, exports.generativeAIMetaAzureOpenAIDataSchema.properties)
|
|
111
|
+
},
|
|
112
|
+
ouputContextualization: {
|
|
113
|
+
type: "object",
|
|
114
|
+
additionalProperties: false,
|
|
115
|
+
properties: Object.assign({}, exports.generativeAIMetaAzureOpenAIDataSchema.properties)
|
|
116
|
+
},
|
|
117
|
+
lexiconGeneration: {
|
|
118
|
+
type: "object",
|
|
119
|
+
additionalProperties: false,
|
|
120
|
+
properties: Object.assign({}, exports.generativeAIMetaAzureOpenAIDataSchema.properties)
|
|
121
|
+
},
|
|
122
|
+
flowGeneration: {
|
|
123
|
+
type: "object",
|
|
124
|
+
additionalProperties: false,
|
|
125
|
+
properties: Object.assign({}, exports.generativeAIMetaAzureOpenAIDataSchema.properties)
|
|
126
|
+
},
|
|
127
|
+
flowExplanation: {
|
|
128
|
+
type: "object",
|
|
129
|
+
additionalProperties: false,
|
|
130
|
+
properties: Object.assign({}, exports.generativeAIMetaAzureOpenAIDataSchema.properties)
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
};
|
|
136
|
+
//# sourceMappingURL=IGenerativeAISettings.js.map
|
|
@@ -47,7 +47,7 @@ exports.sharedSettingsSchema = {
|
|
|
47
47
|
useURLSlots: { type: ["boolean", "null"] }
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
|
|
50
|
+
yesNoLogic: { type: "string", enum: [...IYesNoItem_1.yesNoLogic] },
|
|
51
51
|
yesNoIntentThreshold: { type: "number" }
|
|
52
52
|
}
|
|
53
53
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.sharedSettingsSchema = exports.flowSettingsSchema = exports.flowSettingsDataSchema = exports.flowIntentMappingOrderType = exports.agentSettingsSchema = exports.agentSettingsDataSchema = void 0;
|
|
3
|
+
exports.generativeAIUseCases = exports.generativeAIProviders = exports.openAIModels = exports.azureOpenAIModels = exports.generativeAISettingsDataSchema = exports.sharedSettingsSchema = exports.flowSettingsSchema = exports.flowSettingsDataSchema = exports.flowIntentMappingOrderType = exports.agentSettingsSchema = exports.agentSettingsDataSchema = void 0;
|
|
4
4
|
var IAgentSettings_1 = require("./IAgentSettings");
|
|
5
5
|
Object.defineProperty(exports, "agentSettingsDataSchema", { enumerable: true, get: function () { return IAgentSettings_1.agentSettingsDataSchema; } });
|
|
6
6
|
Object.defineProperty(exports, "agentSettingsSchema", { enumerable: true, get: function () { return IAgentSettings_1.agentSettingsSchema; } });
|
|
@@ -10,4 +10,10 @@ Object.defineProperty(exports, "flowSettingsDataSchema", { enumerable: true, get
|
|
|
10
10
|
Object.defineProperty(exports, "flowSettingsSchema", { enumerable: true, get: function () { return IFlowSettings_1.flowSettingsSchema; } });
|
|
11
11
|
var ISharedSettings_1 = require("./ISharedSettings");
|
|
12
12
|
Object.defineProperty(exports, "sharedSettingsSchema", { enumerable: true, get: function () { return ISharedSettings_1.sharedSettingsSchema; } });
|
|
13
|
+
var IGenerativeAISettings_1 = require("./IGenerativeAISettings");
|
|
14
|
+
Object.defineProperty(exports, "generativeAISettingsDataSchema", { enumerable: true, get: function () { return IGenerativeAISettings_1.generativeAISettingsDataSchema; } });
|
|
15
|
+
Object.defineProperty(exports, "azureOpenAIModels", { enumerable: true, get: function () { return IGenerativeAISettings_1.azureOpenAIModels; } });
|
|
16
|
+
Object.defineProperty(exports, "openAIModels", { enumerable: true, get: function () { return IGenerativeAISettings_1.openAIModels; } });
|
|
17
|
+
Object.defineProperty(exports, "generativeAIProviders", { enumerable: true, get: function () { return IGenerativeAISettings_1.generativeAIProviders; } });
|
|
18
|
+
Object.defineProperty(exports, "generativeAIUseCases", { enumerable: true, get: function () { return IGenerativeAISettings_1.generativeAIUseCases; } });
|
|
13
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
3
|
+
exports.yesNoLogic = void 0;
|
|
4
|
+
exports.yesNoLogic = [
|
|
5
|
+
"yesNoIntents",
|
|
6
|
+
"yesNoIntentsWithRules",
|
|
7
|
+
"confirmationWords"
|
|
8
8
|
];
|
|
9
9
|
//# sourceMappingURL=IYesNoItem.js.map
|