@aws-sdk/client-wisdom 3.935.0 → 3.939.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/dist-cjs/index.js +120 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +99 -0
- package/dist-es/models/models_0.js +1 -99
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +259 -0
- package/dist-types/models/models_0.d.ts +1 -259
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +133 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -133
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -2580,6 +2580,106 @@ const paginateSearchQuickResponses = core.createPaginator(WisdomClient, SearchQu
|
|
|
2580
2580
|
|
|
2581
2581
|
const paginateSearchSessions = core.createPaginator(WisdomClient, SearchSessionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2582
2582
|
|
|
2583
|
+
const AssociationType = {
|
|
2584
|
+
KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
|
|
2585
|
+
};
|
|
2586
|
+
const AssistantType = {
|
|
2587
|
+
AGENT: "AGENT",
|
|
2588
|
+
};
|
|
2589
|
+
const AssistantStatus = {
|
|
2590
|
+
ACTIVE: "ACTIVE",
|
|
2591
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
2592
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
2593
|
+
DELETED: "DELETED",
|
|
2594
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
2595
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
2596
|
+
};
|
|
2597
|
+
const RelevanceLevel = {
|
|
2598
|
+
HIGH: "HIGH",
|
|
2599
|
+
LOW: "LOW",
|
|
2600
|
+
MEDIUM: "MEDIUM",
|
|
2601
|
+
};
|
|
2602
|
+
const RecommendationType = {
|
|
2603
|
+
KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT",
|
|
2604
|
+
};
|
|
2605
|
+
const RecommendationSourceType = {
|
|
2606
|
+
ISSUE_DETECTION: "ISSUE_DETECTION",
|
|
2607
|
+
OTHER: "OTHER",
|
|
2608
|
+
RULE_EVALUATION: "RULE_EVALUATION",
|
|
2609
|
+
};
|
|
2610
|
+
const RecommendationTriggerType = {
|
|
2611
|
+
QUERY: "QUERY",
|
|
2612
|
+
};
|
|
2613
|
+
const FilterField = {
|
|
2614
|
+
NAME: "NAME",
|
|
2615
|
+
};
|
|
2616
|
+
const FilterOperator = {
|
|
2617
|
+
EQUALS: "EQUALS",
|
|
2618
|
+
};
|
|
2619
|
+
const ContentStatus = {
|
|
2620
|
+
ACTIVE: "ACTIVE",
|
|
2621
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
2622
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
2623
|
+
DELETED: "DELETED",
|
|
2624
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
2625
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
2626
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
2627
|
+
};
|
|
2628
|
+
const KnowledgeBaseType = {
|
|
2629
|
+
CUSTOM: "CUSTOM",
|
|
2630
|
+
EXTERNAL: "EXTERNAL",
|
|
2631
|
+
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
2632
|
+
};
|
|
2633
|
+
const KnowledgeBaseStatus = {
|
|
2634
|
+
ACTIVE: "ACTIVE",
|
|
2635
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
2636
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
2637
|
+
DELETED: "DELETED",
|
|
2638
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
2639
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
2640
|
+
};
|
|
2641
|
+
const QuickResponseStatus = {
|
|
2642
|
+
CREATED: "CREATED",
|
|
2643
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
2644
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
2645
|
+
DELETED: "DELETED",
|
|
2646
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
2647
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
2648
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
2649
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
2650
|
+
};
|
|
2651
|
+
const ExternalSource = {
|
|
2652
|
+
AMAZON_CONNECT: "AMAZON_CONNECT",
|
|
2653
|
+
};
|
|
2654
|
+
const ImportJobType = {
|
|
2655
|
+
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
2656
|
+
};
|
|
2657
|
+
const ImportJobStatus = {
|
|
2658
|
+
COMPLETE: "COMPLETE",
|
|
2659
|
+
DELETED: "DELETED",
|
|
2660
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
2661
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
2662
|
+
FAILED: "FAILED",
|
|
2663
|
+
START_IN_PROGRESS: "START_IN_PROGRESS",
|
|
2664
|
+
};
|
|
2665
|
+
const QuickResponseFilterOperator = {
|
|
2666
|
+
EQUALS: "EQUALS",
|
|
2667
|
+
PREFIX: "PREFIX",
|
|
2668
|
+
};
|
|
2669
|
+
const Order = {
|
|
2670
|
+
ASC: "ASC",
|
|
2671
|
+
DESC: "DESC",
|
|
2672
|
+
};
|
|
2673
|
+
const QuickResponseQueryOperator = {
|
|
2674
|
+
CONTAINS: "CONTAINS",
|
|
2675
|
+
CONTAINS_AND_PREFIX: "CONTAINS_AND_PREFIX",
|
|
2676
|
+
};
|
|
2677
|
+
const Priority = {
|
|
2678
|
+
HIGH: "HIGH",
|
|
2679
|
+
LOW: "LOW",
|
|
2680
|
+
MEDIUM: "MEDIUM",
|
|
2681
|
+
};
|
|
2682
|
+
|
|
2583
2683
|
Object.defineProperty(exports, "$Command", {
|
|
2584
2684
|
enumerable: true,
|
|
2585
2685
|
get: function () { return smithyClient.Command; }
|
|
@@ -2589,7 +2689,11 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2589
2689
|
get: function () { return smithyClient.Client; }
|
|
2590
2690
|
});
|
|
2591
2691
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2692
|
+
exports.AssistantStatus = AssistantStatus;
|
|
2693
|
+
exports.AssistantType = AssistantType;
|
|
2694
|
+
exports.AssociationType = AssociationType;
|
|
2592
2695
|
exports.ConflictException = ConflictException$1;
|
|
2696
|
+
exports.ContentStatus = ContentStatus;
|
|
2593
2697
|
exports.CreateAssistantAssociationCommand = CreateAssistantAssociationCommand;
|
|
2594
2698
|
exports.CreateAssistantCommand = CreateAssistantCommand;
|
|
2595
2699
|
exports.CreateContentCommand = CreateContentCommand;
|
|
@@ -2602,6 +2706,9 @@ exports.DeleteContentCommand = DeleteContentCommand;
|
|
|
2602
2706
|
exports.DeleteImportJobCommand = DeleteImportJobCommand;
|
|
2603
2707
|
exports.DeleteKnowledgeBaseCommand = DeleteKnowledgeBaseCommand;
|
|
2604
2708
|
exports.DeleteQuickResponseCommand = DeleteQuickResponseCommand;
|
|
2709
|
+
exports.ExternalSource = ExternalSource;
|
|
2710
|
+
exports.FilterField = FilterField;
|
|
2711
|
+
exports.FilterOperator = FilterOperator;
|
|
2605
2712
|
exports.GetAssistantAssociationCommand = GetAssistantAssociationCommand;
|
|
2606
2713
|
exports.GetAssistantCommand = GetAssistantCommand;
|
|
2607
2714
|
exports.GetContentCommand = GetContentCommand;
|
|
@@ -2611,6 +2718,10 @@ exports.GetKnowledgeBaseCommand = GetKnowledgeBaseCommand;
|
|
|
2611
2718
|
exports.GetQuickResponseCommand = GetQuickResponseCommand;
|
|
2612
2719
|
exports.GetRecommendationsCommand = GetRecommendationsCommand;
|
|
2613
2720
|
exports.GetSessionCommand = GetSessionCommand;
|
|
2721
|
+
exports.ImportJobStatus = ImportJobStatus;
|
|
2722
|
+
exports.ImportJobType = ImportJobType;
|
|
2723
|
+
exports.KnowledgeBaseStatus = KnowledgeBaseStatus;
|
|
2724
|
+
exports.KnowledgeBaseType = KnowledgeBaseType;
|
|
2614
2725
|
exports.ListAssistantAssociationsCommand = ListAssistantAssociationsCommand;
|
|
2615
2726
|
exports.ListAssistantsCommand = ListAssistantsCommand;
|
|
2616
2727
|
exports.ListContentsCommand = ListContentsCommand;
|
|
@@ -2619,8 +2730,17 @@ exports.ListKnowledgeBasesCommand = ListKnowledgeBasesCommand;
|
|
|
2619
2730
|
exports.ListQuickResponsesCommand = ListQuickResponsesCommand;
|
|
2620
2731
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2621
2732
|
exports.NotifyRecommendationsReceivedCommand = NotifyRecommendationsReceivedCommand;
|
|
2733
|
+
exports.Order = Order;
|
|
2622
2734
|
exports.PreconditionFailedException = PreconditionFailedException$1;
|
|
2735
|
+
exports.Priority = Priority;
|
|
2623
2736
|
exports.QueryAssistantCommand = QueryAssistantCommand;
|
|
2737
|
+
exports.QuickResponseFilterOperator = QuickResponseFilterOperator;
|
|
2738
|
+
exports.QuickResponseQueryOperator = QuickResponseQueryOperator;
|
|
2739
|
+
exports.QuickResponseStatus = QuickResponseStatus;
|
|
2740
|
+
exports.RecommendationSourceType = RecommendationSourceType;
|
|
2741
|
+
exports.RecommendationTriggerType = RecommendationTriggerType;
|
|
2742
|
+
exports.RecommendationType = RecommendationType;
|
|
2743
|
+
exports.RelevanceLevel = RelevanceLevel;
|
|
2624
2744
|
exports.RemoveKnowledgeBaseTemplateUriCommand = RemoveKnowledgeBaseTemplateUriCommand;
|
|
2625
2745
|
exports.RequestTimeoutException = RequestTimeoutException$1;
|
|
2626
2746
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
export const AssociationType = {
|
|
2
|
+
KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
|
|
3
|
+
};
|
|
4
|
+
export const AssistantType = {
|
|
5
|
+
AGENT: "AGENT",
|
|
6
|
+
};
|
|
7
|
+
export const AssistantStatus = {
|
|
8
|
+
ACTIVE: "ACTIVE",
|
|
9
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
10
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
11
|
+
DELETED: "DELETED",
|
|
12
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
13
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
14
|
+
};
|
|
15
|
+
export const RelevanceLevel = {
|
|
16
|
+
HIGH: "HIGH",
|
|
17
|
+
LOW: "LOW",
|
|
18
|
+
MEDIUM: "MEDIUM",
|
|
19
|
+
};
|
|
20
|
+
export const RecommendationType = {
|
|
21
|
+
KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT",
|
|
22
|
+
};
|
|
23
|
+
export const RecommendationSourceType = {
|
|
24
|
+
ISSUE_DETECTION: "ISSUE_DETECTION",
|
|
25
|
+
OTHER: "OTHER",
|
|
26
|
+
RULE_EVALUATION: "RULE_EVALUATION",
|
|
27
|
+
};
|
|
28
|
+
export const RecommendationTriggerType = {
|
|
29
|
+
QUERY: "QUERY",
|
|
30
|
+
};
|
|
31
|
+
export const FilterField = {
|
|
32
|
+
NAME: "NAME",
|
|
33
|
+
};
|
|
34
|
+
export const FilterOperator = {
|
|
35
|
+
EQUALS: "EQUALS",
|
|
36
|
+
};
|
|
37
|
+
export const ContentStatus = {
|
|
38
|
+
ACTIVE: "ACTIVE",
|
|
39
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
40
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
41
|
+
DELETED: "DELETED",
|
|
42
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
43
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
44
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
45
|
+
};
|
|
46
|
+
export const KnowledgeBaseType = {
|
|
47
|
+
CUSTOM: "CUSTOM",
|
|
48
|
+
EXTERNAL: "EXTERNAL",
|
|
49
|
+
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
50
|
+
};
|
|
51
|
+
export const KnowledgeBaseStatus = {
|
|
52
|
+
ACTIVE: "ACTIVE",
|
|
53
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
54
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
55
|
+
DELETED: "DELETED",
|
|
56
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
57
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
58
|
+
};
|
|
59
|
+
export const QuickResponseStatus = {
|
|
60
|
+
CREATED: "CREATED",
|
|
61
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
62
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
63
|
+
DELETED: "DELETED",
|
|
64
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
65
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
66
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
67
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
68
|
+
};
|
|
69
|
+
export const ExternalSource = {
|
|
70
|
+
AMAZON_CONNECT: "AMAZON_CONNECT",
|
|
71
|
+
};
|
|
72
|
+
export const ImportJobType = {
|
|
73
|
+
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
74
|
+
};
|
|
75
|
+
export const ImportJobStatus = {
|
|
76
|
+
COMPLETE: "COMPLETE",
|
|
77
|
+
DELETED: "DELETED",
|
|
78
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
79
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
80
|
+
FAILED: "FAILED",
|
|
81
|
+
START_IN_PROGRESS: "START_IN_PROGRESS",
|
|
82
|
+
};
|
|
83
|
+
export const QuickResponseFilterOperator = {
|
|
84
|
+
EQUALS: "EQUALS",
|
|
85
|
+
PREFIX: "PREFIX",
|
|
86
|
+
};
|
|
87
|
+
export const Order = {
|
|
88
|
+
ASC: "ASC",
|
|
89
|
+
DESC: "DESC",
|
|
90
|
+
};
|
|
91
|
+
export const QuickResponseQueryOperator = {
|
|
92
|
+
CONTAINS: "CONTAINS",
|
|
93
|
+
CONTAINS_AND_PREFIX: "CONTAINS_AND_PREFIX",
|
|
94
|
+
};
|
|
95
|
+
export const Priority = {
|
|
96
|
+
HIGH: "HIGH",
|
|
97
|
+
LOW: "LOW",
|
|
98
|
+
MEDIUM: "MEDIUM",
|
|
99
|
+
};
|
|
@@ -1,99 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
|
|
3
|
-
};
|
|
4
|
-
export const AssistantType = {
|
|
5
|
-
AGENT: "AGENT",
|
|
6
|
-
};
|
|
7
|
-
export const AssistantStatus = {
|
|
8
|
-
ACTIVE: "ACTIVE",
|
|
9
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
10
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
11
|
-
DELETED: "DELETED",
|
|
12
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
13
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
14
|
-
};
|
|
15
|
-
export const RelevanceLevel = {
|
|
16
|
-
HIGH: "HIGH",
|
|
17
|
-
LOW: "LOW",
|
|
18
|
-
MEDIUM: "MEDIUM",
|
|
19
|
-
};
|
|
20
|
-
export const RecommendationType = {
|
|
21
|
-
KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT",
|
|
22
|
-
};
|
|
23
|
-
export const RecommendationSourceType = {
|
|
24
|
-
ISSUE_DETECTION: "ISSUE_DETECTION",
|
|
25
|
-
OTHER: "OTHER",
|
|
26
|
-
RULE_EVALUATION: "RULE_EVALUATION",
|
|
27
|
-
};
|
|
28
|
-
export const RecommendationTriggerType = {
|
|
29
|
-
QUERY: "QUERY",
|
|
30
|
-
};
|
|
31
|
-
export const FilterField = {
|
|
32
|
-
NAME: "NAME",
|
|
33
|
-
};
|
|
34
|
-
export const FilterOperator = {
|
|
35
|
-
EQUALS: "EQUALS",
|
|
36
|
-
};
|
|
37
|
-
export const ContentStatus = {
|
|
38
|
-
ACTIVE: "ACTIVE",
|
|
39
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
40
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
41
|
-
DELETED: "DELETED",
|
|
42
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
43
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
44
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
45
|
-
};
|
|
46
|
-
export const KnowledgeBaseType = {
|
|
47
|
-
CUSTOM: "CUSTOM",
|
|
48
|
-
EXTERNAL: "EXTERNAL",
|
|
49
|
-
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
50
|
-
};
|
|
51
|
-
export const KnowledgeBaseStatus = {
|
|
52
|
-
ACTIVE: "ACTIVE",
|
|
53
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
54
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
55
|
-
DELETED: "DELETED",
|
|
56
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
57
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
58
|
-
};
|
|
59
|
-
export const QuickResponseStatus = {
|
|
60
|
-
CREATED: "CREATED",
|
|
61
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
62
|
-
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
63
|
-
DELETED: "DELETED",
|
|
64
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
65
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
66
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
67
|
-
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
68
|
-
};
|
|
69
|
-
export const ExternalSource = {
|
|
70
|
-
AMAZON_CONNECT: "AMAZON_CONNECT",
|
|
71
|
-
};
|
|
72
|
-
export const ImportJobType = {
|
|
73
|
-
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
74
|
-
};
|
|
75
|
-
export const ImportJobStatus = {
|
|
76
|
-
COMPLETE: "COMPLETE",
|
|
77
|
-
DELETED: "DELETED",
|
|
78
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
79
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
80
|
-
FAILED: "FAILED",
|
|
81
|
-
START_IN_PROGRESS: "START_IN_PROGRESS",
|
|
82
|
-
};
|
|
83
|
-
export const QuickResponseFilterOperator = {
|
|
84
|
-
EQUALS: "EQUALS",
|
|
85
|
-
PREFIX: "PREFIX",
|
|
86
|
-
};
|
|
87
|
-
export const Order = {
|
|
88
|
-
ASC: "ASC",
|
|
89
|
-
DESC: "DESC",
|
|
90
|
-
};
|
|
91
|
-
export const QuickResponseQueryOperator = {
|
|
92
|
-
CONTAINS: "CONTAINS",
|
|
93
|
-
CONTAINS_AND_PREFIX: "CONTAINS_AND_PREFIX",
|
|
94
|
-
};
|
|
95
|
-
export const Priority = {
|
|
96
|
-
HIGH: "HIGH",
|
|
97
|
-
LOW: "LOW",
|
|
98
|
-
MEDIUM: "MEDIUM",
|
|
99
|
-
};
|
|
1
|
+
export {};
|
package/dist-types/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
13
13
|
export type { WisdomExtensionConfiguration } from "./extensionConfiguration";
|
|
14
14
|
export * from "./commands";
|
|
15
15
|
export * from "./pagination";
|
|
16
|
+
export * from "./models/enums";
|
|
16
17
|
export * from "./models/errors";
|
|
17
18
|
export type * from "./models/models_0";
|
|
18
19
|
export { WisdomServiceException } from "./models/WisdomServiceException";
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AssociationType: {
|
|
6
|
+
readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export type AssociationType = (typeof AssociationType)[keyof typeof AssociationType];
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
* @enum
|
|
15
|
+
*/
|
|
16
|
+
export declare const AssistantType: {
|
|
17
|
+
readonly AGENT: "AGENT";
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export type AssistantType = (typeof AssistantType)[keyof typeof AssistantType];
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
* @enum
|
|
26
|
+
*/
|
|
27
|
+
export declare const AssistantStatus: {
|
|
28
|
+
readonly ACTIVE: "ACTIVE";
|
|
29
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
30
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
31
|
+
readonly DELETED: "DELETED";
|
|
32
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
33
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type AssistantStatus = (typeof AssistantStatus)[keyof typeof AssistantStatus];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const RelevanceLevel: {
|
|
44
|
+
readonly HIGH: "HIGH";
|
|
45
|
+
readonly LOW: "LOW";
|
|
46
|
+
readonly MEDIUM: "MEDIUM";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export type RelevanceLevel = (typeof RelevanceLevel)[keyof typeof RelevanceLevel];
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* @enum
|
|
55
|
+
*/
|
|
56
|
+
export declare const RecommendationType: {
|
|
57
|
+
readonly KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT";
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType];
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
* @enum
|
|
66
|
+
*/
|
|
67
|
+
export declare const RecommendationSourceType: {
|
|
68
|
+
readonly ISSUE_DETECTION: "ISSUE_DETECTION";
|
|
69
|
+
readonly OTHER: "OTHER";
|
|
70
|
+
readonly RULE_EVALUATION: "RULE_EVALUATION";
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export type RecommendationSourceType = (typeof RecommendationSourceType)[keyof typeof RecommendationSourceType];
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
* @enum
|
|
79
|
+
*/
|
|
80
|
+
export declare const RecommendationTriggerType: {
|
|
81
|
+
readonly QUERY: "QUERY";
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export type RecommendationTriggerType = (typeof RecommendationTriggerType)[keyof typeof RecommendationTriggerType];
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* @enum
|
|
90
|
+
*/
|
|
91
|
+
export declare const FilterField: {
|
|
92
|
+
readonly NAME: "NAME";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export type FilterField = (typeof FilterField)[keyof typeof FilterField];
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
* @enum
|
|
101
|
+
*/
|
|
102
|
+
export declare const FilterOperator: {
|
|
103
|
+
readonly EQUALS: "EQUALS";
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export type FilterOperator = (typeof FilterOperator)[keyof typeof FilterOperator];
|
|
109
|
+
/**
|
|
110
|
+
* @public
|
|
111
|
+
* @enum
|
|
112
|
+
*/
|
|
113
|
+
export declare const ContentStatus: {
|
|
114
|
+
readonly ACTIVE: "ACTIVE";
|
|
115
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
116
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
117
|
+
readonly DELETED: "DELETED";
|
|
118
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
119
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
120
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export type ContentStatus = (typeof ContentStatus)[keyof typeof ContentStatus];
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
* @enum
|
|
129
|
+
*/
|
|
130
|
+
export declare const KnowledgeBaseType: {
|
|
131
|
+
readonly CUSTOM: "CUSTOM";
|
|
132
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
133
|
+
readonly QUICK_RESPONSES: "QUICK_RESPONSES";
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
export type KnowledgeBaseType = (typeof KnowledgeBaseType)[keyof typeof KnowledgeBaseType];
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
* @enum
|
|
142
|
+
*/
|
|
143
|
+
export declare const KnowledgeBaseStatus: {
|
|
144
|
+
readonly ACTIVE: "ACTIVE";
|
|
145
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
146
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
147
|
+
readonly DELETED: "DELETED";
|
|
148
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
149
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
export type KnowledgeBaseStatus = (typeof KnowledgeBaseStatus)[keyof typeof KnowledgeBaseStatus];
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
* @enum
|
|
158
|
+
*/
|
|
159
|
+
export declare const QuickResponseStatus: {
|
|
160
|
+
readonly CREATED: "CREATED";
|
|
161
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
162
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
163
|
+
readonly DELETED: "DELETED";
|
|
164
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
165
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
166
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
167
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export type QuickResponseStatus = (typeof QuickResponseStatus)[keyof typeof QuickResponseStatus];
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* @enum
|
|
176
|
+
*/
|
|
177
|
+
export declare const ExternalSource: {
|
|
178
|
+
readonly AMAZON_CONNECT: "AMAZON_CONNECT";
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
export type ExternalSource = (typeof ExternalSource)[keyof typeof ExternalSource];
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
* @enum
|
|
187
|
+
*/
|
|
188
|
+
export declare const ImportJobType: {
|
|
189
|
+
readonly QUICK_RESPONSES: "QUICK_RESPONSES";
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
export type ImportJobType = (typeof ImportJobType)[keyof typeof ImportJobType];
|
|
195
|
+
/**
|
|
196
|
+
* @public
|
|
197
|
+
* @enum
|
|
198
|
+
*/
|
|
199
|
+
export declare const ImportJobStatus: {
|
|
200
|
+
readonly COMPLETE: "COMPLETE";
|
|
201
|
+
readonly DELETED: "DELETED";
|
|
202
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
203
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
204
|
+
readonly FAILED: "FAILED";
|
|
205
|
+
readonly START_IN_PROGRESS: "START_IN_PROGRESS";
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export type ImportJobStatus = (typeof ImportJobStatus)[keyof typeof ImportJobStatus];
|
|
211
|
+
/**
|
|
212
|
+
* @public
|
|
213
|
+
* @enum
|
|
214
|
+
*/
|
|
215
|
+
export declare const QuickResponseFilterOperator: {
|
|
216
|
+
readonly EQUALS: "EQUALS";
|
|
217
|
+
readonly PREFIX: "PREFIX";
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
export type QuickResponseFilterOperator = (typeof QuickResponseFilterOperator)[keyof typeof QuickResponseFilterOperator];
|
|
223
|
+
/**
|
|
224
|
+
* @public
|
|
225
|
+
* @enum
|
|
226
|
+
*/
|
|
227
|
+
export declare const Order: {
|
|
228
|
+
readonly ASC: "ASC";
|
|
229
|
+
readonly DESC: "DESC";
|
|
230
|
+
};
|
|
231
|
+
/**
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
235
|
+
/**
|
|
236
|
+
* @public
|
|
237
|
+
* @enum
|
|
238
|
+
*/
|
|
239
|
+
export declare const QuickResponseQueryOperator: {
|
|
240
|
+
readonly CONTAINS: "CONTAINS";
|
|
241
|
+
readonly CONTAINS_AND_PREFIX: "CONTAINS_AND_PREFIX";
|
|
242
|
+
};
|
|
243
|
+
/**
|
|
244
|
+
* @public
|
|
245
|
+
*/
|
|
246
|
+
export type QuickResponseQueryOperator = (typeof QuickResponseQueryOperator)[keyof typeof QuickResponseQueryOperator];
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
* @enum
|
|
250
|
+
*/
|
|
251
|
+
export declare const Priority: {
|
|
252
|
+
readonly HIGH: "HIGH";
|
|
253
|
+
readonly LOW: "LOW";
|
|
254
|
+
readonly MEDIUM: "MEDIUM";
|
|
255
|
+
};
|
|
256
|
+
/**
|
|
257
|
+
* @public
|
|
258
|
+
*/
|
|
259
|
+
export type Priority = (typeof Priority)[keyof typeof Priority];
|