@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,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { GetOngoingCallInput, GetOngoingCallOutput } 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 { GetOngoingCallInput, GetOngoingCallOutput } 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 GetOngoingCallCommandInput extends GetOngoingCallInput {
22
22
  export interface GetOngoingCallCommandOutput extends GetOngoingCallOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetOngoingCallCommand_base: {
25
- new (input: GetOngoingCallCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingCallCommandInput, GetOngoingCallCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetOngoingCallCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingCallCommandInput, GetOngoingCallCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetOngoingCallCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingCallCommandInput, GetOngoingCallCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetOngoingCallCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingCallCommandInput, GetOngoingCallCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves information for ongoing call.
@@ -33,6 +35,8 @@ declare const GetOngoingCallCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, GetOngoingCallCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, GetOngoingCallCommand } = 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 = { // GetOngoingCallInput
38
42
  * company: "STRING_VALUE",
@@ -65,7 +69,7 @@ declare const GetOngoingCallCommand_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 GetOngoingCallCommand_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",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { GetOngoingCallTranscriptionInput, GetOngoingCallTranscriptionOutput } 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 { GetOngoingCallTranscriptionInput, GetOngoingCallTranscriptionOutput } 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 GetOngoingCallTranscriptionCommandInput extends GetOngoingCallT
22
22
  export interface GetOngoingCallTranscriptionCommandOutput extends GetOngoingCallTranscriptionOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetOngoingCallTranscriptionCommand_base: {
25
- new (input: GetOngoingCallTranscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetOngoingCallTranscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetOngoingCallTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetOngoingCallTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves information and transcription for ongoing call.
@@ -33,6 +35,8 @@ declare const GetOngoingCallTranscriptionCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, GetOngoingCallTranscriptionCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, GetOngoingCallTranscriptionCommand } = 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 = { // GetOngoingCallTranscriptionInput
38
42
  * company: "STRING_VALUE",
@@ -65,7 +69,7 @@ declare const GetOngoingCallTranscriptionCommand_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 GetOngoingCallTranscriptionCommand_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",
@@ -255,7 +259,7 @@ declare const GetOngoingCallTranscriptionCommand_base: {
255
259
  * // groupId: "STRING_VALUE",
256
260
  * // groupName: "STRING_VALUE",
257
261
  * // userAgent: "STRING_VALUE",
258
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
262
+ * // 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",
259
263
  * // role: "CLIENT" || "AGENT", // required
260
264
  * // license: "STRING_VALUE",
261
265
  * // sipCallId: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { GetOngoingChatAnnotationsInput, GetOngoingChatAnnotationsOutput } 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 { GetOngoingChatAnnotationsInput, GetOngoingChatAnnotationsOutput } 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 GetOngoingChatAnnotationsCommandInput extends GetOngoingChatAnn
22
22
  export interface GetOngoingChatAnnotationsCommandOutput extends GetOngoingChatAnnotationsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetOngoingChatAnnotationsCommand_base: {
25
- new (input: GetOngoingChatAnnotationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingChatAnnotationsCommandInput, GetOngoingChatAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetOngoingChatAnnotationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingChatAnnotationsCommandInput, GetOngoingChatAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetOngoingChatAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingChatAnnotationsCommandInput, GetOngoingChatAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetOngoingChatAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingChatAnnotationsCommandInput, GetOngoingChatAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves information and annotations for ongoing chat.
@@ -33,6 +35,8 @@ declare const GetOngoingChatAnnotationsCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, GetOngoingChatAnnotationsCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, GetOngoingChatAnnotationsCommand } = 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 = { // GetOngoingChatAnnotationsInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { GetOngoingConferenceAnnotationsInput, GetOngoingConferenceAnnotationsOutput } 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 { GetOngoingConferenceAnnotationsInput, GetOngoingConferenceAnnotationsOutput } 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 GetOngoingConferenceAnnotationsCommandInput extends GetOngoingC
22
22
  export interface GetOngoingConferenceAnnotationsCommandOutput extends GetOngoingConferenceAnnotationsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetOngoingConferenceAnnotationsCommand_base: {
25
- new (input: GetOngoingConferenceAnnotationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingConferenceAnnotationsCommandInput, GetOngoingConferenceAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetOngoingConferenceAnnotationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingConferenceAnnotationsCommandInput, GetOngoingConferenceAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetOngoingConferenceAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingConferenceAnnotationsCommandInput, GetOngoingConferenceAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetOngoingConferenceAnnotationsCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingConferenceAnnotationsCommandInput, GetOngoingConferenceAnnotationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves information and annotations for ongoing conference.
@@ -33,6 +35,8 @@ declare const GetOngoingConferenceAnnotationsCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, GetOngoingConferenceAnnotationsCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, GetOngoingConferenceAnnotationsCommand } = 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 = { // GetOngoingConferenceAnnotationsInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { GetOngoingConferenceInput, GetOngoingConferenceOutput } 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 { GetOngoingConferenceInput, GetOngoingConferenceOutput } 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 GetOngoingConferenceCommandInput extends GetOngoingConferenceIn
22
22
  export interface GetOngoingConferenceCommandOutput extends GetOngoingConferenceOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetOngoingConferenceCommand_base: {
25
- new (input: GetOngoingConferenceCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetOngoingConferenceCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetOngoingConferenceCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetOngoingConferenceCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves information for ongoing conference.
@@ -33,6 +35,8 @@ declare const GetOngoingConferenceCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, GetOngoingConferenceCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, GetOngoingConferenceCommand } = 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 = { // GetOngoingConferenceInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { GetOngoingConferenceTranscriptionInput, GetOngoingConferenceTranscriptionOutput } 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 { GetOngoingConferenceTranscriptionInput, GetOngoingConferenceTranscriptionOutput } 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 GetOngoingConferenceTranscriptionCommandInput extends GetOngoin
22
22
  export interface GetOngoingConferenceTranscriptionCommandOutput extends GetOngoingConferenceTranscriptionOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetOngoingConferenceTranscriptionCommand_base: {
25
- new (input: GetOngoingConferenceTranscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetOngoingConferenceTranscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetOngoingConferenceTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetOngoingConferenceTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves information and transcription for ongoing conference.
@@ -33,6 +35,8 @@ declare const GetOngoingConferenceTranscriptionCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, GetOngoingConferenceTranscriptionCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, GetOngoingConferenceTranscriptionCommand } = 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 = { // GetOngoingConferenceTranscriptionInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { ListServicesInput, ListServicesOutput } 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 { ListServicesInput, ListServicesOutput } 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 ListServicesCommandInput extends ListServicesInput {
22
22
  export interface ListServicesCommandOutput extends ListServicesOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListServicesCommand_base: {
25
- new (input: ListServicesCommandInput): import("@smithy/smithy-client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListServicesCommandInput): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of active services of the company.
@@ -33,6 +35,8 @@ declare const ListServicesCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, ListServicesCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, ListServicesCommand } = 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 = { // ListServicesInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { QueryConversationsInput, QueryConversationsOutput } 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 { QueryConversationsInput, QueryConversationsOutput } 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 QueryConversationsCommandInput extends QueryConversationsInput
22
22
  export interface QueryConversationsCommandOutput extends QueryConversationsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const QueryConversationsCommand_base: {
25
- new (input: QueryConversationsCommandInput): import("@smithy/smithy-client").CommandImpl<QueryConversationsCommandInput, QueryConversationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [QueryConversationsCommandInput]): import("@smithy/smithy-client").CommandImpl<QueryConversationsCommandInput, QueryConversationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: QueryConversationsCommandInput): import("@smithy/core/client").CommandImpl<QueryConversationsCommandInput, QueryConversationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [QueryConversationsCommandInput]): import("@smithy/core/client").CommandImpl<QueryConversationsCommandInput, QueryConversationsCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves ongoing conversations. Once the conversation ends the item would be dissapeared from the list.
@@ -33,6 +35,8 @@ declare const QueryConversationsCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, QueryConversationsCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, QueryConversationsCommand } = 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 = { // QueryConversationsInput
38
42
  * company: "STRING_VALUE",
@@ -82,7 +86,7 @@ declare const QueryConversationsCommand_base: {
82
86
  * // groupId: "STRING_VALUE",
83
87
  * // groupName: "STRING_VALUE",
84
88
  * // userAgent: "STRING_VALUE",
85
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
89
+ * // 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",
86
90
  * // role: "CLIENT" || "AGENT", // required
87
91
  * // license: "STRING_VALUE",
88
92
  * // sipCallId: "STRING_VALUE",
@@ -102,7 +106,7 @@ declare const QueryConversationsCommand_base: {
102
106
  * // groupId: "STRING_VALUE",
103
107
  * // groupName: "STRING_VALUE",
104
108
  * // userAgent: "STRING_VALUE",
105
- * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
109
+ * // 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",
106
110
  * // role: "CLIENT" || "AGENT", // required
107
111
  * // license: "STRING_VALUE",
108
112
  * // sipCallId: "STRING_VALUE",
@@ -1,7 +1,8 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { QueryPresenceInput, QueryPresenceOutput } 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 { QueryPresenceInput } from "../models/models_0";
4
+ import type { QueryPresenceOutput } from "../models/models_1";
5
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -22,9 +23,11 @@ export interface QueryPresenceCommandInput extends QueryPresenceInput {
22
23
  export interface QueryPresenceCommandOutput extends QueryPresenceOutput, __MetadataBearer {
23
24
  }
24
25
  declare const QueryPresenceCommand_base: {
25
- new (input: QueryPresenceCommandInput): import("@smithy/smithy-client").CommandImpl<QueryPresenceCommandInput, QueryPresenceCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: QueryPresenceCommandInput): import("@smithy/smithy-client").CommandImpl<QueryPresenceCommandInput, QueryPresenceCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ new (input: QueryPresenceCommandInput): import("@smithy/core/client").CommandImpl<QueryPresenceCommandInput, QueryPresenceCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ new (input: QueryPresenceCommandInput): import("@smithy/core/client").CommandImpl<QueryPresenceCommandInput, QueryPresenceCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
+ getEndpointParameterInstructions(): {
29
+ [x: string]: unknown;
30
+ };
28
31
  };
29
32
  /**
30
33
  * Retrieves the presence of a single user using specified query. If no presence information found for the query a PresenceNotAvailableException will be thrown.
@@ -33,6 +36,8 @@ declare const QueryPresenceCommand_base: {
33
36
  * ```javascript
34
37
  * import { WdaStreamClient, QueryPresenceCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
38
  * // const { WdaStreamClient, QueryPresenceCommand } = require("@wildix/wda-stream-client"); // CommonJS import
39
+ * // import type { WdaStreamClientConfig } from "@wildix/wda-stream-client";
40
+ * const config = {}; // type is WdaStreamClientConfig
36
41
  * const client = new WdaStreamClient(config);
37
42
  * const input = { // QueryPresenceInput
38
43
  * filter: { // PresenceQueryFilter
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { QueryPresencesInput, QueryPresencesOutput } 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 { QueryPresencesInput, QueryPresencesOutput } from "../models/models_1";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface QueryPresencesCommandInput extends QueryPresencesInput {
22
22
  export interface QueryPresencesCommandOutput extends QueryPresencesOutput, __MetadataBearer {
23
23
  }
24
24
  declare const QueryPresencesCommand_base: {
25
- new (input: QueryPresencesCommandInput): import("@smithy/smithy-client").CommandImpl<QueryPresencesCommandInput, QueryPresencesCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: QueryPresencesCommandInput): import("@smithy/smithy-client").CommandImpl<QueryPresencesCommandInput, QueryPresencesCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: QueryPresencesCommandInput): import("@smithy/core/client").CommandImpl<QueryPresencesCommandInput, QueryPresencesCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: QueryPresencesCommandInput): import("@smithy/core/client").CommandImpl<QueryPresencesCommandInput, QueryPresencesCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves users presences
@@ -33,6 +35,8 @@ declare const QueryPresencesCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, QueryPresencesCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, QueryPresencesCommand } = 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 = { // QueryPresencesInput
38
42
  * filter: [ // PresenceQueryFilterList // required
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
2
- import { UpdatePresenceLastSeenInput, UpdatePresenceLastSeenOutput } 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 { UpdatePresenceLastSeenInput, UpdatePresenceLastSeenOutput } from "../models/models_1";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface UpdatePresenceLastSeenCommandInput extends UpdatePresenceLastSe
22
22
  export interface UpdatePresenceLastSeenCommandOutput extends UpdatePresenceLastSeenOutput, __MetadataBearer {
23
23
  }
24
24
  declare const UpdatePresenceLastSeenCommand_base: {
25
- new (input: UpdatePresenceLastSeenCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePresenceLastSeenCommandInput, UpdatePresenceLastSeenCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [UpdatePresenceLastSeenCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdatePresenceLastSeenCommandInput, UpdatePresenceLastSeenCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: UpdatePresenceLastSeenCommandInput): import("@smithy/core/client").CommandImpl<UpdatePresenceLastSeenCommandInput, UpdatePresenceLastSeenCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [UpdatePresenceLastSeenCommandInput]): import("@smithy/core/client").CommandImpl<UpdatePresenceLastSeenCommandInput, UpdatePresenceLastSeenCommandOutput, WdaStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Updates the user's last seen presence information.
@@ -33,6 +35,8 @@ declare const UpdatePresenceLastSeenCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaStreamClient, UpdatePresenceLastSeenCommand } from "@wildix/wda-stream-client"; // ES Modules import
35
37
  * // const { WdaStreamClient, UpdatePresenceLastSeenCommand } = 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 = { // UpdatePresenceLastSeenInput
38
42
  * userId: "STRING_VALUE",
@@ -1,12 +1,12 @@
1
1
  export * from "./ConsumeEventCommand";
2
2
  export * from "./DescribeEventCommand";
3
3
  export * from "./GetConferenceIdCommand";
4
- export * from "./GetOngoingCallCommand";
5
4
  export * from "./GetOngoingCallAnnotationsCommand";
5
+ export * from "./GetOngoingCallCommand";
6
6
  export * from "./GetOngoingCallTranscriptionCommand";
7
7
  export * from "./GetOngoingChatAnnotationsCommand";
8
- export * from "./GetOngoingConferenceCommand";
9
8
  export * from "./GetOngoingConferenceAnnotationsCommand";
9
+ export * from "./GetOngoingConferenceCommand";
10
10
  export * from "./GetOngoingConferenceTranscriptionCommand";
11
11
  export * from "./ListServicesCommand";
12
12
  export * from "./QueryConversationsCommand";
@@ -0,0 +1,41 @@
1
+ import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ clientContextParams?: {
7
+ env?: string | undefined | Provider<string | undefined>;
8
+ };
9
+ env?: string | undefined | Provider<string | undefined>;
10
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
11
+ }
12
+ /**
13
+ * @public
14
+ */
15
+ export type ClientResolvedEndpointParameters = Omit<ClientInputEndpointParameters, "endpoint"> & {
16
+ defaultSigningName: string;
17
+ };
18
+ /**
19
+ * @internal
20
+ */
21
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const commonParams: {
26
+ readonly env: {
27
+ readonly type: "clientContextParams";
28
+ readonly name: "env";
29
+ };
30
+ readonly endpoint: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "endpoint";
33
+ };
34
+ };
35
+ /**
36
+ * @internal
37
+ */
38
+ export interface EndpointParameters extends __EndpointParameters {
39
+ env?: string | undefined;
40
+ endpoint?: string | undefined;
41
+ }
@@ -0,0 +1,2 @@
1
+ import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
2
+ export declare const bdd: BinaryDecisionDiagram;
@@ -0,0 +1,8 @@
1
+ import type { EndpointV2, Logger } from "@smithy/types";
2
+ import type { EndpointParameters } from "./EndpointParameters";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
7
+ logger?: Logger;
8
+ }) => EndpointV2;
@@ -1,7 +1,8 @@
1
- import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
2
- import { DefaultExtensionConfiguration } from "@smithy/types";
1
+ import type { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
2
+ import type { DefaultExtensionConfiguration } from "@smithy/types";
3
+ import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
3
4
  /**
4
5
  * @internal
5
6
  */
6
- export interface WdaStreamExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration {
7
+ export interface WdaStreamExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, HttpAuthExtensionConfiguration {
7
8
  }
@@ -1,7 +1,12 @@
1
1
  export * from "./WdaStreamClient";
2
2
  export * from "./WdaStream";
3
+ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export type { RuntimeExtension } from "./runtimeExtensions";
4
5
  export type { WdaStreamExtensionConfiguration } from "./extensionConfiguration";
5
6
  export * from "./commands";
6
- export * from "./models";
7
+ export * from "./schemas/schemas_0";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
11
+ export * from "./models/models_1";
7
12
  export { WdaStreamServiceException } from "./models/WdaStreamServiceException";
@@ -1,4 +1,4 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
1
+ import { type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException } from "@smithy/core/client";
2
2
  export type { __ServiceExceptionOptions };
3
3
  export { __ServiceException };
4
4
  /**