@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 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
import { GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput } from "../commands/GetCallAnnotationsCommand";
|
|
2
|
-
import { GetCallCommandInput, GetCallCommandOutput } from "../commands/GetCallCommand";
|
|
3
|
-
import { GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput } from "../commands/GetCallTranscriptionCommand";
|
|
4
|
-
import { GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput } from "../commands/GetCallTranscriptionTextCommand";
|
|
5
|
-
import { GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput } from "../commands/GetChatAnnotationsCommand";
|
|
6
|
-
import { GetChatCommandInput, GetChatCommandOutput } from "../commands/GetChatCommand";
|
|
7
|
-
import { GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput } from "../commands/GetChatTranscriptionCommand";
|
|
8
|
-
import { GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput } from "../commands/GetChatTranscriptionTextCommand";
|
|
9
|
-
import { GetConferenceAnnotationsCommandInput, GetConferenceAnnotationsCommandOutput } from "../commands/GetConferenceAnnotationsCommand";
|
|
10
|
-
import { GetConferenceCommandInput, GetConferenceCommandOutput } from "../commands/GetConferenceCommand";
|
|
11
|
-
import { GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput } from "../commands/GetConferenceTranscriptionCommand";
|
|
12
|
-
import { GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput } from "../commands/GetConferenceTranscriptionTextCommand";
|
|
13
|
-
import { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "../commands/QueryConversationsCommand";
|
|
14
|
-
import { QueryUserCallsCommandInput, QueryUserCallsCommandOutput } from "../commands/QueryUserCallsCommand";
|
|
15
|
-
import { UpdateCallCommandInput, UpdateCallCommandOutput } from "../commands/UpdateCallCommand";
|
|
16
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
17
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
18
|
-
/**
|
|
19
|
-
* serializeAws_restJson1GetCallCommand
|
|
20
|
-
*/
|
|
21
|
-
export declare const se_GetCallCommand: (input: GetCallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
-
/**
|
|
23
|
-
* serializeAws_restJson1GetCallAnnotationsCommand
|
|
24
|
-
*/
|
|
25
|
-
export declare const se_GetCallAnnotationsCommand: (input: GetCallAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
-
/**
|
|
27
|
-
* serializeAws_restJson1GetCallTranscriptionCommand
|
|
28
|
-
*/
|
|
29
|
-
export declare const se_GetCallTranscriptionCommand: (input: GetCallTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
-
/**
|
|
31
|
-
* serializeAws_restJson1GetCallTranscriptionTextCommand
|
|
32
|
-
*/
|
|
33
|
-
export declare const se_GetCallTranscriptionTextCommand: (input: GetCallTranscriptionTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
-
/**
|
|
35
|
-
* serializeAws_restJson1GetChatCommand
|
|
36
|
-
*/
|
|
37
|
-
export declare const se_GetChatCommand: (input: GetChatCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
-
/**
|
|
39
|
-
* serializeAws_restJson1GetChatAnnotationsCommand
|
|
40
|
-
*/
|
|
41
|
-
export declare const se_GetChatAnnotationsCommand: (input: GetChatAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
-
/**
|
|
43
|
-
* serializeAws_restJson1GetChatTranscriptionCommand
|
|
44
|
-
*/
|
|
45
|
-
export declare const se_GetChatTranscriptionCommand: (input: GetChatTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
-
/**
|
|
47
|
-
* serializeAws_restJson1GetChatTranscriptionTextCommand
|
|
48
|
-
*/
|
|
49
|
-
export declare const se_GetChatTranscriptionTextCommand: (input: GetChatTranscriptionTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
-
/**
|
|
51
|
-
* serializeAws_restJson1GetConferenceCommand
|
|
52
|
-
*/
|
|
53
|
-
export declare const se_GetConferenceCommand: (input: GetConferenceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
-
/**
|
|
55
|
-
* serializeAws_restJson1GetConferenceAnnotationsCommand
|
|
56
|
-
*/
|
|
57
|
-
export declare const se_GetConferenceAnnotationsCommand: (input: GetConferenceAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
-
/**
|
|
59
|
-
* serializeAws_restJson1GetConferenceTranscriptionCommand
|
|
60
|
-
*/
|
|
61
|
-
export declare const se_GetConferenceTranscriptionCommand: (input: GetConferenceTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
-
/**
|
|
63
|
-
* serializeAws_restJson1GetConferenceTranscriptionTextCommand
|
|
64
|
-
*/
|
|
65
|
-
export declare const se_GetConferenceTranscriptionTextCommand: (input: GetConferenceTranscriptionTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
-
/**
|
|
67
|
-
* serializeAws_restJson1QueryConversationsCommand
|
|
68
|
-
*/
|
|
69
|
-
export declare const se_QueryConversationsCommand: (input: QueryConversationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
-
/**
|
|
71
|
-
* serializeAws_restJson1QueryUserCallsCommand
|
|
72
|
-
*/
|
|
73
|
-
export declare const se_QueryUserCallsCommand: (input: QueryUserCallsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
-
/**
|
|
75
|
-
* serializeAws_restJson1UpdateCallCommand
|
|
76
|
-
*/
|
|
77
|
-
export declare const se_UpdateCallCommand: (input: UpdateCallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
/**
|
|
79
|
-
* deserializeAws_restJson1GetCallCommand
|
|
80
|
-
*/
|
|
81
|
-
export declare const de_GetCallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallCommandOutput>;
|
|
82
|
-
/**
|
|
83
|
-
* deserializeAws_restJson1GetCallAnnotationsCommand
|
|
84
|
-
*/
|
|
85
|
-
export declare const de_GetCallAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallAnnotationsCommandOutput>;
|
|
86
|
-
/**
|
|
87
|
-
* deserializeAws_restJson1GetCallTranscriptionCommand
|
|
88
|
-
*/
|
|
89
|
-
export declare const de_GetCallTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallTranscriptionCommandOutput>;
|
|
90
|
-
/**
|
|
91
|
-
* deserializeAws_restJson1GetCallTranscriptionTextCommand
|
|
92
|
-
*/
|
|
93
|
-
export declare const de_GetCallTranscriptionTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallTranscriptionTextCommandOutput>;
|
|
94
|
-
/**
|
|
95
|
-
* deserializeAws_restJson1GetChatCommand
|
|
96
|
-
*/
|
|
97
|
-
export declare const de_GetChatCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatCommandOutput>;
|
|
98
|
-
/**
|
|
99
|
-
* deserializeAws_restJson1GetChatAnnotationsCommand
|
|
100
|
-
*/
|
|
101
|
-
export declare const de_GetChatAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatAnnotationsCommandOutput>;
|
|
102
|
-
/**
|
|
103
|
-
* deserializeAws_restJson1GetChatTranscriptionCommand
|
|
104
|
-
*/
|
|
105
|
-
export declare const de_GetChatTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatTranscriptionCommandOutput>;
|
|
106
|
-
/**
|
|
107
|
-
* deserializeAws_restJson1GetChatTranscriptionTextCommand
|
|
108
|
-
*/
|
|
109
|
-
export declare const de_GetChatTranscriptionTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatTranscriptionTextCommandOutput>;
|
|
110
|
-
/**
|
|
111
|
-
* deserializeAws_restJson1GetConferenceCommand
|
|
112
|
-
*/
|
|
113
|
-
export declare const de_GetConferenceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceCommandOutput>;
|
|
114
|
-
/**
|
|
115
|
-
* deserializeAws_restJson1GetConferenceAnnotationsCommand
|
|
116
|
-
*/
|
|
117
|
-
export declare const de_GetConferenceAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceAnnotationsCommandOutput>;
|
|
118
|
-
/**
|
|
119
|
-
* deserializeAws_restJson1GetConferenceTranscriptionCommand
|
|
120
|
-
*/
|
|
121
|
-
export declare const de_GetConferenceTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceTranscriptionCommandOutput>;
|
|
122
|
-
/**
|
|
123
|
-
* deserializeAws_restJson1GetConferenceTranscriptionTextCommand
|
|
124
|
-
*/
|
|
125
|
-
export declare const de_GetConferenceTranscriptionTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceTranscriptionTextCommandOutput>;
|
|
126
|
-
/**
|
|
127
|
-
* deserializeAws_restJson1QueryConversationsCommand
|
|
128
|
-
*/
|
|
129
|
-
export declare const de_QueryConversationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryConversationsCommandOutput>;
|
|
130
|
-
/**
|
|
131
|
-
* deserializeAws_restJson1QueryUserCallsCommand
|
|
132
|
-
*/
|
|
133
|
-
export declare const de_QueryUserCallsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryUserCallsCommandOutput>;
|
|
134
|
-
/**
|
|
135
|
-
* deserializeAws_restJson1UpdateCallCommand
|
|
136
|
-
*/
|
|
137
|
-
export declare const de_UpdateCallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCallCommandOutput>;
|