@cognigy/rest-api-client 2025.18.1 → 2025.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/build/apigroups/InsightsAPIGroup_2_0.js +10 -10
- package/build/apigroups/MetricsAPIGroup_2_0.js +4 -0
- package/build/authentication/OAuth2/OAuth2Authentication.js +2 -0
- package/build/connector/AxiosAdapter.js +4 -1
- package/build/shared/charts/descriptors/nlu/fuzzySearch.js +6 -6
- package/build/shared/charts/descriptors/service/aiAgent/aiAgentJob.js +81 -21
- package/build/shared/charts/descriptors/service/aiAgent/aiAgentJobCallMCPTool.js +7 -5
- package/build/shared/charts/descriptors/service/aiAgent/aiAgentJobMCPTool.js +8 -1
- package/build/shared/charts/descriptors/service/aiAgent/helpers/createToolDefinitions.js +2 -0
- package/build/shared/charts/descriptors/service/llmPrompt/LLMPromptV2.js +78 -18
- package/build/shared/charts/descriptors/service/llmPrompt/llmPromptMCPTool.js +8 -1
- package/build/shared/charts/descriptors/voice/mappers/transfer.mapper.js +20 -6
- package/build/shared/charts/descriptors/voicegateway2/nodes/transfer.js +39 -3
- package/build/shared/interfaces/IOrganisation.js +1 -0
- package/build/shared/interfaces/handover.js +3 -1
- package/build/shared/interfaces/messageAPI/endpoints.js +2 -0
- package/build/shared/interfaces/resources/IAuditEvent.js +2 -1
- package/build/shared/interfaces/resources/knowledgeStore/IKnowledgeSource.js +1 -1
- package/build/shared/interfaces/restAPI/metrics/logs/v2.0/ITailLogEntriesRest_2_0.js +3 -0
- package/dist/esm/apigroups/InsightsAPIGroup_2_0.js +10 -10
- package/dist/esm/apigroups/MetricsAPIGroup_2_0.js +4 -0
- package/dist/esm/authentication/OAuth2/OAuth2Authentication.js +2 -0
- package/dist/esm/connector/AxiosAdapter.js +4 -1
- package/dist/esm/shared/charts/descriptors/nlu/fuzzySearch.js +6 -6
- package/dist/esm/shared/charts/descriptors/service/aiAgent/aiAgentJob.js +81 -21
- package/dist/esm/shared/charts/descriptors/service/aiAgent/aiAgentJobCallMCPTool.js +7 -5
- package/dist/esm/shared/charts/descriptors/service/aiAgent/aiAgentJobMCPTool.js +8 -1
- package/dist/esm/shared/charts/descriptors/service/aiAgent/helpers/createToolDefinitions.js +2 -0
- package/dist/esm/shared/charts/descriptors/service/llmPrompt/LLMPromptV2.js +85 -25
- package/dist/esm/shared/charts/descriptors/service/llmPrompt/llmPromptMCPTool.js +8 -1
- package/dist/esm/shared/charts/descriptors/voice/mappers/transfer.mapper.js +20 -6
- package/dist/esm/shared/charts/descriptors/voicegateway2/nodes/transfer.js +39 -3
- package/dist/esm/shared/interfaces/IOrganisation.js +1 -0
- package/dist/esm/shared/interfaces/handover.js +3 -1
- package/dist/esm/shared/interfaces/messageAPI/endpoints.js +2 -0
- package/dist/esm/shared/interfaces/resources/IAuditEvent.js +2 -1
- package/dist/esm/shared/interfaces/resources/knowledgeStore/IKnowledgeSource.js +1 -1
- package/dist/esm/shared/interfaces/restAPI/metrics/logs/v2.0/ITailLogEntriesRest_2_0.js +2 -0
- package/package.json +1 -1
- package/types/index.d.ts +873 -816
- package/build/test.js +0 -39
- package/dist/esm/shared/interfaces/restAPI/management/authentication/ICreateJWTToken.js +0 -1
- package/dist/esm/test.js +0 -39
package/types/index.d.ts
CHANGED
|
@@ -2354,6 +2354,10 @@ export interface IAgentAssistSettings {
|
|
|
2354
2354
|
redactTranscriptTileMessages?: boolean;
|
|
2355
2355
|
enableAgentCopilotAuthentication?: boolean;
|
|
2356
2356
|
agentCopilotAuthentication?: string;
|
|
2357
|
+
/**
|
|
2358
|
+
* Optional OAuth2 connection id for providers that require it (e.g., Genesys)
|
|
2359
|
+
*/
|
|
2360
|
+
oAuth2Connection?: string;
|
|
2357
2361
|
}
|
|
2358
2362
|
export interface IGenesysCloudHandoverSettings {
|
|
2359
2363
|
host: string;
|
|
@@ -2527,16 +2531,718 @@ export interface IEndpoint extends IEntityMeta {
|
|
|
2527
2531
|
active: boolean;
|
|
2528
2532
|
};
|
|
2529
2533
|
}
|
|
2530
|
-
export interface IGraphEndpoint {
|
|
2531
|
-
type: "endpoint";
|
|
2532
|
-
_id: TMongoId;
|
|
2533
|
-
name: string;
|
|
2534
|
-
properties: Pick<IEndpoint, "active" | "URLToken" | "channel" | "createdAt" | "createdBy" | "lastChanged" | "lastChangedBy">;
|
|
2535
|
-
dependencies?: IGraphEndpointDependency[];
|
|
2534
|
+
export interface IGraphEndpoint {
|
|
2535
|
+
type: "endpoint";
|
|
2536
|
+
_id: TMongoId;
|
|
2537
|
+
name: string;
|
|
2538
|
+
properties: Pick<IEndpoint, "active" | "URLToken" | "channel" | "createdAt" | "createdBy" | "lastChanged" | "lastChangedBy">;
|
|
2539
|
+
dependencies?: IGraphEndpointDependency[];
|
|
2540
|
+
}
|
|
2541
|
+
export interface IGraphEndpointDependency {
|
|
2542
|
+
_id: string;
|
|
2543
|
+
type: "endpointFlow" | "endpointNluConnector";
|
|
2544
|
+
}
|
|
2545
|
+
export interface ISystemSlots {
|
|
2546
|
+
DATE: IDateSlot[] | null;
|
|
2547
|
+
NUMBER: INumberSlot[] | null;
|
|
2548
|
+
DURATION: IDurationSlot[] | null;
|
|
2549
|
+
TEMPERATURE: ITemperatureSlot[] | null;
|
|
2550
|
+
AGE: IAgeSlot[] | null;
|
|
2551
|
+
PERCENTAGE: IPercentageSlot[] | null;
|
|
2552
|
+
EMAIL: IEmailSlot[] | null;
|
|
2553
|
+
URL: IUrlSlot[] | null;
|
|
2554
|
+
MONEY: IMoneySlot[] | null;
|
|
2555
|
+
DISTANCE: IDistanceSlot[] | null;
|
|
2556
|
+
}
|
|
2557
|
+
export interface IBaseSlot {
|
|
2558
|
+
text: string;
|
|
2559
|
+
data: any;
|
|
2560
|
+
offset: {
|
|
2561
|
+
start: number;
|
|
2562
|
+
end: number;
|
|
2563
|
+
};
|
|
2564
|
+
}
|
|
2565
|
+
export interface IPercentageSlot extends IBaseSlot {
|
|
2566
|
+
data: {
|
|
2567
|
+
value: number;
|
|
2568
|
+
};
|
|
2569
|
+
}
|
|
2570
|
+
export interface IAgeSlot extends IBaseSlot {
|
|
2571
|
+
data: {
|
|
2572
|
+
value: number;
|
|
2573
|
+
unit: TTimeGrain;
|
|
2574
|
+
};
|
|
2575
|
+
}
|
|
2576
|
+
export interface INumberSlot extends IBaseSlot {
|
|
2577
|
+
data: {
|
|
2578
|
+
value: number;
|
|
2579
|
+
};
|
|
2580
|
+
}
|
|
2581
|
+
export interface IEmailSlot extends IBaseSlot {
|
|
2582
|
+
data: {
|
|
2583
|
+
value: string;
|
|
2584
|
+
};
|
|
2585
|
+
}
|
|
2586
|
+
export declare type ITemperatureUnit = "celsius" | "fahrenheit" | "degree" | "kelvin";
|
|
2587
|
+
export interface ITemperatureSlot extends IBaseSlot {
|
|
2588
|
+
data: {
|
|
2589
|
+
value: number;
|
|
2590
|
+
unit: ITemperatureUnit;
|
|
2591
|
+
};
|
|
2592
|
+
}
|
|
2593
|
+
export declare type TTimeGrain = "second" | "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
2594
|
+
export interface IDateObject {
|
|
2595
|
+
day: number;
|
|
2596
|
+
hour: number;
|
|
2597
|
+
minute: number;
|
|
2598
|
+
month: number;
|
|
2599
|
+
second: number;
|
|
2600
|
+
milliseconds: number;
|
|
2601
|
+
weekday: number;
|
|
2602
|
+
dayOfWeek: string;
|
|
2603
|
+
year: number;
|
|
2604
|
+
ISODate: string;
|
|
2605
|
+
grain: TTimeGrain | null;
|
|
2606
|
+
plain: string;
|
|
2607
|
+
timezoneOffset?: string;
|
|
2608
|
+
}
|
|
2609
|
+
export interface IDateSlot extends IBaseSlot {
|
|
2610
|
+
data: {
|
|
2611
|
+
start?: IDateObject;
|
|
2612
|
+
end?: IDateObject;
|
|
2613
|
+
};
|
|
2614
|
+
}
|
|
2615
|
+
export interface IDurationSlot extends IBaseSlot {
|
|
2616
|
+
data: {
|
|
2617
|
+
unit?: TTimeGrain;
|
|
2618
|
+
value?: number;
|
|
2619
|
+
inSeconds?: number;
|
|
2620
|
+
years?: number;
|
|
2621
|
+
quarters?: number;
|
|
2622
|
+
months?: number;
|
|
2623
|
+
weeks?: number;
|
|
2624
|
+
days?: number;
|
|
2625
|
+
hours?: number;
|
|
2626
|
+
minutes?: number;
|
|
2627
|
+
seconds?: number;
|
|
2628
|
+
};
|
|
2629
|
+
}
|
|
2630
|
+
export interface IMoneySlot extends IBaseSlot {
|
|
2631
|
+
data: {
|
|
2632
|
+
value: number;
|
|
2633
|
+
unit: string;
|
|
2634
|
+
};
|
|
2635
|
+
}
|
|
2636
|
+
export interface IUrlSlot extends IBaseSlot {
|
|
2637
|
+
data: {
|
|
2638
|
+
domain: string;
|
|
2639
|
+
value: string;
|
|
2640
|
+
};
|
|
2641
|
+
}
|
|
2642
|
+
export interface IDistanceSlot extends IBaseSlot {
|
|
2643
|
+
data: {
|
|
2644
|
+
unit: string;
|
|
2645
|
+
value: number;
|
|
2646
|
+
};
|
|
2647
|
+
}
|
|
2648
|
+
declare const arrayTDebugEventTypes: readonly [
|
|
2649
|
+
"inputChanged",
|
|
2650
|
+
"contextChanged",
|
|
2651
|
+
"profileChanged",
|
|
2652
|
+
"activeEntrypointsChanged",
|
|
2653
|
+
"nodeExecuted",
|
|
2654
|
+
"nodeError",
|
|
2655
|
+
"finalPing",
|
|
2656
|
+
"input",
|
|
2657
|
+
"output",
|
|
2658
|
+
"switchedFlow",
|
|
2659
|
+
"nluWarning",
|
|
2660
|
+
"debugMessage",
|
|
2661
|
+
"debugError",
|
|
2662
|
+
"goalCompleted"
|
|
2663
|
+
];
|
|
2664
|
+
export declare type TDebugEventType = typeof arrayTDebugEventTypes[number];
|
|
2665
|
+
export interface IErrorEventPayload extends ILoggerStack {
|
|
2666
|
+
message: string;
|
|
2667
|
+
flowId: string;
|
|
2668
|
+
nodeId?: string;
|
|
2669
|
+
}
|
|
2670
|
+
export interface IFinalPingEventPayload {
|
|
2671
|
+
type: "regular" | "preventFinalPingToEndpoint" | "cognigyStopFlow" | "error";
|
|
2672
|
+
analyticsData?: IAnalyticsSourceData;
|
|
2673
|
+
error?: IErrorEventPayload;
|
|
2674
|
+
sessionId?: string;
|
|
2675
|
+
}
|
|
2676
|
+
export interface IGenericIntentFeedbackFinding {
|
|
2677
|
+
type: IGenericIntentFeedbackFindingType;
|
|
2678
|
+
}
|
|
2679
|
+
export interface IOverlapIntentFeedbackFinding {
|
|
2680
|
+
type: IOverlapIntentFeedbackFindingType;
|
|
2681
|
+
overlappingIntentReferenceId: string;
|
|
2682
|
+
overlappingIntentName: string;
|
|
2683
|
+
overlappingIntentId: TMongoId;
|
|
2684
|
+
overlappingFlowName: string;
|
|
2685
|
+
overlappingFlowId: TMongoId;
|
|
2686
|
+
}
|
|
2687
|
+
export interface ILowDataIntentFeedbackFinding {
|
|
2688
|
+
type: "lowDataIntents";
|
|
2689
|
+
intents: {
|
|
2690
|
+
intentReferenceId: string;
|
|
2691
|
+
intentName: string;
|
|
2692
|
+
intentId: string;
|
|
2693
|
+
flowId: string;
|
|
2694
|
+
flowName: string;
|
|
2695
|
+
}[];
|
|
2696
|
+
}
|
|
2697
|
+
declare const overlapIntentFeedbackFindingArrayType: readonly [
|
|
2698
|
+
"strongOverlap",
|
|
2699
|
+
"someOverlap"
|
|
2700
|
+
];
|
|
2701
|
+
export declare type IOverlapIntentFeedbackFindingType = typeof overlapIntentFeedbackFindingArrayType[number];
|
|
2702
|
+
declare const genericIntentFeedbackFindingArrayType: readonly [
|
|
2703
|
+
"poorFScore",
|
|
2704
|
+
"fairFScore",
|
|
2705
|
+
"goodFScore",
|
|
2706
|
+
"fewSentences",
|
|
2707
|
+
"unclearIntent",
|
|
2708
|
+
"noSiblings"
|
|
2709
|
+
];
|
|
2710
|
+
export declare type IGenericIntentFeedbackFindingType = typeof genericIntentFeedbackFindingArrayType[number];
|
|
2711
|
+
export declare type IntentFeedbackFinding = IGenericIntentFeedbackFinding | IOverlapIntentFeedbackFinding | ILowDataIntentFeedbackFinding;
|
|
2712
|
+
export interface IIntentFeedbackInDBReport {
|
|
2713
|
+
findings: IntentFeedbackFinding[];
|
|
2714
|
+
info: {
|
|
2715
|
+
fScore: number;
|
|
2716
|
+
};
|
|
2717
|
+
}
|
|
2718
|
+
declare const biasTowardsParentOrChildIntentsTypes: readonly [
|
|
2719
|
+
"parents",
|
|
2720
|
+
"children"
|
|
2721
|
+
];
|
|
2722
|
+
export declare type TBiasTowardsParentOrChildIntentsTypes = typeof biasTowardsParentOrChildIntentsTypes[number];
|
|
2723
|
+
declare const intentTypes: readonly [
|
|
2724
|
+
"yesNoIntent",
|
|
2725
|
+
"default"
|
|
2726
|
+
];
|
|
2727
|
+
export declare type TIntentTypes = typeof intentTypes[number];
|
|
2728
|
+
export interface ILocalizedIntentData {
|
|
2729
|
+
rules: string[];
|
|
2730
|
+
condition: string;
|
|
2731
|
+
confirmationSentences: string[];
|
|
2732
|
+
disambiguationSentence: string;
|
|
2733
|
+
localeReference: TMongoId;
|
|
2734
|
+
}
|
|
2735
|
+
export interface IIntentInDB extends Omit<IIntent, keyof ILocalizedIntentData> {
|
|
2736
|
+
localizedData: ILocalizedIntentData[];
|
|
2737
|
+
/**
|
|
2738
|
+
* A list of all of the locales
|
|
2739
|
+
* that are not disabled. Used to return
|
|
2740
|
+
* the correct isDisabled value for the
|
|
2741
|
+
* given locale
|
|
2742
|
+
*/
|
|
2743
|
+
enabledLocaleReferences: TMongoId[];
|
|
2744
|
+
}
|
|
2745
|
+
export interface IIntent extends IEntityMeta, ILocalizedIntentData {
|
|
2746
|
+
name: string;
|
|
2747
|
+
description?: string;
|
|
2748
|
+
referenceId: string;
|
|
2749
|
+
isRejectIntent: boolean;
|
|
2750
|
+
isDisabled: boolean;
|
|
2751
|
+
tags: string[];
|
|
2752
|
+
data: any;
|
|
2753
|
+
nodeReferenceId: string;
|
|
2754
|
+
childFeatures?: boolean | string[];
|
|
2755
|
+
biasTowardsParentOrChildIntents: TBiasTowardsParentOrChildIntentsTypes;
|
|
2756
|
+
parentIntentId?: string;
|
|
2757
|
+
feedbackReport: IIntentFeedbackInDBReport;
|
|
2758
|
+
intentRelationReferences: TMongoId[];
|
|
2759
|
+
flowReference?: TMongoId;
|
|
2760
|
+
projectReference: TMongoId;
|
|
2761
|
+
organisationReference: TMongoId;
|
|
2762
|
+
flowReferenceId?: string;
|
|
2763
|
+
/**
|
|
2764
|
+
* A label we use in analytics
|
|
2765
|
+
* to track when an intent was triggered
|
|
2766
|
+
*/
|
|
2767
|
+
analyticsLabel?: string;
|
|
2768
|
+
/**
|
|
2769
|
+
* Enable the usage of default replies as example sentences
|
|
2770
|
+
*/
|
|
2771
|
+
overrideIntentDefaultRepliesAsExamples?: string;
|
|
2772
|
+
intentType: TIntentTypes;
|
|
2773
|
+
}
|
|
2774
|
+
export interface IYesNoData {
|
|
2775
|
+
_id: string;
|
|
2776
|
+
rules: string[];
|
|
2777
|
+
name: string;
|
|
2778
|
+
isDisabled: boolean;
|
|
2779
|
+
}
|
|
2780
|
+
export interface IYesNoItem {
|
|
2781
|
+
yesIntent: IYesNoData | IIntentInDB;
|
|
2782
|
+
noIntent: IYesNoData | IIntentInDB;
|
|
2783
|
+
rejectIntent: IYesNoData | IIntentInDB;
|
|
2784
|
+
}
|
|
2785
|
+
declare const generativeAIModels: readonly [
|
|
2786
|
+
"gpt-3.5-turbo",
|
|
2787
|
+
"gpt-3.5-turbo-instruct",
|
|
2788
|
+
"gpt-4",
|
|
2789
|
+
"gpt-4o",
|
|
2790
|
+
"gpt-4o-mini",
|
|
2791
|
+
"gpt-4.1",
|
|
2792
|
+
"gpt-4.1-mini",
|
|
2793
|
+
"gpt-4.1-nano",
|
|
2794
|
+
"gpt-5",
|
|
2795
|
+
"gpt-5-nano",
|
|
2796
|
+
"gpt-5-mini",
|
|
2797
|
+
"gpt-5-chat-latest",
|
|
2798
|
+
"luminous-extended-control",
|
|
2799
|
+
"claude-v1-100k",
|
|
2800
|
+
"claude-instant-v1",
|
|
2801
|
+
"claude-3-opus-20240229",
|
|
2802
|
+
"claude-3-haiku-20240307",
|
|
2803
|
+
"claude-3-sonnet-20240229",
|
|
2804
|
+
"claude-3-5-sonnet-20241022",
|
|
2805
|
+
"claude-3-7-sonnet-20250219",
|
|
2806
|
+
"claude-3-5-sonnet-latest",
|
|
2807
|
+
"claude-3-7-sonnet-latest",
|
|
2808
|
+
"claude-opus-4-0",
|
|
2809
|
+
"claude-sonnet-4-0",
|
|
2810
|
+
"text-bison@001",
|
|
2811
|
+
"custom-model",
|
|
2812
|
+
"custom-embedding-model",
|
|
2813
|
+
"gemini-1.0-pro",
|
|
2814
|
+
"gemini-1.5-pro",
|
|
2815
|
+
"gemini-1.5-flash",
|
|
2816
|
+
"gemini-2.0-flash",
|
|
2817
|
+
"gemini-2.0-flash-lite",
|
|
2818
|
+
"amazon.nova-lite-v1:0",
|
|
2819
|
+
"amazon.nova-pro-v1:0",
|
|
2820
|
+
"amazon.nova-micro-v1:0",
|
|
2821
|
+
"anthropic.claude-3-5-sonnet-20240620-v1:0",
|
|
2822
|
+
"mistral-large-2411",
|
|
2823
|
+
"mistral-small-2503",
|
|
2824
|
+
"pixtral-large-2411",
|
|
2825
|
+
"pixtral-12b-2409",
|
|
2826
|
+
"mistral-large-latest",
|
|
2827
|
+
"pixtral-large-latest",
|
|
2828
|
+
"mistral-medium-latest",
|
|
2829
|
+
"mistral-small-latest",
|
|
2830
|
+
"text-davinci-003",
|
|
2831
|
+
"text-embedding-3-small",
|
|
2832
|
+
"text-embedding-3-large",
|
|
2833
|
+
"text-embedding-ada-002",
|
|
2834
|
+
"luminous-embedding-128",
|
|
2835
|
+
"amazon.titan-embed-text-v2:0",
|
|
2836
|
+
"Pharia-1-Embedding-4608"
|
|
2837
|
+
];
|
|
2838
|
+
/**
|
|
2839
|
+
* @openapi
|
|
2840
|
+
*
|
|
2841
|
+
* components:
|
|
2842
|
+
* schemas:
|
|
2843
|
+
* TGenerativeAIModels:
|
|
2844
|
+
* type: string
|
|
2845
|
+
* enum:
|
|
2846
|
+
* - gpt-3.5-turbo
|
|
2847
|
+
* - gpt-3.5-turbo-instruct
|
|
2848
|
+
* - gpt-4
|
|
2849
|
+
* - gpt-4o
|
|
2850
|
+
* - gpt-4o-mini
|
|
2851
|
+
* - text-embedding-ada-002
|
|
2852
|
+
* - luminous-extended-control
|
|
2853
|
+
* - luminous-embedding-128
|
|
2854
|
+
* - Pharia-1-Embedding-4608
|
|
2855
|
+
* - claude-v1-100k
|
|
2856
|
+
* - claude-instant-v1
|
|
2857
|
+
* - claude-3-opus-20240229
|
|
2858
|
+
* - custom-model
|
|
2859
|
+
* - custom-embedding-model
|
|
2860
|
+
* - gemini-2.0-flash
|
|
2861
|
+
* - gemini-2.0-flash-lite
|
|
2862
|
+
* - mistral-large-2411
|
|
2863
|
+
* - mistral-small-2503
|
|
2864
|
+
* - pixtral-large-2411
|
|
2865
|
+
* - pixtral-12b-2409
|
|
2866
|
+
*/
|
|
2867
|
+
export declare type TGenerativeAIModels = (typeof generativeAIModels)[number];
|
|
2868
|
+
declare const generativeAIProviders: readonly [
|
|
2869
|
+
"azureOpenAI",
|
|
2870
|
+
"openAI",
|
|
2871
|
+
"openAICompatible",
|
|
2872
|
+
"alephAlpha",
|
|
2873
|
+
"anthropic",
|
|
2874
|
+
"googleVertexAI",
|
|
2875
|
+
"googleGemini",
|
|
2876
|
+
"awsBedrock",
|
|
2877
|
+
"mistral"
|
|
2878
|
+
];
|
|
2879
|
+
/**
|
|
2880
|
+
* @openapi
|
|
2881
|
+
*
|
|
2882
|
+
* components:
|
|
2883
|
+
* schemas:
|
|
2884
|
+
* TGenerativeAIProviders:
|
|
2885
|
+
* type: string
|
|
2886
|
+
* enum:
|
|
2887
|
+
* - azureOpenAI
|
|
2888
|
+
* - openAI
|
|
2889
|
+
* - anthropic
|
|
2890
|
+
* - googleVertexAI
|
|
2891
|
+
* - googleGemini
|
|
2892
|
+
* - alephAlpha
|
|
2893
|
+
* - awsBedrock
|
|
2894
|
+
* - mistral
|
|
2895
|
+
*/
|
|
2896
|
+
export declare type TGenerativeAIProviders = (typeof generativeAIProviders)[number];
|
|
2897
|
+
declare const generativeAIUseCases: readonly [
|
|
2898
|
+
"nlu",
|
|
2899
|
+
"knowledgeSearch",
|
|
2900
|
+
"aiAgent",
|
|
2901
|
+
"gptPromptNode",
|
|
2902
|
+
"aiEnhancedOutputs",
|
|
2903
|
+
"sentimentAnalysis",
|
|
2904
|
+
"designTimeGeneration",
|
|
2905
|
+
"intentSentenceGeneration",
|
|
2906
|
+
"flowGeneration",
|
|
2907
|
+
"generateNodeOutput",
|
|
2908
|
+
"lexiconGeneration",
|
|
2909
|
+
"answerExtraction",
|
|
2910
|
+
"gptConversation"
|
|
2911
|
+
];
|
|
2912
|
+
export declare type TGenerativeAIUseCases = typeof generativeAIUseCases[number];
|
|
2913
|
+
declare const modeType: readonly [
|
|
2914
|
+
"chat",
|
|
2915
|
+
"completion",
|
|
2916
|
+
"embedding"
|
|
2917
|
+
];
|
|
2918
|
+
export declare type TModeType = typeof modeType[number];
|
|
2919
|
+
export declare type TBASIC_EXTENSION = "@cognigy/basic-nodes";
|
|
2920
|
+
export declare type TMONGO_DB_EXTENSION = "@cognigy/mongodb";
|
|
2921
|
+
export declare type TSQL_EXTENSION = "@cognigy/mssql";
|
|
2922
|
+
export declare type TSMTP_EXTENSION = "@cognigy/smtp";
|
|
2923
|
+
export declare type TVOICE_GATEWAY_EXTENSION = "@cognigy/voicegateway";
|
|
2924
|
+
export declare type TMICROSOFT_EXTENSION = "@cognigy/microsoft";
|
|
2925
|
+
export declare type TVOICE_GATEWAY_2_EXTENSION = "@cognigy/voicegateway2";
|
|
2926
|
+
export interface IGenerativeAIUseCaseSettings {
|
|
2927
|
+
largeLanguageModelId: string | null;
|
|
2928
|
+
temperature: number;
|
|
2929
|
+
}
|
|
2930
|
+
declare const audioPreviewProviders: readonly [
|
|
2931
|
+
"microsoft",
|
|
2932
|
+
"google",
|
|
2933
|
+
"aws",
|
|
2934
|
+
"deepgram"
|
|
2935
|
+
];
|
|
2936
|
+
export declare type TAudioPreviewProvider = typeof audioPreviewProviders[number];
|
|
2937
|
+
/**
|
|
2938
|
+
* @openapi
|
|
2939
|
+
* components:
|
|
2940
|
+
* schemas:
|
|
2941
|
+
* IGenerativeAIUseCase:
|
|
2942
|
+
* type: object
|
|
2943
|
+
* properties:
|
|
2944
|
+
* useCase:
|
|
2945
|
+
* enum:
|
|
2946
|
+
* - designTimeGeneration
|
|
2947
|
+
* - intentSentenceGeneration
|
|
2948
|
+
* - aiEnhancedOutputs
|
|
2949
|
+
* - lexiconGeneration
|
|
2950
|
+
* - flowGeneration
|
|
2951
|
+
* - gptConversation
|
|
2952
|
+
* - gptPromptNode
|
|
2953
|
+
* - generateNodeOutput
|
|
2954
|
+
* - knowledgeSearch
|
|
2955
|
+
* - sentimentAnalysis
|
|
2956
|
+
*/
|
|
2957
|
+
export interface IGenerativeAIUseCase {
|
|
2958
|
+
useCase: TGenerativeAIUseCases;
|
|
2959
|
+
}
|
|
2960
|
+
export declare const nluLanguages: readonly [
|
|
2961
|
+
"ar-AE",
|
|
2962
|
+
"bn-IN",
|
|
2963
|
+
"da-DK",
|
|
2964
|
+
"en-AU",
|
|
2965
|
+
"en-CA",
|
|
2966
|
+
"en-GB",
|
|
2967
|
+
"en-IN",
|
|
2968
|
+
"en-US",
|
|
2969
|
+
"es-ES",
|
|
2970
|
+
"fi-FI",
|
|
2971
|
+
"fr-FR",
|
|
2972
|
+
"de-DE",
|
|
2973
|
+
"hi-IN",
|
|
2974
|
+
"it-IT",
|
|
2975
|
+
"ja-JP",
|
|
2976
|
+
"ko-KR",
|
|
2977
|
+
"nn-NO",
|
|
2978
|
+
"nl-NL",
|
|
2979
|
+
"pl-PL",
|
|
2980
|
+
"pt-BR",
|
|
2981
|
+
"pt-PT",
|
|
2982
|
+
"ru-RU",
|
|
2983
|
+
"sv-SE",
|
|
2984
|
+
"ta-IN",
|
|
2985
|
+
"th-TH",
|
|
2986
|
+
"tr-TR",
|
|
2987
|
+
"vi-VN",
|
|
2988
|
+
"zh-CN",
|
|
2989
|
+
"ge-GE"
|
|
2990
|
+
];
|
|
2991
|
+
export declare type TNluLanguage = typeof nluLanguages[number];
|
|
2992
|
+
export interface INluEmbeddingCredentials {
|
|
2993
|
+
apiType: TGenerativeAIProviders;
|
|
2994
|
+
apiKey: string;
|
|
2995
|
+
apiModel: TGenerativeAIModels;
|
|
2996
|
+
apiCustomBaseUrl?: string;
|
|
2997
|
+
apiResourceName?: string;
|
|
2998
|
+
apiDeploymentName?: string;
|
|
2999
|
+
apiVersion?: string;
|
|
3000
|
+
}
|
|
3001
|
+
export interface ISetAppStateOverlaySettings {
|
|
3002
|
+
autoOpen: boolean;
|
|
3003
|
+
closeOnSubmit: boolean;
|
|
3004
|
+
feedbackMessage: string;
|
|
3005
|
+
screenTitle: string;
|
|
3006
|
+
sendEventOnCloseIconClick: boolean;
|
|
3007
|
+
showCloseIcon: boolean;
|
|
3008
|
+
}
|
|
3009
|
+
export interface ISetAppStateOverlaySettingsMetaData {
|
|
3010
|
+
overlaySettings: ISetAppStateOverlaySettings;
|
|
3011
|
+
endpointType: TEndpointType;
|
|
3012
|
+
url: string;
|
|
3013
|
+
URLToken: string;
|
|
3014
|
+
}
|
|
3015
|
+
export interface IVoiceGateway2VadParams {
|
|
3016
|
+
enable?: boolean;
|
|
3017
|
+
voiceMs?: number;
|
|
3018
|
+
mode?: number;
|
|
3019
|
+
}
|
|
3020
|
+
export declare type TVoiceGateway2TTSVendor = "aws" | "deepgram" | "elevenlabs" | "google" | "microsoft" | "nuance" | "default" | "custom";
|
|
3021
|
+
export interface IVoiceGateway2SynthesizerParams {
|
|
3022
|
+
vendor?: TVoiceGateway2TTSVendor | "default" | "none";
|
|
3023
|
+
language?: string;
|
|
3024
|
+
voice?: string;
|
|
3025
|
+
label?: string;
|
|
3026
|
+
fallbackVendor?: string;
|
|
3027
|
+
fallbackLabel?: string;
|
|
3028
|
+
fallbackLanguage?: string;
|
|
3029
|
+
fallbackVoice?: string;
|
|
3030
|
+
engine?: "standard" | "neural";
|
|
3031
|
+
gender?: "MALE" | "FEMALE" | "NEUTRAL";
|
|
3032
|
+
azureServiceEndpoint?: string;
|
|
3033
|
+
options?: object;
|
|
3034
|
+
disableCache?: boolean;
|
|
3035
|
+
model?: string;
|
|
3036
|
+
}
|
|
3037
|
+
export declare type TVoiceGateway2STTVendor = "aws" | "deepgram" | "google" | "microsoft" | "nuance" | "soniox" | "default" | "custom";
|
|
3038
|
+
export declare type TVoiceGateway2GoogleModel = "latest_short" | "latest_long" | "command_and_search" | "phone_call" | "video" | "medical_dictation" | "medical_conversation" | "default";
|
|
3039
|
+
export declare type VoiceGatewayDeepgramModel = "base" | "base-phonecall" | "base-meeting" | "base-finance" | "base-voicemail" | "base-conversationalai" | "base-video" | "enhanced" | "enhanced-phonecall" | "enhanced-meeting" | "enhanced-finance" | "nova" | "nova-phonecall" | "nova-2" | "nova-2-meeting" | "nova-2-phonecall" | "nova-2-voicemail" | "nova-2-finance" | "nova-2-conversationalai" | "nova-2-medical" | "nova-2-drivethru" | "nova-2-automotive" | "whisper" | "whisper-tiny" | "whisper-base" | "whisper-small" | "whisper-large";
|
|
3040
|
+
export interface IVoiceGateway2RecognizerParams {
|
|
3041
|
+
vendor?: TVoiceGateway2STTVendor | "default" | "none";
|
|
3042
|
+
language?: string;
|
|
3043
|
+
label?: string;
|
|
3044
|
+
fallbackVendor?: string;
|
|
3045
|
+
fallbackLabel?: string;
|
|
3046
|
+
fallbackLanguage?: string;
|
|
3047
|
+
vad?: IVoiceGateway2VadParams;
|
|
3048
|
+
hints?: string[];
|
|
3049
|
+
hintsBoost?: number;
|
|
3050
|
+
altLanguages?: string[];
|
|
3051
|
+
profanityFilter?: boolean;
|
|
3052
|
+
interim?: boolean;
|
|
3053
|
+
singleUtterance?: boolean;
|
|
3054
|
+
dualChannel?: boolean;
|
|
3055
|
+
separateRecognitionPerChannel?: boolean;
|
|
3056
|
+
punctuation?: boolean;
|
|
3057
|
+
enhancedModel?: boolean;
|
|
3058
|
+
words?: boolean;
|
|
3059
|
+
diarization?: boolean;
|
|
3060
|
+
diarizationMinSpeakers?: number;
|
|
3061
|
+
diarizationMaxSpeakers?: number;
|
|
3062
|
+
interactionType?: "unspecified" | "discussion" | "presentation" | "phone_call" | "voicemail" | "voice_search" | "voice_command" | "dictation";
|
|
3063
|
+
naicsCod?: number;
|
|
3064
|
+
identifyChannels?: boolean;
|
|
3065
|
+
vocabularyName?: string;
|
|
3066
|
+
vocabularyFilterName?: string;
|
|
3067
|
+
filterMethod?: "remove" | "mask" | "tag";
|
|
3068
|
+
outputFormat?: "simple" | "detailed";
|
|
3069
|
+
profanityOption?: "masked" | "removed" | "raw";
|
|
3070
|
+
requestSnr?: boolean;
|
|
3071
|
+
initialSpeechTimeoutMs?: number;
|
|
3072
|
+
azureSttEndpointId?: string;
|
|
3073
|
+
audioLogging?: boolean;
|
|
3074
|
+
asrDtmfTerminationDigit?: string;
|
|
3075
|
+
asrTimeout?: number;
|
|
3076
|
+
nuanceOptions?: TVoiceGateway2NuanceOptions;
|
|
3077
|
+
deepgramOptions?: TVoiceGateway2DeepgramOptions;
|
|
3078
|
+
ibmOptions?: TVoiceGateway2IbmOptions;
|
|
3079
|
+
nvidiaOptions?: TVoiceGateway2NvidiaOptions;
|
|
3080
|
+
sonioxOptions?: TVoiceGateway2SonioxOptions;
|
|
3081
|
+
model?: TVoiceGateway2GoogleModel | VoiceGatewayDeepgramModel | string;
|
|
3082
|
+
}
|
|
3083
|
+
export declare type TVoiceGateway2NuanceOptions = {
|
|
3084
|
+
clientId?: string;
|
|
3085
|
+
secret?: string;
|
|
3086
|
+
kryptonEndpoint?: string;
|
|
3087
|
+
topic?: string;
|
|
3088
|
+
utteranceDetectionMode?: string;
|
|
3089
|
+
punctuation?: boolean;
|
|
3090
|
+
profanityFilter?: boolean;
|
|
3091
|
+
includeTokenization?: boolean;
|
|
3092
|
+
discardSpeakerAdaptation?: boolean;
|
|
3093
|
+
suppressCallRecording?: boolean;
|
|
3094
|
+
maskLoadFailures?: boolean;
|
|
3095
|
+
suppressInitialCapitalization?: boolean;
|
|
3096
|
+
allowZeroBaseLmWeight?: boolean;
|
|
3097
|
+
filterWakeupWord?: boolean;
|
|
3098
|
+
resultType?: string;
|
|
3099
|
+
noInputTimeoutMs?: number;
|
|
3100
|
+
recognitionTimeoutMs?: number;
|
|
3101
|
+
utteranceEndSilenceMs?: number;
|
|
3102
|
+
maxHypotheses?: number;
|
|
3103
|
+
speechDomain?: string;
|
|
3104
|
+
formatting?: TVoiceGatewayNuanceFormatting;
|
|
3105
|
+
clientData?: object;
|
|
3106
|
+
userId?: string;
|
|
3107
|
+
speechDetectionSensitivity?: number;
|
|
3108
|
+
resources?: [
|
|
3109
|
+
TVoiceGatewayNuanceResources
|
|
3110
|
+
];
|
|
3111
|
+
};
|
|
3112
|
+
export declare type TVoiceGateway2DeepgramOptions = {
|
|
3113
|
+
deepgramSttUri?: string;
|
|
3114
|
+
deepgramSttUseTls?: boolean;
|
|
3115
|
+
apiKey?: string;
|
|
3116
|
+
tier?: string;
|
|
3117
|
+
model?: string;
|
|
3118
|
+
customModel?: string;
|
|
3119
|
+
version?: string;
|
|
3120
|
+
punctuate?: boolean;
|
|
3121
|
+
smartFormatting?: boolean;
|
|
3122
|
+
profanityFilter?: boolean;
|
|
3123
|
+
redact?: string;
|
|
3124
|
+
diarize?: boolean;
|
|
3125
|
+
diarizeVersion?: string;
|
|
3126
|
+
ner?: boolean;
|
|
3127
|
+
multichannel?: boolean;
|
|
3128
|
+
alternatives?: number;
|
|
3129
|
+
numerals?: boolean;
|
|
3130
|
+
search?: string[];
|
|
3131
|
+
replace?: string[];
|
|
3132
|
+
keywords?: string[];
|
|
3133
|
+
endpointing?: number | boolean;
|
|
3134
|
+
utteranceEndMs?: number;
|
|
3135
|
+
shortUtterance?: boolean;
|
|
3136
|
+
vadTurnoff?: number;
|
|
3137
|
+
tag?: string;
|
|
3138
|
+
};
|
|
3139
|
+
export declare type TVoiceGateway2NvidiaOptions = {
|
|
3140
|
+
rivaUri?: string;
|
|
3141
|
+
maxAlternatives?: number;
|
|
3142
|
+
profanityFilter?: boolean;
|
|
3143
|
+
punctuation?: boolean;
|
|
3144
|
+
wordTimeOffsets?: boolean;
|
|
3145
|
+
verbatimTranscripts?: boolean;
|
|
3146
|
+
customConfiguration?: object;
|
|
3147
|
+
};
|
|
3148
|
+
export declare type TVoiceGateway2SonioxOptions = {
|
|
3149
|
+
id?: string;
|
|
3150
|
+
title?: string;
|
|
3151
|
+
disableStoreAudio?: boolean;
|
|
3152
|
+
disableStoreTranscript?: boolean;
|
|
3153
|
+
disableSearch?: boolean;
|
|
3154
|
+
metadata?: object;
|
|
3155
|
+
storage?: object;
|
|
3156
|
+
};
|
|
3157
|
+
export declare type TVoiceGateway2IbmOptions = {
|
|
3158
|
+
sttApiKey?: string;
|
|
3159
|
+
sttRegion?: string;
|
|
3160
|
+
ttsApiKey?: string;
|
|
3161
|
+
ttsRegion?: string;
|
|
3162
|
+
instanceId?: string;
|
|
3163
|
+
model?: string;
|
|
3164
|
+
languageCustomizationId?: string;
|
|
3165
|
+
acousticCustomizationId?: string;
|
|
3166
|
+
baseModelVersion?: string;
|
|
3167
|
+
watsonMetadata?: string;
|
|
3168
|
+
watsonLearningOptOut?: boolean;
|
|
3169
|
+
};
|
|
3170
|
+
export declare type TVoiceGatewayNuanceResourceReference = {
|
|
3171
|
+
type?: string;
|
|
3172
|
+
uri?: string;
|
|
3173
|
+
maxLoadFailures?: boolean;
|
|
3174
|
+
requestTimeoutMs?: number;
|
|
3175
|
+
headers?: object;
|
|
3176
|
+
};
|
|
3177
|
+
export declare type TVoiceGatewayNuanceResources = {
|
|
3178
|
+
externalReference?: TVoiceGatewayNuanceResourceReference;
|
|
3179
|
+
inlineWordset?: string;
|
|
3180
|
+
builtin?: string;
|
|
3181
|
+
inlineGrammar?: string;
|
|
3182
|
+
wakeupWord?: Array<string>;
|
|
3183
|
+
weightName?: string;
|
|
3184
|
+
weightValue?: number;
|
|
3185
|
+
reuse?: string;
|
|
3186
|
+
};
|
|
3187
|
+
export declare type TVoiceGatewayNuanceFormatting = {
|
|
3188
|
+
scheme?: string;
|
|
3189
|
+
options?: object;
|
|
3190
|
+
};
|
|
3191
|
+
export declare type TVoiceGateway2InputType = "digits" | "speech";
|
|
3192
|
+
export declare type TVoiceGateway2UserNoInputMode = "event" | "speech" | "play";
|
|
3193
|
+
export declare type TVoiceGateway2FlowNoInputMode = "speech" | "play";
|
|
3194
|
+
export interface IVoiceGateway2BargeInParams {
|
|
3195
|
+
enable?: boolean;
|
|
3196
|
+
sticky?: boolean;
|
|
3197
|
+
dtmfBargein?: boolean;
|
|
3198
|
+
actionHook?: object | string;
|
|
3199
|
+
input?: TVoiceGateway2InputType[];
|
|
3200
|
+
finishOnKey?: string;
|
|
3201
|
+
numDigits?: number;
|
|
3202
|
+
minDigits?: number;
|
|
3203
|
+
maxDigits?: number;
|
|
3204
|
+
interDigitTimeout?: number;
|
|
3205
|
+
minBargeinWordCount?: number;
|
|
3206
|
+
}
|
|
3207
|
+
export interface IVoiceGateway2ActivityParams {
|
|
3208
|
+
synthesizer?: IVoiceGateway2SynthesizerParams;
|
|
3209
|
+
recognizer?: IVoiceGateway2RecognizerParams;
|
|
3210
|
+
bargeIn?: IVoiceGateway2BargeInParams;
|
|
3211
|
+
user?: IVoiceGateway2CognigyUserInputConfigParams;
|
|
3212
|
+
dtmf?: boolean;
|
|
3213
|
+
sessionParams?: IVoiceGateway2ActivityParams;
|
|
3214
|
+
fillerNoise?: IVoiceGateway2FillerNoiseParams;
|
|
3215
|
+
flow?: IVoiceGateway2CognigyFlowInputConfigParams;
|
|
2536
3216
|
}
|
|
2537
|
-
export interface
|
|
2538
|
-
|
|
2539
|
-
|
|
3217
|
+
export interface IVoiceGateway2FillerNoiseParams {
|
|
3218
|
+
enable: boolean;
|
|
3219
|
+
url?: string;
|
|
3220
|
+
startDelaySecs?: number;
|
|
3221
|
+
}
|
|
3222
|
+
export declare type TVoiceGateway2DubActionType = "addTrack" | "removeTrack" | "silenceTrack" | "playOnTrack" | "sayOnTrack";
|
|
3223
|
+
export declare type TVoiceGateway2MediaPath = "fullMedia" | "partialMedia" | "noMedia";
|
|
3224
|
+
export interface IVoiceGateway2CognigyUserInputConfigParams {
|
|
3225
|
+
noInputMode?: TVoiceGateway2UserNoInputMode;
|
|
3226
|
+
noInputTimeout?: number;
|
|
3227
|
+
noInputRetries?: number;
|
|
3228
|
+
noInputSpeech?: string;
|
|
3229
|
+
noInputUrl?: string;
|
|
3230
|
+
userNoInputAutoHangup?: boolean;
|
|
3231
|
+
}
|
|
3232
|
+
export interface IVoiceGateway2CognigyFlowInputConfigParams {
|
|
3233
|
+
flowNoInputEnable?: boolean;
|
|
3234
|
+
flowNoInputMode?: TVoiceGateway2FlowNoInputMode;
|
|
3235
|
+
flowNoInputTimeout?: number;
|
|
3236
|
+
flowNoInputRetries?: number;
|
|
3237
|
+
flowNoInputSpeech?: string;
|
|
3238
|
+
flowNoInputUrl?: string;
|
|
3239
|
+
flowNoInputFail?: boolean;
|
|
3240
|
+
}
|
|
3241
|
+
export interface IGetNluPipelineParams {
|
|
3242
|
+
parseIntents?: boolean;
|
|
3243
|
+
parseSlots?: boolean;
|
|
3244
|
+
parseSystemSlots?: boolean;
|
|
3245
|
+
findType?: boolean;
|
|
2540
3246
|
}
|
|
2541
3247
|
/**
|
|
2542
3248
|
* The supported endpoint channels
|
|
@@ -2687,6 +3393,7 @@ export interface ICallEventFailoverSettings {
|
|
|
2687
3393
|
deepgramEndpointing?: boolean;
|
|
2688
3394
|
deepgramEndpointingValue?: number;
|
|
2689
3395
|
dialTranscribeDeepgramTier?: string;
|
|
3396
|
+
mediaPath?: TVoiceGateway2MediaPath;
|
|
2690
3397
|
anchorMedia?: boolean;
|
|
2691
3398
|
}
|
|
2692
3399
|
export interface ICallEvents {
|
|
@@ -4297,333 +5004,79 @@ export interface IContactAttachment {
|
|
|
4297
5004
|
* address:
|
|
4298
5005
|
* type: string
|
|
4299
5006
|
* required:
|
|
4300
|
-
* - type
|
|
4301
|
-
* - latitude
|
|
4302
|
-
* - longitude
|
|
4303
|
-
*/
|
|
4304
|
-
export interface ILocationAttachment {
|
|
4305
|
-
type: "location";
|
|
4306
|
-
latitude: number;
|
|
4307
|
-
longitude: number;
|
|
4308
|
-
name?: string;
|
|
4309
|
-
title?: string;
|
|
4310
|
-
address?: string;
|
|
4311
|
-
}
|
|
4312
|
-
export declare type TGenericAttachments = IFileAttachment | IImageAttachment | IVideoAttachment | IAudioAttachment;
|
|
4313
|
-
/**
|
|
4314
|
-
* @openapi
|
|
4315
|
-
*
|
|
4316
|
-
* components:
|
|
4317
|
-
* schemas:
|
|
4318
|
-
* TAttachments:
|
|
4319
|
-
* oneOf:
|
|
4320
|
-
* - $ref: '#/components/schemas/IFileAttachment'
|
|
4321
|
-
* - $ref: '#/components/schemas/IImageAttachment'
|
|
4322
|
-
* - $ref: '#/components/schemas/IVideoAttachment'
|
|
4323
|
-
* - $ref: '#/components/schemas/IAudioAttachment'
|
|
4324
|
-
* - $ref: '#/components/schemas/IStickerAttachment'
|
|
4325
|
-
* - $ref: '#/components/schemas/IContactAttachment'
|
|
4326
|
-
* - $ref: '#/components/schemas/ILocationAttachment'
|
|
4327
|
-
*/
|
|
4328
|
-
export declare type TAttachments = TGenericAttachments | IStickerAttachment | IContactAttachment | ILocationAttachment;
|
|
4329
|
-
export interface IEightByEightEndpointSettings extends IEndpointSessionSettings {
|
|
4330
|
-
/** The base 8x8 server url */
|
|
4331
|
-
baseUrl: string;
|
|
4332
|
-
/** The API Key which we use to access/authorize the 8x8 API calls */
|
|
4333
|
-
apiKey: string;
|
|
4334
|
-
/**
|
|
4335
|
-
* The API Tenant Id which we use as a 8x8 tenant header for the 8x8 API calls.
|
|
4336
|
-
* Tenant ID, it is going to be mandatory if customer has more than one CC tenant in his organisation.
|
|
4337
|
-
*/
|
|
4338
|
-
apiTenant: string;
|
|
4339
|
-
/**
|
|
4340
|
-
* If activated, CONVERSATION UPDATE EVENTS of state ACTIVE will be accepted & sent to the Flow. Users will be able to access the event payload via the Input data object.
|
|
4341
|
-
* If deactivated, CONVERSATION UPDATE EVENTS of state ACTIVE will not be accepted & will not be sent to the Flow.
|
|
4342
|
-
*/
|
|
4343
|
-
acceptConversationActiveEvent?: boolean;
|
|
4344
|
-
/** Settings to store attachments at a cloud provider */
|
|
4345
|
-
fileStorageSettings?: IFileStorageSettings;
|
|
4346
|
-
}
|
|
4347
|
-
export interface IGenesysBotConnectorEndpointSettings {
|
|
4348
|
-
verifyToken: string;
|
|
4349
|
-
}
|
|
4350
|
-
export interface INiceCXOneEndpointSettings {
|
|
4351
|
-
verifyToken: string;
|
|
4352
|
-
}
|
|
4353
|
-
export interface INiceCXOneAAHEndpointSettings {
|
|
4354
|
-
niceCXOneAAHConnection: string;
|
|
4355
|
-
}
|
|
4356
|
-
export interface IZoomContactCenterEndpointSettings {
|
|
4357
|
-
verifyToken: string;
|
|
4358
|
-
}
|
|
4359
|
-
declare const arrayNLUConnectorType_2_0: readonly [
|
|
4360
|
-
"alexa",
|
|
4361
|
-
"dialogflow",
|
|
4362
|
-
"dialogflowBuiltIn",
|
|
4363
|
-
"amazonLexBuiltIn",
|
|
4364
|
-
"luis",
|
|
4365
|
-
"watson",
|
|
4366
|
-
"noNlu",
|
|
4367
|
-
"cognigy",
|
|
4368
|
-
"code",
|
|
4369
|
-
"lex",
|
|
4370
|
-
"generativeAI"
|
|
4371
|
-
];
|
|
4372
|
-
export declare type TNLUConnectorType_2_0 = typeof arrayNLUConnectorType_2_0[number];
|
|
4373
|
-
declare const generativeAIModels: readonly [
|
|
4374
|
-
"gpt-3.5-turbo",
|
|
4375
|
-
"gpt-3.5-turbo-instruct",
|
|
4376
|
-
"gpt-4",
|
|
4377
|
-
"gpt-4o",
|
|
4378
|
-
"gpt-4o-mini",
|
|
4379
|
-
"gpt-4.1",
|
|
4380
|
-
"gpt-4.1-mini",
|
|
4381
|
-
"gpt-4.1-nano",
|
|
4382
|
-
"gpt-5",
|
|
4383
|
-
"gpt-5-nano",
|
|
4384
|
-
"gpt-5-mini",
|
|
4385
|
-
"gpt-5-chat-latest",
|
|
4386
|
-
"luminous-extended-control",
|
|
4387
|
-
"claude-v1-100k",
|
|
4388
|
-
"claude-instant-v1",
|
|
4389
|
-
"claude-3-opus-20240229",
|
|
4390
|
-
"claude-3-haiku-20240307",
|
|
4391
|
-
"claude-3-sonnet-20240229",
|
|
4392
|
-
"claude-3-5-sonnet-20241022",
|
|
4393
|
-
"claude-3-7-sonnet-20250219",
|
|
4394
|
-
"claude-3-5-sonnet-latest",
|
|
4395
|
-
"claude-3-7-sonnet-latest",
|
|
4396
|
-
"claude-opus-4-0",
|
|
4397
|
-
"claude-sonnet-4-0",
|
|
4398
|
-
"text-bison@001",
|
|
4399
|
-
"custom-model",
|
|
4400
|
-
"custom-embedding-model",
|
|
4401
|
-
"gemini-1.0-pro",
|
|
4402
|
-
"gemini-1.5-pro",
|
|
4403
|
-
"gemini-1.5-flash",
|
|
4404
|
-
"gemini-2.0-flash",
|
|
4405
|
-
"gemini-2.0-flash-lite",
|
|
4406
|
-
"amazon.nova-lite-v1:0",
|
|
4407
|
-
"amazon.nova-pro-v1:0",
|
|
4408
|
-
"amazon.nova-micro-v1:0",
|
|
4409
|
-
"anthropic.claude-3-5-sonnet-20240620-v1:0",
|
|
4410
|
-
"mistral-large-2411",
|
|
4411
|
-
"mistral-small-2503",
|
|
4412
|
-
"pixtral-large-2411",
|
|
4413
|
-
"pixtral-12b-2409",
|
|
4414
|
-
"mistral-large-latest",
|
|
4415
|
-
"pixtral-large-latest",
|
|
4416
|
-
"mistral-medium-latest",
|
|
4417
|
-
"mistral-small-latest",
|
|
4418
|
-
"text-davinci-003",
|
|
4419
|
-
"text-embedding-3-small",
|
|
4420
|
-
"text-embedding-3-large",
|
|
4421
|
-
"text-embedding-ada-002",
|
|
4422
|
-
"luminous-embedding-128",
|
|
4423
|
-
"amazon.titan-embed-text-v2:0",
|
|
4424
|
-
"Pharia-1-Embedding-4608"
|
|
4425
|
-
];
|
|
4426
|
-
/**
|
|
4427
|
-
* @openapi
|
|
4428
|
-
*
|
|
4429
|
-
* components:
|
|
4430
|
-
* schemas:
|
|
4431
|
-
* TGenerativeAIModels:
|
|
4432
|
-
* type: string
|
|
4433
|
-
* enum:
|
|
4434
|
-
* - gpt-3.5-turbo
|
|
4435
|
-
* - gpt-3.5-turbo-instruct
|
|
4436
|
-
* - gpt-4
|
|
4437
|
-
* - gpt-4o
|
|
4438
|
-
* - gpt-4o-mini
|
|
4439
|
-
* - text-embedding-ada-002
|
|
4440
|
-
* - luminous-extended-control
|
|
4441
|
-
* - luminous-embedding-128
|
|
4442
|
-
* - Pharia-1-Embedding-4608
|
|
4443
|
-
* - claude-v1-100k
|
|
4444
|
-
* - claude-instant-v1
|
|
4445
|
-
* - claude-3-opus-20240229
|
|
4446
|
-
* - custom-model
|
|
4447
|
-
* - custom-embedding-model
|
|
4448
|
-
* - gemini-2.0-flash
|
|
4449
|
-
* - gemini-2.0-flash-lite
|
|
4450
|
-
* - mistral-large-2411
|
|
4451
|
-
* - mistral-small-2503
|
|
4452
|
-
* - pixtral-large-2411
|
|
4453
|
-
* - pixtral-12b-2409
|
|
5007
|
+
* - type
|
|
5008
|
+
* - latitude
|
|
5009
|
+
* - longitude
|
|
4454
5010
|
*/
|
|
4455
|
-
export
|
|
4456
|
-
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
"awsBedrock",
|
|
4465
|
-
"mistral"
|
|
4466
|
-
];
|
|
5011
|
+
export interface ILocationAttachment {
|
|
5012
|
+
type: "location";
|
|
5013
|
+
latitude: number;
|
|
5014
|
+
longitude: number;
|
|
5015
|
+
name?: string;
|
|
5016
|
+
title?: string;
|
|
5017
|
+
address?: string;
|
|
5018
|
+
}
|
|
5019
|
+
export declare type TGenericAttachments = IFileAttachment | IImageAttachment | IVideoAttachment | IAudioAttachment;
|
|
4467
5020
|
/**
|
|
4468
5021
|
* @openapi
|
|
4469
5022
|
*
|
|
4470
5023
|
* components:
|
|
4471
|
-
*
|
|
4472
|
-
*
|
|
4473
|
-
*
|
|
4474
|
-
*
|
|
4475
|
-
* -
|
|
4476
|
-
* -
|
|
4477
|
-
* -
|
|
4478
|
-
* -
|
|
4479
|
-
* -
|
|
4480
|
-
* -
|
|
4481
|
-
* - awsBedrock
|
|
4482
|
-
* - mistral
|
|
5024
|
+
* schemas:
|
|
5025
|
+
* TAttachments:
|
|
5026
|
+
* oneOf:
|
|
5027
|
+
* - $ref: '#/components/schemas/IFileAttachment'
|
|
5028
|
+
* - $ref: '#/components/schemas/IImageAttachment'
|
|
5029
|
+
* - $ref: '#/components/schemas/IVideoAttachment'
|
|
5030
|
+
* - $ref: '#/components/schemas/IAudioAttachment'
|
|
5031
|
+
* - $ref: '#/components/schemas/IStickerAttachment'
|
|
5032
|
+
* - $ref: '#/components/schemas/IContactAttachment'
|
|
5033
|
+
* - $ref: '#/components/schemas/ILocationAttachment'
|
|
4483
5034
|
*/
|
|
4484
|
-
export declare type
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
"aiEnhancedOutputs",
|
|
4491
|
-
"sentimentAnalysis",
|
|
4492
|
-
"designTimeGeneration",
|
|
4493
|
-
"intentSentenceGeneration",
|
|
4494
|
-
"flowGeneration",
|
|
4495
|
-
"generateNodeOutput",
|
|
4496
|
-
"lexiconGeneration",
|
|
4497
|
-
"answerExtraction",
|
|
4498
|
-
"gptConversation"
|
|
4499
|
-
];
|
|
4500
|
-
export declare type TGenerativeAIUseCases = typeof generativeAIUseCases[number];
|
|
4501
|
-
declare const modeType: readonly [
|
|
4502
|
-
"chat",
|
|
4503
|
-
"completion",
|
|
4504
|
-
"embedding"
|
|
4505
|
-
];
|
|
4506
|
-
export declare type TModeType = typeof modeType[number];
|
|
4507
|
-
export declare type TBASIC_EXTENSION = "@cognigy/basic-nodes";
|
|
4508
|
-
export declare type TMONGO_DB_EXTENSION = "@cognigy/mongodb";
|
|
4509
|
-
export declare type TSQL_EXTENSION = "@cognigy/mssql";
|
|
4510
|
-
export declare type TSMTP_EXTENSION = "@cognigy/smtp";
|
|
4511
|
-
export declare type TVOICE_GATEWAY_EXTENSION = "@cognigy/voicegateway";
|
|
4512
|
-
export declare type TMICROSOFT_EXTENSION = "@cognigy/microsoft";
|
|
4513
|
-
export declare type TVOICE_GATEWAY_2_EXTENSION = "@cognigy/voicegateway2";
|
|
4514
|
-
export interface IGenerativeAIUseCaseSettings {
|
|
4515
|
-
largeLanguageModelId: string | null;
|
|
4516
|
-
temperature: number;
|
|
4517
|
-
}
|
|
4518
|
-
export interface IGenericIntentFeedbackFinding {
|
|
4519
|
-
type: IGenericIntentFeedbackFindingType;
|
|
4520
|
-
}
|
|
4521
|
-
export interface IOverlapIntentFeedbackFinding {
|
|
4522
|
-
type: IOverlapIntentFeedbackFindingType;
|
|
4523
|
-
overlappingIntentReferenceId: string;
|
|
4524
|
-
overlappingIntentName: string;
|
|
4525
|
-
overlappingIntentId: TMongoId;
|
|
4526
|
-
overlappingFlowName: string;
|
|
4527
|
-
overlappingFlowId: TMongoId;
|
|
4528
|
-
}
|
|
4529
|
-
export interface ILowDataIntentFeedbackFinding {
|
|
4530
|
-
type: "lowDataIntents";
|
|
4531
|
-
intents: {
|
|
4532
|
-
intentReferenceId: string;
|
|
4533
|
-
intentName: string;
|
|
4534
|
-
intentId: string;
|
|
4535
|
-
flowId: string;
|
|
4536
|
-
flowName: string;
|
|
4537
|
-
}[];
|
|
4538
|
-
}
|
|
4539
|
-
declare const overlapIntentFeedbackFindingArrayType: readonly [
|
|
4540
|
-
"strongOverlap",
|
|
4541
|
-
"someOverlap"
|
|
4542
|
-
];
|
|
4543
|
-
export declare type IOverlapIntentFeedbackFindingType = typeof overlapIntentFeedbackFindingArrayType[number];
|
|
4544
|
-
declare const genericIntentFeedbackFindingArrayType: readonly [
|
|
4545
|
-
"poorFScore",
|
|
4546
|
-
"fairFScore",
|
|
4547
|
-
"goodFScore",
|
|
4548
|
-
"fewSentences",
|
|
4549
|
-
"unclearIntent",
|
|
4550
|
-
"noSiblings"
|
|
4551
|
-
];
|
|
4552
|
-
export declare type IGenericIntentFeedbackFindingType = typeof genericIntentFeedbackFindingArrayType[number];
|
|
4553
|
-
export declare type IntentFeedbackFinding = IGenericIntentFeedbackFinding | IOverlapIntentFeedbackFinding | ILowDataIntentFeedbackFinding;
|
|
4554
|
-
export interface IIntentFeedbackInDBReport {
|
|
4555
|
-
findings: IntentFeedbackFinding[];
|
|
4556
|
-
info: {
|
|
4557
|
-
fScore: number;
|
|
4558
|
-
};
|
|
4559
|
-
}
|
|
4560
|
-
declare const biasTowardsParentOrChildIntentsTypes: readonly [
|
|
4561
|
-
"parents",
|
|
4562
|
-
"children"
|
|
4563
|
-
];
|
|
4564
|
-
export declare type TBiasTowardsParentOrChildIntentsTypes = typeof biasTowardsParentOrChildIntentsTypes[number];
|
|
4565
|
-
declare const intentTypes: readonly [
|
|
4566
|
-
"yesNoIntent",
|
|
4567
|
-
"default"
|
|
4568
|
-
];
|
|
4569
|
-
export declare type TIntentTypes = typeof intentTypes[number];
|
|
4570
|
-
export interface ILocalizedIntentData {
|
|
4571
|
-
rules: string[];
|
|
4572
|
-
condition: string;
|
|
4573
|
-
confirmationSentences: string[];
|
|
4574
|
-
disambiguationSentence: string;
|
|
4575
|
-
localeReference: TMongoId;
|
|
4576
|
-
}
|
|
4577
|
-
export interface IIntentInDB extends Omit<IIntent, keyof ILocalizedIntentData> {
|
|
4578
|
-
localizedData: ILocalizedIntentData[];
|
|
4579
|
-
/**
|
|
4580
|
-
* A list of all of the locales
|
|
4581
|
-
* that are not disabled. Used to return
|
|
4582
|
-
* the correct isDisabled value for the
|
|
4583
|
-
* given locale
|
|
4584
|
-
*/
|
|
4585
|
-
enabledLocaleReferences: TMongoId[];
|
|
4586
|
-
}
|
|
4587
|
-
export interface IIntent extends IEntityMeta, ILocalizedIntentData {
|
|
4588
|
-
name: string;
|
|
4589
|
-
description?: string;
|
|
4590
|
-
referenceId: string;
|
|
4591
|
-
isRejectIntent: boolean;
|
|
4592
|
-
isDisabled: boolean;
|
|
4593
|
-
tags: string[];
|
|
4594
|
-
data: any;
|
|
4595
|
-
nodeReferenceId: string;
|
|
4596
|
-
childFeatures?: boolean | string[];
|
|
4597
|
-
biasTowardsParentOrChildIntents: TBiasTowardsParentOrChildIntentsTypes;
|
|
4598
|
-
parentIntentId?: string;
|
|
4599
|
-
feedbackReport: IIntentFeedbackInDBReport;
|
|
4600
|
-
intentRelationReferences: TMongoId[];
|
|
4601
|
-
flowReference?: TMongoId;
|
|
4602
|
-
projectReference: TMongoId;
|
|
4603
|
-
organisationReference: TMongoId;
|
|
4604
|
-
flowReferenceId?: string;
|
|
5035
|
+
export declare type TAttachments = TGenericAttachments | IStickerAttachment | IContactAttachment | ILocationAttachment;
|
|
5036
|
+
export interface IEightByEightEndpointSettings extends IEndpointSessionSettings {
|
|
5037
|
+
/** The base 8x8 server url */
|
|
5038
|
+
baseUrl: string;
|
|
5039
|
+
/** The API Key which we use to access/authorize the 8x8 API calls */
|
|
5040
|
+
apiKey: string;
|
|
4605
5041
|
/**
|
|
4606
|
-
*
|
|
4607
|
-
* to
|
|
5042
|
+
* The API Tenant Id which we use as a 8x8 tenant header for the 8x8 API calls.
|
|
5043
|
+
* Tenant ID, it is going to be mandatory if customer has more than one CC tenant in his organisation.
|
|
4608
5044
|
*/
|
|
4609
|
-
|
|
5045
|
+
apiTenant: string;
|
|
4610
5046
|
/**
|
|
4611
|
-
*
|
|
5047
|
+
* If activated, CONVERSATION UPDATE EVENTS of state ACTIVE will be accepted & sent to the Flow. Users will be able to access the event payload via the Input data object.
|
|
5048
|
+
* If deactivated, CONVERSATION UPDATE EVENTS of state ACTIVE will not be accepted & will not be sent to the Flow.
|
|
4612
5049
|
*/
|
|
4613
|
-
|
|
4614
|
-
|
|
5050
|
+
acceptConversationActiveEvent?: boolean;
|
|
5051
|
+
/** Settings to store attachments at a cloud provider */
|
|
5052
|
+
fileStorageSettings?: IFileStorageSettings;
|
|
4615
5053
|
}
|
|
4616
|
-
export interface
|
|
4617
|
-
|
|
4618
|
-
rules: string[];
|
|
4619
|
-
name: string;
|
|
4620
|
-
isDisabled: boolean;
|
|
5054
|
+
export interface IGenesysBotConnectorEndpointSettings {
|
|
5055
|
+
verifyToken: string;
|
|
4621
5056
|
}
|
|
4622
|
-
export interface
|
|
4623
|
-
|
|
4624
|
-
noIntent: IYesNoData | IIntentInDB;
|
|
4625
|
-
rejectIntent: IYesNoData | IIntentInDB;
|
|
5057
|
+
export interface INiceCXOneEndpointSettings {
|
|
5058
|
+
verifyToken: string;
|
|
4626
5059
|
}
|
|
5060
|
+
export interface INiceCXOneAAHEndpointSettings {
|
|
5061
|
+
niceCXOneAAHConnection: string;
|
|
5062
|
+
}
|
|
5063
|
+
export interface IZoomContactCenterEndpointSettings {
|
|
5064
|
+
verifyToken: string;
|
|
5065
|
+
}
|
|
5066
|
+
declare const arrayNLUConnectorType_2_0: readonly [
|
|
5067
|
+
"alexa",
|
|
5068
|
+
"dialogflow",
|
|
5069
|
+
"dialogflowBuiltIn",
|
|
5070
|
+
"amazonLexBuiltIn",
|
|
5071
|
+
"luis",
|
|
5072
|
+
"watson",
|
|
5073
|
+
"noNlu",
|
|
5074
|
+
"cognigy",
|
|
5075
|
+
"code",
|
|
5076
|
+
"lex",
|
|
5077
|
+
"generativeAI"
|
|
5078
|
+
];
|
|
5079
|
+
export declare type TNLUConnectorType_2_0 = typeof arrayNLUConnectorType_2_0[number];
|
|
4627
5080
|
/**
|
|
4628
5081
|
* @openapi
|
|
4629
5082
|
*
|
|
@@ -7239,6 +7692,9 @@ export interface IWebrtcWidgetConfig {
|
|
|
7239
7692
|
* agentCopilotAuthentication:
|
|
7240
7693
|
* type: string
|
|
7241
7694
|
* description: Authentication connection reference Id for agent copilot
|
|
7695
|
+
* oAuth2Connection:
|
|
7696
|
+
* type: string
|
|
7697
|
+
* description: OAuth2 Connection for Genesys Cloud
|
|
7242
7698
|
* orgDataPrivacySettings:
|
|
7243
7699
|
* $ref: '#/components/schemas/IEndpoitOrgDataPrivacySettings_2_0'
|
|
7244
7700
|
* IEndpoint_2_0:
|
|
@@ -8531,41 +8987,9 @@ export interface IProjectIndexItem_2_0 {
|
|
|
8531
8987
|
}
|
|
8532
8988
|
export interface IIndexProjectsRestData_2_0 extends IRestPagination<IProjectIndexItem_2_0> {
|
|
8533
8989
|
ignoreOwnership?: boolean;
|
|
8534
|
-
}
|
|
8535
|
-
export interface IIndexProjectsRestReturnValue_2_0 extends ICursorBasedPaginationReturnValue<IProjectIndexItem_2_0> {
|
|
8536
|
-
}
|
|
8537
|
-
export declare const nluLanguages: readonly [
|
|
8538
|
-
"ar-AE",
|
|
8539
|
-
"bn-IN",
|
|
8540
|
-
"da-DK",
|
|
8541
|
-
"en-AU",
|
|
8542
|
-
"en-CA",
|
|
8543
|
-
"en-GB",
|
|
8544
|
-
"en-IN",
|
|
8545
|
-
"en-US",
|
|
8546
|
-
"es-ES",
|
|
8547
|
-
"fi-FI",
|
|
8548
|
-
"fr-FR",
|
|
8549
|
-
"de-DE",
|
|
8550
|
-
"hi-IN",
|
|
8551
|
-
"it-IT",
|
|
8552
|
-
"ja-JP",
|
|
8553
|
-
"ko-KR",
|
|
8554
|
-
"nn-NO",
|
|
8555
|
-
"nl-NL",
|
|
8556
|
-
"pl-PL",
|
|
8557
|
-
"pt-BR",
|
|
8558
|
-
"pt-PT",
|
|
8559
|
-
"ru-RU",
|
|
8560
|
-
"sv-SE",
|
|
8561
|
-
"ta-IN",
|
|
8562
|
-
"th-TH",
|
|
8563
|
-
"tr-TR",
|
|
8564
|
-
"vi-VN",
|
|
8565
|
-
"zh-CN",
|
|
8566
|
-
"ge-GE"
|
|
8567
|
-
];
|
|
8568
|
-
export declare type TNluLanguage = typeof nluLanguages[number];
|
|
8990
|
+
}
|
|
8991
|
+
export interface IIndexProjectsRestReturnValue_2_0 extends ICursorBasedPaginationReturnValue<IProjectIndexItem_2_0> {
|
|
8992
|
+
}
|
|
8569
8993
|
/**
|
|
8570
8994
|
* @openapi
|
|
8571
8995
|
*
|
|
@@ -8863,109 +9287,6 @@ export interface IGraphLargeLanguageModel {
|
|
|
8863
9287
|
properties: Pick<ILargeLanguageModel, "modelType" | "connectionId" | "createdAt" | "createdBy" | "lastChanged" | "lastChangedBy">;
|
|
8864
9288
|
dependencies?: IGraphLargeLanguageModelDependencyAttachment[];
|
|
8865
9289
|
}
|
|
8866
|
-
export interface ISystemSlots {
|
|
8867
|
-
DATE: IDateSlot[] | null;
|
|
8868
|
-
NUMBER: INumberSlot[] | null;
|
|
8869
|
-
DURATION: IDurationSlot[] | null;
|
|
8870
|
-
TEMPERATURE: ITemperatureSlot[] | null;
|
|
8871
|
-
AGE: IAgeSlot[] | null;
|
|
8872
|
-
PERCENTAGE: IPercentageSlot[] | null;
|
|
8873
|
-
EMAIL: IEmailSlot[] | null;
|
|
8874
|
-
URL: IUrlSlot[] | null;
|
|
8875
|
-
MONEY: IMoneySlot[] | null;
|
|
8876
|
-
DISTANCE: IDistanceSlot[] | null;
|
|
8877
|
-
}
|
|
8878
|
-
export interface IBaseSlot {
|
|
8879
|
-
text: string;
|
|
8880
|
-
data: any;
|
|
8881
|
-
offset: {
|
|
8882
|
-
start: number;
|
|
8883
|
-
end: number;
|
|
8884
|
-
};
|
|
8885
|
-
}
|
|
8886
|
-
export interface IPercentageSlot extends IBaseSlot {
|
|
8887
|
-
data: {
|
|
8888
|
-
value: number;
|
|
8889
|
-
};
|
|
8890
|
-
}
|
|
8891
|
-
export interface IAgeSlot extends IBaseSlot {
|
|
8892
|
-
data: {
|
|
8893
|
-
value: number;
|
|
8894
|
-
unit: TTimeGrain;
|
|
8895
|
-
};
|
|
8896
|
-
}
|
|
8897
|
-
export interface INumberSlot extends IBaseSlot {
|
|
8898
|
-
data: {
|
|
8899
|
-
value: number;
|
|
8900
|
-
};
|
|
8901
|
-
}
|
|
8902
|
-
export interface IEmailSlot extends IBaseSlot {
|
|
8903
|
-
data: {
|
|
8904
|
-
value: string;
|
|
8905
|
-
};
|
|
8906
|
-
}
|
|
8907
|
-
export declare type ITemperatureUnit = "celsius" | "fahrenheit" | "degree" | "kelvin";
|
|
8908
|
-
export interface ITemperatureSlot extends IBaseSlot {
|
|
8909
|
-
data: {
|
|
8910
|
-
value: number;
|
|
8911
|
-
unit: ITemperatureUnit;
|
|
8912
|
-
};
|
|
8913
|
-
}
|
|
8914
|
-
export declare type TTimeGrain = "second" | "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
8915
|
-
export interface IDateObject {
|
|
8916
|
-
day: number;
|
|
8917
|
-
hour: number;
|
|
8918
|
-
minute: number;
|
|
8919
|
-
month: number;
|
|
8920
|
-
second: number;
|
|
8921
|
-
milliseconds: number;
|
|
8922
|
-
weekday: number;
|
|
8923
|
-
dayOfWeek: string;
|
|
8924
|
-
year: number;
|
|
8925
|
-
ISODate: string;
|
|
8926
|
-
grain: TTimeGrain | null;
|
|
8927
|
-
plain: string;
|
|
8928
|
-
timezoneOffset?: string;
|
|
8929
|
-
}
|
|
8930
|
-
export interface IDateSlot extends IBaseSlot {
|
|
8931
|
-
data: {
|
|
8932
|
-
start?: IDateObject;
|
|
8933
|
-
end?: IDateObject;
|
|
8934
|
-
};
|
|
8935
|
-
}
|
|
8936
|
-
export interface IDurationSlot extends IBaseSlot {
|
|
8937
|
-
data: {
|
|
8938
|
-
unit?: TTimeGrain;
|
|
8939
|
-
value?: number;
|
|
8940
|
-
inSeconds?: number;
|
|
8941
|
-
years?: number;
|
|
8942
|
-
quarters?: number;
|
|
8943
|
-
months?: number;
|
|
8944
|
-
weeks?: number;
|
|
8945
|
-
days?: number;
|
|
8946
|
-
hours?: number;
|
|
8947
|
-
minutes?: number;
|
|
8948
|
-
seconds?: number;
|
|
8949
|
-
};
|
|
8950
|
-
}
|
|
8951
|
-
export interface IMoneySlot extends IBaseSlot {
|
|
8952
|
-
data: {
|
|
8953
|
-
value: number;
|
|
8954
|
-
unit: string;
|
|
8955
|
-
};
|
|
8956
|
-
}
|
|
8957
|
-
export interface IUrlSlot extends IBaseSlot {
|
|
8958
|
-
data: {
|
|
8959
|
-
domain: string;
|
|
8960
|
-
value: string;
|
|
8961
|
-
};
|
|
8962
|
-
}
|
|
8963
|
-
export interface IDistanceSlot extends IBaseSlot {
|
|
8964
|
-
data: {
|
|
8965
|
-
unit: string;
|
|
8966
|
-
value: number;
|
|
8967
|
-
};
|
|
8968
|
-
}
|
|
8969
9290
|
export interface IHandoverNodeParams extends INodeFunctionBaseParams {
|
|
8970
9291
|
config: {
|
|
8971
9292
|
text: string;
|
|
@@ -9060,23 +9381,6 @@ export interface ICodeNodeBasicParams extends INodeFunctionBaseParams {
|
|
|
9060
9381
|
code: string;
|
|
9061
9382
|
};
|
|
9062
9383
|
}
|
|
9063
|
-
declare const arrayTDebugEventTypes: readonly [
|
|
9064
|
-
"inputChanged",
|
|
9065
|
-
"contextChanged",
|
|
9066
|
-
"profileChanged",
|
|
9067
|
-
"activeEntrypointsChanged",
|
|
9068
|
-
"nodeExecuted",
|
|
9069
|
-
"nodeError",
|
|
9070
|
-
"finalPing",
|
|
9071
|
-
"input",
|
|
9072
|
-
"output",
|
|
9073
|
-
"switchedFlow",
|
|
9074
|
-
"nluWarning",
|
|
9075
|
-
"debugMessage",
|
|
9076
|
-
"debugError",
|
|
9077
|
-
"goalCompleted"
|
|
9078
|
-
];
|
|
9079
|
-
export declare type TDebugEventType = typeof arrayTDebugEventTypes[number];
|
|
9080
9384
|
export interface IInputChangedEventPayload {
|
|
9081
9385
|
input: {
|
|
9082
9386
|
[key: string]: any;
|
|
@@ -9106,17 +9410,6 @@ export interface INodeErrorEventPayload {
|
|
|
9106
9410
|
errorMessage: string;
|
|
9107
9411
|
sessionId?: string;
|
|
9108
9412
|
}
|
|
9109
|
-
export interface IErrorEventPayload extends ILoggerStack {
|
|
9110
|
-
message: string;
|
|
9111
|
-
flowId: string;
|
|
9112
|
-
nodeId?: string;
|
|
9113
|
-
}
|
|
9114
|
-
export interface IFinalPingEventPayload {
|
|
9115
|
-
type: "regular" | "preventFinalPingToEndpoint" | "cognigyStopFlow" | "error";
|
|
9116
|
-
analyticsData?: IAnalyticsSourceData;
|
|
9117
|
-
error?: IErrorEventPayload;
|
|
9118
|
-
sessionId?: string;
|
|
9119
|
-
}
|
|
9120
9413
|
export interface IOutputEventPayload {
|
|
9121
9414
|
text?: string;
|
|
9122
9415
|
data?: {
|
|
@@ -9145,338 +9438,54 @@ export interface ISwitchedFlowEventPayload {
|
|
|
9145
9438
|
sessionId?: string;
|
|
9146
9439
|
}
|
|
9147
9440
|
export interface IActiveEntrypointsChangedEventPayload {
|
|
9148
|
-
entrypoints: IActiveEntrypoint[];
|
|
9149
|
-
sessionId?: string;
|
|
9150
|
-
}
|
|
9151
|
-
export interface IActiveEntrypoint {
|
|
9152
|
-
flowId: string;
|
|
9153
|
-
nodeReferenceId: string;
|
|
9154
|
-
primary?: boolean;
|
|
9155
|
-
}
|
|
9156
|
-
export interface INluWarningEventPayload {
|
|
9157
|
-
errorMessage: string;
|
|
9158
|
-
sessionId?: string;
|
|
9159
|
-
}
|
|
9160
|
-
export interface IDebugEventMessagePayloadBase {
|
|
9161
|
-
sessionId?: string;
|
|
9162
|
-
header?: string;
|
|
9163
|
-
metadata?: IOutputEventMetadata;
|
|
9164
|
-
}
|
|
9165
|
-
export interface IDebugEventTextMessagePayload extends IDebugEventMessagePayloadBase {
|
|
9166
|
-
type: "text";
|
|
9167
|
-
message: string;
|
|
9168
|
-
}
|
|
9169
|
-
export interface IDebugEventJsonMessagePayload extends IDebugEventMessagePayloadBase {
|
|
9170
|
-
type: "json";
|
|
9171
|
-
message: object;
|
|
9172
|
-
}
|
|
9173
|
-
export declare type TDebugEventMessagePayload = IDebugEventTextMessagePayload | IDebugEventJsonMessagePayload;
|
|
9174
|
-
export interface IGoalAnalyticsPayload {
|
|
9175
|
-
analyticsdata: IGoalEscalations;
|
|
9176
|
-
data: IPayloadBaseMetaData;
|
|
9177
|
-
}
|
|
9178
|
-
export interface IGoalAnalyticsData {
|
|
9179
|
-
projectId: string;
|
|
9180
|
-
organisationId: string;
|
|
9181
|
-
sessionId: string;
|
|
9182
|
-
referenceId: string;
|
|
9183
|
-
version: string;
|
|
9184
|
-
timestamp: Date;
|
|
9185
|
-
goalCycleId: string;
|
|
9186
|
-
stepId: string;
|
|
9187
|
-
goalId: string;
|
|
9188
|
-
contactId: string;
|
|
9189
|
-
stepType?: string;
|
|
9190
|
-
}
|
|
9191
|
-
export interface IGoalEscalations extends IGoalAnalyticsData, IAnalyticsEndpointMeta, IAnalyticsLocaleMeta, IAnalyticsSnapshotMeta {
|
|
9192
|
-
}
|
|
9193
|
-
export interface IGoalCompletedEventPayload extends IGoalAnalyticsPayload {
|
|
9194
|
-
}
|
|
9195
|
-
export declare type TDebugEventPayload = IInputChangedEventPayload | IContextChangedEventPayload | IActiveEntrypointsChangedEventPayload | IProfileChangedEventPayload | INodeExecutedEventPayload | INodeErrorEventPayload | IFinalPingEventPayload | IOutputEventPayload | ISwitchedFlowEventPayload | INluWarningEventPayload | TDebugEventMessagePayload | IGoalCompletedEventPayload;
|
|
9196
|
-
declare const audioPreviewProviders: readonly [
|
|
9197
|
-
"microsoft",
|
|
9198
|
-
"google",
|
|
9199
|
-
"aws",
|
|
9200
|
-
"deepgram"
|
|
9201
|
-
];
|
|
9202
|
-
export declare type TAudioPreviewProvider = typeof audioPreviewProviders[number];
|
|
9203
|
-
/**
|
|
9204
|
-
* @openapi
|
|
9205
|
-
* components:
|
|
9206
|
-
* schemas:
|
|
9207
|
-
* IGenerativeAIUseCase:
|
|
9208
|
-
* type: object
|
|
9209
|
-
* properties:
|
|
9210
|
-
* useCase:
|
|
9211
|
-
* enum:
|
|
9212
|
-
* - designTimeGeneration
|
|
9213
|
-
* - intentSentenceGeneration
|
|
9214
|
-
* - aiEnhancedOutputs
|
|
9215
|
-
* - lexiconGeneration
|
|
9216
|
-
* - flowGeneration
|
|
9217
|
-
* - gptConversation
|
|
9218
|
-
* - gptPromptNode
|
|
9219
|
-
* - generateNodeOutput
|
|
9220
|
-
* - knowledgeSearch
|
|
9221
|
-
* - sentimentAnalysis
|
|
9222
|
-
*/
|
|
9223
|
-
export interface IGenerativeAIUseCase {
|
|
9224
|
-
useCase: TGenerativeAIUseCases;
|
|
9225
|
-
}
|
|
9226
|
-
export interface INluEmbeddingCredentials {
|
|
9227
|
-
apiType: TGenerativeAIProviders;
|
|
9228
|
-
apiKey: string;
|
|
9229
|
-
apiModel: TGenerativeAIModels;
|
|
9230
|
-
apiCustomBaseUrl?: string;
|
|
9231
|
-
apiResourceName?: string;
|
|
9232
|
-
apiDeploymentName?: string;
|
|
9233
|
-
apiVersion?: string;
|
|
9234
|
-
}
|
|
9235
|
-
export interface ISetAppStateOverlaySettings {
|
|
9236
|
-
autoOpen: boolean;
|
|
9237
|
-
closeOnSubmit: boolean;
|
|
9238
|
-
feedbackMessage: string;
|
|
9239
|
-
screenTitle: string;
|
|
9240
|
-
sendEventOnCloseIconClick: boolean;
|
|
9241
|
-
showCloseIcon: boolean;
|
|
9242
|
-
}
|
|
9243
|
-
export interface ISetAppStateOverlaySettingsMetaData {
|
|
9244
|
-
overlaySettings: ISetAppStateOverlaySettings;
|
|
9245
|
-
endpointType: TEndpointType;
|
|
9246
|
-
url: string;
|
|
9247
|
-
URLToken: string;
|
|
9248
|
-
}
|
|
9249
|
-
export interface IVoiceGateway2VadParams {
|
|
9250
|
-
enable?: boolean;
|
|
9251
|
-
voiceMs?: number;
|
|
9252
|
-
mode?: number;
|
|
9253
|
-
}
|
|
9254
|
-
export declare type TVoiceGateway2TTSVendor = "aws" | "deepgram" | "elevenlabs" | "google" | "microsoft" | "nuance" | "default" | "custom";
|
|
9255
|
-
export interface IVoiceGateway2SynthesizerParams {
|
|
9256
|
-
vendor?: TVoiceGateway2TTSVendor | "default" | "none";
|
|
9257
|
-
language?: string;
|
|
9258
|
-
voice?: string;
|
|
9259
|
-
label?: string;
|
|
9260
|
-
fallbackVendor?: string;
|
|
9261
|
-
fallbackLabel?: string;
|
|
9262
|
-
fallbackLanguage?: string;
|
|
9263
|
-
fallbackVoice?: string;
|
|
9264
|
-
engine?: "standard" | "neural";
|
|
9265
|
-
gender?: "MALE" | "FEMALE" | "NEUTRAL";
|
|
9266
|
-
azureServiceEndpoint?: string;
|
|
9267
|
-
options?: object;
|
|
9268
|
-
disableCache?: boolean;
|
|
9269
|
-
model?: string;
|
|
9441
|
+
entrypoints: IActiveEntrypoint[];
|
|
9442
|
+
sessionId?: string;
|
|
9270
9443
|
}
|
|
9271
|
-
export
|
|
9272
|
-
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
vendor?: TVoiceGateway2STTVendor | "default" | "none";
|
|
9276
|
-
language?: string;
|
|
9277
|
-
label?: string;
|
|
9278
|
-
fallbackVendor?: string;
|
|
9279
|
-
fallbackLabel?: string;
|
|
9280
|
-
fallbackLanguage?: string;
|
|
9281
|
-
vad?: IVoiceGateway2VadParams;
|
|
9282
|
-
hints?: string[];
|
|
9283
|
-
hintsBoost?: number;
|
|
9284
|
-
altLanguages?: string[];
|
|
9285
|
-
profanityFilter?: boolean;
|
|
9286
|
-
interim?: boolean;
|
|
9287
|
-
singleUtterance?: boolean;
|
|
9288
|
-
dualChannel?: boolean;
|
|
9289
|
-
separateRecognitionPerChannel?: boolean;
|
|
9290
|
-
punctuation?: boolean;
|
|
9291
|
-
enhancedModel?: boolean;
|
|
9292
|
-
words?: boolean;
|
|
9293
|
-
diarization?: boolean;
|
|
9294
|
-
diarizationMinSpeakers?: number;
|
|
9295
|
-
diarizationMaxSpeakers?: number;
|
|
9296
|
-
interactionType?: "unspecified" | "discussion" | "presentation" | "phone_call" | "voicemail" | "voice_search" | "voice_command" | "dictation";
|
|
9297
|
-
naicsCod?: number;
|
|
9298
|
-
identifyChannels?: boolean;
|
|
9299
|
-
vocabularyName?: string;
|
|
9300
|
-
vocabularyFilterName?: string;
|
|
9301
|
-
filterMethod?: "remove" | "mask" | "tag";
|
|
9302
|
-
outputFormat?: "simple" | "detailed";
|
|
9303
|
-
profanityOption?: "masked" | "removed" | "raw";
|
|
9304
|
-
requestSnr?: boolean;
|
|
9305
|
-
initialSpeechTimeoutMs?: number;
|
|
9306
|
-
azureSttEndpointId?: string;
|
|
9307
|
-
audioLogging?: boolean;
|
|
9308
|
-
asrDtmfTerminationDigit?: string;
|
|
9309
|
-
asrTimeout?: number;
|
|
9310
|
-
nuanceOptions?: TVoiceGateway2NuanceOptions;
|
|
9311
|
-
deepgramOptions?: TVoiceGateway2DeepgramOptions;
|
|
9312
|
-
ibmOptions?: TVoiceGateway2IbmOptions;
|
|
9313
|
-
nvidiaOptions?: TVoiceGateway2NvidiaOptions;
|
|
9314
|
-
sonioxOptions?: TVoiceGateway2SonioxOptions;
|
|
9315
|
-
model?: TVoiceGateway2GoogleModel | VoiceGatewayDeepgramModel | string;
|
|
9444
|
+
export interface IActiveEntrypoint {
|
|
9445
|
+
flowId: string;
|
|
9446
|
+
nodeReferenceId: string;
|
|
9447
|
+
primary?: boolean;
|
|
9316
9448
|
}
|
|
9317
|
-
export
|
|
9318
|
-
|
|
9319
|
-
|
|
9320
|
-
kryptonEndpoint?: string;
|
|
9321
|
-
topic?: string;
|
|
9322
|
-
utteranceDetectionMode?: string;
|
|
9323
|
-
punctuation?: boolean;
|
|
9324
|
-
profanityFilter?: boolean;
|
|
9325
|
-
includeTokenization?: boolean;
|
|
9326
|
-
discardSpeakerAdaptation?: boolean;
|
|
9327
|
-
suppressCallRecording?: boolean;
|
|
9328
|
-
maskLoadFailures?: boolean;
|
|
9329
|
-
suppressInitialCapitalization?: boolean;
|
|
9330
|
-
allowZeroBaseLmWeight?: boolean;
|
|
9331
|
-
filterWakeupWord?: boolean;
|
|
9332
|
-
resultType?: string;
|
|
9333
|
-
noInputTimeoutMs?: number;
|
|
9334
|
-
recognitionTimeoutMs?: number;
|
|
9335
|
-
utteranceEndSilenceMs?: number;
|
|
9336
|
-
maxHypotheses?: number;
|
|
9337
|
-
speechDomain?: string;
|
|
9338
|
-
formatting?: TVoiceGatewayNuanceFormatting;
|
|
9339
|
-
clientData?: object;
|
|
9340
|
-
userId?: string;
|
|
9341
|
-
speechDetectionSensitivity?: number;
|
|
9342
|
-
resources?: [
|
|
9343
|
-
TVoiceGatewayNuanceResources
|
|
9344
|
-
];
|
|
9345
|
-
};
|
|
9346
|
-
export declare type TVoiceGateway2DeepgramOptions = {
|
|
9347
|
-
deepgramSttUri?: string;
|
|
9348
|
-
deepgramSttUseTls?: boolean;
|
|
9349
|
-
apiKey?: string;
|
|
9350
|
-
tier?: string;
|
|
9351
|
-
model?: string;
|
|
9352
|
-
customModel?: string;
|
|
9353
|
-
version?: string;
|
|
9354
|
-
punctuate?: boolean;
|
|
9355
|
-
smartFormatting?: boolean;
|
|
9356
|
-
profanityFilter?: boolean;
|
|
9357
|
-
redact?: string;
|
|
9358
|
-
diarize?: boolean;
|
|
9359
|
-
diarizeVersion?: string;
|
|
9360
|
-
ner?: boolean;
|
|
9361
|
-
multichannel?: boolean;
|
|
9362
|
-
alternatives?: number;
|
|
9363
|
-
numerals?: boolean;
|
|
9364
|
-
search?: string[];
|
|
9365
|
-
replace?: string[];
|
|
9366
|
-
keywords?: string[];
|
|
9367
|
-
endpointing?: number | boolean;
|
|
9368
|
-
utteranceEndMs?: number;
|
|
9369
|
-
shortUtterance?: boolean;
|
|
9370
|
-
vadTurnoff?: number;
|
|
9371
|
-
tag?: string;
|
|
9372
|
-
};
|
|
9373
|
-
export declare type TVoiceGateway2NvidiaOptions = {
|
|
9374
|
-
rivaUri?: string;
|
|
9375
|
-
maxAlternatives?: number;
|
|
9376
|
-
profanityFilter?: boolean;
|
|
9377
|
-
punctuation?: boolean;
|
|
9378
|
-
wordTimeOffsets?: boolean;
|
|
9379
|
-
verbatimTranscripts?: boolean;
|
|
9380
|
-
customConfiguration?: object;
|
|
9381
|
-
};
|
|
9382
|
-
export declare type TVoiceGateway2SonioxOptions = {
|
|
9383
|
-
id?: string;
|
|
9384
|
-
title?: string;
|
|
9385
|
-
disableStoreAudio?: boolean;
|
|
9386
|
-
disableStoreTranscript?: boolean;
|
|
9387
|
-
disableSearch?: boolean;
|
|
9388
|
-
metadata?: object;
|
|
9389
|
-
storage?: object;
|
|
9390
|
-
};
|
|
9391
|
-
export declare type TVoiceGateway2IbmOptions = {
|
|
9392
|
-
sttApiKey?: string;
|
|
9393
|
-
sttRegion?: string;
|
|
9394
|
-
ttsApiKey?: string;
|
|
9395
|
-
ttsRegion?: string;
|
|
9396
|
-
instanceId?: string;
|
|
9397
|
-
model?: string;
|
|
9398
|
-
languageCustomizationId?: string;
|
|
9399
|
-
acousticCustomizationId?: string;
|
|
9400
|
-
baseModelVersion?: string;
|
|
9401
|
-
watsonMetadata?: string;
|
|
9402
|
-
watsonLearningOptOut?: boolean;
|
|
9403
|
-
};
|
|
9404
|
-
export declare type TVoiceGatewayNuanceResourceReference = {
|
|
9405
|
-
type?: string;
|
|
9406
|
-
uri?: string;
|
|
9407
|
-
maxLoadFailures?: boolean;
|
|
9408
|
-
requestTimeoutMs?: number;
|
|
9409
|
-
headers?: object;
|
|
9410
|
-
};
|
|
9411
|
-
export declare type TVoiceGatewayNuanceResources = {
|
|
9412
|
-
externalReference?: TVoiceGatewayNuanceResourceReference;
|
|
9413
|
-
inlineWordset?: string;
|
|
9414
|
-
builtin?: string;
|
|
9415
|
-
inlineGrammar?: string;
|
|
9416
|
-
wakeupWord?: Array<string>;
|
|
9417
|
-
weightName?: string;
|
|
9418
|
-
weightValue?: number;
|
|
9419
|
-
reuse?: string;
|
|
9420
|
-
};
|
|
9421
|
-
export declare type TVoiceGatewayNuanceFormatting = {
|
|
9422
|
-
scheme?: string;
|
|
9423
|
-
options?: object;
|
|
9424
|
-
};
|
|
9425
|
-
export declare type TVoiceGateway2InputType = "digits" | "speech";
|
|
9426
|
-
export declare type TVoiceGateway2UserNoInputMode = "event" | "speech" | "play";
|
|
9427
|
-
export declare type TVoiceGateway2FlowNoInputMode = "speech" | "play";
|
|
9428
|
-
export interface IVoiceGateway2BargeInParams {
|
|
9429
|
-
enable?: boolean;
|
|
9430
|
-
sticky?: boolean;
|
|
9431
|
-
dtmfBargein?: boolean;
|
|
9432
|
-
actionHook?: object | string;
|
|
9433
|
-
input?: TVoiceGateway2InputType[];
|
|
9434
|
-
finishOnKey?: string;
|
|
9435
|
-
numDigits?: number;
|
|
9436
|
-
minDigits?: number;
|
|
9437
|
-
maxDigits?: number;
|
|
9438
|
-
interDigitTimeout?: number;
|
|
9439
|
-
minBargeinWordCount?: number;
|
|
9449
|
+
export interface INluWarningEventPayload {
|
|
9450
|
+
errorMessage: string;
|
|
9451
|
+
sessionId?: string;
|
|
9440
9452
|
}
|
|
9441
|
-
export interface
|
|
9442
|
-
|
|
9443
|
-
|
|
9444
|
-
|
|
9445
|
-
user?: IVoiceGateway2CognigyUserInputConfigParams;
|
|
9446
|
-
dtmf?: boolean;
|
|
9447
|
-
sessionParams?: IVoiceGateway2ActivityParams;
|
|
9448
|
-
fillerNoise?: IVoiceGateway2FillerNoiseParams;
|
|
9449
|
-
flow?: IVoiceGateway2CognigyFlowInputConfigParams;
|
|
9453
|
+
export interface IDebugEventMessagePayloadBase {
|
|
9454
|
+
sessionId?: string;
|
|
9455
|
+
header?: string;
|
|
9456
|
+
metadata?: IOutputEventMetadata;
|
|
9450
9457
|
}
|
|
9451
|
-
export interface
|
|
9452
|
-
|
|
9453
|
-
|
|
9454
|
-
startDelaySecs?: number;
|
|
9458
|
+
export interface IDebugEventTextMessagePayload extends IDebugEventMessagePayloadBase {
|
|
9459
|
+
type: "text";
|
|
9460
|
+
message: string;
|
|
9455
9461
|
}
|
|
9456
|
-
export
|
|
9457
|
-
|
|
9458
|
-
|
|
9459
|
-
noInputTimeout?: number;
|
|
9460
|
-
noInputRetries?: number;
|
|
9461
|
-
noInputSpeech?: string;
|
|
9462
|
-
noInputUrl?: string;
|
|
9463
|
-
userNoInputAutoHangup?: boolean;
|
|
9462
|
+
export interface IDebugEventJsonMessagePayload extends IDebugEventMessagePayloadBase {
|
|
9463
|
+
type: "json";
|
|
9464
|
+
message: object;
|
|
9464
9465
|
}
|
|
9465
|
-
export
|
|
9466
|
-
|
|
9467
|
-
|
|
9468
|
-
|
|
9469
|
-
flowNoInputRetries?: number;
|
|
9470
|
-
flowNoInputSpeech?: string;
|
|
9471
|
-
flowNoInputUrl?: string;
|
|
9472
|
-
flowNoInputFail?: boolean;
|
|
9466
|
+
export declare type TDebugEventMessagePayload = IDebugEventTextMessagePayload | IDebugEventJsonMessagePayload;
|
|
9467
|
+
export interface IGoalAnalyticsPayload {
|
|
9468
|
+
analyticsdata: IGoalEscalations;
|
|
9469
|
+
data: IPayloadBaseMetaData;
|
|
9473
9470
|
}
|
|
9474
|
-
export interface
|
|
9475
|
-
|
|
9476
|
-
|
|
9477
|
-
|
|
9478
|
-
|
|
9471
|
+
export interface IGoalAnalyticsData {
|
|
9472
|
+
projectId: string;
|
|
9473
|
+
organisationId: string;
|
|
9474
|
+
sessionId: string;
|
|
9475
|
+
referenceId: string;
|
|
9476
|
+
version: string;
|
|
9477
|
+
timestamp: Date;
|
|
9478
|
+
goalCycleId: string;
|
|
9479
|
+
stepId: string;
|
|
9480
|
+
goalId: string;
|
|
9481
|
+
contactId: string;
|
|
9482
|
+
stepType?: string;
|
|
9483
|
+
}
|
|
9484
|
+
export interface IGoalEscalations extends IGoalAnalyticsData, IAnalyticsEndpointMeta, IAnalyticsLocaleMeta, IAnalyticsSnapshotMeta {
|
|
9485
|
+
}
|
|
9486
|
+
export interface IGoalCompletedEventPayload extends IGoalAnalyticsPayload {
|
|
9479
9487
|
}
|
|
9488
|
+
export declare type TDebugEventPayload = IInputChangedEventPayload | IContextChangedEventPayload | IActiveEntrypointsChangedEventPayload | IProfileChangedEventPayload | INodeExecutedEventPayload | INodeErrorEventPayload | IFinalPingEventPayload | IOutputEventPayload | ISwitchedFlowEventPayload | INluWarningEventPayload | TDebugEventMessagePayload | IGoalCompletedEventPayload;
|
|
9480
9489
|
export interface ITrackAnalyticsStepsArguments {
|
|
9481
9490
|
nodeId?: string;
|
|
9482
9491
|
flowReferenceId: string;
|
|
@@ -10098,6 +10107,7 @@ export interface ISessionStateWithoutMeta {
|
|
|
10098
10107
|
};
|
|
10099
10108
|
mcpServerUrl?: string;
|
|
10100
10109
|
mcpToolNode?: string;
|
|
10110
|
+
mcpHeaders?: Record<string, string>;
|
|
10101
10111
|
timeout?: number;
|
|
10102
10112
|
};
|
|
10103
10113
|
tokenUsage?: TSessionUsageInformation;
|
|
@@ -10388,6 +10398,21 @@ export interface IRunGenerativeAIPromptOptions {
|
|
|
10388
10398
|
* Option to prevent the replacing of \n with " " in streamed outputs
|
|
10389
10399
|
*/
|
|
10390
10400
|
preventNewLineRemoval?: boolean;
|
|
10401
|
+
/**
|
|
10402
|
+
* Optional logging configuration
|
|
10403
|
+
*/
|
|
10404
|
+
logging?: {
|
|
10405
|
+
/** Webhook URL to receive request/response payloads */
|
|
10406
|
+
webhookUrl?: string;
|
|
10407
|
+
/** Custom data to be sent alongside the logging payloads */
|
|
10408
|
+
customData?: unknown;
|
|
10409
|
+
/**
|
|
10410
|
+
* Optional headers to be sent with the webhook request
|
|
10411
|
+
*/
|
|
10412
|
+
headers?: Record<string, unknown> | JSON;
|
|
10413
|
+
/** Any additional fields are forwarded into logging meta */
|
|
10414
|
+
[key: string]: unknown;
|
|
10415
|
+
};
|
|
10391
10416
|
}
|
|
10392
10417
|
export interface IAzureOpenAIProviderFieldsV2 {
|
|
10393
10418
|
apiKey: string;
|
|
@@ -11422,6 +11447,7 @@ export interface INodeExecutionAPI extends Omit<IActions, "parseCognigyScriptCon
|
|
|
11422
11447
|
mcpServerUrl: string;
|
|
11423
11448
|
timeout: number;
|
|
11424
11449
|
cacheTools: boolean;
|
|
11450
|
+
mcpHeaders?: Record<string, string>;
|
|
11425
11451
|
}) => Promise<any[]>;
|
|
11426
11452
|
executeMcpTool: (params: {
|
|
11427
11453
|
toolName: string;
|
|
@@ -11430,6 +11456,7 @@ export interface INodeExecutionAPI extends Omit<IActions, "parseCognigyScriptCon
|
|
|
11430
11456
|
};
|
|
11431
11457
|
mcpServerUrl: string;
|
|
11432
11458
|
timeout: number;
|
|
11459
|
+
mcpHeaders?: Record<string, string>;
|
|
11433
11460
|
}) => Promise<{
|
|
11434
11461
|
[x: string]: unknown;
|
|
11435
11462
|
}>;
|
|
@@ -17222,7 +17249,8 @@ export interface ITransferNodeParams extends INodeFunctionBaseParams {
|
|
|
17222
17249
|
transferReason: string;
|
|
17223
17250
|
transferTarget: string;
|
|
17224
17251
|
referredBy: string;
|
|
17225
|
-
|
|
17252
|
+
mediaPath: TVoiceGateway2MediaPath;
|
|
17253
|
+
anchorMedia?: boolean;
|
|
17226
17254
|
useTransferSipHeaders: boolean;
|
|
17227
17255
|
transferSipHeaders: {
|
|
17228
17256
|
[key: string]: string | object;
|
|
@@ -18276,7 +18304,8 @@ declare const knowledgeSourceType: readonly [
|
|
|
18276
18304
|
"png",
|
|
18277
18305
|
"bmp",
|
|
18278
18306
|
"heif",
|
|
18279
|
-
"tiff"
|
|
18307
|
+
"tiff",
|
|
18308
|
+
"extension"
|
|
18280
18309
|
];
|
|
18281
18310
|
export declare type TKnowledgeSourceType = typeof knowledgeSourceType[number];
|
|
18282
18311
|
export interface IKnowledgeSourceMetaData {
|
|
@@ -20229,6 +20258,8 @@ export interface IIndexLogEntriesRestData_2_0 extends IRestPagination<ILogEntryI
|
|
|
20229
20258
|
type?: Array<TLogLevel>;
|
|
20230
20259
|
userId?: string;
|
|
20231
20260
|
flowName?: string;
|
|
20261
|
+
startDate?: string;
|
|
20262
|
+
endDate?: string;
|
|
20232
20263
|
}
|
|
20233
20264
|
export interface IIndexLogEntriesRestReturnValue_2_0 extends ICursorBasedPaginationReturnValue<ILogEntryIndexItem_2_0> {
|
|
20234
20265
|
}
|
|
@@ -20269,6 +20300,19 @@ export interface IReadLogEntryRestData_2_0 extends IReadLogEntryRestDataParams_2
|
|
|
20269
20300
|
}
|
|
20270
20301
|
export interface IReadLogEntryRestReturnValue_2_0 extends ILogEntry_2_0 {
|
|
20271
20302
|
}
|
|
20303
|
+
export interface ITailLogEntriesRestDataParams_2_0 extends IProjectScope {
|
|
20304
|
+
}
|
|
20305
|
+
export interface ITailLogEntriesRestData_2_0 extends IRestPagination<ILogEntryIndexItem_2_0>, ITailLogEntriesRestDataParams_2_0 {
|
|
20306
|
+
type?: TLogLevel[];
|
|
20307
|
+
userId?: string;
|
|
20308
|
+
flowName?: string;
|
|
20309
|
+
}
|
|
20310
|
+
export interface ITailLogEntriesRestReturnValue_2_0 {
|
|
20311
|
+
items: ILogEntryIndexItem_2_0[];
|
|
20312
|
+
total: number;
|
|
20313
|
+
nextCursor: string | null;
|
|
20314
|
+
previousCursor: string | null;
|
|
20315
|
+
}
|
|
20272
20316
|
/**
|
|
20273
20317
|
* @openapi
|
|
20274
20318
|
*
|
|
@@ -20916,6 +20960,7 @@ export interface MetricsAPIGroup_2_0 {
|
|
|
20916
20960
|
removeProfileData: TRestAPIOperation<IRemoveProfileDataRestData_2_0, IRemoveProfileDataRestReturnValue_2_0>;
|
|
20917
20961
|
removeContactIdFromProfile: TRestAPIOperation<IRemoveContactIdFromProfileRestData_2_0, IRemoveContactIdFromProfileRestReturnValue_2_0>;
|
|
20918
20962
|
indexLogEntries: TRestAPIOperation<IIndexLogEntriesRestData_2_0, IIndexLogEntriesRestReturnValue_2_0>;
|
|
20963
|
+
tailLogEntries: TRestAPIOperation<ITailLogEntriesRestData_2_0, ITailLogEntriesRestReturnValue_2_0>;
|
|
20919
20964
|
readLogEntry: TRestAPIOperation<IReadLogEntryRestData_2_0, IReadLogEntryRestReturnValue_2_0>;
|
|
20920
20965
|
indexTrainerRecords: TRestAPIOperation<IIndexTrainerRecordsRestData_2_0, IIndexTrainerRecordsRestReturnValue_2_0>;
|
|
20921
20966
|
readTrainerRecord: TRestAPIOperation<IReadTrainerRecordRestData_2_0, IReadTrainerRecordRestReturnValue_2_0>;
|
|
@@ -21326,7 +21371,8 @@ declare const actionTypes: readonly [
|
|
|
21326
21371
|
"processKnowledgeSourceFile",
|
|
21327
21372
|
"setupObservationConfig",
|
|
21328
21373
|
"updateObservationConfig",
|
|
21329
|
-
"resolveAiOpsCenterError"
|
|
21374
|
+
"resolveAiOpsCenterError",
|
|
21375
|
+
"odataRequest"
|
|
21330
21376
|
];
|
|
21331
21377
|
export declare type TActionType = typeof actionTypes[number];
|
|
21332
21378
|
/**
|
|
@@ -22284,6 +22330,9 @@ export interface ISetupVoiceGatewayRestData_2_0 extends ISetupVoiceGatewayRestDa
|
|
|
22284
22330
|
* $ref: '#/components/schemas/TTimezone'
|
|
22285
22331
|
* dataPrivacySettings:
|
|
22286
22332
|
* $ref: '#/components/schemas/IOrganisationDataPrivacySettings_2_0'
|
|
22333
|
+
* businessUnitId:
|
|
22334
|
+
* type: string
|
|
22335
|
+
* description: The business unit ID
|
|
22287
22336
|
* IOrganisation_2_0:
|
|
22288
22337
|
* allOf:
|
|
22289
22338
|
* - $ref: '#/components/schemas/IOrganisationData_2_0'
|
|
@@ -22305,6 +22354,8 @@ export interface IOrganisation_2_0 {
|
|
|
22305
22354
|
_id: TMongoId;
|
|
22306
22355
|
/** The name of this organisation, e.g. 'cognigy' */
|
|
22307
22356
|
name: string;
|
|
22357
|
+
/** The business unit ID */
|
|
22358
|
+
businessUnitId?: string;
|
|
22308
22359
|
/** Flag whether this organisation is currently disabled */
|
|
22309
22360
|
disabled: boolean;
|
|
22310
22361
|
/** Optional quota information */
|
|
@@ -22401,6 +22452,9 @@ export interface IOrganisationDataPrivacySettings_2_0 {
|
|
|
22401
22452
|
* properties:
|
|
22402
22453
|
* _id:
|
|
22403
22454
|
* $ref: '#/components/schemas/TMongoId'
|
|
22455
|
+
* businessUnitId:
|
|
22456
|
+
* type: string
|
|
22457
|
+
* description: The business unit ID
|
|
22404
22458
|
* name:
|
|
22405
22459
|
* type: string
|
|
22406
22460
|
* description: The name of this organisation
|
|
@@ -22437,6 +22491,8 @@ export interface IOrganisationIndexItem_2_0 {
|
|
|
22437
22491
|
_id: TMongoId;
|
|
22438
22492
|
/** The name of this organisation, e.g. 'cognigy' */
|
|
22439
22493
|
name: string;
|
|
22494
|
+
/** The business unit ID */
|
|
22495
|
+
businessUnitId?: string;
|
|
22440
22496
|
/** Flag whether this organisation is currently disabled */
|
|
22441
22497
|
disabled: boolean;
|
|
22442
22498
|
/** Optional quota information */
|
|
@@ -23226,6 +23282,7 @@ export interface IOpsCenterObservationConfig {
|
|
|
23226
23282
|
observationActive: boolean;
|
|
23227
23283
|
notificationConfig: NotificationConfig;
|
|
23228
23284
|
alertingConfig: AlertingConfig;
|
|
23285
|
+
recordVersion: number;
|
|
23229
23286
|
}
|
|
23230
23287
|
export interface IGetOpsCenterObservationConfigRestReturnValue_2_0 extends IOpsCenterObservationConfig {
|
|
23231
23288
|
}
|