@wildix/wda-history-client 1.2.28 → 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.
Files changed (108) hide show
  1. package/dist-cjs/WdaHistory.js +3 -3
  2. package/dist-cjs/WdaHistoryClient.js +34 -26
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/GetCallAnnotationsCommand.js +10 -11
  6. package/dist-cjs/commands/GetCallCommand.js +10 -11
  7. package/dist-cjs/commands/GetCallTranscriptionCommand.js +10 -11
  8. package/dist-cjs/commands/GetCallTranscriptionTextCommand.js +10 -11
  9. package/dist-cjs/commands/GetChatAnnotationsCommand.js +10 -11
  10. package/dist-cjs/commands/GetChatCommand.js +10 -11
  11. package/dist-cjs/commands/GetChatTranscriptionCommand.js +10 -11
  12. package/dist-cjs/commands/GetChatTranscriptionTextCommand.js +10 -11
  13. package/dist-cjs/commands/GetConferenceAnnotationsCommand.js +10 -11
  14. package/dist-cjs/commands/GetConferenceCommand.js +10 -11
  15. package/dist-cjs/commands/GetConferenceTranscriptionCommand.js +10 -11
  16. package/dist-cjs/commands/GetConferenceTranscriptionTextCommand.js +10 -11
  17. package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
  18. package/dist-cjs/commands/QueryUserCallsCommand.js +10 -11
  19. package/dist-cjs/commands/UpdateCallCommand.js +10 -11
  20. package/dist-cjs/commands/index.js +3 -3
  21. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  22. package/dist-cjs/endpoint/bdd.js +25 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  24. package/dist-cjs/index.js +4 -1
  25. package/dist-cjs/models/WdaHistoryServiceException.js +3 -3
  26. package/dist-cjs/models/enums.js +204 -0
  27. package/dist-cjs/models/errors.js +147 -0
  28. package/dist-cjs/models/models_0.js +0 -406
  29. package/dist-cjs/runtimeConfig.browser.js +11 -11
  30. package/dist-cjs/runtimeConfig.js +22 -18
  31. package/dist-cjs/runtimeConfig.shared.js +30 -10
  32. package/dist-cjs/runtimeExtensions.js +6 -5
  33. package/dist-cjs/schemas/schemas_0.js +1047 -0
  34. package/dist-es/WdaHistory.js +4 -4
  35. package/dist-es/WdaHistoryClient.js +30 -22
  36. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  37. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  38. package/dist-es/commands/GetCallAnnotationsCommand.js +9 -10
  39. package/dist-es/commands/GetCallCommand.js +9 -10
  40. package/dist-es/commands/GetCallTranscriptionCommand.js +9 -10
  41. package/dist-es/commands/GetCallTranscriptionTextCommand.js +9 -10
  42. package/dist-es/commands/GetChatAnnotationsCommand.js +9 -10
  43. package/dist-es/commands/GetChatCommand.js +9 -10
  44. package/dist-es/commands/GetChatTranscriptionCommand.js +9 -10
  45. package/dist-es/commands/GetChatTranscriptionTextCommand.js +9 -10
  46. package/dist-es/commands/GetConferenceAnnotationsCommand.js +9 -10
  47. package/dist-es/commands/GetConferenceCommand.js +9 -10
  48. package/dist-es/commands/GetConferenceTranscriptionCommand.js +9 -10
  49. package/dist-es/commands/GetConferenceTranscriptionTextCommand.js +9 -10
  50. package/dist-es/commands/QueryConversationsCommand.js +9 -10
  51. package/dist-es/commands/QueryUserCallsCommand.js +9 -10
  52. package/dist-es/commands/UpdateCallCommand.js +9 -10
  53. package/dist-es/commands/index.js +3 -3
  54. package/dist-es/endpoint/EndpointParameters.js +12 -0
  55. package/dist-es/endpoint/bdd.js +22 -0
  56. package/dist-es/endpoint/endpointResolver.js +12 -0
  57. package/dist-es/index.js +4 -1
  58. package/dist-es/models/WdaHistoryServiceException.js +1 -1
  59. package/dist-es/models/enums.js +201 -0
  60. package/dist-es/models/errors.js +133 -0
  61. package/dist-es/models/models_0.js +1 -393
  62. package/dist-es/runtimeConfig.browser.js +7 -7
  63. package/dist-es/runtimeConfig.js +17 -13
  64. package/dist-es/runtimeConfig.shared.js +24 -4
  65. package/dist-es/runtimeExtensions.js +6 -5
  66. package/dist-es/schemas/schemas_0.js +1042 -0
  67. package/dist-types/WdaHistory.d.ts +16 -16
  68. package/dist-types/WdaHistoryClient.d.ts +45 -27
  69. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  70. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  71. package/dist-types/commands/GetCallAnnotationsCommand.d.ts +11 -7
  72. package/dist-types/commands/GetCallCommand.d.ts +13 -9
  73. package/dist-types/commands/GetCallTranscriptionCommand.d.ts +11 -7
  74. package/dist-types/commands/GetCallTranscriptionTextCommand.d.ts +11 -7
  75. package/dist-types/commands/GetChatAnnotationsCommand.d.ts +11 -7
  76. package/dist-types/commands/GetChatCommand.d.ts +11 -7
  77. package/dist-types/commands/GetChatTranscriptionCommand.d.ts +11 -7
  78. package/dist-types/commands/GetChatTranscriptionTextCommand.d.ts +11 -7
  79. package/dist-types/commands/GetConferenceAnnotationsCommand.d.ts +11 -7
  80. package/dist-types/commands/GetConferenceCommand.d.ts +11 -7
  81. package/dist-types/commands/GetConferenceTranscriptionCommand.d.ts +11 -7
  82. package/dist-types/commands/GetConferenceTranscriptionTextCommand.d.ts +11 -7
  83. package/dist-types/commands/QueryConversationsCommand.d.ts +13 -9
  84. package/dist-types/commands/QueryUserCallsCommand.d.ts +13 -9
  85. package/dist-types/commands/UpdateCallCommand.d.ts +13 -9
  86. package/dist-types/commands/index.d.ts +3 -3
  87. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  88. package/dist-types/endpoint/bdd.d.ts +2 -0
  89. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  90. package/dist-types/extensionConfiguration.d.ts +4 -3
  91. package/dist-types/index.d.ts +5 -1
  92. package/dist-types/models/WdaHistoryServiceException.d.ts +1 -1
  93. package/dist-types/models/enums.d.ts +505 -0
  94. package/dist-types/models/errors.d.ts +123 -0
  95. package/dist-types/models/models_0.d.ts +83 -685
  96. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  97. package/dist-types/runtimeConfig.d.ts +34 -15
  98. package/dist-types/runtimeConfig.native.d.ts +36 -17
  99. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  100. package/dist-types/runtimeExtensions.d.ts +1 -1
  101. package/dist-types/schemas/schemas_0.d.ts +127 -0
  102. package/package.json +14 -40
  103. package/dist-cjs/models/index.js +0 -4
  104. package/dist-cjs/protocols/Aws_restJson1.js +0 -868
  105. package/dist-es/models/index.js +0 -1
  106. package/dist-es/protocols/Aws_restJson1.js +0 -835
  107. package/dist-types/models/index.d.ts +0 -1
  108. 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 { GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput } from "./commands/GetCallAnnotationsCommand";
2
- import { GetCallCommandInput, GetCallCommandOutput } from "./commands/GetCallCommand";
3
- import { GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput } from "./commands/GetCallTranscriptionCommand";
4
- import { GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput } from "./commands/GetCallTranscriptionTextCommand";
5
- import { GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput } from "./commands/GetChatAnnotationsCommand";
6
- import { GetChatCommandInput, GetChatCommandOutput } from "./commands/GetChatCommand";
7
- import { GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput } from "./commands/GetChatTranscriptionCommand";
8
- import { GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput } from "./commands/GetChatTranscriptionTextCommand";
9
- import { GetConferenceAnnotationsCommandInput, GetConferenceAnnotationsCommandOutput } from "./commands/GetConferenceAnnotationsCommand";
10
- import { GetConferenceCommandInput, GetConferenceCommandOutput } from "./commands/GetConferenceCommand";
11
- import { GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput } from "./commands/GetConferenceTranscriptionCommand";
12
- import { GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput } from "./commands/GetConferenceTranscriptionTextCommand";
13
- import { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "./commands/QueryConversationsCommand";
14
- import { QueryUserCallsCommandInput, QueryUserCallsCommandOutput } from "./commands/QueryUserCallsCommand";
15
- import { UpdateCallCommandInput, UpdateCallCommandOutput } from "./commands/UpdateCallCommand";
16
- import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
17
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
18
- import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
19
- import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
20
- import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
21
- import { Provider, 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";
22
- import { TokenProvider } from '@wildix/smithy-utils';
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?: Provider<__UserAgent>;
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 { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetCallAnnotationsInput, GetCallAnnotationsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetCallAnnotationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetCallInput, GetCallOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetCallCommandInput, GetCallCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetCallCommandInput): import("@smithy/smithy-client").CommandImpl<GetCallCommandInput, GetCallCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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",
@@ -64,7 +68,7 @@ declare const GetCallCommand_base: {
64
68
  * // groupId: "STRING_VALUE",
65
69
  * // groupName: "STRING_VALUE",
66
70
  * // userAgent: "STRING_VALUE",
67
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
71
+ * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN" || "COLLABORATION7_WEB" || "COLLABORATION7_IOS" || "COLLABORATION7_ANDROID" || "XHOPPERS_WEB" || "XHOPPERS_IOS" || "XHOPPERS_ANDROID" || "TEAMS4WILDIX",
68
72
  * // role: "CLIENT" || "AGENT", // required
69
73
  * // license: "STRING_VALUE",
70
74
  * // sipCallId: "STRING_VALUE",
@@ -84,7 +88,7 @@ declare const GetCallCommand_base: {
84
88
  * // groupId: "STRING_VALUE",
85
89
  * // groupName: "STRING_VALUE",
86
90
  * // userAgent: "STRING_VALUE",
87
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
91
+ * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN" || "COLLABORATION7_WEB" || "COLLABORATION7_IOS" || "COLLABORATION7_ANDROID" || "XHOPPERS_WEB" || "XHOPPERS_IOS" || "XHOPPERS_ANDROID" || "TEAMS4WILDIX",
88
92
  * // role: "CLIENT" || "AGENT", // required
89
93
  * // license: "STRING_VALUE",
90
94
  * // sipCallId: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetCallTranscriptionInput, GetCallTranscriptionOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetCallTranscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetCallTranscriptionTextInput, GetCallTranscriptionTextOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetCallTranscriptionTextCommandInput): import("@smithy/smithy-client").CommandImpl<GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetChatAnnotationsInput, GetChatAnnotationsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetChatAnnotationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetChatInput, GetChatOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetChatCommandInput, GetChatCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetChatCommandInput): import("@smithy/smithy-client").CommandImpl<GetChatCommandInput, GetChatCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetChatTranscriptionInput, GetChatTranscriptionOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetChatTranscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetChatTranscriptionTextInput, GetChatTranscriptionTextOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetChatTranscriptionTextCommandInput): import("@smithy/smithy-client").CommandImpl<GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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",