@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.
- package/dist-cjs/WdaHistory.js +3 -3
- package/dist-cjs/WdaHistoryClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
- package/dist-cjs/commands/GetCallAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetCallCommand.js +10 -11
- package/dist-cjs/commands/GetCallTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetCallTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/GetChatAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetChatCommand.js +10 -11
- package/dist-cjs/commands/GetChatTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetChatTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
- package/dist-cjs/commands/QueryUserCallsCommand.js +10 -11
- package/dist-cjs/commands/UpdateCallCommand.js +10 -11
- package/dist-cjs/commands/index.js +3 -3
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +25 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/WdaHistoryServiceException.js +3 -3
- package/dist-cjs/models/enums.js +204 -0
- package/dist-cjs/models/errors.js +147 -0
- package/dist-cjs/models/models_0.js +0 -413
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1047 -0
- package/dist-es/WdaHistory.js +4 -4
- package/dist-es/WdaHistoryClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-es/commands/GetCallAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetCallCommand.js +9 -10
- package/dist-es/commands/GetCallTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetCallTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/GetChatAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetChatCommand.js +9 -10
- package/dist-es/commands/GetChatTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetChatTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/GetConferenceAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetConferenceCommand.js +9 -10
- package/dist-es/commands/GetConferenceTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetConferenceTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/QueryConversationsCommand.js +9 -10
- package/dist-es/commands/QueryUserCallsCommand.js +9 -10
- package/dist-es/commands/UpdateCallCommand.js +9 -10
- package/dist-es/commands/index.js +3 -3
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +22 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/WdaHistoryServiceException.js +1 -1
- package/dist-es/models/enums.js +201 -0
- package/dist-es/models/errors.js +133 -0
- package/dist-es/models/models_0.js +1 -400
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1042 -0
- package/dist-types/WdaHistory.d.ts +16 -16
- package/dist-types/WdaHistoryClient.d.ts +45 -27
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/GetCallAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetCallCommand.d.ts +11 -7
- package/dist-types/commands/GetCallTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetCallTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/GetChatAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetChatCommand.d.ts +11 -7
- package/dist-types/commands/GetChatTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetChatTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/QueryConversationsCommand.d.ts +11 -7
- package/dist-types/commands/QueryUserCallsCommand.d.ts +11 -7
- package/dist-types/commands/UpdateCallCommand.d.ts +11 -7
- package/dist-types/commands/index.d.ts +3 -3
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/WdaHistoryServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +505 -0
- package/dist-types/models/errors.d.ts +123 -0
- package/dist-types/models/models_0.d.ts +83 -692
- package/dist-types/runtimeConfig.browser.d.ts +35 -16
- package/dist-types/runtimeConfig.d.ts +34 -15
- package/dist-types/runtimeConfig.native.d.ts +36 -17
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +127 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -868
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -835
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -137
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { 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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { 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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { 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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { 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/
|
|
26
|
-
new (...[input]: [] | [QueryConversationsCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { 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/
|
|
26
|
-
new (...[input]: [] | [QueryUserCallsCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { 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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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,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/
|
|
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
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -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 "./
|
|
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 {
|
|
1
|
+
import { type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException } from "@smithy/core/client";
|
|
2
2
|
export type { __ServiceExceptionOptions };
|
|
3
3
|
export { __ServiceException };
|
|
4
4
|
/**
|