@aws-sdk/client-wisdom 3.927.0 → 3.929.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 +1907 -1970
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/WisdomClient.js +2 -0
- package/dist-es/commands/CreateAssistantAssociationCommand.js +3 -9
- package/dist-es/commands/CreateAssistantCommand.js +3 -9
- package/dist-es/commands/CreateContentCommand.js +3 -10
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +3 -9
- package/dist-es/commands/CreateQuickResponseCommand.js +3 -10
- package/dist-es/commands/CreateSessionCommand.js +3 -9
- package/dist-es/commands/DeleteAssistantAssociationCommand.js +3 -9
- package/dist-es/commands/DeleteAssistantCommand.js +3 -9
- package/dist-es/commands/DeleteContentCommand.js +3 -9
- package/dist-es/commands/DeleteImportJobCommand.js +3 -9
- package/dist-es/commands/DeleteKnowledgeBaseCommand.js +3 -9
- package/dist-es/commands/DeleteQuickResponseCommand.js +3 -9
- package/dist-es/commands/GetAssistantAssociationCommand.js +3 -9
- package/dist-es/commands/GetAssistantCommand.js +3 -9
- package/dist-es/commands/GetContentCommand.js +3 -10
- package/dist-es/commands/GetContentSummaryCommand.js +3 -9
- package/dist-es/commands/GetImportJobCommand.js +3 -10
- package/dist-es/commands/GetKnowledgeBaseCommand.js +3 -9
- package/dist-es/commands/GetQuickResponseCommand.js +3 -10
- package/dist-es/commands/GetRecommendationsCommand.js +3 -10
- package/dist-es/commands/GetSessionCommand.js +3 -9
- package/dist-es/commands/ListAssistantAssociationsCommand.js +3 -9
- package/dist-es/commands/ListAssistantsCommand.js +3 -9
- package/dist-es/commands/ListContentsCommand.js +3 -9
- package/dist-es/commands/ListImportJobsCommand.js +3 -9
- package/dist-es/commands/ListKnowledgeBasesCommand.js +3 -9
- package/dist-es/commands/ListQuickResponsesCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +3 -9
- package/dist-es/commands/QueryAssistantCommand.js +3 -10
- package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +3 -9
- package/dist-es/commands/SearchContentCommand.js +3 -9
- package/dist-es/commands/SearchQuickResponsesCommand.js +3 -10
- package/dist-es/commands/SearchSessionsCommand.js +3 -9
- package/dist-es/commands/StartContentUploadCommand.js +3 -10
- package/dist-es/commands/StartImportJobCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateContentCommand.js +3 -10
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +3 -9
- package/dist-es/commands/UpdateQuickResponseCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -167
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1812 -0
- package/dist-types/WisdomClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -132
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +215 -0
- package/dist-types/ts3.4/WisdomClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -91
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +222 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -1466
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -371
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -497
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateAssistantAssociationCommandInput, CreateAssistantAssociationCommandOutput } from "./commands/CreateAssistantAssociationCommand";
|
|
11
11
|
import { CreateAssistantCommandInput, CreateAssistantCommandOutput } from "./commands/CreateAssistantCommand";
|
|
@@ -182,6 +182,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
182
182
|
* Optional extensions
|
|
183
183
|
*/
|
|
184
184
|
extensions?: RuntimeExtension[];
|
|
185
|
+
/**
|
|
186
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
187
|
+
* may be overridden. A default will always be set by the client.
|
|
188
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
189
|
+
* the client.
|
|
190
|
+
* @alpha
|
|
191
|
+
*
|
|
192
|
+
*/
|
|
193
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
185
194
|
/**
|
|
186
195
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
187
196
|
*/
|
|
@@ -3703,135 +3703,3 @@ export interface UntagResourceRequest {
|
|
|
3703
3703
|
*/
|
|
3704
3704
|
export interface UntagResourceResponse {
|
|
3705
3705
|
}
|
|
3706
|
-
/**
|
|
3707
|
-
* @internal
|
|
3708
|
-
*/
|
|
3709
|
-
export declare const DocumentTextFilterSensitiveLog: (obj: DocumentText) => any;
|
|
3710
|
-
/**
|
|
3711
|
-
* @internal
|
|
3712
|
-
*/
|
|
3713
|
-
export declare const DocumentFilterSensitiveLog: (obj: Document) => any;
|
|
3714
|
-
/**
|
|
3715
|
-
* @internal
|
|
3716
|
-
*/
|
|
3717
|
-
export declare const RecommendationDataFilterSensitiveLog: (obj: RecommendationData) => any;
|
|
3718
|
-
/**
|
|
3719
|
-
* @internal
|
|
3720
|
-
*/
|
|
3721
|
-
export declare const QueryRecommendationTriggerDataFilterSensitiveLog: (obj: QueryRecommendationTriggerData) => any;
|
|
3722
|
-
/**
|
|
3723
|
-
* @internal
|
|
3724
|
-
*/
|
|
3725
|
-
export declare const RecommendationTriggerDataFilterSensitiveLog: (obj: RecommendationTriggerData) => any;
|
|
3726
|
-
/**
|
|
3727
|
-
* @internal
|
|
3728
|
-
*/
|
|
3729
|
-
export declare const RecommendationTriggerFilterSensitiveLog: (obj: RecommendationTrigger) => any;
|
|
3730
|
-
/**
|
|
3731
|
-
* @internal
|
|
3732
|
-
*/
|
|
3733
|
-
export declare const GetRecommendationsResponseFilterSensitiveLog: (obj: GetRecommendationsResponse) => any;
|
|
3734
|
-
/**
|
|
3735
|
-
* @internal
|
|
3736
|
-
*/
|
|
3737
|
-
export declare const QueryAssistantRequestFilterSensitiveLog: (obj: QueryAssistantRequest) => any;
|
|
3738
|
-
/**
|
|
3739
|
-
* @internal
|
|
3740
|
-
*/
|
|
3741
|
-
export declare const ResultDataFilterSensitiveLog: (obj: ResultData) => any;
|
|
3742
|
-
/**
|
|
3743
|
-
* @internal
|
|
3744
|
-
*/
|
|
3745
|
-
export declare const QueryAssistantResponseFilterSensitiveLog: (obj: QueryAssistantResponse) => any;
|
|
3746
|
-
/**
|
|
3747
|
-
* @internal
|
|
3748
|
-
*/
|
|
3749
|
-
export declare const ContentDataFilterSensitiveLog: (obj: ContentData) => any;
|
|
3750
|
-
/**
|
|
3751
|
-
* @internal
|
|
3752
|
-
*/
|
|
3753
|
-
export declare const CreateContentResponseFilterSensitiveLog: (obj: CreateContentResponse) => any;
|
|
3754
|
-
/**
|
|
3755
|
-
* @internal
|
|
3756
|
-
*/
|
|
3757
|
-
export declare const GetContentResponseFilterSensitiveLog: (obj: GetContentResponse) => any;
|
|
3758
|
-
/**
|
|
3759
|
-
* @internal
|
|
3760
|
-
*/
|
|
3761
|
-
export declare const UpdateContentResponseFilterSensitiveLog: (obj: UpdateContentResponse) => any;
|
|
3762
|
-
/**
|
|
3763
|
-
* @internal
|
|
3764
|
-
*/
|
|
3765
|
-
export declare const QuickResponseDataProviderFilterSensitiveLog: (obj: QuickResponseDataProvider) => any;
|
|
3766
|
-
/**
|
|
3767
|
-
* @internal
|
|
3768
|
-
*/
|
|
3769
|
-
export declare const GroupingConfigurationFilterSensitiveLog: (obj: GroupingConfiguration) => any;
|
|
3770
|
-
/**
|
|
3771
|
-
* @internal
|
|
3772
|
-
*/
|
|
3773
|
-
export declare const CreateQuickResponseRequestFilterSensitiveLog: (obj: CreateQuickResponseRequest) => any;
|
|
3774
|
-
/**
|
|
3775
|
-
* @internal
|
|
3776
|
-
*/
|
|
3777
|
-
export declare const QuickResponseContentProviderFilterSensitiveLog: (obj: QuickResponseContentProvider) => any;
|
|
3778
|
-
/**
|
|
3779
|
-
* @internal
|
|
3780
|
-
*/
|
|
3781
|
-
export declare const QuickResponseContentsFilterSensitiveLog: (obj: QuickResponseContents) => any;
|
|
3782
|
-
/**
|
|
3783
|
-
* @internal
|
|
3784
|
-
*/
|
|
3785
|
-
export declare const QuickResponseDataFilterSensitiveLog: (obj: QuickResponseData) => any;
|
|
3786
|
-
/**
|
|
3787
|
-
* @internal
|
|
3788
|
-
*/
|
|
3789
|
-
export declare const CreateQuickResponseResponseFilterSensitiveLog: (obj: CreateQuickResponseResponse) => any;
|
|
3790
|
-
/**
|
|
3791
|
-
* @internal
|
|
3792
|
-
*/
|
|
3793
|
-
export declare const ImportJobDataFilterSensitiveLog: (obj: ImportJobData) => any;
|
|
3794
|
-
/**
|
|
3795
|
-
* @internal
|
|
3796
|
-
*/
|
|
3797
|
-
export declare const GetImportJobResponseFilterSensitiveLog: (obj: GetImportJobResponse) => any;
|
|
3798
|
-
/**
|
|
3799
|
-
* @internal
|
|
3800
|
-
*/
|
|
3801
|
-
export declare const GetQuickResponseResponseFilterSensitiveLog: (obj: GetQuickResponseResponse) => any;
|
|
3802
|
-
/**
|
|
3803
|
-
* @internal
|
|
3804
|
-
*/
|
|
3805
|
-
export declare const QuickResponseSummaryFilterSensitiveLog: (obj: QuickResponseSummary) => any;
|
|
3806
|
-
/**
|
|
3807
|
-
* @internal
|
|
3808
|
-
*/
|
|
3809
|
-
export declare const ListQuickResponsesResponseFilterSensitiveLog: (obj: ListQuickResponsesResponse) => any;
|
|
3810
|
-
/**
|
|
3811
|
-
* @internal
|
|
3812
|
-
*/
|
|
3813
|
-
export declare const UpdateQuickResponseRequestFilterSensitiveLog: (obj: UpdateQuickResponseRequest) => any;
|
|
3814
|
-
/**
|
|
3815
|
-
* @internal
|
|
3816
|
-
*/
|
|
3817
|
-
export declare const UpdateQuickResponseResponseFilterSensitiveLog: (obj: UpdateQuickResponseResponse) => any;
|
|
3818
|
-
/**
|
|
3819
|
-
* @internal
|
|
3820
|
-
*/
|
|
3821
|
-
export declare const SearchQuickResponsesRequestFilterSensitiveLog: (obj: SearchQuickResponsesRequest) => any;
|
|
3822
|
-
/**
|
|
3823
|
-
* @internal
|
|
3824
|
-
*/
|
|
3825
|
-
export declare const QuickResponseSearchResultDataFilterSensitiveLog: (obj: QuickResponseSearchResultData) => any;
|
|
3826
|
-
/**
|
|
3827
|
-
* @internal
|
|
3828
|
-
*/
|
|
3829
|
-
export declare const SearchQuickResponsesResponseFilterSensitiveLog: (obj: SearchQuickResponsesResponse) => any;
|
|
3830
|
-
/**
|
|
3831
|
-
* @internal
|
|
3832
|
-
*/
|
|
3833
|
-
export declare const StartContentUploadResponseFilterSensitiveLog: (obj: StartContentUploadResponse) => any;
|
|
3834
|
-
/**
|
|
3835
|
-
* @internal
|
|
3836
|
-
*/
|
|
3837
|
-
export declare const StartImportJobResponseFilterSensitiveLog: (obj: StartImportJobResponse) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WisdomHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Channel: StaticSimpleSchema;
|
|
3
|
+
export declare var GroupingCriteria: StaticSimpleSchema;
|
|
4
|
+
export declare var GroupingValue: StaticSimpleSchema;
|
|
5
|
+
export declare var QueryText: StaticSimpleSchema;
|
|
6
|
+
export declare var QuickResponseContent: StaticSimpleSchema;
|
|
7
|
+
export declare var SensitiveString: StaticSimpleSchema;
|
|
8
|
+
export declare var Url: StaticSimpleSchema;
|
|
9
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
10
|
+
export declare var AppIntegrationsConfiguration: StaticStructureSchema;
|
|
11
|
+
export declare var AssistantAssociationData: StaticStructureSchema;
|
|
12
|
+
export declare var AssistantAssociationSummary: StaticStructureSchema;
|
|
13
|
+
export declare var AssistantData: StaticStructureSchema;
|
|
14
|
+
export declare var AssistantIntegrationConfiguration: StaticStructureSchema;
|
|
15
|
+
export declare var AssistantSummary: StaticStructureSchema;
|
|
16
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
17
|
+
export declare var ConnectConfiguration: StaticStructureSchema;
|
|
18
|
+
export declare var ContentData: StaticStructureSchema;
|
|
19
|
+
export declare var ContentReference: StaticStructureSchema;
|
|
20
|
+
export declare var ContentSummary: StaticStructureSchema;
|
|
21
|
+
export declare var CreateAssistantAssociationRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateAssistantAssociationResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateAssistantRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateAssistantResponse: StaticStructureSchema;
|
|
25
|
+
export declare var CreateContentRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CreateContentResponse: StaticStructureSchema;
|
|
27
|
+
export declare var CreateKnowledgeBaseRequest: StaticStructureSchema;
|
|
28
|
+
export declare var CreateKnowledgeBaseResponse: StaticStructureSchema;
|
|
29
|
+
export declare var CreateQuickResponseRequest: StaticStructureSchema;
|
|
30
|
+
export declare var CreateQuickResponseResponse: StaticStructureSchema;
|
|
31
|
+
export declare var CreateSessionRequest: StaticStructureSchema;
|
|
32
|
+
export declare var CreateSessionResponse: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteAssistantAssociationRequest: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteAssistantAssociationResponse: StaticStructureSchema;
|
|
35
|
+
export declare var DeleteAssistantRequest: StaticStructureSchema;
|
|
36
|
+
export declare var DeleteAssistantResponse: StaticStructureSchema;
|
|
37
|
+
export declare var DeleteContentRequest: StaticStructureSchema;
|
|
38
|
+
export declare var DeleteContentResponse: StaticStructureSchema;
|
|
39
|
+
export declare var DeleteImportJobRequest: StaticStructureSchema;
|
|
40
|
+
export declare var DeleteImportJobResponse: StaticStructureSchema;
|
|
41
|
+
export declare var DeleteKnowledgeBaseRequest: StaticStructureSchema;
|
|
42
|
+
export declare var DeleteKnowledgeBaseResponse: StaticStructureSchema;
|
|
43
|
+
export declare var DeleteQuickResponseRequest: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteQuickResponseResponse: StaticStructureSchema;
|
|
45
|
+
export declare var Document: StaticStructureSchema;
|
|
46
|
+
export declare var DocumentText: StaticStructureSchema;
|
|
47
|
+
export declare var ExternalSourceConfiguration: StaticStructureSchema;
|
|
48
|
+
export declare var Filter: StaticStructureSchema;
|
|
49
|
+
export declare var GetAssistantAssociationRequest: StaticStructureSchema;
|
|
50
|
+
export declare var GetAssistantAssociationResponse: StaticStructureSchema;
|
|
51
|
+
export declare var GetAssistantRequest: StaticStructureSchema;
|
|
52
|
+
export declare var GetAssistantResponse: StaticStructureSchema;
|
|
53
|
+
export declare var GetContentRequest: StaticStructureSchema;
|
|
54
|
+
export declare var GetContentResponse: StaticStructureSchema;
|
|
55
|
+
export declare var GetContentSummaryRequest: StaticStructureSchema;
|
|
56
|
+
export declare var GetContentSummaryResponse: StaticStructureSchema;
|
|
57
|
+
export declare var GetImportJobRequest: StaticStructureSchema;
|
|
58
|
+
export declare var GetImportJobResponse: StaticStructureSchema;
|
|
59
|
+
export declare var GetKnowledgeBaseRequest: StaticStructureSchema;
|
|
60
|
+
export declare var GetKnowledgeBaseResponse: StaticStructureSchema;
|
|
61
|
+
export declare var GetQuickResponseRequest: StaticStructureSchema;
|
|
62
|
+
export declare var GetQuickResponseResponse: StaticStructureSchema;
|
|
63
|
+
export declare var GetRecommendationsRequest: StaticStructureSchema;
|
|
64
|
+
export declare var GetRecommendationsResponse: StaticStructureSchema;
|
|
65
|
+
export declare var GetSessionRequest: StaticStructureSchema;
|
|
66
|
+
export declare var GetSessionResponse: StaticStructureSchema;
|
|
67
|
+
export declare var GroupingConfiguration: StaticStructureSchema;
|
|
68
|
+
export declare var Highlight: StaticStructureSchema;
|
|
69
|
+
export declare var ImportJobData: StaticStructureSchema;
|
|
70
|
+
export declare var ImportJobSummary: StaticStructureSchema;
|
|
71
|
+
export declare var KnowledgeBaseAssociationData: StaticStructureSchema;
|
|
72
|
+
export declare var KnowledgeBaseData: StaticStructureSchema;
|
|
73
|
+
export declare var KnowledgeBaseSummary: StaticStructureSchema;
|
|
74
|
+
export declare var ListAssistantAssociationsRequest: StaticStructureSchema;
|
|
75
|
+
export declare var ListAssistantAssociationsResponse: StaticStructureSchema;
|
|
76
|
+
export declare var ListAssistantsRequest: StaticStructureSchema;
|
|
77
|
+
export declare var ListAssistantsResponse: StaticStructureSchema;
|
|
78
|
+
export declare var ListContentsRequest: StaticStructureSchema;
|
|
79
|
+
export declare var ListContentsResponse: StaticStructureSchema;
|
|
80
|
+
export declare var ListImportJobsRequest: StaticStructureSchema;
|
|
81
|
+
export declare var ListImportJobsResponse: StaticStructureSchema;
|
|
82
|
+
export declare var ListKnowledgeBasesRequest: StaticStructureSchema;
|
|
83
|
+
export declare var ListKnowledgeBasesResponse: StaticStructureSchema;
|
|
84
|
+
export declare var ListQuickResponsesRequest: StaticStructureSchema;
|
|
85
|
+
export declare var ListQuickResponsesResponse: StaticStructureSchema;
|
|
86
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
87
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
88
|
+
export declare var NotifyRecommendationsReceivedError: StaticStructureSchema;
|
|
89
|
+
export declare var NotifyRecommendationsReceivedRequest: StaticStructureSchema;
|
|
90
|
+
export declare var NotifyRecommendationsReceivedResponse: StaticStructureSchema;
|
|
91
|
+
export declare var PreconditionFailedException: StaticErrorSchema;
|
|
92
|
+
export declare var QueryAssistantRequest: StaticStructureSchema;
|
|
93
|
+
export declare var QueryAssistantResponse: StaticStructureSchema;
|
|
94
|
+
export declare var QueryRecommendationTriggerData: StaticStructureSchema;
|
|
95
|
+
export declare var QuickResponseContents: StaticStructureSchema;
|
|
96
|
+
export declare var QuickResponseData: StaticStructureSchema;
|
|
97
|
+
export declare var QuickResponseFilterField: StaticStructureSchema;
|
|
98
|
+
export declare var QuickResponseOrderField: StaticStructureSchema;
|
|
99
|
+
export declare var QuickResponseQueryField: StaticStructureSchema;
|
|
100
|
+
export declare var QuickResponseSearchExpression: StaticStructureSchema;
|
|
101
|
+
export declare var QuickResponseSearchResultData: StaticStructureSchema;
|
|
102
|
+
export declare var QuickResponseSummary: StaticStructureSchema;
|
|
103
|
+
export declare var RecommendationData: StaticStructureSchema;
|
|
104
|
+
export declare var RecommendationTrigger: StaticStructureSchema;
|
|
105
|
+
export declare var RemoveKnowledgeBaseTemplateUriRequest: StaticStructureSchema;
|
|
106
|
+
export declare var RemoveKnowledgeBaseTemplateUriResponse: StaticStructureSchema;
|
|
107
|
+
export declare var RenderingConfiguration: StaticStructureSchema;
|
|
108
|
+
export declare var RequestTimeoutException: StaticErrorSchema;
|
|
109
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
110
|
+
export declare var ResultData: StaticStructureSchema;
|
|
111
|
+
export declare var SearchContentRequest: StaticStructureSchema;
|
|
112
|
+
export declare var SearchContentResponse: StaticStructureSchema;
|
|
113
|
+
export declare var SearchExpression: StaticStructureSchema;
|
|
114
|
+
export declare var SearchQuickResponsesRequest: StaticStructureSchema;
|
|
115
|
+
export declare var SearchQuickResponsesResponse: StaticStructureSchema;
|
|
116
|
+
export declare var SearchSessionsRequest: StaticStructureSchema;
|
|
117
|
+
export declare var SearchSessionsResponse: StaticStructureSchema;
|
|
118
|
+
export declare var ServerSideEncryptionConfiguration: StaticStructureSchema;
|
|
119
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
120
|
+
export declare var SessionData: StaticStructureSchema;
|
|
121
|
+
export declare var SessionIntegrationConfiguration: StaticStructureSchema;
|
|
122
|
+
export declare var SessionSummary: StaticStructureSchema;
|
|
123
|
+
export declare var StartContentUploadRequest: StaticStructureSchema;
|
|
124
|
+
export declare var StartContentUploadResponse: StaticStructureSchema;
|
|
125
|
+
export declare var StartImportJobRequest: StaticStructureSchema;
|
|
126
|
+
export declare var StartImportJobResponse: StaticStructureSchema;
|
|
127
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
128
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
129
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
130
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
131
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
132
|
+
export declare var UpdateContentRequest: StaticStructureSchema;
|
|
133
|
+
export declare var UpdateContentResponse: StaticStructureSchema;
|
|
134
|
+
export declare var UpdateKnowledgeBaseTemplateUriRequest: StaticStructureSchema;
|
|
135
|
+
export declare var UpdateKnowledgeBaseTemplateUriResponse: StaticStructureSchema;
|
|
136
|
+
export declare var UpdateQuickResponseRequest: StaticStructureSchema;
|
|
137
|
+
export declare var UpdateQuickResponseResponse: StaticStructureSchema;
|
|
138
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
139
|
+
export declare var WisdomServiceException: StaticErrorSchema;
|
|
140
|
+
export declare var AssistantAssociationSummaryList: StaticListSchema;
|
|
141
|
+
export declare var AssistantList: StaticListSchema;
|
|
142
|
+
export declare var Channels: StaticListSchema;
|
|
143
|
+
export declare var ContactAttributeKeys: StaticListSchema;
|
|
144
|
+
export declare var ContentSummaryList: StaticListSchema;
|
|
145
|
+
export declare var FilterList: StaticListSchema;
|
|
146
|
+
export declare var GroupingValues: StaticListSchema;
|
|
147
|
+
export declare var Highlights: StaticListSchema;
|
|
148
|
+
export declare var ImportJobList: StaticListSchema;
|
|
149
|
+
export declare var KnowledgeBaseList: StaticListSchema;
|
|
150
|
+
export declare var NotifyRecommendationsReceivedErrorList: StaticListSchema;
|
|
151
|
+
export declare var ObjectFieldsList: number;
|
|
152
|
+
export declare var QueryResultsList: StaticListSchema;
|
|
153
|
+
export declare var QuickResponseFilterFieldList: StaticListSchema;
|
|
154
|
+
export declare var QuickResponseFilterValueList: number;
|
|
155
|
+
export declare var QuickResponseQueryFieldList: StaticListSchema;
|
|
156
|
+
export declare var QuickResponseQueryValueList: number;
|
|
157
|
+
export declare var QuickResponseSearchResultsList: StaticListSchema;
|
|
158
|
+
export declare var QuickResponseSummaryList: StaticListSchema;
|
|
159
|
+
export declare var RecommendationIdList: number;
|
|
160
|
+
export declare var RecommendationList: StaticListSchema;
|
|
161
|
+
export declare var RecommendationTriggerList: StaticListSchema;
|
|
162
|
+
export declare var SessionSummaries: StaticListSchema;
|
|
163
|
+
export declare var TagKeyList: number;
|
|
164
|
+
export declare var ContactAttributes: StaticMapSchema;
|
|
165
|
+
export declare var ContentMetadata: number;
|
|
166
|
+
export declare var Headers: number;
|
|
167
|
+
export declare var Tags: number;
|
|
168
|
+
export declare var AssistantAssociationInputData: StaticStructureSchema;
|
|
169
|
+
export declare var AssistantAssociationOutputData: StaticStructureSchema;
|
|
170
|
+
export declare var Configuration: StaticStructureSchema;
|
|
171
|
+
export declare var QuickResponseContentProvider: StaticStructureSchema;
|
|
172
|
+
export declare var QuickResponseDataProvider: StaticStructureSchema;
|
|
173
|
+
export declare var RecommendationTriggerData: StaticStructureSchema;
|
|
174
|
+
export declare var SourceConfiguration: StaticStructureSchema;
|
|
175
|
+
export declare var CreateAssistant: StaticOperationSchema;
|
|
176
|
+
export declare var CreateAssistantAssociation: StaticOperationSchema;
|
|
177
|
+
export declare var CreateContent: StaticOperationSchema;
|
|
178
|
+
export declare var CreateKnowledgeBase: StaticOperationSchema;
|
|
179
|
+
export declare var CreateQuickResponse: StaticOperationSchema;
|
|
180
|
+
export declare var CreateSession: StaticOperationSchema;
|
|
181
|
+
export declare var DeleteAssistant: StaticOperationSchema;
|
|
182
|
+
export declare var DeleteAssistantAssociation: StaticOperationSchema;
|
|
183
|
+
export declare var DeleteContent: StaticOperationSchema;
|
|
184
|
+
export declare var DeleteImportJob: StaticOperationSchema;
|
|
185
|
+
export declare var DeleteKnowledgeBase: StaticOperationSchema;
|
|
186
|
+
export declare var DeleteQuickResponse: StaticOperationSchema;
|
|
187
|
+
export declare var GetAssistant: StaticOperationSchema;
|
|
188
|
+
export declare var GetAssistantAssociation: StaticOperationSchema;
|
|
189
|
+
export declare var GetContent: StaticOperationSchema;
|
|
190
|
+
export declare var GetContentSummary: StaticOperationSchema;
|
|
191
|
+
export declare var GetImportJob: StaticOperationSchema;
|
|
192
|
+
export declare var GetKnowledgeBase: StaticOperationSchema;
|
|
193
|
+
export declare var GetQuickResponse: StaticOperationSchema;
|
|
194
|
+
export declare var GetRecommendations: StaticOperationSchema;
|
|
195
|
+
export declare var GetSession: StaticOperationSchema;
|
|
196
|
+
export declare var ListAssistantAssociations: StaticOperationSchema;
|
|
197
|
+
export declare var ListAssistants: StaticOperationSchema;
|
|
198
|
+
export declare var ListContents: StaticOperationSchema;
|
|
199
|
+
export declare var ListImportJobs: StaticOperationSchema;
|
|
200
|
+
export declare var ListKnowledgeBases: StaticOperationSchema;
|
|
201
|
+
export declare var ListQuickResponses: StaticOperationSchema;
|
|
202
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
203
|
+
export declare var NotifyRecommendationsReceived: StaticOperationSchema;
|
|
204
|
+
export declare var QueryAssistant: StaticOperationSchema;
|
|
205
|
+
export declare var RemoveKnowledgeBaseTemplateUri: StaticOperationSchema;
|
|
206
|
+
export declare var SearchContent: StaticOperationSchema;
|
|
207
|
+
export declare var SearchQuickResponses: StaticOperationSchema;
|
|
208
|
+
export declare var SearchSessions: StaticOperationSchema;
|
|
209
|
+
export declare var StartContentUpload: StaticOperationSchema;
|
|
210
|
+
export declare var StartImportJob: StaticOperationSchema;
|
|
211
|
+
export declare var TagResource: StaticOperationSchema;
|
|
212
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
213
|
+
export declare var UpdateContent: StaticOperationSchema;
|
|
214
|
+
export declare var UpdateKnowledgeBaseTemplateUri: StaticOperationSchema;
|
|
215
|
+
export declare var UpdateQuickResponse: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -324,6 +327,7 @@ export interface ClientDefaults
|
|
|
324
327
|
retryMode?: string | __Provider<string>;
|
|
325
328
|
logger?: __Logger;
|
|
326
329
|
extensions?: RuntimeExtension[];
|
|
330
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
327
331
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
328
332
|
}
|
|
329
333
|
export type WisdomClientConfigType = Partial<
|
|
@@ -989,94 +989,3 @@ export interface UntagResourceRequest {
|
|
|
989
989
|
tagKeys: string[] | undefined;
|
|
990
990
|
}
|
|
991
991
|
export interface UntagResourceResponse {}
|
|
992
|
-
export declare const DocumentTextFilterSensitiveLog: (obj: DocumentText) => any;
|
|
993
|
-
export declare const DocumentFilterSensitiveLog: (obj: Document) => any;
|
|
994
|
-
export declare const RecommendationDataFilterSensitiveLog: (
|
|
995
|
-
obj: RecommendationData
|
|
996
|
-
) => any;
|
|
997
|
-
export declare const QueryRecommendationTriggerDataFilterSensitiveLog: (
|
|
998
|
-
obj: QueryRecommendationTriggerData
|
|
999
|
-
) => any;
|
|
1000
|
-
export declare const RecommendationTriggerDataFilterSensitiveLog: (
|
|
1001
|
-
obj: RecommendationTriggerData
|
|
1002
|
-
) => any;
|
|
1003
|
-
export declare const RecommendationTriggerFilterSensitiveLog: (
|
|
1004
|
-
obj: RecommendationTrigger
|
|
1005
|
-
) => any;
|
|
1006
|
-
export declare const GetRecommendationsResponseFilterSensitiveLog: (
|
|
1007
|
-
obj: GetRecommendationsResponse
|
|
1008
|
-
) => any;
|
|
1009
|
-
export declare const QueryAssistantRequestFilterSensitiveLog: (
|
|
1010
|
-
obj: QueryAssistantRequest
|
|
1011
|
-
) => any;
|
|
1012
|
-
export declare const ResultDataFilterSensitiveLog: (obj: ResultData) => any;
|
|
1013
|
-
export declare const QueryAssistantResponseFilterSensitiveLog: (
|
|
1014
|
-
obj: QueryAssistantResponse
|
|
1015
|
-
) => any;
|
|
1016
|
-
export declare const ContentDataFilterSensitiveLog: (obj: ContentData) => any;
|
|
1017
|
-
export declare const CreateContentResponseFilterSensitiveLog: (
|
|
1018
|
-
obj: CreateContentResponse
|
|
1019
|
-
) => any;
|
|
1020
|
-
export declare const GetContentResponseFilterSensitiveLog: (
|
|
1021
|
-
obj: GetContentResponse
|
|
1022
|
-
) => any;
|
|
1023
|
-
export declare const UpdateContentResponseFilterSensitiveLog: (
|
|
1024
|
-
obj: UpdateContentResponse
|
|
1025
|
-
) => any;
|
|
1026
|
-
export declare const QuickResponseDataProviderFilterSensitiveLog: (
|
|
1027
|
-
obj: QuickResponseDataProvider
|
|
1028
|
-
) => any;
|
|
1029
|
-
export declare const GroupingConfigurationFilterSensitiveLog: (
|
|
1030
|
-
obj: GroupingConfiguration
|
|
1031
|
-
) => any;
|
|
1032
|
-
export declare const CreateQuickResponseRequestFilterSensitiveLog: (
|
|
1033
|
-
obj: CreateQuickResponseRequest
|
|
1034
|
-
) => any;
|
|
1035
|
-
export declare const QuickResponseContentProviderFilterSensitiveLog: (
|
|
1036
|
-
obj: QuickResponseContentProvider
|
|
1037
|
-
) => any;
|
|
1038
|
-
export declare const QuickResponseContentsFilterSensitiveLog: (
|
|
1039
|
-
obj: QuickResponseContents
|
|
1040
|
-
) => any;
|
|
1041
|
-
export declare const QuickResponseDataFilterSensitiveLog: (
|
|
1042
|
-
obj: QuickResponseData
|
|
1043
|
-
) => any;
|
|
1044
|
-
export declare const CreateQuickResponseResponseFilterSensitiveLog: (
|
|
1045
|
-
obj: CreateQuickResponseResponse
|
|
1046
|
-
) => any;
|
|
1047
|
-
export declare const ImportJobDataFilterSensitiveLog: (
|
|
1048
|
-
obj: ImportJobData
|
|
1049
|
-
) => any;
|
|
1050
|
-
export declare const GetImportJobResponseFilterSensitiveLog: (
|
|
1051
|
-
obj: GetImportJobResponse
|
|
1052
|
-
) => any;
|
|
1053
|
-
export declare const GetQuickResponseResponseFilterSensitiveLog: (
|
|
1054
|
-
obj: GetQuickResponseResponse
|
|
1055
|
-
) => any;
|
|
1056
|
-
export declare const QuickResponseSummaryFilterSensitiveLog: (
|
|
1057
|
-
obj: QuickResponseSummary
|
|
1058
|
-
) => any;
|
|
1059
|
-
export declare const ListQuickResponsesResponseFilterSensitiveLog: (
|
|
1060
|
-
obj: ListQuickResponsesResponse
|
|
1061
|
-
) => any;
|
|
1062
|
-
export declare const UpdateQuickResponseRequestFilterSensitiveLog: (
|
|
1063
|
-
obj: UpdateQuickResponseRequest
|
|
1064
|
-
) => any;
|
|
1065
|
-
export declare const UpdateQuickResponseResponseFilterSensitiveLog: (
|
|
1066
|
-
obj: UpdateQuickResponseResponse
|
|
1067
|
-
) => any;
|
|
1068
|
-
export declare const SearchQuickResponsesRequestFilterSensitiveLog: (
|
|
1069
|
-
obj: SearchQuickResponsesRequest
|
|
1070
|
-
) => any;
|
|
1071
|
-
export declare const QuickResponseSearchResultDataFilterSensitiveLog: (
|
|
1072
|
-
obj: QuickResponseSearchResultData
|
|
1073
|
-
) => any;
|
|
1074
|
-
export declare const SearchQuickResponsesResponseFilterSensitiveLog: (
|
|
1075
|
-
obj: SearchQuickResponsesResponse
|
|
1076
|
-
) => any;
|
|
1077
|
-
export declare const StartContentUploadResponseFilterSensitiveLog: (
|
|
1078
|
-
obj: StartContentUploadResponse
|
|
1079
|
-
) => any;
|
|
1080
|
-
export declare const StartImportJobResponseFilterSensitiveLog: (
|
|
1081
|
-
obj: StartImportJobResponse
|
|
1082
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WisdomHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|