@wildix/wda-stream-client 1.1.67 → 3.1.69

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 (111) hide show
  1. package/dist-cjs/WdaStream.js +3 -3
  2. package/dist-cjs/WdaStreamClient.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/ConsumeEventCommand.js +10 -11
  6. package/dist-cjs/commands/DescribeEventCommand.js +10 -11
  7. package/dist-cjs/commands/GetConferenceIdCommand.js +10 -11
  8. package/dist-cjs/commands/GetOngoingCallAnnotationsCommand.js +10 -11
  9. package/dist-cjs/commands/GetOngoingCallCommand.js +10 -11
  10. package/dist-cjs/commands/GetOngoingCallTranscriptionCommand.js +10 -11
  11. package/dist-cjs/commands/GetOngoingChatAnnotationsCommand.js +10 -11
  12. package/dist-cjs/commands/GetOngoingConferenceAnnotationsCommand.js +10 -11
  13. package/dist-cjs/commands/GetOngoingConferenceCommand.js +10 -11
  14. package/dist-cjs/commands/GetOngoingConferenceTranscriptionCommand.js +10 -11
  15. package/dist-cjs/commands/ListServicesCommand.js +10 -11
  16. package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
  17. package/dist-cjs/commands/QueryPresenceCommand.js +10 -11
  18. package/dist-cjs/commands/QueryPresencesCommand.js +10 -11
  19. package/dist-cjs/commands/UpdatePresenceLastSeenCommand.js +10 -11
  20. package/dist-cjs/commands/index.js +2 -2
  21. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  22. package/dist-cjs/endpoint/bdd.js +28 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  24. package/dist-cjs/index.js +5 -1
  25. package/dist-cjs/models/WdaStreamServiceException.js +3 -3
  26. package/dist-cjs/models/enums.js +508 -0
  27. package/dist-cjs/models/errors.js +56 -0
  28. package/dist-cjs/models/models_0.js +0 -660
  29. package/dist-cjs/models/models_1.js +0 -48
  30. package/dist-cjs/runtimeConfig.browser.js +11 -11
  31. package/dist-cjs/runtimeConfig.js +22 -18
  32. package/dist-cjs/runtimeConfig.shared.js +30 -10
  33. package/dist-cjs/runtimeExtensions.js +6 -5
  34. package/dist-cjs/schemas/schemas_0.js +2528 -0
  35. package/dist-es/WdaStream.js +2 -2
  36. package/dist-es/WdaStreamClient.js +30 -22
  37. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  38. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  39. package/dist-es/commands/ConsumeEventCommand.js +9 -10
  40. package/dist-es/commands/DescribeEventCommand.js +9 -10
  41. package/dist-es/commands/GetConferenceIdCommand.js +9 -10
  42. package/dist-es/commands/GetOngoingCallAnnotationsCommand.js +9 -10
  43. package/dist-es/commands/GetOngoingCallCommand.js +9 -10
  44. package/dist-es/commands/GetOngoingCallTranscriptionCommand.js +9 -10
  45. package/dist-es/commands/GetOngoingChatAnnotationsCommand.js +9 -10
  46. package/dist-es/commands/GetOngoingConferenceAnnotationsCommand.js +9 -10
  47. package/dist-es/commands/GetOngoingConferenceCommand.js +9 -10
  48. package/dist-es/commands/GetOngoingConferenceTranscriptionCommand.js +9 -10
  49. package/dist-es/commands/ListServicesCommand.js +9 -10
  50. package/dist-es/commands/QueryConversationsCommand.js +9 -10
  51. package/dist-es/commands/QueryPresenceCommand.js +9 -10
  52. package/dist-es/commands/QueryPresencesCommand.js +9 -10
  53. package/dist-es/commands/UpdatePresenceLastSeenCommand.js +9 -10
  54. package/dist-es/commands/index.js +2 -2
  55. package/dist-es/endpoint/EndpointParameters.js +12 -0
  56. package/dist-es/endpoint/bdd.js +25 -0
  57. package/dist-es/endpoint/endpointResolver.js +12 -0
  58. package/dist-es/index.js +5 -1
  59. package/dist-es/models/WdaStreamServiceException.js +1 -1
  60. package/dist-es/models/enums.js +504 -0
  61. package/dist-es/models/errors.js +49 -0
  62. package/dist-es/models/models_0.js +1 -656
  63. package/dist-es/models/models_1.js +1 -45
  64. package/dist-es/runtimeConfig.browser.js +7 -7
  65. package/dist-es/runtimeConfig.js +17 -13
  66. package/dist-es/runtimeConfig.shared.js +24 -4
  67. package/dist-es/runtimeExtensions.js +6 -5
  68. package/dist-es/schemas/schemas_0.js +2519 -0
  69. package/dist-types/WdaStream.d.ts +16 -16
  70. package/dist-types/WdaStreamClient.d.ts +45 -27
  71. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  72. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  73. package/dist-types/commands/ConsumeEventCommand.d.ts +16 -7
  74. package/dist-types/commands/DescribeEventCommand.d.ts +24 -18
  75. package/dist-types/commands/GetConferenceIdCommand.d.ts +11 -7
  76. package/dist-types/commands/GetOngoingCallAnnotationsCommand.d.ts +13 -9
  77. package/dist-types/commands/GetOngoingCallCommand.d.ts +13 -9
  78. package/dist-types/commands/GetOngoingCallTranscriptionCommand.d.ts +14 -10
  79. package/dist-types/commands/GetOngoingChatAnnotationsCommand.d.ts +11 -7
  80. package/dist-types/commands/GetOngoingConferenceAnnotationsCommand.d.ts +11 -7
  81. package/dist-types/commands/GetOngoingConferenceCommand.d.ts +11 -7
  82. package/dist-types/commands/GetOngoingConferenceTranscriptionCommand.d.ts +11 -7
  83. package/dist-types/commands/ListServicesCommand.d.ts +11 -7
  84. package/dist-types/commands/QueryConversationsCommand.d.ts +13 -9
  85. package/dist-types/commands/QueryPresenceCommand.d.ts +12 -7
  86. package/dist-types/commands/QueryPresencesCommand.d.ts +11 -7
  87. package/dist-types/commands/UpdatePresenceLastSeenCommand.d.ts +11 -7
  88. package/dist-types/commands/index.d.ts +2 -2
  89. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  90. package/dist-types/endpoint/bdd.d.ts +2 -0
  91. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  92. package/dist-types/extensionConfiguration.d.ts +4 -3
  93. package/dist-types/index.d.ts +6 -1
  94. package/dist-types/models/WdaStreamServiceException.d.ts +1 -1
  95. package/dist-types/models/enums.d.ts +1088 -0
  96. package/dist-types/models/errors.d.ts +46 -0
  97. package/dist-types/models/models_0.d.ts +1111 -1206
  98. package/dist-types/models/models_1.d.ts +3 -982
  99. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  100. package/dist-types/runtimeConfig.d.ts +34 -15
  101. package/dist-types/runtimeConfig.native.d.ts +36 -17
  102. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  103. package/dist-types/runtimeExtensions.d.ts +1 -1
  104. package/dist-types/schemas/schemas_0.d.ts +333 -0
  105. package/package.json +14 -40
  106. package/dist-cjs/models/index.js +0 -5
  107. package/dist-cjs/protocols/Aws_restJson1.js +0 -1340
  108. package/dist-es/models/index.js +0 -2
  109. package/dist-es/protocols/Aws_restJson1.js +0 -1307
  110. package/dist-types/models/index.d.ts +0 -2
  111. 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 ConsumeEventCommandInput, type ConsumeEventCommandOutput } from "./commands/ConsumeEventCommand";
3
+ import { type DescribeEventCommandInput, type DescribeEventCommandOutput } from "./commands/DescribeEventCommand";
4
+ import { type GetConferenceIdCommandInput, type GetConferenceIdCommandOutput } from "./commands/GetConferenceIdCommand";
5
+ import { type GetOngoingCallAnnotationsCommandInput, type GetOngoingCallAnnotationsCommandOutput } from "./commands/GetOngoingCallAnnotationsCommand";
6
+ import { type GetOngoingCallCommandInput, type GetOngoingCallCommandOutput } from "./commands/GetOngoingCallCommand";
7
+ import { type GetOngoingCallTranscriptionCommandInput, type GetOngoingCallTranscriptionCommandOutput } from "./commands/GetOngoingCallTranscriptionCommand";
8
+ import { type GetOngoingChatAnnotationsCommandInput, type GetOngoingChatAnnotationsCommandOutput } from "./commands/GetOngoingChatAnnotationsCommand";
9
+ import { type GetOngoingConferenceAnnotationsCommandInput, type GetOngoingConferenceAnnotationsCommandOutput } from "./commands/GetOngoingConferenceAnnotationsCommand";
10
+ import { type GetOngoingConferenceCommandInput, type GetOngoingConferenceCommandOutput } from "./commands/GetOngoingConferenceCommand";
11
+ import { type GetOngoingConferenceTranscriptionCommandInput, type GetOngoingConferenceTranscriptionCommandOutput } from "./commands/GetOngoingConferenceTranscriptionCommand";
12
+ import { type ListServicesCommandInput, type ListServicesCommandOutput } from "./commands/ListServicesCommand";
13
+ import { type QueryConversationsCommandInput, type QueryConversationsCommandOutput } from "./commands/QueryConversationsCommand";
14
+ import { type QueryPresenceCommandInput, type QueryPresenceCommandOutput } from "./commands/QueryPresenceCommand";
15
+ import { type QueryPresencesCommandInput, type QueryPresencesCommandOutput } from "./commands/QueryPresencesCommand";
16
+ import { type UpdatePresenceLastSeenCommandInput, type UpdatePresenceLastSeenCommandOutput } from "./commands/UpdatePresenceLastSeenCommand";
1
17
  import { WdaStreamClient } from "./WdaStreamClient";
2
- import { ConsumeEventCommandInput, ConsumeEventCommandOutput } from "./commands/ConsumeEventCommand";
3
- import { DescribeEventCommandInput, DescribeEventCommandOutput } from "./commands/DescribeEventCommand";
4
- import { GetConferenceIdCommandInput, GetConferenceIdCommandOutput } from "./commands/GetConferenceIdCommand";
5
- import { GetOngoingCallAnnotationsCommandInput, GetOngoingCallAnnotationsCommandOutput } from "./commands/GetOngoingCallAnnotationsCommand";
6
- import { GetOngoingCallCommandInput, GetOngoingCallCommandOutput } from "./commands/GetOngoingCallCommand";
7
- import { GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput } from "./commands/GetOngoingCallTranscriptionCommand";
8
- import { GetOngoingChatAnnotationsCommandInput, GetOngoingChatAnnotationsCommandOutput } from "./commands/GetOngoingChatAnnotationsCommand";
9
- import { GetOngoingConferenceAnnotationsCommandInput, GetOngoingConferenceAnnotationsCommandOutput } from "./commands/GetOngoingConferenceAnnotationsCommand";
10
- import { GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput } from "./commands/GetOngoingConferenceCommand";
11
- import { GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput } from "./commands/GetOngoingConferenceTranscriptionCommand";
12
- import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
13
- import { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "./commands/QueryConversationsCommand";
14
- import { QueryPresenceCommandInput, QueryPresenceCommandOutput } from "./commands/QueryPresenceCommand";
15
- import { QueryPresencesCommandInput, QueryPresencesCommandOutput } from "./commands/QueryPresencesCommand";
16
- import { UpdatePresenceLastSeenCommandInput, UpdatePresenceLastSeenCommandOutput } from "./commands/UpdatePresenceLastSeenCommand";
17
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
18
18
  export interface WdaStream {
19
19
  /**
20
20
  * @see {@link ConsumeEventCommand}
@@ -1,25 +1,27 @@
1
- import { ConsumeEventCommandInput, ConsumeEventCommandOutput } from "./commands/ConsumeEventCommand";
2
- import { DescribeEventCommandInput, DescribeEventCommandOutput } from "./commands/DescribeEventCommand";
3
- import { GetConferenceIdCommandInput, GetConferenceIdCommandOutput } from "./commands/GetConferenceIdCommand";
4
- import { GetOngoingCallAnnotationsCommandInput, GetOngoingCallAnnotationsCommandOutput } from "./commands/GetOngoingCallAnnotationsCommand";
5
- import { GetOngoingCallCommandInput, GetOngoingCallCommandOutput } from "./commands/GetOngoingCallCommand";
6
- import { GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput } from "./commands/GetOngoingCallTranscriptionCommand";
7
- import { GetOngoingChatAnnotationsCommandInput, GetOngoingChatAnnotationsCommandOutput } from "./commands/GetOngoingChatAnnotationsCommand";
8
- import { GetOngoingConferenceAnnotationsCommandInput, GetOngoingConferenceAnnotationsCommandOutput } from "./commands/GetOngoingConferenceAnnotationsCommand";
9
- import { GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput } from "./commands/GetOngoingConferenceCommand";
10
- import { GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput } from "./commands/GetOngoingConferenceTranscriptionCommand";
11
- import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
12
- import { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "./commands/QueryConversationsCommand";
13
- import { QueryPresenceCommandInput, QueryPresenceCommandOutput } from "./commands/QueryPresenceCommand";
14
- import { QueryPresencesCommandInput, QueryPresencesCommandOutput } from "./commands/QueryPresencesCommand";
15
- import { UpdatePresenceLastSeenCommandInput, UpdatePresenceLastSeenCommandOutput } from "./commands/UpdatePresenceLastSeenCommand";
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 { ConsumeEventCommandInput, ConsumeEventCommandOutput } from "./commands/ConsumeEventCommand";
9
+ import type { DescribeEventCommandInput, DescribeEventCommandOutput } from "./commands/DescribeEventCommand";
10
+ import type { GetConferenceIdCommandInput, GetConferenceIdCommandOutput } from "./commands/GetConferenceIdCommand";
11
+ import type { GetOngoingCallAnnotationsCommandInput, GetOngoingCallAnnotationsCommandOutput } from "./commands/GetOngoingCallAnnotationsCommand";
12
+ import type { GetOngoingCallCommandInput, GetOngoingCallCommandOutput } from "./commands/GetOngoingCallCommand";
13
+ import type { GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput } from "./commands/GetOngoingCallTranscriptionCommand";
14
+ import type { GetOngoingChatAnnotationsCommandInput, GetOngoingChatAnnotationsCommandOutput } from "./commands/GetOngoingChatAnnotationsCommand";
15
+ import type { GetOngoingConferenceAnnotationsCommandInput, GetOngoingConferenceAnnotationsCommandOutput } from "./commands/GetOngoingConferenceAnnotationsCommand";
16
+ import type { GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput } from "./commands/GetOngoingConferenceCommand";
17
+ import type { GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput } from "./commands/GetOngoingConferenceTranscriptionCommand";
18
+ import type { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
19
+ import type { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "./commands/QueryConversationsCommand";
20
+ import type { QueryPresenceCommandInput, QueryPresenceCommandOutput } from "./commands/QueryPresenceCommand";
21
+ import type { QueryPresencesCommandInput, QueryPresencesCommandOutput } from "./commands/QueryPresencesCommand";
22
+ import type { UpdatePresenceLastSeenCommandInput, UpdatePresenceLastSeenCommandOutput } from "./commands/UpdatePresenceLastSeenCommand";
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 WdaStreamClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig;
142
+ export type WdaStreamClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
123
143
  /**
124
144
  * @public
125
145
  *
126
146
  * The configuration interface of WdaStreamClient class constructor that set the region, credentials and other options.
127
147
  */
128
148
  export interface WdaStreamClientConfig extends WdaStreamClientConfigType {
129
- env?: 'stage' | 'stable' | 'prod';
130
- token: TokenProvider;
131
149
  }
132
150
  /**
133
151
  * @public
134
152
  */
135
- export type WdaStreamClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig;
153
+ export type WdaStreamClientResolvedConfigType = __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 { WdaStreamHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface HttpAuthExtensionConfiguration {
7
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
8
+ httpAuthSchemes(): HttpAuthScheme[];
9
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: WdaStreamHttpAuthSchemeProvider): void;
10
+ httpAuthSchemeProvider(): WdaStreamHttpAuthSchemeProvider;
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: WdaStreamHttpAuthSchemeProvider;
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 { WdaStreamClientResolvedConfig } from "../WdaStreamClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface WdaStreamHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
7
+ }
8
+ /**
9
+ * @internal
10
+ */
11
+ export interface WdaStreamHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<WdaStreamClientResolvedConfig, HandlerExecutionContext, WdaStreamHttpAuthSchemeParameters, object> {
12
+ }
13
+ /**
14
+ * @internal
15
+ */
16
+ export declare const defaultWdaStreamHttpAuthSchemeParametersProvider: (config: WdaStreamClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<WdaStreamHttpAuthSchemeParameters>;
17
+ /**
18
+ * @internal
19
+ */
20
+ export interface WdaStreamHttpAuthSchemeProvider extends HttpAuthSchemeProvider<WdaStreamHttpAuthSchemeParameters> {
21
+ }
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const defaultWdaStreamHttpAuthSchemeProvider: WdaStreamHttpAuthSchemeProvider;
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?: WdaStreamHttpAuthSchemeProvider;
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: WdaStreamHttpAuthSchemeProvider;
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, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { ConsumeEventInput, ConsumeEventOutput } 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 { ConsumeEventInput, ConsumeEventOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ConsumeEventCommandInput extends ConsumeEventInput {
22
22
  export interface ConsumeEventCommandOutput extends ConsumeEventOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ConsumeEventCommand_base: {
25
- new (input: ConsumeEventCommandInput): import("@smithy/smithy-client").CommandImpl<ConsumeEventCommandInput, ConsumeEventCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: ConsumeEventCommandInput): import("@smithy/smithy-client").CommandImpl<ConsumeEventCommandInput, ConsumeEventCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ConsumeEventCommandInput): import("@smithy/core/client").CommandImpl<ConsumeEventCommandInput, ConsumeEventCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ConsumeEventCommandInput): import("@smithy/core/client").CommandImpl<ConsumeEventCommandInput, ConsumeEventCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Consumes and processes stream events for calls, conferences, chats, SMS, WhatsApp, and presence updates.
@@ -33,6 +35,8 @@ declare const ConsumeEventCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, ConsumeEventCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, ConsumeEventCommand } = require("@wildix/wda-stream-client"); // CommonJS import
38
+ * // import type { WdaStreamClientConfig } from "@wildix/wda-stream-client";
39
+ * const config = {}; // type is WdaStreamClientConfig
36
40
  * const client = new WdaStreamClient(config);
37
41
  * const input = { // ConsumeEventInput
38
42
  * event: { // ConsumeEventInputEvent Union: only one key present
@@ -1145,6 +1149,7 @@ declare const ConsumeEventCommand_base: {
1145
1149
  * message: "STRING_VALUE",
1146
1150
  * lastQueueCallEnd: Number("long"),
1147
1151
  * userExtension: "STRING_VALUE",
1152
+ * userLicense: "STRING_VALUE",
1148
1153
  * department: "STRING_VALUE",
1149
1154
  * name: "STRING_VALUE",
1150
1155
  * aclGroup: "STRING_VALUE",
@@ -1179,6 +1184,7 @@ declare const ConsumeEventCommand_base: {
1179
1184
  * message: "STRING_VALUE",
1180
1185
  * lastQueueCallEnd: Number("long"),
1181
1186
  * userExtension: "STRING_VALUE",
1187
+ * userLicense: "STRING_VALUE",
1182
1188
  * department: "STRING_VALUE",
1183
1189
  * name: "STRING_VALUE",
1184
1190
  * aclGroup: "STRING_VALUE",
@@ -1278,6 +1284,7 @@ declare const ConsumeEventCommand_base: {
1278
1284
  * message: "STRING_VALUE",
1279
1285
  * lastQueueCallEnd: Number("long"),
1280
1286
  * userExtension: "STRING_VALUE",
1287
+ * userLicense: "STRING_VALUE",
1281
1288
  * department: "STRING_VALUE",
1282
1289
  * name: "STRING_VALUE",
1283
1290
  * aclGroup: "STRING_VALUE",
@@ -1299,6 +1306,7 @@ declare const ConsumeEventCommand_base: {
1299
1306
  * message: "STRING_VALUE",
1300
1307
  * lastQueueCallEnd: Number("long"),
1301
1308
  * userExtension: "STRING_VALUE",
1309
+ * userLicense: "STRING_VALUE",
1302
1310
  * department: "STRING_VALUE",
1303
1311
  * name: "STRING_VALUE",
1304
1312
  * aclGroup: "STRING_VALUE",
@@ -1320,6 +1328,7 @@ declare const ConsumeEventCommand_base: {
1320
1328
  * message: "STRING_VALUE",
1321
1329
  * lastQueueCallEnd: Number("long"),
1322
1330
  * userExtension: "STRING_VALUE",
1331
+ * userLicense: "STRING_VALUE",
1323
1332
  * department: "STRING_VALUE",
1324
1333
  * name: "STRING_VALUE",
1325
1334
  * aclGroup: "STRING_VALUE",
@@ -1,8 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { DescribeEventInput } from "../models/models_0";
3
- import { DescribeEventOutput } from "../models/models_1";
4
- import { Command as $Command } from "@smithy/smithy-client";
5
- 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 { DescribeEventInput, DescribeEventOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -23,9 +22,11 @@ export interface DescribeEventCommandInput extends DescribeEventInput {
23
22
  export interface DescribeEventCommandOutput extends DescribeEventOutput, __MetadataBearer {
24
23
  }
25
24
  declare const DescribeEventCommand_base: {
26
- new (input: DescribeEventCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEventCommandInput, DescribeEventCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- new (...[input]: [] | [DescribeEventCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeEventCommandInput, DescribeEventCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: DescribeEventCommandInput): import("@smithy/core/client").CommandImpl<DescribeEventCommandInput, DescribeEventCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [DescribeEventCommandInput]): import("@smithy/core/client").CommandImpl<DescribeEventCommandInput, DescribeEventCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
29
30
  };
30
31
  /**
31
32
  * @public
@@ -35,6 +36,8 @@ declare const DescribeEventCommand_base: {
35
36
  * ```javascript
36
37
  * import { WdaStreamClient, DescribeEventCommand } from "@wildix/wda-stream-client"; // ES Modules import
37
38
  * // const { WdaStreamClient, DescribeEventCommand } = require("@wildix/wda-stream-client"); // CommonJS import
39
+ * // import type { WdaStreamClientConfig } from "@wildix/wda-stream-client";
40
+ * const config = {}; // type is WdaStreamClientConfig
38
41
  * const client = new WdaStreamClient(config);
39
42
  * const input = { // DescribeEventInput
40
43
  * SmsInboundEvent: { // SmsInboundEvent
@@ -156,7 +159,7 @@ declare const DescribeEventCommand_base: {
156
159
  * // groupId: "STRING_VALUE",
157
160
  * // groupName: "STRING_VALUE",
158
161
  * // userAgent: "STRING_VALUE",
159
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
162
+ * // 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",
160
163
  * // role: "CLIENT" || "AGENT", // required
161
164
  * // license: "STRING_VALUE",
162
165
  * // sipCallId: "STRING_VALUE",
@@ -176,7 +179,7 @@ declare const DescribeEventCommand_base: {
176
179
  * // groupId: "STRING_VALUE",
177
180
  * // groupName: "STRING_VALUE",
178
181
  * // userAgent: "STRING_VALUE",
179
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
182
+ * // 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",
180
183
  * // role: "CLIENT" || "AGENT", // required
181
184
  * // license: "STRING_VALUE",
182
185
  * // sipCallId: "STRING_VALUE",
@@ -403,7 +406,7 @@ declare const DescribeEventCommand_base: {
403
406
  * // groupId: "STRING_VALUE",
404
407
  * // groupName: "STRING_VALUE",
405
408
  * // userAgent: "STRING_VALUE",
406
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
409
+ * // 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",
407
410
  * // role: "CLIENT" || "AGENT", // required
408
411
  * // license: "STRING_VALUE",
409
412
  * // sipCallId: "STRING_VALUE",
@@ -441,7 +444,7 @@ declare const DescribeEventCommand_base: {
441
444
  * // groupId: "STRING_VALUE",
442
445
  * // groupName: "STRING_VALUE",
443
446
  * // userAgent: "STRING_VALUE",
444
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
447
+ * // 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",
445
448
  * // role: "CLIENT" || "AGENT", // required
446
449
  * // license: "STRING_VALUE",
447
450
  * // sipCallId: "STRING_VALUE",
@@ -461,7 +464,7 @@ declare const DescribeEventCommand_base: {
461
464
  * // groupId: "STRING_VALUE",
462
465
  * // groupName: "STRING_VALUE",
463
466
  * // userAgent: "STRING_VALUE",
464
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
467
+ * // 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",
465
468
  * // role: "CLIENT" || "AGENT", // required
466
469
  * // license: "STRING_VALUE",
467
470
  * // sipCallId: "STRING_VALUE",
@@ -3135,7 +3138,7 @@ declare const DescribeEventCommand_base: {
3135
3138
  * // groupId: "STRING_VALUE",
3136
3139
  * // groupName: "STRING_VALUE",
3137
3140
  * // userAgent: "STRING_VALUE",
3138
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
3141
+ * // 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",
3139
3142
  * // role: "STRING_VALUE", // required
3140
3143
  * // license: "STRING_VALUE",
3141
3144
  * // },
@@ -3151,7 +3154,7 @@ declare const DescribeEventCommand_base: {
3151
3154
  * // groupId: "STRING_VALUE",
3152
3155
  * // groupName: "STRING_VALUE",
3153
3156
  * // userAgent: "STRING_VALUE",
3154
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
3157
+ * // 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",
3155
3158
  * // role: "STRING_VALUE", // required
3156
3159
  * // license: "STRING_VALUE",
3157
3160
  * // },
@@ -3188,7 +3191,7 @@ declare const DescribeEventCommand_base: {
3188
3191
  * // groupId: "STRING_VALUE",
3189
3192
  * // groupName: "STRING_VALUE",
3190
3193
  * // userAgent: "STRING_VALUE",
3191
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
3194
+ * // 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",
3192
3195
  * // role: "STRING_VALUE", // required
3193
3196
  * // license: "STRING_VALUE",
3194
3197
  * // },
@@ -3204,7 +3207,7 @@ declare const DescribeEventCommand_base: {
3204
3207
  * // groupId: "STRING_VALUE",
3205
3208
  * // groupName: "STRING_VALUE",
3206
3209
  * // userAgent: "STRING_VALUE",
3207
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
3210
+ * // 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",
3208
3211
  * // role: "STRING_VALUE", // required
3209
3212
  * // license: "STRING_VALUE",
3210
3213
  * // },
@@ -3241,7 +3244,7 @@ declare const DescribeEventCommand_base: {
3241
3244
  * // groupId: "STRING_VALUE",
3242
3245
  * // groupName: "STRING_VALUE",
3243
3246
  * // userAgent: "STRING_VALUE",
3244
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
3247
+ * // 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",
3245
3248
  * // role: "STRING_VALUE", // required
3246
3249
  * // license: "STRING_VALUE",
3247
3250
  * // },
@@ -3299,6 +3302,7 @@ declare const DescribeEventCommand_base: {
3299
3302
  * // message: "STRING_VALUE",
3300
3303
  * // lastQueueCallEnd: Number("long"),
3301
3304
  * // userExtension: "STRING_VALUE",
3305
+ * // userLicense: "STRING_VALUE",
3302
3306
  * // department: "STRING_VALUE",
3303
3307
  * // name: "STRING_VALUE",
3304
3308
  * // aclGroup: "STRING_VALUE",
@@ -3338,6 +3342,7 @@ declare const DescribeEventCommand_base: {
3338
3342
  * // message: "STRING_VALUE",
3339
3343
  * // lastQueueCallEnd: Number("long"),
3340
3344
  * // userExtension: "STRING_VALUE",
3345
+ * // userLicense: "STRING_VALUE",
3341
3346
  * // department: "STRING_VALUE",
3342
3347
  * // name: "STRING_VALUE",
3343
3348
  * // aclGroup: "STRING_VALUE",
@@ -3416,6 +3421,7 @@ declare const DescribeEventCommand_base: {
3416
3421
  * // message: "STRING_VALUE",
3417
3422
  * // lastQueueCallEnd: Number("long"),
3418
3423
  * // userExtension: "STRING_VALUE",
3424
+ * // userLicense: "STRING_VALUE",
3419
3425
  * // department: "STRING_VALUE",
3420
3426
  * // name: "STRING_VALUE",
3421
3427
  * // aclGroup: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { GetConferenceIdInput, GetConferenceIdOutput } from "../models/models_1";
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 { GetConferenceIdInput, GetConferenceIdOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface GetConferenceIdCommandInput extends GetConferenceIdInput {
22
22
  export interface GetConferenceIdCommandOutput extends GetConferenceIdOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetConferenceIdCommand_base: {
25
- new (input: GetConferenceIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetConferenceIdCommandInput, GetConferenceIdCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetConferenceIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetConferenceIdCommandInput, GetConferenceIdCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetConferenceIdCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceIdCommandInput, GetConferenceIdCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetConferenceIdCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceIdCommandInput, GetConferenceIdCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves ID for ongoing conference using a room token.
@@ -33,6 +35,8 @@ declare const GetConferenceIdCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, GetConferenceIdCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, GetConferenceIdCommand } = require("@wildix/wda-stream-client"); // CommonJS import
38
+ * // import type { WdaStreamClientConfig } from "@wildix/wda-stream-client";
39
+ * const config = {}; // type is WdaStreamClientConfig
36
40
  * const client = new WdaStreamClient(config);
37
41
  * const input = { // GetConferenceIdInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { GetOngoingCallAnnotationsInput, GetOngoingCallAnnotationsOutput } from "../models/models_1";
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 { GetOngoingCallAnnotationsInput, GetOngoingCallAnnotationsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface GetOngoingCallAnnotationsCommandInput extends GetOngoingCallAnn
22
22
  export interface GetOngoingCallAnnotationsCommandOutput extends GetOngoingCallAnnotationsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetOngoingCallAnnotationsCommand_base: {
25
- new (input: GetOngoingCallAnnotationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingCallAnnotationsCommandInput, GetOngoingCallAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetOngoingCallAnnotationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingCallAnnotationsCommandInput, GetOngoingCallAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetOngoingCallAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingCallAnnotationsCommandInput, GetOngoingCallAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetOngoingCallAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingCallAnnotationsCommandInput, GetOngoingCallAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves information and annotations for ongoing call.
@@ -33,6 +35,8 @@ declare const GetOngoingCallAnnotationsCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, GetOngoingCallAnnotationsCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, GetOngoingCallAnnotationsCommand } = require("@wildix/wda-stream-client"); // CommonJS import
38
+ * // import type { WdaStreamClientConfig } from "@wildix/wda-stream-client";
39
+ * const config = {}; // type is WdaStreamClientConfig
36
40
  * const client = new WdaStreamClient(config);
37
41
  * const input = { // GetOngoingCallAnnotationsInput
38
42
  * company: "STRING_VALUE",
@@ -65,7 +69,7 @@ declare const GetOngoingCallAnnotationsCommand_base: {
65
69
  * // groupId: "STRING_VALUE",
66
70
  * // groupName: "STRING_VALUE",
67
71
  * // userAgent: "STRING_VALUE",
68
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
72
+ * // 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",
69
73
  * // role: "CLIENT" || "AGENT", // required
70
74
  * // license: "STRING_VALUE",
71
75
  * // sipCallId: "STRING_VALUE",
@@ -85,7 +89,7 @@ declare const GetOngoingCallAnnotationsCommand_base: {
85
89
  * // groupId: "STRING_VALUE",
86
90
  * // groupName: "STRING_VALUE",
87
91
  * // userAgent: "STRING_VALUE",
88
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
92
+ * // 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",
89
93
  * // role: "CLIENT" || "AGENT", // required
90
94
  * // license: "STRING_VALUE",
91
95
  * // sipCallId: "STRING_VALUE",