@wildix/wda-history-client 1.2.29 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/dist-cjs/WdaHistory.js +3 -3
  2. package/dist-cjs/WdaHistoryClient.js +34 -26
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/GetCallAnnotationsCommand.js +10 -11
  6. package/dist-cjs/commands/GetCallCommand.js +10 -11
  7. package/dist-cjs/commands/GetCallTranscriptionCommand.js +10 -11
  8. package/dist-cjs/commands/GetCallTranscriptionTextCommand.js +10 -11
  9. package/dist-cjs/commands/GetChatAnnotationsCommand.js +10 -11
  10. package/dist-cjs/commands/GetChatCommand.js +10 -11
  11. package/dist-cjs/commands/GetChatTranscriptionCommand.js +10 -11
  12. package/dist-cjs/commands/GetChatTranscriptionTextCommand.js +10 -11
  13. package/dist-cjs/commands/GetConferenceAnnotationsCommand.js +10 -11
  14. package/dist-cjs/commands/GetConferenceCommand.js +10 -11
  15. package/dist-cjs/commands/GetConferenceTranscriptionCommand.js +10 -11
  16. package/dist-cjs/commands/GetConferenceTranscriptionTextCommand.js +10 -11
  17. package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
  18. package/dist-cjs/commands/QueryUserCallsCommand.js +10 -11
  19. package/dist-cjs/commands/UpdateCallCommand.js +10 -11
  20. package/dist-cjs/commands/index.js +3 -3
  21. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  22. package/dist-cjs/endpoint/bdd.js +25 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  24. package/dist-cjs/index.js +4 -1
  25. package/dist-cjs/models/WdaHistoryServiceException.js +3 -3
  26. package/dist-cjs/models/enums.js +204 -0
  27. package/dist-cjs/models/errors.js +147 -0
  28. package/dist-cjs/models/models_0.js +0 -413
  29. package/dist-cjs/runtimeConfig.browser.js +11 -11
  30. package/dist-cjs/runtimeConfig.js +22 -18
  31. package/dist-cjs/runtimeConfig.shared.js +30 -10
  32. package/dist-cjs/runtimeExtensions.js +6 -5
  33. package/dist-cjs/schemas/schemas_0.js +1047 -0
  34. package/dist-es/WdaHistory.js +4 -4
  35. package/dist-es/WdaHistoryClient.js +30 -22
  36. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  37. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  38. package/dist-es/commands/GetCallAnnotationsCommand.js +9 -10
  39. package/dist-es/commands/GetCallCommand.js +9 -10
  40. package/dist-es/commands/GetCallTranscriptionCommand.js +9 -10
  41. package/dist-es/commands/GetCallTranscriptionTextCommand.js +9 -10
  42. package/dist-es/commands/GetChatAnnotationsCommand.js +9 -10
  43. package/dist-es/commands/GetChatCommand.js +9 -10
  44. package/dist-es/commands/GetChatTranscriptionCommand.js +9 -10
  45. package/dist-es/commands/GetChatTranscriptionTextCommand.js +9 -10
  46. package/dist-es/commands/GetConferenceAnnotationsCommand.js +9 -10
  47. package/dist-es/commands/GetConferenceCommand.js +9 -10
  48. package/dist-es/commands/GetConferenceTranscriptionCommand.js +9 -10
  49. package/dist-es/commands/GetConferenceTranscriptionTextCommand.js +9 -10
  50. package/dist-es/commands/QueryConversationsCommand.js +9 -10
  51. package/dist-es/commands/QueryUserCallsCommand.js +9 -10
  52. package/dist-es/commands/UpdateCallCommand.js +9 -10
  53. package/dist-es/commands/index.js +3 -3
  54. package/dist-es/endpoint/EndpointParameters.js +12 -0
  55. package/dist-es/endpoint/bdd.js +22 -0
  56. package/dist-es/endpoint/endpointResolver.js +12 -0
  57. package/dist-es/index.js +4 -1
  58. package/dist-es/models/WdaHistoryServiceException.js +1 -1
  59. package/dist-es/models/enums.js +201 -0
  60. package/dist-es/models/errors.js +133 -0
  61. package/dist-es/models/models_0.js +1 -400
  62. package/dist-es/runtimeConfig.browser.js +7 -7
  63. package/dist-es/runtimeConfig.js +17 -13
  64. package/dist-es/runtimeConfig.shared.js +24 -4
  65. package/dist-es/runtimeExtensions.js +6 -5
  66. package/dist-es/schemas/schemas_0.js +1042 -0
  67. package/dist-types/WdaHistory.d.ts +16 -16
  68. package/dist-types/WdaHistoryClient.d.ts +45 -27
  69. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  70. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  71. package/dist-types/commands/GetCallAnnotationsCommand.d.ts +11 -7
  72. package/dist-types/commands/GetCallCommand.d.ts +11 -7
  73. package/dist-types/commands/GetCallTranscriptionCommand.d.ts +11 -7
  74. package/dist-types/commands/GetCallTranscriptionTextCommand.d.ts +11 -7
  75. package/dist-types/commands/GetChatAnnotationsCommand.d.ts +11 -7
  76. package/dist-types/commands/GetChatCommand.d.ts +11 -7
  77. package/dist-types/commands/GetChatTranscriptionCommand.d.ts +11 -7
  78. package/dist-types/commands/GetChatTranscriptionTextCommand.d.ts +11 -7
  79. package/dist-types/commands/GetConferenceAnnotationsCommand.d.ts +11 -7
  80. package/dist-types/commands/GetConferenceCommand.d.ts +11 -7
  81. package/dist-types/commands/GetConferenceTranscriptionCommand.d.ts +11 -7
  82. package/dist-types/commands/GetConferenceTranscriptionTextCommand.d.ts +11 -7
  83. package/dist-types/commands/QueryConversationsCommand.d.ts +11 -7
  84. package/dist-types/commands/QueryUserCallsCommand.d.ts +11 -7
  85. package/dist-types/commands/UpdateCallCommand.d.ts +11 -7
  86. package/dist-types/commands/index.d.ts +3 -3
  87. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  88. package/dist-types/endpoint/bdd.d.ts +2 -0
  89. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  90. package/dist-types/extensionConfiguration.d.ts +4 -3
  91. package/dist-types/index.d.ts +5 -1
  92. package/dist-types/models/WdaHistoryServiceException.d.ts +1 -1
  93. package/dist-types/models/enums.d.ts +505 -0
  94. package/dist-types/models/errors.d.ts +123 -0
  95. package/dist-types/models/models_0.d.ts +83 -692
  96. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  97. package/dist-types/runtimeConfig.d.ts +34 -15
  98. package/dist-types/runtimeConfig.native.d.ts +36 -17
  99. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  100. package/dist-types/runtimeExtensions.d.ts +1 -1
  101. package/dist-types/schemas/schemas_0.d.ts +127 -0
  102. package/package.json +14 -40
  103. package/dist-cjs/models/index.js +0 -4
  104. package/dist-cjs/protocols/Aws_restJson1.js +0 -868
  105. package/dist-es/models/index.js +0 -1
  106. package/dist-es/protocols/Aws_restJson1.js +0 -835
  107. package/dist-types/models/index.d.ts +0 -1
  108. package/dist-types/protocols/Aws_restJson1.d.ts +0 -137
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetConferenceInput, GetConferenceOutput } 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 { GetConferenceInput, GetConferenceOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface GetConferenceCommandInput extends GetConferenceInput {
22
22
  export interface GetConferenceCommandOutput extends GetConferenceOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetConferenceCommand_base: {
25
- new (input: GetConferenceCommandInput): import("@smithy/smithy-client").CommandImpl<GetConferenceCommandInput, GetConferenceCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetConferenceCommandInput): import("@smithy/smithy-client").CommandImpl<GetConferenceCommandInput, GetConferenceCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetConferenceCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceCommandInput, GetConferenceCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetConferenceCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceCommandInput, GetConferenceCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Gets a conference by conferenceId.
@@ -33,6 +35,8 @@ declare const GetConferenceCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaHistoryClient, GetConferenceCommand } from "@wildix/wda-history-client"; // ES Modules import
35
37
  * // const { WdaHistoryClient, GetConferenceCommand } = require("@wildix/wda-history-client"); // CommonJS import
38
+ * // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
39
+ * const config = {}; // type is WdaHistoryClientConfig
36
40
  * const client = new WdaHistoryClient(config);
37
41
  * const input = { // GetConferenceInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetConferenceTranscriptionInput, GetConferenceTranscriptionOutput } 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 { GetConferenceTranscriptionInput, GetConferenceTranscriptionOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface GetConferenceTranscriptionCommandInput extends GetConferenceTra
22
22
  export interface GetConferenceTranscriptionCommandOutput extends GetConferenceTranscriptionOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetConferenceTranscriptionCommand_base: {
25
- new (input: GetConferenceTranscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetConferenceTranscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetConferenceTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetConferenceTranscriptionCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Gets the transcription for a conference by conferenceId.
@@ -33,6 +35,8 @@ declare const GetConferenceTranscriptionCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaHistoryClient, GetConferenceTranscriptionCommand } from "@wildix/wda-history-client"; // ES Modules import
35
37
  * // const { WdaHistoryClient, GetConferenceTranscriptionCommand } = require("@wildix/wda-history-client"); // CommonJS import
38
+ * // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
39
+ * const config = {}; // type is WdaHistoryClientConfig
36
40
  * const client = new WdaHistoryClient(config);
37
41
  * const input = { // GetConferenceTranscriptionInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { GetConferenceTranscriptionTextInput, GetConferenceTranscriptionTextOutput } 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 { GetConferenceTranscriptionTextInput, GetConferenceTranscriptionTextOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface GetConferenceTranscriptionTextCommandInput extends GetConferenc
22
22
  export interface GetConferenceTranscriptionTextCommandOutput extends GetConferenceTranscriptionTextOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetConferenceTranscriptionTextCommand_base: {
25
- new (input: GetConferenceTranscriptionTextCommandInput): import("@smithy/smithy-client").CommandImpl<GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetConferenceTranscriptionTextCommandInput): import("@smithy/smithy-client").CommandImpl<GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetConferenceTranscriptionTextCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetConferenceTranscriptionTextCommandInput): import("@smithy/core/client").CommandImpl<GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Gets the transcription text and chunks for a conference by conferenceId.
@@ -33,6 +35,8 @@ declare const GetConferenceTranscriptionTextCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaHistoryClient, GetConferenceTranscriptionTextCommand } from "@wildix/wda-history-client"; // ES Modules import
35
37
  * // const { WdaHistoryClient, GetConferenceTranscriptionTextCommand } = require("@wildix/wda-history-client"); // CommonJS import
38
+ * // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
39
+ * const config = {}; // type is WdaHistoryClientConfig
36
40
  * const client = new WdaHistoryClient(config);
37
41
  * const input = { // GetConferenceTranscriptionTextInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { QueryConversationsInput, QueryConversationsOutput } 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 { QueryConversationsInput, QueryConversationsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface 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, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [QueryConversationsCommandInput]): import("@smithy/smithy-client").CommandImpl<QueryConversationsCommandInput, QueryConversationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: QueryConversationsCommandInput): import("@smithy/core/client").CommandImpl<QueryConversationsCommandInput, QueryConversationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [QueryConversationsCommandInput]): import("@smithy/core/client").CommandImpl<QueryConversationsCommandInput, QueryConversationsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves list of conversations using filters.
@@ -33,6 +35,8 @@ declare const QueryConversationsCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaHistoryClient, QueryConversationsCommand } from "@wildix/wda-history-client"; // ES Modules import
35
37
  * // const { WdaHistoryClient, QueryConversationsCommand } = require("@wildix/wda-history-client"); // CommonJS import
38
+ * // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
39
+ * const config = {}; // type is WdaHistoryClientConfig
36
40
  * const client = new WdaHistoryClient(config);
37
41
  * const input = { // QueryConversationsInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { QueryUserCallsInput, QueryUserCallsOutput } 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 { QueryUserCallsInput, QueryUserCallsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface QueryUserCallsCommandInput extends QueryUserCallsInput {
22
22
  export interface QueryUserCallsCommandOutput extends QueryUserCallsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const QueryUserCallsCommand_base: {
25
- new (input: QueryUserCallsCommandInput): import("@smithy/smithy-client").CommandImpl<QueryUserCallsCommandInput, QueryUserCallsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [QueryUserCallsCommandInput]): import("@smithy/smithy-client").CommandImpl<QueryUserCallsCommandInput, QueryUserCallsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: QueryUserCallsCommandInput): import("@smithy/core/client").CommandImpl<QueryUserCallsCommandInput, QueryUserCallsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [QueryUserCallsCommandInput]): import("@smithy/core/client").CommandImpl<QueryUserCallsCommandInput, QueryUserCallsCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves list of user calls using filters.
@@ -33,6 +35,8 @@ declare const QueryUserCallsCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaHistoryClient, QueryUserCallsCommand } from "@wildix/wda-history-client"; // ES Modules import
35
37
  * // const { WdaHistoryClient, QueryUserCallsCommand } = require("@wildix/wda-history-client"); // CommonJS import
38
+ * // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
39
+ * const config = {}; // type is WdaHistoryClientConfig
36
40
  * const client = new WdaHistoryClient(config);
37
41
  * const input = { // QueryUserCallsInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
2
- import { UpdateCallInput, UpdateCallOutput } 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 { UpdateCallInput, UpdateCallOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaHistoryClientResolvedConfig } from "../WdaHistoryClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface UpdateCallCommandInput extends UpdateCallInput {
22
22
  export interface UpdateCallCommandOutput extends UpdateCallOutput, __MetadataBearer {
23
23
  }
24
24
  declare const UpdateCallCommand_base: {
25
- new (input: UpdateCallCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCallCommandInput, UpdateCallCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: UpdateCallCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCallCommandInput, UpdateCallCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: UpdateCallCommandInput): import("@smithy/core/client").CommandImpl<UpdateCallCommandInput, UpdateCallCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateCallCommandInput): import("@smithy/core/client").CommandImpl<UpdateCallCommandInput, UpdateCallCommandOutput, WdaHistoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Updates a call by callId and flowIndex. Allows modifying call metadata such as tags.
@@ -33,6 +35,8 @@ declare const UpdateCallCommand_base: {
33
35
  * ```javascript
34
36
  * import { WdaHistoryClient, UpdateCallCommand } from "@wildix/wda-history-client"; // ES Modules import
35
37
  * // const { WdaHistoryClient, UpdateCallCommand } = require("@wildix/wda-history-client"); // CommonJS import
38
+ * // import type { WdaHistoryClientConfig } from "@wildix/wda-history-client";
39
+ * const config = {}; // type is WdaHistoryClientConfig
36
40
  * const client = new WdaHistoryClient(config);
37
41
  * const input = { // UpdateCallInput
38
42
  * companyId: "STRING_VALUE",
@@ -1,13 +1,13 @@
1
- export * from "./GetCallCommand";
2
1
  export * from "./GetCallAnnotationsCommand";
2
+ export * from "./GetCallCommand";
3
3
  export * from "./GetCallTranscriptionCommand";
4
4
  export * from "./GetCallTranscriptionTextCommand";
5
- export * from "./GetChatCommand";
6
5
  export * from "./GetChatAnnotationsCommand";
6
+ export * from "./GetChatCommand";
7
7
  export * from "./GetChatTranscriptionCommand";
8
8
  export * from "./GetChatTranscriptionTextCommand";
9
- export * from "./GetConferenceCommand";
10
9
  export * from "./GetConferenceAnnotationsCommand";
10
+ export * from "./GetConferenceCommand";
11
11
  export * from "./GetConferenceTranscriptionCommand";
12
12
  export * from "./GetConferenceTranscriptionTextCommand";
13
13
  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 WdaHistoryExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration {
7
+ export interface WdaHistoryExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, HttpAuthExtensionConfiguration {
7
8
  }
@@ -1,7 +1,11 @@
1
1
  export * from "./WdaHistoryClient";
2
2
  export * from "./WdaHistory";
3
+ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export type { RuntimeExtension } from "./runtimeExtensions";
4
5
  export type { WdaHistoryExtensionConfiguration } 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";
7
11
  export { WdaHistoryServiceException } from "./models/WdaHistoryServiceException";
@@ -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
  /**