@wildix/wda-history-client 1.2.29 → 3.1.29
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/WdaHistory.js +3 -3
- package/dist-cjs/WdaHistoryClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
- package/dist-cjs/commands/GetCallAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetCallCommand.js +10 -11
- package/dist-cjs/commands/GetCallTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetCallTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/GetChatAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetChatCommand.js +10 -11
- package/dist-cjs/commands/GetChatTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetChatTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
- package/dist-cjs/commands/QueryUserCallsCommand.js +10 -11
- package/dist-cjs/commands/UpdateCallCommand.js +10 -11
- package/dist-cjs/commands/index.js +3 -3
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +25 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/WdaHistoryServiceException.js +3 -3
- package/dist-cjs/models/enums.js +204 -0
- package/dist-cjs/models/errors.js +147 -0
- package/dist-cjs/models/models_0.js +0 -413
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1047 -0
- package/dist-es/WdaHistory.js +4 -4
- package/dist-es/WdaHistoryClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-es/commands/GetCallAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetCallCommand.js +9 -10
- package/dist-es/commands/GetCallTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetCallTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/GetChatAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetChatCommand.js +9 -10
- package/dist-es/commands/GetChatTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetChatTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/GetConferenceAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetConferenceCommand.js +9 -10
- package/dist-es/commands/GetConferenceTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetConferenceTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/QueryConversationsCommand.js +9 -10
- package/dist-es/commands/QueryUserCallsCommand.js +9 -10
- package/dist-es/commands/UpdateCallCommand.js +9 -10
- package/dist-es/commands/index.js +3 -3
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +22 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/WdaHistoryServiceException.js +1 -1
- package/dist-es/models/enums.js +201 -0
- package/dist-es/models/errors.js +133 -0
- package/dist-es/models/models_0.js +1 -400
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1042 -0
- package/dist-types/WdaHistory.d.ts +16 -16
- package/dist-types/WdaHistoryClient.d.ts +45 -27
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/GetCallAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetCallCommand.d.ts +11 -7
- package/dist-types/commands/GetCallTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetCallTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/GetChatAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetChatCommand.d.ts +11 -7
- package/dist-types/commands/GetChatTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetChatTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/QueryConversationsCommand.d.ts +11 -7
- package/dist-types/commands/QueryUserCallsCommand.d.ts +11 -7
- package/dist-types/commands/UpdateCallCommand.d.ts +11 -7
- package/dist-types/commands/index.d.ts +3 -3
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/WdaHistoryServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +505 -0
- package/dist-types/models/errors.d.ts +123 -0
- package/dist-types/models/models_0.d.ts +83 -692
- package/dist-types/runtimeConfig.browser.d.ts +35 -16
- package/dist-types/runtimeConfig.d.ts +34 -15
- package/dist-types/runtimeConfig.native.d.ts +36 -17
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +127 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -868
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -835
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -137
|
@@ -1,20 +1,20 @@
|
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { type GetCallAnnotationsCommandInput, type GetCallAnnotationsCommandOutput } from "./commands/GetCallAnnotationsCommand";
|
|
3
|
+
import { type GetCallCommandInput, type GetCallCommandOutput } from "./commands/GetCallCommand";
|
|
4
|
+
import { type GetCallTranscriptionCommandInput, type GetCallTranscriptionCommandOutput } from "./commands/GetCallTranscriptionCommand";
|
|
5
|
+
import { type GetCallTranscriptionTextCommandInput, type GetCallTranscriptionTextCommandOutput } from "./commands/GetCallTranscriptionTextCommand";
|
|
6
|
+
import { type GetChatAnnotationsCommandInput, type GetChatAnnotationsCommandOutput } from "./commands/GetChatAnnotationsCommand";
|
|
7
|
+
import { type GetChatCommandInput, type GetChatCommandOutput } from "./commands/GetChatCommand";
|
|
8
|
+
import { type GetChatTranscriptionCommandInput, type GetChatTranscriptionCommandOutput } from "./commands/GetChatTranscriptionCommand";
|
|
9
|
+
import { type GetChatTranscriptionTextCommandInput, type GetChatTranscriptionTextCommandOutput } from "./commands/GetChatTranscriptionTextCommand";
|
|
10
|
+
import { type GetConferenceAnnotationsCommandInput, type GetConferenceAnnotationsCommandOutput } from "./commands/GetConferenceAnnotationsCommand";
|
|
11
|
+
import { type GetConferenceCommandInput, type GetConferenceCommandOutput } from "./commands/GetConferenceCommand";
|
|
12
|
+
import { type GetConferenceTranscriptionCommandInput, type GetConferenceTranscriptionCommandOutput } from "./commands/GetConferenceTranscriptionCommand";
|
|
13
|
+
import { type GetConferenceTranscriptionTextCommandInput, type GetConferenceTranscriptionTextCommandOutput } from "./commands/GetConferenceTranscriptionTextCommand";
|
|
14
|
+
import { type QueryConversationsCommandInput, type QueryConversationsCommandOutput } from "./commands/QueryConversationsCommand";
|
|
15
|
+
import { type QueryUserCallsCommandInput, type QueryUserCallsCommandOutput } from "./commands/QueryUserCallsCommand";
|
|
16
|
+
import { type UpdateCallCommandInput, type UpdateCallCommandOutput } from "./commands/UpdateCallCommand";
|
|
1
17
|
import { WdaHistoryClient } from "./WdaHistoryClient";
|
|
2
|
-
import { GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput } from "./commands/GetCallAnnotationsCommand";
|
|
3
|
-
import { GetCallCommandInput, GetCallCommandOutput } from "./commands/GetCallCommand";
|
|
4
|
-
import { GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput } from "./commands/GetCallTranscriptionCommand";
|
|
5
|
-
import { GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput } from "./commands/GetCallTranscriptionTextCommand";
|
|
6
|
-
import { GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput } from "./commands/GetChatAnnotationsCommand";
|
|
7
|
-
import { GetChatCommandInput, GetChatCommandOutput } from "./commands/GetChatCommand";
|
|
8
|
-
import { GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput } from "./commands/GetChatTranscriptionCommand";
|
|
9
|
-
import { GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput } from "./commands/GetChatTranscriptionTextCommand";
|
|
10
|
-
import { GetConferenceAnnotationsCommandInput, GetConferenceAnnotationsCommandOutput } from "./commands/GetConferenceAnnotationsCommand";
|
|
11
|
-
import { GetConferenceCommandInput, GetConferenceCommandOutput } from "./commands/GetConferenceCommand";
|
|
12
|
-
import { GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput } from "./commands/GetConferenceTranscriptionCommand";
|
|
13
|
-
import { GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput } from "./commands/GetConferenceTranscriptionTextCommand";
|
|
14
|
-
import { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "./commands/QueryConversationsCommand";
|
|
15
|
-
import { QueryUserCallsCommandInput, QueryUserCallsCommandOutput } from "./commands/QueryUserCallsCommand";
|
|
16
|
-
import { UpdateCallCommandInput, UpdateCallCommandOutput } from "./commands/UpdateCallCommand";
|
|
17
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
18
18
|
export interface WdaHistory {
|
|
19
19
|
/**
|
|
20
20
|
* @see {@link GetCallCommand}
|
|
@@ -1,25 +1,27 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
1
|
+
import { type HostHeaderInputConfig, type HostHeaderResolvedConfig, type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/core/client";
|
|
2
|
+
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/core/client";
|
|
3
|
+
import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
4
|
+
import { type HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
5
|
+
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/retry";
|
|
6
|
+
import type { 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, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
7
|
+
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
8
|
+
import type { GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput } from "./commands/GetCallAnnotationsCommand";
|
|
9
|
+
import type { GetCallCommandInput, GetCallCommandOutput } from "./commands/GetCallCommand";
|
|
10
|
+
import type { GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput } from "./commands/GetCallTranscriptionCommand";
|
|
11
|
+
import type { GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput } from "./commands/GetCallTranscriptionTextCommand";
|
|
12
|
+
import type { GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput } from "./commands/GetChatAnnotationsCommand";
|
|
13
|
+
import type { GetChatCommandInput, GetChatCommandOutput } from "./commands/GetChatCommand";
|
|
14
|
+
import type { GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput } from "./commands/GetChatTranscriptionCommand";
|
|
15
|
+
import type { GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput } from "./commands/GetChatTranscriptionTextCommand";
|
|
16
|
+
import type { GetConferenceAnnotationsCommandInput, GetConferenceAnnotationsCommandOutput } from "./commands/GetConferenceAnnotationsCommand";
|
|
17
|
+
import type { GetConferenceCommandInput, GetConferenceCommandOutput } from "./commands/GetConferenceCommand";
|
|
18
|
+
import type { GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput } from "./commands/GetConferenceTranscriptionCommand";
|
|
19
|
+
import type { GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput } from "./commands/GetConferenceTranscriptionTextCommand";
|
|
20
|
+
import type { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "./commands/QueryConversationsCommand";
|
|
21
|
+
import type { QueryUserCallsCommandInput, QueryUserCallsCommandOutput } from "./commands/QueryUserCallsCommand";
|
|
22
|
+
import type { UpdateCallCommandInput, UpdateCallCommandOutput } from "./commands/UpdateCallCommand";
|
|
23
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
24
|
+
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
23
25
|
export { __Client };
|
|
24
26
|
/**
|
|
25
27
|
* @public
|
|
@@ -88,11 +90,29 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
88
90
|
* trait of an operation.
|
|
89
91
|
*/
|
|
90
92
|
disableHostPrefix?: boolean;
|
|
93
|
+
/**
|
|
94
|
+
* Setting a client profile is similar to setting a value for the
|
|
95
|
+
* AWS_PROFILE environment variable. Setting a profile on a client
|
|
96
|
+
* in code only affects the single client instance, unlike AWS_PROFILE.
|
|
97
|
+
*
|
|
98
|
+
* When set, and only for environments where an AWS configuration
|
|
99
|
+
* file exists, fields configurable by this file will be retrieved
|
|
100
|
+
* from the specified profile within that file.
|
|
101
|
+
* Conflicting code configuration and environment variables will
|
|
102
|
+
* still have higher priority.
|
|
103
|
+
*
|
|
104
|
+
* For client credential resolution that involves checking the AWS
|
|
105
|
+
* configuration file, the client's profile (this value) will be
|
|
106
|
+
* used unless a different profile is set in the credential
|
|
107
|
+
* provider options.
|
|
108
|
+
*
|
|
109
|
+
*/
|
|
110
|
+
profile?: string;
|
|
91
111
|
/**
|
|
92
112
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
93
113
|
* @internal
|
|
94
114
|
*/
|
|
95
|
-
defaultUserAgentProvider?:
|
|
115
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
96
116
|
/**
|
|
97
117
|
* Value for how many times a request will be made at most in case of retry.
|
|
98
118
|
*/
|
|
@@ -119,20 +139,18 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
119
139
|
/**
|
|
120
140
|
* @public
|
|
121
141
|
*/
|
|
122
|
-
export type WdaHistoryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig;
|
|
142
|
+
export type WdaHistoryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
123
143
|
/**
|
|
124
144
|
* @public
|
|
125
145
|
*
|
|
126
146
|
* The configuration interface of WdaHistoryClient class constructor that set the region, credentials and other options.
|
|
127
147
|
*/
|
|
128
148
|
export interface WdaHistoryClientConfig extends WdaHistoryClientConfigType {
|
|
129
|
-
env?: 'stage' | 'stable' | 'prod';
|
|
130
|
-
token: TokenProvider;
|
|
131
149
|
}
|
|
132
150
|
/**
|
|
133
151
|
* @public
|
|
134
152
|
*/
|
|
135
|
-
export type WdaHistoryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig;
|
|
153
|
+
export type WdaHistoryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
136
154
|
/**
|
|
137
155
|
* @public
|
|
138
156
|
*
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { type HttpAuthScheme, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
|
|
2
|
+
import type { WdaHistoryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export interface HttpAuthExtensionConfiguration {
|
|
7
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
8
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
9
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: WdaHistoryHttpAuthSchemeProvider): void;
|
|
10
|
+
httpAuthSchemeProvider(): WdaHistoryHttpAuthSchemeProvider;
|
|
11
|
+
setToken(token: TokenIdentity | TokenIdentityProvider): void;
|
|
12
|
+
token(): TokenIdentity | TokenIdentityProvider | undefined;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
18
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
19
|
+
httpAuthSchemeProvider: WdaHistoryHttpAuthSchemeProvider;
|
|
20
|
+
token: TokenIdentity | TokenIdentityProvider;
|
|
21
|
+
}>;
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { type HandlerExecutionContext, type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
|
|
2
|
+
import type { WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export interface WdaHistoryHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @internal
|
|
10
|
+
*/
|
|
11
|
+
export interface WdaHistoryHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<WdaHistoryClientResolvedConfig, HandlerExecutionContext, WdaHistoryHttpAuthSchemeParameters, object> {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
export declare const defaultWdaHistoryHttpAuthSchemeParametersProvider: (config: WdaHistoryClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<WdaHistoryHttpAuthSchemeParameters>;
|
|
17
|
+
/**
|
|
18
|
+
* @internal
|
|
19
|
+
*/
|
|
20
|
+
export interface WdaHistoryHttpAuthSchemeProvider extends HttpAuthSchemeProvider<WdaHistoryHttpAuthSchemeParameters> {
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
export declare const defaultWdaHistoryHttpAuthSchemeProvider: WdaHistoryHttpAuthSchemeProvider;
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export interface HttpAuthSchemeInputConfig {
|
|
30
|
+
/**
|
|
31
|
+
* A comma-separated list of case-sensitive auth scheme names.
|
|
32
|
+
* An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
|
|
33
|
+
* For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
37
|
+
/**
|
|
38
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
39
|
+
* @internal
|
|
40
|
+
*/
|
|
41
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
42
|
+
/**
|
|
43
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
httpAuthSchemeProvider?: WdaHistoryHttpAuthSchemeProvider;
|
|
47
|
+
/**
|
|
48
|
+
* The token used to authenticate requests.
|
|
49
|
+
*/
|
|
50
|
+
token?: TokenIdentity | TokenIdentityProvider;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
export interface HttpAuthSchemeResolvedConfig {
|
|
56
|
+
/**
|
|
57
|
+
* A comma-separated list of case-sensitive auth scheme names.
|
|
58
|
+
* An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
|
|
59
|
+
* For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
63
|
+
/**
|
|
64
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
68
|
+
/**
|
|
69
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
72
|
+
readonly httpAuthSchemeProvider: WdaHistoryHttpAuthSchemeProvider;
|
|
73
|
+
/**
|
|
74
|
+
* The token used to authenticate requests.
|
|
75
|
+
*/
|
|
76
|
+
readonly token?: TokenIdentityProvider;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetCallAnnotationsInput, GetCallAnnotationsOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetCallAnnotationsCommandInput extends GetCallAnnotationsInput
|
|
|
22
22
|
export interface GetCallAnnotationsCommandOutput extends GetCallAnnotationsOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetCallAnnotationsCommand_base: {
|
|
25
|
-
new (input: GetCallAnnotationsCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetCallAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetCallAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets annotations for a call by callId and flowIndex.
|
|
@@ -33,6 +35,8 @@ declare const GetCallAnnotationsCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetCallAnnotationsCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetCallAnnotationsCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetCallAnnotationsInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetCallInput, GetCallOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetCallCommandInput extends GetCallInput {
|
|
|
22
22
|
export interface GetCallCommandOutput extends GetCallOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetCallCommand_base: {
|
|
25
|
-
new (input: GetCallCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetCallCommandInput): import("@smithy/core/client").CommandImpl<GetCallCommandInput, GetCallCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetCallCommandInput): import("@smithy/core/client").CommandImpl<GetCallCommandInput, GetCallCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets a call by callId and flowIndex.
|
|
@@ -33,6 +35,8 @@ declare const GetCallCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetCallCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetCallCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetCallInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetCallTranscriptionInput, GetCallTranscriptionOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetCallTranscriptionCommandInput extends GetCallTranscriptionIn
|
|
|
22
22
|
export interface GetCallTranscriptionCommandOutput extends GetCallTranscriptionOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetCallTranscriptionCommand_base: {
|
|
25
|
-
new (input: GetCallTranscriptionCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetCallTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetCallTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets the transcription for a call by callId and flowIndex.
|
|
@@ -33,6 +35,8 @@ declare const GetCallTranscriptionCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetCallTranscriptionCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetCallTranscriptionCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetCallTranscriptionInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetCallTranscriptionTextInput, GetCallTranscriptionTextOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetCallTranscriptionTextCommandInput extends GetCallTranscripti
|
|
|
22
22
|
export interface GetCallTranscriptionTextCommandOutput extends GetCallTranscriptionTextOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetCallTranscriptionTextCommand_base: {
|
|
25
|
-
new (input: GetCallTranscriptionTextCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetCallTranscriptionTextCommandInput): import("@smithy/core/client").CommandImpl<GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetCallTranscriptionTextCommandInput): import("@smithy/core/client").CommandImpl<GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets the transcription text and chunks for a call by callId and flowIndex.
|
|
@@ -33,6 +35,8 @@ declare const GetCallTranscriptionTextCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetCallTranscriptionTextCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetCallTranscriptionTextCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetCallTranscriptionTextInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetChatAnnotationsInput, GetChatAnnotationsOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetChatAnnotationsCommandInput extends GetChatAnnotationsInput
|
|
|
22
22
|
export interface GetChatAnnotationsCommandOutput extends GetChatAnnotationsOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetChatAnnotationsCommand_base: {
|
|
25
|
-
new (input: GetChatAnnotationsCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetChatAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetChatAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets annotations for a chat by chatId.
|
|
@@ -33,6 +35,8 @@ declare const GetChatAnnotationsCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetChatAnnotationsCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetChatAnnotationsCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetChatAnnotationsInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetChatInput, GetChatOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetChatCommandInput extends GetChatInput {
|
|
|
22
22
|
export interface GetChatCommandOutput extends GetChatOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetChatCommand_base: {
|
|
25
|
-
new (input: GetChatCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetChatCommandInput): import("@smithy/core/client").CommandImpl<GetChatCommandInput, GetChatCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetChatCommandInput): import("@smithy/core/client").CommandImpl<GetChatCommandInput, GetChatCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets a chat by chatId.
|
|
@@ -33,6 +35,8 @@ declare const GetChatCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetChatCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetChatCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetChatInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetChatTranscriptionInput, GetChatTranscriptionOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetChatTranscriptionCommandInput extends GetChatTranscriptionIn
|
|
|
22
22
|
export interface GetChatTranscriptionCommandOutput extends GetChatTranscriptionOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetChatTranscriptionCommand_base: {
|
|
25
|
-
new (input: GetChatTranscriptionCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetChatTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetChatTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets the transcription for a chat by chatId.
|
|
@@ -33,6 +35,8 @@ declare const GetChatTranscriptionCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetChatTranscriptionCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetChatTranscriptionCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetChatTranscriptionInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetChatTranscriptionTextInput, GetChatTranscriptionTextOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetChatTranscriptionTextCommandInput extends GetChatTranscripti
|
|
|
22
22
|
export interface GetChatTranscriptionTextCommandOutput extends GetChatTranscriptionTextOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetChatTranscriptionTextCommand_base: {
|
|
25
|
-
new (input: GetChatTranscriptionTextCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetChatTranscriptionTextCommandInput): import("@smithy/core/client").CommandImpl<GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetChatTranscriptionTextCommandInput): import("@smithy/core/client").CommandImpl<GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets the transcription text and chunks for a chat by chatId.
|
|
@@ -33,6 +35,8 @@ declare const GetChatTranscriptionTextCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetChatTranscriptionTextCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetChatTranscriptionTextCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetChatTranscriptionTextInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetConferenceAnnotationsInput, GetConferenceAnnotationsOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetConferenceAnnotationsCommandInput extends GetConferenceAnnot
|
|
|
22
22
|
export interface GetConferenceAnnotationsCommandOutput extends GetConferenceAnnotationsOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetConferenceAnnotationsCommand_base: {
|
|
25
|
-
new (input: GetConferenceAnnotationsCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetConferenceAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceAnnotationsCommandInput, GetConferenceAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetConferenceAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceAnnotationsCommandInput, GetConferenceAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets annotations for a conference by conferenceId.
|
|
@@ -33,6 +35,8 @@ declare const GetConferenceAnnotationsCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WdaHistoryClient, GetConferenceAnnotationsCommand } from "@wildix/wda-history-client"; // ES Modules import
|
|
35
37
|
* // const { WdaHistoryClient, GetConferenceAnnotationsCommand } = require("@wildix/wda-history-client"); // CommonJS import
|
|
38
|
+
* // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
|
|
39
|
+
* const config = {}; // type is WdaHistoryClientConfig
|
|
36
40
|
* const client = new WdaHistoryClient(config);
|
|
37
41
|
* const input = { // GetConferenceAnnotationsInput
|
|
38
42
|
* company: "STRING_VALUE",
|