@cognigy/rest-api-client 0.9.1 → 0.12.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/.snyk +4 -0
- package/CHANGELOG.md +17 -0
- package/README.md +49 -2
- package/build/GenericAPIFn.js +7 -7
- package/build/GenericUploadFn.js +22 -12
- package/build/PluginBase.js +1 -0
- package/build/RestAPIClient.js +34 -9
- package/build/apigroups/AdministrationAPIGroup_2_0.js +98 -8
- package/build/apigroups/AnalyticsAPIGroup_2_0.js +12 -0
- package/build/apigroups/ExternalAPIGroup_2_0.js +7 -6
- package/build/apigroups/InsightsAPIGroup_2_0.js +53 -0
- package/build/apigroups/ManagementAPIGroup_2_0.js +44 -0
- package/build/apigroups/MetricsAPIGroup_2_0.js +44 -29
- package/build/apigroups/ResourcesAPIGroup_2_0.js +321 -213
- package/build/apigroups/SessionsAPIGroup_2_0.js +11 -10
- package/build/apigroups/TRestAPIGroupsTypeByConfiguration.js +0 -1
- package/build/apigroups/TRestAPIOperation.js +3 -0
- package/build/apigroups/index.js +12 -7
- package/build/authentication/ApiKey/ApiKeyAuthentication.js +23 -0
- package/build/authentication/{IApiKeyAuthentication.js → ApiKey/IApiKeyAuthentication.js} +0 -0
- package/build/authentication/AuthenticationAPI.js +36 -6
- package/build/authentication/BasicAuthentication/BasicAuthentication.js +31 -0
- package/build/authentication/BasicAuthentication/IBasicAuthentication.js +3 -0
- package/build/authentication/OAuth2/IGetAuthorizationCodeParameters.js +3 -0
- package/build/authentication/OAuth2/ILoginByAuthorizationCodeParameters.js +3 -0
- package/build/authentication/OAuth2/ILoginByClientCredentialsParameters.js +3 -0
- package/build/authentication/OAuth2/ILoginByPasswordParameters.js +3 -0
- package/build/authentication/OAuth2/ILoginByRefreshTokenParameters.js +3 -0
- package/build/authentication/{IOAuth2Authentication.js → OAuth2/IOAuth2Authentication.js} +0 -0
- package/build/authentication/OAuth2/IOAuth2AuthorizationCodeGrantRequest.js +11 -0
- package/build/authentication/OAuth2/IOAuth2ClientCredentialsGrantAccessTokenRequest.js +11 -0
- package/build/authentication/OAuth2/IOAuth2ClientPassword.js +3 -0
- package/build/authentication/OAuth2/IOAuth2ErrorResponse.js +41 -0
- package/build/authentication/OAuth2/IOAuth2GetAuthorizationCodeRequest.js +11 -0
- package/build/authentication/OAuth2/IOAuth2PasswordGrantAccessTokenRequest.js +11 -0
- package/build/authentication/OAuth2/IOAuth2RefreshAccessTokenRequest.js +12 -0
- package/build/authentication/OAuth2/IOAuth2SuccessResponse.js +3 -0
- package/build/authentication/OAuth2/OAuth2Authentication.js +238 -0
- package/build/authentication/OAuth2/OAuth2Error.js +10 -0
- package/build/authentication/OAuth2/TOAuth2AccessTokenType.js +3 -0
- package/build/authentication/{IAuthenticationAdapter.js → interfaces/IAuthenticationAdapter.js} +0 -0
- package/build/authentication/{IAuthenticationConstructor.js → interfaces/IAuthenticationConstructor.js} +0 -0
- package/build/authentication/{TAuthenticationParameter.js → interfaces/TAuthenticationParameter.js} +0 -0
- package/build/connector/AxiosAdapter.js +105 -13
- package/build/connector/IHttpProgressEvent.js +3 -0
- package/build/connector/exponentialDelay.js +22 -0
- package/build/connector/index.js +10 -1
- package/build/connector/isRetryAllowed.js +60 -0
- package/build/connector/isRetryableStatus.js +14 -0
- package/build/connector/retryAfterDelay.js +34 -0
- package/build/index.js +18 -2
- package/build/shared/cache/index.js +3 -0
- package/build/shared/charts/createNodeDescriptor.js +12 -9
- package/build/shared/charts/descriptors/allFields.js +1 -0
- package/build/shared/charts/descriptors/apps/index.js +8 -0
- package/build/shared/charts/descriptors/apps/initAppSession.js +33 -0
- package/build/shared/charts/descriptors/apps/setAppState.js +46 -0
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/aggregate.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/find.js +2 -1
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/findOne.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/index.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/insert.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/mongoDBConnection.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/remove.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/updateMany.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/updateOne.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/smtp/emailNotification.js +221 -0
- package/build/shared/charts/descriptors/connectionNodes/smtp/index.js +9 -2
- package/build/shared/charts/descriptors/connectionNodes/smtp/sendEmail.js +431 -15
- package/build/shared/charts/descriptors/connectionNodes/smtp/serviceConnection.js +12 -0
- package/build/shared/charts/descriptors/connectionNodes/smtp/smtpConnection.js +2 -1
- package/build/shared/charts/descriptors/connectionNodes/sql/index.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/sql/runQuery.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/sql/runStoredProcedure.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/sql/runTransaction.js +1 -0
- package/build/shared/charts/descriptors/connectionNodes/sql/sqlConnection.js +1 -0
- package/build/shared/charts/descriptors/data/addToContext.js +1 -0
- package/build/shared/charts/descriptors/data/code.js +1 -0
- package/build/shared/charts/descriptors/data/copyDataToContext.js +1 -0
- package/build/shared/charts/descriptors/data/copySlotsToContext.js +1 -0
- package/build/shared/charts/descriptors/data/index.js +9 -6
- package/build/shared/charts/descriptors/data/log.js +62 -0
- package/build/shared/charts/descriptors/data/removeFromContext.js +1 -0
- package/build/shared/charts/descriptors/data/resetContext.js +1 -0
- package/build/shared/charts/descriptors/end.js +2 -0
- package/build/shared/charts/descriptors/index.js +92 -58
- package/build/shared/charts/descriptors/logic/disableSlotFillers.js +52 -0
- package/build/shared/charts/descriptors/logic/enableSlotFillers.js +46 -0
- package/build/shared/charts/descriptors/logic/executeFlow.js +21 -0
- package/build/shared/charts/descriptors/logic/goTo.js +110 -8
- package/build/shared/charts/descriptors/logic/if/else.js +3 -0
- package/build/shared/charts/descriptors/logic/if/if.js +3 -1
- package/build/shared/charts/descriptors/logic/if/then.js +3 -0
- package/build/shared/charts/descriptors/logic/index.js +31 -22
- package/build/shared/charts/descriptors/logic/interval/elseInterval.js +2 -0
- package/build/shared/charts/descriptors/logic/interval/interval.js +1 -0
- package/build/shared/charts/descriptors/logic/interval/onInterval.js +2 -0
- package/build/shared/charts/descriptors/logic/once/afterwards.js +2 -0
- package/build/shared/charts/descriptors/logic/once/onFirstExecution.js +2 -0
- package/build/shared/charts/descriptors/logic/once/once.js +1 -0
- package/build/shared/charts/descriptors/logic/resetState.js +1 -0
- package/build/shared/charts/descriptors/logic/setState.js +1 -0
- package/build/shared/charts/descriptors/logic/setTranslation.js +88 -0
- package/build/shared/charts/descriptors/logic/sleep.js +1 -0
- package/build/shared/charts/descriptors/logic/stop.js +2 -5
- package/build/shared/charts/descriptors/logic/switch/case.js +3 -0
- package/build/shared/charts/descriptors/logic/switch/default.js +3 -0
- package/build/shared/charts/descriptors/logic/switch/switch.js +108 -13
- package/build/shared/charts/descriptors/logic/switchLocale.js +64 -0
- package/build/shared/charts/descriptors/logic/think.js +71 -7
- package/build/shared/charts/descriptors/logic/thinkV2.js +104 -0
- package/build/shared/charts/descriptors/logic/wait.js +3 -9
- package/build/shared/charts/descriptors/message/checkChannelChange/checkChannelChange.js +3 -1
- package/build/shared/charts/descriptors/message/checkChannelChange/onNo.js +4 -1
- package/build/shared/charts/descriptors/message/checkChannelChange/onYes.js +4 -1
- package/build/shared/charts/descriptors/message/checkChannelChange/unchanged.js +4 -1
- package/build/shared/charts/descriptors/message/datePicker.js +1 -0
- package/build/shared/charts/descriptors/message/index.js +13 -12
- package/build/shared/charts/descriptors/message/question/onAnswer.js +4 -1
- package/build/shared/charts/descriptors/message/question/onQuestion.js +4 -1
- package/build/shared/charts/descriptors/message/question/optionalQuestion.js +65 -8
- package/build/shared/charts/descriptors/message/question/question.js +1143 -58
- package/build/shared/charts/descriptors/message/question/utils/datepickerUtils.js +79 -11
- package/build/shared/charts/descriptors/message/question/utils/evaluateQuestionAnswer.js +23 -3
- package/build/shared/charts/descriptors/message/question/utils/generateAnswerShortForm.js +37 -0
- package/build/shared/charts/descriptors/message/question/utils/getQuestionText.js +36 -0
- package/build/shared/charts/descriptors/message/question/utils/resetNodeState.js +12 -0
- package/build/shared/charts/descriptors/message/question/utils/storeQuestionAnswer.js +30 -0
- package/build/shared/charts/descriptors/message/question/utils/validateQuestionAnswer.js +22 -0
- package/build/shared/charts/descriptors/message/say.js +16 -6
- package/build/shared/charts/descriptors/message/sendImage.js +4 -3
- package/build/shared/charts/descriptors/message/sendText.js +1 -0
- package/build/shared/charts/descriptors/microsoft/getToken.js +34 -0
- package/build/shared/charts/descriptors/microsoft/index.js +22 -0
- package/build/shared/charts/descriptors/microsoft/invalidateToken.js +29 -0
- package/build/shared/charts/descriptors/microsoft/tokenStatus/index.js +51 -0
- package/build/shared/charts/descriptors/microsoft/tokenStatus/tokenGranted.js +24 -0
- package/build/shared/charts/descriptors/microsoft/tokenStatus/tokenNotGranted.js +24 -0
- package/build/shared/charts/descriptors/microsoft/utils/design.js +5 -0
- package/build/shared/charts/descriptors/nlu/addLexiconKeyphrase.js +1 -0
- package/build/shared/charts/descriptors/nlu/executeCognigyNLU.js +8 -2
- package/build/shared/charts/descriptors/nlu/extractAnswer.js +115 -0
- package/build/shared/charts/descriptors/nlu/fuzzySearch.js +270 -0
- package/build/shared/charts/descriptors/nlu/index.js +10 -3
- package/build/shared/charts/descriptors/nlu/matchPattern.js +104 -0
- package/build/shared/charts/descriptors/nlu/regexSlotFiller.js +1 -0
- package/build/shared/charts/descriptors/nlu/utils/patternMatcher.js +197 -0
- package/build/shared/charts/descriptors/placeholder.js +38 -0
- package/build/shared/charts/descriptors/profile/activateProfile.js +1 -0
- package/build/shared/charts/descriptors/profile/blindMode.js +6 -2
- package/build/shared/charts/descriptors/profile/completeGoal.js +5 -0
- package/build/shared/charts/descriptors/profile/deactivateProfile.js +1 -0
- package/build/shared/charts/descriptors/profile/deleteProfile.js +1 -0
- package/build/shared/charts/descriptors/profile/index.js +14 -7
- package/build/shared/charts/descriptors/profile/mergeProfile.js +1 -0
- package/build/shared/charts/descriptors/profile/overwriteAnalytics.js +223 -0
- package/build/shared/charts/descriptors/profile/requestRating.js +57 -0
- package/build/shared/charts/descriptors/profile/setRating.js +39 -0
- package/build/shared/charts/descriptors/profile/updateProfile.js +8 -3
- package/build/shared/charts/descriptors/requiredFields.js +1 -0
- package/build/shared/charts/descriptors/service/handover.js +64 -7
- package/build/shared/charts/descriptors/service/handoverV2.js +129 -0
- package/build/shared/charts/descriptors/service/httpRequest.js +119 -8
- package/build/shared/charts/descriptors/service/index.js +15 -6
- package/build/shared/charts/descriptors/service/triggerFunction/onScheduled.js +27 -0
- package/build/shared/charts/descriptors/service/triggerFunction/onSchedulingError.js +27 -0
- package/build/shared/charts/descriptors/service/triggerFunction/triggerFunction.js +66 -0
- package/build/shared/charts/descriptors/start.js +2 -0
- package/build/shared/charts/descriptors/voicegateway/index.js +28 -0
- package/build/shared/charts/descriptors/voicegateway/nodes/agentAssist.js +87 -0
- package/build/shared/charts/descriptors/voicegateway/nodes/callRecording.js +118 -0
- package/build/shared/charts/descriptors/voicegateway/nodes/handover.js +156 -0
- package/build/shared/charts/descriptors/voicegateway/nodes/hangup.js +57 -0
- package/build/shared/charts/descriptors/voicegateway/nodes/playURL.js +146 -0
- package/build/shared/charts/descriptors/voicegateway/nodes/sendMessage.js +273 -0
- package/build/shared/charts/descriptors/voicegateway/nodes/sendMetaData.js +50 -0
- package/build/shared/charts/descriptors/voicegateway/nodes/setSessionParams.js +73 -0
- package/build/shared/charts/descriptors/voicegateway/utils/design.js +5 -0
- package/build/shared/charts/descriptors/voicegateway/utils/paramUtils.js +501 -0
- package/build/shared/charts/descriptors/voicegateway2/index.js +21 -0
- package/build/shared/charts/descriptors/voicegateway2/nodes/dtmf.js +56 -0
- package/build/shared/charts/descriptors/voicegateway2/nodes/hangup.js +48 -0
- package/build/shared/charts/descriptors/voicegateway2/nodes/play.js +199 -0
- package/build/shared/charts/descriptors/voicegateway2/nodes/refer.js +44 -0
- package/build/shared/charts/descriptors/voicegateway2/nodes/setSessionConfig.js +584 -0
- package/build/shared/charts/descriptors/voicegateway2/utils/design.js +5 -0
- package/build/shared/charts/descriptors/voicegateway2/utils/strip-nulls.js +19 -0
- package/build/shared/constants.js +13 -1
- package/build/shared/errors/BadGatewayError.js +1 -0
- package/build/shared/errors/BadRequestError.js +1 -0
- package/build/shared/errors/ErrorCode.js +2 -0
- package/build/shared/errors/ErrorCollection.js +5 -2
- package/build/shared/errors/ForbiddenError.js +1 -0
- package/build/shared/errors/GatewayTimeoutError.js +1 -0
- package/build/shared/errors/ILoggerStack.js +1 -0
- package/build/shared/errors/MethodNotAllowedError.js +1 -0
- package/build/shared/errors/NetworkError.js +22 -0
- package/build/shared/errors/PayloadTooLargeError.js +1 -0
- package/build/shared/errors/PaymentRequiredError.js +1 -0
- package/build/shared/errors/ServiceUnavailableError.js +1 -0
- package/build/shared/errors/UnauthorizedError.js +1 -0
- package/build/shared/errors/baseError.js +35 -1
- package/build/shared/errors/codes.js +1 -0
- package/build/shared/errors/conflict.js +1 -0
- package/build/shared/errors/databaseConnectError.js +1 -0
- package/build/shared/errors/databaseQueryError.js +1 -0
- package/build/shared/errors/databaseRead.js +1 -0
- package/build/shared/errors/databaseWrite.js +1 -0
- package/build/shared/errors/exportError.js +1 -0
- package/build/shared/errors/fileRead.js +1 -0
- package/build/shared/errors/fileWrite.js +1 -0
- package/build/shared/errors/importError.js +1 -0
- package/build/shared/errors/index.js +34 -27
- package/build/shared/errors/inputOutputError.js +1 -0
- package/build/shared/errors/internalServerError.js +1 -0
- package/build/shared/errors/invalidArgument.js +1 -0
- package/build/shared/errors/missingArgument.js +1 -0
- package/build/shared/errors/notImplementedError.js +1 -0
- package/build/shared/errors/process.js +1 -0
- package/build/shared/errors/resourceNotFound.js +1 -0
- package/build/shared/errors/smtpConnectError.js +1 -0
- package/build/shared/errors/timeoutError.js +1 -0
- package/build/shared/helper/BaseContext.js +1 -0
- package/build/shared/helper/HttpStatusCode.js +1 -0
- package/build/shared/helper/createQuerySchema.js +1 -0
- package/build/shared/helper/logger/ILogEntry.js +1 -0
- package/build/shared/helper/logger/TLogLevel.js +1 -0
- package/build/shared/helper/logger/index.js +4 -2
- package/build/shared/helper/objectSizeValidator.js +3 -1
- package/build/shared/helper/rest/NumberRange.js +1 -0
- package/build/shared/helper/rest/array.js +19 -0
- package/build/shared/helper/rest/boolean.js +8 -2
- package/build/shared/helper/rest/index.js +13 -9
- package/build/shared/helper/rest/limit.js +3 -1
- package/build/shared/helper/rest/operations.js +4 -3
- package/build/shared/helper/rest/query-string/decode-uri-component.js +82 -0
- package/build/shared/helper/rest/query-string/index.js +308 -0
- package/build/shared/helper/rest/query-string/splitOnFirst.js +21 -0
- package/build/shared/helper/rest/query-string/strictUriEncode.js +7 -0
- package/build/shared/helper/rest/query.js +0 -0
- package/build/shared/helper/rest/skip.js +3 -1
- package/build/shared/helper/rest/sort.js +5 -2
- package/build/shared/interfaces/BatchOperation.js +13 -5
- package/build/shared/interfaces/IApiKey.js +28 -0
- package/build/shared/interfaces/IEndpointTranslationSettings.js +32 -0
- package/build/shared/interfaces/IFunctionInstanceParameters.js +15 -0
- package/build/shared/interfaces/IHandoverRequestStatus.js +3 -0
- package/build/shared/interfaces/IHttpRequest.js +3 -0
- package/build/shared/interfaces/IOrganisation.js +51 -0
- package/build/shared/interfaces/IProfile.js +5 -1
- package/build/shared/interfaces/IProfileSchema.js +10 -2
- package/build/shared/interfaces/ISessionScope.js +3 -0
- package/build/shared/interfaces/TEntrypointType.js +5 -0
- package/build/shared/interfaces/TFunctionInstanceStatus.js +10 -0
- package/build/shared/interfaces/TFunctionInstanceTrigger.js +8 -0
- package/build/shared/interfaces/alexa/ISkill.js +1 -0
- package/build/shared/interfaces/alexa/index.js +2 -1
- package/build/shared/interfaces/amqpInterface.js +28 -6
- package/build/shared/interfaces/analytics/IAnalyticsEndpointMeta.js +3 -0
- package/build/shared/interfaces/analytics/IAnalyticsFlowHistoryData.js +3 -0
- package/build/shared/interfaces/analytics/IAnalyticsFlowMeta.js +3 -0
- package/build/shared/interfaces/analytics/IAnalyticsLocaleMeta.js +3 -0
- package/build/shared/interfaces/analytics/IAnalyticsSnapshotMeta.js +3 -0
- package/build/shared/interfaces/analytics/IAnalyticsSourceData.js +196 -44
- package/build/shared/interfaces/analytics/IAnalyticsStepData.js +3 -0
- package/build/shared/interfaces/analytics/IStepEvent.js +46 -0
- package/build/shared/interfaces/analytics/TAnalyticsMode.js +10 -0
- package/build/shared/interfaces/analytics/TAnalyticsSource.js +7 -0
- package/build/shared/interfaces/analytics/TAnalyticsType.js +5 -0
- package/build/shared/interfaces/analytics/index.js +2 -1
- package/build/shared/interfaces/cognigySlots.js +1 -0
- package/build/shared/interfaces/debugEvents/IErrorEventPayload.js +3 -0
- package/build/shared/interfaces/debugEvents/INluWarningEventPayload.js +3 -0
- package/build/shared/interfaces/debugEvents/TDebugEndpointEvent.js +21 -0
- package/build/shared/interfaces/debugEvents/TDebugEventType.js +4 -3
- package/build/shared/interfaces/debugEvents/TSessionStateEmitParams.js +3 -0
- package/build/shared/interfaces/handover.js +126 -3
- package/build/shared/interfaces/journeys/IJourney.js +5 -3
- package/build/shared/interfaces/journeys/IJourneyProgress.js +4 -4
- package/build/shared/interfaces/journeys/IJourneyTrackEvent.js +1 -0
- package/build/shared/interfaces/journeys/index.js +8 -7
- package/build/shared/interfaces/license.js +34 -0
- package/build/shared/interfaces/license.js.map +1 -0
- package/build/shared/interfaces/management/IVendor.js +3 -0
- package/build/shared/interfaces/messageAPI/ai.js +15 -0
- package/build/shared/interfaces/messageAPI/endpoints.js +328 -14
- package/build/shared/interfaces/messageAPI/nlp.js +3 -0
- package/build/shared/interfaces/resources/IAuditEvent.js +67 -27
- package/build/shared/interfaces/resources/IChart.js +14 -3
- package/build/shared/interfaces/resources/IChartNode.js +105 -5
- package/build/shared/interfaces/resources/IConnection.js +2 -1
- package/build/shared/interfaces/resources/IConnectionSchema.js +2 -0
- package/build/shared/interfaces/resources/IEndpoint.js +23 -7
- package/build/shared/interfaces/resources/IEntityMeta.js +1 -0
- package/build/shared/interfaces/resources/IExtension.js +5 -1
- package/build/shared/interfaces/resources/IFile.js +1 -0
- package/build/shared/interfaces/resources/IFlow.js +26 -5
- package/build/shared/interfaces/resources/IFlowState.js +14 -2
- package/build/shared/interfaces/resources/IFunction.js +28 -0
- package/build/shared/interfaces/resources/IFunctionInstance.js +30 -0
- package/build/shared/interfaces/resources/IGraphResource.js +3 -0
- package/build/shared/interfaces/resources/ILexicon.js +9 -2
- package/build/shared/interfaces/resources/ILexiconEntry.js +2 -1
- package/build/shared/interfaces/resources/ILexiconKeyphrase.js +2 -1
- package/build/shared/interfaces/resources/ILexiconSlot.js +3 -2
- package/build/shared/interfaces/resources/ILocale.js +3 -3
- package/build/shared/interfaces/resources/INLUConnector.js +17 -4
- package/build/shared/interfaces/resources/INLUTransformerFunction.js +1 -0
- package/build/shared/interfaces/resources/INodeDescriptorSet.js +190 -51
- package/build/shared/interfaces/resources/IOptionsResolverFunction.js +18 -0
- package/build/shared/interfaces/resources/IPackage.js +25 -0
- package/build/shared/interfaces/resources/IPlaybook.js +3 -1
- package/build/shared/interfaces/resources/IPlaybookRun.js +61 -0
- package/build/shared/interfaces/resources/IProject.js +14 -0
- package/build/shared/interfaces/resources/IProjectGraph.js +3 -0
- package/build/shared/interfaces/resources/ISlotFiller.js +85 -0
- package/build/shared/interfaces/resources/ISnapshot.js +16 -3
- package/build/shared/interfaces/resources/ISnippet.js +14 -5
- package/build/shared/interfaces/resources/ITemplateConfiguration.js +1 -0
- package/build/shared/interfaces/resources/ITrackAnalyticsStepsArguments.js +3 -0
- package/build/shared/interfaces/resources/TNLUConnectorType.js +3 -1
- package/build/shared/interfaces/resources/TResourceType.js +94 -45
- package/build/shared/interfaces/resources/TRestChannelType.js +29 -2
- package/build/shared/interfaces/resources/TSlotFillerType.js +24 -0
- package/build/shared/interfaces/resources/TSocketChannelType.js +6 -1
- package/build/shared/interfaces/resources/TWebhookChannelType.js +18 -7
- package/build/shared/interfaces/resources/chart/IChartExecutable.js +12 -4
- package/build/shared/interfaces/resources/chart/IChartExecutableNode.js +11 -5
- package/build/shared/interfaces/resources/chart/IUndoRedoAction.js +0 -34
- package/build/shared/interfaces/resources/endpoints/sunshineConversations/ISunshineConversationsV2.js +3 -0
- package/build/shared/interfaces/resources/intent/IDefaultReply.js +10 -4
- package/build/shared/interfaces/resources/intent/IIntent.js +45 -4
- package/build/shared/interfaces/resources/intent/IIntentFeedbackReport.js +76 -0
- package/build/shared/interfaces/resources/intent/IIntentRelation.js +2 -1
- package/build/shared/interfaces/resources/intent/IIntentTrainGroup.js +30 -1
- package/build/shared/interfaces/resources/intent/ILearningSentence.js +2 -1
- package/build/shared/interfaces/resources/intent/ISentence.js +37 -13
- package/build/shared/interfaces/resources/intent/ISentenceFeedbackReport.js +67 -0
- package/build/shared/interfaces/resources/intent/ITrainGroupFeedbackReport.js +55 -0
- package/build/shared/interfaces/resources/projectTemplates.js +1 -0
- package/build/shared/interfaces/resources/settings/IAgentSettings.js +56 -0
- package/build/shared/interfaces/resources/settings/IFlowSettings.js +19 -0
- package/build/shared/interfaces/resources/settings/IFullSettings.js +3 -0
- package/build/shared/interfaces/resources/settings/ISharedSettings.js +50 -0
- package/build/shared/interfaces/resources/settings/index.js +13 -0
- package/build/shared/interfaces/restAPI/administration/identityProviders/v2.0/IConfigureIdentityProviderRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/identityProviders/v2.0/IResetIdentityProviderRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/identityProviders/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/administration/liveAgent/v2.0/IReadLiveAgentAccountRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/liveAgent/v2.0/IReadProjectInboxRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/liveAgent/v2.0/ISetupCognigyLiveAgentInboxRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/liveAgent/v2.0/ISetupCognigyLiveAgentRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/liveAgent/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/administration/passwordreset/v2.0/IChangePasswordRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IAddProjectMemberRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IAddProjectToUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IAddRoleToMemberRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IAddRoleToUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IApiKeyIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IApiKey_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/ICreateApiKeyRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/ICreateUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IDeleteApiKeyMeRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IDeleteUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IDeprecatePasswordRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IIndexApiKeysMeRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IIndexLoginAttemptsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IIndexProjectMembers_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IIndexUsersRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/ILoginAttemptIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/ILoginAttempt_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/ILogoutUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IProjectMemberIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IProjectMember_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IReadLastLoginAttemptRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IReadProjectMemberRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IReadUserAclMeRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IReadUserMeRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IReadUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IRemoveProjectFromUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IRemoveProjectMemberRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IRemoveRoleFromMemberRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IRemoveRoleFromUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IResetFailedLoginAttemptsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IUpdateProjectMemberRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IUpdateUserMeRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IUpdateUserRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IUserAcl_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IUserIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IUserUpdate_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/IUser_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/administration/user/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/analytics/IDeleteAnalyticsRecordsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/analytics/IUpdateAnalyticsRecordProperties_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/analytics/IUpdateAnalyticsRecordsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/authentication/IGetRealtimeTokenRest.js +3 -0
- package/build/shared/interfaces/restAPI/authentication/IHandleAmazonAccessTokenFromAuthCodeRest.js +3 -0
- package/build/shared/interfaces/restAPI/authentication/IRedirectToAmazonLoginRest.js +3 -0
- package/build/shared/interfaces/restAPI/authentication/IWebfingerRest.js +4 -0
- package/build/shared/interfaces/restAPI/authentication/index.js +3 -0
- package/build/shared/interfaces/restAPI/insights/IAnalyticsQueryFilter_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/TAnalyticsQueryFilterOperator_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/messages/IGenerateMessagesRest_2_0.js +5 -0
- package/build/shared/interfaces/restAPI/insights/messages/ILoadMessagesReportByQueryHashResponse_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/messages/ILoadMessagesReportByQueryHashRestData_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/messages/ITopNMessages_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/reports/IGenerateReportResponse_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/reports/IGenerateReportRest_2_0.js +41 -0
- package/build/shared/interfaces/restAPI/insights/reports/ILoadReportByQueryHashResponse_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/reports/ILoadReportByQueryHashRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/steps/IGenerateStepReportRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/steps/IIndexStepsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/steps/ILoadStepReportByQueryHashResponse_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/steps/ILoadStepReportByQueryHashRestData_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/steps/IStepIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/steps/IStepReport_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/steps/IStep_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/transcripts/IGenerateTranscriptsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/transcripts/ILoadTranscriptsReportByQueryHashResponse_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/transcripts/ILoadTranscriptsReportByQueryHashRestData_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/insights/transcripts/IStepPath_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/ICreateApiKeyRestManagement_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/ICreateOrganisationRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/IEnforcePasswordPolicyRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/IIndexOrganisationsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/IOrganisationIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/IOrganisation_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/IReadOrganisationRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/IUpdateOrganisationRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/organisations/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/management/system/v2.0/ICreateSystemMessage_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/system/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/ICreateUserRestManagement_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/IDeleteUserRestManagement_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/IImpersonateUserRestManagement_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/IIndexUsersRestManagement_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/IReadUserRestManagement_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/IUpdateUserRestManagement_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/IUserManagementIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/IUserManagement_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/user/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/management/vendor/v2.0/IGetBillingInformationRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/vendor/v2.0/IReadVendorRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/vendor/v2.0/IVendor_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/management/vendor/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversationCounter/v2.0/IConversationCounterAggregatedValue_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversationCounter/v2.0/IGetConversationCounterOrganisationRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversationCounter/v2.0/IGetConversationCounterRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversationCounter/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversations/v2.0/IConversationData_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversations/v2.0/IConversationSession_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversations/v2.0/IDeleteConversationRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversations/v2.0/IIndexConversationsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversations/v2.0/IReadConversationRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversations/v2.0/TAnalyticsSource_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversations/v2.0/TAnalyticsType_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/conversations/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.0/TAbstractTaskData_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.1/ICancelTaskRest_2_1.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.1/IIndexTasksRest_2_1.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.1/IReadTaskRest_2_1.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.1/ITaskIndexItem_2_1.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.1/ITask_2_1.js +3 -0
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.1/index.js +3 -0
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/ISearchChartNodesRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IBatchConnectionsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/IBatchEndpointsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/ICreateEndpointRest_2_0.js +0 -1
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/IUpdateExtensionPackageRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/IUpdateExtensionRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IBatchFlowsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/ICreateFlowFromChildrenRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/feedbackReports/IIntentFeedbackReport_2_0.js +15 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/feedbackReports/ISentenceFeedbackReport_2_0.js +10 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/feedbackReports/ITrainGroupFeedbackReport_2_0.js +8 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IBatchIntentsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/ITrainYesNoIntentsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/ICreateSentenceRest_2_0.js +0 -1
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/IIndexSentencesRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IFlowSettings_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IReadFlowSettingsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IUpdateFlowSettingsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/IBatchSlotFillersRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/ICreateSlotFillerRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/IDeleteSlotFillerRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/IIndexSlotFillersRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/IReadSlotFillerRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/ISlotFillerIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/ISlotFiller_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/IUpdateSlotFillerRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/slotFiller/index.js +3 -0
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IBatchFlowStatesRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/ICreateFunctionRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IDeleteFunctionRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IFunctionIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IFunctionInstanceIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IFunctionInstance_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IFunction_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IIndexFunctionInstancesRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IIndexFunctionsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IReadFunctionInstanceRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IReadFunctionRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IStopFunctionInstanceRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/ITriggerFunctionRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/IUpdateFunctionRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/TFunctionInstanceStatus_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/TFunctionInstanceTrigger_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/function/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IBatchLexiconSlotsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IBatchLexiconsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IComposeLexiconDownloadLinkRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/TNLULanguage_2_0.js +9 -1
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/IBatchNLUConnectorsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/TNLUConnectorType_2_0.js +4 -1
- package/build/shared/interfaces/restAPI/resources/nodedescriptorsets/v2.0/IOptionsResolverRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IComposePackageDownloadLinkRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IConflict_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/ICreatePackageRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IDeletePackageRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IIndexPackagesRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IMergePackageRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IPackageIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IPackage_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IReadPackageRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IStrategy_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/IUploadPackageRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/package/v2.0/index.js +3 -0
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IBatchPlaybooksRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IDeletePlaybookRunRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IIndexPlaybookRunsRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IPlaybookRunIndexItem_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IPlaybookRun_2_0.js +7 -0
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IReadPlaybookRunRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/ISchedulePlaybookRunRest_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IGraphProjectRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IGraph_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IAgentSettings_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IReadAgentSettingsRest_2_0.js +4 -0
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/ISharedSettings_2_0.js +3 -0
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IUpdateAgentSettingsRest_2_0.js +4 -0
- package/build/shared/interfaces/rule.js +1 -0
- package/build/shared/interfaces/security/IACL.js +17 -0
- package/build/shared/interfaces/security/IConversationCounterAggregatedValue.js +3 -0
- package/build/shared/interfaces/security/IIdentityProvider.js +129 -0
- package/build/shared/interfaces/security/ILoginAttempt.js +3 -0
- package/build/shared/interfaces/security/IOperation.js +10 -0
- package/build/shared/interfaces/security/IOrganisactionScope.js +3 -0
- package/build/shared/interfaces/security/IPermission.js +100 -0
- package/build/shared/interfaces/security/IProjectMember.js +3 -0
- package/build/shared/interfaces/security/IProjectScope.js +3 -0
- package/build/shared/interfaces/security/IProjectsScope.js +3 -0
- package/build/shared/interfaces/security/IRole.js +112 -0
- package/build/shared/interfaces/security/IUserMeta.js +3 -0
- package/build/shared/interfaces/security/IUserRole.js +3 -0
- package/build/shared/interfaces/security/index.js +19 -0
- package/build/shared/interfaces/sessionstate/ISessionState.js +3 -0
- package/build/shared/interfaces/sessionstate/index.js +3 -0
- package/build/shared/interfaces/sunshineConversations.js +3 -0
- package/build/shared/interfaces/taskmanager/ITask.js +5 -16
- package/build/shared/interfaces/taskmanager/TTaskProgress.js +3 -0
- package/build/shared/interfaces/taskmanager/TTaskStatus.js +1 -0
- package/build/shared/interfaces/taskmanager/TTerminatedTaskStatus.js +5 -0
- package/build/shared/interfaces/taskmanager/index.js +5 -0
- package/build/shared/interfaces/trainer/ITrainerRecord.js +45 -2
- package/build/shared/interfaces/trainer/THandleAction.js +1 -0
- package/build/shared/interfaces/trainer/index.js +4 -3
- package/build/shared/interfaces/transformers/ITransformerFunction.js +2 -1
- package/build/shared/interfaces/transformers/index.js +2 -1
- package/build/shared/interfaces/translation.js +11 -0
- package/build/shared/interfaces/types/ICreateChartNodeBasicNodesData.js +3 -0
- package/build/shared/interfaces/types/TAbstractTaskData.js +3 -0
- package/build/shared/interfaces/types/TCSSColorName.js +1 -0
- package/build/shared/interfaces/types/TCognigyColorName.js +1 -0
- package/build/shared/interfaces/types/TNLULanguage.js +16 -12
- package/build/shared/interfaces/types/TTimezone.js +1200 -0
- package/build/shared/interfaces/user.js +29 -0
- package/build/shared/json-schema.js +20 -0
- package/build/shared/typescriptHelper.js +3 -0
- package/package.json +16 -27
- package/tsconfig.types.json +25 -0
- package/types/index.d.ts +16149 -0
- package/build/GenericAPIFn.d.ts +0 -3
- package/build/GenericUploadFn.d.ts +0 -5
- package/build/IRestApiClientConfig.d.ts +0 -9
- package/build/PluginBase.d.ts +0 -34
- package/build/RestAPIClient.d.ts +0 -13
- package/build/apigroups/AdministrationAPIGroup_2_0.d.ts +0 -15
- package/build/apigroups/ExternalAPIGroup_2_0.d.ts +0 -10
- package/build/apigroups/HandoverAPIGroup_2_0.d.ts +0 -4
- package/build/apigroups/HandoverAPIGroup_2_0.js +0 -8
- package/build/apigroups/IAPIGroupVersionConfiguration.d.ts +0 -8
- package/build/apigroups/MetricsAPIGroup_2_0.d.ts +0 -31
- package/build/apigroups/ResourcesAPIGroup_2_0.d.ts +0 -168
- package/build/apigroups/SessionsAPIGroup_2_0.d.ts +0 -12
- package/build/apigroups/TRestAPIGroupsTypeByConfiguration.d.ts +0 -39
- package/build/apigroups/index.d.ts +0 -8
- package/build/authentication/ApiKeyAuthentication.d.ts +0 -3
- package/build/authentication/ApiKeyAuthentication.js +0 -22
- package/build/authentication/AuthenticationAPI.d.ts +0 -6
- package/build/authentication/IApiKeyAuthentication.d.ts +0 -4
- package/build/authentication/IAuthenticationAdapter.d.ts +0 -5
- package/build/authentication/IAuthenticationConstructor.d.ts +0 -6
- package/build/authentication/IOAuth2Authentication.d.ts +0 -6
- package/build/authentication/IOAuth2InjectionAuthentication.d.ts +0 -4
- package/build/authentication/IOAuth2InjectionAuthentication.js +0 -3
- package/build/authentication/IOauth2TokenData.d.ts +0 -7
- package/build/authentication/IOauth2TokenData.js +0 -3
- package/build/authentication/OAuth2Authentication.d.ts +0 -3
- package/build/authentication/OAuth2Authentication.js +0 -28
- package/build/authentication/OAuth2InjectionAuthentication.d.ts +0 -3
- package/build/authentication/OAuth2InjectionAuthentication.js +0 -22
- package/build/authentication/TAuthenticationParameter.d.ts +0 -4
- package/build/authentication/TAuthenticationType.d.ts +0 -1
- package/build/authentication/TAuthenticationType.js +0 -3
- package/build/connector/AxiosAdapter.d.ts +0 -16
- package/build/connector/IHttpAdapter.d.ts +0 -10
- package/build/connector/IHttpRequest.d.ts +0 -18
- package/build/connector/IHttpResponse.d.ts +0 -6
- package/build/connector/THttpLib.d.ts +0 -1
- package/build/connector/TMethod.d.ts +0 -1
- package/build/connector/index.d.ts +0 -6
- package/build/index.d.ts +0 -4
- package/build/shared/charts/createNodeDescriptor.d.ts +0 -12
- package/build/shared/charts/descriptors/allFields.d.ts +0 -1
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/aggregate.d.ts +0 -15
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/find.d.ts +0 -19
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/findOne.d.ts +0 -18
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/index.d.ts +0 -4
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/insert.d.ts +0 -15
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/mongoDBConnection.d.ts +0 -10
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/remove.d.ts +0 -15
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/updateMany.d.ts +0 -17
- package/build/shared/charts/descriptors/connectionNodes/mongoDB/updateOne.d.ts +0 -17
- package/build/shared/charts/descriptors/connectionNodes/smtp/index.d.ts +0 -4
- package/build/shared/charts/descriptors/connectionNodes/smtp/sendEmail.d.ts +0 -14
- package/build/shared/charts/descriptors/connectionNodes/smtp/smtpConnection.d.ts +0 -14
- package/build/shared/charts/descriptors/connectionNodes/sql/index.d.ts +0 -4
- package/build/shared/charts/descriptors/connectionNodes/sql/runQuery.d.ts +0 -1
- package/build/shared/charts/descriptors/connectionNodes/sql/runStoredProcedure.d.ts +0 -1
- package/build/shared/charts/descriptors/connectionNodes/sql/runTransaction.d.ts +0 -1
- package/build/shared/charts/descriptors/connectionNodes/sql/sqlConnection.d.ts +0 -14
- package/build/shared/charts/descriptors/data/addToContext.d.ts +0 -7
- package/build/shared/charts/descriptors/data/code.d.ts +0 -13
- package/build/shared/charts/descriptors/data/copyDataToContext.d.ts +0 -7
- package/build/shared/charts/descriptors/data/copySlotsToContext.d.ts +0 -11
- package/build/shared/charts/descriptors/data/index.d.ts +0 -6
- package/build/shared/charts/descriptors/data/removeFromContext.d.ts +0 -7
- package/build/shared/charts/descriptors/data/resetContext.d.ts +0 -7
- package/build/shared/charts/descriptors/end.d.ts +0 -1
- package/build/shared/charts/descriptors/index.d.ts +0 -7
- package/build/shared/charts/descriptors/logic/checkFrustration.d.ts +0 -7
- package/build/shared/charts/descriptors/logic/checkFrustration.js +0 -81
- package/build/shared/charts/descriptors/logic/executeFlow.d.ts +0 -16
- package/build/shared/charts/descriptors/logic/goTo.d.ts +0 -7
- package/build/shared/charts/descriptors/logic/if/else.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/if/if.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/if/then.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/index.d.ts +0 -21
- package/build/shared/charts/descriptors/logic/interval/elseInterval.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/interval/interval.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/interval/onInterval.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/once/afterwards.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/once/onFirstExecution.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/once/once.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/resetState.d.ts +0 -7
- package/build/shared/charts/descriptors/logic/setState.d.ts +0 -7
- package/build/shared/charts/descriptors/logic/sleep.d.ts +0 -7
- package/build/shared/charts/descriptors/logic/stop.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/switch/case.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/switch/default.d.ts +0 -1
- package/build/shared/charts/descriptors/logic/switch/switch.d.ts +0 -2
- package/build/shared/charts/descriptors/logic/think.d.ts +0 -7
- package/build/shared/charts/descriptors/logic/wait.d.ts +0 -1
- package/build/shared/charts/descriptors/message/checkChannelChange/checkChannelChange.d.ts +0 -7
- package/build/shared/charts/descriptors/message/checkChannelChange/onNo.d.ts +0 -1
- package/build/shared/charts/descriptors/message/checkChannelChange/onYes.d.ts +0 -1
- package/build/shared/charts/descriptors/message/checkChannelChange/unchanged.d.ts +0 -1
- package/build/shared/charts/descriptors/message/datePicker.d.ts +0 -35
- package/build/shared/charts/descriptors/message/index.d.ts +0 -12
- package/build/shared/charts/descriptors/message/question/onAnswer.d.ts +0 -1
- package/build/shared/charts/descriptors/message/question/onQuestion.d.ts +0 -1
- package/build/shared/charts/descriptors/message/question/optionalQuestion.d.ts +0 -1
- package/build/shared/charts/descriptors/message/question/question.d.ts +0 -1
- package/build/shared/charts/descriptors/message/question/utils/datepickerUtils.d.ts +0 -15
- package/build/shared/charts/descriptors/message/question/utils/evaluateQuestionAnswer.d.ts +0 -4
- package/build/shared/charts/descriptors/message/say.d.ts +0 -1
- package/build/shared/charts/descriptors/message/sendImage.d.ts +0 -1
- package/build/shared/charts/descriptors/message/sendText.d.ts +0 -1
- package/build/shared/charts/descriptors/nlu/addLexiconKeyphrase.d.ts +0 -7
- package/build/shared/charts/descriptors/nlu/executeCognigyNLU.d.ts +0 -7
- package/build/shared/charts/descriptors/nlu/index.d.ts +0 -3
- package/build/shared/charts/descriptors/nlu/regexSlotFiller.d.ts +0 -16
- package/build/shared/charts/descriptors/profile/activateProfile.d.ts +0 -7
- package/build/shared/charts/descriptors/profile/blindMode.d.ts +0 -7
- package/build/shared/charts/descriptors/profile/completeGoal.d.ts +0 -8
- package/build/shared/charts/descriptors/profile/deactivateProfile.d.ts +0 -7
- package/build/shared/charts/descriptors/profile/deleteProfile.d.ts +0 -7
- package/build/shared/charts/descriptors/profile/index.d.ts +0 -7
- package/build/shared/charts/descriptors/profile/mergeProfile.d.ts +0 -7
- package/build/shared/charts/descriptors/profile/updateProfile.d.ts +0 -7
- package/build/shared/charts/descriptors/requiredFields.d.ts +0 -1
- package/build/shared/charts/descriptors/sendEmail.d.ts +0 -7
- package/build/shared/charts/descriptors/sendEmail.js +0 -117
- package/build/shared/charts/descriptors/service/handover.d.ts +0 -17
- package/build/shared/charts/descriptors/service/httpRequest.d.ts +0 -76
- package/build/shared/charts/descriptors/service/index.d.ts +0 -2
- package/build/shared/charts/descriptors/start.d.ts +0 -1
- package/build/shared/charts/interfaces/IChart.d.ts +0 -5
- package/build/shared/charts/interfaces/IEdge.d.ts +0 -4
- package/build/shared/charts/interfaces/index.d.ts +0 -2
- package/build/shared/constants.d.ts +0 -6
- package/build/shared/errorHandler.d.ts +0 -13
- package/build/shared/errors/BadGatewayError.d.ts +0 -43
- package/build/shared/errors/BadRequestError.d.ts +0 -44
- package/build/shared/errors/ErrorCode.d.ts +0 -29
- package/build/shared/errors/ErrorCollection.d.ts +0 -5
- package/build/shared/errors/ForbiddenError.d.ts +0 -43
- package/build/shared/errors/GatewayTimeoutError.d.ts +0 -43
- package/build/shared/errors/IErrorResponse.d.ts +0 -43
- package/build/shared/errors/ILoggerStack.d.ts +0 -6
- package/build/shared/errors/MethodNotAllowedError.d.ts +0 -43
- package/build/shared/errors/PayloadTooLargeError.d.ts +0 -43
- package/build/shared/errors/PaymentRequiredError.d.ts +0 -44
- package/build/shared/errors/ServiceUnavailableError.d.ts +0 -43
- package/build/shared/errors/UnauthorizedError.d.ts +0 -43
- package/build/shared/errors/baseError.d.ts +0 -43
- package/build/shared/errors/codes.d.ts +0 -25
- package/build/shared/errors/conflict.d.ts +0 -43
- package/build/shared/errors/databaseConnectError.d.ts +0 -8
- package/build/shared/errors/databaseQueryError.d.ts +0 -8
- package/build/shared/errors/databaseRead.d.ts +0 -8
- package/build/shared/errors/databaseWrite.d.ts +0 -8
- package/build/shared/errors/exportError.d.ts +0 -8
- package/build/shared/errors/fileRead.d.ts +0 -8
- package/build/shared/errors/fileWrite.d.ts +0 -8
- package/build/shared/errors/importError.d.ts +0 -14
- package/build/shared/errors/index.d.ts +0 -28
- package/build/shared/errors/inputOutputError.d.ts +0 -8
- package/build/shared/errors/internalServerError.d.ts +0 -43
- package/build/shared/errors/invalidArgument.d.ts +0 -8
- package/build/shared/errors/missingArgument.d.ts +0 -8
- package/build/shared/errors/notImplementedError.d.ts +0 -43
- package/build/shared/errors/process.d.ts +0 -8
- package/build/shared/errors/resourceNotFound.d.ts +0 -43
- package/build/shared/errors/smtpConnectError.d.ts +0 -8
- package/build/shared/errors/timeoutError.d.ts +0 -8
- package/build/shared/helper/BaseContext.d.ts +0 -98
- package/build/shared/helper/HttpStatusCode.d.ts +0 -319
- package/build/shared/helper/createQuerySchema.d.ts +0 -1
- package/build/shared/helper/logger/ILogEntry.d.ts +0 -18
- package/build/shared/helper/logger/ISuggestedMetaInfo.d.ts +0 -12
- package/build/shared/helper/logger/TLogLevel.d.ts +0 -2
- package/build/shared/helper/logger/index.d.ts +0 -8
- package/build/shared/helper/objectSizeValidator.d.ts +0 -9
- package/build/shared/helper/rest/NumberRange.d.ts +0 -15
- package/build/shared/helper/rest/boolean.d.ts +0 -1
- package/build/shared/helper/rest/index.d.ts +0 -7
- package/build/shared/helper/rest/limit.d.ts +0 -1
- package/build/shared/helper/rest/operations.d.ts +0 -2
- package/build/shared/helper/rest/query.d.ts +0 -7
- package/build/shared/helper/rest/skip.d.ts +0 -1
- package/build/shared/helper/rest/sort.d.ts +0 -4
- package/build/shared/interfaces/BatchOperation.d.ts +0 -77
- package/build/shared/interfaces/IProfile.d.ts +0 -26
- package/build/shared/interfaces/IProfileSchema.d.ts +0 -41
- package/build/shared/interfaces/ai.d.ts +0 -303
- package/build/shared/interfaces/alexa/IAccumulatedAlexaResponse.d.ts +0 -13
- package/build/shared/interfaces/alexa/IAlexaCard.d.ts +0 -20
- package/build/shared/interfaces/alexa/IAlexaDirective.d.ts +0 -4
- package/build/shared/interfaces/alexa/IAlexaDisplayDirective.d.ts +0 -5
- package/build/shared/interfaces/alexa/IAlexaDisplayImage.d.ts +0 -5
- package/build/shared/interfaces/alexa/IAlexaDisplayImageSource.d.ts +0 -6
- package/build/shared/interfaces/alexa/IAlexaDisplayListItem.d.ts +0 -8
- package/build/shared/interfaces/alexa/IAlexaDisplayTemplate.d.ts +0 -13
- package/build/shared/interfaces/alexa/IAlexaDisplayText.d.ts +0 -4
- package/build/shared/interfaces/alexa/IAlexaDisplayTextContent.d.ts +0 -6
- package/build/shared/interfaces/alexa/IAlexaEntity.d.ts +0 -7
- package/build/shared/interfaces/alexa/IAlexaNLUConnector.d.ts +0 -11
- package/build/shared/interfaces/alexa/IAlexaObject.d.ts +0 -15
- package/build/shared/interfaces/alexa/IAlexaOutputSpeech.d.ts +0 -14
- package/build/shared/interfaces/alexa/IAlexaRequest.d.ts +0 -11
- package/build/shared/interfaces/alexa/IAlexaRequestBody.d.ts +0 -21
- package/build/shared/interfaces/alexa/IAlexaResponse.d.ts +0 -29
- package/build/shared/interfaces/alexa/IAlexaSlots.d.ts +0 -10
- package/build/shared/interfaces/alexa/IAmazonUser.d.ts +0 -24
- package/build/shared/interfaces/alexa/IRenewTokenError.d.ts +0 -10
- package/build/shared/interfaces/alexa/IRenewTokenSuccess.d.ts +0 -18
- package/build/shared/interfaces/alexa/ISimulationResult.d.ts +0 -35
- package/build/shared/interfaces/alexa/ISkill.d.ts +0 -30
- package/build/shared/interfaces/alexa/ISkillList.d.ts +0 -12
- package/build/shared/interfaces/alexa/IVendor.d.ts +0 -14
- package/build/shared/interfaces/alexa/IVendorList.d.ts +0 -7
- package/build/shared/interfaces/alexa/index.d.ts +0 -26
- package/build/shared/interfaces/amqpInterface.d.ts +0 -129
- package/build/shared/interfaces/analytics/IAnalyticsSourceData.d.ts +0 -9
- package/build/shared/interfaces/analytics/IAnalyticsUserInputData.d.ts +0 -5
- package/build/shared/interfaces/analytics/IBaseAnalyticsData.d.ts +0 -25
- package/build/shared/interfaces/analytics/IBaseAnalyticsSourceData.d.ts +0 -17
- package/build/shared/interfaces/analytics/TAnalyticsSource.d.ts +0 -1
- package/build/shared/interfaces/analytics/TAnalyticsType.d.ts +0 -1
- package/build/shared/interfaces/analytics/index.d.ts +0 -6
- package/build/shared/interfaces/cognigySlots.d.ts +0 -95
- package/build/shared/interfaces/debugEvents/IActiveEntrypointsChangedEventPayload.d.ts +0 -7
- package/build/shared/interfaces/debugEvents/IContextChangedEventPayload.d.ts +0 -5
- package/build/shared/interfaces/debugEvents/IFinalPingEventPayload.d.ts +0 -5
- package/build/shared/interfaces/debugEvents/IInputChangedEventPayload.d.ts +0 -5
- package/build/shared/interfaces/debugEvents/INodeErrorEventPayload.d.ts +0 -5
- package/build/shared/interfaces/debugEvents/INodeExecutedEventPayload.d.ts +0 -4
- package/build/shared/interfaces/debugEvents/IOutputEventPayload.d.ts +0 -7
- package/build/shared/interfaces/debugEvents/IProfileChangedEventPayload.d.ts +0 -5
- package/build/shared/interfaces/debugEvents/ISwitchedFlowEventPayload.d.ts +0 -4
- package/build/shared/interfaces/debugEvents/TDebugEventPayload.d.ts +0 -10
- package/build/shared/interfaces/debugEvents/TDebugEventType.d.ts +0 -2
- package/build/shared/interfaces/dialogflowInterface.d.ts +0 -236
- package/build/shared/interfaces/endpointInterface.d.ts +0 -888
- package/build/shared/interfaces/handover.d.ts +0 -198
- package/build/shared/interfaces/journeys/IJourney.d.ts +0 -32
- package/build/shared/interfaces/journeys/IJourneyProgress.d.ts +0 -26
- package/build/shared/interfaces/journeys/IJourneyTrackEvent.d.ts +0 -122
- package/build/shared/interfaces/journeys/index.d.ts +0 -3
- package/build/shared/interfaces/messageAPI/ai.d.ts +0 -566
- package/build/shared/interfaces/messageAPI/endpoints.d.ts +0 -644
- package/build/shared/interfaces/resources/IAuditEvent.d.ts +0 -129
- package/build/shared/interfaces/resources/IChart.d.ts +0 -36
- package/build/shared/interfaces/resources/IChartNode.d.ts +0 -48
- package/build/shared/interfaces/resources/IConnection.d.ts +0 -34
- package/build/shared/interfaces/resources/IConnectionSchema.d.ts +0 -25
- package/build/shared/interfaces/resources/IEndpoint.d.ts +0 -68
- package/build/shared/interfaces/resources/IEndpointDisplayName.d.ts +0 -5
- package/build/shared/interfaces/resources/IEntity.d.ts +0 -6
- package/build/shared/interfaces/resources/IEntityMeta.d.ts +0 -48
- package/build/shared/interfaces/resources/IExtension.d.ts +0 -40
- package/build/shared/interfaces/resources/IFile.d.ts +0 -26
- package/build/shared/interfaces/resources/IFlow.d.ts +0 -40
- package/build/shared/interfaces/resources/IFlowLogicSettingsV2.d.ts +0 -35
- package/build/shared/interfaces/resources/IFlowState.d.ts +0 -20
- package/build/shared/interfaces/resources/IIntent.d.ts +0 -28
- package/build/shared/interfaces/resources/ILexicon.d.ts +0 -13
- package/build/shared/interfaces/resources/ILexiconEntry.d.ts +0 -18
- package/build/shared/interfaces/resources/ILexiconKeyphrase.d.ts +0 -15
- package/build/shared/interfaces/resources/ILexiconSlot.d.ts +0 -13
- package/build/shared/interfaces/resources/ILocale.d.ts +0 -17
- package/build/shared/interfaces/resources/IMongoStoredBuffer.d.ts +0 -7
- package/build/shared/interfaces/resources/INLUConnector.d.ts +0 -130
- package/build/shared/interfaces/resources/INLUTransformerFunction.d.ts +0 -37
- package/build/shared/interfaces/resources/INodeDescriptorSet.d.ts +0 -153
- package/build/shared/interfaces/resources/IPlaybook.d.ts +0 -91
- package/build/shared/interfaces/resources/IProject.d.ts +0 -14
- package/build/shared/interfaces/resources/IResourceInSnapshotItem.d.ts +0 -9
- package/build/shared/interfaces/resources/ISerializedBuffer.d.ts +0 -4
- package/build/shared/interfaces/resources/ISettings.d.ts +0 -59
- package/build/shared/interfaces/resources/ISettings.js +0 -72
- package/build/shared/interfaces/resources/ISnapshot.d.ts +0 -16
- package/build/shared/interfaces/resources/ISnippet.d.ts +0 -26
- package/build/shared/interfaces/resources/ITemplateConfiguration.d.ts +0 -10
- package/build/shared/interfaces/resources/TNLUConnectorType.d.ts +0 -5
- package/build/shared/interfaces/resources/TResourceType.d.ts +0 -59
- package/build/shared/interfaces/resources/TRestChannelType.d.ts +0 -5
- package/build/shared/interfaces/resources/TSocketChannelType.d.ts +0 -5
- package/build/shared/interfaces/resources/TWebhookChannelType.d.ts +0 -5
- package/build/shared/interfaces/resources/chart/IChartExecutable.d.ts +0 -10
- package/build/shared/interfaces/resources/chart/IChartExecutableNode.d.ts +0 -35
- package/build/shared/interfaces/resources/chart/INodeExecutionAPI.d.ts +0 -74
- package/build/shared/interfaces/resources/chart/INodeExecutionCognigyObject.d.ts +0 -5
- package/build/shared/interfaces/resources/chart/INodeToExecute.d.ts +0 -8
- package/build/shared/interfaces/resources/chart/IPartialChart.d.ts +0 -7
- package/build/shared/interfaces/resources/chart/IUndoRedoAction.d.ts +0 -20
- package/build/shared/interfaces/resources/chart/nodeFunctions/IIfNodeParams.d.ts +0 -7
- package/build/shared/interfaces/resources/chart/nodeFunctions/INodeFunction.d.ts +0 -10
- package/build/shared/interfaces/resources/chart/nodeFunctions/ISayParams.d.ts +0 -18
- package/build/shared/interfaces/resources/chart/nodeFunctions/ISendTextNodeParams.d.ts +0 -9
- package/build/shared/interfaces/resources/flow.d.ts +0 -172
- package/build/shared/interfaces/resources/flow.js +0 -3
- package/build/shared/interfaces/resources/intent/IDefaultReply.d.ts +0 -22
- package/build/shared/interfaces/resources/intent/IIntent.d.ts +0 -39
- package/build/shared/interfaces/resources/intent/IIntentRelation.d.ts +0 -13
- package/build/shared/interfaces/resources/intent/IIntentTrainGroup.d.ts +0 -19
- package/build/shared/interfaces/resources/intent/ILearningSentence.d.ts +0 -17
- package/build/shared/interfaces/resources/intent/ISentence.d.ts +0 -38
- package/build/shared/interfaces/resources/intents.d.ts +0 -77
- package/build/shared/interfaces/resources/oauth.d.ts +0 -47
- package/build/shared/interfaces/resources/projectTemplates.d.ts +0 -71
- package/build/shared/interfaces/restAPI/administration/auditevent/v2.0/IAuditEventIndexItem_2_0.d.ts +0 -43
- package/build/shared/interfaces/restAPI/administration/auditevent/v2.0/IAuditEvent_2_0.d.ts +0 -52
- package/build/shared/interfaces/restAPI/administration/auditevent/v2.0/IIndexAuditEventsRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/administration/auditevent/v2.0/IReadAuditEventRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/administration/auditevent/v2.0/index.d.ts +0 -4
- package/build/shared/interfaces/restAPI/administration/passwordreset/v2.0/IRequestPasswordResetRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/administration/passwordreset/v2.0/IResetPasswordRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/administration/passwordreset/v2.0/IValidatePasswordResetTokenRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/administration/passwordreset/v2.0/index.d.ts +0 -3
- package/build/shared/interfaces/restAPI/administration/system/v2.0/IGetSystemLicenseState_2_0.d.ts +0 -5
- package/build/shared/interfaces/restAPI/administration/system/v2.0/IGetSystemMessage_2_0.d.ts +0 -6
- package/build/shared/interfaces/restAPI/administration/system/v2.0/ISetSystemLicense_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/administration/system/v2.0/index.d.ts +0 -3
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IAlexaSkill_2_0.d.ts +0 -58
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IAmazonUser_2_0.d.ts +0 -36
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/ICreateAuthenticatedAmazonUserRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IDeleteAmazonAccountRest_2_0.d.ts +0 -4
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IDeployAlexaEndpointRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IGetAlexaSkillsRest_2_0.d.ts +0 -4
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IGetAmazonAccountRest_2_0.d.ts +0 -3
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IHandleAmazonAccessTokenFromAuthCodeRest_2_0.d.ts +0 -4
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IHandleAmazonAccessTokenFromAuthCodeRest_2_0.js +0 -3
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IRedirectToAmazonLoginRest_2_0.d.ts +0 -5
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/IRedirectToAmazonLoginRest_2_0.js +0 -3
- package/build/shared/interfaces/restAPI/external/alexa/v2.0/index.d.ts +0 -7
- package/build/shared/interfaces/restAPI/metrics/logs/v2.0/IIndexLogEntriesRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/metrics/logs/v2.0/ILogEntryIndexItem_2_0.d.ts +0 -32
- package/build/shared/interfaces/restAPI/metrics/logs/v2.0/ILogEntry_2_0.d.ts +0 -32
- package/build/shared/interfaces/restAPI/metrics/logs/v2.0/IReadLogEntryRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/metrics/logs/v2.0/index.d.ts +0 -2
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/ICreateProfileRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IDeleteProfileRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IExportProfileDataRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IGetProfileSchemaRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IIndexProfilesRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IMergeProfilesRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IProfileIndexItem_2_0.d.ts +0 -31
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IProfileSchema_2_0.d.ts +0 -64
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IProfile_2_0.d.ts +0 -82
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IReadProfileRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IRemoveContactIdFromProfileRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IRemoveConversationsOfProfileRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IRemoveProfileDataRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/ISetProfileSchemaRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IUnmergeProfilesRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/IUpdateProfileRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/metrics/profiles/v2.0/index.d.ts +0 -12
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.0/ICancelTaskRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.0/IIndexTasksRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.0/IReadTaskRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.0/ITaskIndexItem_2_0.d.ts +0 -58
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.0/ITask_2_0.d.ts +0 -115
- package/build/shared/interfaces/restAPI/metrics/tasks/v2.0/index.d.ts +0 -4
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/IBatchTrainerRecordsRest_2_0.d.ts +0 -18
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/IComposeTrainerRecordsDownloadLinkRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/IIndexTrainerRecordsRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/IPackageTrainerRecordsRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/IReadTrainerRecordRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/ITrainerRecordIndexItem_2_0.d.ts +0 -45
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/ITrainerRecord_2_0.d.ts +0 -194
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/IUploadTrainerRecordsPackageRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/metrics/trainer/v2.0/index.d.ts +0 -6
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IAddChartNodeLocalizationRest_2_0.d.ts +0 -15
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IChartNodeIndexItem_2_0.d.ts +0 -53
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IChartNodeRelation_2_0.d.ts +0 -29
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IChartNode_2_0.d.ts +0 -61
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IChart_2_0.d.ts +0 -25
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/ICopyChartNodeRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/ICreateChartNodeRest_2_0.d.ts +0 -21
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/ICutChartNodeRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IDeleteChartNodeRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IGetUndoRedoStepsRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IIndexChartNodesRest_2_0.d.ts +0 -16
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IMoveChartNodeRest_2_0.d.ts +0 -18
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IPasteChartNodeRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IReadChartNodeRest_2_0.d.ts +0 -15
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IReadChartRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IRedoChartRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IRemoveChartNodeLocalizationRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IUndoChartRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/IUpdateChartNodeRestData_2_0.d.ts +0 -16
- package/build/shared/interfaces/restAPI/resources/chart/v2.0/index.d.ts +0 -15
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IConnectionField_2_0.d.ts +0 -22
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IConnectionIndexItem_2_0.d.ts +0 -43
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IConnection_2_0.d.ts +0 -54
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/ICreateConnectionFieldRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/ICreateConnectionRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IDeleteConnectionFieldRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IDeleteConnectionRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IIndexConnectionsRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IReadConnectionRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/IUpdateConnectionRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/connection/v2.0/index.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/connectionSchema/v2.0/IConnectionSchemaIndexItem_2_0.d.ts +0 -36
- package/build/shared/interfaces/restAPI/resources/connectionSchema/v2.0/IConnectionSchema_2_0.d.ts +0 -53
- package/build/shared/interfaces/restAPI/resources/connectionSchema/v2.0/IIndexConnectionSchemasRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/connectionSchema/v2.0/index.d.ts +0 -3
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/ICreateEndpointRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/IDeleteEndpointRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/IEndpointIndexItem_2_0.d.ts +0 -36
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/IEndpoint_2_0.d.ts +0 -365
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/IIndexEndpointsRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/IReadEndpointRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/IUpdateEndpointRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/endpoint/v2.0/index.d.ts +0 -6
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/IDeleteExtensionRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/IExtensionIndexItem_2_0.d.ts +0 -38
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/IExtension_2_0.d.ts +0 -83
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/IIndexExtensionsRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/IReadExtensionRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/IUploadExtensionRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/extension/v2.0/index.d.ts +0 -4
- package/build/shared/interfaces/restAPI/resources/file/v2.0/IFile_2_0.d.ts +0 -26
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IAddFlowLocalizationRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/ICreateFlowRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IDeleteFlowRest_2_0.d.ts +0 -5
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IFlowIndexItem_2_0.d.ts +0 -27
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IFlow_2_0.d.ts +0 -56
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IIndexFlowsRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IReadFlowRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IRemoveFlowLocalizationRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/IUpdateFlowRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/index.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IAddIntentLocalizationRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/ICreateIntentRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IDeleteIntentRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IExportIntentsRest_2_0.d.ts +0 -15
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IImportIntentsRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IIndexIntentsRest_2_0.d.ts +0 -17
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IIntentIndexItem_2_0.d.ts +0 -40
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IIntent_2_0.d.ts +0 -75
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IReadIntentRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IRemoveIntentLocalizationRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/ITrainIntentsRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/IUpdateIntentRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/intent/index.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/learningSentence/IDeleteLearningSentenceRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/learningSentence/IIndexLearningSentenceRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/learningSentence/ILearningSentenceIndexItem_2_0.d.ts +0 -24
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/learningSentence/ILearningSentence_2_0.d.ts +0 -35
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/learningSentence/IReadLearningSentenceRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/learningSentence/index.d.ts +0 -3
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/IBatchSentencesRest_2_0.d.ts +0 -15
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/ICreateSentenceRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/IDeleteSentenceRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/IIndexSentenceRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/IIndexSentenceRest_2_0.js +0 -3
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/IReadSentenceRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/ISentenceIndexItem_2_0.d.ts +0 -41
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/ISentence_2_0.d.ts +0 -68
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/IUpdateSentenceRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/sentence/index.d.ts +0 -6
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/ICreateSettingsRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/ICreateSettingsRest_2_0.js +0 -4
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IDeleteSettingsRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IDeleteSettingsRest_2_0.js +0 -4
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IReadSettingsRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IReadSettingsRest_2_0.js +0 -4
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/ISettings_2_0.d.ts +0 -1
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/ISettings_2_0.js +0 -3
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IUpdateSettingsRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/IUpdateSettingsRest_2_0.js +0 -4
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/settings/index.d.ts +0 -4
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IAddIntentToFlowStateRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/ICreateFlowStateRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IDeleteFlowStateRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IFlowStateIndexItem_2_0.d.ts +0 -42
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IFlowState_2_0.d.ts +0 -46
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IIndexFlowStatesRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IReadFlowStateRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IRemoveIntentFromFlowStateRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/IUpdateFlowStateRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/flow/v2.0/state/index.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IIndexJourneysRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IJourneyIndexItem_2_0.d.ts +0 -40
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IJourneyProgress_2_0.d.ts +0 -66
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IJourneyStep_2_0.d.ts +0 -45
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IJourneyTrackEvents_2_0.d.ts +0 -20
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IJourney_2_0.d.ts +0 -41
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IReadJourneyProgressRest_2_0.d.ts +0 -5
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IReadJourneyRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/ITrackJourneyEventRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/IUpdateSelectedJourneyRest_2_0.d.ts +0 -19
- package/build/shared/interfaces/restAPI/resources/journey/v2.0/index.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IAddKeyphraseToLexiconEntryRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IAddSlotToLexiconEntryRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IBatchLexiconEntriesRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ICreateLexiconEntryRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ICreateLexiconRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ICreateLexiconSlotRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IDeleteLexiconEntryRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IDeleteLexiconRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IDeleteLexiconSlotRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IExportFromLexiconRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IImportIntoLexiconRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IIndexLexiconEntriesRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IIndexLexiconEntryKeyphrasesRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IIndexLexiconKeyphrasesRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IIndexLexiconSlotsRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IIndexLexiconsRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ILexiconEntryIndexItem_2_0.d.ts +0 -38
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ILexiconEntry_2_0.d.ts +0 -47
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ILexiconIndexItem_2_0.d.ts +0 -32
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ILexiconKeyphraseIndexItem_2_0.d.ts +0 -30
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ILexiconKeyphrase_2_0.d.ts +0 -34
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ILexiconSlotIndexItem_2_0.d.ts +0 -22
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ILexiconSlot_2_0.d.ts +0 -29
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/ILexicon_2_0.d.ts +0 -34
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IReadLexiconEntryRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IReadLexiconRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IRemoveKeyphraseFromLexiconEntryRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IRemoveSlotFromLexiconEntryRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IUpdateLexiconEntryRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IUpdateLexiconKeyphraseRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IUpdateLexiconRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/IUpdateLexiconSlotRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/lexicon/v2.0/index.d.ts +0 -26
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/ICreateLocaleRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/IDeleteLocaleRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/IIndexLocalesRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/ILocaleIndexItem_2_0.d.ts +0 -41
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/ILocale_2_0.d.ts +0 -44
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/IReadLocaleRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/IUpdateLocaleRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/TNLULanguage_2_0.d.ts +0 -37
- package/build/shared/interfaces/restAPI/resources/locales/v2.0/index.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/ICreateNLUConnectorRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/IDeleteNLUConnectorRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/IIndexNLUConnectorsRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/INLUConnectorIndexItem_2_0.d.ts +0 -36
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/INLUConnector_2_0.d.ts +0 -315
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/IReadINLUConnectorRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/IUpdateINLUConnectorRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/TNLUConnectorType_2_0.d.ts +0 -22
- package/build/shared/interfaces/restAPI/resources/nluconnector/v2.0/index.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/nodedescriptorsets/v2.0/IIndexNodeDescriptorsRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/nodedescriptorsets/v2.0/INodeDescriptor_2_0.d.ts +0 -271
- package/build/shared/interfaces/restAPI/resources/nodedescriptorsets/v2.0/index.d.ts +0 -1
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IChangePlaybookStepOrderRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/ICreatePlaybookRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/ICreatePlaybookStepAssertRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/ICreatePlaybookStepRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IDeletePlaybookRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IDeletePlaybookStepAssertRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IDeletePlaybookStepRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IIndexPlaybooksRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IPlaybookIndexItem_2_0.d.ts +0 -25
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IPlaybookStepAssert_2_0.d.ts +0 -38
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IPlaybookStep_2_0.d.ts +0 -38
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IPlaybook_2_0.d.ts +0 -46
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IReadPlaybookRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IUpdatePlaybookRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IUpdatePlaybookStepAssertRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/IUpdatePlaybookStepRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/playbook/v2.0/index.d.ts +0 -13
- package/build/shared/interfaces/restAPI/resources/project/v2.0/ICreateProjectByTemplateRest_2_0.d.ts +0 -48
- package/build/shared/interfaces/restAPI/resources/project/v2.0/ICreateProjectRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IDeleteProjectRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IIndexProjectsRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IProjectIndexItem_2_0.d.ts +0 -24
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IProject_2_0.d.ts +0 -41
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IReadProjectRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IUpdateProjectRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/project/v2.0/IValidateProjectNameRest_2_0.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/project/v2.0/index.d.ts +0 -7
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IReadSettingsRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IReadSettingsRest_2_0.js +0 -4
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/ISettings_2_0.d.ts +0 -134
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/ISettings_2_0.js +0 -3
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IUpdateSettingsRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IUpdateSettingsRest_2_0.js +0 -4
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/index.d.ts +0 -2
- package/build/shared/interfaces/restAPI/resources/project/v2.0/snippet/ICreateSnippetRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/project/v2.0/snippet/IDeleteSnippetRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/project/v2.0/snippet/IIndexSnippetsRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/project/v2.0/snippet/ISnippetIndexItem_2_0.d.ts +0 -24
- package/build/shared/interfaces/restAPI/resources/project/v2.0/snippet/ISnippet_2_0.d.ts +0 -36
- package/build/shared/interfaces/restAPI/resources/project/v2.0/snippet/index.d.ts +0 -3
- package/build/shared/interfaces/restAPI/resources/search/v2.0/ISearchResourcesRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/search/v2.0/ISearchResultIndexItem_2_0.d.ts +0 -37
- package/build/shared/interfaces/restAPI/resources/search/v2.0/index.d.ts +0 -1
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IComposeSnapshotDownloadLinkRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/ICreateSnapshotRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IDeleteSnapshotRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IIndexResourcesInSnapshotRest_2_0.d.ts +0 -11
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IIndexSnapshotsRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IPackageSnapshotRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IReadSnapshotRest_2_0.d.ts +0 -9
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IResourceInSnapshotItem_2_0.d.ts +0 -59
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IRestoreSnapshotRest_2_0.d.ts +0 -8
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/ISnapshotIndexItem_2_0.d.ts +0 -53
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/ISnapshot_2_0.d.ts +0 -59
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/IUploadSnapshotPackageRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/resources/snapshot/v2.0/index.d.ts +0 -12
- package/build/shared/interfaces/restAPI/sessions/endpoint/v2.0/IInjectRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/sessions/endpoint/v2.0/INotifyRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/sessions/endpoint/v2.0/index.d.ts +0 -2
- package/build/shared/interfaces/restAPI/sessions/nlu/v2.0/IInjectContextRest_2_0.d.ts +0 -14
- package/build/shared/interfaces/restAPI/sessions/nlu/v2.0/IInjectStateRest_2_0.d.ts +0 -12
- package/build/shared/interfaces/restAPI/sessions/nlu/v2.0/IResetContextRest_2_0.d.ts +0 -13
- package/build/shared/interfaces/restAPI/sessions/nlu/v2.0/IResetStateRest_2_0.d.ts +0 -10
- package/build/shared/interfaces/restAPI/sessions/nlu/v2.0/index.d.ts +0 -4
- package/build/shared/interfaces/rule.d.ts +0 -12
- package/build/shared/interfaces/security.d.ts +0 -63
- package/build/shared/interfaces/security.js +0 -3
- package/build/shared/interfaces/smooch.d.ts +0 -82
- package/build/shared/interfaces/smooch.js +0 -3
- package/build/shared/interfaces/taskmanager/ITask.d.ts +0 -39
- package/build/shared/interfaces/taskmanager/ITaskReturnValue.d.ts +0 -25
- package/build/shared/interfaces/taskmanager/ITaskScope.d.ts +0 -4
- package/build/shared/interfaces/taskmanager/TTaskStatus.d.ts +0 -2
- package/build/shared/interfaces/taskmanager/index.d.ts +0 -4
- package/build/shared/interfaces/trainer/ITrainerRecord.d.ts +0 -53
- package/build/shared/interfaces/trainer/THandleAction.d.ts +0 -2
- package/build/shared/interfaces/trainer/index.d.ts +0 -2
- package/build/shared/interfaces/transformers/ITransformerFunction.d.ts +0 -10
- package/build/shared/interfaces/transformers/baseTransformers.d.ts +0 -33
- package/build/shared/interfaces/transformers/index.d.ts +0 -2
- package/build/shared/interfaces/twilioInterface.d.ts +0 -56
- package/build/shared/interfaces/types/TCSSColorName.d.ts +0 -161
- package/build/shared/interfaces/types/TCognigyColorName.d.ts +0 -19
- package/build/shared/interfaces/types/TMongoId.d.ts +0 -1
- package/build/shared/interfaces/types/TNLULanguage.d.ts +0 -2
- package/build/shared/interfaces/types/TTimestamp.d.ts +0 -2
- package/build/shared/interfaces/user.d.ts +0 -32
- package/build/shared/json-schema.d.ts +0 -138
- package/build/shared/mongoose/pagination/ICursorBasedPaginationReturnValue.d.ts +0 -29
- package/build/shared/mongoose/pagination/IMongoosePaginationPluginReturnValue.d.ts +0 -6
- package/build/shared/mongoose/pagination/IRestFilterQuery.d.ts +0 -3
- package/build/shared/mongoose/pagination/IRestPagination.d.ts +0 -12
- package/build/shared/mongoose/pagination/IRestPaginationQuery.d.ts +0 -54
- package/build/shared/mongoose/pagination/index.d.ts +0 -5
- package/build/shared/payloadValidator.d.ts +0 -5
- package/build/shared/payloadValidator.js +0 -253
|
@@ -1,566 +0,0 @@
|
|
|
1
|
-
import { IntentScore } from "../resources/intents";
|
|
2
|
-
import { IGoogleResponse, IMicrosoftTeamsData, IGoogleAccountLinkedUser, ISlackData, ITwilioAutopilotData, IMicrosoftBotFrameworkData, TRingCentralEngageData } from "../endpointInterface";
|
|
3
|
-
import { IAlexaRequestBody } from "../alexa";
|
|
4
|
-
import { ITwilioAutopilotRequestBody } from "../twilioInterface";
|
|
5
|
-
import { IDialogflowRequest } from "../dialogflowInterface";
|
|
6
|
-
import { IDialogflowEndpointSettings, TChannelType, ITwilioAutopilotEndpointSettings, TDashbotPlatform, TEndpointType } from "./endpoints";
|
|
7
|
-
import { IPayloadBaseMetaData } from "../amqpInterface";
|
|
8
|
-
import { ISystemSlots } from "../cognigySlots";
|
|
9
|
-
import { IAnalyticsSourceData } from "../analytics";
|
|
10
|
-
import { THandoverProvider } from "../handover";
|
|
11
|
-
import { IProjectScope, IOrganisationScope } from "../security";
|
|
12
|
-
import { TDebugEventType } from "../debugEvents/TDebugEventType";
|
|
13
|
-
import { IFinalPingEventPayload } from "../debugEvents/IFinalPingEventPayload";
|
|
14
|
-
import { ILoggerStack } from "../../errors";
|
|
15
|
-
import { IJSONSchema } from "../../json-schema";
|
|
16
|
-
export interface IUser {
|
|
17
|
-
userId: string;
|
|
18
|
-
sessionId: string;
|
|
19
|
-
channel: TChannelType;
|
|
20
|
-
endpointType: TEndpointType;
|
|
21
|
-
ip: string;
|
|
22
|
-
organisation: string;
|
|
23
|
-
type: "user" | "device";
|
|
24
|
-
}
|
|
25
|
-
export declare const userSchema: IJSONSchema<IUser>;
|
|
26
|
-
/**
|
|
27
|
-
* The payload to process a message
|
|
28
|
-
* with a flow in AI.
|
|
29
|
-
*/
|
|
30
|
-
export interface IProcessInputPayload {
|
|
31
|
-
type: "processInput";
|
|
32
|
-
data: IProcessInputData;
|
|
33
|
-
}
|
|
34
|
-
export interface IProcessInputData extends IPayloadBaseMetaData {
|
|
35
|
-
user: IUser;
|
|
36
|
-
message: {
|
|
37
|
-
text?: string;
|
|
38
|
-
data?: {
|
|
39
|
-
[key: string]: any;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
config: IProcessInputDataConfig;
|
|
43
|
-
/**
|
|
44
|
-
* Settings that are endpoint specific.
|
|
45
|
-
*/
|
|
46
|
-
endpointSettings?: IProcessInputEndpointSettings;
|
|
47
|
-
}
|
|
48
|
-
export interface IProcessInputDataConfig {
|
|
49
|
-
flowId: string;
|
|
50
|
-
entrypoint: string;
|
|
51
|
-
localeReferenceId: string;
|
|
52
|
-
reloadFlow: boolean;
|
|
53
|
-
resetFlow: boolean;
|
|
54
|
-
resetContext: boolean;
|
|
55
|
-
resetState: boolean;
|
|
56
|
-
/**
|
|
57
|
-
* The id of the NLUConnector to use.
|
|
58
|
-
*/
|
|
59
|
-
nluConnectorId: string;
|
|
60
|
-
/**
|
|
61
|
-
* Whether we should log analytics for messages
|
|
62
|
-
* received from this endpoint
|
|
63
|
-
*/
|
|
64
|
-
useAnalytics: boolean;
|
|
65
|
-
/**
|
|
66
|
-
* Whether we should create / update
|
|
67
|
-
* Contact Profiles for this message
|
|
68
|
-
*/
|
|
69
|
-
useContactProfiles: boolean;
|
|
70
|
-
/**
|
|
71
|
-
* Whether to collect conversations history for this endpoint
|
|
72
|
-
*/
|
|
73
|
-
useConversations: boolean;
|
|
74
|
-
/**
|
|
75
|
-
* Whether to mask sensitive data in analytics for this endpoint
|
|
76
|
-
*/
|
|
77
|
-
maskAnalytics: boolean;
|
|
78
|
-
/**
|
|
79
|
-
* Whether to mask sensitive data in logs for this endpoint
|
|
80
|
-
*/
|
|
81
|
-
maskLogging: boolean;
|
|
82
|
-
/**
|
|
83
|
-
* Whether to use Chatbase
|
|
84
|
-
* to collect analytics data
|
|
85
|
-
*/
|
|
86
|
-
useChatbaseAnalytics: boolean;
|
|
87
|
-
/**
|
|
88
|
-
* The apikey of the Chatbase
|
|
89
|
-
* bot to collect analytics for.
|
|
90
|
-
* Only matters if the useChatbaseAnalytics
|
|
91
|
-
* is true.
|
|
92
|
-
*/
|
|
93
|
-
chatbaseApikey: string;
|
|
94
|
-
/**
|
|
95
|
-
* Whether to use Dashbot
|
|
96
|
-
* to collect analytics data
|
|
97
|
-
*/
|
|
98
|
-
useDashbotAnalytics: boolean;
|
|
99
|
-
/**
|
|
100
|
-
* The apikey of the Dashbot
|
|
101
|
-
* bot to collect analytics for.
|
|
102
|
-
* Only matters if the useDashbotAnalytics
|
|
103
|
-
* is true.
|
|
104
|
-
*/
|
|
105
|
-
dashbotApikey: string;
|
|
106
|
-
/**
|
|
107
|
-
* The selected platform of the Dashbot
|
|
108
|
-
* bot to collect analytics for.
|
|
109
|
-
* Only matters if the useDashbotAnalytics
|
|
110
|
-
* is true.
|
|
111
|
-
*/
|
|
112
|
-
dashbotPlatform: TDashbotPlatform;
|
|
113
|
-
/**
|
|
114
|
-
* The URLToken of the Endpoint
|
|
115
|
-
* that is sused.
|
|
116
|
-
*/
|
|
117
|
-
URLToken: string;
|
|
118
|
-
handoverSettings: {
|
|
119
|
-
/**
|
|
120
|
-
* Whether to send all messages from the
|
|
121
|
-
* user to the configured handover tool,
|
|
122
|
-
* or whether to only send the conversations
|
|
123
|
-
* that are actually in a handover
|
|
124
|
-
*/
|
|
125
|
-
forwardOnlyHandoverConversations: boolean;
|
|
126
|
-
provider: THandoverProvider;
|
|
127
|
-
/**
|
|
128
|
-
* Whether to inject the message
|
|
129
|
-
* into the Flow even if we are in a handover
|
|
130
|
-
*/
|
|
131
|
-
injectMessageToFlow?: boolean;
|
|
132
|
-
};
|
|
133
|
-
sessionExpiration: number;
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
* Endpoint specific settings
|
|
137
|
-
* that AI needs to know about.
|
|
138
|
-
*/
|
|
139
|
-
export declare type IProcessInputEndpointSettings = IProcessInputAlexaSettings | IProcessInputDialogflowSettings | {};
|
|
140
|
-
export interface IProcessInputAlexaSettings {
|
|
141
|
-
/**
|
|
142
|
-
* Whether to reparse slots
|
|
143
|
-
* found by Alexa with COGNIGY.AI NLU.
|
|
144
|
-
*/
|
|
145
|
-
reparseAlexaSlots: boolean;
|
|
146
|
-
}
|
|
147
|
-
export interface IProcessInputDialogflowSettings extends IDialogflowEndpointSettings {
|
|
148
|
-
}
|
|
149
|
-
export interface IProcessInputTwilioAutopilotSettings extends ITwilioAutopilotEndpointSettings {
|
|
150
|
-
}
|
|
151
|
-
export interface IProcessInputHeaders {
|
|
152
|
-
/**
|
|
153
|
-
* This is a unique id that is used by the endpoint to find the endpointClient instance that processed the message from the user.
|
|
154
|
-
* The endpointClient instance knows the channel, the userId and most importantly the response object to use to respond to the user.
|
|
155
|
-
*/
|
|
156
|
-
endpointClientInstanceId: string;
|
|
157
|
-
endpointId: string;
|
|
158
|
-
}
|
|
159
|
-
export interface IProcessOutputPayload {
|
|
160
|
-
type: TDebugEventType;
|
|
161
|
-
data: IProcessOutputData;
|
|
162
|
-
}
|
|
163
|
-
export interface IProcessOutputData extends ILoggerStack {
|
|
164
|
-
text?: string;
|
|
165
|
-
data?: AnyProcessOutputData;
|
|
166
|
-
type?: IFinalPingEventPayload["type"];
|
|
167
|
-
analyticsData?: IAnalyticsSourceData;
|
|
168
|
-
[key: string]: any;
|
|
169
|
-
}
|
|
170
|
-
export declare type TFinalPingType = "regular" | "cognigyStopFlow";
|
|
171
|
-
export declare type AnyProcessOutputData = IProcessOutputAlexaData | IProcessOutputAudioCodesData | IProcessOutputFacebookData | IProcessOutputGoogleData | IProcessOutputLineData | IProcessOutputMicrosoftBotFrameworkData | IProcessOutputMicrosoftTeamsData | IProcessOutputRingCentralEngageData | IProcessOutputSlackData | IProcessOutputSmoochData | IProcessOutputTwilioData | IProcessOutputTwilioAutopilotData | IProcessOutputTwilioSmsData | IProcessOutputUserlikeData | ISwitchedFlowData | {
|
|
172
|
-
[key: string]: any;
|
|
173
|
-
};
|
|
174
|
-
export interface ICognigySayObject extends Partial<IProcessOutputAlexaDataObject>, Partial<IProcessOutputAudioCodesDataObject>, Partial<IProcessOutputFacebookDataObject>, Partial<IProcessOutputGoogleDataObject>, Partial<IProcessOutputLineDataObject>, Partial<IProcessOutputMicrosoftBotFrameworkDataObject>, Partial<IProcessOutputRingCentralEngageDataObject>, Partial<IProcessOutputSlackDataObject>, Partial<IProcessOutputDefaultDataObject>, Partial<IProcessOutputSmoochDataObject>, Partial<IProcessOutputTwilioDataObject>, Partial<IProcessOutputTwilioAutopilotDataObject>, Partial<IProcessOutputTwilioSmsDataObject>, Partial<IProcessOutputUserlikeDataObject>, Partial<IProcessOutputWebchatDataObject> {
|
|
175
|
-
}
|
|
176
|
-
/**
|
|
177
|
-
* Alexa
|
|
178
|
-
*/
|
|
179
|
-
export interface IProcessOutputAlexaData {
|
|
180
|
-
_cognigy: IProcessOutputAlexaDataObject;
|
|
181
|
-
}
|
|
182
|
-
export interface IProcessOutputAlexaDataObject {
|
|
183
|
-
_alexa: {
|
|
184
|
-
[key: string]: any;
|
|
185
|
-
};
|
|
186
|
-
}
|
|
187
|
-
/**
|
|
188
|
-
* AudioCodes
|
|
189
|
-
*/
|
|
190
|
-
export interface IProcessOutputAudioCodesData {
|
|
191
|
-
_cognigy: IProcessOutputAudioCodesDataObject;
|
|
192
|
-
}
|
|
193
|
-
export interface IProcessOutputAudioCodesDataObject {
|
|
194
|
-
_audioCodes: {
|
|
195
|
-
text?: string;
|
|
196
|
-
json?: {
|
|
197
|
-
activities: IAudioCodesActivity[];
|
|
198
|
-
};
|
|
199
|
-
};
|
|
200
|
-
}
|
|
201
|
-
export interface IAudioCodesActivity {
|
|
202
|
-
id: string;
|
|
203
|
-
timestamp: string;
|
|
204
|
-
type: "event" | "message";
|
|
205
|
-
text?: string;
|
|
206
|
-
speak?: string;
|
|
207
|
-
name?: "start" | "hangup" | "handover";
|
|
208
|
-
channelData?: {
|
|
209
|
-
callee: string;
|
|
210
|
-
caller: string;
|
|
211
|
-
};
|
|
212
|
-
parameters?: {
|
|
213
|
-
caller: string;
|
|
214
|
-
};
|
|
215
|
-
}
|
|
216
|
-
/**
|
|
217
|
-
* Facebook
|
|
218
|
-
*/
|
|
219
|
-
export interface IProcessOutputFacebookData {
|
|
220
|
-
_cognigy: IProcessOutputFacebookDataObject;
|
|
221
|
-
}
|
|
222
|
-
export interface IProcessOutputFacebookDataObject {
|
|
223
|
-
_facebook: {
|
|
224
|
-
[key: string]: any;
|
|
225
|
-
};
|
|
226
|
-
}
|
|
227
|
-
/**
|
|
228
|
-
* Google / Google Actions
|
|
229
|
-
*/
|
|
230
|
-
export interface IProcessOutputGoogleData {
|
|
231
|
-
_cognigy: IProcessOutputGoogleDataObject;
|
|
232
|
-
}
|
|
233
|
-
export interface IProcessOutputGoogleDataObject {
|
|
234
|
-
_google: IGoogleResponse;
|
|
235
|
-
}
|
|
236
|
-
/**
|
|
237
|
-
* Line
|
|
238
|
-
*/
|
|
239
|
-
export interface IProcessOutputLineData {
|
|
240
|
-
_cognigy: IProcessOutputLineDataObject;
|
|
241
|
-
}
|
|
242
|
-
export interface IProcessOutputLineDataObject {
|
|
243
|
-
_line: {
|
|
244
|
-
[key: string]: any;
|
|
245
|
-
};
|
|
246
|
-
}
|
|
247
|
-
/**
|
|
248
|
-
* MicrosoftBotFramework
|
|
249
|
-
*/
|
|
250
|
-
export interface IProcessOutputMicrosoftBotFrameworkData {
|
|
251
|
-
_cognigy: IProcessOutputMicrosoftBotFrameworkDataObject;
|
|
252
|
-
}
|
|
253
|
-
export interface IProcessOutputMicrosoftBotFrameworkDataObject {
|
|
254
|
-
_microsoftBotFramework: IMicrosoftBotFrameworkData;
|
|
255
|
-
}
|
|
256
|
-
/**
|
|
257
|
-
* MicrosoftTeams
|
|
258
|
-
*/
|
|
259
|
-
export interface IProcessOutputMicrosoftTeamsData {
|
|
260
|
-
_cognigy: IProcessOutputMicrosoftTeamsDataObject;
|
|
261
|
-
}
|
|
262
|
-
export interface IProcessOutputMicrosoftTeamsDataObject {
|
|
263
|
-
_microsoftTeams: IMicrosoftTeamsData;
|
|
264
|
-
}
|
|
265
|
-
/**
|
|
266
|
-
* RingCentralEngage
|
|
267
|
-
*/
|
|
268
|
-
export interface IProcessOutputRingCentralEngageData {
|
|
269
|
-
_cognigy: IProcessOutputRingCentralEngageDataObject;
|
|
270
|
-
}
|
|
271
|
-
export interface IProcessOutputRingCentralEngageDataObject {
|
|
272
|
-
_ringCentralEngage: TRingCentralEngageData;
|
|
273
|
-
}
|
|
274
|
-
/**
|
|
275
|
-
* Slack
|
|
276
|
-
*/
|
|
277
|
-
export interface IProcessOutputSlackData {
|
|
278
|
-
_cognigy: IProcessOutputSlackDataObject;
|
|
279
|
-
}
|
|
280
|
-
export interface IProcessOutputSlackDataObject {
|
|
281
|
-
_slack: ISlackData;
|
|
282
|
-
}
|
|
283
|
-
/**
|
|
284
|
-
* Default (our own structured messages format)
|
|
285
|
-
*/
|
|
286
|
-
export interface IProcessOutputDefaultData {
|
|
287
|
-
_cognigy: IProcessOutputDefaultDataObject;
|
|
288
|
-
}
|
|
289
|
-
export interface IProcessOutputDefaultDataObject {
|
|
290
|
-
_default: any;
|
|
291
|
-
}
|
|
292
|
-
/**
|
|
293
|
-
* Smooch (now sunshine conversations)
|
|
294
|
-
*/
|
|
295
|
-
export interface IProcessOutputSmoochData {
|
|
296
|
-
_cognigy: IProcessOutputSmoochDataObject;
|
|
297
|
-
}
|
|
298
|
-
export interface IProcessOutputSmoochDataObject {
|
|
299
|
-
_smooch: {
|
|
300
|
-
[key: string]: any;
|
|
301
|
-
};
|
|
302
|
-
}
|
|
303
|
-
/**
|
|
304
|
-
* Twilio
|
|
305
|
-
*/
|
|
306
|
-
export interface IProcessOutputTwilioData {
|
|
307
|
-
_cognigy: IProcessOutputTwilioDataObject;
|
|
308
|
-
}
|
|
309
|
-
export interface IProcessOutputTwilioDataObject {
|
|
310
|
-
_twilio: {
|
|
311
|
-
text?: string;
|
|
312
|
-
twiml?: string;
|
|
313
|
-
};
|
|
314
|
-
}
|
|
315
|
-
/**
|
|
316
|
-
* TwilioAutopilot
|
|
317
|
-
*/
|
|
318
|
-
export interface IProcessOutputTwilioAutopilotData {
|
|
319
|
-
_cognigy: IProcessOutputTwilioAutopilotDataObject;
|
|
320
|
-
}
|
|
321
|
-
export interface IProcessOutputTwilioAutopilotDataObject {
|
|
322
|
-
_twilioAutopilot: ITwilioAutopilotData;
|
|
323
|
-
}
|
|
324
|
-
/**
|
|
325
|
-
* TwilioSms
|
|
326
|
-
*/
|
|
327
|
-
export interface IProcessOutputTwilioSmsData {
|
|
328
|
-
_cognigy: IProcessOutputTwilioSmsDataObject;
|
|
329
|
-
}
|
|
330
|
-
export interface IProcessOutputTwilioSmsDataObject {
|
|
331
|
-
_twilioSms: {
|
|
332
|
-
text?: string;
|
|
333
|
-
twiml?: string;
|
|
334
|
-
};
|
|
335
|
-
}
|
|
336
|
-
/**
|
|
337
|
-
* Userlike
|
|
338
|
-
*/
|
|
339
|
-
export interface IProcessOutputUserlikeData {
|
|
340
|
-
_cognigy: IProcessOutputUserlikeDataObject;
|
|
341
|
-
}
|
|
342
|
-
export interface IProcessOutputUserlikeDataObject {
|
|
343
|
-
_userlike: {
|
|
344
|
-
text?: string;
|
|
345
|
-
json?: {
|
|
346
|
-
answers: any[];
|
|
347
|
-
context: {
|
|
348
|
-
[key: string]: any;
|
|
349
|
-
};
|
|
350
|
-
};
|
|
351
|
-
};
|
|
352
|
-
}
|
|
353
|
-
/**
|
|
354
|
-
* Webchat (this is actually webchat 2, both formats are similar)
|
|
355
|
-
*/
|
|
356
|
-
export interface IProcessOutputWebchatData {
|
|
357
|
-
_cognigy: IProcessOutputWebchatDataObject;
|
|
358
|
-
}
|
|
359
|
-
export interface IProcessOutputWebchatDataObject {
|
|
360
|
-
_webchat: {
|
|
361
|
-
[key: string]: any;
|
|
362
|
-
};
|
|
363
|
-
}
|
|
364
|
-
export interface ISwitchedFlowData {
|
|
365
|
-
type: string;
|
|
366
|
-
fromFlowId: string;
|
|
367
|
-
toFlowId: string;
|
|
368
|
-
}
|
|
369
|
-
export interface IProcessOutputHeaders {
|
|
370
|
-
/**
|
|
371
|
-
* This is a unique id that is used by the endpoint to find the endpointClient instance that processed the message from the user.
|
|
372
|
-
* The endpointClient instance knows the channel, the userId and most importantly the response object to use to respond to the user.
|
|
373
|
-
*/
|
|
374
|
-
endpointClientInstanceId: string;
|
|
375
|
-
}
|
|
376
|
-
export interface ILexiconChangedPayload {
|
|
377
|
-
type: "lexiconChanged";
|
|
378
|
-
data: ILexiconChangedData;
|
|
379
|
-
}
|
|
380
|
-
export interface ILexiconChangedData extends IPayloadBaseMetaData {
|
|
381
|
-
lexiconId: string;
|
|
382
|
-
}
|
|
383
|
-
export interface IProjectSettingsChangedPayload {
|
|
384
|
-
type: "projectSettingsChanged";
|
|
385
|
-
data: IProjectSettingsChangedData;
|
|
386
|
-
}
|
|
387
|
-
export interface IProjectSettingsChangedData extends IPayloadBaseMetaData, IProjectScope, IOrganisationScope {
|
|
388
|
-
settingsId: string;
|
|
389
|
-
}
|
|
390
|
-
export interface IWakeupPayload {
|
|
391
|
-
type: "wakeup";
|
|
392
|
-
data: IWakeupData;
|
|
393
|
-
}
|
|
394
|
-
export interface IWakeupData {
|
|
395
|
-
sessionId: string;
|
|
396
|
-
userId: string;
|
|
397
|
-
organisation: string;
|
|
398
|
-
flowId: string;
|
|
399
|
-
channel: string;
|
|
400
|
-
}
|
|
401
|
-
export interface IResetOrganisationSettingsPayload {
|
|
402
|
-
type: "resetOrganisationSettings";
|
|
403
|
-
data: IResetOrganisationSettingsData;
|
|
404
|
-
}
|
|
405
|
-
export interface IResetOrganisationSettingsData {
|
|
406
|
-
organisation: string;
|
|
407
|
-
}
|
|
408
|
-
export interface IProfileDeactivatedPayload {
|
|
409
|
-
type: "profileDeactivated";
|
|
410
|
-
data: IProfileDeactivatedData;
|
|
411
|
-
}
|
|
412
|
-
export interface IProfileDeactivatedData extends IPayloadBaseMetaData {
|
|
413
|
-
contactIds: string[];
|
|
414
|
-
organisation: string;
|
|
415
|
-
deactivated: boolean;
|
|
416
|
-
}
|
|
417
|
-
/**
|
|
418
|
-
* The payload to send to AI to parse an array
|
|
419
|
-
* of example sentences using the COGNIGY.AI NLU System.
|
|
420
|
-
*/
|
|
421
|
-
export interface IParseExampleSentencesPayload {
|
|
422
|
-
type: "parseExampleSentences";
|
|
423
|
-
data: IParseExampleSentencesData;
|
|
424
|
-
}
|
|
425
|
-
export interface IParseExampleSentencesData extends IPayloadBaseMetaData {
|
|
426
|
-
/**
|
|
427
|
-
* An array of example sentences to parse using COGNIGY.AI NLU System.
|
|
428
|
-
*/
|
|
429
|
-
exampleSentences: string[];
|
|
430
|
-
/**
|
|
431
|
-
* An array of lexicon ids that we should generate keyphrases for in the example sentences
|
|
432
|
-
*/
|
|
433
|
-
lexiconIds: string[];
|
|
434
|
-
/**
|
|
435
|
-
* The language of the example sentences so the Cognigy.AI NLU System can
|
|
436
|
-
* interprete them the right way. Should be a language code like "en", "de"
|
|
437
|
-
*/
|
|
438
|
-
language: string;
|
|
439
|
-
}
|
|
440
|
-
/**
|
|
441
|
-
* Payload to send to AI to test all intents for a flow
|
|
442
|
-
*/
|
|
443
|
-
export interface ITestIntentsPayload {
|
|
444
|
-
type: "testIntents";
|
|
445
|
-
data: ITestIntentsData;
|
|
446
|
-
}
|
|
447
|
-
export interface ITestIntentsData extends IPayloadBaseMetaData {
|
|
448
|
-
flowId: string;
|
|
449
|
-
entrypoint: string;
|
|
450
|
-
organisation: string;
|
|
451
|
-
projectId: string;
|
|
452
|
-
sentence: string;
|
|
453
|
-
}
|
|
454
|
-
/**
|
|
455
|
-
* Payload returned from AI after testing all intents for a flow
|
|
456
|
-
*/
|
|
457
|
-
export interface ITestIntentsReturnValue {
|
|
458
|
-
scores: IntentScore[];
|
|
459
|
-
finalIntentName: string;
|
|
460
|
-
finalIntentScore: number;
|
|
461
|
-
finalIntentNegated: boolean;
|
|
462
|
-
finalIntentConfirmationSentence?: string;
|
|
463
|
-
tiedIntents: IntentScore[] | null;
|
|
464
|
-
sortedScores?: {
|
|
465
|
-
[intentName: string]: IntentScore[];
|
|
466
|
-
};
|
|
467
|
-
}
|
|
468
|
-
/**
|
|
469
|
-
* The payload to send to AI
|
|
470
|
-
* in order to reset all Brains for a flow.
|
|
471
|
-
*/
|
|
472
|
-
export interface IResetAllBrainsForFlowPayload {
|
|
473
|
-
type: "resetAllBrainsForFlow";
|
|
474
|
-
data: IResetAllBrainsForFlowData;
|
|
475
|
-
}
|
|
476
|
-
export interface IResetAllBrainsForFlowData {
|
|
477
|
-
/**
|
|
478
|
-
* The flowId of the flow, whose Brains the user wishes to reset
|
|
479
|
-
*/
|
|
480
|
-
flowId: string;
|
|
481
|
-
/**
|
|
482
|
-
* The organisation that owns the flow.
|
|
483
|
-
*/
|
|
484
|
-
organisation: string;
|
|
485
|
-
}
|
|
486
|
-
/**
|
|
487
|
-
* The bind to session message is published by the 'service-conversation-manager'
|
|
488
|
-
* as soon as a new message queue was created by an endpoint.
|
|
489
|
-
*/
|
|
490
|
-
export interface IBindToSessionQueuePayload {
|
|
491
|
-
type: "bindToSessionQueue";
|
|
492
|
-
data: IBindToSessionQueueData;
|
|
493
|
-
}
|
|
494
|
-
export interface IBindToSessionQueueData extends IPayloadBaseMetaData {
|
|
495
|
-
endpointSessionQueue: string;
|
|
496
|
-
}
|
|
497
|
-
export declare type TAnyChannelDataInput = IAlexaRequestBody | IDialogflowDataInput | ITwilioAutopilotRequestBody | {
|
|
498
|
-
[key: string]: any;
|
|
499
|
-
};
|
|
500
|
-
/**
|
|
501
|
-
* The data object sent from the Dialogflow
|
|
502
|
-
* endpoint (ci.data)
|
|
503
|
-
*/
|
|
504
|
-
export interface IDialogflowDataInput {
|
|
505
|
-
/** The entire request sent from Dialogflow */
|
|
506
|
-
request: IDialogflowRequest;
|
|
507
|
-
/** The original channel where the request was sent from (e.g. Facebook) */
|
|
508
|
-
originalChannel: string;
|
|
509
|
-
/**
|
|
510
|
-
* Information about the user
|
|
511
|
-
* received during account linking.
|
|
512
|
-
*/
|
|
513
|
-
accountLinkedUser?: IGoogleAccountLinkedUser;
|
|
514
|
-
}
|
|
515
|
-
export interface IGetNluResultsPayload {
|
|
516
|
-
type: "getNluResults";
|
|
517
|
-
data: IGetNluResultsData;
|
|
518
|
-
}
|
|
519
|
-
export interface IGetNluResultsData extends IPayloadBaseMetaData {
|
|
520
|
-
text: string;
|
|
521
|
-
intentTrainGroupReferenceId: string;
|
|
522
|
-
lastChanged: string;
|
|
523
|
-
organisationId: string;
|
|
524
|
-
projectId: string;
|
|
525
|
-
language: string;
|
|
526
|
-
localeId: string;
|
|
527
|
-
flowName: string;
|
|
528
|
-
pipeline: IGetNluPipelineParams;
|
|
529
|
-
executionState: {
|
|
530
|
-
ci: object;
|
|
531
|
-
cc: object;
|
|
532
|
-
cp: object;
|
|
533
|
-
};
|
|
534
|
-
intentMask: string[];
|
|
535
|
-
}
|
|
536
|
-
export interface IGetNluPipelineParams {
|
|
537
|
-
parseIntents?: boolean;
|
|
538
|
-
parseSlots?: boolean;
|
|
539
|
-
parseSystemSlots?: boolean;
|
|
540
|
-
findType?: boolean;
|
|
541
|
-
}
|
|
542
|
-
interface IMatchedKeyphrase {
|
|
543
|
-
keyphrase: string;
|
|
544
|
-
synonym: string;
|
|
545
|
-
lower: string;
|
|
546
|
-
count?: number;
|
|
547
|
-
neg?: boolean;
|
|
548
|
-
data?: object;
|
|
549
|
-
}
|
|
550
|
-
interface IMatchedKeyphraseContainer {
|
|
551
|
-
[key: string]: IMatchedKeyphrase[];
|
|
552
|
-
}
|
|
553
|
-
export interface IGetNluResultReturnValue {
|
|
554
|
-
intent: string;
|
|
555
|
-
intentId: string;
|
|
556
|
-
intentFlow: string;
|
|
557
|
-
intentMapperResults: {
|
|
558
|
-
[key: string]: any;
|
|
559
|
-
};
|
|
560
|
-
slots: IMatchedKeyphraseContainer;
|
|
561
|
-
systemSlots: ISystemSlots;
|
|
562
|
-
score: number;
|
|
563
|
-
type: "Statement" | string;
|
|
564
|
-
tokens: string[];
|
|
565
|
-
}
|
|
566
|
-
export {};
|